aboutsummaryrefslogtreecommitdiff
path: root/mod/groups/actions
diff options
context:
space:
mode:
authordave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-02-18 16:18:56 +0000
committerdave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-02-18 16:18:56 +0000
commit230748c73d48abcba0f53e49151d775c9b462ffe (patch)
treec4bdb290464912278af0afeb43fc450686e1cc0a /mod/groups/actions
parent864b96d63b5690411f83aa3d9b2c49554aa9c25c (diff)
downloadelgg-230748c73d48abcba0f53e49151d775c9b462ffe.tar.gz
elgg-230748c73d48abcba0f53e49151d775c9b462ffe.tar.bz2
admins can highlight featured groups
git-svn-id: https://code.elgg.org/elgg/trunk@2799 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/groups/actions')
-rw-r--r--mod/groups/actions/featured.php44
1 files changed, 44 insertions, 0 deletions
diff --git a/mod/groups/actions/featured.php b/mod/groups/actions/featured.php
new file mode 100644
index 000000000..cfec34ba0
--- /dev/null
+++ b/mod/groups/actions/featured.php
@@ -0,0 +1,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/");
+
+?> \ No newline at end of file