You are here

public function QuizQuestionResponse::getQuizQuestion in Quiz 7.5

Same name and namespace in other branches
  1. 7.6 question_types/quiz_question/quiz_question.core.inc \QuizQuestionResponse::getQuizQuestion()

Get the question of this question response.

Return value

QuizQuestion

File

question_types/quiz_question/quiz_question.core.inc, line 554
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 getQuizQuestion() {
  return $this->quizQuestion;
}