You are here

jquery_ui_filter_tabs.install in jQuery UI filter 6

Same filename and directory in other branches
  1. 7 tabs/jquery_ui_filter_tabs.install

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

File

tabs/jquery_ui_filter_tabs.install
View source
<?php

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

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

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

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

Functions

Namesort descending Description
jquery_ui_filter_tabs_install Implementation of hook_install().
jquery_ui_filter_tabs_uninstall Implementation of hook_uninstall().