theme_checkboxes
Definition
theme_checkboxes($element)
includes/form.inc, line 1322
Description
Format a set of checkboxes.
Parameters
$element An associative array containing the properties of the element.
Return value
A themed HTML string representing the checkbox set.
Related topics
| Name | Description |
|---|---|
| Form generation | Functions to enable the processing and display of HTML forms. |
Code
<?php
function theme_checkboxes($element) {
$class = 'form-checkboxes';
if (isset($element['#attributes']['class'])) {
$class .= ' '. $element['#attributes']['class'];
}
$element['#children'] = '<div class="'. $class .'">'. $element['#children'] .'</div>';
if ($element['#title'] || $element['#description']) {
unset($element['#id']);
return theme('form_element', $element, $element['#children']);
}
else {
return $element['#children'];
}
}
?> 