ikuzostudio/rma-plugin
最新稳定版本:v1.4
Composer 安装命令:
composer require ikuzostudio/rma-plugin
包简介
RMA plugin for Sylius
README 文档
README
RMA Plugin
Add RMA contact page into Sylius.
/!\ Currently in alpha /!\
Quickstart
$ composer require ikuzostudio/rma-plugin
Add plugin dependencies to your config/bundles.php file:
return [ // ... Ikuzo\SyliusRMAPlugin\IkuzoSyliusRMAPlugin::class => ['all' => true], ];
Import required config in your config/packages/_sylius.yaml file:
# config/packages/_sylius.yaml imports: ... - { resource: "@IkuzoSyliusRMAPlugin/Resources/config/app/config.yaml"}
Add routes in config/routes.yaml
# config/routes.yaml ikuzo_rma_routes: resource: "@IkuzoSyliusRMAPlugin/Resources/config/routes.yaml" prefix: /{_locale} requirements: _locale: ^[a-z]{2}(?:_[A-Z]{2})?$
To override existing reasons, in your config/packages/_sylius.yaml file:
# config/packages/_sylius.yaml ikuzo_sylius_rma: reasons: damaged: ikuzo_rma.form.reasons.damaged wrong_product: ikuzo_rma.form.reasons.wrong_product other: ikuzo_rma.form.reasons.other ...
Add the RMAChannelInterface to the Channel model and implement it with the RMAChannelTrait
use Ikuzo\SyliusRMAPlugin\Model\RMAChannelInterface; use Ikuzo\SyliusRMAPlugin\Model\RMAChannelTrait; class Channel extends BaseChannel implements RMAChannelInterface { use RMAChannelTrait; }
Create a migration and run it
bin/console make:migration bin/console doctrine:migration:migrate
Go in the admin panel and enable the RMA for the wanted channels
统计信息
- 总下载量: 249
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-09-21