You are here

text_captcha.install in CAPTCHA 5.3

Same filename and directory in other branches
  1. 6 text_captcha/text_captcha.install

Installation file for the text CAPTCHA module.

File

text_captcha/text_captcha.install
View source
<?php

/**
 * @file
 * Installation file for the text CAPTCHA module.
 */

/**
 * On uninstall: remove module variables and clear variable cache
 */
function text_captcha_uninstall() {
  db_query("DELETE FROM {variable} WHERE name LIKE 'text_captcha_%'");
  cache_clear_all('variables', 'cache');
}

Functions

Namesort descending Description
text_captcha_uninstall On uninstall: remove module variables and clear variable cache