You are here

public function AbstractQuizQuestionResponse::getReport in Quiz 6.3

Same name and namespace in other branches
  1. 6.6 question_types/quiz_question/quiz_question.core.inc \AbstractQuizQuestionResponse::getReport()
  2. 6.5 question_types/quiz_question/quiz_question.core.inc \AbstractQuizQuestionResponse::getReport()

Get data suitable for reporting a user's score on the question. This expects an object with the following attributes:

answer_id; // The answer ID answer; // The full text of the answer is_evaluated; // 0 if the question has not been evaluated, 1 if it has score; // The score the evaluator gave the user; this should be 0 if is_evaluated is 0. question_vid question_nid result_id

Overrides QuizQuestionResponse::getReport

File

question_types/quiz_question/quiz_question.core.inc, line 264
Classes used in the Quiz Question module.

Class

AbstractQuizQuestionResponse
A base implementation of QuizQuestionResponse.

Code

public function getReport() {

  // Basically, we encode internal information in a
  // legacy array format for Quiz.
  $report = array(
    'answer_id' => 0,
    // <-- Stupid vestige of multichoice.
    'answer' => $this->answer,
    'is_evaluated' => $this
      ->isEvaluated(),
    'is_correct' => $this
      ->isCorrect(),
    'score' => $this->score,
    'question_vid' => $this->question->vid,
    'question_nid' => $this->question->nid,
    'result_id' => $this->rid,
  );
  return $report;
}