You are here

function event_views_handler_field_date_custom_iso in Event Views 5.2

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

Format a date using custom representation.

File

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

Code

function event_views_handler_field_date_custom_iso($fieldinfo, $fielddata, $value, $data) {
  return $value ? event_format_date($value, 'custom', $fielddata['options']) : theme('views_nodate');
}