Projet

Général

Profil

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

root / drupal7 / sites / all / modules / entity / entity.install @ 64ad485a

1
<?php
2

    
3
/**
4
 * @file
5
 * Install file for the entity API.
6
 */
7

    
8
/**
9
 * The entity API modules have been merged into a single module.
10
 */
11
function entity_update_7000() {
12
  // This empty update is required such that all caches are cleared as
13
  // necessary.
14
}
15

    
16
/**
17
 * Remove the deprecated 'entity_defaults_built' variable.
18
 */
19
function entity_update_7001() {
20
  variable_del('entity_defaults_built');
21
}
22

    
23
/**
24
 * Clear caches and rebuild registry.
25
 */
26
function entity_update_7002() {
27
  // Do nothing, update.php clears cache for us in case there is an update.
28
}