diff --git a/app/destinations/destination_edit.php b/app/destinations/destination_edit.php
index f2b4b62e55..083b95128c 100644
--- a/app/destinations/destination_edit.php
+++ b/app/destinations/destination_edit.php
@@ -92,6 +92,7 @@
$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"]);
+ $destination_action = check_str($_POST["destination_action"]);
$fax_uuid = check_str($_POST["fax_uuid"]);
$destination_enabled = check_str($_POST["destination_enabled"]);
$destination_description = check_str($_POST["destination_description"]);
@@ -104,11 +105,17 @@
//convert the number to a regular expression
$destination_number_regex = string_to_regex($destination_number);
$_POST["destination_number_regex"] = $destination_number_regex;
+ //get the destination app and data
+ $destination_array = explode(":", $_POST["destination_action"]);
+ $destination_app = $destination_array[0];
+ $destination_data = $destination_array[1];
+ unset($_POST["destination_action"]);
+ $_POST["destination_app"] = $destination_app;
+ $_POST["destination_data"] = $destination_data;
+ //unset the db_destination_number
+ unset($_POST["db_destination_number"]);
}
-//unset the db_destination_number
- unset($_POST["db_destination_number"]);
-
//process the http post
if (count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0) {
@@ -181,7 +188,31 @@
unset($dialplan_details[$index]);
}
}
-
+
+ //get the fax information
+ if (strlen($fax_uuid) > 0) {
+ $sql = "select * from v_fax ";
+ $sql .= "where fax_uuid = '".$fax_uuid."' ";
+ if (!permission_exists('destination_domain')) {
+ $sql .= "and domain_uuid = '".$domain_uuid."' ";
+ }
+ $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"];
+ }
+ unset ($prep_statement);
+ }
+
//if empty then get new uuid
if (strlen($dialplan_uuid) == 0) {
$dialplan_uuid = uuid();
@@ -200,180 +231,205 @@
$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";
+ //set the dialplan detail type
if (strlen($_SESSION['dialplan']['destination']['text']) > 0) {
- $dialplan["dialplan_details"][$y]["dialplan_detail_type"] = $_SESSION['dialplan']['destination']['text'];
+ $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;
+ $dialplan_detail_type = "destination_number";
}
- //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;
- }
-
- //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;
- }
-
- //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."' ";
- }
- $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"];
- }
- unset ($prep_statement);
-
- //delete previous fax detection settings
- $sql = "delete from v_dialplan_details ";
- $sql .= "where (domain_uuid = '".$domain_uuid."' or domain_uuid is null) ";
- $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++;
+ //build the xml dialplan
+ if ($_SESSION['destinations']['dialplan_details']['boolean'] == "false") {
+ $dialplan["dialplan_xml"] = "\n";
+ $dialplan["dialplan_xml"] .= " \n";
+ $dialplan["dialplan_xml"] .= " \n";
+ $dialplan["dialplan_xml"] .= " \n";
+ $dialplan["dialplan_xml"] .= " \n";
+ if (strlen($destination_cid_name_prefix) > 0) {
+ $dialplan["dialplan_xml"] .= " \n";
}
- }
-
- //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."' or domain_uuid is null) ";
+ if (strlen($destination_accountcode) > 0) {
+ $dialplan["dialplan_xml"] .= " \n";
}
- //echo $sql."
";
- $db->exec(check_sql($sql));
- unset($sql);
+ if (strlen($destination_carrier) > 0) {
+ $dialplan["dialplan_xml"] .= " \n";
+ }
+ if (strlen($fax_uuid) > 0) {
+ $dialplan["dialplan_xml"] .= " \n";
+ $dialplan["dialplan_xml"] .= " \n";
+ $dialplan["dialplan_xml"] .= " \n";
+ $dialplan["dialplan_xml"] .= " \n";
+ }
+ $dialplan["dialplan_xml"] .= " \n";
+ $dialplan["dialplan_xml"] .= " \n";
+ $dialplan["dialplan_xml"] .= "\n";
}
- //remove empty dialplan details from the POST array
- unset($_POST["dialplan_details"]);
+ //dialplan details
+ if ($_SESSION['destinations']['dialplan_details']['boolean'] == "true") {
- //make sure the dialplan_uuid is set
- if(strlen($_POST["dialplan_uuid"]) == 0) {
- $_POST["dialplan_uuid"] = $dialplan_uuid;
+ //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;
+ }
+
+ //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;
+ }
+
+ //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;
+ }
+
+ //add fax detection
+ if (strlen($fax_uuid) > 0) {
+
+ //delete previous fax detection settings
+ $sql = "delete from v_dialplan_details ";
+ $sql .= "where (domain_uuid = '".$domain_uuid."' or domain_uuid is null) ";
+ $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);
+
+ //add to the dialplan_details array
+ $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;
+
+ //set the destination app and data
+ $_POST["destination_app"] = $dialplan_detail_type;
+ $_POST["destination_data"] = $dialplan_detail_data;
+
+ //increment the array id
+ $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."' or domain_uuid is null) ";
+ }
+ //echo $sql."
";
+ $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
@@ -443,10 +499,10 @@
$sql .= "and destination_uuid = '".$destination_uuid."' ";
$prep_statement = $db->prepare(check_sql($sql));
$prep_statement->execute();
- $result = $prep_statement->fetchAll(PDO::FETCH_NAMED);
+ $destinations = $prep_statement->fetchAll(PDO::FETCH_NAMED);
}
- if (is_array($result)) {
- foreach ($result as &$row) {
+ if (is_array($destinations)) {
+ foreach ($destinations as &$row) {
$domain_uuid = $row["domain_uuid"];
$dialplan_uuid = $row["dialplan_uuid"];
$destination_type = $row["destination_type"];
@@ -455,6 +511,8 @@
$destination_caller_id_number = $row["destination_caller_id_number"];
$destination_cid_name_prefix = $row["destination_cid_name_prefix"];
$destination_context = $row["destination_context"];
+ $destination_app = $row["destination_app"];
+ $destination_data = $row["destination_data"];
$fax_uuid = $row["fax_uuid"];
$destination_enabled = $row["destination_enabled"];
$destination_description = $row["destination_description"];
@@ -654,45 +712,57 @@
echo "\n";
echo "\n";
- echo "
\n";
- echo "| \n";
- echo " ".$text['label-detail_action']."\n";
- echo " | \n";
- echo "\n";
-
- echo " \n";
- $x = 0;
- $order = 10;
- foreach($dialplan_details as $row) {
- if ($row["dialplan_detail_tag"] != "condition") {
- if ($row["dialplan_detail_tag"] == "action" && $row["dialplan_detail_type"] == "set" && strpos($row["dialplan_detail_data"], "accountcode") == 0) { continue; } //exclude set:accountcode actions
- echo " \n";
- echo " | \n";
- if (strlen($row['dialplan_detail_uuid']) > 0) {
- echo " \n";
- }
- echo " \n";
- echo " \n";
-
- $data = $row['dialplan_detail_data'];
- $label = explode("XML", $data);
- $divider = ($row['dialplan_detail_type'] != '') ? ":" : null;
- $detail_action = $row['dialplan_detail_type'].$divider.$row['dialplan_detail_data'];
- echo $destination->select('dialplan', 'dialplan_details['.$x.'][dialplan_detail_data]', $detail_action);
- echo " | \n";
- echo " ";
- if (strlen($row['destination_uuid']) > 0) {
- echo "".$v_link_label_delete."\n";
- }
- echo " | \n";
- echo " \n";
- }
- $order = $order + 10;
- $x++;
+ if ($_SESSION['destinations']['dialplan_details']['boolean'] == "false") {
+ echo "\n";
+ echo "| \n";
+ echo " ".$text['label-detail_action']."\n";
+ echo " | \n";
+ echo "\n";
+ $destination_action = $destination_app.":".$destination_data;
+ echo $destination->select('dialplan', 'destination_action', $destination_action);
+ echo " | \n";
+ echo " \n";
+ }
+
+ if ($_SESSION['destinations']['dialplan_details']['boolean'] == "true") {
+ echo "\n";
+ echo "| \n";
+ echo " ".$text['label-detail_action']."\n";
+ echo " | \n";
+ echo "\n";
+ echo " \n";
+ $x = 0;
+ $order = 10;
+ foreach($dialplan_details as $row) {
+ if ($row["dialplan_detail_tag"] != "condition") {
+ if ($row["dialplan_detail_tag"] == "action" && $row["dialplan_detail_type"] == "set" && strpos($row["dialplan_detail_data"], "accountcode") == 0) { continue; } //exclude set:accountcode actions
+ echo " \n";
+ echo " | \n";
+ if (strlen($row['dialplan_detail_uuid']) > 0) {
+ echo " \n";
+ }
+ echo " \n";
+ echo " \n";
+ $data = $row['dialplan_detail_data'];
+ $label = explode("XML", $data);
+ $divider = ($row['dialplan_detail_type'] != '') ? ":" : null;
+ $detail_action = $row['dialplan_detail_type'].$divider.$row['dialplan_detail_data'];
+ echo $destination->select('dialplan', 'dialplan_details['.$x.'][dialplan_detail_data]', $detail_action);
+ echo " | \n";
+ echo " ";
+ if (strlen($row['destination_uuid']) > 0) {
+ echo "".$v_link_label_delete."\n";
+ }
+ echo " | \n";
+ echo " \n";
+ }
+ $order = $order + 10;
+ $x++;
+ }
+ echo " \n";
+ echo " | \n";
+ echo " \n";
}
- echo " \n";
- echo " | \n";
- echo "
\n";
if (file_exists($_SERVER["PROJECT_ROOT"]."/app/fax/app_config.php")){
$sql = "select * from v_fax ";