diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-04 01:26:36 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-04 01:26:36 +0000 |
commit | 1bcc2d793704bf43f6ecf9a01259e9cd6f6f8b2a (patch) | |
tree | 21bbc06d2e8dec46c6396cfbfd8d1e499f2733d8 /mod/groups/actions/featured.php | |
parent | 1b9a059d96265ddb058be4f73c6989c318181f8d (diff) | |
download | elgg-1bcc2d793704bf43f6ecf9a01259e9cd6f6f8b2a.tar.gz elgg-1bcc2d793704bf43f6ecf9a01259e9cd6f6f8b2a.tar.bz2 |
updated the group actions - edit group needs more work
git-svn-id: http://code.elgg.org/elgg/trunk@8573 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/groups/actions/featured.php')
-rw-r--r-- | mod/groups/actions/featured.php | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/mod/groups/actions/featured.php b/mod/groups/actions/featured.php deleted file mode 100644 index 72ca7eebd..000000000 --- a/mod/groups/actions/featured.php +++ /dev/null @@ -1,27 +0,0 @@ -<?php -/** - * Feature a group - * - * @package ElggGroups - */ - - -$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')); - } -} - -forward(REFERER); |