You are here

function theme_date_display_single in Date 7

Same name and namespace in other branches
  1. 8 date.theme \theme_date_display_single()
  2. 5.2 date/date.theme \theme_date_display_single()
  3. 6.2 date/date.theme \theme_date_display_single()
  4. 7.3 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.theme
Theme from/to date combination in the view.

File

./date.theme, line 156
Theme functions.

Code

function theme_date_display_single($vars) {
  $date = $vars['date'];
  $timezone = !empty($vars['timezone']) ? $vars['timezone'] : NULL;
  return '<span class="date-display-single">' . $date . $timezone . '</span>';
}