You are here

function save_question_options in Quiz 6.6

Same name and namespace in other branches
  1. 6.5 includes/moodle/lib/questionlib.php \save_question_options()

Saves question options

Simply calls the question type specific save_question_options() method.

1 call to save_question_options()
qformat_coursetestmanager::importprocess in includes/moodle/question/format/coursetestmanager/format.php
Process the file This method should not normally be overidden

File

includes/moodle/lib/questionlib.php, line 1715

Code

function save_question_options($question) {
  global $QTYPES;
  $QTYPES[$question->qtype]
    ->save_question_options($question);
}