aboutsummaryrefslogtreecommitdiff
path: root/mod/activity/friends.php
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-10-16 15:54:38 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-10-16 15:54:38 +0000
commitf81d6e670ba8c6c98819612cdddad97649be2241 (patch)
treea47f71d337ac41580ea5da54506b635054e16d7f /mod/activity/friends.php
parent1d557893a991830c28f4dbd8c25ed906044a2419 (diff)
downloadelgg-f81d6e670ba8c6c98819612cdddad97649be2241.tar.gz
elgg-f81d6e670ba8c6c98819612cdddad97649be2241.tar.bz2
Initial activity view.
Missing functionality: comments, tabs and drill down ability. git-svn-id: https://code.elgg.org/elgg/trunk@2272 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/activity/friends.php')
-rw-r--r--mod/activity/friends.php31
1 files changed, 31 insertions, 0 deletions
diff --git a/mod/activity/friends.php b/mod/activity/friends.php
new file mode 100644
index 000000000..da9e142b4
--- /dev/null
+++ b/mod/activity/friends.php
@@ -0,0 +1,31 @@
+<?php
+ /**
+ * Elgg activity plugin.
+ *
+ * @package ElggActivity
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider Ltd
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.com/
+ */
+
+ require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
+
+ $owner = page_owner_entity();
+ $limit = get_input('limit', 20);
+ $offset = get_input('offset');
+
+ $title_txt = sprintf(elgg_echo('activity:person:friends'), $owner->name);
+ $title = elgg_view_title($title_txt);
+
+ $activity = activity_get_activity($limit, $offset, $type, $subtype, page_owner(), 'friend');
+ if (count($activity)>0)
+ $body = "";
+ else
+ $body = elgg_echo('activity:nofriendactivity');
+
+
+
+ page_draw($title_txt, elgg_view_layout("two_column_left_sidebar", '', $title . $body));
+
+?> \ No newline at end of file