From f81d6e670ba8c6c98819612cdddad97649be2241 Mon Sep 17 00:00:00 2001 From: marcus Date: Thu, 16 Oct 2008 15:54:38 +0000 Subject: 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 --- mod/activity/friends.php | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 mod/activity/friends.php (limited to 'mod/activity/friends.php') 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 @@ +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 -- cgit v1.2.3