466 lines
20 KiB
PHP
466 lines
20 KiB
PHP
<?php
|
|
/*
|
|
FusionPBX
|
|
Version: MPL 1.1
|
|
|
|
The contents of this file are subject to the Mozilla Public License Version
|
|
1.1 (the "License"); you may not use this file except in compliance with
|
|
the License. You may obtain a copy of the License at
|
|
http://www.mozilla.org/MPL/
|
|
|
|
Software distributed under the License is distributed on an "AS IS" basis,
|
|
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
for the specific language governing rights and limitations under the
|
|
License.
|
|
|
|
The Original Code is FusionPBX
|
|
|
|
The Initial Developer of the Original Code is
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
Portions created by the Initial Developer are Copyright (C) 2016
|
|
the Initial Developer. All Rights Reserved.
|
|
|
|
Contributor(s):
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
*/
|
|
|
|
//includes
|
|
require_once "root.php";
|
|
require_once "resources/require.php";
|
|
|
|
//check permissions
|
|
require_once "resources/check_auth.php";
|
|
if (permission_exists('sip_profile_add') || permission_exists('sip_profile_edit')) {
|
|
//access granted
|
|
}
|
|
else {
|
|
echo "access denied";
|
|
exit;
|
|
}
|
|
|
|
//add multi-lingual support
|
|
$language = new text;
|
|
$text = $language->get();
|
|
|
|
//action add or update
|
|
if (isset($_REQUEST["id"])) {
|
|
$action = "update";
|
|
$sip_profile_uuid = check_str($_REQUEST["id"]);
|
|
}
|
|
else {
|
|
$action = "add";
|
|
}
|
|
|
|
//get http post variables and set them to php variables
|
|
if (is_array($_POST)) {
|
|
$sip_profile_uuid = check_str($_POST["sip_profile_uuid"]);
|
|
$sip_profile_name = check_str($_POST["sip_profile_name"]);
|
|
$sip_profile_hostname = check_str($_POST["sip_profile_hostname"]);
|
|
$sip_profile_enabled = check_str($_POST["sip_profile_enabled"]);
|
|
$sip_profile_description = check_str($_POST["sip_profile_description"]);
|
|
}
|
|
|
|
//process the user data and save it to the database
|
|
if (count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0) {
|
|
|
|
//get the uuid from the POST
|
|
if ($action == "update") {
|
|
$sip_profile_uuid = check_str($_POST["sip_profile_uuid"]);
|
|
}
|
|
|
|
//check for all required data
|
|
$msg = '';
|
|
if (strlen($sip_profile_uuid) == 0) { $msg .= $text['message-required']." ".$text['label-sip_profile_uuid']."<br>\n"; }
|
|
if (strlen($sip_profile_name) == 0) { $msg .= $text['message-required']." ".$text['label-sip_profile_name']."<br>\n"; }
|
|
//if (strlen($sip_profile_hostname) == 0) { $msg .= $text['message-required']." ".$text['label-sip_profile_hostname']."<br>\n"; }
|
|
if (strlen($sip_profile_enabled) == 0) { $msg .= $text['message-required']." ".$text['label-sip_profile_enabled']."<br>\n"; }
|
|
if (strlen($sip_profile_description) == 0) { $msg .= $text['message-required']." ".$text['label-sip_profile_description']."<br>\n"; }
|
|
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;
|
|
}
|
|
|
|
//cleanup the array
|
|
$x = 0;
|
|
foreach ($_POST["sip_profile_domains"] as $row) {
|
|
//unset the empty row
|
|
if (strlen($_POST["sip_profile_domains"][$x]["sip_profile_domain_name"]) == 0) {
|
|
unset($_POST["sip_profile_domains"][$x]);
|
|
}
|
|
if (strlen($_POST["sip_profile_domains"][$x]["sip_profile_domain_alias"]) == 0) {
|
|
unset($_POST["sip_profile_domains"][$x]);
|
|
}
|
|
if (strlen($_POST["sip_profile_domains"][$x]["sip_profile_domain_parse"]) == 0) {
|
|
unset($_POST["sip_profile_domains"][$x]);
|
|
}
|
|
//increment the row
|
|
$x++;
|
|
}
|
|
|
|
//cleanup the array
|
|
$x = 0;
|
|
foreach ($_POST["sip_profile_settings"] as $row) {
|
|
//unset the empty row
|
|
if (strlen($_POST["sip_profile_settings"][$x]["sip_profile_setting_name"]) == 0) {
|
|
unset($_POST["sip_profile_settings"][$x]);
|
|
}
|
|
//if (strlen($_POST["sip_profile_settings"][$x]["sip_profile_setting_value"]) == 0) {
|
|
// unset($_POST["sip_profile_settings"][$x]);
|
|
//}
|
|
if (strlen($_POST["sip_profile_settings"][$x]["sip_profile_setting_enabled"]) == 0) {
|
|
unset($_POST["sip_profile_settings"][$x]);
|
|
}
|
|
//increment the row
|
|
$x++;
|
|
}
|
|
|
|
//add the sip_profile_uuid
|
|
if (strlen($_POST["sip_profile_uuid"]) == 0) {
|
|
$sip_profile_uuid = uuid();
|
|
$_POST["sip_profile_uuid"] = $sip_profile_uuid;
|
|
}
|
|
|
|
//prepare the array
|
|
$array['sip_profiles'][] = $_POST;
|
|
|
|
//save to the data
|
|
$database = new database;
|
|
$database->app_name = 'sip_profiles';
|
|
$database->app_uuid = null;
|
|
if (strlen($sip_profile_uuid) > 0) {
|
|
$database->uuid($sip_profile_uuid);
|
|
}
|
|
$database->save($array);
|
|
$message = $database->message;
|
|
|
|
//debug info
|
|
//echo "<pre>";
|
|
//print_r($message);
|
|
//echo "</pre>";
|
|
//exit;
|
|
|
|
//get the hostname
|
|
$fp = event_socket_create($_SESSION['event_socket_ip_address'], $_SESSION['event_socket_port'], $_SESSION['event_socket_password']);
|
|
if ($fp) {
|
|
$switch_cmd = "switchname";
|
|
$sip_profile_hostname = event_socket_request($fp, 'api '.$switch_cmd);
|
|
}
|
|
|
|
//clear the cache
|
|
$cache = new cache;
|
|
$cache->delete("configuration:sofia.conf:".$sip_profile_hostname);
|
|
|
|
//save the sip profile xml
|
|
save_sip_profile_xml();
|
|
|
|
//apply settings reminder
|
|
$_SESSION["reload_xml"] = true;
|
|
|
|
//redirect the user
|
|
if (isset($action)) {
|
|
if ($action == "add") {
|
|
messages::add($text['message-add']);
|
|
}
|
|
if ($action == "update") {
|
|
messages::add($text['message-update']);
|
|
}
|
|
header('Location: sip_profile_edit.php?id='.$sip_profile_uuid);
|
|
return;
|
|
}
|
|
} //(is_array($_POST) && strlen($_POST["persistformvar"]) == 0)
|
|
|
|
//pre-populate the form
|
|
if (is_array($_GET) && $_POST["persistformvar"] != "true") {
|
|
$sip_profile_uuid = check_str($_GET["id"]);
|
|
$sql = "select * from v_sip_profiles ";
|
|
$sql .= "where sip_profile_uuid = '$sip_profile_uuid' ";
|
|
$prep_statement = $db->prepare(check_sql($sql));
|
|
$prep_statement->execute();
|
|
$result = $prep_statement->fetchAll(PDO::FETCH_NAMED);
|
|
foreach ($result as &$row) {
|
|
$sip_profile_name = $row["sip_profile_name"];
|
|
$sip_profile_hostname = $row["sip_profile_hostname"];
|
|
$sip_profile_enabled = $row["sip_profile_enabled"];
|
|
$sip_profile_description = $row["sip_profile_description"];
|
|
}
|
|
unset ($prep_statement);
|
|
}
|
|
|
|
//get the child data
|
|
$sql = "select * from v_sip_profile_settings ";
|
|
$sql .= "where sip_profile_uuid = '".$sip_profile_uuid."' ";
|
|
$sql .= "order by sip_profile_setting_name ";
|
|
$prep_statement = $db->prepare($sql);
|
|
$prep_statement->execute();
|
|
$sip_profile_settings = $prep_statement->fetchAll(PDO::FETCH_NAMED);
|
|
|
|
//add an empty row
|
|
$x = count($sip_profile_settings);
|
|
$sip_profile_settings[$x]['sip_profile_setting_uuid'] = uuid();
|
|
$sip_profile_settings[$x]['sip_profile_uuid'] = $sip_profile_uuid;
|
|
$sip_profile_settings[$x]['sip_profile_setting_name'] = '';
|
|
$sip_profile_settings[$x]['sip_profile_setting_value'] = '';
|
|
$sip_profile_settings[$x]['sip_profile_setting_enabled'] = '';
|
|
$sip_profile_settings[$x]['sip_profile_setting_description'] = '';
|
|
|
|
//get the child data
|
|
$sql = "select * from v_sip_profile_domains ";
|
|
$sql .= "where sip_profile_uuid = '".$sip_profile_uuid."' ";
|
|
$prep_statement = $db->prepare($sql);
|
|
$prep_statement->execute();
|
|
$sip_profile_domains = $prep_statement->fetchAll(PDO::FETCH_NAMED);
|
|
|
|
//add an empty row
|
|
$x = count($sip_profile_domains);
|
|
$sip_profile_domains[$x]['sip_profile_domain_uuid'] = uuid();
|
|
$sip_profile_domains[$x]['sip_profile_uuid'] = $sip_profile_uuid;
|
|
$sip_profile_domains[$x]['sip_profile_domain_name'] = '';
|
|
$sip_profile_domains[$x]['sip_profile_domain_alias'] = '';
|
|
$sip_profile_domains[$x]['sip_profile_domain_parse'] = '';
|
|
|
|
//show the header
|
|
require_once "resources/header.php";
|
|
|
|
|
|
//label to form input
|
|
echo "<script language='javascript'>\n";
|
|
echo " function label_to_form(label_id, form_id) {\n";
|
|
echo " if (document.getElementById(label_id) != null) {\n";
|
|
echo " label = document.getElementById(label_id);\n";
|
|
echo " label.parentNode.removeChild(label);\n";
|
|
echo " }\n";
|
|
echo " document.getElementById(form_id).style.display='';\n";
|
|
echo " }\n";
|
|
echo "</script>\n";
|
|
|
|
//show the content
|
|
echo "<form name='frm' id='frm' method='post' action=''>\n";
|
|
echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
|
|
|
|
echo "<tr>\n";
|
|
echo "<td align='left' width='30%' nowrap='nowrap' valign='top'><b>".$text['title-sip_profile']."</b><br><br></td>\n";
|
|
echo "<td width='70%' align='right' valign='top'>\n";
|
|
echo " <input type='button' class='btn' name='' alt='".$text['button-back']."' onclick=\"window.location='sip_profiles.php'\" value='".$text['button-back']."'>";
|
|
echo " <input type='button' class='btn' name='' alt='".$text['button-copy']."' onclick=\"var name = prompt('".$text['confirm-copy']."'); if (name != null) { window.location='sip_profile_copy.php?id=".$sip_profile_uuid."&name=' + name; }\" value='".$text['button-copy']."'>\n";
|
|
echo " <input type='submit' class='btn' value='".$text['button-save']."'>";
|
|
echo "</td>\n";
|
|
echo "</tr>\n";
|
|
|
|
echo "<tr>\n";
|
|
echo "<td class='vncellreq' valign='top' align='left' nowrap='nowrap'>\n";
|
|
echo " ".$text['label-sip_profile_name']."\n";
|
|
echo "</td>\n";
|
|
echo "<td class='vtable' align='left'>\n";
|
|
echo " <input class='formfld' type='text' name='sip_profile_name' maxlength='255' value=\"$sip_profile_name\">\n";
|
|
echo "<br />\n";
|
|
echo $text['description-sip_profile_name']."\n";
|
|
echo "</td>\n";
|
|
echo "</tr>\n";
|
|
|
|
echo " <tr>\n";
|
|
echo " <td class='vncell' align='left'>\n";
|
|
echo " ".$text['title-sip_profile_domains']."\n";
|
|
echo " </td>\n";
|
|
echo " <td class='vtable' align='left'>\n";
|
|
echo " <table>\n";
|
|
echo " <tr>\n";
|
|
echo " <th class='vtable' style='width:80px; text-align: left;'> ".$text['label-sip_profile_domain_name']."</th>\n";
|
|
echo " <th class='vtable' style='width:70px; text-align: left;'>".$text['label-sip_profile_domain_alias']."</th>\n";
|
|
echo " <th class='vtable' style='width:70px; text-align: left;'>".$text['label-sip_profile_domain_parse']."</th>\n";
|
|
echo " </tr>\n";
|
|
$x = 0;
|
|
foreach($sip_profile_domains as $row) {
|
|
echo " <tr>\n";
|
|
if (strlen($row["sip_profile_domain_uuid"]) > 0) {
|
|
$sip_profile_domain_uuid = $row["sip_profile_domain_uuid"];
|
|
}
|
|
if (strlen($row["sip_profile_uuid"]) > 0) {
|
|
$sip_profile_uuid = $row["sip_profile_uuid"];
|
|
}
|
|
echo " <input type='hidden' name='sip_profile_domains[$x][sip_profile_domain_uuid]' value=\"".$sip_profile_domain_uuid."\">\n";
|
|
echo " <input type='hidden' name='sip_profile_domains[$x][sip_profile_uuid]' maxlength='255' value=\"".$sip_profile_uuid."\">\n";
|
|
echo " <td class=\"vtablerow\" style=\"\" onclick=\"label_to_form('label_sip_profile_domain_name_$x','sip_profile_domain_name_$x');\" nowrap=\"nowrap\">\n";
|
|
echo " <label id='label_sip_profile_domain_name_$x'>".$row["sip_profile_domain_name"]."</label>\n";
|
|
echo " <input id='sip_profile_domain_name_$x' class='formfld' style='display: none;' type='text' name='sip_profile_domains[$x][sip_profile_domain_name]' maxlength='255' value=\"".$row["sip_profile_domain_name"]."\">\n";
|
|
echo " </td>\n";
|
|
echo " <td class=\"vtablerow\" style=\"\" onclick=\"label_to_form('label_sip_profile_domain_alias_$x','sip_profile_domain_alias_$x');\" nowrap=\"nowrap\">\n";
|
|
echo " <label id='label_sip_profile_domain_alias_$x'>".$row["sip_profile_domain_alias"]."</label>\n";
|
|
echo " <select id='sip_profile_domain_alias_$x' class='formfld' style='display: none;' name='sip_profile_domains[$x][sip_profile_domain_alias]'>\n";
|
|
echo " <option value=''></option>\n";
|
|
if ($row["sip_profile_domain_alias"] == "true") {
|
|
echo " <option value='true' selected='selected'>".$text['label-true']."</option>\n";
|
|
}
|
|
else {
|
|
echo " <option value='true'>".$text['label-true']."</option>\n";
|
|
}
|
|
if ($row["sip_profile_domain_alias"] == "false") {
|
|
echo " <option value='false' selected='selected'>".$text['label-false']."</option>\n";
|
|
}
|
|
else {
|
|
echo " <option value='false'>".$text['label-false']."</option>\n";
|
|
}
|
|
echo " </select>\n";
|
|
|
|
echo " </td>\n";
|
|
echo " <td class=\"vtablerow\" style=\"\" onclick=\"label_to_form('label_sip_profile_domain_parse_$x','sip_profile_domain_parse_$x');\" nowrap=\"nowrap\">\n";
|
|
echo " <label id='label_sip_profile_domain_parse_$x'>".$row["sip_profile_domain_parse"]."</label>\n";
|
|
echo " <select id='sip_profile_domain_parse_$x' class='formfld' style='display: none;' name='sip_profile_domains[$x][sip_profile_domain_parse]'>\n";
|
|
echo " <option value=''></option>\n";
|
|
if ($row["sip_profile_domain_parse"] == "true") {
|
|
echo " <option value='true' selected='selected'>".$text['label-true']."</option>\n";
|
|
}
|
|
else {
|
|
echo " <option value='true'>".$text['label-true']."</option>\n";
|
|
}
|
|
if ($row["sip_profile_domain_parse"] == "false") {
|
|
echo " <option value='false' selected='selected'>".$text['label-false']."</option>\n";
|
|
}
|
|
else {
|
|
echo " <option value='false'>".$text['label-false']."</option>\n";
|
|
}
|
|
echo " </select>\n";
|
|
echo " </td>\n";
|
|
echo " <td class='list_control_icons' style='width: 25px;'>\n";
|
|
if (strlen($row["sip_profile_domain_name"]) > 0) {
|
|
echo " <a href=\"sip_profile_domain_delete.php?id=".$row["sip_profile_domain_uuid"]."&sip_profile_domain_uuid=".$row["sip_profile_domain_uuid"]."&a=delete\" alt='delete' onclick=\"return confirm('Do you really want to delete this?')\"><button type='button' class='btn btn-default list_control_icon'><span class='glyphicon glyphicon-remove'></span></button></a>\n";
|
|
}
|
|
echo " </td>\n";
|
|
echo " </tr>\n";
|
|
$x++;
|
|
}
|
|
echo " </table>\n";
|
|
echo " </td>\n";
|
|
echo " </tr>\n";
|
|
|
|
echo " <tr>\n";
|
|
echo " <td class='vncellreq' align='left'>\n";
|
|
echo " ".$text['label-sip_profile_settings']."\n";
|
|
echo " </td>\n";
|
|
echo " <td class='vtable' align='left'>\n";
|
|
echo " <table>\n";
|
|
echo " <tr>\n";
|
|
echo " <th class='vtable' style='text-align: left;'> ".$text['label-sip_profile_setting_name']."</th>\n";
|
|
echo " <th class='vtable' style='text-align: left;'>".$text['label-sip_profile_setting_value']."</th>\n";
|
|
echo " <th class='vtable' style='width:70px; text-align: left;'>".$text['label-sip_profile_setting_enabled']."</th>\n";
|
|
echo " <th class='vtable' style='text-align: left;'>".$text['label-sip_profile_setting_description']."</th>\n";
|
|
echo " </tr>\n";
|
|
$x = 0;
|
|
foreach($sip_profile_settings as $row) {
|
|
echo " <tr>\n";
|
|
echo " <input type='hidden' name='sip_profile_settings[$x][sip_profile_setting_uuid]' value=\"".$row["sip_profile_setting_uuid"]."\">\n";
|
|
echo " <input type='hidden' name='sip_profile_settings[$x][sip_profile_setting_uuid]' maxlength='255' value=\"".$row["sip_profile_setting_uuid"]."\">\n";
|
|
echo " <input type='hidden' name='sip_profile_settings[$x][sip_profile_uuid]' maxlength='255' value=\"".$row["sip_profile_uuid"]."\">\n";
|
|
echo " <td class=\"vtablerow\" style=\"\" onclick=\"label_to_form('label_sip_profile_setting_name_$x','sip_profile_setting_name_$x');\" nowrap=\"nowrap\">\n";
|
|
echo " <label id='label_sip_profile_setting_name_$x'>".$row["sip_profile_setting_name"]."</label>\n";
|
|
echo " <input id='sip_profile_setting_name_$x' class='formfld' style='display: none;' type='text' name='sip_profile_settings[$x][sip_profile_setting_name]' maxlength='255' value=\"".$row["sip_profile_setting_name"]."\">\n";
|
|
echo " </td>\n";
|
|
echo " <td class=\"vtablerow\" style=\"\" onclick=\"label_to_form('label_sip_profile_setting_value_$x','sip_profile_setting_value_$x');\" nowrap=\"nowrap\">\n";
|
|
echo " <label id='label_sip_profile_setting_value_$x'>".substr($row["sip_profile_setting_value"],0,22)." </label>\n";
|
|
echo " <input id='sip_profile_setting_value_$x' class='formfld' style='display: none;' type='text' name='sip_profile_settings[$x][sip_profile_setting_value]' maxlength='255' value=\"".$row["sip_profile_setting_value"]."\">\n";
|
|
echo " </td>\n";
|
|
echo " <td class=\"vtablerow\" style=\"\" onclick=\"label_to_form('label_sip_profile_setting_enabled_$x','sip_profile_setting_enabled_$x');\" nowrap=\"nowrap\">\n";
|
|
echo " <label id='label_sip_profile_setting_enabled_$x'>".$row["sip_profile_setting_enabled"]."</label>\n";
|
|
echo " <select id='sip_profile_setting_enabled_$x' class='formfld' style='display: none;' name='sip_profile_settings[$x][sip_profile_setting_enabled].'>\n";
|
|
echo " <option value=''></option>\n";
|
|
if ($row['sip_profile_setting_enabled'] == "true") {
|
|
echo " <option value='true' selected='selected'>".$text['label-true']."</option>\n";
|
|
}
|
|
else {
|
|
echo " <option value='true'>".$text['label-true']."</option>\n";
|
|
}
|
|
if ($row['sip_profile_setting_enabled'] == "false") {
|
|
echo " <option value='false' selected='selected'>".$text['label-false']."</option>\n";
|
|
}
|
|
else {
|
|
echo " <option value='false'>".$text['label-false']."</option>\n";
|
|
}
|
|
echo " </select>\n";
|
|
echo " </td>\n";
|
|
echo " <td class=\"vtablerow\" style=\"\" onclick=\"label_to_form('label_sip_profile_setting_description_$x','sip_profile_setting_description_$x');\" nowrap=\"nowrap\">\n";
|
|
echo " <label id='label_sip_profile_setting_description_$x'>".$row["sip_profile_setting_description"]." </label>\n";
|
|
echo " <input id='sip_profile_setting_description_$x' class='formfld' style='display: none;' type='text' name='sip_profile_settings[$x][sip_profile_setting_description]' maxlength='255' value=\"".$row["sip_profile_setting_description"]."\">\n";
|
|
echo " </td>\n";
|
|
echo " <td class='list_control_icons' style='width: 25px;'>\n";
|
|
if (strlen($row["sip_profile_setting_name"]) > 0) {
|
|
echo " <a href=\"sip_profile_setting_delete.php?id=".$row["sip_profile_setting_uuid"]."&sip_profile_uuid=".$sip_profile_uuid."&a=delete\" alt='delete' onclick=\"return confirm('Do you really want to delete this?')\"><button type='button' class='btn btn-default list_control_icon'><span class='glyphicon glyphicon-remove'></span></button></a>\n";
|
|
}
|
|
echo " </td>\n";
|
|
echo " </tr>\n";
|
|
$x++;
|
|
}
|
|
echo " </table>\n";
|
|
echo " </td>\n";
|
|
echo " </tr>\n";
|
|
|
|
echo "<tr>\n";
|
|
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
|
|
echo " ".$text['label-sip_profile_hostname']."\n";
|
|
echo "</td>\n";
|
|
echo "<td class='vtable' align='left'>\n";
|
|
echo " <input class='formfld' type='text' name='sip_profile_hostname' maxlength='255' value=\"$sip_profile_hostname\">\n";
|
|
echo "<br />\n";
|
|
echo $text['description-sip_profile_hostname']."\n";
|
|
echo "</td>\n";
|
|
echo "</tr>\n";
|
|
|
|
echo "<tr>\n";
|
|
echo "<td class='vncellreq' valign='top' align='left' nowrap='nowrap'>\n";
|
|
echo " ".$text['label-sip_profile_enabled']."\n";
|
|
echo "</td>\n";
|
|
echo "<td class='vtable' align='left'>\n";
|
|
echo " <select class='formfld' name='sip_profile_enabled'>\n";
|
|
echo " <option value=''></option>\n";
|
|
if ($sip_profile_enabled == "true") {
|
|
echo " <option value='true' selected='selected'>".$text['label-true']."</option>\n";
|
|
}
|
|
else {
|
|
echo " <option value='true'>".$text['label-true']."</option>\n";
|
|
}
|
|
if ($sip_profile_enabled == "false") {
|
|
echo " <option value='false' selected='selected'>".$text['label-false']."</option>\n";
|
|
}
|
|
else {
|
|
echo " <option value='false'>".$text['label-false']."</option>\n";
|
|
}
|
|
echo " </select>\n";
|
|
echo "<br />\n";
|
|
echo $text['description-sip_profile_enabled']."\n";
|
|
echo "</td>\n";
|
|
echo "</tr>\n";
|
|
|
|
echo "<tr>\n";
|
|
echo "<td class='vncellreq' valign='top' align='left' nowrap='nowrap'>\n";
|
|
echo " ".$text['label-sip_profile_description']."\n";
|
|
echo "</td>\n";
|
|
echo "<td class='vtable' align='left'>\n";
|
|
echo " <textarea class='formfld' type='text' name='sip_profile_description'>$sip_profile_description</textarea>\n";
|
|
echo "<br />\n";
|
|
echo $text['description-sip_profile_description']."\n";
|
|
echo "</td>\n";
|
|
echo "</tr>\n";
|
|
|
|
echo " <tr>\n";
|
|
echo " <td colspan='2' align='right'>\n";
|
|
if ($action == "update") {
|
|
echo " <input type='hidden' name='sip_profile_uuid' value='$sip_profile_uuid'>\n";
|
|
}
|
|
echo " <input type='submit' class='btn' value='".$text['button-save']."'>\n";
|
|
echo " </td>\n";
|
|
echo " </tr>";
|
|
echo "</table>";
|
|
echo "</form>";
|
|
echo "<br /><br />";
|
|
|
|
//include the footer
|
|
require_once "resources/footer.php";
|
|
|
|
?>
|