multichoice.install in Quiz 6.3
Same filename and directory in other branches
- 8.4 question_types/multichoice/multichoice.install
- 6.6 question_types/multichoice/multichoice.install
- 6.4 question_types/multichoice/multichoice.install
- 6.5 question_types/multichoice/multichoice.install
- 7.6 question_types/multichoice/multichoice.install
- 7 question_types/multichoice/multichoice.install
- 7.4 question_types/multichoice/multichoice.install
- 7.5 question_types/multichoice/multichoice.install
Multichoice Install (a quiz question type)
File
question_types/multichoice/multichoice.installView source
<?php
/**
* @file
* Multichoice Install (a quiz question type)
*/
/**
* Implementation of hook_update_N().
* Change the question field to a text field to allow long questions.
*/
function multichoice_update_6300() {
$ret = array();
$spec = array(
'type' => 'text',
);
db_change_field($ret, 'quiz_multichoice_answers', 'answer', 'answer', $spec);
return $ret;
}
/**
* Implementation of hook_install()
*/
function multichoice_install() {
drupal_install_schema('multichoice');
cache_clear_all('autoload:', 'cache');
}
/**
* Implementation of hook_schema().
*/
function multichoice_schema() {
/**
* Stores correct answers for multichoice quiz.
*/
// Create the quiz node user answers multichoice table.
$schema['quiz_multichoice_user_answers'] = array(
'fields' => array(
'question_nid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
'question_vid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
'result_id' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
'answer_id' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
),
'primary key' => array(
'result_id',
'question_nid',
'question_vid',
'answer_id',
),
);
/**
* Stores user answers for multichoice quiz.
*/
// Create the quiz node answers multichoice table.
$schema['quiz_multichoice_answers'] = array(
'fields' => array(
'answer_id' => array(
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
),
'nid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
'vid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
//'answer' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE),
'answer' => array(
'type' => 'text',
),
'feedback' => array(
'type' => 'text',
),
'result_option' => array(
'type' => 'int',
'unsigned' => TRUE,
'default' => 0,
),
'is_correct' => array(
'type' => 'int',
'size' => 'tiny',
'unsigned' => TRUE,
'default' => 0,
),
),
'primary key' => array(
'answer_id',
),
);
// Default the "Show Author and Date" for this question type to OFF.
$temp_array = variable_get('theme_settings', '');
$temp_array['toggle_node_info_multichoice'] = 0;
variable_set('theme_settings', $temp_array);
return $schema;
}
/**
* Implementation of hook_uninstall()
*/
function multichoice_uninstall() {
drupal_uninstall_schema('multichoice');
// Delete from nodes and node_revisions.
/*
switch ($GLOBALS['db_type']) {
case 'mysql':
case 'mysqli':
db_query('DELETE FROM {node}, {node_revisions}, {quiz_node_question_properties} USING {node} LEFT JOIN {node_revisions} USING (nid) LEFT JOIN {quiz_node_question_properties} USING (nid) WHERE type IN ("multichoice")');
break;
case 'pgsql':
db_query("DELETE FROM {quiz_node_question_properties} WHERE nid IN (SELECT nid FROM {node} WHERE type IN ('multichoice'))");
db_query("DELETE FROM {node_revisions} WHERE nid IN (SELECT nid FROM {node} WHERE type IN ('multichoice'))");
db_query("DELETE FROM {node} WHERE type IN ('multichoice')");
break;
}
*/
// Truncate the cache so users don't run into any unexpected errors.
cache_clear_all('variables', 'cache');
// Inform the user that uninstall was sucessful.
drupal_set_message(t("The Multichoice module has been uninstalled. Multichoice nodes may still exist, but they will not function properly."));
}
Functions
Name | Description |
---|---|
multichoice_install | Implementation of hook_install() |
multichoice_schema | Implementation of hook_schema(). |
multichoice_uninstall | Implementation of hook_uninstall() |
multichoice_update_6300 | Implementation of hook_update_N(). Change the question field to a text field to allow long questions. |