aboutsummaryrefslogtreecommitdiff
path: root/mod/groups/actions/groups/featured.php
blob: 4cb9f812250a35f7ffbbaf6cf8d73e96ca89d0c4 (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
<?php	
/**
 * Feature a group
 *
 * @package ElggGroups
 */

$group_guid = get_input('group_guid');
$action = get_input('action_type');

$group = get_entity($group_guid);

if (!elgg_instanceof($group, 'group')) {
	register_error(elgg_echo('groups:featured_error'));
	forward(REFERER);
}

//get the action, is it to feature or unfeature
if ($action == "feature") {
	$group->featured_group = "yes";
	system_message(elgg_echo('groups:featuredon', array($group->name)));
} else {
	$group->featured_group = "no";
	system_message(elgg_echo('groups:unfeatured', array($group->name)));
}

forward(REFERER);