test_answer_feedback.php 1.5 KB

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