You are here

function long_answer_autoload_info in Quiz 6.5

Same name and namespace in other branches
  1. 6.6 question_types/long_answer/long_answer.module \long_answer_autoload_info()
  2. 6.3 question_types/long_answer/long_answer.module \long_answer_autoload_info()
  3. 6.4 question_types/long_answer/long_answer.module \long_answer_autoload_info()

Implementation of hook_autoload_info().

File

question_types/long_answer/long_answer.module, line 82
This module defines a long answer question type for quizzes.

Code

function long_answer_autoload_info() {
  return array(
    'LongAnswerQuestion' => array(
      'file' => 'long_answer.classes.inc',
    ),
    'LongAnswerResponse' => array(
      'file' => 'long_answer.classes.inc',
    ),
  );
}