gravita / notify-when-available
A Sylius plugin that enables the option of setting a future date when the product will be available. Users can add an email to notify then when the product can be purchased
Installs: 11
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 1
Open Issues: 0
Type:sylius-plugin
Requires
- php: ^7.1
- sylius/sylius: ^1.0
Requires (Dev)
- behat/behat: ^3.3
- behat/mink: ^1.7
- behat/mink-browserkit-driver: ^1.3
- behat/mink-extension: ^2.2
- behat/mink-selenium2-driver: ^1.3
- friends-of-behat/context-service-extension: ^1.0
- friends-of-behat/cross-container-extension: ^1.0
- friends-of-behat/service-container-extension: ^1.0
- friends-of-behat/symfony-extension: ^1.0
- friends-of-behat/variadic-extension: ^1.0
- lakion/mink-debug-extension: ^1.2.3
- phpspec/phpspec: ^3.2
- phpstan/phpstan-shim: ^0.9.2
- phpunit/phpunit: ^5.6
- se/selenium-server-standalone: ^2.52
- sensio/generator-bundle: ^3.1
- sylius-labs/coding-standard: ^1.0
- symplify/easy-coding-standard: ^2.4
This package is not auto-updated.
Last update: 2025-03-30 08:05:46 UTC
README
Plugin Skeleton
Installation
-
Run
composer require gravita/notify-when-available
. -
Add the plugin to AppKernel.php:
public function registerBundles(): array { return array_merge(parent::registerBundles(), [ // ... new \Gravita\SyliusNotifyWhenAvailablePlugin\GravitaSyliusNotifyWhenAvailablePlugin(), ]); }
-
Add the required resource files to your config.yml:
imports: # ... - { resource: "@GravitaSyliusNotifyWhenAvailablePlugin/Resources/config/config.yml" } - { resource: "@GravitaSyliusNotifyWhenAvailablePlugin/Resources/config/resources.yml" }
-
Add the bundle routing file to your routing.yml
gravita_notify_when_available_shop: resource: "@GravitaSyliusNotifyWhenAvailablePlugin/Resources/config/app/shop_routing.yml"
-
Update your database:
php bin\console doctrine:schema:update --force
Usage
Running plugin tests
Once installed, the plugin adds two fields to the product variant form "Details" tab:
- Available from: this fields holds the message showed to the user if this product variant is not checked as "Available"
- Available for purchase: if this fields is not checked the message that is set on "Available from" will bee shown to the user. With this message will be a form to register an email on the notification list of the product variant.