function theme_date_part_label_hour in Date 7.2
Same name and namespace in other branches
- 5.2 date_api_elements.inc \theme_date_part_label_hour()
- 6.2 theme/theme.inc \theme_date_part_label_hour()
- 6 date_api_elements.inc \theme_date_part_label_hour()
- 7.3 date_api/theme/theme.inc \theme_date_part_label_hour()
- 7 date_api/theme/theme.inc \theme_date_part_label_hour()
Returns HTML for a date_select 'hour' label.
File
- date_api/
theme/ theme.inc, line 125 - Theme files for Date API.
Code
function theme_date_part_label_hour($variables) {
return t('Hour', array(), array(
'context' => 'datetime',
));
}