1 entity_caching_test.module entity_caching_test_autoload_info()

Implements hook_autoload_info().

File

core/modules/entity/tests/entity_caching_test/entity_caching_test.module, line 74
Test module for the entity API providing an entity type for testing.

Code

function entity_caching_test_autoload_info() {
  return array(
    'TestCacheable' => 'test_cacheable.entity.inc',
    'TestDisableCache' => 'test_disable_cache.entity.inc',
    'TestMultiBundle' => 'test_multibundle.entity.inc',
  );
}