You are here

function opigno_tincan_question_type_quiz_question_info in Opigno TinCan Question Type 7

Implements hook_quiz_question_info().

File

./opigno_tincan_question_type.module, line 11
The main module file which contains the main drupal hooks.

Code

function opigno_tincan_question_type_quiz_question_info() {
  return array(
    'opigno_tincan_question_type' => array(
      'name' => t('TinCan Package'),
      'description' => t('Question type allowing to integrate a TinCan package inside a lesson.'),
      'question provider' => 'OpignoTincanQuestionTypeQuestion',
      'response provider' => 'OpignoTincanQuestionTypeResponse',
      'module' => 'quiz_question',
    ),
  );
}