You are here

function multichoice_help in Quiz 8.4

Same name and namespace in other branches
  1. 6.6 question_types/multichoice/multichoice.module \multichoice_help()
  2. 6.3 question_types/multichoice/multichoice.module \multichoice_help()
  3. 6.4 question_types/multichoice/multichoice.module \multichoice_help()
  4. 6.5 question_types/multichoice/multichoice.module \multichoice_help()
  5. 7.6 question_types/multichoice/multichoice.module \multichoice_help()
  6. 7 question_types/multichoice/multichoice.module \multichoice_help()
  7. 7.4 question_types/multichoice/multichoice.module \multichoice_help()
  8. 7.5 question_types/multichoice/multichoice.module \multichoice_help()

Implements hook_help().

File

question_types/multichoice/multichoice.module, line 17
The main file for multichoice.

Code

function multichoice_help($path, $args) {
  if ($path == 'admin/help#multichoice') {
    return t("\n      <p>This module provides a multiple choice question type for Quiz.</p>\n\n      <p>The module has three settings.\n      <em>Multiple answers</em> allows the quiz taker to select more than one alternative\n      (it also allows for the possibility that none of the alternatives are correct).\n      Alternatives are selected using checkboxes instead of radio buttons.\n      <em>Random order</em> displays the alternatives in random order when quiz is beeing taken.\n      <em>Simple scoring</em> gives max score if everything is correct. Zero points otherwise.</p>\n\n      <p>The scoring system in multichoice is a bit complex. With multiple answers each alternative adds a given number of points to\n      the total score if it is chosen, and another number of points is added if the alternative isn't chosen. Both <em>score if chosen</em> and\n      <em>score if not chosen</em> may be edited for each alternative by the question creator.\n      If multiple answers isn't allowed the score will be set to the <em>score if chosen</em> of the alternative that has been chosen.\n      The question is considered correct if the quiz taker gets the maximum amount of points possible for the question.</p>\n    ");
  }
}