You are here

function views_send_uninstall in Views Send 7

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

Implements hook_uninstall().

File

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

Code

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