You are here

function theme_date_part_label_date in Date 7.3

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

Returns HTML for a date_select 'date' label.

1 theme call to theme_date_part_label_date()
date_popup_process_date_part in date_popup/date_popup.module
Process the date portion of the element.

File

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

Code

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