|
|
|
@ -11,8 +11,6 @@ |
|
|
|
|
* Code |
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
if(!class_exists('FillBlanks')): |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
CLASS FillBlanks |
|
|
|
|
* |
|
|
|
@ -60,13 +58,15 @@ class FillBlanks extends Question |
|
|
|
|
//make sure we only take the last bit to find special marks |
|
|
|
|
$sz = count($pre_array); |
|
|
|
|
$is_set_switchable = explode('@', $pre_array[$sz-1]); |
|
|
|
|
|
|
|
|
|
if ($is_set_switchable[1]) { |
|
|
|
|
$defaults['multiple_answer'] = 1; |
|
|
|
|
} else { |
|
|
|
|
$defaults['multiple_answer'] = 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//take the complete string except after the last '::' |
|
|
|
|
//Take the complete string except after the last '::' |
|
|
|
|
|
|
|
|
|
$defaults['answer'] = ''; |
|
|
|
|
for ($i=0;$i<($sz-1);$i++) { |
|
|
|
|
$defaults['answer'] .= $pre_array[$i]; |
|
|
|
@ -77,7 +77,7 @@ class FillBlanks extends Question |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// javascript |
|
|
|
|
echo '<script type="text/javascript"> |
|
|
|
|
echo '<script> |
|
|
|
|
function FCKeditor_OnComplete( editorInstance ) { |
|
|
|
|
if (window.attachEvent) { |
|
|
|
|
editorInstance.EditorDocument.attachEvent("onkeyup", updateBlanks) ; |
|
|
|
@ -114,6 +114,7 @@ class FillBlanks extends Question |
|
|
|
|
if (firstTime) { |
|
|
|
|
firstTime = false; |
|
|
|
|
'; |
|
|
|
|
|
|
|
|
|
if (count($a_weightings) > 0) { |
|
|
|
|
foreach($a_weightings as $i => $weighting) { |
|
|
|
|
echo 'document.getElementById("weighting['.$i.']").value = "'.$weighting.'";'; |
|
|
|
@ -157,7 +158,6 @@ class FillBlanks extends Question |
|
|
|
|
function processAnswersCreation($form) |
|
|
|
|
{ |
|
|
|
|
global $charset; |
|
|
|
|
|
|
|
|
|
$answer = $form->getSubmitValue('answer'); |
|
|
|
|
//Due the fckeditor transform the elements to their HTML value |
|
|
|
|
$answer = api_html_entity_decode($answer, ENT_QUOTES, $charset); |
|
|
|
@ -167,22 +167,21 @@ class FillBlanks extends Question |
|
|
|
|
|
|
|
|
|
// get the blanks weightings |
|
|
|
|
$nb = preg_match_all('/\[[^\]]*\]/', $answer, $blanks); |
|
|
|
|
if(isset($_GET['editQuestion'])) |
|
|
|
|
{ |
|
|
|
|
if (isset($_GET['editQuestion'])) { |
|
|
|
|
$this -> weighting = 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if($nb>0) |
|
|
|
|
{ |
|
|
|
|
if ($nb>0) { |
|
|
|
|
$answer .= '::'; |
|
|
|
|
for($i=0 ; $i<$nb ; ++$i) |
|
|
|
|
{ |
|
|
|
|
for($i=0 ; $i<$nb ; ++$i) { |
|
|
|
|
$answer .= $form->getSubmitValue('weighting['.$i.']').','; |
|
|
|
|
$this -> weighting += $form->getSubmitValue('weighting['.$i.']'); |
|
|
|
|
} |
|
|
|
|
$answer = api_substr($answer,0,-1); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$is_multiple = $form->getSubmitValue('multiple_answer'); |
|
|
|
|
|
|
|
|
|
$answer.='@'.$is_multiple; |
|
|
|
|
|
|
|
|
|
$this->save(); |
|
|
|
@ -191,7 +190,8 @@ class FillBlanks extends Question |
|
|
|
|
$objAnswer->save(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function return_header($feedback_type = null, $counter = null, $score = null) { |
|
|
|
|
function return_header($feedback_type = null, $counter = null, $score = null) |
|
|
|
|
{ |
|
|
|
|
$header = parent::return_header($feedback_type, $counter, $score); |
|
|
|
|
$header .= '<table class="'.$this->question_table_class .'"> |
|
|
|
|
<tr> |
|
|
|
@ -200,4 +200,3 @@ class FillBlanks extends Question |
|
|
|
|
return $header; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
endif; |