adamwojs / ezplatform-page-builder-richtext-block

POC of RichText Block for Page Builder

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

POC of RichText Block for Page Builder


Languages

Language:PHP 56.3%Language:JavaScript 37.4%Language:HTML 6.2%