You are here

function matching_autoload_info in Quiz 6.4

Same name and namespace in other branches
  1. 6.6 question_types/matching/matching.module \matching_autoload_info()
  2. 6.3 question_types/matching/matching.module \matching_autoload_info()
  3. 6.5 question_types/matching/matching.module \matching_autoload_info()

Implementation of hook_autoload_info().

File

question_types/matching/matching.module, line 74
Matching question type for quiz module

Code

function matching_autoload_info() {
  return array(
    'MatchingQuestion' => array(
      'file' => 'matching.classes.inc',
    ),
    'MatchingResponse' => array(
      'file' => 'matching.classes.inc',
    ),
  );
}