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>
|
2014-04-24 11:16:25 +02:00
|
|
|
Portions created by the Initial Developer are Copyright (C) 2013-2014
|
2012-10-23 12:00:03 +02:00
|
|
|
the Initial Developer. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
Contributor(s):
|
|
|
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
|
|
|
*/
|
2012-06-04 16:58:40 +02:00
|
|
|
require_once "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-08 01:38:12 +02:00
|
|
|
if (permission_exists('destination_add') || permission_exists('destination_edit')) {
|
2012-06-04 16:58:40 +02:00
|
|
|
//access granted
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo "access denied";
|
|
|
|
|
exit;
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-08 01:38:12 +02:00
|
|
|
//add multi-lingual support
|
|
|
|
|
require_once "app_languages.php";
|
|
|
|
|
foreach($text as $key => $value) {
|
|
|
|
|
$text[$key] = $value[$_SESSION['domain']['language']['code']];
|
|
|
|
|
}
|
|
|
|
|
|
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";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//get http post variables and set them to php variables
|
2014-04-24 15:37:56 +02:00
|
|
|
if (count($_POST) > 0) {
|
2012-10-23 12:00:03 +02:00
|
|
|
$dialplan_uuid = check_str($_POST["dialplan_uuid"]);
|
|
|
|
|
$destination_type = check_str($_POST["destination_type"]);
|
|
|
|
|
$destination_number = check_str($_POST["destination_number"]);
|
2014-06-09 21:41:34 +02:00
|
|
|
$db_destination_number = check_str($_POST["db_destination_number"]);
|
2012-10-23 12:00:03 +02:00
|
|
|
$destination_caller_id_name = check_str($_POST["destination_caller_id_name"]);
|
|
|
|
|
$destination_caller_id_number = check_str($_POST["destination_caller_id_number"]);
|
2012-06-04 16:58:40 +02:00
|
|
|
$destination_context = check_str($_POST["destination_context"]);
|
2012-11-13 03:18:57 +01:00
|
|
|
$fax_uuid = check_str($_POST["fax_uuid"]);
|
2012-06-04 16:58:40 +02:00
|
|
|
$destination_enabled = check_str($_POST["destination_enabled"]);
|
|
|
|
|
$destination_description = check_str($_POST["destination_description"]);
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-09 21:41:34 +02:00
|
|
|
//unset the db_destination_number
|
|
|
|
|
unset($_POST["db_destination_number"]);
|
|
|
|
|
|
2014-04-24 15:37:56 +02:00
|
|
|
if (count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0) {
|
2012-06-04 16:58:40 +02:00
|
|
|
|
2014-05-24 20:59:37 +02:00
|
|
|
//get the uuid
|
|
|
|
|
if ($action == "update") {
|
|
|
|
|
$destination_uuid = check_str($_POST["destination_uuid"]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//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_caller_id_name) == 0) { $msg .= $text['message-required']." ".$text['label-destination_caller_id_name']."<br>\n"; }
|
|
|
|
|
//if (strlen($destination_caller_id_number) == 0) { $msg .= $text['message-required']." ".$text['label-destination_caller_id_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"; }
|
2012-06-04 16:58:40 +02:00
|
|
|
|
2014-05-24 19:32:32 +02:00
|
|
|
//check for duplicates
|
2014-05-26 19:00:29 +02:00
|
|
|
if ($action == "add" || $destination_number != $db_destination_number) {
|
|
|
|
|
$sql = "select count(*) as num_rows from v_destinations ";
|
|
|
|
|
$sql .= "where destination_number = '".$destination_number."' ";
|
|
|
|
|
$prep_statement = $db->prepare($sql);
|
|
|
|
|
if ($prep_statement) {
|
2014-05-30 10:03:55 +02:00
|
|
|
$prep_statement->execute();
|
2014-05-26 19:00:29 +02:00
|
|
|
$row = $prep_statement->fetch(PDO::FETCH_ASSOC);
|
|
|
|
|
if ($row['num_rows'] > 0) {
|
|
|
|
|
$msg .= $text['message-duplicate']."<br>\n";
|
|
|
|
|
}
|
2014-05-24 19:32:32 +02:00
|
|
|
}
|
2014-05-30 10:03:55 +02:00
|
|
|
unset($prep_statement);
|
2014-05-24 19:32:32 +02:00
|
|
|
}
|
|
|
|
|
|
2014-05-24 20:59:37 +02:00
|
|
|
//show the message
|
2012-06-04 16:58:40 +02:00
|
|
|
if (strlen($msg) > 0 && strlen($_POST["persistformvar"]) == 0) {
|
2013-07-06 08:29:50 +02:00
|
|
|
require_once "resources/header.php";
|
2013-07-06 08:21:12 +02:00
|
|
|
require_once "resources/persist_form_var.php";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "<div align='center'>\n";
|
|
|
|
|
echo "<table><tr><td>\n";
|
|
|
|
|
echo $msg."<br />";
|
|
|
|
|
echo "</td></tr></table>\n";
|
|
|
|
|
persistformvar($_POST);
|
|
|
|
|
echo "</div>\n";
|
2013-07-06 08:29:50 +02:00
|
|
|
require_once "resources/footer.php";
|
2012-06-04 16:58:40 +02:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//add or update the database
|
|
|
|
|
if ($_POST["persistformvar"] != "true") {
|
2014-04-24 15:37:56 +02:00
|
|
|
|
|
|
|
|
//get the array
|
|
|
|
|
$dialplan_details = $_POST["dialplan_details"];
|
2014-04-25 07:27:19 +02:00
|
|
|
|
2014-04-24 15:37:56 +02:00
|
|
|
//remove the array from the HTTP POST
|
|
|
|
|
unset($_POST["dialplan_details"]);
|
2014-04-25 07:27:19 +02:00
|
|
|
|
2014-04-24 15:37:56 +02:00
|
|
|
//add the domain_uuid
|
|
|
|
|
$_POST["domain_uuid"] = $_SESSION['domain_uuid'];
|
2014-04-25 07:27:19 +02:00
|
|
|
|
2014-04-24 15:37:56 +02:00
|
|
|
//array cleanup
|
|
|
|
|
$x = 0;
|
|
|
|
|
foreach ($dialplan_details as $row) {
|
|
|
|
|
//unset the empty row
|
|
|
|
|
if (strlen($row["dialplan_detail_data"]) == 0) {
|
|
|
|
|
unset($dialplan_details[$x]);
|
|
|
|
|
}
|
|
|
|
|
//increment the row
|
|
|
|
|
$x++;
|
2012-11-14 01:11:39 +01:00
|
|
|
}
|
2014-04-25 03:48:20 +02:00
|
|
|
|
2014-04-27 00:50:52 +02:00
|
|
|
//check to see if the dialplan exists
|
2014-04-25 03:48:20 +02:00
|
|
|
if (strlen($dialplan_uuid) > 0) {
|
|
|
|
|
$sql = "select dialplan_uuid from v_dialplans ";
|
|
|
|
|
$sql .= "where domain_uuid = '".$_SESSION['domain_uuid']."' ";
|
|
|
|
|
$sql .= "and dialplan_uuid = '".$dialplan_uuid."' ";
|
|
|
|
|
$prep_statement = $db->prepare($sql);
|
|
|
|
|
if ($prep_statement) {
|
|
|
|
|
$prep_statement->execute();
|
|
|
|
|
$row = $prep_statement->fetch(PDO::FETCH_ASSOC);
|
|
|
|
|
if (strlen($row['dialplan_uuid']) > 0) {
|
|
|
|
|
$dialplan_uuid = $row['dialplan_uuid'];
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$dialplan_uuid = "";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$dialplan_uuid = "";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-24 15:37:56 +02:00
|
|
|
//build the dialplan array
|
|
|
|
|
$dialplan["app_uuid"] = "c03b422e-13a8-bd1b-e42b-b6b9b4d27ce4";
|
2012-10-23 12:00:03 +02:00
|
|
|
if (strlen($dialplan_uuid) > 0) {
|
2014-04-24 15:37:56 +02:00
|
|
|
$dialplan["dialplan_uuid"] = $dialplan_uuid;
|
2013-11-06 16:50:57 +01:00
|
|
|
}
|
2014-04-24 15:37:56 +02:00
|
|
|
$dialplan["domain_uuid"] = $_SESSION['domain_uuid'];
|
|
|
|
|
$dialplan["dialplan_name"] = format_phone($destination_number);
|
|
|
|
|
$dialplan["dialplan_number"] = $destination_number;
|
|
|
|
|
$dialplan["dialplan_context"] = $destination_context;
|
2014-06-09 22:00:28 +02:00
|
|
|
$dialplan["dialplan_continue"] = "false";
|
2014-04-24 15:37:56 +02:00
|
|
|
$dialplan["dialplan_order"] = "100";
|
|
|
|
|
$dialplan["dialplan_enabled"] = $destination_enabled;
|
|
|
|
|
$dialplan["dialplan_description"] = $destination_description;
|
|
|
|
|
if (strlen($dialplan_uuid) == 0) {
|
|
|
|
|
$y = 0;
|
|
|
|
|
$dialplan["dialplan_details"][$y]["domain_uuid"] = $_SESSION['domain_uuid'];
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_tag"] = "condition";
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_type"] = "context";
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_data"] = "public";
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_order"] = "10";
|
|
|
|
|
$y++;
|
|
|
|
|
$dialplan["dialplan_details"][$y]["domain_uuid"] = $_SESSION['domain_uuid'];
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_tag"] = "condition";
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_type"] = "destination_number";
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_data"] = $destination_number;
|
2014-05-30 09:47:44 +02:00
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_order"] = "20";
|
2014-04-24 15:37:56 +02:00
|
|
|
$y++;
|
|
|
|
|
//$dialplan["dialplan_details"][$y]["domain_uuid"] = $_SESSION['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"] = "call_direction=inbound";
|
|
|
|
|
//$dialplan["dialplan_details"][$y]["dialplan_detail_order"] = "20";
|
|
|
|
|
//$y++;
|
2012-11-14 01:11:39 +01:00
|
|
|
}
|
2014-05-30 09:47:44 +02:00
|
|
|
$dialplan_detail_order = 30;
|
2014-04-24 15:37:56 +02:00
|
|
|
foreach ($dialplan_details as $row) {
|
|
|
|
|
$actions = explode(":", $row["dialplan_detail_data"]);
|
|
|
|
|
$dialplan_detail_type = array_shift($actions);
|
|
|
|
|
$dialplan_detail_data = join(':', $actions);
|
2014-04-27 00:50:52 +02:00
|
|
|
if (strlen($dialplan_detail_type) > 1) {
|
2014-04-24 15:37:56 +02:00
|
|
|
if (isset($row["dialplan_detail_uuid"])) {
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_uuid"] = $row["dialplan_detail_uuid"];
|
|
|
|
|
}
|
|
|
|
|
$dialplan["dialplan_details"][$y]["domain_uuid"] = $_SESSION['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;
|
2014-05-30 09:47:44 +02:00
|
|
|
if (strlen($row["dialplan_detail_order"]) > 0) {
|
2014-04-24 15:37:56 +02:00
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_order"] = $row["dialplan_detail_order"];
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$dialplan["dialplan_details"][$y]["dialplan_detail_order"] = $dialplan_detail_order;
|
|
|
|
|
}
|
|
|
|
|
$dialplan_detail_order = $dialplan_detail_order + 10;
|
|
|
|
|
$y++;
|
|
|
|
|
}
|
2012-10-23 12:00:03 +02:00
|
|
|
}
|
2014-04-27 00:50:52 +02:00
|
|
|
|
2014-04-24 15:37:56 +02:00
|
|
|
//save the dialplan
|
2014-05-01 05:48:31 +02:00
|
|
|
if (strlen($dialplan_details[0][dialplan_detail_data]) > 2) {
|
2014-05-01 05:30:33 +02:00
|
|
|
$orm = new orm;
|
|
|
|
|
$orm->name('dialplans');
|
|
|
|
|
if (isset($dialplan["dialplan_uuid"])) {
|
|
|
|
|
$orm->uuid($dialplan["dialplan_uuid"]);
|
|
|
|
|
}
|
|
|
|
|
$orm->save($dialplan);
|
|
|
|
|
$dialplan_response = $orm->message;
|
2013-11-06 16:50:57 +01:00
|
|
|
}
|
2014-04-27 00:50:52 +02:00
|
|
|
|
2014-04-24 15:37:56 +02:00
|
|
|
//get the destination_uuid
|
|
|
|
|
if (strlen($dialplan_response['uuid']) > 0) {
|
|
|
|
|
$_POST["dialplan_uuid"] = $dialplan_response['uuid'];
|
2013-01-21 19:19:13 +01:00
|
|
|
}
|
2014-04-27 00:50:52 +02:00
|
|
|
|
2014-04-24 15:37:56 +02:00
|
|
|
//save the destination
|
|
|
|
|
$orm = new orm;
|
|
|
|
|
$orm->name('destinations');
|
|
|
|
|
if (strlen($destination_uuid) > 0) {
|
|
|
|
|
$orm->uuid($destination_uuid);
|
2014-04-24 13:27:53 +02:00
|
|
|
}
|
2014-04-24 15:37:56 +02:00
|
|
|
$orm->save($_POST);
|
|
|
|
|
$destination_response = $orm->message;
|
2014-04-27 00:50:52 +02:00
|
|
|
|
2014-04-24 15:37:56 +02:00
|
|
|
//get the destination_uuid
|
|
|
|
|
if (strlen($destination_response['uuid']) > 0) {
|
|
|
|
|
$destination_uuid = $destination_response['uuid'];
|
2014-04-24 13:27:53 +02:00
|
|
|
}
|
2014-04-25 04:56:41 +02:00
|
|
|
|
|
|
|
|
//synchronize the xml config
|
|
|
|
|
save_dialplan_xml();
|
|
|
|
|
|
|
|
|
|
//clear 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:".$destination_context;
|
|
|
|
|
$switch_result = event_socket_request($fp, 'api '.$switch_cmd);
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-24 15:37:56 +02:00
|
|
|
//redirect the user
|
|
|
|
|
if ($action == "add") {
|
|
|
|
|
$_SESSION["message"] = $text['message-add'];
|
2014-04-24 11:16:25 +02:00
|
|
|
}
|
2014-04-24 15:37:56 +02:00
|
|
|
if ($action == "update") {
|
|
|
|
|
$_SESSION["message"] = $text['message-update'];
|
2014-04-24 11:16:25 +02:00
|
|
|
}
|
2014-04-24 15:37:56 +02:00
|
|
|
header("Location: destination_edit.php?id=".$destination_uuid);
|
|
|
|
|
return;
|
2014-04-24 11:16:25 +02:00
|
|
|
|
2014-04-24 15:37:56 +02:00
|
|
|
} //if ($_POST["persistformvar"] != "true")
|
2014-04-24 11:16:25 +02:00
|
|
|
} //(count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0)
|
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") {
|
2012-06-04 16:58:40 +02:00
|
|
|
$destination_uuid = $_GET["id"];
|
2014-04-24 11:16:25 +02:00
|
|
|
$orm = new orm;
|
|
|
|
|
$orm->name('destinations');
|
|
|
|
|
$orm->uuid($destination_uuid);
|
|
|
|
|
$result = $orm->find()->get();
|
2012-06-04 16:58:40 +02:00
|
|
|
foreach ($result as &$row) {
|
2012-10-23 12:00:03 +02:00
|
|
|
$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"];
|
2012-06-04 16:58:40 +02:00
|
|
|
$destination_context = $row["destination_context"];
|
2012-11-13 03:18:57 +01:00
|
|
|
$fax_uuid = $row["fax_uuid"];
|
2012-06-04 16:58:40 +02:00
|
|
|
$destination_enabled = $row["destination_enabled"];
|
|
|
|
|
$destination_description = $row["destination_description"];
|
|
|
|
|
break; //limit to 1 row
|
|
|
|
|
}
|
|
|
|
|
unset ($prep_statement);
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-24 11:16:25 +02:00
|
|
|
//get the dialplan details in an array
|
|
|
|
|
$sql = "select * from v_dialplan_details ";
|
|
|
|
|
$sql .= "where domain_uuid = '".$_SESSION['domain_uuid']."' ";
|
|
|
|
|
$sql .= "and dialplan_uuid = '".$dialplan_uuid."' ";
|
|
|
|
|
$sql .= "and dialplan_detail_tag = 'action' ";
|
2014-05-30 09:30:43 +02:00
|
|
|
$sql .= "and (dialplan_detail_type = 'transfer' or dialplan_detail_type = 'bridge') ";
|
2014-04-24 11:16:25 +02:00
|
|
|
$sql .= "order by dialplan_detail_group asc, dialplan_detail_order asc";
|
|
|
|
|
$prep_statement = $db->prepare(check_sql($sql));
|
|
|
|
|
$prep_statement->execute();
|
|
|
|
|
$dialplan_details = $prep_statement->fetchAll(PDO::FETCH_NAMED);;
|
|
|
|
|
unset ($prep_statement, $sql);
|
|
|
|
|
|
|
|
|
|
//add an empty row to the array
|
|
|
|
|
$x = count($dialplan_details);
|
|
|
|
|
$limit = $x + 1;
|
|
|
|
|
while($x < $limit) {
|
|
|
|
|
$dialplan_details[$x]['domain_uuid'] = $_SESSION['domain_uuid'];
|
|
|
|
|
$dialplan_details[$x]['dialplan_uuid'] = $dialplan_uuid;
|
|
|
|
|
//$dialplan_details[$x]['dialplan_detail_uuid'] = '';
|
|
|
|
|
//$dialplan_details[$x]['dialplan_detail_tag'] = '';
|
|
|
|
|
$dialplan_details[$x]['dialplan_detail_type'] = '';
|
|
|
|
|
$dialplan_details[$x]['dialplan_detail_data'] = '';
|
|
|
|
|
//$dialplan_details[$x]['dialplan_detail_break'] = '';
|
|
|
|
|
//$dialplan_details[$x]['dialplan_detail_inline'] = '';
|
|
|
|
|
//$dialplan_details[$x]['dialplan_detail_group'] = '';
|
|
|
|
|
$dialplan_details[$x]['dialplan_detail_order'] = '';
|
|
|
|
|
$x++;
|
|
|
|
|
}
|
|
|
|
|
unset($limit);
|
|
|
|
|
|
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") {
|
|
|
|
|
$page["title"] = $text['title-destination-edit'];
|
|
|
|
|
}
|
|
|
|
|
else if ($action == "add") {
|
|
|
|
|
$page["title"] = $text['title-destination-add'];
|
|
|
|
|
}
|
|
|
|
|
|
2012-06-04 16:58:40 +02:00
|
|
|
//show the content
|
|
|
|
|
echo "<div align='center'>";
|
|
|
|
|
echo "<table width='100%' border='0' cellpadding='0' cellspacing=''>\n";
|
|
|
|
|
echo "<tr class='border'>\n";
|
|
|
|
|
echo " <td align=\"left\">\n";
|
|
|
|
|
echo " <br>";
|
|
|
|
|
|
|
|
|
|
echo "<form method='post' name='frm' action=''>\n";
|
|
|
|
|
echo "<div align='center'>\n";
|
|
|
|
|
echo "<table width='100%' border='0' cellpadding='6' cellspacing='0'>\n";
|
|
|
|
|
echo "<tr>\n";
|
2013-05-08 01:38:12 +02:00
|
|
|
if ($action == "add") {
|
|
|
|
|
echo "<td align='left' width='30%' nowrap='nowrap'><b>".$text['header-destination-add']."</b></td>\n";
|
|
|
|
|
}
|
|
|
|
|
if ($action == "update") {
|
|
|
|
|
echo "<td align='left' width='30%' nowrap='nowrap'><b>".$text['header-destination-edit']."</b></td>\n";
|
|
|
|
|
}
|
2014-04-27 00:50:52 +02:00
|
|
|
echo "<td width='70%' align='right'>";
|
|
|
|
|
echo " <input type='button' class='btn' name='' alt='back' onclick=\"window.location='destinations.php'\" value='".$text['button-back']."'>";
|
|
|
|
|
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";
|
2013-05-08 01:38:12 +02: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";
|
2012-10-23 12:00:03 +02:00
|
|
|
echo " <select class='formfld' name='destination_type'>\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";
|
2013-05-08 01:38:12 +02: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";
|
2012-10-23 12:00:03 +02:00
|
|
|
echo " <input class='formfld' type='text' name='destination_number' maxlength='255' value=\"$destination_number\">\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')) {
|
|
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
|
|
|
|
|
echo " ".$text['label-destination_caller_id_name'].":\n";
|
|
|
|
|
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
|
|
|
|
2013-11-06 16:50:57 +01:00
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
|
|
|
|
|
echo " ".$text['label-destination_caller_id_number'].":\n";
|
|
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<td class='vtable' align='left'>\n";
|
|
|
|
|
echo " <input class='formfld' type='text' name='destination_caller_id_number' maxlength='255' value=\"$destination_caller_id_number\">\n";
|
|
|
|
|
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";
|
2013-05-08 01:38:12 +02: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";
|
|
|
|
|
echo " <input class='formfld' type='text' name='destination_context' maxlength='255' value=\"$destination_context\">\n";
|
|
|
|
|
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";
|
|
|
|
|
|
2014-04-24 11:16:25 +02:00
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
|
2014-04-25 07:27:19 +02: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";
|
|
|
|
|
//echo " <tr>\n";
|
|
|
|
|
//echo " <td class='vtable'>".$text['label-dialplan_detail_type']."</td>\n";
|
|
|
|
|
//echo " <td class='vtable'>".$text['label-dialplan_detail_data']."</td>\n";
|
|
|
|
|
//echo " <td class='vtable'>".$text['label-dialplan_detail_order']."</td>\n";
|
|
|
|
|
//echo " <td></td>\n";
|
|
|
|
|
//echo " </tr>\n";
|
|
|
|
|
$x = 0;
|
|
|
|
|
foreach($dialplan_details as $row) {
|
|
|
|
|
|
|
|
|
|
if (strlen($row['dialplan_detail_uuid']) > 0) {
|
|
|
|
|
echo " <input name='dialplan_details[".$x."][dialplan_detail_uuid]' type='hidden' value=\"".$row['dialplan_detail_uuid']."\">\n";
|
|
|
|
|
}
|
2014-04-24 15:37:56 +02:00
|
|
|
//$order = $row['dialplan_detail_order'] + 10;
|
|
|
|
|
//echo " <input name='dialplan_details[".$x."][dialplan_detail_order]' type='hidden' value=\"".$order."\">\n";
|
2014-04-24 11:16:25 +02:00
|
|
|
|
|
|
|
|
echo " <tr>\n";
|
|
|
|
|
echo " <td>\n";
|
|
|
|
|
//switch_select_destination(select_type, select_label, select_name, select_value, select_style, action);
|
|
|
|
|
$data = $row['dialplan_detail_data'];
|
|
|
|
|
$label = explode("XML", $data);
|
2014-04-24 15:37:56 +02:00
|
|
|
$detail_action = $row['dialplan_detail_type'].":".$row['dialplan_detail_data'];
|
|
|
|
|
switch_select_destination("dialplan", $label[0], "dialplan_details[".$x."][dialplan_detail_data]", $detail_action, "width: 60%;", $row['dialplan_detail_type']);
|
2014-04-24 11:16:25 +02:00
|
|
|
|
|
|
|
|
echo " </td>\n";
|
|
|
|
|
//echo " <td>\n";
|
|
|
|
|
//echo " <input type=\"text\" name=\"dialplan_details[".$x."][dialplan_detail_order]\" class=\"formfld\" style=\"width: 90%;\"value=\"".$row['dialplan_detail_order']."\">\n";
|
|
|
|
|
//echo " </td>\n";
|
|
|
|
|
//echo " <td>\n";
|
|
|
|
|
//echo " <input type=\"submit\" class='btn' value=\"".$text['button-add']."\">\n";
|
|
|
|
|
//echo " </td>\n";
|
|
|
|
|
echo " <td class='list_control_icons' style='width: 25px;'>";
|
|
|
|
|
if (strlen($row['destination_uuid']) > 0) {
|
|
|
|
|
//echo "<a href='estination_edit.php?id=".$row['destination_uuid']."&destination_uuid=".$row['destination_uuid']."' alt='edit'>$v_link_label_edit</a>";
|
|
|
|
|
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>";
|
|
|
|
|
}
|
|
|
|
|
echo " </td>\n";
|
|
|
|
|
echo " </tr>\n";
|
|
|
|
|
|
|
|
|
|
echo " </td>";
|
|
|
|
|
echo " </tr>";
|
|
|
|
|
$x++;
|
|
|
|
|
}
|
|
|
|
|
echo " </table>\n";
|
|
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
|
2012-11-13 03:18:57 +01:00
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo "<td class='vncell' valign='top' align='left' nowrap>\n";
|
2013-05-08 01:38:12 +02:00
|
|
|
echo " ".$text['label-fax_uuid'].":\n";
|
2012-11-13 03:18:57 +01:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<td class='vtable' align='left'>\n";
|
|
|
|
|
$sql = "select * from v_fax ";
|
|
|
|
|
$sql .= "where domain_uuid = '".$_SESSION["domain_uuid"]."' ";
|
|
|
|
|
$sql .= "order by fax_name asc ";
|
|
|
|
|
$prep_statement = $db->prepare(check_sql($sql));
|
|
|
|
|
$prep_statement->execute();
|
|
|
|
|
$result = $prep_statement->fetchAll(PDO::FETCH_ASSOC);
|
|
|
|
|
echo " <select name='fax_uuid' id='fax_uuid' class='formfld' style='".$select_style."'>\n";
|
2012-11-13 03:26:38 +01:00
|
|
|
echo " <option value=''></option>\n";
|
2012-11-13 03:18:57 +01:00
|
|
|
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";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
echo " </select>\n";
|
|
|
|
|
unset ($prep_statement, $extension);
|
|
|
|
|
echo " <br />\n";
|
2013-05-08 01:38:12 +02:00
|
|
|
echo " ".$text['description-fax_uuid']."\n";
|
2012-11-13 03:18:57 +01:00
|
|
|
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";
|
2013-05-08 01:38:12 +02:00
|
|
|
echo " ".$text['label-destination_enabled'].":\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<td class='vtable' align='left'>\n";
|
|
|
|
|
echo " <select class='formfld' name='destination_enabled'>\n";
|
2013-05-08 01:38:12 +02:00
|
|
|
switch ($destination_enabled) {
|
|
|
|
|
case "true" : $selected[1] = "selected='selected'"; break;
|
|
|
|
|
case "false" : $selected[2] = "selected='selected'"; break;
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
2013-05-08 01:38:12 +02:00
|
|
|
echo " <option value='true' ".$selected[1].">".$text['label-true']."</option>\n";
|
|
|
|
|
echo " <option value='false' ".$selected[2].">".$text['label-false']."</option>\n";
|
|
|
|
|
unset($selected);
|
2012-06-04 16:58:40 +02:00
|
|
|
echo " </select>\n";
|
|
|
|
|
echo "<br />\n";
|
2013-05-08 01:38:12 +02:00
|
|
|
echo $text['description-destination_enabled']."\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";
|
2013-05-08 01:38:12 +02: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") {
|
2014-05-30 09:24:06 +02:00
|
|
|
echo " <input type='hidden' name='db_destination_number' value='$destination_number'>\n";
|
2012-10-23 12:00:03 +02:00
|
|
|
echo " <input type='hidden' name='dialplan_uuid' value='$dialplan_uuid'>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo " <input type='hidden' name='destination_uuid' value='$destination_uuid'>\n";
|
|
|
|
|
}
|
2014-04-24 11:16:25 +02: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>";
|
|
|
|
|
echo "</form>";
|
|
|
|
|
|
|
|
|
|
echo " </td>";
|
|
|
|
|
echo " </tr>";
|
|
|
|
|
echo "</table>";
|
|
|
|
|
echo "</div>";
|
|
|
|
|
|
|
|
|
|
//include the footer
|
2013-07-06 08:29:50 +02:00
|
|
|
require_once "resources/footer.php";
|
2012-06-04 16:58:40 +02:00
|
|
|
?>
|