work.php 1.8 KB

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