diff options
Diffstat (limited to 'mod/groups/actions')
-rw-r--r-- | mod/groups/actions/delete.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/mod/groups/actions/delete.php b/mod/groups/actions/delete.php new file mode 100644 index 000000000..f75faee76 --- /dev/null +++ b/mod/groups/actions/delete.php @@ -0,0 +1,18 @@ +<?php
+ global $CONFIG;
+
+ $guid = (int)get_input('group_guid');
+ $entity = get_entity($guid);
+
+ if (($entity) && ($entity instanceof ElggGroup))
+ {
+ if ($entity->delete())
+ system_message(elgg_echo('group:deleted'));
+ else
+ register_error(elgg_echo('group:notdeleted'));
+ }
+ else
+ register_error(elgg_echo('group:notdeleted'));
+
+ forward($_SERVER['HTTP_REFERER']);
+?>
\ No newline at end of file |