Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
HotPot module: differentiate between "guesses-correct" (JCloze) and "…
…guess-correct" (JCross, JMatch, JMix, JQuiz) in HotPot xml files and fix PreloadImages function for multiple images
  • Loading branch information
gbateson committed Aug 28, 2009
1 parent c14ee72 commit d236997
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions mod/hotpot/template/v6.php
Expand Up @@ -227,7 +227,7 @@ function v6_expand_PreloadImageList() {
}

// convert to comma delimited string
$this->PreloadImageList = empty($list) ? '' : "'".implode(',', $list)."'";
$this->PreloadImageList = empty($list) ? '' : "'".implode("','", $list)."'";
}
return $this->PreloadImageList;
}
Expand Down Expand Up @@ -1064,10 +1064,20 @@ function add_keypad_chars(&$chars, $text) {
}
}
function v6_expand_Correct() {
return $this->js_value('hotpot-config-file,'.$this->parent->quiztype.',guesses-correct');
if ($this->parent->quiztype=='jcloze') {
$tag = 'guesses-correct';
} else {
$tag = 'guess-correct';
}
return $this->js_value('hotpot-config-file,'.$this->parent->quiztype.','.$tag);
}
function v6_expand_Incorrect() {
return $this->js_value('hotpot-config-file,'.$this->parent->quiztype.',guesses-incorrect');
if ($this->parent->quiztype=='jcloze') {
$tag = 'guesses-incorrect';
} else {
$tag = 'guess-incorrect';
}
return $this->js_value('hotpot-config-file,'.$this->parent->quiztype.','.$tag);
}
function v6_expand_GiveHint() {
return $this->js_value('hotpot-config-file,'.$this->parent->quiztype.',next-correct-letter');
Expand Down

0 comments on commit d236997

Please sign in to comment.