You are here

function theme_date_display_single in Date 5.2

Same name and namespace in other branches
  1. 8 date.theme \theme_date_display_single()
  2. 6.2 date/date.theme \theme_date_display_single()
  3. 7.3 date.theme \theme_date_display_single()
  4. 7 date.theme \theme_date_display_single()
  5. 7.2 date.theme \theme_date_display_single()
1 theme call to theme_date_display_single()
theme_date_display_combination in date/date.theme
Theme from/to date combination in the view.

File

date/date.theme, line 105
Theme functions.

Code

function theme_date_display_single($date, $timezone = NULL) {
  return '<span class="date-display-single">' . $date . $timezone . '</span>';
}