You are here

lost_character_captcha.install in CAPTCHA Pack 8

Install, update and uninstall functions for the module.

File

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

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

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

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

Functions