test_proposed_answer.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. // Course tools
  3. // Test, answer to a question
  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','Bold','Image','Link','PasteWord','MP3','mimetex','Table','Subscript','Superscript','Source')
  8. );
  9. // This is the visible toolbar set when the editor is maximized.
  10. // If it has not been defined, then the toolbar set for the "normal" size is used.
  11. /*
  12. $config['ToolbarSets']['Maximized'] = array(
  13. array('FitWindow','-') // ...
  14. );
  15. */
  16. // Sets whether the toolbar can be collapsed/expanded or not.
  17. // Possible values: true , false
  18. //$config['ToolbarCanCollapse'] = true;
  19. // Sets how the editor's toolbar should start - expanded or collapsed.
  20. // Possible values: true , false
  21. $config['ToolbarStartExpanded'] = false;
  22. //This option sets the location of the toolbar.
  23. // Possible values: 'In' , 'None' , 'Out:[TargetId]' , 'Out:[TargetWindow]([TargetId])'
  24. //$config['ToolbarLocation'] = 'In';
  25. // A setting for blocking copy/paste functions of the editor.
  26. // This setting activates on leaners only. For users with other statuses there is no blocking copy/paste.
  27. // Possible values: true , false
  28. //$config['BlockCopyPaste'] = false;
  29. // Here new width and height of the editor may be set.
  30. // Possible values, examples: 300 , '250' , '100%' , ...
  31. //$config['Width'] = '100%';
  32. //$config['Height'] = '300';