Projet

Général

Profil

Paste
Télécharger (305 octets) Statistiques
| Branche: | Révision:

root / drupal7 / modules / simpletest / tests / entity_cache_test_dependency.module @ db2d93dd

1
<?php
2

    
3
/**
4
 * @file
5
 * Helper module for entity cache tests.
6
 */
7

    
8
/**
9
 * Implements hook_entity_info().
10
 */
11
function entity_cache_test_dependency_entity_info() {
12
  return array(
13
    'entity_cache_test' => array(
14
      'label' => variable_get('entity_cache_test_label', 'Entity Cache Test'),
15
    ),
16
  );
17
}