Parent Directory
|
Revision Log
|
Revision Graph
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 |