function captcha_after_uninstall in CAPTCHA After 6
Same name and namespace in other branches
- 7 captcha_after.install \captcha_after_uninstall()
Implementation of hook_uninstall().
File
- ./
captcha_after.install, line 51 - Install, update and uninstall functions for the CAPTCHA After module.
Code
function captcha_after_uninstall() {
drupal_uninstall_schema('captcha_after');
db_query("DELETE FROM {variable} WHERE name LIKE 'captcha_after_%'");
}