You are here

jquery_ui_filter_dialog.install in jQuery UI filter 6

Same filename and directory in other branches
  1. 7 dialog/jquery_ui_filter_dialog.install

Installation information for the 'jQuery UI filter dialog' module.

File

dialog/jquery_ui_filter_dialog.install
View source
<?php

/**
 * @file
 * Installation information for the 'jQuery UI filter dialog' module.
 */

/**
 * Implementation of hook_install().
 */
function jquery_ui_filter_dialog_install() {

  // Must be loaded afer jquery_ui_filter.module.
  db_query("UPDATE {system} SET weight=1 WHERE name = 'jquery_ui_filter_dialog'");
}

/**
 * Implementation of hook_uninstall().
 */
function jquery_ui_filter_dialog_uninstall() {
  db_query("DELETE FROM {variable} WHERE name LIKE 'jquery_ui_filter_dialog_%%'");
  cache_clear_all('variables', 'cache');
}

Functions