You are here

function scanner_uninstall in Search and Replace Scanner 6

Same name and namespace in other branches
  1. 5.2 scanner.install \scanner_uninstall()

Implementation of hook_uninstall().

File

./scanner.install, line 73
Search and Replace Scanner install - creates necessary tables.

Code

function scanner_uninstall() {

  // Remove tables.
  drupal_uninstall_schema('scanner');
  db_query("DELETE FROM {variable} WHERE name LIKE 'scanner_%'");
}