You are here

function spambot_uninstall in Spambot 6.3

Same name and namespace in other branches
  1. 8 spambot.install \spambot_uninstall()
  2. 7 spambot.install \spambot_uninstall()

Implementation of hook_uninstall().

File

./spambot.install, line 33

Code

function spambot_uninstall() {
  db_query("DELETE FROM {variable} WHERE name LIKE 'spambot_%'");
  drupal_uninstall_schema('spambot');
}