test_description.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. // Course tools
  3. // Test description
  4. // For more information: http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/Configuration/Configuration_Options
  5. // This is the visible toolbar set when the editor has "normal" size.
  6. $config['ToolbarSets']['Normal'] = array(
  7. array('FitWindow','-','PasteWord','-','Undo','Redo'),
  8. array('Link','Unlink','Anchor'),
  9. array('Image','flvPlayer','Flash','EmbedMovies','YouTube','MP3','mimetex'),
  10. array('Table','SpecialChar'),
  11. array('OrderedList','UnorderedList','-','Outdent','Indent','-','TextColor','BGColor','-','Source'),
  12. '/',
  13. array('Style','FontFormat','FontName','FontSize'),
  14. array('Bold','Italic','Underline'),
  15. array('JustifyLeft','JustifyCenter','JustifyRight')
  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'] = false;
  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'] = '200';