Projet

Général

Profil

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

root / htmltest / sites / all / modules / module_filter / module_filter.install @ dc45a079

1
<?php
2

    
3
/**
4
 * @file
5
 */
6

    
7
/**
8
 * Implementation of hook_uninstall().
9
 */
10
function module_filter_uninstall() {
11
  variable_del('module_filter_tabs');
12
  variable_del('module_filter_count_enabled');
13
  variable_del('module_filter_visual_aid');
14
  variable_del('module_filter_dynamic_save_position');
15
}
16

    
17
/**
18
 * Remove the 'module_filter_autocomplete' variable.
19
 */
20
function module_filter_update_7100() {
21
  variable_del('module_filter_autocomplete');
22
}