blob: cfec34ba0c4de65f2e60d6c2dd444e8f37692919 (
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
39
40
41
42
43
44
|
<?php
/**
* Join a group action.
*
* @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-2009
* @link http://elgg.com/
*/
// Load configuration
global $CONFIG;
admin_gatekeeper();
$group_guid = get_input('group_guid');
$action = get_input('action');
$group = get_entity($group_guid);
if($group){
//get the action, is it to feature or unfeature
if($action == "feature"){
$group->featured_group = "yes";
system_message(elgg_echo('groups:featuredon'));
}
if($action == "unfeature"){
$group->featured_group = "no";
system_message(elgg_echo('groups:unfeatured'));
}
}
forward("pg/groups/world/");
?>
|