You are here

math_captcha.install in CAPTCHA Pack 8

Install, update and uninstall functions for the module.

File

math_captcha/math_captcha.install
View source
<?php

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

/**
 * Implements hook_uninstall().
 */
function math_captcha_uninstall() {

  // On uninstall: remove module variables and clear variables cache.
  db_query("DELETE FROM {config} WHERE name LIKE 'math_captcha_%'");
  drupal_flush_all_caches();
}

Functions

Namesort descending Description
math_captcha_uninstall Implements hook_uninstall().