You are here

word_list_captcha.install in CAPTCHA Pack 8

Install, update and uninstall functions for the WORD LIST CAPTCHA module.

File

text_captcha/modules/word_list_captcha/word_list_captcha.install
View source
<?php

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

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

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

Functions

Namesort descending Description
word_list_captcha_uninstall Implements hook_uninstall().