1 entity.module entity_autoload_info()

Implements hook_autoload_info().

File

core/modules/entity/entity.module, line 839
Entity API for handling entities like nodes or users.

Code

function entity_autoload_info() {
  return array(
    'EntityInterface' => 'entity.class.inc',
    'Entity' => 'entity.class.inc',
    'EntityMalformedException' => 'entity.class.inc',
    'EntityStorageControllerInterface' => 'entity.controller.inc',
    'DefaultEntityController' => 'entity.controller.inc',
    'EntityControllerInterface' => 'entity.controller.inc',
    'EntityStorageException' => 'entity.controller.inc',
    'EntityDatabaseStorageController' => 'entity.controller.inc',
    'EntityFieldQueryException' => 'entity.query.inc',
    'EntityFieldQuery' => 'entity.query.inc',
  );
}