tahir-rasheed / sylius-bulk-price-edit-plugin
Bulk price edit plugin for Sylius.
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: ^7.4
- doctrine/orm: ^2.7
- sylius/channel: ^1.0
- sylius/core: ^1.0
- sylius/core-bundle: ^1.0
- symfony/config: ^4.4 || ^5.0
- symfony/dependency-injection: ^4.4 || ^5.0
- symfony/http-foundation: ^4.4 || ^5.0
- symfony/http-kernel: ^4.4 || ^5.1.5
- twig/twig: ^2.0 || ^3.0
Requires (Dev)
- api-platform/core: ^2.5
- doctrine/persistence: ^1.3.8
- lakion/mink-debug-extension: ^1.2.3
- lexik/jwt-authentication-bundle: ^2.8
- phpspec/phpspec: ^6.2
- phpunit/phpunit: ^9.2
- roave/security-advisories: dev-master
- setono/code-quality-pack: ^1.4
- sylius/sylius: ^1.8
- symfony/debug-bundle: ^5.1
- symfony/dotenv: ^5.1
- symfony/intl: ^4.4 || ^5.0
- symfony/maker-bundle: ^1.15
- symfony/property-info: ^5.0
- symfony/serializer: ^5.0
- symfony/web-profiler-bundle: ^5.0
This package is not auto-updated.
Last update: 2025-04-02 11:14:45 UTC
README
This plugin is a proof of concept of something great to be.
Installation
Download
$ composer require tahir-rasheed/sylius-bulk_price-edit-plugin
Import configuration
# config/packages/sylius_bulk_edit.yaml imports: # ... - { resource: "@TahirRasheedSyliusBulkEditPlugin/Resources/config/app/config.yaml" }
Import routes
# config/routes/sylius_bulk_edit.yaml setono_sylius_bulk_edit: resource: "@TahirRasheedSyliusBulkEditPlugin/Resources/config/routes.yaml"
or if your app doesn't use locales:
# config/routes.yaml setono_sylius_bulk_edit: resource: "@TahirRasheedSyliusBulkEditPlugin/Resources/config/routes_no_locale.yaml"
Add plugin class to your bundles.php
:
<?php $bundles = [ // ... TahirRasheed\SyliusBulkEditPlugin\TahirRasheedSyliusBulkEditPlugin::class => ['all' => true], // ... ];
Extend resource classes
Extend ProductRepository
<?php # src/Doctrine/ORM/ProductRepository.php declare(strict_types=1); namespace App\Doctrine\ORM; use Setono\SyliusBulkEditPlugin\Doctrine\ORM\ProductRepositoryTrait; use Setono\SyliusBulkEditPlugin\Repository\ProductRepositoryInterface; use Sylius\Bundle\CoreBundle\Doctrine\ORM\ProductRepository as BaseProductRepository; class ProductRepository extends BaseProductRepository implements ProductRepositoryInterface { use ProductRepositoryTrait; }
Add configuration
# config/packages/_sylius.yaml sylius_product: resources: product: classes: repository: App\Doctrine\ORM\ProductRepository
Done!
Go to /admin/products
, select a few products and click the Edit
button.