fix correlation of normal bars

skala
Juan Carlos Raña 15 years ago
parent 93e96b5ee5
commit 1797bdeb02
  1. 2
      main/admin/legal_add.php
  2. 46
      main/inc/lib/fckeditor/toolbars/default/terms_and_conditions.php
  3. 16
      main/inc/lib/fckeditor/toolbars/extended/admin_templates.php
  4. 18
      main/inc/lib/fckeditor/toolbars/extended/agenda.php
  5. 18
      main/inc/lib/fckeditor/toolbars/extended/agenda_student.php
  6. 18
      main/inc/lib/fckeditor/toolbars/extended/announcements.php
  7. 19
      main/inc/lib/fckeditor/toolbars/extended/announcements_student.php
  8. 22
      main/inc/lib/fckeditor/toolbars/extended/assessments_introduction.php
  9. 17
      main/inc/lib/fckeditor/toolbars/extended/documents.php
  10. 17
      main/inc/lib/fckeditor/toolbars/extended/documents_student.php
  11. 16
      main/inc/lib/fckeditor/toolbars/extended/faq.php
  12. 21
      main/inc/lib/fckeditor/toolbars/extended/forum.php
  13. 21
      main/inc/lib/fckeditor/toolbars/extended/forum_student.php
  14. 15
      main/inc/lib/fckeditor/toolbars/extended/global_agenda.php
  15. 21
      main/inc/lib/fckeditor/toolbars/extended/glossary.php
  16. 17
      main/inc/lib/fckeditor/toolbars/extended/introduction.php
  17. 6
      main/inc/lib/fckeditor/toolbars/extended/learning_path_author.php
  18. 17
      main/inc/lib/fckeditor/toolbars/extended/learning_path_documents.php
  19. 18
      main/inc/lib/fckeditor/toolbars/extended/messages.php
  20. 21
      main/inc/lib/fckeditor/toolbars/extended/notebook.php
  21. 21
      main/inc/lib/fckeditor/toolbars/extended/notebook_student.php
  22. 17
      main/inc/lib/fckeditor/toolbars/extended/portal_home_page.php
  23. 21
      main/inc/lib/fckeditor/toolbars/extended/portal_news.php
  24. 14
      main/inc/lib/fckeditor/toolbars/extended/profile.php
  25. 15
      main/inc/lib/fckeditor/toolbars/extended/project.php
  26. 14
      main/inc/lib/fckeditor/toolbars/extended/project_comment.php
  27. 14
      main/inc/lib/fckeditor/toolbars/extended/project_comment_student.php
  28. 15
      main/inc/lib/fckeditor/toolbars/extended/project_student.php
  29. 13
      main/inc/lib/fckeditor/toolbars/extended/survey.php
  30. 41
      main/inc/lib/fckeditor/toolbars/extended/terms_and_conditions.php
  31. 6
      main/inc/lib/fckeditor/toolbars/extended/test_answer_feedback.php
  32. 21
      main/inc/lib/fckeditor/toolbars/extended/test_description.php
  33. 6
      main/inc/lib/fckeditor/toolbars/extended/test_free_answer.php
  34. 5
      main/inc/lib/fckeditor/toolbars/extended/test_proposed_answer.php
  35. 21
      main/inc/lib/fckeditor/toolbars/extended/test_question_description.php
  36. 17
      main/inc/lib/fckeditor/toolbars/extended/training_description.php
  37. 16
      main/inc/lib/fckeditor/toolbars/extended/wiki.php
  38. 17
      main/inc/lib/fckeditor/toolbars/extended/wiki_student.php

@ -122,7 +122,7 @@ if (isset($_POST['language'])) {
//$form->addElement('html_editor', 'content', null, null, array('ToolbarSet' => 'Basic', 'Width' => '100%', 'Height' => '250'));
$form->addElement('static', $_POST['language']);
$form->addElement('hidden', 'language',$_POST['language']);
$form->add_html_editor('content', get_lang('Content'), true, false, array('ToolbarSet' => 'simple', 'Width' => '100%', 'Height' => '250'));
$form->add_html_editor('content', get_lang('Content'), true, false, array('ToolbarSet' => 'terms_and_conditions', 'Width' => '100%', 'Height' => '250'));
//$form->addElement('textarea', 'content', get_lang('Content'),array('cols'=>'120','rows'=>'10'));
$form->addElement('radio', 'type', '', get_lang('HTMLText') ,'0');
$form->addElement('radio', 'type', '', get_lang('PageLink') ,'1');

@ -0,0 +1,46 @@
<?php
// Dokeos - elearning and course management software
// See license terms in dokeos/documentation/license.txt
// Training tools
// Survey
// For more information: http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/Configuration/Configuration_Options
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('Style','FontFormat','FontName','FontSize'),
array('Bold','Italic','Underline'),
array('JustifyLeft','JustifyCenter','JustifyRight')
);
// This is the visible toolbar set when the editor is maximized.
// If it has not been defined, then the toolbar set for the "normal" size is used.
/*
$config['ToolbarSets']['Maximized'] = array(
array('FitWindow','-') // ...
);
*/
// Sets whether the toolbar can be collapsed/expanded or not.
// Possible values: true , false
//$config['ToolbarCanCollapse'] = true;
// Sets how the editor's toolbar should start - expanded or collapsed.
// Possible values: true , false
//$config['ToolbarStartExpanded'] = true;
//This option sets the location of the toolbar.
// Possible values: 'In' , 'None' , 'Out:[TargetId]' , 'Out:[TargetWindow]([TargetId])'
//$config['ToolbarLocation'] = 'In';
// A setting for blocking copy/paste functions of the editor.
// This setting activates on leaners only. For users with other statuses there is no blocking copy/paste.
// Possible values: true , false
//$config['BlockCopyPaste'] = false;
// Here new width and height of the editor may be set.
// Possible values, examples: 300 , '250' , '100%' , ...
//$config['Width'] = '100%';
//$config['Height'] = '120';
?>

@ -9,17 +9,13 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow','Save','Preview'),
array('NewPage','Templates','Save','Print','PageBreak','FitWindow','-','PasteWord','-','Undo','Redo','-','SelectAll','-','Find'),
array('Bold','Italic','Underline'),
array('OrderedList','UnorderedList','-','Outdent','Indent'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('Undo','Redo','-','Find','-','SelectAll','RemoveFormat'),
array('Link','Unlink'),
array('Image','Flash'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('TextColor','BGColor'),
array('Rule','Table','SpecialChar'),
array('Link','Unlink','Anchor'),
array('Image','flvPlayer','Flash','EmbedMovies','YouTube','MP3','mimetex','asciimath'),
array('Table','Smiley','SpecialChar','googlemaps'),
array('FontFormat','FontName','FontSize'),
array('JustifyLeft','JustifyCenter','JustifyRight','-','OrderedList','UnorderedList','-','Outdent','Indent','-','TextColor','BGColor'),
array('Source')
);

@ -9,15 +9,15 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow','Save','Preview'),
array('Bold','Italic','Underline'),
array('OrderedList','UnorderedList','-','Outdent','Indent'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('Undo','Redo','-','SelectAll','RemoveFormat'),
array('Link','Unlink'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('TextColor','BGColor')
array('FitWindow','PasteWord','-','Undo','Redo'),
array('Link','Unlink','Anchor'),
array('Image','flvPlayer','Flash','EmbedMovies','YouTube','MP3','mimetex'),
array('Table','SpecialChar'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('Bold','Italic','Underline'),
array('JustifyLeft','JustifyCenter','JustifyRight','-','OrderedList','UnorderedList','-','Outdent','Indent','-','TextColor','BGColor'),
array('Source')
);
// This is the visible toolbar set when the editor is maximized.

@ -9,15 +9,15 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow','Save','Preview'),
array('Bold','Italic','Underline'),
array('OrderedList','UnorderedList','-','Outdent','Indent'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('Undo','Redo','-','SelectAll','RemoveFormat'),
array('Link','Unlink'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('TextColor','BGColor')
array('Save','FitWindow','PasteWord','-','Undo','Redo'),
array('Link','Unlink','Anchor'),
array('Image','flvPlayer','Flash','EmbedMovies','YouTube','MP3','mimetex'),
array('Table','SpecialChar'),
'/',
array('FontFormat','FontName','FontSize'),
array('Bold','Italic','Underline'),
array('JustifyLeft','JustifyCenter','JustifyRight','-','OrderedList','UnorderedList','-','Outdent','Indent','-','TextColor','BGColor'),
array('ShowBlocks')
);
// This is the visible toolbar set when the editor is maximized.

@ -9,15 +9,15 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow','Save','Preview'),
array('Bold','Italic','Underline'),
array('OrderedList','UnorderedList','-','Outdent','Indent'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('Undo','Redo','-','SelectAll','RemoveFormat'),
array('Link','Unlink'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('TextColor','BGColor')
array('Save','FitWindow','PasteWord','-','Undo','Redo'),
array('Link','Unlink','Anchor'),
array('Image','flvPlayer','Flash','EmbedMovies','YouTube','MP3','mimetex'),
array('Table','SpecialChar'),
array('OrderedList','UnorderedList','-','Outdent','Indent','-','TextColor','BGColor','-','Source'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('Bold','Italic','Underline'),
array('JustifyLeft','JustifyCenter','JustifyRight')
);
// This is the visible toolbar set when the editor is maximized.

@ -9,15 +9,16 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow','Save','Preview'),
array('Bold','Italic','Underline'),
array('OrderedList','UnorderedList','-','Outdent','Indent'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('Undo','Redo','-','SelectAll','RemoveFormat'),
array('Link','Unlink'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('TextColor','BGColor')
array('Save','FitWindow','PasteWord','-','Undo','Redo'),
array('Link','Unlink','Anchor'),
array('Image','flvPlayer','Flash','EmbedMovies','YouTube','MP3','mimetex'),
array('Table','SpecialChar'),
array('OrderedList','UnorderedList','-','Outdent','Indent','-','TextColor','BGColor'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('Bold','Italic','Underline'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('ShowBlocks')
);
// This is the visible toolbar set when the editor is maximized.

@ -9,18 +9,16 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow','Save','Preview'),
array('Bold','Italic','Underline'),
array('OrderedList','UnorderedList','-','Outdent','Indent'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('Undo','Redo','-','Find','-','SelectAll','RemoveFormat'),
array('Link','Unlink'),
array('Image','Flash'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('TextColor','BGColor'),
array('Rule','Table','SpecialChar'),
array('Source')
array('Save','FitWindow','-','PasteWord','-','Undo','Redo'),
array('Link','Unlink','Anchor'),
array('Image','flvPlayer','Flash','EmbedMovies','YouTube','MP3','mimetex'),
array('Table','SpecialChar'),
array('OrderedList','UnorderedList','-','Outdent','Indent','-','TextColor','BGColor'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('Bold','Italic','Underline'),
array('Subscript','Superscript','-','JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'),
array('Source')
);
// This is the visible toolbar set when the editor is maximized.

@ -9,18 +9,15 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow','Save','Preview'),
array('Bold','Italic','Underline'),
array('OrderedList','UnorderedList','-','Outdent','Indent'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('Undo','Redo','-','Find','-','SelectAll','RemoveFormat'),
array('Link','Unlink','Glossary'),
array('Image','Flash'),
array('Save','FitWindow','PasteWord','-','Undo','Redo'),
array('Link','Unlink','Anchor','Glossary'),
array('Image','flvPlayer','Flash','EmbedMovies','YouTube','MP3','mimetex','asciimath'),
array('Table','SpecialChar'),
array('Outdent','Indent','-','TextColor','BGColor','-','OrderedList','UnorderedList','-','Source'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('TextColor','BGColor'),
array('Rule','Table','SpecialChar','mimetex','asciimath'),
array('Source')
array('Bold','Italic','Underline'),
array('JustifyLeft','JustifyCenter','JustifyRight')
);
// This is the visible toolbar set when the editor is maximized.

@ -9,17 +9,16 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow','Save','Preview'),
array('Bold','Italic','Underline'),
array('OrderedList','UnorderedList','-','Outdent','Indent'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('Undo','Redo','-','Find','-','SelectAll','RemoveFormat'),
array('Link','Unlink','Glossary'),
array('Image','Flash'),
array('Save','FitWindow','PasteWord','-','Undo','Redo'),
array('Link','Unlink','Anchor'),
array('Image','flvPlayer','Flash','EmbedMovies','YouTube','MP3','mimetex','asciimath'),
array('Table','SpecialChar'),
array('Outdent','Indent','-','TextColor','BGColor','-','OrderedList','UnorderedList'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('TextColor','BGColor'),
array('Rule','Table','SpecialChar','mimetex','asciimath')
array('Bold','Italic','Underline'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('ShowBlocks')
);
// This is the visible toolbar set when the editor is maximized.

@ -7,7 +7,16 @@
// For more information: http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/Configuration/Configuration_Options
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('Save','Preview','Source')
);
// This is the visible toolbar set when the editor is maximized.
// If it has not been defined, then the toolbar set for the "normal" size is used.
$config['ToolbarSets']['Maximized'] = array(
//array('FitWindow','Save'),
array('Save'),
array('Bold','Italic','Underline'),
@ -16,13 +25,6 @@ $config['ToolbarSets']['Normal'] = array(
array('Link','Unlink')
);
// This is the visible toolbar set when the editor is maximized.
// If it has not been defined, then the toolbar set for the "normal" size is used.
/*
$config['ToolbarSets']['Maximized'] = array(
array('FitWindow','-') // ...
);
*/
// Sets whether the toolbar can be collapsed/expanded or not.
// Possible values: true , false

@ -9,18 +9,15 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow','Save','Preview'),
array('Bold','Italic','Underline'),
array('OrderedList','UnorderedList','-','Outdent','Indent'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('Undo','Redo','-','Find','-','SelectAll','RemoveFormat'),
array('Link','Unlink'),
array('Image','Flash'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('TextColor','BGColor'),
array('Rule','Table','SpecialChar','mimetex'),
array('Source')
array('Save','FitWindow','PasteWord','-','Undo','Redo'),
array('Link','Unlink','Anchor'),
array('Image','flvPlayer','Flash','EmbedMovies','YouTube','MP3','mimetex'),
array('Table','SpecialChar'),
array('OrderedList','UnorderedList','-','Outdent','Indent','-','TextColor','BGColor','Source'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('Bold','Italic','Underline'),
array('JustifyLeft','JustifyCenter','JustifyRight')
);
// This is the visible toolbar set when the editor is maximized.

@ -9,17 +9,16 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow','Save','Preview'),
array('Bold','Italic','Underline'),
array('OrderedList','UnorderedList','-','Outdent','Indent'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('Undo','Redo','-','Find','-','SelectAll','RemoveFormat'),
array('Link','Unlink'),
array('Image','Flash'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('TextColor','BGColor'),
array('Rule','Table','SpecialChar','mimetex')
array('Save','FitWindow','PasteWord','-','Undo','Redo'),
array('Link','Unlink','Anchor'),
array('Image','flvPlayer','Flash','EmbedMovies','YouTube','MP3','mimetex'),
array('Table','SpecialChar'),
array('OrderedList','UnorderedList','-','Outdent','Indent','-','TextColor','BGColor'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('Bold','Italic','Underline'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('ShowBlocks')
);
// This is the visible toolbar set when the editor is maximized.

@ -9,15 +9,14 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow','Save','Preview'),
array('Bold','Italic','Underline'),
array('OrderedList','UnorderedList','-','Outdent','Indent'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('Undo','Redo','-','SelectAll','RemoveFormat'),
array('FitWindow','-','PasteWord','-','Undo','Redo'),
array('Link','Unlink'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('TextColor','BGColor')
array('Image','flvPlayer','Flash','EmbedMovies','YouTube','MP3','mimetex'),
array('Table','SpecialChar','googlemaps'),
array('FontName','FontSize'),
array('Bold','Italic','Underline'),
array('OrderedList','UnorderedList','-','TextColor','BGColor'),
array('Source')
);
// This is the visible toolbar set when the editor is maximized.

@ -9,18 +9,15 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow','Save','Preview'),
array('Bold','Italic','Underline'),
array('OrderedList','UnorderedList','-','Outdent','Indent'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('Undo','Redo','-','Find','-','SelectAll','RemoveFormat'),
array('Link','Unlink'),
array('Image','Flash'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('TextColor','BGColor'),
array('Rule','Table','SpecialChar','mimetex'),
array('Source')
array('Save','FitWindow','PasteWord','-','Undo','Redo'),
array('Link','Unlink','Anchor'),
array('Image','flvPlayer','Flash','EmbedMovies','YouTube','MP3','mimetex'),
array('Table','SpecialChar'),
array('OrderedList','UnorderedList','-','Outdent','Indent','-','TextColor','BGColor','-','Source'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('Bold','Italic','Underline'),
array('JustifyLeft','JustifyCenter','JustifyRight')
);
// This is the visible toolbar set when the editor is maximized.

@ -9,18 +9,15 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow','Save','Preview'),
array('Bold','Italic','Underline'),
array('OrderedList','UnorderedList','-','Outdent','Indent'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('Undo','Redo','-','Find','-','SelectAll','RemoveFormat'),
array('Link','Unlink'),
array('Image','Flash'),
array('NewPage','FitWindow','-','PasteWord','-','Undo','Redo','-','SelectAll'),
array('Link','Unlink','Anchor'),
array('Image','flvPlayer','Flash','EmbedMovies','YouTube','MP3','mimetex'),
array('Table','SpecialChar'),
array('OrderedList','UnorderedList','-','Outdent','Indent','-','TextColor','BGColor','-','Source'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('TextColor','BGColor'),
array('Rule','Table','SpecialChar'),
array('Source')
array('Bold','Italic','Underline'),
array('JustifyLeft','JustifyCenter','JustifyRight')
);
// This is the visible toolbar set when the editor is maximized.

@ -9,11 +9,7 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow'),
array('Bold','Italic','Underline'),
array('Undo','Redo'),
array('TextColor','BGColor'),
array('Link','Unlink')
array('Link','Unlink','Bold','Italic','TextColor','BGColor','Source')
);
// This is the visible toolbar set when the editor is maximized.

@ -9,19 +9,14 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow','Save','Preview'),
array('Bold','Italic','Underline'),
array('OrderedList','UnorderedList','-','Outdent','Indent'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('Undo','Redo','-','Find','-','SelectAll','RemoveFormat'),
array('Link','Unlink','Glossary'),
array('Image','Flash'),
array('PasteWord','-','Undo','Redo'),
array('Link','Unlink','Anchor','Glossary'),
array('Image','flvPlayer','Flash','EmbedMovies','YouTube','MP3','mimetex','asciimath','Table','SpecialChar'),
array('Outdent','Indent','TextColor','BGColor','-','OrderedList','UnorderedList','JustifyLeft','JustifyCenter','JustifyRight'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('TextColor','BGColor'),
array('Rule','Table','SpecialChar','mimetex','asciimath'),
array('Source')
);
array('Bold','Italic','Underline','-','Source'),
);//save, FitWindow don't run well here
// This is the visible toolbar set when the editor is maximized.
// If it has not been defined, then the toolbar set for the "normal" size is used.

@ -9,17 +9,15 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow','Preview'),
array('Bold','Italic','Underline'),
array('OrderedList','UnorderedList','-','Outdent','Indent'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('Undo','Redo','-','Find','-','SelectAll','RemoveFormat'),
array('Link','Unlink'),
array('Image','Flash'),
array('FitWindow','-','PasteWord','-','Undo','Redo'),
array('Link','Unlink','Anchor'),
array('Image','flvPlayer','Flash','EmbedMovies','YouTube','MP3','mimetex'),
array('Table','Smiley'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('TextColor','BGColor'),
array('Rule','Table','SpecialChar','mimetex')
array('FontName','FontSize'),
array('Bold','Italic','Underline'),
array('JustifyLeft','JustifyCenter','-','OrderedList','UnorderedList','-','TextColor','BGColor'),
array('Source')
);
// This is the visible toolbar set when the editor is maximized.

@ -9,18 +9,15 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow','Save','Preview'),
array('Bold','Italic','Underline'),
array('OrderedList','UnorderedList','-','Outdent','Indent'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('Undo','Redo','-','Find','-','SelectAll','RemoveFormat'),
array('Link','Unlink'),
array('Image','Flash'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('TextColor','BGColor'),
array('Rule','Table','SpecialChar','mimetex'),
array('Source')
array('Save','FitWindow','-','PasteWord','-','Undo','Redo'),
array('Link','Unlink','Anchor'),
array('Image','flvPlayer','Flash','EmbedMovies','YouTube','MP3','mimetex'),
array('Table','SpecialChar'),
array('OrderedList','UnorderedList','-','Outdent','Indent','-','TextColor','BGColor','-','Source'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('Bold','Italic','Underline'),
array('JustifyLeft','JustifyCenter','JustifyRight')
);
// This is the visible toolbar set when the editor is maximized.

@ -9,17 +9,16 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow','Save','Preview'),
array('Bold','Italic','Underline'),
array('OrderedList','UnorderedList','-','Outdent','Indent'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('Undo','Redo','-','Find','-','SelectAll','RemoveFormat'),
array('Link','Unlink'),
array('Image','Flash'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('TextColor','BGColor'),
array('Rule','Table','SpecialChar','mimetex')
array('Save','FitWindow','-','PasteWord','-','Undo','Redo'),
array('Link','Unlink','Anchor'),
array('Image','flvPlayer','Flash','EmbedMovies','YouTube','MP3','mimetex'),
array('Table','SpecialChar'),
array('OrderedList','UnorderedList','-','Outdent','Indent','-','TextColor','BGColor'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('Bold','Italic','Underline'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('ShowBlocks')
);
// This is the visible toolbar set when the editor is maximized.

@ -9,17 +9,14 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow','Save','Preview'),
array('Bold','Italic','Underline'),
array('OrderedList','UnorderedList','-','Outdent','Indent'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('Undo','Redo','-','Find','-','SelectAll','RemoveFormat'),
array('Link','Unlink'),
array('Image','Flash'),
array('NewPage','Templates','Save','Print','PageBreak','FitWindow','-','PasteWord','-','Undo','Redo','-','SelectAll','-','Find'),
array('Link','Unlink','Anchor'),
array('Image','flvPlayer','Flash','EmbedMovies','YouTube','MP3','mimetex'),
array('Table','Smiley','SpecialChar','googlemaps'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('TextColor','BGColor'),
array('Rule','Table','SpecialChar'),
array('FontFormat','FontName','FontSize'),
array('Bold','Italic','Underline'),
array('JustifyLeft','JustifyCenter','JustifyRight','-','OrderedList','UnorderedList','-','Outdent','Indent','-','TextColor','BGColor'),
array('Source')
);

@ -9,18 +9,15 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow','Save','Preview'),
array('Bold','Italic','Underline'),
array('OrderedList','UnorderedList','-','Outdent','Indent'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('Undo','Redo','-','Find','-','SelectAll','RemoveFormat'),
array('Link','Unlink'),
array('Image','Flash'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('TextColor','BGColor'),
array('Rule','Table','SpecialChar'),
array('Source')
array('Save','FitWindow','PasteWord','-','Undo','Redo'),
array('Link','Unlink','Anchor'),
array('Image','flvPlayer','Flash','EmbedMovies','YouTube','MP3','mimetex'),
array('Table','SpecialChar'),
array('OrderedList','UnorderedList','-','Outdent','Indent','-','TextColor','BGColor','-','Source'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('Bold','Italic','Underline'),
array('JustifyLeft','JustifyCenter','JustifyRight')
);
// This is the visible toolbar set when the editor is maximized.

@ -9,13 +9,15 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow'),
array('FitWindow','-','PasteWord','-','Undo','Redo'),
array('Link','Unlink','Anchor'),
array('Image','flvPlayer','Flash','EmbedMovies','YouTube','MP3','mimetex'),
array('Table','Smiley'),
'/',
array('FontName','FontSize'),
array('Bold','Italic','Underline'),
array('OrderedList','UnorderedList'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('Undo','Redo','-','SelectAll','RemoveFormat'),
array('TextColor','BGColor'),
array('Link','Unlink','SpecialChar')
array('JustifyLeft','JustifyCenter','-','OrderedList','UnorderedList','-','TextColor','BGColor'),
array('Source')
);
// This is the visible toolbar set when the editor is maximized.

@ -9,15 +9,14 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow','Save','Preview'),
array('FitWindow','-','PasteWord','-','Undo','Redo'),
array('Link','Unlink','Anchor'),
array('Image','flvPlayer','Flash','EmbedMovies','YouTube','MP3','mimetex'),
array('Table','googlemaps'),
array('FontName','FontSize'),
array('Bold','Italic','Underline'),
array('OrderedList','UnorderedList','-','Outdent','Indent'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('Undo','Redo','-','SelectAll','RemoveFormat'),
array('Link','Unlink'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('TextColor','BGColor')
array('JustifyLeft','JustifyCenter','-','OrderedList','UnorderedList','-','TextColor','BGColor'),
array('Source')
);
// This is the visible toolbar set when the editor is maximized.

@ -9,15 +9,13 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow','Save','Preview'),
array('Bold','Italic','Underline'),
array('OrderedList','UnorderedList','-','Outdent','Indent'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('Undo','Redo','-','SelectAll','RemoveFormat'),
array('FitWindow','-','PasteWord','-','Undo','Redo'),
array('Link','Unlink'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('TextColor','BGColor')
array('Image','flvPlayer','Flash','EmbedMovies','YouTube','MP3','mimetex'),
array('Table','googlemaps'),
array('Bold','Italic','Underline'),
array('JustifyLeft','JustifyCenter','-','OrderedList','UnorderedList','-','TextColor','BGColor'),
array('Source')
);
// This is the visible toolbar set when the editor is maximized.

@ -9,15 +9,13 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow','Save','Preview'),
array('Bold','Italic','Underline'),
array('OrderedList','UnorderedList','-','Outdent','Indent'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('Undo','Redo','-','SelectAll','RemoveFormat'),
array('FitWindow','-','PasteWord','-','Undo','Redo'),
array('Link','Unlink'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('TextColor','BGColor')
array('Image','flvPlayer','Flash','EmbedMovies','YouTube','MP3','mimetex'),
array('Table','googlemaps'),
array('Bold','Italic','Underline'),
array('JustifyLeft','JustifyCenter','-','OrderedList','UnorderedList','-','TextColor','BGColor'),
array('ShowBlocks')
);
// This is the visible toolbar set when the editor is maximized.

@ -9,15 +9,14 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow','Save','Preview'),
array('FitWindow','-','PasteWord','-','Undo','Redo'),
array('Link','Unlink','Anchor'),
array('Image','flvPlayer','Flash','EmbedMovies','YouTube','MP3','mimetex'),
array('Table','googlemaps'),
array('FontName','FontSize'),
array('Bold','Italic','Underline'),
array('OrderedList','UnorderedList','-','Outdent','Indent'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('Undo','Redo','-','SelectAll','RemoveFormat'),
array('Link','Unlink'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('TextColor','BGColor')
array('JustifyLeft','JustifyCenter','-','OrderedList','UnorderedList','-','TextColor','BGColor'),
array('ShowBlocks')
);
// This is the visible toolbar set when the editor is maximized.

@ -10,14 +10,13 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow'),
array('FontSize', 'Bold','Italic','Underline'),
array('OrderedList','UnorderedList','-','Outdent','Indent'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('Undo','Redo','-','SelectAll','RemoveFormat'),
array('TextColor','BGColor'),
array('Link','Unlink'),
array('Table','SpecialChar'),
array('Image','Flash')
array('Image'),
array('Table'),
array('FontSize'),
array('Bold','Italic'),
array('OrderedList','UnorderedList','-','TextColor'),
array('Source')
);
// This is the visible toolbar set when the editor is maximized.

@ -0,0 +1,41 @@
<?php
// Dokeos - elearning and course management software
// See license terms in dokeos/documentation/license.txt
// Training tools
// Survey
// For more information: http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/Configuration/Configuration_Options
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('Style','FontFormat','FontName','FontSize'),
array('Bold','Italic','Underline'),
array('JustifyLeft','JustifyCenter','JustifyRight')
);
// This is the visible toolbar set when the editor is maximized.
// If it has not been defined, then the toolbar set for the "normal" size is used.
$config['ToolbarSets']['Maximized'] = array(
array('Style','FontFormat','FontName','FontSize'),
array('Bold','Italic','Underline'),
array('JustifyLeft','JustifyCenter','JustifyRight')
);
// Sets how the editor's toolbar should start - expanded or collapsed.
// Possible values: true , false
//$config['ToolbarStartExpanded'] = true;
//This option sets the location of the toolbar.
// Possible values: 'In' , 'None' , 'Out:[TargetId]' , 'Out:[TargetWindow]([TargetId])'
//$config['ToolbarLocation'] = 'In';
// A setting for blocking copy/paste functions of the editor.
// This setting activates on leaners only. For users with other statuses there is no blocking copy/paste.
// Possible values: true , false
//$config['BlockCopyPaste'] = false;
// Here new width and height of the editor may be set.
// Possible values, examples: 300 , '250' , '100%' , ...
//$config['Width'] = '100%';
//$config['Height'] = '120';
?>

@ -9,11 +9,7 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow'),
array('Bold','Italic','Underline','-','Subscript','Superscript'),
array('Undo','Redo'),
array('TextColor','BGColor'),
array('SpecialChar','mimetex')
array('Link','Unlink','Bold','Italic','TextColor','BGColor','mimetex')
);
// This is the visible toolbar set when the editor is maximized.

@ -9,18 +9,15 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow','Save','Preview'),
array('Bold','Italic','Underline'),
array('OrderedList','UnorderedList','-','Outdent','Indent'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('Undo','Redo','-','Find','-','SelectAll','RemoveFormat'),
array('Link','Unlink'),
array('Image','Flash'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('TextColor','BGColor'),
array('Rule','Table','SpecialChar','mimetex'),
array('Source')
array('FitWindow','-','PasteWord','-','Undo','Redo'),
array('Link','Unlink','Anchor'),
array('Image','flvPlayer','Flash','EmbedMovies','YouTube','MP3','mimetex'),
array('Table','SpecialChar'),
array('OrderedList','UnorderedList','-','Outdent','Indent','-','TextColor','BGColor','-','Source'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('Bold','Italic','Underline'),
array('JustifyLeft','JustifyCenter','JustifyRight')
);
// This is the visible toolbar set when the editor is maximized.

@ -9,11 +9,7 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow'),
array('Bold','Italic','Underline','-','Subscript','Superscript'),
array('Undo','Redo'),
array('TextColor','BGColor'),
array('SpecialChar','mimetex')
array('FitWindow','Bold','Image','Link','PasteWord','MP3','mimetex','Table','Subscript','Superscript','ShowBlocks')
);
// This is the visible toolbar set when the editor is maximized.

@ -9,10 +9,7 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow'),
array('Bold','Italic','Underline','-','Subscript','Superscript'),
array('Undo','Redo'),
array('SpecialChar','mimetex')
array('FitWindow','Bold','Image','Link','PasteWord','MP3','mimetex','Table','Subscript','Superscript','Source')
);
// This is the visible toolbar set when the editor is maximized.

@ -9,18 +9,15 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow','Save','Preview'),
array('Bold','Italic','Underline'),
array('OrderedList','UnorderedList','-','Outdent','Indent'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('Undo','Redo','-','Find','-','SelectAll','RemoveFormat'),
array('Link','Unlink'),
array('Image','Flash'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('TextColor','BGColor'),
array('Rule','Table','SpecialChar','mimetex'),
array('Source')
array('FitWindow','-','PasteWord','-','Undo','Redo'),
array('Link','Unlink'),
array('Image','flvPlayer','Flash','EmbedMovies','YouTube','MP3','mimetex'),
array('Table','SpecialChar'),
array('OrderedList','UnorderedList','-','Outdent','Indent','-','TextColor','BGColor','-','Source'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('Bold','Italic','Underline'),
array('JustifyLeft','JustifyCenter','JustifyRight')
);
// This is the visible toolbar set when the editor is maximized.

@ -9,18 +9,15 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow','Save','Preview'),
array('Bold','Italic','Underline'),
array('OrderedList','UnorderedList','-','Outdent','Indent'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('Undo','Redo','-','Find','-','SelectAll','RemoveFormat'),
array('Link','Unlink'),
array('Image','Flash'),
array('NewPage','Save','FitWindow','PasteWord','-','Undo','Redo'),
array('Link','Unlink','Anchor'),
array('Image','flvPlayer','Flash','EmbedMovies','YouTube','MP3','mimetex'),
array('Table','SpecialChar'),
array('OrderedList','UnorderedList','-','Outdent','Indent','-','TextColor','BGColor','Source'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('TextColor','BGColor'),
array('Rule','Table','SpecialChar'),
array('Source')
array('Bold','Italic','Underline'),
array('JustifyLeft','JustifyCenter','JustifyRight')
);
// This is the visible toolbar set when the editor is maximized.

@ -9,17 +9,13 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow','Save','Preview'),
array('NewPage','Templates','Save','PageBreak','Preview','FitWindow','-','PasteText','-','Undo','Redo','-','SelectAll','-','Find'),
array('Wikilink','Link','Unlink','Anchor'),
array('Image','flvPlayer','Flash','EmbedMovies','YouTube','MP3','mimetex','asciimath'),
array('Table','Smiley','SpecialChar','googlemaps'),
array('FontFormat','FontName','FontSize'),
array('Bold','Italic','Underline'),
array('OrderedList','UnorderedList','-','Outdent','Indent'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('Undo','Redo','-','Find','-','SelectAll','RemoveFormat'),
array('Link','Unlink','Wikilink','Glossary'),
array('Image','Flash'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('TextColor','BGColor'),
array('Rule','Table','SpecialChar','mimetex','asciimath'),
array('Subscript','Superscript','-','JustifyLeft','JustifyCenter','JustifyRight','-','OrderedList','UnorderedList','-','Outdent','Indent','-','TextColor','BGColor'),
array('Source')
);

@ -9,17 +9,14 @@
// This is the visible toolbar set when the editor has "normal" size.
$config['ToolbarSets']['Normal'] = array(
array('FitWindow','Save','Preview'),
array('NewPage','Save','PageBreak','Preview','FitWindow','-','PasteText','-','Undo','Redo','-','SelectAll','-','Find'),
array('Wikilink','Link','Unlink','Anchor'),
array('Image','flvPlayer','Flash','EmbedMovies','YouTube','MP3','mimetex','asciimath'),
array('Table','Smiley','SpecialChar','googlemaps'),
array('FontFormat','FontName','FontSize'),
array('Bold','Italic','Underline'),
array('OrderedList','UnorderedList','-','Outdent','Indent'),
array('JustifyLeft','JustifyCenter','JustifyRight'),
array('Undo','Redo','-','Find','-','SelectAll','RemoveFormat'),
array('Link','Unlink','Wikilink','Glossary'),
array('Image','Flash'),
'/',
array('Style','FontFormat','FontName','FontSize'),
array('TextColor','BGColor'),
array('Rule','Table','SpecialChar','mimetex','asciimath')
array('Subscript','Superscript','-','JustifyLeft','JustifyCenter','JustifyRight','-','OrderedList','UnorderedList','-','Outdent','Indent','-','TextColor','BGColor'),
array('ShowBlocks')
);
// This is the visible toolbar set when the editor is maximized.

Loading…
Cancel
Save