aboutsummaryrefslogtreecommitdiff
path: root/mod/pages/views/default/annotation/page.php
blob: 53f38831f0edda61a33a48096f7c6d394117ee23 (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
<?php
/**
 * Default page listing?
 *
 * @package ElggPages
 */

$annotation = $vars['annotation'];
$entity = get_entity($annotation->entity_guid);

$icon = elgg_view(
	"annotation/icon", array(
		'annotation' => $vars['annotation'],
		'size' => 'small',
	)
);

$owner_guid = $annotation->owner_guid;
$owner = get_entity($owner_guid);

$rev = elgg_echo('pages:revision',
	array(elgg_view_friendly_time($annotation->time_created)),
	"<a href=\"" . $owner->getURL() . "\">" . $owner->name ."</a>"
);

$link = $entity->getURL() . "?rev=" . $annotation->id;

$info = <<< END

<div><a href="$link">{$entity->title}</a></div>
<div>$rev</div>
END;

echo elgg_view_listing($icon, $info);