sonata管理包中的HTML编辑器

时间:2012-02-14 08:52:09

标签: symfony symfony-sonata

有没有人知道是否有一个奏鸣曲小工具在编辑表单中显示HTML编辑器?我正在考虑为该字段使用自定义模板来集成HTML,但我想知道是否有更好的方法。

4 个答案:

答案 0 :(得分:3)

答案 1 :(得分:1)

答案 2 :(得分:0)

我还使用了IvoryCKEditorBundle

在项目中进行初始设置后,您可以轻松使用它,如下所示:

use Ivory\CKEditorBundle\Form\Type\CKEditorType;

protected function configureFormFields(FormMapper $formMapper)
    {
        $formMapper
           ->add('description', CKEditorType::class)

答案 3 :(得分:0)

以下是您如何实施它:https://sonata-project.org/bundles/formatter/master/doc/reference/formatter_widget.html

我的代码示例:

source_field -> body => existing entity field
format_field -> formattedBody => create new field in entity
target_field -> body => existing entity field

protected function configureFormFields(FormMapper $formMapper)
{
$formMapper
->add('body', 'sonata_formatter_type', array(
'event_dispatcher' =>
     $formMapper->getFormBuilder()->getEventDispatcher(),
'format_field' => 'formattedBody',
'format_field_options' => array(
    'choices' => array('richhtml'),
    'data' => 'richhtml',
),
'source_field' => 'body',
'source_field_options' => array(
    'attr' => array(
        'class' => 'span10',
        'rows' => 20,
    ),
),
'listener' => true,
'target_field' => 'body',
))