aboutsummaryrefslogtreecommitdiff
path: root/views/default/river/object/image/create.php
blob: bf6d2acbb0b91cc45ab30bbaa91c46126f146b22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php

if (function_exists('add_to_river')) { // Elgg 1.5
	$performed_by = get_entity($vars['item']->subject_guid);
	$image = get_entity($vars['item']->object_guid);
	if($image->title) {
		$title = $image->title;
	} else {
		$title = "untitled";
	}

	$url = "<a href=\"{$performed_by->getURL()}\">{$performed_by->name}</a>";
	$album = get_entity($image->container_guid);

	$album_link = "<a href='". $album->getURL() . "'>" . $album->title . "</a>";
	$image_link = "<a href=\"" . $image->getURL() . "\">" . $title . "</a>";
	
	$string = sprintf(elgg_echo("image:river:created"),$performed_by->name, $image_link, $album_link);
		
	$string .= "<div class=\"river_content\">";
	$string .= "<a href=\"" . $album->getURL() . "\"> <img src=\"" . $CONFIG->wwwroot . 'mod/tidypics/thumbnail.php?file_guid=' . $album->cover . '&size=thumb" border="0" class="tidypics_album_cover"  alt="thumbnail"/> </a>';
	$string .= "<a href=\"" . $image->getURL() . "\"> <img src=\"" . $CONFIG->wwwroot . 'mod/tidypics/thumbnail.php?file_guid=' . $image->guid . '&size=thumb" border="0" class="tidypics_album_cover"  alt="thumbnail"/> </a>';
	$string .= "</div>";
	
	echo $string;
	
} else {
	$statement = $vars['statement'];
	$performed_by = $statement->getSubject();
	$object = $statement->getObject();
	
	$url = "<a href=\"{$performed_by->getURL()}\">{$performed_by->name}</a>";
	$string = sprintf(elgg_echo("image:river:created"),$url) . " ";
	$string .= "<a href=\"" . $object->getURL() . "\">" . elgg_echo("image:river:item") . "</a>";

	echo $string;
}
	
?>