aboutsummaryrefslogtreecommitdiff
path: root/mod/groups/edit.php
blob: cbb181ef34c775b9aeeba82b4e9b52a145b53a75 (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
<?php
	/**
	 * Elgg groups plugin
	 * 
	 * @package ElggGroups
	 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
	 * @author Curverider Ltd
	 * @copyright Curverider Ltd 2008-2010
	 * @link http://elgg.com/
	 */

	require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
	group_gatekeeper();

	$group_guid = get_input('group_guid');
	$group = get_entity($group_guid);
	set_page_owner($group_guid);

	$title = elgg_echo("groups:edit");
	$body = elgg_view_title($title);
	
	if (($group) && ($group->canEdit()))
	{
		$body .= elgg_view("forms/groups/edit", array('entity' => $group));
			 
	} else {
		$body .= elgg_echo('groups:noaccess');
	}
	
	$body = elgg_view_layout('one_column_with_sidebar', $body);
	
	page_draw($title, $body);
?>