You are here

public function LongAnswerQuestion::getMaximumScore in Quiz 6.3

Same name and namespace in other branches
  1. 6.6 question_types/long_answer/long_answer.classes.inc \LongAnswerQuestion::getMaximumScore()
  2. 6.4 question_types/long_answer/long_answer.classes.inc \LongAnswerQuestion::getMaximumScore()
  3. 6.5 question_types/long_answer/long_answer.classes.inc \LongAnswerQuestion::getMaximumScore()
  4. 7.6 question_types/long_answer/long_answer.classes.inc \LongAnswerQuestion::getMaximumScore()
  5. 7 question_types/long_answer/long_answer.classes.inc \LongAnswerQuestion::getMaximumScore()
  6. 7.4 question_types/long_answer/long_answer.classes.inc \LongAnswerQuestion::getMaximumScore()
  7. 7.5 question_types/long_answer/long_answer.classes.inc \LongAnswerQuestion::getMaximumScore()

Get the maximum possible score for this question.

Overrides QuizQuestion::getMaximumScore

File

question_types/long_answer/long_answer.classes.inc, line 102
Long answer classes.

Class

LongAnswerQuestion
Implementation of QuizQuestion.

Code

public function getMaximumScore() {
  return $this->node->maximum_score;
}