You are here

function cloze_quiz_question_info in Cloze 7

Same name and namespace in other branches
  1. 6 cloze.module \cloze_quiz_question_info()

Implementation of hook_quiz_question_info().

File

./cloze.module, line 19

Code

function cloze_quiz_question_info() {
  return array(
    'cloze' => array(
      'name' => t('Cloze question'),
      'description' => t('Quiz questions that allow a user to fill-in the missing words.'),
      'question provider' => 'ClozeQuestion',
      'response provider' => 'ClozeResponse',
      'module' => 'quiz_question',
    ),
  );
}