You are here

tabs.install in Tabs (jQuery UI tabs) 6

File

tabs.install
View source
<?php

/** 
 * Update to remove obsolete variable. 
 */
function tabs_update_1() {
  variable_del('tabs_auto_height');
}

/** 
 * Implementation of hook_uninstall(). 
 */
function tabs_uninstall() {
  foreach (array(
    'slide',
    'fade',
    'speed',
    'navigation',
    'nav_next',
    'nav_previous',
    'descriptive_urls',
  ) as $type) {
    variable_del('tabs_' . $type);
  }
}

Functions

Namesort descending Description
tabs_uninstall Implementation of hook_uninstall().
tabs_update_1 Update to remove obsolete variable.