You are here

function views_send_uninstall in Views Send 6

Same name and namespace in other branches
  1. 8 views_send.install \views_send_uninstall()
  2. 7 views_send.install \views_send_uninstall()

Implementation of hook_uninstall().

See also

http://api.drupal.org/api/function/hook_uninstall/6

File

./views_send.install, line 113
The install and update code for the Views Send module.

Code

function views_send_uninstall() {
  drupal_uninstall_schema('views_send');
  db_query("DELETE FROM {variable} WHERE name LIKE 'views_send_%'");
  db_query("DELETE FROM {cache} WHERE cid LIKE 'variables%'");
}