You are here

protected function QuizQuestion::autoUpdateMaxScore in OG Quiz 7

This may be overridden in subclasses. If it returns true, it means the max_score is updated for all occurrences of this question in quizzes.

1 call to QuizQuestion::autoUpdateMaxScore()
QuizQuestion::saveRelationships in includes/og_quiz_question.php
Handle the add to quiz part of the quiz_question_form

File

includes/og_quiz_question.php, line 734
Classes used in the Quiz Question module.

Class

QuizQuestion
A base implementation of a quiz_question, adding a layer of abstraction between the node API, quiz API and the question types.

Code

protected function autoUpdateMaxScore() {
  return false;
}