You are here

function event_views_handler_field_date_small_iso in Event Views 5.2

Same name and namespace in other branches
  1. 6.2 event_views.module \event_views_handler_field_date_small_iso()

Format a date using small representation.

File

./event_views.module, line 683
Views-enables the event module.

Code

function event_views_handler_field_date_small_iso($fieldinfo, $fielddata, $value, $data) {
  return $value ? event_format_date($value, 'small') : theme('views_nodate');
}