You are here

function theme_fieldset in Drupal 4

Same name and namespace in other branches
  1. 5 includes/form.inc \theme_fieldset()
  2. 6 includes/form.inc \theme_fieldset()
  3. 7 includes/form.inc \theme_fieldset()

Format a group of form items.

Parameters

$element: An associative array containing the properties of the element. Properties used: attributes, title, value, description, children, collapsible, collapsed

Return value

A themed HTML string representing the form item group.

Related topics

File

includes/form.inc, line 699

Code

function theme_fieldset($element) {
  if ($element['#collapsible']) {
    drupal_add_js('misc/collapse.js');
    $element['#attributes']['class'] .= ' collapsible';
    if ($element['#collapsed']) {
      $element['#attributes']['class'] .= ' collapsed';
    }
  }
  return '<fieldset' . drupal_attributes($element['#attributes']) . '>' . ($element['#title'] ? '<legend>' . $element['#title'] . '</legend>' : '') . ($element['#description'] ? '<div class="description">' . $element['#description'] . '</div>' : '') . $element['#children'] . $element['#value'] . "</fieldset>\n";
}