You are here

function AbstractQuizQuestionResponse::getScore in Quiz 6.3

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

Get the integer score.

Overrides QuizQuestionResponse::getScore

File

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

Class

AbstractQuizQuestionResponse
A base implementation of QuizQuestionResponse.

Code

function getScore() {
  return $this->score;
}