2012-06-04 16:58:40 +02:00
|
|
|
<?php
|
2012-10-23 12:00:03 +02:00
|
|
|
/*
|
|
|
|
|
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>
|
2016-10-02 19:40:49 +02:00
|
|
|
Portions created by the Initial Developer are Copyright (C) 2008-2016
|
2012-10-23 12:00:03 +02:00
|
|
|
the Initial Developer. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
Contributor(s):
|
|
|
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
|
|
|
*/
|
2016-08-03 06:30:29 +02:00
|
|
|
|
|
|
|
|
//includes
|
|
|
|
|
require_once "root.php";
|
|
|
|
|
require_once "resources/require.php";
|
|
|
|
|
require_once "resources/check_auth.php";
|
|
|
|
|
|
|
|
|
|
//check permissions
|
|
|
|
|
if (permission_exists('destination_add') || permission_exists('destination_edit')) {
|
|
|
|
|
//access granted
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo "access denied";
|
|
|
|
|
exit;
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-08 01:38:12 +02:00
|
|
|
//add multi-lingual support
|
2015-01-18 11:06:08 +01:00
|
|
|
$language = new text;
|
|
|
|
|
$text = $language->get();
|
2013-05-08 01:38:12 +02:00
|
|
|
|
2012-06-04 16:58:40 +02:00
|
|
|
//action add or update
|
|
|
|
|
if (isset($_REQUEST["id"])) {
|
|
|
|
|
$action = "update";
|
|
|
|
|
$destination_uuid = check_str($_REQUEST["id"]);
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$action = "add";
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-22 09:17:04 +01:00
|
|
|
//get total destination count from the database, check limit, if defined
|
2015-03-31 00:57:12 +02:00
|
|
|
if (!permission_exists('destination_domain')) {
|
|
|
|
|
if ($action == 'add') {
|
|
|
|
|
if ($_SESSION['limit']['destinations']['numeric'] != '') {
|
|
|
|
|
$sql = "select count(*) as num_rows from v_destinations where domain_uuid = '".$_SESSION['domain_uuid']."' ";
|
|
|
|
|
$prep_statement = $db->prepare($sql);
|
|
|
|
|
if ($prep_statement) {
|
|
|
|
|
$prep_statement->execute();
|
|
|
|
|
$row = $prep_statement->fetch(PDO::FETCH_ASSOC);
|
|
|
|
|
$total_destinations = $row['num_rows'];
|
|
|
|
|
}
|
|
|
|
|
unset($prep_statement, $row);
|
|
|
|
|
if ($total_destinations >= $_SESSION['limit']['destinations']['numeric']) {
|
|
|
|
|
$_SESSION['message_mood'] = 'negative';
|
|
|
|
|
$_SESSION['message'] = $text['message-maximum_destinations'].' '.$_SESSION['limit']['destinations']['numeric'];
|
|
|
|
|
header('Location: destinations.php');
|
|
|
|
|
return;
|
|
|
|
|
}
|
2015-03-22 09:17:04 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-06-04 16:58:40 +02:00
|
|
|
//get http post variables and set them to php variables
|
2014-04-24 15:37:56 +02:00
|
|
|
if (count($_POST) > 0) {
|
2015-01-25 09:24:32 +01:00
|
|
|
//set the variables
|
|
|
|
|
$dialplan_uuid = check_str($_POST["dialplan_uuid"]);
|
2015-03-31 23:47:31 +02:00
|
|
|
$domain_uuid = check_str($_POST["domain_uuid"]);
|
2015-01-25 09:24:32 +01:00
|
|
|
$destination_type = check_str($_POST["destination_type"]);
|
|
|
|
|
$destination_number = check_str($_POST["destination_number"]);
|
|
|
|
|
$db_destination_number = check_str($_POST["db_destination_number"]);
|
|
|
|
|
$destination_caller_id_name = check_str($_POST["destination_caller_id_name"]);
|
|
|
|
|
$destination_caller_id_number = check_str($_POST["destination_caller_id_number"]);
|
|
|
|
|
$destination_cid_name_prefix = check_str($_POST["destination_cid_name_prefix"]);
|
|
|
|
|
$destination_context = check_str($_POST["destination_context"]);
|
|
|
|
|
$fax_uuid = check_str($_POST["fax_uuid"]);
|
|
|
|
|
$destination_enabled = check_str($_POST["destination_enabled"]);
|
|
|
|
|
$destination_description = check_str($_POST["destination_description"]);
|
|
|
|
|
$destination_sell = check_float($_POST["destination_sell"]);
|
|
|
|
|
$currency = check_str($_POST["currency"]);
|
|
|
|
|
$destination_buy = check_float($_POST["destination_buy"]);
|
|
|
|
|
$currency_buy = check_str($_POST["currency_buy"]);
|
|
|
|
|
$destination_accountcode = check_str($_POST["destination_accountcode"]);
|
|
|
|
|
$destination_carrier = check_str($_POST["destination_carrier"]);
|
2016-03-17 20:22:03 +01:00
|
|
|
//convert the number to a regular expression
|
|
|
|
|
$destination_number_regex = string_to_regex($destination_number);
|
|
|
|
|
$_POST["destination_number_regex"] = $destination_number_regex;
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
|
|
|
|
|
2014-06-09 21:41:34 +02:00
|
|
|
//unset the db_destination_number
|
|
|
|
|
unset($_POST["db_destination_number"]);
|
|
|
|
|
|
2016-08-03 06:30:29 +02:00
|
|
|
//process the http post
|
|
|
|
|
if (count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0) {
|
2016-08-03 08:06:36 +02:00
|
|
|
|
2016-08-03 06:30:29 +02:00
|
|
|
//get the uuid
|
2016-10-02 19:40:49 +02:00
|
|
|
if ($action == "update" && isset($_POST["destination_uuid"])) {
|
2016-08-03 06:30:29 +02:00
|
|
|
$destination_uuid = check_str($_POST["destination_uuid"]);
|
2014-05-24 19:32:32 +02:00
|
|
|
}
|
2016-10-02 19:40:49 +02:00
|
|
|
else {
|
|
|
|
|
$destination_uuid = uuid();
|
|
|
|
|
$_POST["destination_uuid"] = $destination_uuid;
|
|
|
|
|
}
|
2016-08-03 08:06:36 +02:00
|
|
|
|
2016-08-03 06:30:29 +02:00
|
|
|
//check for all required data
|
|
|
|
|
$msg = '';
|
|
|
|
|
if (strlen($destination_type) == 0) { $msg .= $text['message-required']." ".$text['label-destination_type']."<br>\n"; }
|
|
|
|
|
if (strlen($destination_number) == 0) { $msg .= $text['message-required']." ".$text['label-destination_number']."<br>\n"; }
|
|
|
|
|
if (strlen($destination_context) == 0) { $msg .= $text['message-required']." ".$text['label-destination_context']."<br>\n"; }
|
|
|
|
|
if (strlen($destination_enabled) == 0) { $msg .= $text['message-required']." ".$text['label-destination_enabled']."<br>\n"; }
|
2016-08-03 08:06:36 +02:00
|
|
|
|
2016-08-03 06:30:29 +02:00
|
|
|
//check for duplicates
|
2016-08-03 08:50:11 +02:00
|
|
|
if ($destination_type == 'inbound' && $destination_number != $db_destination_number) {
|
2016-08-03 06:30:29 +02:00
|
|
|
$sql = "select count(*) as num_rows from v_destinations ";
|
|
|
|
|
$sql .= "where destination_number = '".$destination_number."' ";
|
|
|
|
|
$prep_statement = $db->prepare($sql);
|
|
|
|
|
if ($prep_statement) {
|
|
|
|
|
$prep_statement->execute();
|
|
|
|
|
$row = $prep_statement->fetch(PDO::FETCH_ASSOC);
|
|
|
|
|
if ($row['num_rows'] > 0) {
|
|
|
|
|
$msg .= $text['message-duplicate']."<br>\n";
|
2014-09-04 03:19:02 +02:00
|
|
|
}
|
2016-08-03 06:30:29 +02:00
|
|
|
unset($prep_statement);
|
2014-09-04 03:19:02 +02:00
|
|
|
}
|
2016-08-03 06:30:29 +02:00
|
|
|
}
|
2016-08-03 08:06:36 +02:00
|
|
|
|
2016-08-03 06:30:29 +02:00
|
|
|
//show the message
|
|
|
|
|
if (strlen($msg) > 0 && strlen($_POST["persistformvar"]) == 0) {
|
|
|
|
|
require_once "resources/header.php";
|
|
|
|
|
require_once "resources/persist_form_var.php";
|
|
|
|
|
echo "<div align='center'>\n";
|
|
|
|
|
echo "<table><tr><td>\n";
|
|
|
|
|
echo $msg."<br />";
|
|
|
|
|
echo "</td></tr></table>\n";
|
|
|
|
|
persistformvar($_POST);
|
|
|
|
|
echo "</div>\n";
|
|
|
|
|
require_once "resources/footer.php";
|
|
|
|
|
return;
|
|
|
|
|
}
|
2016-08-03 08:06:36 +02:00
|
|
|
|
2016-10-02 19:40:49 +02:00
|
|
|
//determine whether save the dialplan
|
|
|
|
|
foreach ($_POST["dialplan_details"] as $row) {
|
|
|
|
|
if (strlen($row["dialplan_detail_data"]) > 0) {
|
|
|
|
|
$add_dialplan = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-08-03 08:06:36 +02:00
|
|
|
|
2016-10-02 19:40:49 +02:00
|
|
|
//get the array
|
|
|
|
|
$dialplan_details = $_POST["dialplan_details"];
|
2016-08-03 08:06:36 +02:00
|
|
|
|
2016-10-02 19:40:49 +02:00
|
|
|
//remove the array from the HTTP POST
|
|
|
|
|
unset($_POST["dialplan_details"]);
|
2016-08-03 08:06:36 +02:00
|
|
|
|
2016-10-02 19:40:49 +02:00
|
|
|
//array cleanup
|
|
|
|
|
foreach ($dialplan_details as $index => $row) {
|
|
|
|
|
//unset the empty row
|
|
|
|
|
if (strlen($row["dialplan_detail_data"]) == 0) {
|
|
|
|
|
unset($dialplan_details[$index]);
|
2016-08-03 06:30:29 +02:00
|
|
|
}
|
2016-10-02 19:40:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//if empty then get new uuid
|
|
|
|
|
if (strlen($dialplan_uuid) == 0) {
|
|
|
|
|
$dialplan_uuid = uuid();
|
|
|
|
|
}
|
2016-08-03 08:06:36 +02:00
|
|
|
|
2016-10-02 19:40:49 +02:00
|
|
|
//build the dialplan array
|
|
|
|
|
$dialplan["app_uuid"] = "c03b422e-13a8-bd1b-e42b-b6b9b4d27ce4";
|
|
|
|
|
$dialplan["dialplan_uuid"] = $dialplan_uuid;
|
|
|
|
|
$dialplan["domain_uuid"] = $domain_uuid;
|
|
|
|
|
$dialplan["dialplan_name"] = ($dialplan_name != '') ? $dialplan_name : format_phone($destination_number);
|
|
|
|
|
$dialplan["dialplan_number"] = $destination_number;
|
|
|
|
|
$dialplan["dialplan_context"] = $destination_context;
|
|
|
|
|
$dialplan["dialplan_continue"] = "false";
|
|
|
|
|
$dialplan["dialplan_order"] = "100";
|
|
|
|
|
$dialplan["dialplan_enabled"] = $destination_enabled;
|
|
|
|
|
$dialplan["dialplan_description"] = ($dialplan_description != '') ? $dialplan_description : $destination_description;
|
|
|
|
|
$dialplan_detail_order = 10;
|
|
|
|
|
|
|
|
|
|
//increment the dialplan detail order
|
|
|
|
|
$dialplan_detail_order = $dialplan_detail_order + 10;
|
|
|
|
|
|
|
|
|
|
//check the destination number
|
|
|
|
|
$dialplan["dialplan_details"][$y]["domain_uuid"] = $domain_uuid;
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_tag"] = "condition";
|
|
|
|
|
if (strlen($_SESSION['dialplan']['destination']['text']) > 0) {
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_type"] = $_SESSION['dialplan']['destination']['text'];
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_type"] = "destination_number";
|
|
|
|
|
}
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_data"] = $destination_number_regex;
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_order"] = $dialplan_detail_order;
|
|
|
|
|
$y++;
|
|
|
|
|
|
|
|
|
|
//increment the dialplan detail order
|
|
|
|
|
$dialplan_detail_order = $dialplan_detail_order + 10;
|
|
|
|
|
|
|
|
|
|
//set the caller id name prefix
|
|
|
|
|
if (strlen($destination_cid_name_prefix) > 0) {
|
|
|
|
|
$dialplan["dialplan_details"][$y]["domain_uuid"] = $domain_uuid;
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_tag"] = "action";
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_type"] = "set";
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_data"] = "effective_caller_id_name=".$destination_cid_name_prefix."#\${caller_id_name}";
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_order"] = $dialplan_detail_order;
|
|
|
|
|
$y++;
|
|
|
|
|
|
|
|
|
|
//increment the dialplan detail order
|
|
|
|
|
$dialplan_detail_order = $dialplan_detail_order + 10;
|
|
|
|
|
}
|
2016-08-03 08:06:36 +02:00
|
|
|
|
2016-10-02 19:40:49 +02:00
|
|
|
//set the call accountcode
|
|
|
|
|
if (strlen($destination_accountcode) > 0) {
|
|
|
|
|
$dialplan["dialplan_details"][$y]["domain_uuid"] = $domain_uuid;
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_tag"] = "action";
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_type"] = "set";
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_data"] = "accountcode=".$destination_accountcode;
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_order"] = $dialplan_detail_order;
|
|
|
|
|
$y++;
|
|
|
|
|
|
|
|
|
|
//increment the dialplan detail order
|
|
|
|
|
$dialplan_detail_order = $dialplan_detail_order + 10;
|
|
|
|
|
}
|
2016-08-03 08:06:36 +02:00
|
|
|
|
2016-10-02 19:40:49 +02:00
|
|
|
//set the call carrier
|
|
|
|
|
if (strlen($destination_carrier) > 0) {
|
|
|
|
|
$dialplan["dialplan_details"][$y]["domain_uuid"] = $domain_uuid;
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_tag"] = "action";
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_type"] = "set";
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_data"] = "carrier=$destination_carrier";
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_order"] = $dialplan_detail_order;
|
|
|
|
|
$y++;
|
|
|
|
|
|
|
|
|
|
//increment the dialplan detail order
|
|
|
|
|
$dialplan_detail_order = $dialplan_detail_order + 10;
|
|
|
|
|
}
|
2016-08-03 08:06:36 +02:00
|
|
|
|
2016-10-02 19:40:49 +02:00
|
|
|
//add fax detection
|
|
|
|
|
if (strlen($fax_uuid) > 0) {
|
|
|
|
|
//get the fax information
|
|
|
|
|
$sql = "select * from v_fax ";
|
|
|
|
|
$sql .= "where fax_uuid = '".$fax_uuid."' ";
|
|
|
|
|
if (!permission_exists('destination_domain')) {
|
|
|
|
|
$sql .= "and domain_uuid = '".$domain_uuid."' ";
|
2014-07-24 05:06:33 +02:00
|
|
|
}
|
2016-10-02 19:40:49 +02:00
|
|
|
$prep_statement = $db->prepare(check_sql($sql));
|
|
|
|
|
$prep_statement->execute();
|
|
|
|
|
$result = $prep_statement->fetchAll(PDO::FETCH_NAMED);
|
|
|
|
|
foreach ($result as &$row) {
|
|
|
|
|
$fax_extension = $row["fax_extension"];
|
|
|
|
|
$fax_destination_number = $row["fax_destination_number"];
|
|
|
|
|
$fax_name = $row["fax_name"];
|
|
|
|
|
$fax_email = $row["fax_email"];
|
|
|
|
|
$fax_pin_number = $row["fax_pin_number"];
|
|
|
|
|
$fax_caller_id_name = $row["fax_caller_id_name"];
|
|
|
|
|
$fax_caller_id_number = $row["fax_caller_id_number"];
|
|
|
|
|
$fax_forward_number = $row["fax_forward_number"];
|
|
|
|
|
$fax_description = $row["fax_description"];
|
2016-08-03 06:30:29 +02:00
|
|
|
}
|
2016-10-02 19:40:49 +02:00
|
|
|
unset ($prep_statement);
|
|
|
|
|
|
|
|
|
|
//delete previous fax detection settings
|
|
|
|
|
$sql = "delete from v_dialplan_details ";
|
|
|
|
|
$sql .= "where domain_uuid = '".$domain_uuid."' ";
|
|
|
|
|
$sql .= "and dialplan_uuid = '".$dialplan_uuid."' ";
|
|
|
|
|
$sql .= "and (";
|
|
|
|
|
$sql .= " dialplan_detail_data like '%tone_detect%' ";
|
|
|
|
|
$sql .= " or dialplan_detail_type = 'tone_detect' ";
|
|
|
|
|
$sql .= " or (dialplan_detail_type = 'sleep' and dialplan_detail_data = '3000') ";
|
|
|
|
|
$sql .= ")";
|
|
|
|
|
$db->exec($sql);
|
|
|
|
|
unset($sql);
|
|
|
|
|
|
|
|
|
|
//add set tone detect_hits=1
|
|
|
|
|
$dialplan["dialplan_details"][$y]["domain_uuid"] = $domain_uuid;
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_tag"] = "action";
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_type"] = "set";
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_data"] = "tone_detect_hits=1";
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_order"] = $dialplan_detail_order;
|
|
|
|
|
$y++;
|
|
|
|
|
|
|
|
|
|
//increment the dialplan detail order
|
|
|
|
|
$dialplan_detail_order = $dialplan_detail_order + 10;
|
|
|
|
|
|
|
|
|
|
// execute on tone detect
|
|
|
|
|
$dialplan["dialplan_details"][$y]["domain_uuid"] = $domain_uuid;
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_tag"] = "action";
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_type"] = "set";
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_data"] = "execute_on_tone_detect=transfer ".$fax_extension." XML \${domain_name}";
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_order"] = $dialplan_detail_order;
|
|
|
|
|
$y++;
|
|
|
|
|
|
|
|
|
|
//increment the dialplan detail order
|
|
|
|
|
$dialplan_detail_order = $dialplan_detail_order + 10;
|
|
|
|
|
|
|
|
|
|
//add tone_detect fax 1100 r +5000
|
|
|
|
|
$dialplan["dialplan_details"][$y]["domain_uuid"] = $domain_uuid;
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_tag"] = "action";
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_type"] = "tone_detect";
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_data"] = "fax 1100 r +5000";
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_order"] = $dialplan_detail_order;
|
|
|
|
|
$y++;
|
|
|
|
|
|
|
|
|
|
//increment the dialplan detail order
|
|
|
|
|
$dialplan_detail_order = $dialplan_detail_order + 10;
|
|
|
|
|
|
|
|
|
|
// execute on tone detect
|
|
|
|
|
$dialplan["dialplan_details"][$y]["domain_uuid"] = $domain_uuid;
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_tag"] = "action";
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_type"] = "sleep";
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_data"] = "3000";
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_order"] = $dialplan_detail_order;
|
|
|
|
|
$y++;
|
|
|
|
|
|
|
|
|
|
//increment the dialplan detail order
|
|
|
|
|
$dialplan_detail_order = $dialplan_detail_order + 10;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//add the actions
|
|
|
|
|
foreach ($dialplan_details as $row) {
|
|
|
|
|
if (strlen($row["dialplan_detail_data"]) > 1) {
|
|
|
|
|
$actions = explode(":", $row["dialplan_detail_data"]);
|
|
|
|
|
$dialplan_detail_type = array_shift($actions);
|
|
|
|
|
$dialplan_detail_data = join(':', $actions);
|
|
|
|
|
|
|
|
|
|
$dialplan["dialplan_details"][$y]["domain_uuid"] = $domain_uuid;
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_tag"] = "action";
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_type"] = $dialplan_detail_type;
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_data"] = $dialplan_detail_data;
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_order"] = $dialplan_detail_order;
|
|
|
|
|
$dialplan_detail_order = $dialplan_detail_order + 10;
|
|
|
|
|
$y++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//delete the previous details
|
|
|
|
|
if ($action == "update") {
|
|
|
|
|
$sql = "delete from v_dialplan_details ";
|
|
|
|
|
$sql .= "where dialplan_uuid = '".$dialplan_uuid."' ";
|
|
|
|
|
if (!permission_exists('destination_domain')) {
|
|
|
|
|
$sql .= "and domain_uuid = '".$domain_uuid."' ";
|
|
|
|
|
}
|
|
|
|
|
//echo $sql."<br><br>";
|
|
|
|
|
$db->exec(check_sql($sql));
|
|
|
|
|
unset($sql);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//remove empty dialplan details from the POST array
|
|
|
|
|
unset($_POST["dialplan_details"]);
|
|
|
|
|
|
|
|
|
|
//make sure the dialplan_uuid is set
|
|
|
|
|
if(strlen($_POST["dialplan_uuid"]) == 0) {
|
|
|
|
|
$_POST["dialplan_uuid"] = $dialplan_uuid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//prepare the array
|
|
|
|
|
$array['destinations'][] = $_POST;
|
|
|
|
|
$array['dialplans'][] = $dialplan;
|
|
|
|
|
unset($dialplan);
|
|
|
|
|
|
|
|
|
|
//add the dialplan permission
|
|
|
|
|
$p = new permissions;
|
|
|
|
|
$p->add("dialplan_add", 'temp');
|
|
|
|
|
$p->add("dialplan_detail_add", 'temp');
|
|
|
|
|
$p->add("dialplan_edit", 'temp');
|
|
|
|
|
$p->add("dialplan_detail_edit", 'temp');
|
|
|
|
|
|
|
|
|
|
//save the dialplan
|
2016-10-18 17:33:35 +02:00
|
|
|
$database = new database;
|
|
|
|
|
$database->app_name = 'dialplans';
|
|
|
|
|
$database->app_uuid = '5ec89622-b19c-3559-64f0-afde802ab139';
|
2016-10-02 19:40:49 +02:00
|
|
|
if (isset($dialplan["dialplan_uuid"])) {
|
2016-10-18 17:33:35 +02:00
|
|
|
$database->uuid($dialplan["dialplan_uuid"]);
|
2016-10-02 19:40:49 +02:00
|
|
|
}
|
2016-10-18 17:33:35 +02:00
|
|
|
$database->save($array);
|
|
|
|
|
$dialplan_response = $database->message;
|
2016-10-02 19:40:49 +02:00
|
|
|
|
|
|
|
|
//remove the temporary permission
|
|
|
|
|
$p->delete("dialplan_add", 'temp');
|
|
|
|
|
$p->delete("dialplan_detail_add", 'temp');
|
|
|
|
|
$p->delete("dialplan_edit", 'temp');
|
|
|
|
|
$p->delete("dialplan_detail_edit", 'temp');
|
|
|
|
|
|
|
|
|
|
//update the dialplan xml
|
|
|
|
|
$dialplans = new dialplan;
|
|
|
|
|
$dialplans->source = "details";
|
|
|
|
|
$dialplans->destination = "database";
|
|
|
|
|
$dialplans->uuid = $dialplan_uuid;
|
|
|
|
|
$dialplans->xml();
|
|
|
|
|
|
|
|
|
|
//synchronize the xml config
|
|
|
|
|
save_dialplan_xml();
|
|
|
|
|
|
|
|
|
|
//clear the cache
|
|
|
|
|
$cache = new cache;
|
|
|
|
|
$cache->delete("dialplan:".$destination_context);
|
|
|
|
|
|
|
|
|
|
//redirect the user
|
|
|
|
|
if ($action == "add") {
|
|
|
|
|
$_SESSION["message"] = $text['message-add'];
|
|
|
|
|
}
|
|
|
|
|
if ($action == "update") {
|
|
|
|
|
$_SESSION["message"] = $text['message-update'];
|
|
|
|
|
}
|
|
|
|
|
header("Location: destination_edit.php?id=".$destination_uuid);
|
|
|
|
|
return;
|
2016-08-03 08:06:36 +02:00
|
|
|
|
2016-08-03 06:30:29 +02:00
|
|
|
} //(count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0)
|
2012-06-04 16:58:40 +02:00
|
|
|
|
2015-08-07 20:13:55 +02:00
|
|
|
//initialize the destinations object
|
|
|
|
|
$destination = new destinations;
|
|
|
|
|
|
2012-06-04 16:58:40 +02:00
|
|
|
//pre-populate the form
|
2014-04-24 11:16:25 +02:00
|
|
|
if (count($_GET) > 0 && $_POST["persistformvar"] != "true") {
|
2016-08-03 09:04:26 +02:00
|
|
|
if (is_uuid($_GET["id"])) {
|
|
|
|
|
$destination_uuid = $_GET["id"];
|
|
|
|
|
$sql = "select * from v_destinations ";
|
|
|
|
|
$sql .= "where (domain_uuid = '".$domain_uuid."' or domain_uuid is null) ";
|
|
|
|
|
$sql .= "and destination_uuid = '".$destination_uuid."' ";
|
|
|
|
|
$prep_statement = $db->prepare(check_sql($sql));
|
|
|
|
|
$prep_statement->execute();
|
|
|
|
|
$result = $prep_statement->fetchAll(PDO::FETCH_NAMED);
|
|
|
|
|
}
|
|
|
|
|
if (is_array($result)) {
|
|
|
|
|
foreach ($result as &$row) {
|
|
|
|
|
$domain_uuid = $row["domain_uuid"];
|
|
|
|
|
$dialplan_uuid = $row["dialplan_uuid"];
|
|
|
|
|
$destination_type = $row["destination_type"];
|
|
|
|
|
$destination_number = $row["destination_number"];
|
|
|
|
|
$destination_caller_id_name = $row["destination_caller_id_name"];
|
|
|
|
|
$destination_caller_id_number = $row["destination_caller_id_number"];
|
|
|
|
|
$destination_cid_name_prefix = $row["destination_cid_name_prefix"];
|
|
|
|
|
$destination_context = $row["destination_context"];
|
|
|
|
|
$fax_uuid = $row["fax_uuid"];
|
|
|
|
|
$destination_enabled = $row["destination_enabled"];
|
|
|
|
|
$destination_description = $row["destination_description"];
|
|
|
|
|
$currency = $row["currency"];
|
|
|
|
|
$destination_sell = $row["destination_sell"];
|
|
|
|
|
$destination_buy = $row["destination_buy"];
|
|
|
|
|
$currency_buy = $row["currency_buy"];
|
|
|
|
|
$destination_accountcode = $row["destination_accountcode"];
|
|
|
|
|
$destination_carrier = $row["destination_carrier"];
|
|
|
|
|
}
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-24 11:16:25 +02:00
|
|
|
//get the dialplan details in an array
|
|
|
|
|
$sql = "select * from v_dialplan_details ";
|
2016-08-03 09:04:26 +02:00
|
|
|
$sql .= "where (domain_uuid = '".$domain_uuid."' or domain_uuid is null) ";
|
2014-04-24 11:16:25 +02:00
|
|
|
$sql .= "and dialplan_uuid = '".$dialplan_uuid."' ";
|
|
|
|
|
$sql .= "order by dialplan_detail_group asc, dialplan_detail_order asc";
|
|
|
|
|
$prep_statement = $db->prepare(check_sql($sql));
|
|
|
|
|
$prep_statement->execute();
|
2016-08-03 09:04:26 +02:00
|
|
|
$dialplan_details = $prep_statement->fetchAll(PDO::FETCH_NAMED);
|
2014-04-24 11:16:25 +02:00
|
|
|
unset ($prep_statement, $sql);
|
|
|
|
|
|
|
|
|
|
//add an empty row to the array
|
|
|
|
|
$x = count($dialplan_details);
|
|
|
|
|
$limit = $x + 1;
|
|
|
|
|
while($x < $limit) {
|
2015-01-25 09:24:32 +01:00
|
|
|
$dialplan_details[$x]['domain_uuid'] = $domain_uuid;
|
2014-04-24 11:16:25 +02:00
|
|
|
$dialplan_details[$x]['dialplan_uuid'] = $dialplan_uuid;
|
|
|
|
|
$dialplan_details[$x]['dialplan_detail_type'] = '';
|
|
|
|
|
$dialplan_details[$x]['dialplan_detail_data'] = '';
|
|
|
|
|
$dialplan_details[$x]['dialplan_detail_order'] = '';
|
|
|
|
|
$x++;
|
|
|
|
|
}
|
|
|
|
|
unset($limit);
|
|
|
|
|
|
2016-08-03 08:06:36 +02:00
|
|
|
//remove previous fax details
|
|
|
|
|
$x=0;
|
|
|
|
|
foreach($dialplan_details as $row) {
|
|
|
|
|
if ($row['dialplan_detail_data'] == "tone_detect_hits=1") {
|
|
|
|
|
unset($dialplan_details[$x]);
|
|
|
|
|
}
|
|
|
|
|
if ($row['dialplan_detail_type'] == "tone_detect") {
|
|
|
|
|
unset($dialplan_details[$x]);
|
|
|
|
|
}
|
|
|
|
|
if ($row['dialplan_detail_type'] == "sleep") {
|
|
|
|
|
unset($dialplan_details[$x]);
|
|
|
|
|
}
|
|
|
|
|
if (substr($dialplan_detail_data,0,22) == "execute_on_tone_detect") {
|
|
|
|
|
unset($dialplan_details[$x]);
|
|
|
|
|
}
|
|
|
|
|
//increment the row id
|
|
|
|
|
$x++;
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-23 12:00:03 +02:00
|
|
|
//set the defaults
|
|
|
|
|
if (strlen($destination_type) == 0) { $destination_type = 'inbound'; }
|
|
|
|
|
if (strlen($destination_context) == 0) { $destination_context = 'public'; }
|
|
|
|
|
|
2012-06-04 16:58:40 +02:00
|
|
|
//show the header
|
2013-07-06 08:29:50 +02:00
|
|
|
require_once "resources/header.php";
|
2013-05-08 01:38:12 +02:00
|
|
|
if ($action == "update") {
|
2014-07-10 02:32:50 +02:00
|
|
|
$document['title'] = $text['title-destination-edit'];
|
2013-05-08 01:38:12 +02:00
|
|
|
}
|
|
|
|
|
else if ($action == "add") {
|
2014-07-10 02:32:50 +02:00
|
|
|
$document['title'] = $text['title-destination-add'];
|
2013-05-08 01:38:12 +02:00
|
|
|
}
|
|
|
|
|
|
2015-08-15 02:23:49 +02:00
|
|
|
//js controls
|
|
|
|
|
echo "<script type='text/javascript'>\n";
|
|
|
|
|
echo " function type_control(dir) {\n";
|
|
|
|
|
echo " if (dir == 'outbound') {\n";
|
|
|
|
|
echo " if (document.getElementById('tr_caller_id_name')) { document.getElementById('tr_caller_id_name').style.display = 'none'; }\n";
|
|
|
|
|
echo " if (document.getElementById('tr_caller_id_number')) { document.getElementById('tr_caller_id_number').style.display = 'none'; }\n";
|
|
|
|
|
echo " document.getElementById('tr_actions').style.display = 'none';\n";
|
2015-11-09 12:49:09 +01:00
|
|
|
echo " if (document.getElementById('tr_fax_detection')) { document.getElementById('tr_fax_detection').style.display = 'none'; }\n";
|
2015-08-15 02:23:49 +02:00
|
|
|
echo " document.getElementById('tr_cid_name_prefix').style.display = 'none';\n";
|
|
|
|
|
echo " if (document.getElementById('tr_sell')) { document.getElementById('tr_sell').style.display = 'none'; }\n";
|
|
|
|
|
echo " if (document.getElementById('tr_buy')) { document.getElementById('tr_buy').style.display = 'none'; }\n";
|
|
|
|
|
echo " if (document.getElementById('tr_carrier')) { document.getElementById('tr_carrier').style.display = 'none'; }\n";
|
2015-08-15 18:41:34 +02:00
|
|
|
echo " document.getElementById('tr_account_code').style.display = 'none';\n";
|
2015-08-15 02:23:49 +02:00
|
|
|
echo " document.getElementById('destination_context').value = '".$_SESSION['domain_name']."'";
|
|
|
|
|
echo " }\n";
|
|
|
|
|
echo " else if (dir == 'inbound') {\n";
|
|
|
|
|
echo " if (document.getElementById('tr_caller_id_name')) { document.getElementById('tr_caller_id_name').style.display = ''; }\n";
|
|
|
|
|
echo " if (document.getElementById('tr_caller_id_number')) { document.getElementById('tr_caller_id_number').style.display = ''; }\n";
|
|
|
|
|
echo " document.getElementById('tr_actions').style.display = '';\n";
|
2015-11-09 12:47:15 +01:00
|
|
|
echo " if (document.getElementById('tr_fax_detection')) { document.getElementById('tr_fax_detection').style.display = ''; }\n";
|
2015-08-15 02:23:49 +02:00
|
|
|
echo " document.getElementById('tr_cid_name_prefix').style.display = '';\n";
|
|
|
|
|
echo " if (document.getElementById('tr_sell')) { document.getElementById('tr_sell').style.display = ''; }\n";
|
|
|
|
|
echo " if (document.getElementById('tr_buy')) { document.getElementById('tr_buy').style.display = ''; }\n";
|
|
|
|
|
echo " if (document.getElementById('tr_carrier')) { document.getElementById('tr_carrier').style.display = ''; }\n";
|
2015-08-15 18:41:34 +02:00
|
|
|
echo " document.getElementById('tr_account_code').style.display = '';\n";
|
2015-08-15 02:23:49 +02:00
|
|
|
echo " document.getElementById('destination_context').value = 'public'";
|
|
|
|
|
echo " }\n";
|
|
|
|
|
echo " ";
|
|
|
|
|
echo " }\n";
|
|
|
|
|
echo " \n";
|
|
|
|
|
echo " function context_control() {\n";
|
|
|
|
|
echo " destination_type = document.getElementById('destination_type');\n";
|
|
|
|
|
echo" destination_domain = document.getElementById('destination_domain');\n";
|
|
|
|
|
echo " if (destination_type.options[destination_type.selectedIndex].value == 'outbound') {\n";
|
|
|
|
|
echo " if (destination_domain.options[destination_domain.selectedIndex].value != '') {\n";
|
|
|
|
|
echo " document.getElementById('destination_context').value = destination_domain.options[destination_domain.selectedIndex].innerHTML;\n";
|
|
|
|
|
echo " }\n";
|
|
|
|
|
echo " else {\n";
|
|
|
|
|
echo " document.getElementById('destination_context').value = '\${domain_name}';\n";
|
|
|
|
|
echo " }\n";
|
|
|
|
|
echo " }\n";
|
|
|
|
|
echo " }\n";
|
|
|
|
|
echo "</script>\n";
|
|
|
|
|
|
2012-06-04 16:58:40 +02:00
|
|
|
//show the content
|
|
|
|
|
echo "<form method='post' name='frm' action=''>\n";
|
2015-02-15 08:59:02 +01:00
|
|
|
echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "<tr>\n";
|
2013-05-08 01:38:12 +02:00
|
|
|
if ($action == "add") {
|
2015-03-22 01:53:56 +01:00
|
|
|
echo "<td align='left' width='30%' nowrap='nowrap' valign='top'><b>".$text['header-destination-add']."</b></td>\n";
|
2013-05-08 01:38:12 +02:00
|
|
|
}
|
|
|
|
|
if ($action == "update") {
|
2015-03-22 01:53:56 +01:00
|
|
|
echo "<td align='left' width='30%' nowrap='nowrap' valign='top'><b>".$text['header-destination-edit']."</b></td>\n";
|
2013-05-08 01:38:12 +02:00
|
|
|
}
|
2015-03-22 01:53:56 +01:00
|
|
|
echo "<td width='70%' align='right' valign='top'>";
|
2015-03-31 00:57:12 +02:00
|
|
|
echo " <input type='button' class='btn' alt='".$text['button-back']."' onclick=\"window.location='destinations.php'\" value='".$text['button-back']."'>";
|
2014-04-27 00:50:52 +02:00
|
|
|
echo " <input type='submit' class='btn' value='".$text['button-save']."'>\n";
|
|
|
|
|
echo "</td>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</tr>\n";
|
|
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo "<td align='left' colspan='2'>\n";
|
2013-05-08 01:38:12 +02:00
|
|
|
echo $text['description-destinations']."<br /><br />\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
|
|
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
|
2015-02-15 07:50:00 +01:00
|
|
|
echo " ".$text['label-destination_type']."\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<td class='vtable' align='left'>\n";
|
2015-08-15 02:23:49 +02:00
|
|
|
echo " <select class='formfld' name='destination_type' id='destination_type' onchange='type_control(this.options[this.selectedIndex].value);'>\n";
|
2013-05-08 01:38:12 +02:00
|
|
|
switch ($destination_type) {
|
|
|
|
|
case "inbound" : $selected[1] = "selected='selected'"; break;
|
|
|
|
|
case "outbound" : $selected[2] = "selected='selected'"; break;
|
2012-10-23 12:00:03 +02:00
|
|
|
}
|
2013-05-08 01:38:12 +02:00
|
|
|
echo " <option value='inbound' ".$selected[1].">".$text['option-type_inbound']."</option>\n";
|
|
|
|
|
echo " <option value='outbound' ".$selected[2].">".$text['option-type_outbound']."</option>\n";
|
|
|
|
|
unset($selected);
|
2012-10-23 12:00:03 +02:00
|
|
|
echo " </select>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "<br />\n";
|
2013-05-08 01:38:12 +02:00
|
|
|
echo $text['description-destination_type']."\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
|
|
|
|
|
echo "<tr>\n";
|
2014-06-21 02:58:16 +02:00
|
|
|
echo "<td class='vncellreq' valign='top' align='left' nowrap='nowrap'>\n";
|
2015-02-15 07:50:00 +01:00
|
|
|
echo " ".$text['label-destination_number']."\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<td class='vtable' align='left'>\n";
|
2014-12-21 07:18:18 +01:00
|
|
|
echo " <input class='formfld' type='text' name='destination_number' maxlength='255' value=\"$destination_number\" required='required'>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "<br />\n";
|
2013-05-08 01:38:12 +02:00
|
|
|
echo $text['description-destination_number']."\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
|
2013-11-06 16:50:57 +01:00
|
|
|
if (permission_exists('outbound_caller_id_select')) {
|
2015-08-15 02:23:49 +02:00
|
|
|
echo "<tr id='tr_caller_id_name'>\n";
|
2013-11-06 16:50:57 +01:00
|
|
|
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
|
2015-02-15 07:50:00 +01:00
|
|
|
echo " ".$text['label-destination_caller_id_name']."\n";
|
2013-11-06 16:50:57 +01:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<td class='vtable' align='left'>\n";
|
|
|
|
|
echo " <input class='formfld' type='text' name='destination_caller_id_name' maxlength='255' value=\"$destination_caller_id_name\">\n";
|
|
|
|
|
echo "<br />\n";
|
|
|
|
|
echo $text['description-destination_caller_id_name']."\n";
|
|
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
2012-10-23 12:00:03 +02:00
|
|
|
|
2015-08-15 02:23:49 +02:00
|
|
|
echo "<tr id='tr_caller_id_number'>\n";
|
2013-11-06 16:50:57 +01:00
|
|
|
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
|
2015-02-15 07:50:00 +01:00
|
|
|
echo " ".$text['label-destination_caller_id_number']."\n";
|
2013-11-06 16:50:57 +01:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<td class='vtable' align='left'>\n";
|
2014-12-21 07:18:18 +01:00
|
|
|
echo " <input class='formfld' type='number' name='destination_caller_id_number' maxlength='255' min='0' step='1' value=\"$destination_caller_id_number\">\n";
|
2013-11-06 16:50:57 +01:00
|
|
|
echo "<br />\n";
|
|
|
|
|
echo $text['description-destination_caller_id_number']."\n";
|
|
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
}
|
2012-10-23 12:00:03 +02:00
|
|
|
|
|
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
|
2015-02-15 07:50:00 +01:00
|
|
|
echo " ".$text['label-destination_context']."\n";
|
2012-10-23 12:00:03 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<td class='vtable' align='left'>\n";
|
2015-08-15 02:23:49 +02:00
|
|
|
echo " <input class='formfld' type='text' name='destination_context' id='destination_context' maxlength='255' value=\"$destination_context\">\n";
|
2012-10-23 12:00:03 +02:00
|
|
|
echo "<br />\n";
|
2013-05-08 01:38:12 +02:00
|
|
|
echo $text['description-destination_context']."\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
|
2015-08-15 02:23:49 +02:00
|
|
|
echo "<tr id='tr_actions'>\n";
|
2014-04-24 11:16:25 +02:00
|
|
|
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
|
2015-02-15 07:50:00 +01:00
|
|
|
echo " ".$text['label-detail_action']."\n";
|
2014-04-24 11:16:25 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<td class='vtable' align='left'>\n";
|
|
|
|
|
|
|
|
|
|
echo " <table width='52%' border='0' cellpadding='2' cellspacing='0'>\n";
|
|
|
|
|
$x = 0;
|
2014-08-02 12:39:49 +02:00
|
|
|
$order = 10;
|
2014-04-24 11:16:25 +02:00
|
|
|
foreach($dialplan_details as $row) {
|
2014-12-10 05:43:27 +01:00
|
|
|
if ($row["dialplan_detail_tag"] != "condition") {
|
2015-03-24 00:57:27 +01:00
|
|
|
if ($row["dialplan_detail_tag"] == "action" && $row["dialplan_detail_type"] == "set" && strpos($row["dialplan_detail_data"], "accountcode") == 0) { continue; } //exclude set:accountcode actions
|
2014-08-03 08:43:49 +02:00
|
|
|
echo " <tr>\n";
|
2015-11-20 06:42:33 +01:00
|
|
|
echo " <td style='padding-top: 5px; padding-right: 3px; white-space: nowrap;'>\n";
|
2014-08-02 12:39:49 +02:00
|
|
|
if (strlen($row['dialplan_detail_uuid']) > 0) {
|
|
|
|
|
echo " <input name='dialplan_details[".$x."][dialplan_detail_uuid]' type='hidden' value=\"".$row['dialplan_detail_uuid']."\">\n";
|
|
|
|
|
}
|
|
|
|
|
echo " <input name='dialplan_details[".$x."][dialplan_detail_type]' type='hidden' value=\"".$row['dialplan_detail_type']."\">\n";
|
|
|
|
|
echo " <input name='dialplan_details[".$x."][dialplan_detail_order]' type='hidden' value=\"".$order."\">\n";
|
|
|
|
|
|
|
|
|
|
$data = $row['dialplan_detail_data'];
|
|
|
|
|
$label = explode("XML", $data);
|
2014-08-03 08:43:49 +02:00
|
|
|
$divider = ($row['dialplan_detail_type'] != '') ? ":" : null;
|
|
|
|
|
$detail_action = $row['dialplan_detail_type'].$divider.$row['dialplan_detail_data'];
|
2015-08-07 20:39:25 +02:00
|
|
|
echo $destination->select('dialplan', 'dialplan_details['.$x.'][dialplan_detail_data]', $detail_action);
|
2014-08-02 12:39:49 +02:00
|
|
|
echo " </td>\n";
|
|
|
|
|
echo " <td class='list_control_icons' style='width: 25px;'>";
|
|
|
|
|
if (strlen($row['destination_uuid']) > 0) {
|
2016-08-03 06:30:29 +02:00
|
|
|
echo "<a href='destination_delete.php?id=".$row['destination_uuid']."&destination_uuid=".$row['destination_uuid']."&a=delete' alt='delete' onclick=\"return confirm('".$text['confirm-delete']."')\">".$v_link_label_delete."</a>\n";
|
2014-08-02 12:39:49 +02:00
|
|
|
}
|
|
|
|
|
echo " </td>\n";
|
|
|
|
|
echo " </tr>\n";
|
2014-04-24 11:16:25 +02:00
|
|
|
}
|
2014-08-02 12:39:49 +02:00
|
|
|
$order = $order + 10;
|
2014-04-24 11:16:25 +02:00
|
|
|
$x++;
|
|
|
|
|
}
|
|
|
|
|
echo " </table>\n";
|
|
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
|
2016-01-17 08:01:13 +01:00
|
|
|
if (file_exists($_SERVER["PROJECT_ROOT"]."/app/fax/app_config.php")){
|
2014-12-17 12:33:31 +01:00
|
|
|
$sql = "select * from v_fax ";
|
2015-01-25 09:24:32 +01:00
|
|
|
$sql .= "where domain_uuid = '".$domain_uuid."' ";
|
2014-12-17 12:33:31 +01:00
|
|
|
$sql .= "order by fax_name asc ";
|
|
|
|
|
$prep_statement = $db->prepare(check_sql($sql));
|
|
|
|
|
$prep_statement->execute();
|
|
|
|
|
$result = $prep_statement->fetchAll(PDO::FETCH_ASSOC);
|
2015-08-15 02:23:49 +02:00
|
|
|
unset ($prep_statement, $extension);
|
|
|
|
|
if (is_array($result) && sizeof($result) > 0) {
|
|
|
|
|
echo "<tr id='tr_fax_detection'>\n";
|
|
|
|
|
echo "<td class='vncell' valign='top' align='left' nowrap>\n";
|
|
|
|
|
echo " ".$text['label-fax_uuid']."\n";
|
|
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<td class='vtable' align='left'>\n";
|
|
|
|
|
echo " <select name='fax_uuid' id='fax_uuid' class='formfld' style='".$select_style."'>\n";
|
|
|
|
|
echo " <option value=''></option>\n";
|
|
|
|
|
foreach ($result as &$row) {
|
|
|
|
|
if ($row["fax_uuid"] == $fax_uuid) {
|
|
|
|
|
echo " <option value='".$row["fax_uuid"]."' selected='selected'>".$row["fax_extension"]." ".$row["fax_name"]."</option>\n";
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo " <option value='".$row["fax_uuid"]."'>".$row["fax_extension"]." ".$row["fax_name"]."</option>\n";
|
|
|
|
|
}
|
2014-12-17 12:33:31 +01:00
|
|
|
}
|
2015-08-15 02:23:49 +02:00
|
|
|
echo " </select>\n";
|
|
|
|
|
echo " <br />\n";
|
|
|
|
|
echo " ".$text['description-fax_uuid']."\n";
|
|
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
2012-11-13 03:18:57 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-15 02:23:49 +02:00
|
|
|
echo "<tr id='tr_cid_name_prefix'>\n";
|
2014-08-02 08:09:55 +02:00
|
|
|
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
|
2015-02-15 07:50:00 +01:00
|
|
|
echo " ".$text['label-destination_cid_name_prefix']."\n";
|
2014-08-02 08:09:55 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<td class='vtable' align='left'>\n";
|
|
|
|
|
echo " <input class='formfld' type='text' name='destination_cid_name_prefix' maxlength='255' value=\"$destination_cid_name_prefix\">\n";
|
|
|
|
|
echo "<br />\n";
|
|
|
|
|
echo $text['description-destination_cid_name_prefix']."\n";
|
|
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
|
2015-08-15 18:41:34 +02:00
|
|
|
echo "<tr id='tr_account_code'>\n";
|
2014-07-14 00:29:25 +02:00
|
|
|
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
|
2015-02-15 07:50:00 +01:00
|
|
|
echo " ".$text['label-account_code']."\n";
|
2014-07-14 00:29:25 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<td class='vtable' align='left'>\n";
|
|
|
|
|
echo " <input class='formfld' type='text' name='destination_accountcode' maxlength='255' value=\"$destination_accountcode\">\n";
|
|
|
|
|
echo "<br />\n";
|
2015-02-15 01:33:56 +01:00
|
|
|
echo $text['description-account_code']."\n";
|
2014-07-14 00:29:25 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
|
2015-01-25 09:24:32 +01:00
|
|
|
if (permission_exists('destination_domain')) {
|
|
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
|
2015-02-15 07:50:00 +01:00
|
|
|
echo " ".$text['label-domain']."\n";
|
2015-01-25 09:24:32 +01:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<td class='vtable' align='left'>\n";
|
2015-08-15 02:23:49 +02:00
|
|
|
echo " <select class='formfld' name='domain_uuid' id='destination_domain' onchange='context_control();'>\n";
|
2015-01-25 09:24:32 +01:00
|
|
|
if (strlen($domain_uuid) == 0) {
|
|
|
|
|
echo " <option value='' selected='selected'>".$text['select-global']."</option>\n";
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo " <option value=''>".$text['select-global']."</option>\n";
|
|
|
|
|
}
|
|
|
|
|
foreach ($_SESSION['domains'] as $row) {
|
|
|
|
|
if ($row['domain_uuid'] == $domain_uuid) {
|
|
|
|
|
echo " <option value='".$row['domain_uuid']."' selected='selected'>".$row['domain_name']."</option>\n";
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo " <option value='".$row['domain_uuid']."'>".$row['domain_name']."</option>\n";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
echo " </select>\n";
|
|
|
|
|
echo "<br />\n";
|
|
|
|
|
echo $text['description-domain_name']."\n";
|
|
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
}
|
2015-03-31 23:47:31 +02:00
|
|
|
else {
|
|
|
|
|
echo "<input type='hidden' name='domain_uuid' value='".$domain_uuid."'>\n";
|
|
|
|
|
}
|
2015-01-25 09:24:32 +01:00
|
|
|
|
2014-07-15 08:19:19 +02:00
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
|
2015-02-15 07:50:00 +01:00
|
|
|
echo " ".$text['label-destination_enabled']."\n";
|
2014-07-15 08:19:19 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<td class='vtable' align='left'>\n";
|
|
|
|
|
echo " <select class='formfld' name='destination_enabled'>\n";
|
|
|
|
|
switch ($destination_enabled) {
|
|
|
|
|
case "true" : $selected[1] = "selected='selected'"; break;
|
|
|
|
|
case "false" : $selected[2] = "selected='selected'"; break;
|
|
|
|
|
}
|
|
|
|
|
echo " <option value='true' ".$selected[1].">".$text['label-true']."</option>\n";
|
|
|
|
|
echo " <option value='false' ".$selected[2].">".$text['label-false']."</option>\n";
|
|
|
|
|
unset($selected);
|
|
|
|
|
echo " </select>\n";
|
|
|
|
|
echo "<br />\n";
|
|
|
|
|
echo $text['description-destination_enabled']."\n";
|
|
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
|
2015-02-15 07:50:00 +01:00
|
|
|
echo " ".$text['label-destination_description']."\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<td class='vtable' align='left'>\n";
|
|
|
|
|
echo " <input class='formfld' type='text' name='destination_description' maxlength='255' value=\"$destination_description\">\n";
|
|
|
|
|
echo "<br />\n";
|
2013-05-08 01:38:12 +02:00
|
|
|
echo $text['description-destination_description']."\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
echo " <tr>\n";
|
|
|
|
|
echo " <td colspan='2' align='right'>\n";
|
|
|
|
|
if ($action == "update") {
|
2015-02-15 08:59:02 +01:00
|
|
|
echo " <input type='hidden' name='db_destination_number' value='$destination_number'>\n";
|
|
|
|
|
echo " <input type='hidden' name='dialplan_uuid' value='$dialplan_uuid'>\n";
|
|
|
|
|
echo " <input type='hidden' name='destination_uuid' value='$destination_uuid'>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
2015-02-15 10:20:19 +01:00
|
|
|
echo " <br>";
|
2015-02-15 08:59:02 +01:00
|
|
|
echo " <input type='submit' class='btn' value='".$text['button-save']."'>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo " </td>\n";
|
|
|
|
|
echo " </tr>";
|
|
|
|
|
echo "</table>";
|
2015-02-15 08:59:02 +01:00
|
|
|
echo "<br><br>";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</form>";
|
|
|
|
|
|
2015-08-15 17:07:01 +02:00
|
|
|
//adjust form if outbound destination
|
|
|
|
|
if ($destination_type == 'outbound') {
|
|
|
|
|
echo "<script type='text/javascript'>type_control('outbound');</script>\n";
|
|
|
|
|
}
|
|
|
|
|
|
2012-06-04 16:58:40 +02:00
|
|
|
//include the footer
|
2013-07-06 08:29:50 +02:00
|
|
|
require_once "resources/footer.php";
|
2014-08-02 12:39:49 +02:00
|
|
|
|
2016-08-03 06:30:29 +02:00
|
|
|
?>
|