In addition, move the other multichoice help file to the correct location, and update all references.
--- /dev/null
+<h1>Multiple Choice questions</h1>
+
+<p>In response to a question (that may include a image) the respondent
+ chooses from multiple answers. There are two types of multiple choice
+ questions - single answer and multiple answer.</p>
+
+<p>Single-answer questions allow one and only one answer to be chosen.
+ Generally all the grades for such a question should be positive.</p>
+
+<p>Multiple-answer questions allow one or more answers to be chosen - each answer
+ may carry a positive or negative grade, so that choosing ALL the options
+ will not necessarily result in good grade. If the total grade is negative
+ then the total grade for this question will be zero. Careful, it is
+ possible to create questions that have scores greater than 100%.</p>
+
+<p>Finally, each answer (right or wrong) should include feedback - this feedback
+ will be shown to the respondent next to each of their answers (if the quiz
+ itself is configured to show feedback).
+</p>
--- /dev/null
+<h1>Shuffle answers</h1>
+
+<p>If you set this option to "Yes", then the order of the answers
+ is randomly shuffled each time a student starts an attempt at a quiz
+ containing this question - provided that "Shuffle within questions" in
+ the Quiz settings is set to "Yes".</p>
+
+<p>The intention is simply to make it a little harder for students
+ to copy from each other.</p>
\ No newline at end of file
<li><a href="help.php?module=quiz&file=matchgrades.html">Match Grades</a></li>
<li><a href="help.php?module=quiz&file=matchshuffle.html">Shuffle</a></li>
<li><a href="help.php?module=quiz&file=maxgrade.html">Maximum grade</a></li>
- <li><a href="help.php?module=quiz&file=multichoice.html">Multiple choice questions</a></li>
- <li><a href="help.php?module=quiz&file=multichoiceshuffle.html">Shuffle answers (Multiple choice)</a></li>
+ <li><a href="help.php?module=qtype_multichoice&file=multichoice.html">Multiple choice questions</a></li>
+ <li><a href="help.php?module=qtype_multichoice&file=multichoiceshuffle.html">Shuffle answers (Multiple choice)</a></li>
<li><a href="help.php?module=quiz&file=numerical.html">Numerical questions</a></li>
<li><a href="help.php?module=quiz&file=timeopen.html">Opening and closing the quiz</a></li>
<li><a href="help.php?module=quiz&file=overallfeedback.html">Overall Feedback</a></li>
+<!-- This file should now be deleted. It has been moved from the quiz folder to the
+qtype_multichoice folder. However, it remains here for backward compatibility reasons. -->
<h1>Multiple Choice questions</h1>
<p>In response to a question (that may include a image) the respondent
+<!-- This file should now be deleted. It has been moved from the quiz folder to the
+qtype_multichoice folder. However, it remains here for backward compatibility reasons. -->
<h1>Shuffle answers</h1>
<p>If you set this option to "Yes", then the order of the answers
$mform->setDefault('single', 1);
$mform->addElement('advcheckbox', 'shuffleanswers', get_string('shuffleanswers', 'qtype_multichoice'), null, null, array(0,1));
- $mform->setHelpButton('shuffleanswers', array('multichoiceshuffle', get_string('shuffleanswers','qtype_multichoice'), 'quiz'));
+ $mform->setHelpButton('shuffleanswers', array('multichoiceshuffle', get_string('shuffleanswers','qtype_multichoice'), 'qtype_multichoice'));
$mform->setDefault('shuffleanswers', 1);
$numberingoptions = $QTYPES[$this->qtype()]->get_numbering_styles();