You are here

function theme_date_select_element in Date 7.3

Same name and namespace in other branches
  1. 8 date_api/theme/theme.inc \theme_date_select_element()
  2. 5.2 date_api_elements.inc \theme_date_select_element()
  3. 6.2 theme/theme.inc \theme_date_select_element()
  4. 6 date_api_elements.inc \theme_date_select_element()
  5. 7 date_api/theme/theme.inc \theme_date_select_element()
  6. 7.2 date_api/theme/theme.inc \theme_date_select_element()

Returns HTML for a date select input form element.

2 theme calls to theme_date_select_element()
date_parts_element in date_api/date_api_elements.inc
Creates form elements for one or more date parts.
date_timezone_element_process in date_api/date_api_elements.inc
Creates a timezone form element.

File

date_api/theme/theme.inc, line 64
Theme files for Date API.

Code

function theme_date_select_element($variables) {
  $element = $variables['element'];
  $parents = $element['#parents'];
  $part = array_pop($parents);
  return '<div class="date-' . $part . '">' . theme('select', $element) . '</div>';
}