Projet

Général

Profil

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

root / date / date_migrate / date_migrate_example / date_migrate_example.install @ 77885877

1
<?php
2

    
3
/**
4
 * @file
5
 * Install, update and uninstall functions for the Date Migrate Example module.
6
 */
7

    
8
/**
9
 * Implements hook_disable().
10
 */
11
function date_migrate_example_disable() {
12
  Migration::deregisterMigration('DateExample');
13
}
14