deblan.tv/vendor/trinity/src/Trinity/Bundle/ContentManagerBundle/Form/Type/TinymceMediumBlockType.php

34 lines
656 B
PHP
Raw Normal View History

2015-03-02 21:57:49 +01:00
<?php
namespace Trinity\Bundle\ContentManagerBundle\Form\Type;
use Symfony\Component\Form\FormBuilderInterface;
class TinymceMediumBlockType extends BlockType
{
/**
* {@inheritdoc}
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add(
'value',
'textarea',
array(
'attr' => array(
'class' => 'tinymce',
'data-theme' => 'medium',
)
)
);
}
/**
* {@inheritdoc}
*/
public function getName()
{
return 'tinymce';
}
}