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
41
42
43
|
<?php
/**
* Controls on an river item
*
*
* @uses $vars['item']
*/
$object = $vars['item']->getObjectEntity();
if (isloggedin()) {
// comments and non-objects cannot be commented on or liked
if ($object->getType() == 'object' && $vars['item']->annotation_id == 0) {
$params = array(
'href' => '#',
'text' => elgg_echo('generic_comments:text'),
'class' => 'elgg-toggle',
'internalid' => "elgg-toggler-{$object->getGUID()}",
);
echo elgg_view('output/url', $params);
// like this
if (!elgg_annotation_exists($object->getGUID(), 'likes')) {
$url = "action/likes/add?guid={$object->getGUID()}";
$params = array(
'href' => $url,
'text' => elgg_echo('likes:likethis'),
'is_action' => true,
);
echo elgg_view('output/url', $params);
} else {
$likes = get_annotations($guid, '', '', 'likes', '', get_loggedin_userid());
$url = elgg_get_site_url() . "action/likes/delete?annotation_id={$likes[0]->id}";
$params = array(
'href' => $url,
'text' => elgg_echo('likes:remove'),
'is_action' => true,
);
echo elgg_view('output/url', $params);
}
}
}
|