Parent Directory
|
Revision Log
|
Revision Graph
Remove variables from cache after cleaning up the module
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Implementation of hook_uninstall(). |
| 5 | */ |
| 6 | function avatar_gallery_uninstall() { |
| 7 | db_query("DELETE FROM {variable} WHERE name LIKE 'avatar_gallery_%'"); |
| 8 | cache_clear_all('variables', 'cache'); |
| 9 | } |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |