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