entity_cache_test_dependency.module 305 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * @file
  4. * Helper module for entity cache tests.
  5. */
  6. /**
  7. * Implements hook_entity_info().
  8. */
  9. function entity_cache_test_dependency_entity_info() {
  10. return array(
  11. 'entity_cache_test' => array(
  12. 'label' => variable_get('entity_cache_test_label', 'Entity Cache Test'),
  13. ),
  14. );
  15. }