POC of RichText Block for Page Builder
- Add the following line to the
repositories
section in thecomposer.json
{ "type": "vcs", "url": "https://github.com/adamwojs/ezplatform-page-builder-richtext-block.git"}
- Enable the bundle in
AppKernel
:
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// eZ Platform EE
new EzSystems\EzPlatformPageFieldTypeBundle\EzPlatformPageFieldTypeBundle(),
new EzSystems\EzPlatformPageBuilderBundle\EzPlatformPageBuilderBundle(),
// ...
new EzSystems\EzPlatformPageBuilderRichTextBlockBundle\EzPlatformPageBuilderRichTextBlockBundle(),
// ...
new AppBundle\AppBundle(),
);
}
- Install bundle using composer:
composer require ezsystems/ezplatform-page-builder-richtext-block dev-master