aboutsummaryrefslogtreecommitdiff
path: root/mod/groups/actions/delete.php
blob: f75faee76bbccb8a70ceadc68eca329b6acc1a72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
	global $CONFIG;
		
	$guid = (int)get_input('group_guid');
	$entity = get_entity($guid);
	
	if (($entity) && ($entity instanceof ElggGroup))
	{
		if ($entity->delete())
			system_message(elgg_echo('group:deleted'));
		else
			register_error(elgg_echo('group:notdeleted'));
	}
	else
		register_error(elgg_echo('group:notdeleted'));
		
	forward($_SERVER['HTTP_REFERER']);
?>