foo_captcha.install in CAPTCHA Pack 8
Same filename and directory in other branches
Install, update and uninstall functions for the FOO CAPTCHA module.
File
foo_captcha/foo_captcha.installView source
<?php
/**
* @file
* Install, update and uninstall functions for the FOO CAPTCHA module.
*/
/**
* Implements hook_uninstall().
*/
function foo_captcha_uninstall() {
// On uninstall: remove module variables and clear variables cache.
db_query("DELETE FROM {config} WHERE name LIKE 'foo_captcha_%'");
drupal_flush_all_caches();
}
Functions
Name | Description |
---|---|
foo_captcha_uninstall | Implements hook_uninstall(). |