aboutsummaryrefslogtreecommitdiff
path: root/pages/friends/add.php
blob: 81fe7b05b276b0ee7ac3d3d0676e5307b0ab42a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/**
 * Elgg add a collection of friends
 *
 * @package Elgg
 * @subpackage Core
 */

// You need to be logged in for this one
gatekeeper();

$title = elgg_echo('friends:collections:add');

$content = elgg_view_title($title);

$content .= elgg_view('forms/friends/edit', array(
	'friends' => get_user_friends(get_loggedin_userid(), "", 9999)
	)
);

$body = elgg_view_layout('one_sidebar', array('content' => $content));

echo elgg_view_page(elgg_echo('friends:collections:add'), $body);