Skip to content
This repository has been archived by the owner on Jun 21, 2019. It is now read-only.

adamwojs/ezplatform-page-builder-richtext-block

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ezplatform-page-builder-richtext-block

POC of RichText Block for Page Builder

Instalation

  1. Add the following line to the repositories section in the composer.json
{ "type": "vcs", "url": "https://github.com/adamwojs/ezplatform-page-builder-richtext-block.git"}
  1. 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(),
    );
}
  1. Install bundle using composer:
composer require ezsystems/ezplatform-page-builder-richtext-block dev-master