Download the PHP package tavy315/sylius-labels-plugin without Composer
On this page you can find all versions of the php package tavy315/sylius-labels-plugin. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download tavy315/sylius-labels-plugin
More information about tavy315/sylius-labels-plugin
Files in tavy315/sylius-labels-plugin
Package sylius-labels-plugin
Short Description Sylius plugin for product labels.
License MIT
Informations about the package sylius-labels-plugin
Sylius Labels Plugin
The labels plugin for Sylius allows you to configure nice badges for different set of products based on specific rules. It provides a common set of configuration by default and is very flexible when it comes to adding new ones.
Supports Doctrine ORM driver only.
Screenshots
Shop:
Admin:
Installation
Step 1: Install the plugin
Open a command console, enter your project directory and execute the following command to download the latest stable version of this plugin:
This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.
Step 2: Enable the plugin
Then, enable the plugin by adding it to the list of registered plugins/bundles
in config/bundles.php
file of your project before (!) SyliusGridBundle
:
Step 3: Configure plugin
Step 4: Import routing
Step 5: Customize models
Read more about Sylius models customization here.
Customize your Product model
Add a Tavy315\SyliusLabelsPlugin\Model\LabelsAwareTrait
trait to your App\Entity\Product
class.
-
If you use
annotations
mapping: - If you use
xml
mapping:
If you haven't done so already, configure the sylius_product
resource to point to your App\Entity\Product
like we
did in an example here.
Step 6: Update your database schema
Step 7: Add labels to your product templates
Add labels to your product box template. By default, you should use templates/bundles/SyliusShopBundle/Product/__mainImage.html.twig
path. Check out our __mainImage.html.twig file for a reference.
Note the line: {% include "@Tavy315SyliusLabelsPlugin/Shop/Product/Label/_labels.html.twig" with {'labels' : product.labels} %}
.
Usage
From now on you should be able to add new labels in the admin panel. Once you add one, you can attach it to products.