function theme_vertical_tabs

Returns HTML for an element's children fieldsets as vertical tabs.

Parameters

$variables: An associative array containing:

  • element: An associative array containing the properties and children of the fieldset. Properties used: #children.

Related topics

File

includes/form.inc, line 3918

Code

function theme_vertical_tabs($variables) {
    $element = $variables['element'];
    // Add required JavaScript and Stylesheet.
    drupal_add_library('system', 'drupal.vertical-tabs');
    $output = '<h2 class="element-invisible">' . t('Vertical Tabs') . '</h2>';
    $output .= '<div class="vertical-tabs-panes">' . $element['#children'] . '</div>';
    return $output;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.