You are here

math_captcha.install in CAPTCHA Pack 7

Install, update and uninstall functions for the MATH CAPTCHA module.

File

math_captcha/math_captcha.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the MATH CAPTCHA module.
 */

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

Functions

Namesort descending Description
math_captcha_uninstall Implements hook_uninstall(). On uninstall: remove module variables and clear variables cache