function theme_multichoice_unselected in Quiz 5
Same name and namespace in other branches
- 5.2 multichoice.module \theme_multichoice_unselected()
- 6.6 question_types/multichoice/multichoice.module \theme_multichoice_unselected()
- 6.2 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 / correct TODO: Default images would be nice
1 call to theme_multichoice_unselected()
File
- ./
multichoice.module, line 531 - Multiple choice question type for quiz module
Code
function theme_multichoice_unselected() {
return theme_image(drupal_get_path('module', 'quiz') . '/images/unselected.gif', t('unselected'));
}