riddler.install in Captcha Riddler 6
Same filename and directory in other branches
Install, update and uninstall functions for the CAPTCHA module.
File
riddler.installView 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
Name | Description |
---|---|
riddler_uninstall | Implementation of hook_uninstall(). |