blob: 6f5d41829581278bed906cf3f99778410c8e19f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
/**
* Elgg likes link form - used on riverdashboard where we want the likes link separate from the list of users that liked the object
*
* @package Elgg
* @author Curverider Ltd <info@elgg.com>
* @link http://elgg.com/
*
* @uses $vars['entity']
*/
if (isset($vars['entity']) && isloggedin()) {
$guid = $vars['entity']->getGuid();
$url = elgg_add_action_tokens_to_url($vars['url'] . "action/likes/add?guid={$guid}");
//check to see if the user has already liked
if (!elgg_annotation_exists($guid, 'likes') ) {
echo "<span class='river_link_divider'> | </span><a class='river_user_like_button link' href=\"{$url}\">" . elgg_echo('likes:likethis') . "</a>";
}
}
|