Projet

Général

Profil

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

root / drupal7 / sites / all / modules / author_pane / author_pane.install @ 87dbc3bf

1
<?php
2
/**
3
 * @file
4
 * Uninstall function for Author Pane module.
5
 */
6

    
7
/**
8
 * Implements hook_uninstall().
9
 */
10
function author_pane_uninstall() {
11
  variable_del('author_pane_block_display_types');
12
  variable_del('author_pane_block_join_date_type');
13
  variable_del('author_pane_block_user_picture_preset');
14
}