You are here

function jquery_ui_filter_dialog_uninstall in jQuery UI filter 6

Same name and namespace in other branches
  1. 7 dialog/jquery_ui_filter_dialog.install \jquery_ui_filter_dialog_uninstall()

Implementation of hook_uninstall().

File

dialog/jquery_ui_filter_dialog.install, line 19
Installation information for the 'jQuery UI filter dialog' module.

Code

function jquery_ui_filter_dialog_uninstall() {
  db_query("DELETE FROM {variable} WHERE name LIKE 'jquery_ui_filter_dialog_%%'");
  cache_clear_all('variables', 'cache');
}