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