You are here

function quiz_question_quiz_question_info in Quiz 6.5

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

Implementation of hook_quiz_question_info().

File

question_types/quiz_question/quiz_question.module, line 475
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_quiz_question_info() {
  return array(
    'true_false' => array(
      'name' => 'True/false question',
      'description' => 'Quiz questions that allow a user to select true or false (yes/no).',
      'question provider' => 'TrueFalseQuestion',
      'response provider' => 'TrueFalseResponse',
      'module' => 'quiz_question',
    ),
  );
}