Projet

Général

Profil

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

root / drupal7 / sites / all / modules / date / date_all_day / tests / date_all_day_test_feature / date_all_day_test_feature.install @ 599a39cd

1
<?php
2

    
3
/**
4
 * @file
5
 * Uninstall functions for the Date All Day Test Feature module.
6
 */
7

    
8
/**
9
 * Implements hook_uninstall().
10
 */
11
function date_all_day_test_feature_uninstall() {
12
  node_type_delete('date_test_feature');
13
  variable_del('node_preview_date_test_feature');
14
  node_types_rebuild();
15
  menu_rebuild();
16
}