careers.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. // Chamilo LMS
  3. // See license terms in chamilo/documentation/license.txt
  4. // Admin tools
  5. // Careers
  6. // For more information: http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/Configuration/Configuration_Options
  7. //NOTE: Does not include Replace because it is redundant, being in the same tab to Find
  8. //TODO: DocProps, asciimath, asciisvg don't run ok here.
  9. // Hide/show SpellCheck buttom
  10. if ((api_get_setting('allow_spellcheck') == 'true')) {
  11. $VSpellCheck='SpellCheck';
  12. }
  13. else{
  14. $VSpellCheck='';
  15. }
  16. // This is the visible toolbar set when the editor has "normal" size.
  17. $config['ToolbarSets']['Normal'] = array(
  18. array('Save','NewPage','Templates','-','PasteText'),
  19. array('Undo','Redo'),
  20. array('Link','Image','flvPlayer','Flash','MP3','TableOC','mimetex'),
  21. array('UnorderedList','OrderedList','Rule'),
  22. array('JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'),
  23. array('FontFormat','FontName','FontSize','Bold','Italic','Underline','TextColor','BGColor','Source'),
  24. array('FitWindow')
  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';