You are here

public function ClozeQuestion::getMaximumScore in Quiz 8.4

Implementation of getMaximumScore

Overrides QuizQuestion::getMaximumScore

See also

QuizQuestion#getMaximumScore()

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

File

question_types/cloze/lib/Drupal/cloze/ClozeQuestion.php, line 270
The main classes for the multichoice question type.

Class

ClozeQuestion
Extension of QuizQuestion.

Namespace

Drupal\cloze

Code

public function getMaximumScore() {

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