Parent Directory
|
Revision Log
|
Revision Graph
|
Patch
| revision 1.1, Mon Nov 17 09:15:36 2008 UTC | revision 1.1.2.1, Mon Nov 17 09:15:36 2008 UTC | |
|---|---|---|
| # | Line 0 | Line 1 |
| 1 | <?php | |
| 2 | // $Id: drutex.module,v 1.20.2.3 2008/01/16 01:06:00 darthsteven Exp $ | |
| 3 | ||
| 4 | /** | |
| 5 | * @file | |
| 6 | * DruTeX Install File. | |
| 7 | */ | |
| 8 | ||
| 9 | /* Drutex does not install a module table */ | |
| 10 | ||
| 11 | /** | |
| 12 | * Implementation of hook_uninstall(). | |
| 13 | */ | |
| 14 | ||
| 15 | function drutex_uninstall() { | |
| 16 | ||
| 17 | // delete all drutex variables in the variable table and clear the variables cache | |
| 18 | db_query("DELETE FROM {variable} WHERE name like 'drutex_%%'"); | |
| 19 | cache_clear_all('variables', 'cache'); | |
| 20 | } | |
| 21 | ||
| 22 |
|
||||||||
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |