function theme_date_select_element in Date 6
Same name and namespace in other branches
- 8 date_api/theme/theme.inc \theme_date_select_element()
- 5.2 date_api_elements.inc \theme_date_select_element()
- 6.2 theme/theme.inc \theme_date_select_element()
- 7.3 date_api/theme/theme.inc \theme_date_select_element()
- 7 date_api/theme/theme.inc \theme_date_select_element()
- 7.2 date_api/theme/theme.inc \theme_date_select_element()
Themes for date input form elements
1 theme call to theme_date_select_element()
- date_timezone_process in ./
date_api_elements.inc - Create a timezone form element.
File
- ./
date_api_elements.inc, line 632 - 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($element) {
$part = array_pop($element['#parents']);
return '<div class="date-' . $part . '">' . theme('select', $element) . '</div>';
}