phrase_captcha.install in CAPTCHA Pack 8
Install, update and uninstall functions for the PHRASE CAPTCHA module.
File
text_captcha/modules/phrase_captcha/phrase_captcha.installView source
<?php
/**
* @file
* Install, update and uninstall functions for the PHRASE CAPTCHA module.
*/
/**
* Implements hook_uninstall().
*/
function phrase_captcha_uninstall() {
// On uninstall: remove module variables and clear variables cache.
db_query("DELETE FROM {config} WHERE name LIKE 'phrase_captcha_%'");
drupal_flush_all_caches();
}
Functions
Name | Description |
---|---|
phrase_captcha_uninstall | Implements hook_uninstall(). |