1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- // Dokeos - elearning and course management software
- // See license terms in dokeos/documentation/license.txt
- // Training tools
- // Wiki (student)
- // For more information: http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/Configuration/Configuration_Options
- // This is the visible toolbar set when the editor has "normal" size.
- $config['ToolbarSets']['Normal'] = array(
- array('FitWindow','Save','Preview'),
- array('Bold','Italic','Underline'),
- array('OrderedList','UnorderedList','-','Outdent','Indent'),
- array('JustifyLeft','JustifyCenter','JustifyRight'),
- array('Undo','Redo','-','Find','-','SelectAll','RemoveFormat'),
- array('Link','Unlink','Wikilink','Glossary'),
- array('Image','Flash'),
- '/',
- array('Style','FontFormat','FontName','FontSize'),
- array('TextColor','BGColor'),
- array('Rule','Table','SpecialChar','mimetex','asciimath')
- );
- // This is the visible toolbar set when the editor is maximized.
- // If it has not been defined, then the toolbar set for the "normal" size is used.
- $config['ToolbarSets']['Maximized'] = array(
- array('FitWindow','DocProps','-','Save','NewPage','Preview','-','Templates'),
- array('Cut','Copy','Paste','PasteText','PasteWord'),
- array('Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'),
- array('Link','Unlink','Anchor','Wikilink','Glossary'),
- '/',
- array('Bold','Italic','Underline','StrikeThrough','-','Subscript','Superscript'),
- array('OrderedList','UnorderedList','-','Outdent','Indent','Blockquote','CreateDiv'),
- array('JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'),
- array('Rule','SpecialChar','PageBreak'),
- array('mimetex','asciimath','Image','imgmapPopup','Flash','MP3','EmbedMovies','flvPlayer','googlemaps','Smiley'),
- '/',
- array('Style','FontFormat','FontName','FontSize'),
- array('TextColor','BGColor'),
- array('Table','TableInsertRowAfter','TableDeleteRows','TableInsertColumnAfter','TableDeleteColumns','TableInsertCellAfter','TableDeleteCells','TableMergeCells','TableHorizontalSplitCell','TableVerticalSplitCell','TableCellProp'),
- array('ShowBlocks')
- );
- // Sets whether the toolbar can be collapsed/expanded or not.
- // Possible values: true , false
- //$config['ToolbarCanCollapse'] = true;
- // Sets how the editor's toolbar should start - expanded or collapsed.
- // Possible values: true , false
- //$config['ToolbarStartExpanded'] = true;
- //This option sets the location of the toolbar.
- // Possible values: 'In' , 'None' , 'Out:[TargetId]' , 'Out:[TargetWindow]([TargetId])'
- //$config['ToolbarLocation'] = 'In';
- // A setting for blocking copy/paste functions of the editor.
- // This setting activates on leaners only. For users with other statuses there is no blocking copy/paste.
- // Possible values: true , false
- $config['BlockCopyPaste'] = true;
- // Here new width and height of the editor may be set.
- // Possible values, examples: 300 , '250' , '100%' , ...
- //$config['Width'] = '100%';
- //$config['Height'] = '400';
|