1 entity_example.module | entity_example_autoload_info() |
Implements hook_autoload_info().
Related topics
File
- modules/
examples/ entity_example/ entity_example.module, line 493 - Hook implementations for the Entity Example module.
Code
function entity_example_autoload_info() {
return array(
'EntityExampleBasicController' => 'entity_example.inc',
'EntityExampleBasicControllerInterface' => 'entity_example.inc',
);
}