terms_and_conditions.php 1.6 KB

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