aboutsummaryrefslogtreecommitdiff
path: root/mod/event_calendar/views/default/event_calendar/strapline.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/event_calendar/views/default/event_calendar/strapline.php')
-rw-r--r--mod/event_calendar/views/default/event_calendar/strapline.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/mod/event_calendar/views/default/event_calendar/strapline.php b/mod/event_calendar/views/default/event_calendar/strapline.php
new file mode 100644
index 000000000..edc60aa3e
--- /dev/null
+++ b/mod/event_calendar/views/default/event_calendar/strapline.php
@@ -0,0 +1,18 @@
+<div class="contentWrapper">
+<span class="event_calendar_strapline">
+<?php
+
+ $event = $vars['entity'];
+
+ $time_updated = $event->time_created;
+ $owner_guid = $event->owner_guid;
+ $owner = get_entity($owner_guid);
+
+ echo sprintf(elgg_echo('event_calendar:strapline'),
+ elgg_view_friendly_time($time_updated),
+ "<a href=\"" . $owner->getURL() . "\">" . $owner->name ."</a>"
+ );
+
+?>
+</span>
+</div> \ No newline at end of file