You are here

public function ShortAnswerQuestion::getMaximumScore in Quiz 6.3

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

Get the maximum possible score for this question.

Overrides QuizQuestion::getMaximumScore

File

question_types/short_answer/short_answer.classes.inc, line 190
The main classes for the short answer question type.

Class

ShortAnswerQuestion
Implementation of QuizQuestion.

Code

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