You are here

css_captcha.install in CAPTCHA Pack 8

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

File

css_captcha/css_captcha.install
View source
<?php

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

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

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

Functions

Namesort descending Description
css_captcha_uninstall Implements hook_uninstall().