You are here

function notify_uninstall in Notify 6

Same name and namespace in other branches
  1. 7 notify.install \notify_uninstall()

File

./notify.install, line 29
Install, update and uninstall functions for the notify module.

Code

function notify_uninstall() {

  // Drop my tables.
  drupal_uninstall_schema('notify');

  //Delete my variables
  global $conf;
  db_query("DELETE FROM {variable} WHERE name LIKE 'notify_%'");
  cache_clear_all('variables', 'cache');
  unset($conf[$name]);
}