1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
<?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));
?>
|