aboutsummaryrefslogtreecommitdiff
path: root/mod/activity/friends.php
diff options
context:
space:
mode:
authordave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-02-19 15:19:28 +0000
committerdave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-02-19 15:19:28 +0000
commit339c42f966b73652d7e4655443062bf77c7742e0 (patch)
treee85dbff96e67eaba00d7aabe903100812c2d2ddc /mod/activity/friends.php
parent47475737ced41c30946a2d9113d0d359c157474b (diff)
downloadelgg-339c42f966b73652d7e4655443062bf77c7742e0.tar.gz
elgg-339c42f966b73652d7e4655443062bf77c7742e0.tar.bz2
old activity and river removed
git-svn-id: https://code.elgg.org/elgg/trunk@2816 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/activity/friends.php')
-rw-r--r--mod/activity/friends.php39
1 files changed, 0 insertions, 39 deletions
diff --git a/mod/activity/friends.php b/mod/activity/friends.php
deleted file mode 100644
index f3a9fa89f..000000000
--- a/mod/activity/friends.php
+++ /dev/null
@@ -1,39 +0,0 @@
-<?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-2009
- * @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);
-
- if (elgg_get_viewtype()=='opendd')
- $activity = activity_get_activity_opendd($limit, $offset, $type, $subtype, page_owner(), 'friend');
- else
- $activity = activity_get_activity($limit, $offset, $type, $subtype, page_owner(), 'friend');
- if (count($activity)>0) {
-
- global $autofeed;
- $autofeed = true;
-
- $body = elgg_view('activity/dashboard', array('activity' => $activity));
- $body .= elgg_view('activity/offset', array('offset' => $offset, 'add_to_url' => 'friends'));
- } 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