You are here

function quiz_question_type_settings_form in Quiz 6.5

Same name and namespace in other branches
  1. 6.6 question_types/quiz_question/quiz_question.module \quiz_question_type_settings_form()
  2. 6.3 question_types/quiz_question/quiz_question.module \quiz_question_type_settings_form()

Get the admin settings form for a question type.

1 string reference to 'quiz_question_type_settings_form'
quiz_question_menu in question_types/quiz_question/quiz_question.module
Implementation of hook_menu().

File

question_types/quiz_question/quiz_question.module, line 363
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_type_settings_form($context, $type) {
  return _quiz_question_get_instance($type)
    ->getAdminForm();
}