You are here

function autoban_uninstall in Automatic IP ban (Autoban) 7

Same name and namespace in other branches
  1. 8 autoban.install \autoban_uninstall()

Implements hook_uninstall().

File

./autoban.install, line 124
Installation functions for autoban module.

Code

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