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