You are here

function prod_check_uninstall in Production check & Production monitor 7

Same name and namespace in other branches
  1. 6 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_delete('variable')
    ->condition('name', 'prod_check\\_%', 'LIKE')
    ->execute();
}