You are here

function theme_multichoice_unselected in Quiz 5

Same name and namespace in other branches
  1. 5.2 multichoice.module \theme_multichoice_unselected()
  2. 6.6 question_types/multichoice/multichoice.module \theme_multichoice_unselected()
  3. 6.2 multichoice.module \theme_multichoice_unselected()
  4. 6.3 question_types/multichoice/multichoice.module \theme_multichoice_unselected()
  5. 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()
multichoice_calculate_results in ./multichoice.module

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'));
}