1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- // Chamilo LMS
- // See license terms in chamilo/documentation/license.txt
- // Admin tools
- // Careers
- // For more information: http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/Configuration/Configuration_Options
- //NOTE: Does not include Replace because it is redundant, being in the same tab to Find
- //TODO: DocProps, asciimath, asciisvg don't run ok here.
- // Hide/show SpellCheck buttom
- if ((api_get_setting('allow_spellcheck') == 'true')) {
- $VSpellCheck='SpellCheck';
- }
- else{
- $VSpellCheck='';
- }
- // This is the visible toolbar set when the editor has "normal" size.
- $config['ToolbarSets']['Normal'] = array(
- array('Save','NewPage','Templates','-','PasteText'),
- array('Undo','Redo'),
- array('Link','Image','flvPlayer','Flash','MP3','TableOC','mimetex'),
- array('UnorderedList','OrderedList','Rule'),
- array('JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'),
- array('FontFormat','FontName','FontSize','Bold','Italic','Underline','TextColor','BGColor','Source'),
- array('FitWindow')
- );
- // 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'] = false;
- // Here new width and height of the editor may be set.
- // Possible values, examples: 300 , '250' , '100%' , ...
- //$config['Width'] = '100%';
- //$config['Height'] = '300';
|