You are here

image_captcha.install in CAPTCHA 5.3

Installation file for the image CAPTCHA module.

File

image_captcha/image_captcha.install
View source
<?php

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

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

Functions

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