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