1 form.inc | theme_date($variables) |
Returns HTML for a date selection form element.
Parameters
$variables: An associative array containing:
- element: An associative array containing the properties of the element. Properties used: #title, #value, #options, #description, #required, #attributes.
Related topics
File
- core/
includes/ form.inc, line 3106 - Functions for form and batch generation and processing.
Code
function theme_date($variables) {
$element = $variables['element'];
$attributes = array();
if (isset($element['#id'])) {
$attributes['id'] = $element['#id'];
}
if (!empty($element['#attributes']['class'])) {
$attributes['class'] = (array) $element['#attributes']['class'];
}
$attributes['class'][] = 'container-inline';
return '<div' . backdrop_attributes($attributes) . '>' . backdrop_render_children($element) . '</div>';
}