faq.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. // Chamilo LMS
  3. // See license terms in chamilo/documentation/license.txt
  4. // FAQ
  5. // For more information: http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/Configuration/Configuration_Options
  6. // This is the visible toolbar set when the editor has "normal" size.
  7. $config['ToolbarSets']['Normal'] = array(
  8. array('Save','Preview','Source')
  9. );
  10. // This is the visible toolbar set when the editor is maximized.
  11. // If it has not been defined, then the toolbar set for the "normal" size is used.
  12. /*
  13. $config['ToolbarSets']['Maximized'] = array(
  14. array('FitWindow','-') // ...
  15. );
  16. */
  17. // Sets whether the toolbar can be collapsed/expanded or not.
  18. // Possible values: true , false
  19. //$config['ToolbarCanCollapse'] = true;
  20. // Sets how the editor's toolbar should start - expanded or collapsed.
  21. // Possible values: true , false
  22. //$config['ToolbarStartExpanded'] = true;
  23. //This option sets the location of the toolbar.
  24. // Possible values: 'In' , 'None' , 'Out:[TargetId]' , 'Out:[TargetWindow]([TargetId])'
  25. //$config['ToolbarLocation'] = 'In';
  26. // A setting for blocking copy/paste functions of the editor.
  27. // This setting activates on leaners only. For users with other statuses there is no blocking copy/paste.
  28. // Possible values: true , false
  29. //$config['BlockCopyPaste'] = false;
  30. // Here new width and height of the editor may be set.
  31. // Possible values, examples: 300 , '250' , '100%' , ...
  32. //$config['Width'] = '100%';
  33. //$config['Height'] = '300';