aboutsummaryrefslogtreecommitdiff
path: root/mod/friends/edit.php
blob: 6be47f4d19cf8cfd4f8d52b0d47924e6cddf51dc (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
31
32
33
34
35
36
37
38
<?php

	/**
	 * Elgg add a collection of friends
	 * 
	 * @package ElggFriends
	 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
	 * @author Curverider Ltd <info@elgg.com>
	 * @copyright Curverider Ltd 2008-2010
	 * @link http://elgg.org/
	 */

	// Start engine
		require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
		
	// You need to be logged in for this one
		gatekeeper();
		
		//set the title
		$area1 = elgg_view_title(elgg_echo('friends:collectionedit'), false);
		
		//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);
		
	    $area2 = elgg_view('friends/forms/edit', array('collection' => $collection, 'collection_members' => $collection_members));
		
	// Format page
		$body = elgg_view_layout('two_column_left_sidebar',$area1. $area2);
		
	// Draw it
		page_draw(elgg_echo('friends:add'),$body);

?>