You are here

function theme_multichoice_selected in Quiz 5.2

Same name and namespace in other branches
  1. 5 multichoice.module \theme_multichoice_selected()
  2. 6.6 question_types/multichoice/multichoice.module \theme_multichoice_selected()
  3. 6.2 multichoice.module \theme_multichoice_selected()
  4. 6.3 question_types/multichoice/multichoice.module \theme_multichoice_selected()
  5. 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 804
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'));
}