function theme_date_select in Date 6
Same name and namespace in other branches
- 8 date_api/theme/theme.inc \theme_date_select()
- 5.2 date_api_elements.inc \theme_date_select()
- 6.2 theme/theme.inc \theme_date_select()
- 7.3 date_api/theme/theme.inc \theme_date_select()
- 7 date_api/theme/theme.inc \theme_date_select()
- 7.2 date_api/theme/theme.inc \theme_date_select()
Format a date selection element.
Parameters
$element: An associative array containing the properties of the element. Properties used: title, value, options, description, required and attributes.
Return value
A themed HTML string representing the date selection boxes.
1 theme call to theme_date_select()
File
- ./
date_api_elements.inc, line 608 - Date API elements themes and validation. This file is only included during the edit process to reduce memory usage.
Code
function theme_date_select($element) {
$output = '';
if (isset($element['#children'])) {
$output = $element['#children'];
}
return '<div class="container-inline-date clear-block">' . theme('form_element', $element, $output) . '</div>';
}