function event_views_handler_field_date_small_iso in Event Views 6.2
Same name and namespace in other branches
- 5.2 event_views.module \event_views_handler_field_date_small_iso()
Format a date using small representation.
File
- ./
event_views.module, line 692 - 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');
}