monsieurbiz / sylius-cms-block-plugin
Save rich editor contents in database and use it as UI Element
Installs: 452
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 3
Open Issues: 0
Type:sylius-plugin
Requires
- php: ^8.2
- monsieurbiz/sylius-rich-editor-plugin: ^2.8
- sylius/sylius: >=1.12 <1.14
Requires (Dev)
- behat/behat: ^3.6.1
- friendsofphp/php-cs-fixer: ^3.16
- phpmd/phpmd: ^2.15
- phpspec/phpspec: ^7.0
- phpstan/phpstan: ^1.8.4
- phpstan/phpstan-doctrine: ^1.3.2
- phpstan/phpstan-webmozart-assert: ^1.1
- phpunit/phpunit: ^10.5
This package is auto-updated.
Last update: 2024-12-28 09:35:33 UTC
README
Compatibility
Installation
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-plugin
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'
Migrations
First, please run legacy-versioned migrations by using command :
bin/console doctrine:migrations:migrate
After migration, please create a new diff migration :
bin/console doctrine:migrations:diff
Then run it (if any) :
bin/console doctrine:migrations:migrate
Example
Admin list
Manage your block in admin
Admin form
Manage the content of your block, you can decide to disable or enable it to display it anywhere you used it.
Include it in your content
For example in your Homepage ou CMS Page !
By using block
element in your Rich Editor.
Chose the block you want to include in your content.
Displays in front
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.
License
This plugin is under the MIT license. Please see the LICENSE file for more information.