function riddler_uninstall in Captcha Riddler 6
Same name and namespace in other branches
- 7 riddler.install \riddler_uninstall()
Implementation of hook_uninstall().
File
- ./
riddler.install, line 11 - Install, update and uninstall functions for the CAPTCHA module.
Code
function riddler_uninstall() {
db_query("DELETE FROM {variable} WHERE name LIKE 'riddler_%'");
cache_clear_all('variables', 'cache');
}