You are here

function theme_date_part_label_time in Date 7.2

Same name and namespace in other branches
  1. 7.3 date_api/theme/theme.inc \theme_date_part_label_time()

Returns HTML for a date_select 'time' label.

1 theme call to theme_date_part_label_time()
date_popup_process_time_part in date_popup/date_popup.module
Process the time portion of the element.

File

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

Code

function theme_date_part_label_time($variables) {
  return t('Time', array(), array(
    'context' => 'datetime',
  ));
}