You are here

function theme_date_all_day_label in Date 6.2

Same name and namespace in other branches
  1. 8 date_all_day/date_all_day.module \theme_date_all_day_label()
  2. 5.2 date/date.theme \theme_date_all_day_label()
  3. 7.3 date_all_day/date_all_day.module \theme_date_all_day_label()
  4. 7 date.theme \theme_date_all_day_label()
  5. 7.2 date_all_day/date_all_day.module \theme_date_all_day_label()

Theme the way an 'all day' label will look.

2 theme calls to theme_date_all_day_label()
date_formatter_process in date/date.module
Helper function for creating formatted date arrays from a formatter.
theme_date_all_day in date/date.theme
Adjust from/to date format to account for 'all day'.

File

date/date.theme, line 279
Theme functions.

Code

function theme_date_all_day_label() {
  return '(' . date_t('All day', 'datetime') . ')';
}