You are here

function short_answer_autoload_info in Quiz 6.5

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

Implementation of hook_autoload_info().

File

question_types/short_answer/short_answer.module, line 66
The main file for short_answer.

Code

function short_answer_autoload_info() {
  return array(
    'ShortAnswerQuestion' => array(
      'file' => 'short_answer.classes.inc',
    ),
    'ShortAnswerResponse' => array(
      'file' => 'short_answer.classes.inc',
    ),
  );
}