multichoice.module in Quiz 7
Same filename and directory in other branches
- 8.4 question_types/multichoice/multichoice.module
- 6.6 question_types/multichoice/multichoice.module
- 6.3 question_types/multichoice/multichoice.module
- 6.4 question_types/multichoice/multichoice.module
- 6.5 question_types/multichoice/multichoice.module
- 7.6 question_types/multichoice/multichoice.module
- 7.4 question_types/multichoice/multichoice.module
- 7.5 question_types/multichoice/multichoice.module
The main file for multichoice.
Sponsored by: Norwegian Centre for Telemedicine Code: falcon
Multiplechoice question type for the Quiz module.
File
question_types/multichoice/multichoice.moduleView source
<?php
/**
* The main file for multichoice.
*
* Sponsored by: Norwegian Centre for Telemedicine
* Code: falcon
*
* @file
* Multiplechoice question type for the Quiz module.
*
*/
/**
* Implements hook_help().
*/
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 ");
}
}
/**
* Implements hook_quiz_question_info().
*/
function multichoice_quiz_question_info() {
return array(
'multichoice' => array(
'name' => t('Multiple choice question'),
'description' => t('This provides multiple choice questions for use by the Quiz module.'),
'question provider' => 'MultichoiceQuestion',
'response provider' => 'MultichoiceResponse',
'module' => 'quiz_question',
),
);
}
/**
* Implements hook_config().
*/
function multichoice_config() {
$form['multichoice_def_num_of_alts'] = array(
'#type' => 'textfield',
'#title' => t('Default number of alternatives'),
'#default_value' => variable_get('multichoice_def_num_of_alts', 2),
);
$form['multichoice_def_scoring'] = array(
'#type' => 'radios',
'#title' => t('Default scoring method'),
'#description' => t('Choose the default scoring method for questions with multiple correct answers.'),
'#options' => array(
0 => t('Give minus one point for incorrect answers'),
1 => t("Give one point for each incorrect option that haven't been chosen"),
),
'#default_value' => variable_get('multichoice_def_scoring', 0),
);
$form['#validate'] = 'multichoice_config_validate';
return $form;
}
/**
* Validate the multichoice config form values
*/
function multichoice_config_validate($form, $form_state) {
if (!_quiz_is_int($form_state['values']['multichoice_def_num_of_alts'], 2, 50)) {
form_set_error('multichoice_def_num_of_alts', t('The default number of alternatives must be between 2 and 50'));
}
}
/**
* Implements hook_theme().
*/
function multichoice_theme($existing, $type, $theme, $path) {
return array(
'multichoice_creation_form' => array(
'render element' => 'form',
'path' => drupal_get_path('module', 'multichoice') . '/theme',
'file' => 'multichoice.theme.inc',
),
'multichoice_answer_node_view' => array(
'variables' => array(
'alternatives' => NULL,
'show_correct' => NULL,
),
'path' => drupal_get_path('module', 'multichoice') . '/theme',
'file' => 'multichoice.theme.inc',
),
'multichoice_response' => array(
'variables' => array(
'data' => array(),
),
'path' => drupal_get_path('module', 'multichoice') . '/theme',
'file' => 'multichoice.theme.inc',
),
'multichoice_alternative_creation' => array(
'render element' => 'form',
'path' => drupal_get_path('module', 'multichoice') . '/theme',
'template' => 'multichoice-alternative-creation',
),
'multichoice_answering_form' => array(
'render element' => 'form',
'path' => drupal_get_path('module', 'multichoice') . '/theme',
'template' => 'multichoice-answering-form',
),
'multichoice_alternative' => array(
'render element' => 'form',
'path' => drupal_get_path('module', 'multichoice') . '/theme',
'template' => 'multichoice-alternative',
),
);
}
/**
* ajax callback function used when adding alternatives to the node-form
*/
function multichoice_add_alternative_ajax_callback($form, &$form_state) {
$i = 0;
while (isset($form['alternatives'][$i])) {
$i++;
}
return $form['alternatives'][$i - 1];
}
/**
* Submit handler used when adding more alternatives to the node-form
*/
function multichoice_more_choices_submit($form, &$form_state) {
// Set the form to rebuild and run submit handlers.
node_form_submit_build_node($form, $form_state);
// Count the existing alternatives
$exists = 0;
while (isset($form['alternatives'][$exists])) {
$exists++;
}
// Make the changes we want to the form state.
if ($form_state['values']['alternatives']['multichoice_add_alternative']) {
// We add 3 if js is disabled. 1 if the adding is done using ahah
$n = $_GET['q'] == 'system/ajax' ? 1 : 3;
$form_state['choice_count'] = $exists + $n;
}
$form_state['rebuild'] = TRUE;
}
/**
* Recursive helper function to set the validated property. (Taken from the skip validation module.)
*
* @param &$elements
* The elements that are currently being processed.
*/
function _multichoice_skip_validation(&$elements) {
$elements['#validated'] = TRUE;
foreach (element_children($elements) as $key) {
_multichoice_skip_validation($elements[$key]);
}
}
/**
* Implements hook_user_cancel().
*/
function multichoice_user_cancel($edit, $account, $method) {
db_delete('quiz_multichoice_user_settings')
->condition('uid', $account->uid)
->execute();
}
/**
* Implementation of hook user.
*/
function multichoice_user_OLD($op, &$edit, &$account, $category = NULL) {
}
/**
* Implements hook_content_extra_fields(cck)().
*/
function multichoice_content_extra_fields($type_name) {
$extra = array();
if ($type_name == 'multichoice') {
$extra['alternatives'] = array(
'label' => t('Alternatives'),
'description' => t('Alternatives for multichoice'),
'weight' => -4,
);
}
return $extra;
}
Functions
Name | Description |
---|---|
multichoice_add_alternative_ajax_callback | ajax callback function used when adding alternatives to the node-form |
multichoice_config | Implements hook_config(). |
multichoice_config_validate | Validate the multichoice config form values |
multichoice_content_extra_fields | Implements hook_content_extra_fields(cck)(). |
multichoice_help | Implements hook_help(). |
multichoice_more_choices_submit | Submit handler used when adding more alternatives to the node-form |
multichoice_quiz_question_info | Implements hook_quiz_question_info(). |
multichoice_theme | Implements hook_theme(). |
multichoice_user_cancel | Implements hook_user_cancel(). |
multichoice_user_OLD | Implementation of hook user. |
_multichoice_skip_validation | Recursive helper function to set the validated property. (Taken from the skip validation module.) |