You are here

random_captcha_type.install in CAPTCHA Pack 8

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

File

random_captcha_type/random_captcha_type.install
View source
<?php

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

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

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

Functions