diff options
Diffstat (limited to 'include/event.php')
-rw-r--r-- | include/event.php | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/include/event.php b/include/event.php new file mode 100644 index 000000000..d7071bd1f --- /dev/null +++ b/include/event.php @@ -0,0 +1,34 @@ +<?php + + +function format_event_html($ev) { + + if(! ((is_array($ev)) && count($ev))) + return ''; + + $o = '<div class="vevent">'; + + $o .= '<p class="description">' . $ev['desc'] . '</p>'; + + $o .= '<p>' . t('Starts: ') . '<abbr class="dtstart" title="' + . datetime_convert('UTC','UTC',$ev['start'], ATOM_TIME) + . '" >' + . datetime_convert('UTC', date_default_timezone_get(), + $ev['start'] /*, format /*) + . '</abbr></p>'; + + $o .= '<p>' . t('Ends: ') . '<abbr class="dtend" title="' + . datetime_convert('UTC','UTC',$ev['finish'], ATOM_TIME) + . '" >' + . datetime_convert('UTC', date_default_timezone_get(), + $ev['finish'] /*, format /*) + . '</abbr></p>'; + + $o .= '<p> ' . t('Location:') . '<span class="location">' + . $ev['location'] + . '</span></p>'; + + $o .= '</div>'; + +return $o; +}
\ No newline at end of file |