| Versionen | |
|---|---|
| drupal7 | theme_vertical_tabs($element) |
Makes the element's children fieldsets be vertical tabs.
$element An associative array containing the properties and children of the fieldset.
includes/
<?php
function theme_vertical_tabs($element) {
// Add required JavaScript and Stylesheet.
drupal_add_js('misc/vertical-tabs.js', array('weight' => JS_DEFAULT - 1));
drupal_add_css('misc/vertical-tabs.css');
return '<div class="vertical-tabs-panes">' . $element['#children'] . '</div>';
}
?>
Kommentare
Kommentar hinzufügen