function multichoice_theme in Quiz 6.6
Same name and namespace in other branches
- 8.6 question_types/quiz_multichoice/quiz_multichoice.module \multichoice_theme()
- 8.4 question_types/multichoice/multichoice.module \multichoice_theme()
- 8.5 question_types/quiz_multichoice/quiz_multichoice.module \multichoice_theme()
- 6.2 multichoice.module \multichoice_theme()
- 6.3 question_types/multichoice/multichoice.module \multichoice_theme()
- 6.4 question_types/multichoice/multichoice.module \multichoice_theme()
- 6.5 question_types/multichoice/multichoice.module \multichoice_theme()
- 7.6 question_types/multichoice/multichoice.module \multichoice_theme()
- 7 question_types/multichoice/multichoice.module \multichoice_theme()
- 7.4 question_types/multichoice/multichoice.module \multichoice_theme()
- 7.5 question_types/multichoice/multichoice.module \multichoice_theme()
Implementation of hook_theme().
File
- question_types/
multichoice/ multichoice.module, line 45 - Multiple choice question type for the Quiz module.
Code
function multichoice_theme() {
return array(
'multichoice_generate_title' => array(
'arguments' => array(
'node' => NULL,
),
),
'multichoice_feedback' => array(
'arguments' => array(
'quiz' => NULL,
'report' => NULL,
),
),
'multichoice_report' => array(
'arguments' => array(
'question' => NULL,
'showpoints' => NULL,
'showfeedback' => NULL,
),
),
'multichoice_selected' => array(
'arguments' => array(),
),
'multichoice_unselected' => array(
'arguments' => array(),
),
'multichoice_form' => array(
'arguments' => array(
'form' => NULL,
),
),
);
}