You are here

function multichoice_autoload_info in Quiz 6.4

Implementation of hook_autoload_info().

File

question_types/multichoice/multichoice.module, line 100
The main file for multichoice.

Code

function multichoice_autoload_info() {
  return array(
    'MultichoiceQuestion' => array(
      'file' => 'multichoice.classes.inc',
    ),
    'MultichoiceResponse' => array(
      'file' => 'multichoice.classes.inc',
    ),
  );
}