You are here

function spambot_uninstall in Spambot 7

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

Implements hook_uninstall().

File

./spambot.install, line 48
Install and update hooks for Spambot module.

Code

function spambot_uninstall() {
  db_delete('variable')
    ->condition('name', 'spambot_%', 'LIKE')
    ->execute();
}