blob: cfa7e47e078d614ceedc8da913c9d3d0a8f5cdad (
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
40
|
<?php
/**
* Elgg show the user who liked the object
*/
$owner = get_user($vars['annotation']->owner_guid);
?>
<div class="elgg_likes_user clearfix">
<div class="entity_listing_icon">
<?php
echo elgg_view("profile/icon", array(
'entity' => $owner,
'size' => 'tiny'
));
?>
</div>
<div class="entity_listing_info">
<?php
// if the user looking at the like listing can edit, show the delete link
if ($vars['annotation']->canEdit()) {
?>
<div class="entity_metadata"><span class="delete_button">
<?php echo elgg_view("output/confirmlink",array(
'href' => "action/likes/delete?annotation_id=" . $vars['annotation']->id,
'text' => elgg_echo('remove'),
'confirm' => elgg_echo('deleteconfirm')
));
?>
</span></div>
<?php
} //end of can edit if statement
?>
<p class="elgg_likes_owner">
<a href="<?php echo $owner->getURL(); ?>"><?php echo $owner->name; ?></a> <?php echo elgg_echo('likes:this') .
" <span class=\"entity_subtext\">" . elgg_view_friendly_time($vars['annotation']->time_created) . "</span>"; ?>
</p>
</div>
</div>
|