function multichoice_theme in Quiz 6.2
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.6 question_types/multichoice/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()
Hook_theme() required by 6.x
Return value
An array of themable functions
File
- ./
multichoice.module, line 1127 - 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,
),
),
);
}