You are here

function theme_truefalse_response in Quiz 6.4

Same name and namespace in other branches
  1. 8.4 question_types/truefalse/truefalse.module \theme_truefalse_response()
  2. 7.6 question_types/truefalse/truefalse.module \theme_truefalse_response()
  3. 7 question_types/truefalse/truefalse.module \theme_truefalse_response()
  4. 7.4 question_types/truefalse/truefalse.module \theme_truefalse_response()
  5. 7.5 question_types/truefalse/truefalse.module \theme_truefalse_response()

Theme the response part of the response report

Parameters

$metadata: Can be used as a table header

$data: Can be used as table rows

1 theme call to theme_truefalse_response()
TrueFalseResponse::getReportFormResponse in question_types/truefalse/truefalse.classes.inc
Implementation of getReportFormResponse

File

question_types/truefalse/truefalse.module, line 87
TrueFalse question type for quiz module

Code

function theme_truefalse_response($metadata, $data) {
  return theme('table', $metadata, $data);
}