Parent Directory
|
Revision Log
|
Revision Graph
Copied the DRUPAL-6--1 branch to head (merge didn't seem to work)
| 1 | <?php |
| 2 | // $Id: bugbits.install,v 1.1.2.1 2009/02/04 01:59:00 daften Exp $ |
| 3 | |
| 4 | /** |
| 5 | * Implementation of hook_uninstall(). |
| 6 | */ |
| 7 | function bugbits_uninstall() { |
| 8 | // Delete our module's variables from the variables table. |
| 9 | variable_del('bugbits_mantis_url'); |
| 10 | variable_del('bugbits_table_prefix'); |
| 11 | variable_del('bugbits_db_type'); |
| 12 | variable_del('bugbits_db_username'); |
| 13 | variable_del('bugbits_db_password'); |
| 14 | variable_del('bugbits_db_name'); |
| 15 | } |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |