drupal-civicrm/modules/simpletest/tests/entity_cache_test_dependency.module

18 lines
305 B
Plaintext
Raw Normal View History

2018-01-14 15:10:16 +02:00
<?php
/**
* @file
* Helper module for entity cache tests.
*/
/**
* Implements hook_entity_info().
*/
function entity_cache_test_dependency_entity_info() {
return array(
'entity_cache_test' => array(
'label' => variable_get('entity_cache_test_label', 'Entity Cache Test'),
),
);
}