diff options
Diffstat (limited to 'mod/riverdashboard/endpoint/get_likes.php')
-rw-r--r-- | mod/riverdashboard/endpoint/get_likes.php | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/mod/riverdashboard/endpoint/get_likes.php b/mod/riverdashboard/endpoint/get_likes.php deleted file mode 100644 index cc9e83aaf..000000000 --- a/mod/riverdashboard/endpoint/get_likes.php +++ /dev/null @@ -1,22 +0,0 @@ -<?php -/** - * Grabs more "likes" to display. - */ - -require_once(dirname(dirname(dirname(dirname(__FILE__)))) . "/engine/start.php"); - -$limit = get_input('limit', 25); -$offset = get_input('offset', 0); -$entity_guid = get_input('entity_guid'); - -if (!$entity = get_entity($entity_guid)) { - exit; -} - -$annotations = $entity->getAnnotations('likes', $limit, $offset); - -if (is_array($annotations) && sizeof($annotations) > 0) { - foreach($annotations as $annotation) { - echo elgg_view_annotation($annotation, "", false); - } -} |