[svn r12078] Add/remove buttons in FCK in the test tool : http://projects.dokeos.com/?do=details&id=1432

skala
Julian Prud'homme 18 years ago
parent 3d887c8206
commit e7969ecf54
  1. 4
      main/exercice/exercise.lib.php
  2. 2
      main/exercice/multiple_answer.class.php
  3. 9
      main/exercice/question.class.php
  4. 2
      main/exercice/unique_answer.class.php
  5. 6
      main/inc/lib/fckeditor/myconfig.js

@ -23,7 +23,7 @@
* shows a question and its answers
* @package dokeos.exercise
* @author Olivier Brouckaert <oli.brouckaert@skynet.be>
* @version $Id: exercise.lib.php 11110 2007-02-14 13:48:08Z elixir_julian $
* @version $Id: exercise.lib.php 12078 2007-04-23 09:05:34Z elixir_julian $
*/
@ -95,7 +95,7 @@ function showQuestion($questionId, $onlyAnswers=false, $origin=false)
$oFCKeditor->BasePath = api_get_path(WEB_PATH) . 'main/inc/lib/fckeditor/' ;
$oFCKeditor->Config['CustomConfigurationsPath'] = api_get_path(REL_PATH)."main/inc/lib/fckeditor/myconfig.js";
$oFCKeditor->Config['IMUploadPath'] = 'upload/test/';
$oFCKeditor->ToolbarSet = "Small";
$oFCKeditor->ToolbarSet = "Test";
$oFCKeditor->Width = '80%';
$oFCKeditor->Height = '300';
$oFCKeditor->Value = '' ;

@ -60,7 +60,7 @@ class MultipleAnswer extends Question {
global $fck_attribute;
$fck_attribute = array();
$fck_attribute['Width'] = '320px';
$fck_attribute['Width'] = '348px';
$fck_attribute['Height'] = '100px';
$fck_attribute['ToolbarSet'] = 'Test';
$fck_attribute['Config']['IMUploadPath'] = 'upload/test/';

@ -22,7 +22,7 @@
* File containing the Question class.
* @package dokeos.exercise
* @author Olivier Brouckaert
* @version $Id: question.class.php 11108 2007-02-14 10:48:51Z elixir_julian $
* @version $Id: question.class.php 12078 2007-04-23 09:05:34Z elixir_julian $
*/
@ -732,6 +732,11 @@ abstract class Question
*/
function createForm (&$form) {
echo ' <style>
div.row div.label{ width: 10%; }
div.row div.formw{ width: 89%; }
</style>';
// question name
$test=$form->addElement('text','questionName',get_lang('Question'),'size="60"');
$renderer = $form->defaultRenderer();
@ -748,7 +753,7 @@ abstract class Question
$fck_attribute = array();
$fck_attribute['Width'] = '100%';
$fck_attribute['Height'] = '150';
$fck_attribute['ToolbarSet'] = 'Test';
$fck_attribute['ToolbarSet'] = 'TestComment';
$fck_attribute['Config']['IMUploadPath'] = 'upload/test/';
$fck_attribute['Config']['FlashUploadPath'] = 'upload/test/';
if(!api_is_allowed_to_edit()) $fck_attribute['Config']['UserStatus'] = 'student';

@ -60,7 +60,7 @@ class UniqueAnswer extends Question {
global $fck_attribute;
$fck_attribute = array();
$fck_attribute['Width'] = '320px';
$fck_attribute['Width'] = '348px';
$fck_attribute['Height'] = '100px';
$fck_attribute['ToolbarSet'] = 'Test';
$fck_attribute['Config']['IMUploadPath'] = 'upload/test/';

@ -52,8 +52,12 @@ FCKConfig.ToolbarSets["NewTest"] = [
['Bold','Italic','Underline','StrikeThrough','Link','ImageManager','Flash','MP3','OrderedList','UnorderedList','Table']
] ;
FCKConfig.ToolbarSets["TestComment"] = [
['Bold','Italic','Underline','StrikeThrough','Subscript', 'Superscript','Link','ImageManager','Flash','MP3','Video','OrderedList','UnorderedList','Table']
] ;
FCKConfig.ToolbarSets["Test"] = [
['Bold','Italic','Underline','StrikeThrough','Link','ImageManager','Flash','MP3','OrderedList','UnorderedList','Table']
['Bold','Italic','Underline','StrikeThrough','Subscript','Superscript','Link','ImageManager','MP3','OrderedList','UnorderedList','Table']
] ;
FCKConfig.ToolbarSets["Survey"] = [

Loading…
Cancel
Save