project_comment_student.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. // Chamilo LMS
  3. // See license terms in chamilo/documentation/license.txt
  4. // Training tools
  5. // Project - comment (student)
  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('FitWindow','-','PasteWord','-','Undo','Redo'),
  10. array('Link','Unlink'),
  11. array('Image','flvPlayer','Flash','EmbedMovies','YouTube','MP3','mimetex'),
  12. array('Table','googlemaps'),
  13. array('Bold','Italic','Underline'),
  14. array('JustifyLeft','JustifyCenter','-','OrderedList','UnorderedList','-','TextColor','BGColor'),
  15. array('ShowBlocks')
  16. );
  17. // This is the visible toolbar set when the editor is maximized.
  18. // If it has not been defined, then the toolbar set for the "normal" size is used.
  19. /*
  20. $config['ToolbarSets']['Maximized'] = array(
  21. array('FitWindow','-') // ...
  22. );
  23. */
  24. // Sets whether the toolbar can be collapsed/expanded or not.
  25. // Possible values: true , false
  26. //$config['ToolbarCanCollapse'] = true;
  27. // Sets how the editor's toolbar should start - expanded or collapsed.
  28. // Possible values: true , false
  29. //$config['ToolbarStartExpanded'] = true;
  30. //This option sets the location of the toolbar.
  31. // Possible values: 'In' , 'None' , 'Out:[TargetId]' , 'Out:[TargetWindow]([TargetId])'
  32. //$config['ToolbarLocation'] = 'In';
  33. // A setting for blocking copy/paste functions of the editor.
  34. // This setting activates on leaners only. For users with other statuses there is no blocking copy/paste.
  35. // Possible values: true , false
  36. //$config['BlockCopyPaste'] = true;
  37. // Here new width and height of the editor may be set.
  38. // Possible values, examples: 300 , '250' , '100%' , ...
  39. //$config['Width'] = '100%';
  40. //$config['Height'] = '300';