aboutsummaryrefslogtreecommitdiff
path: root/pages/friends/edit.php
blob: e2c707b7c6a9de118a512675ca01f86a872b4826 (plain)
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
<?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:collectionedit');

$content = elgg_view_title($title);

//grab the collection id passed to the edit form
$collection_id = get_input('collection');

//get the full collection
$collection = get_access_collection($collection_id);

//get all members of the collection
$collection_members = get_members_of_access_collection($collection_id);

$content .= elgg_view('forms/friends/edit', array('collection' => $collection,
	'collection_members' => $collection_members));

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

echo elgg_view_page($title, $body);