diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-03 03:33:52 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-03 03:33:52 +0000 |
commit | 949a233076ec18f86e60f90a7a8837cb422664af (patch) | |
tree | 0286c9cb2c3301a164505e39dccf02a4e0a98497 /mod/groups/actions/featured.php | |
parent | d4e4268d11612408e4989a5c57f69fcb2febe8aa (diff) | |
download | elgg-949a233076ec18f86e60f90a7a8837cb422664af.tar.gz elgg-949a233076ec18f86e60f90a7a8837cb422664af.tar.bz2 |
Refs #2428 almost done removing CONFIG access - mostly plugin start.php left
git-svn-id: http://code.elgg.org/elgg/trunk@7999 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/groups/actions/featured.php')
-rw-r--r-- | mod/groups/actions/featured.php | 58 |
1 files changed, 25 insertions, 33 deletions
diff --git a/mod/groups/actions/featured.php b/mod/groups/actions/featured.php index a63b93c0d..72ca7eebd 100644 --- a/mod/groups/actions/featured.php +++ b/mod/groups/actions/featured.php @@ -1,35 +1,27 @@ -<?php - - /** - * Join a group action. - * - * @package ElggGroups - */ +<?php +/** + * Feature a group + * + * @package ElggGroups + */ - global $CONFIG; - - $group_guid = get_input('group_guid'); - $action = get_input('action_type'); - - $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')); - - } - + +$group_guid = get_input('group_guid'); +$action = get_input('action_type'); + +$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')); } - - forward(REFERER);
\ No newline at end of file + + if ($action == "unfeature") { + $group->featured_group = "no"; + system_message(elgg_echo('groups:unfeatured')); + } +} + +forward(REFERER); |