You are here

function jquery_ui_filter_tabs_install in jQuery UI filter 7

Same name and namespace in other branches
  1. 6 tabs/jquery_ui_filter_tabs.install \jquery_ui_filter_tabs_install()

Implementation of hook_install().

File

tabs/jquery_ui_filter_tabs.install, line 10
Installation information for the 'jQuery UI filter tabs' module.

Code

function jquery_ui_filter_tabs_install() {

  // Must be loaded afer jquery_ui_filter.module.
  db_update('system')
    ->fields(array(
    'weight' => 1,
  ))
    ->condition('name', 'jquery_ui_filter_tabs')
    ->execute();
}