You are here

public function QuizQuestionResponse::getReport in Quiz 6.4

Same name and namespace in other branches
  1. 6.6 question_types/quiz_question/quiz_question.core.inc \QuizQuestionResponse::getReport()
  2. 6.3 question_types/quiz_question/quiz_question.core.inc \QuizQuestionResponse::getReport()
  3. 6.5 question_types/quiz_question/quiz_question.core.inc \QuizQuestionResponse::getReport()
  4. 7.6 question_types/quiz_question/quiz_question.core.inc \QuizQuestionResponse::getReport()
  5. 7 question_types/quiz_question/quiz_question.core.inc \QuizQuestionResponse::getReport()
  6. 7.4 question_types/quiz_question/quiz_question.core.inc \QuizQuestionResponse::getReport()
  7. 7.5 question_types/quiz_question/quiz_question.core.inc \QuizQuestionResponse::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

File

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

Class

QuizQuestionResponse
Each question type must store its own response data and be able to calculate a score for that data.

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
      ->getScore(),
    'question_vid' => $this->question->vid,
    'question_nid' => $this->question->nid,
    'result_id' => $this->rid,
  );
  return $report;
}