You are here

function theme_long_answer_feedback in Quiz 6.5

Same name and namespace in other branches
  1. 6.6 question_types/long_answer/long_answer.theme.inc \theme_long_answer_feedback()
  2. 6.3 question_types/long_answer/long_answer.theme.inc \theme_long_answer_feedback()

Implementation of theme_$type_feedback(). This is basically useless for long answer questions.

File

question_types/long_answer/long_answer.theme.inc, line 62
Theme functions for long_answer.

Code

function theme_long_answer_feedback($quiz, $report) {
  $output = '<div class="quiz_summary_text"><strong>' . t('Q:') . '</strong>' . check_markup($report->body, $report->format) . '<br /><em>' . t('The answer to this question will be scored by hand.') . '</em></div>';
  return $output;
}