aboutsummaryrefslogtreecommitdiff
path: root/pages/friends/add.php
blob: 96da26ae17da0689f26d5f230e81445866def137 (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_form('friends/edit', array(), array(
	'friends' => get_user_friends(elgg_get_logged_in_user_guid(), "", 9999)
	)
);

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

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