To define own toolbar set you need to add your set in editor's section of control panel:
FCKConfig.ToolbarSets["MyToolbar"] = [
// toolbar set here
] ;
Then you need to enable your set in LocalSettings.php:
$wgFCKToolbarSet = "MyToolbar";
Don't forget to clear server UI cache and browser's cache. For more information please read this guide.
MindTouch Deki Features
For using some our features like Link dialog instead of default FCK's Link dialog you need to add to your toolbar our elements. List of such elements is below:
- MindTouchDeki_Save
- MindTouchDeki_Cancel
- MindTouchDeki_InsertExtension
- MindTouchDeki_Transform
- MindTouchDeki_InsertLink
- MindTouchDeki_InsertImage
- MindTouchDeki_InsertVideo
- MindTouchDeki_InsertTemplate
Predefined Sets
For you convenience we prepared four predefined toolbar sets. Here they are.
Default
Contains all our features and all the most used buttons.
Advanced
Added some features such as “Paste from Word” and “Paste as plain text”. Also added “Undo”, “Redo” and “Create DIV container” buttons. With Advanced toolbar you can use “Find” and “Replace” dialogs.
Simple
In contrast to previous two three-row sets this set has two rows with only very necessary functionality. Removed “Style”, “Font” and “Size” comboboxes. Also removed “Transformations” combobox and “Blockquote” button. Has “Paste from Word” and “Paste as plain text” buttons. Also added “Maximize the editor size” feature (needs non-floating toolbar).
Basic
If text is of fundamental importance this set is for you! One-row toolbar. All operations are performed from keyboard using shortcuts. We recommend disable floating toolbar to get an offing maximize editor and not look aside from the text.
For enabling one of this sets just include in your LocalSettings.php such line (for Advanced set):
$wgFCKToolbarSet = "Advanced";