add tinymce block type

This commit is contained in:
Simon Vieille 2022-04-19 11:23:38 +02:00
commit c5db18e05e
Signed by: deblan
GPG key ID: 579388D585F70417

View file

@ -0,0 +1,21 @@
<?php
namespace App\Core\Form\Site\Page;
use App\Core\Form\Type\TinymceTextareaType;
use Symfony\Component\Form\FormBuilderInterface;
class TinymceTextareaBlockType extends TextareaBlockType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add(
'value',
TinymceTextareaType::class,
array_merge([
'required' => false,
'label' => false,
], $options['options']),
);
}
}