function poormanscron_uninstall in Poormanscron 5
Same name and namespace in other branches
- 5.2 poormanscron.install \poormanscron_uninstall()
- 6.2 poormanscron.install \poormanscron_uninstall()
- 6 poormanscron.install \poormanscron_uninstall()
Implementation of hook_uninstall().
File
- ./
poormanscron.install, line 6
Code
function poormanscron_uninstall() {
db_query("DELETE FROM {variable} WHERE name LIKE 'poormanscron_%'");
cache_clear_all('variables', 'cache');
}