2012-06-04 16:58:40 +02:00
|
|
|
<?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>
|
2014-02-06 08:39:38 +01:00
|
|
|
Portions created by the Initial Developer are Copyright (C) 2008-2014
|
2012-06-04 16:58:40 +02:00
|
|
|
the Initial Developer. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
Contributor(s):
|
|
|
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
|
|
|
*/
|
|
|
|
|
include "root.php";
|
2013-07-06 08:03:27 +02:00
|
|
|
require_once "resources/require.php";
|
2013-07-06 07:50:55 +02:00
|
|
|
require_once "resources/check_auth.php";
|
2013-05-29 06:34:28 +02:00
|
|
|
if (permission_exists('dialplan_delete')
|
|
|
|
|
|| permission_exists('inbound_route_delete')
|
2012-06-04 16:58:40 +02:00
|
|
|
|| permission_exists('outbound_route_delete')
|
2013-09-11 21:31:40 +02:00
|
|
|
|| permission_exists('fifo_delete')
|
2013-09-21 23:45:35 +02:00
|
|
|
|| permission_exists('time_condition_delete')) {
|
2012-06-04 16:58:40 +02:00
|
|
|
//access granted
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo "access denied";
|
|
|
|
|
exit;
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-29 06:34:28 +02:00
|
|
|
//add multi-lingual support
|
2015-01-18 11:06:08 +01:00
|
|
|
$language = new text;
|
|
|
|
|
$text = $language->get();
|
2013-05-29 06:34:28 +02:00
|
|
|
|
2014-02-06 08:39:38 +01:00
|
|
|
//set the variables
|
|
|
|
|
if (count($_GET) > 0) {
|
|
|
|
|
$dialplan_detail_uuid = check_str($_GET["id"]);
|
|
|
|
|
$dialplan_uuid = check_str($_REQUEST["dialplan_uuid"]);
|
2014-07-31 11:21:16 +02:00
|
|
|
$app_uuid = check_str($_REQUEST["app_uuid"]);
|
2014-02-06 08:39:38 +01:00
|
|
|
}
|
2012-06-04 16:58:40 +02:00
|
|
|
|
2014-02-06 08:39:38 +01:00
|
|
|
//delete the dialplan detail
|
|
|
|
|
if (strlen($dialplan_detail_uuid) > 0) {
|
|
|
|
|
//delete child data
|
|
|
|
|
$sql = "delete from v_dialplan_details ";
|
|
|
|
|
//$sql .= "where domain_uuid = '".$_SESSION['domain_uuid']."' ";
|
|
|
|
|
$sql .= "where dialplan_detail_uuid = '$dialplan_detail_uuid' ";
|
|
|
|
|
$db->query($sql);
|
|
|
|
|
unset($sql);
|
2012-06-04 16:58:40 +02:00
|
|
|
|
2014-02-06 08:39:38 +01:00
|
|
|
//synchronize the xml config
|
|
|
|
|
save_dialplan_xml();
|
2012-06-04 16:58:40 +02:00
|
|
|
|
2014-02-06 08:39:38 +01:00
|
|
|
//delete the dialplan context from memcache
|
|
|
|
|
$fp = event_socket_create($_SESSION['event_socket_ip_address'], $_SESSION['event_socket_port'], $_SESSION['event_socket_password']);
|
|
|
|
|
if ($fp) {
|
|
|
|
|
$switch_cmd = "memcache delete dialplan:".$_SESSION["context"];
|
|
|
|
|
$switch_result = event_socket_request($fp, 'api '.$switch_cmd);
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-06-04 16:58:40 +02:00
|
|
|
|
2014-02-21 00:56:45 +01:00
|
|
|
//save the message to a session variable
|
|
|
|
|
$_SESSION['message'] = $text['message-delete'];
|
|
|
|
|
|
|
|
|
|
//redirect the browser
|
2014-07-31 11:21:16 +02:00
|
|
|
header("Location: dialplan_edit.php?id=".$dialplan_uuid.(($app_uuid != '') ? "&app_uuid=".$app_uuid : null));
|
2014-02-21 00:56:45 +01:00
|
|
|
exit;
|
2012-06-04 16:58:40 +02:00
|
|
|
|
|
|
|
|
?>
|