diff --git a/src/Chamilo/CoreBundle/Component/Editor/CkEditor/Toolbar/Minimal.php b/src/Chamilo/CoreBundle/Component/Editor/CkEditor/Toolbar/Minimal.php new file mode 100644 index 0000000000..9f0afeff2a --- /dev/null +++ b/src/Chamilo/CoreBundle/Component/Editor/CkEditor/Toolbar/Minimal.php @@ -0,0 +1,44 @@ + 'clipboard', + 'groups' => ['clipboard', 'undo'], + 'items' => ['Cut', 'Copy', 'Paste', '-', 'Undo', 'Redo'] + ], + [ + 'name' => 'basicstyles', + 'groups' => ['basicstyles', 'cleanup'], + 'items' => ['Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript'] + ], + [ + 'name' => 'paragraph', + 'groups' => ['list', 'indent', 'blocks', 'align', 'bidi'], + 'items' => ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent'] + ], + [ + 'name' => 'links', + 'items' => [ 'Link', 'Unlink', 'Anchor'] + ] + ]; + + return $config; + } + +}