Projet

Général

Profil

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

root / drupal7 / sites / all / modules / date / date_migrate / date_migrate_example / date_migrate_example.install @ db9ffd17

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

    
15
/**
16
 * Implements hook_uninstall().
17
 */
18
function date_migrate_example_uninstall() {
19
  node_type_delete('date_migrate_example');
20
  variable_del('node_preview_date_migrate_example');
21
  node_types_rebuild();
22
  menu_rebuild();
23
}