You are here

function cloze_quiz_question_info in Quiz 8.4

Implementation of hook_quiz_question_info().

File

question_types/cloze/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' => '\\Drupal\\cloze\\ClozeQuestion',
      'response provider' => '\\Drupal\\cloze\\ClozeResponse',
      'module' => 'quiz_question',
    ),
  );
}