12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
- /*
- FusionPBX
- Version: MPL 1.1
- The contents of this file are subject to the Mozilla Public License Version
- 1.1 (the "License"); you may not use this file except in compliance with
- the License. You may obtain a copy of the License at
- http://www.mozilla.org/MPL/
- Software distributed under the License is distributed on an "AS IS" basis,
- WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- for the specific language governing rights and limitations under the
- License.
- The Original Code is FusionPBX
- The Initial Developer of the Original Code is
- Mark J Crane <[email protected]>
- Portions created by the Initial Developer are Copyright (C) 2008-2012
- the Initial Developer. All Rights Reserved.
- Contributor(s):
- Mark J Crane <[email protected]>
- */
- //includes
- include "root.php";
- require_once "resources/require.php";
- require_once "resources/check_auth.php";
- //check permissions
- if (permission_exists('group_member_delete') || if_group("superadmin")) {
- //access allowed
- }
- else {
- echo "access denied";
- return;
- }
- //requires a superadmin to delete superadmin group
- if (!if_group("superadmin") && $_GET["group_name"] == "superadmin") {
- echo "access denied";
- return;
- }
- //get the http values and set them as variables
- $group_name = $_GET["group_name"];
- $user_uuid = $_GET["user_uuid"];
- $group_uuid = $_GET["group_uuid"];
- //delete the group membership
- $p = new permissions;
- $p->add('user_group_delete', 'temp');
- $array['user_groups'][0]['user_uuid'] = $user_uuid;
- $array['user_groups'][0]['group_uuid'] = $group_uuid;
- $database = new database;
- $database->app_name = 'groups';
- $database->app_uuid = '2caf27b0-540a-43d5-bb9b-c9871a1e4f84';
- $database->delete($array);
- unset($array);
- $p->delete('user_group_delete', 'temp');
- //redirect the user
- message::add($text['message-delete']);
- header("Location: groupmembers.php?group_uuid=".$group_uuid."&group_name=".$group_name);
- ?>
|