function theme_multichoice_selected in Quiz 6.2
Same name and namespace in other branches
- 5.2 multichoice.module \theme_multichoice_selected()
- 5 multichoice.module \theme_multichoice_selected()
- 6.6 question_types/multichoice/multichoice.module \theme_multichoice_selected()
- 6.3 question_types/multichoice/multichoice.module \theme_multichoice_selected()
- 6.5 question_types/multichoice/multichoice.module \theme_multichoice_selected()
Theme a selection indicator for an answer.
2 calls to theme_multichoice_selected()
- multichoice_calculate_results in ./
multichoice.module - theme_multichoice_report in ./
multichoice.module - Theme a multichoice question report for quiz feedback.
File
- ./
multichoice.module, line 969 - Multiple choice question type for the Quiz module.
Code
function theme_multichoice_selected() {
return theme_image(drupal_get_path('module', 'quiz') . '/images/selected.gif', t('selected'));
}