aboutsummaryrefslogtreecommitdiff
path: root/mod/file/views/default/river/object/file/create.php
blob: b0e2ca07b2453d128658c288fdbda8f08f6ba9a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

	$performed_by = get_entity($vars['item']->subject_guid);
	$object = get_entity($vars['item']->object_guid);
	$url = $object->getURL();
	$container = get_entity($object->container_guid);
	
	$url = "<a href=\"{$performed_by->getURL()}\">{$performed_by->name}</a>";
	$string = sprintf(elgg_echo("file:river:created"),$url) . " " . elgg_echo("file:river:item");
	$string .= " <a href=\"" . $object->getURL() . "\">" . $object->title . "</a>";
	if ($container && $container instanceof ElggGroup) {
		$string .= ' ' . elgg_echo('groups:river:togroup') . " <a href=\"" . $container->getURL() ."\">". $container->name . "</a>";
	}

	echo $string;
	
?>