learning_path_documents.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?php
  2. // Dokeos - elearning and course management software
  3. // See license terms in dokeos/documentation/license.txt
  4. // Training tools
  5. // Course (learning path) - documents
  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','Save','Preview'),
  10. array('Bold','Italic','Underline'),
  11. array('OrderedList','UnorderedList','-','Outdent','Indent'),
  12. array('JustifyLeft','JustifyCenter','JustifyRight'),
  13. array('Undo','Redo','-','Find','-','SelectAll','RemoveFormat'),
  14. array('Link','Unlink','Glossary'),
  15. array('Image','Flash'),
  16. '/',
  17. array('Style','FontFormat','FontName','FontSize'),
  18. array('TextColor','BGColor'),
  19. array('Rule','Table','SpecialChar','mimetex','asciimath'),
  20. array('Source')
  21. );
  22. // This is the visible toolbar set when the editor is maximized.
  23. // If it has not been defined, then the toolbar set for the "normal" size is used.
  24. $config['ToolbarSets']['Maximized'] = array(
  25. array('FitWindow','DocProps','-','Save','NewPage','Preview','-','Templates'),
  26. array('Cut','Copy','Paste','PasteText','PasteWord','-','Print'),
  27. array('Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'),
  28. array('Link','Unlink','Anchor','Glossary'),
  29. '/',
  30. array('Bold','Italic','Underline','StrikeThrough','-','Subscript','Superscript'),
  31. array('OrderedList','UnorderedList','-','Outdent','Indent','Blockquote','CreateDiv'),
  32. array('JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'),
  33. array('Rule','SpecialChar','PageBreak'),
  34. array('mimetex','asciimath','Image','imgmapPopup','Flash','MP3','EmbedMovies','flvPlayer','YouTube','googlemaps','Smiley'),
  35. '/',
  36. array('Style','FontFormat','FontName','FontSize'),
  37. array('TextColor','BGColor'),
  38. array('Table','TableInsertRowAfter','TableDeleteRows','TableInsertColumnAfter','TableDeleteColumns','TableInsertCellAfter','TableDeleteCells','TableMergeCells','TableHorizontalSplitCell','TableVerticalSplitCell','TableCellProp'),
  39. array('ShowBlocks','Source')
  40. );
  41. // Sets whether the toolbar can be collapsed/expanded or not.
  42. // Possible values: true , false
  43. //$config['ToolbarCanCollapse'] = true;
  44. // Sets how the editor's toolbar should start - expanded or collapsed.
  45. // Possible values: true , false
  46. //$config['ToolbarStartExpanded'] = true;
  47. //This option sets the location of the toolbar.
  48. // Possible values: 'In' , 'None' , 'Out:[TargetId]' , 'Out:[TargetWindow]([TargetId])'
  49. //$config['ToolbarLocation'] = 'In';
  50. // A setting for blocking copy/paste functions of the editor.
  51. // This setting activates on leaners only. For users with other statuses there is no blocking copy/paste.
  52. // Possible values: true , false
  53. //$config['BlockCopyPaste'] = false;
  54. // Here new width and height of the editor may be set.
  55. // Possible values, examples: 300 , '250' , '100%' , ...
  56. //$config['Width'] = '100%';
  57. //$config['Height'] = '700';