/[drupal]/contributions/modules/userlist/userlist.install
ViewVC logotype

Contents of /contributions/modules/userlist/userlist.install

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download) (as text)
Sun Jun 29 21:26:58 2008 UTC (16 months, 4 weeks ago) by gestaltware
Branch: MAIN
CVS Tags: DRUPAL-5--1-0, HEAD
File MIME type: text/x-php
Initial Release for Drupal 5.x
1 <?php
2 // $Id$
3
4 /**
5 * Implementation of hook_uninstall().
6 */
7 function userlist_uninstall() {
8 db_query("DROP TABLE {userlist_flag_account}");
9 $variables = array(
10 'userlist_show_status',
11 'userlist_show_member_for',
12 'userlist_show_operations',
13 'userlist_show_roles',
14 'userlist_badge_profile',
15 'userlist_badge_new',
16 'userlist_badge_online',
17 'userlist_debug_sql'
18 );
19 foreach ($variables as $variable) {
20 variable_del($variable);
21 }
22 cache_clear_all();
23 }

  ViewVC Help
Powered by ViewVC 1.1.2