You are here

function cloze_autoload_info in Cloze 7

Same name and namespace in other branches
  1. 6 cloze.module \cloze_autoload_info()

Implementation of hook_autoload_info().

File

./cloze.module, line 42

Code

function cloze_autoload_info() {
  return array(
    'ClozeQuestion' => array(
      'file' => 'cloze.classes.inc',
    ),
    'ClozeResponse' => array(
      'file' => 'cloze.classes.inc',
    ),
  );
}