You are here

function riddler_uninstall in Captcha Riddler 7

Same name and namespace in other branches
  1. 6 riddler.install \riddler_uninstall()

Implementation of hook_uninstall().

File

./riddler.install, line 21
Install, update and uninstall functions for the Riddler module.

Code

function riddler_uninstall() {
  db_query("DELETE FROM {variable} WHERE name LIKE 'riddler_%'");
  cache_clear_all('variables', 'cache');
}