Full ELMS Learning Network documentation
function corolla_fieldset
×
Error message
User warning: The following module is missing from the file system: theme/theme. For information about how to fix this, see the documentation page. in _drupal_trigger_error_with_delayed_logging() (line 1156 of /var/www/html/elmsln_community/api.elmsln.org/includes/bootstrap.inc).cis7 template.php | corolla_fieldset($vars) |
cle7 template.php | corolla_fieldset($vars) |
elmsmedia7 template.php | corolla_fieldset($vars) |
icor7 template.php | corolla_fieldset($vars) |
meedjum_blog7 template.php | corolla_fieldset($vars) |
mooc7 template.php | corolla_fieldset($vars) |
Returns HTML for a fieldset form element and its children.
Parameters
$variables: An associative array containing:
- element: An associative array containing the properties of the element. Properties used: #attributes, #children, #collapsed, #collapsible, #description, #id, #title, #value.
Related topics
File
- sites/
all/ themes/ ulmus/ corolla/ template.php, line 97
Code
function corolla_fieldset($vars) {
$element = $vars['element'];
element_set_attributes($element, array('id'));
_form_set_class($element, array('form-wrapper'));
$output = '<fieldset' . drupal_attributes($element['#attributes']) . '>';
// add a class to the fieldset wrapper if a legend exists, in some instances they do not
$class = "without-legend";
if (!empty($element['#title'])) {
// Always wrap fieldset legends in a SPAN for CSS positioning.
$output .= '<legend><span class="fieldset-legend">' . $element['#title'] . '</span></legend>';
// Add a class to the fieldset wrapper if a legend exists, in some instances they do not
$class = 'with-legend';
}
$output .= '<div class="fieldset-wrapper ' . $class . '">';
if (!empty($element['#description'])) {
$output .= '<div class="fieldset-description">' . $element['#description'] . '</div>';
}
$output .= $element['#children'];
if (isset($element['#value'])) {
$output .= $element['#value'];
}
$output .= '</div>';
$output .= "</fieldset>\n";
return $output;
}