diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-29 18:31:27 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-29 18:31:27 +0000 |
commit | b6f99468651309e0b58dbe000958540809df5dcc (patch) | |
tree | 2eb822efea669a1f12d44818e001aaa22b331f69 /mod/riverdashboard/endpoint/get_comments.php | |
parent | 6729784c18099d4e34c2ed6146b63f275a2eea54 (diff) | |
download | elgg-b6f99468651309e0b58dbe000958540809df5dcc.tar.gz elgg-b6f99468651309e0b58dbe000958540809df5dcc.tar.bz2 |
Fixes #2226 moves riverdashboard into secondary plugins from core plugins - most of riverdashboard functionality is now in core (except for displaying who has liked stuff and ajax refreshes)
git-svn-id: http://code.elgg.org/elgg/trunk@7750 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/riverdashboard/endpoint/get_comments.php')
-rw-r--r-- | mod/riverdashboard/endpoint/get_comments.php | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/mod/riverdashboard/endpoint/get_comments.php b/mod/riverdashboard/endpoint/get_comments.php deleted file mode 100644 index f130cfd3c..000000000 --- a/mod/riverdashboard/endpoint/get_comments.php +++ /dev/null @@ -1,40 +0,0 @@ -<?php -/** - * Grabs more comments to display. - */ - -require_once(dirname(dirname(dirname(dirname(__FILE__)))) . "/engine/start.php"); - -$limit = get_input('limit', 25); -// 3 are displayed by default. -$offset = get_input('offset', 3); -$entity_guid = get_input('entity_guid'); -if (!$entity = get_entity($entity_guid)) { - exit; -} - -// same deal as the main view...get the newest $limit, but reverse it to put the newest at the bottom. -if ($comments = get_annotations($entity_guid, "", "", 'generic_comment', "", "", $limit, $offset, "desc")) { - $comments = array_reverse($comments); -} - -foreach ($comments as $comment) { - //get the comment owner - $comment_owner = get_user($comment->owner_guid); - //get the comment owner's profile url - $comment_owner_url = $comment_owner->getURL(); - - //display comment - echo "<div class='river-comment clearfix'>"; - echo "<span class='river-comment-owner-icon'>"; - echo elgg_view("profile/icon", array('entity' => $comment_owner, 'size' => 'tiny')); - echo "</span>"; - - //truncate comment to 150 characters and strip tags - $contents = elgg_get_excerpt($comment->value, 150); - - echo "<div class='river-comment-contents'>"; - echo "<a href=\"{$comment_owner_url}\">" . $comment_owner->name . '</a> <span class="twitter_anywhere">' . parse_urls($contents) . '</span>'; - echo "<span class='entity-subtext'>" . elgg_view_friendly_time($comment->time_created) . "</span>"; - echo "</div></div>"; -}
\ No newline at end of file |