waaz/sylius-pickup-plugin
Composer 安装命令:
composer require waaz/sylius-pickup-plugin
包简介
Pickup Shipping plugin for Sylius.
README 文档
README
- This Plugin is a generic plugin allows to add pickup delivery
- See Pickup Demo Plugin for an example of implementation
Installation
$ composer require magentix/sylius-pickup-plugin
Add the plugin to the config/bundles.php file:
Magentix\SyliusPickupPlugin\MagentixSyliusPickupPlugin::class => ['all' => true],
Add the plugin's config to by creating the file config/packages/magentix_sylius_pickup_plugin.yaml with the following content:
imports: - { resource: "@MagentixSyliusPickupPlugin/Resources/config/config.yml" }
Add the plugin's routing by creating the file config/routes/magentix_sylius_pickup_plugin.yaml with the following content:
magentix_sylius_pickup_plugin: resource: "@MagentixSyliusPickupPlugin/Resources/config/routing.yml"
Add a trait to your shipment class
<?php declare(strict_types=1); namespace App\Entity\Shipping; use Doctrine\ORM\Mapping as ORM; use Magentix\SyliusPickupPlugin\Entity\ShipmentPickupAwareTrait; use Sylius\Component\Core\Model\Shipment as BaseShipment; /** * @ORM\Entity * @ORM\Table(name="sylius_shipment") */ class Shipment extends BaseShipment { use ShipmentPickupAwareTrait; }
Finish the installation by updating the database schema and installing assets:
bin/console doctrine:migrations:diff bin/console doctrine:migrations:migrate bin/console assets:install bin/console sylius:theme:assets:install
统计信息
- 总下载量: 2.07k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-10-05