You are here

function prod_monitor_uninstall in Production check & Production monitor 7

Same name and namespace in other branches
  1. 6 prod_monitor/prod_monitor.install \prod_monitor_uninstall()

Implementation of hook_uninstall().

File

prod_monitor/prod_monitor.install, line 155

Code

function prod_monitor_uninstall() {

  // This beats multiple variable_del() calls.
  db_delete('variable')
    ->condition('name', 'prod_monitor\\_%', 'LIKE')
    ->execute();
}