blob: d095c82eb26486d1b9ddfe88db74cfcf3bde090d (
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
/**
* Elgg show the user who liked the object
*/
$owner = get_user($vars['annotation']->owner_guid);
?>
<div class="elgg_likes clearfloat">
<div class="elgg_likes_icon">
<?php
echo elgg_view("profile/icon", array(
'entity' => $owner,
'size' => 'tiny'
));
?>
</div>
<div class="elgg_likes_details">
<?php
// if the user looking at the like listing can edit, show the delete link
if ($vars['annotation']->canEdit()) {
?>
<span class="delete_button">
<?php echo elgg_view("output/confirmlink",array(
'href' => $vars['url'] . "action/likes/delete?annotation_id=" . $vars['annotation']->id,
'text' => elgg_echo('remove'),
'confirm' => elgg_echo('deleteconfirm')
));
?>
</span>
<?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'); ?>
</p>
</div>
</div>
|