fusionpbx/app/ring_groups/ring_group_delete.php

105 lines
2.8 KiB
PHP
Raw Normal View History

<?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 <markjcrane@fusionpbx.com>
2019-02-06 02:29:38 +01:00
Portions created by the Initial Developer are Copyright (C) 2008-2019
the Initial Developer. All Rights Reserved.
Contributor(s):
Mark J Crane <markjcrane@fusionpbx.com>
James Rose <james.o.rose@gmail.com>
*/
2019-02-06 02:29:38 +01:00
//includes
require_once "root.php";
require_once "resources/require.php";
require_once "resources/check_auth.php";
//check permissions
if (permission_exists('ring_group_delete')) {
//access granted
}
else {
echo "access denied";
exit;
}
//add multi-lingual support
$language = new text;
$text = $language->get();
//get the http value and set it as a php variable
2019-05-08 16:50:19 +02:00
if (is_array($_GET)) {
$id = $_GET["id"];
}
//delete the user data
2019-05-08 16:50:19 +02:00
if (is_uuid($id)) {
//get the dialplan_uuid
$sql = "select * from v_ring_groups ";
$sql .= "where domain_uuid = :domain_uuid ";
$sql .= "and ring_group_uuid = :ring_group_uuid ";
$parameters['domain_uuid'] = $_SESSION['domain_uuid'];
$parameters['ring_group_uuid'] = $id;
$database = new database;
$result = $database->select($sql, $parameters);
if (is_array($result)) {
foreach ($result as &$row) {
$dialplan_uuid = $row["dialplan_uuid"];
$ring_group_context = $row["ring_group_context"];
}
}
2019-05-08 16:50:19 +02:00
unset($database, $sql, $parameters);
//add the dialplan permission
$p = new permissions;
$p->add('dialplan_delete', 'temp');
//delete the data
$array['dialplan_details'][]['dialplan_uuid'] = $dialplan_uuid;
$array['dialplans'][]['dialplan_uuid'] = $dialplan_uuid;
$array['ring_group_destinations'][]['ring_group_uuid'] = $id;
$array['ring_group_users'][]['ring_group_uuid'] = $id;
$array['ring_groups'][]['ring_group_uuid'] = $id;
$database = new database;
$database->app_name = 'ring_groups';
$database->app_uuid = '1d61fb65-1eec-bc73-a6ee-a6203b4fe6f2';
$database->delete($array);
2019-05-08 16:58:26 +02:00
//$message = $database->message;
2019-05-08 16:50:19 +02:00
//remove the temporary permission
$p->delete('dialplan_delete', 'temp');
2013-01-16 01:26:48 +01:00
//save the xml
save_dialplan_xml();
2013-01-16 01:26:48 +01:00
//apply settings reminder
$_SESSION["reload_xml"] = true;
2013-01-16 01:26:48 +01:00
//clear the cache
$cache = new cache;
$cache->delete("dialplan:".$ring_group_context);
}
//redirect the user
2018-08-31 05:09:01 +02:00
message::add($text['message-delete']);
2014-02-23 08:48:21 +01:00
header("Location: ring_groups.php");
return;
?>