| Sylius Version | PHP Version |
|---|---|
| 2.0, 2.1 | 8.2 - 8.3 |
ℹ️ For Sylius 1.x, see our 1.x branch and all 1.x releases.
If you want to use our recipes, you can configure your composer.json by running:
composer config --no-plugins --json extra.symfony.endpoint '["https://api.github.com/repos/monsieurbiz/symfony-recipes/contents/index.json?ref=flex/master","flex://defaults"]'composer require monsieurbiz/sylius-cms-block-pluginIf you do not use the recipes :
Change your config/bundles.php file to add the line for the plugin :
<?php
return [
//..
MonsieurBiz\SyliusCmsBlockPlugin\MonsieurBizSyliusCmsBlockPlugin::class => ['all' => true],
];Then create the config file in config/packages/monsieurbiz_sylius_cms_block_plugin.yaml :
imports:
resource: '@MonsieurBizSyliusCmsBlockPlugin/Resources/config/config.yaml'Finally import the routes in config/routes/monsieurbiz_sylius_cms_block_plugin.yaml :
imports:
resource: '@MonsieurBizSyliusCmsBlockPlugin/Resources/config/routes.yaml'If you want to have the wireframe of block element in the Rich Editor, copy the file :
cp vendor/monsieurbiz/sylius-cms-block-plugin/src/Resources/views/wireframe/block.svg.twig templates/bundles/MonsieurBizSyliusRichEditorPlugin/Wireframe/block.svg.twigFirst, please run legacy-versioned migrations by using command :
bin/console doctrine:migrations:migrateManage your block in admin
Manage the content of your block, you can decide to disable or enable it to display it anywhere you used it.
For example in your Homepage ou CMS Page,
by using block element in your Rich Editor.
You can use it in multiple places, it will shown the same content everywhere.
If you disable the block, it will not be displayed anymore.
This plugin is under the MIT license. Please see the LICENSE file for more information.



