You are here

riddler.install in Captcha Riddler 6

Same filename and directory in other branches
  1. 7 riddler.install

Install, update and uninstall functions for the CAPTCHA module.

File

riddler.install
View source
<?php

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

/**
 * Implementation of hook_uninstall().
 */
function riddler_uninstall() {
  db_query("DELETE FROM {variable} WHERE name LIKE 'riddler_%'");
  cache_clear_all('variables', 'cache');
}

Functions

Namesort descending Description
riddler_uninstall Implementation of hook_uninstall().