aboutsummaryrefslogtreecommitdiff
path: root/mod/groups/actions/featured.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/groups/actions/featured.php')
-rw-r--r--mod/groups/actions/featured.php38
1 files changed, 0 insertions, 38 deletions
diff --git a/mod/groups/actions/featured.php b/mod/groups/actions/featured.php
deleted file mode 100644
index b49a76471..000000000
--- a/mod/groups/actions/featured.php
+++ /dev/null
@@ -1,38 +0,0 @@
-<?php
-
- /**
- * Join a group action.
- *
- * @package ElggGroups
- */
-
- // Load configuration
- global $CONFIG;
-
- admin_gatekeeper();
-
- $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); \ No newline at end of file