You are here

function prod_check_uninstall in Production check & Production monitor 6

Same name and namespace in other branches
  1. 7 prod_check.install \prod_check_uninstall()

Implementation of hook_uninstall().

File

./prod_check.install, line 15

Code

function prod_check_uninstall() {

  // This beats multiple variable_del() calls.
  db_query("DELETE FROM {variable} WHERE name LIKE 'prod_check\\_%'");
}