You are here

function antispam_uninstall in AntiSpam 7

Same name and namespace in other branches
  1. 6 antispam.install \antispam_uninstall()

Implements hook_uninstall().

File

./antispam.install, line 177
Requirements, schema and related hooks for the Antispam module.

Code

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