You are here

function quiz_question_update in Quiz 6.5

Same name and namespace in other branches
  1. 6.6 question_types/quiz_question/quiz_question.module \quiz_question_update()
  2. 6.3 question_types/quiz_question/quiz_question.module \quiz_question_update()
  3. 6.4 question_types/quiz_question/quiz_question.module \quiz_question_update()
  4. 7 question_types/quiz_question/quiz_question.module \quiz_question_update()

Implementation of hook_update().

File

question_types/quiz_question/quiz_question.module, line 402
Quiz Question module. This module provides the basic facilities for adding quiz question types to a quiz. While you can create standard Quiz question types simply by implementing the appropriate hooks, this module provides a framework that makes…

Code

function quiz_question_update($node) {
  _quiz_question_get_instance($node)
    ->save();
}