2017-02-12 35 views
0

我一直在搜索文檔,並且無法找到我以後的內容,它將標題&樣式配置添加到sonata管理員的ckeditor中。如何將styleSet添加到Sonata管理格式化程序和象牙CKeditor

我想能夠添加一些標題&樣式的元素到我的richtext配置,但我無法這樣做。我已經試過如下:

  • 添加stylesSet在config.yml
  • 添加ckeditor_toolbar_icons參數的富文本本身

我的管理員字段定義到ivory_ck_editor:

->add('body', 'sonata_simple_formatter_type', array('format' => 'richhtml' ))

ckeditor總是看起來像這樣,儘管我曾嘗試過:http://i.imgur.com/DbJA851.png

任何人都可以將我添加到奏鳴曲管理員的格式化程序的樣式選項的工作示例?

版本:

"symfony/symfony": "3.2.*", "sonata-project/admin-bundle": "^3.10", "sonata-project/formatter-bundle": "^3.1",

感謝

回答

0

只需添加特定選項ckeditor_toolbar_icons:

 ->add('abstractEn', 'sonata_simple_formatter_type', array(
      'format' => 'richhtml', 
      'ckeditor_toolbar_icons' => array(
       1 => array('Bold', 'Italic', 'Underline', 
        '-', 'Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', 
        '-', 'Undo', 'Redo', 
        '-', 'NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', 
        '-', 'Blockquote', 
        '-', 'Image', 'Link', 'Unlink', 'Table'), 
       2 => array('Maximize', 'Source'), 
       3 => array('Styles','Format','Font','FontSize') 
      ) 
     )) 

數組的第三個元素激活的樣式和其他格式的東西。

請務必清除緩存

相關問題