vendor/kunstmaan/admin-bundle/Resources/views/Default/_ckeditor_configs.html.twig line 1

Open in your IDE?
  1. <script>
  2.     // add external plugins you would like to use to this array.
  3.     // Each array can hold max. 3 values that represent the parameters the CKEDITOR.plugins.addExternal( names, path, [fileName] ) method requires.
  4.     // @see: http://docs.ckeditor.com/#!/api/CKEDITOR.plugins-method-addExternal
  5.     // e.g. ['names', 'path', 'optional: filename'];
  6.     // You can then register your plugin under extraPlugins on your ckeditor config.
  7.     externalPlugins = [
  8.         // Add arrays with plugins here.
  9.     ];
  10.     ckEditorConfigs = {
  11.         'full': {
  12.             skin: 'bootstrapck',
  13.             startupFocus: false,
  14.             height: 300,
  15.             bodyClass: 'CKEditor',
  16.             filebrowserWindowWidth: 970,
  17.             filebrowserImageWindowWidth: 970,
  18.             filebrowserImageUploadUrl: '',
  19.             toolbar: [
  20.                 { name: 'basicstyles', items : ['Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', 'RemoveFormat'] },
  21.                 { name: 'paragraph', groups: [ 'align' ], items: [ 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock'] },
  22.                 { name: 'lists', items : ['NumberedList', 'BulletedList'] },
  23.                 { name: 'dents', items : ['Outdent', 'Indent'] },
  24.                 { name: 'links', items : ['Link','Unlink', 'Anchor'] },
  25.                 { name: 'insert', items : ['Image', 'Table', 'SpecialChar'] },
  26.                 { name: 'clipboard', items : ['SelectAll', 'Cut', 'Copy', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo'] },
  27.                 { name: 'editing', items : [] },
  28.                 { name: 'styles', items: [ 'Styles', 'Format', 'Font', 'FontSize' ] },
  29.                 { name: 'colors', items: [ 'TextColor', 'BGColor' ] },
  30.                 { name: 'document', items : ['Source'] }
  31.             ]
  32.         },
  33.         'simple': {
  34.             skin: 'bootstrapck',
  35.             startupFocus: false,
  36.             bodyClass: 'CKEditor',
  37.             filebrowserWindowWidth: 970,
  38.             filebrowserImageWindowWidth: 970,
  39.             filebrowserImageUploadUrl: '',
  40.             toolbar: [
  41.                 { name: 'basicstyles', items: ['Bold', 'Italic', 'Underline', 'RemoveFormat'] }
  42.             ]
  43.         },
  44.         'raw-html': {
  45.             skin: 'bootstrapck',
  46.             startupFocus: true,
  47.             allowedContent: true,
  48.             removeFormatAttributes: '',
  49.             bodyClass: 'CKEditor',
  50.             extraPlugins: 'codemirror',
  51.             removePlugins: 'elementspath',
  52.             height: 300,
  53.             toolbar: [
  54.                 { name: 'document', items: ['Source', 'autoFormat', 'CommentSelectedRange', 'UncommentSelectedRange', 'AutoComplete' ] }
  55.             ],
  56.         },
  57.     };
  58. </script>
  59. {% include "@KunstmaanAdmin/Default/_ckeditor_configs_extra.html.twig" %}