aboutsummaryrefslogtreecommitdiff
path: root/trunk/views/default/river/object/event_calendar/update.php
blob: 5a5d376b1f4a3b3f78d009bb0ae8c78748cec3d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

	$performed_by = get_entity($vars['item']->subject_guid); 
	$object = get_entity($vars['item']->object_guid);
	
	$url = "<a href=\"{$performed_by->getURL()}\">{$performed_by->name}</a>";
	$string = sprintf(elgg_echo("event_calendar:river:updated"),$url) . " ";
    $string .= elgg_echo("event_calendar:river:the_event")." <a href=\"" . $object->getURL() . "\">" . $object->title . "</a>";
    
?>

<?php echo $string; ?>