agenda.php 1.9 KB

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