You are here

function quiz_page_quiz_question_info in Quiz 7.6

Same name and namespace in other branches
  1. 7.5 question_types/quiz_page/quiz_page.module \quiz_page_quiz_question_info()

Implements hook_quiz_question_info().

File

question_types/quiz_page/quiz_page.module, line 21
quiz_page.module

Code

function quiz_page_quiz_question_info() {
  return array(
    'quiz_page' => array(
      'name' => t('@quiz page', array(
        '@quiz' => QUIZ_NAME,
      )),
      'description' => t('Quiz pages allow you display questions across multiple pages.'),
      'question provider' => 'QuizPagesQuestion',
      'response provider' => 'QuizPagesResponse',
      'module' => 'quiz_question',
    ),
  );
}