You are here

public function ClozeQuestion::getMaximumScore in Cloze 7

Same name and namespace in other branches
  1. 6 cloze.classes.inc \ClozeQuestion::getMaximumScore()

Implementation of getMaximumScore

See also

QuizQuestion#getMaximumScore()

1 call to ClozeQuestion::getMaximumScore()
ClozeQuestion::evaluateAnswer in ./cloze.classes.inc
Evaluate the correctness of an answer based on the correct answer and evaluation method.

File

./cloze.classes.inc, line 239
The main classes for the cloze question type. These inherit or implement code found in quiz_question.classes.inc.

Class

ClozeQuestion
Extension of QuizQuestion.

Code

public function getMaximumScore() {

  //TODO: Add admin settings for this
  return 10;
}