You are here

function theme_date_display_range in Date 6.2

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

File

date/date.theme, line 158
Theme functions.

Code

function theme_date_display_range($date1, $date2, $timezone = NULL) {
  return '<span class="date-display-start">' . $date1 . '</span>' . '<span class="date-display-separator"> - </span>' . '<span class="date-display-end">' . $date2 . $timezone . '</span>';
}