1234567891011121314151617181920 |
- <?php
- // Chamilo LMS
- // See license terms in chamilo/documentation/license.txt
- // Training tools
- // Test, proposed answer to a question
- // 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', 'Image', 'Source')
- );
- // Sets how the editor's toolbar should start - expanded or collapsed.
- // Possible values: true , false
- $config['ToolbarStartExpanded'] = true;
|