You are here

function prod_monitor_uninstall in Production check & Production monitor 6

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

Implementation of hook_uninstall().

File

prod_monitor/prod_monitor.install, line 162

Code

function prod_monitor_uninstall() {
  drupal_uninstall_schema('prod_monitor');

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