aboutsummaryrefslogtreecommitdiff
path: root/mod/groups/groupprofile.php
blob: 36bede0c0f1a088cc96679eec0be3283ba61e4dc (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
	/**
	 * Full group profile
	 * 
	 * @package ElggGroups
	 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
	 * @author Marcus Povey
	 * @copyright Curverider Ltd 2008
	 * @link http://elgg.com/
	 */

	$group_guid = get_input('group_guid');
	set_context('groups');
	
	
	$group = get_entity($group_guid);
	
	set_page_owner($group_guid);
	
	$area2 = elgg_view_title($group->name);
	$area2 .= elgg_view('group/group', array('entity' => $group, 'user' => $_SESSION['user'], 'full' => true));
	
	//group profile 'items' - these are not real widgets, just contents to display
	$area2 .= elgg_view('groups/profileitems',array('entity' => $group));
	
	$body = elgg_view_layout('two_column_left_sidebar', $area1, $area2);
	
	// Finally draw the page
	page_draw($group->name, $body);
?>