2017-06-13 07:09:36 +02:00
|
|
|
<?php
|
2023-06-02 21:47:40 +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>
|
|
|
|
|
Portions created by the Initial Developer are Copyright (C) 2018 - 2023
|
|
|
|
|
the Initial Developer. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
Contributor(s):
|
|
|
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
|
|
|
*/
|
2017-06-13 07:09:36 +02:00
|
|
|
|
2022-10-11 00:35:14 +02:00
|
|
|
//includes files
|
2023-06-15 19:28:23 +02:00
|
|
|
require_once dirname(__DIR__, 2) . "/resources/require.php";
|
2020-01-06 19:16:23 +01:00
|
|
|
require_once "resources/check_auth.php";
|
2017-06-13 07:09:36 +02:00
|
|
|
|
|
|
|
|
//check permissions
|
|
|
|
|
if (permission_exists('conference_control_add') || permission_exists('conference_control_edit')) {
|
|
|
|
|
//access granted
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo "access denied";
|
|
|
|
|
exit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//add multi-lingual support
|
|
|
|
|
$language = new text;
|
|
|
|
|
$text = $language->get();
|
|
|
|
|
|
2023-05-31 17:11:50 +02:00
|
|
|
//set the defaults
|
|
|
|
|
$control_name = '';
|
|
|
|
|
$control_description = '';
|
|
|
|
|
|
2017-06-13 07:09:36 +02:00
|
|
|
//action add or update
|
2023-05-31 17:11:50 +02:00
|
|
|
if (!empty($_REQUEST["id"]) && is_uuid($_REQUEST["id"])) {
|
2017-06-13 07:09:36 +02:00
|
|
|
$action = "update";
|
2019-07-07 00:37:13 +02:00
|
|
|
$conference_control_uuid = $_REQUEST["id"];
|
2017-06-13 07:09:36 +02:00
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$action = "add";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//get http post variables and set them to php variables
|
2023-05-31 17:11:50 +02:00
|
|
|
if (!empty($_POST)) {
|
2019-07-07 00:37:13 +02:00
|
|
|
$control_name = $_POST["control_name"];
|
2023-06-02 21:47:40 +02:00
|
|
|
$control_enabled = $_POST["control_enabled"] ?? 'false';
|
2019-07-07 00:37:13 +02:00
|
|
|
$control_description = $_POST["control_description"];
|
2017-06-13 07:09:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//process the user data and save it to the database
|
2023-05-31 17:11:50 +02:00
|
|
|
if (!empty($_POST) && empty($_POST["persistformvar"])) {
|
2017-06-13 07:09:36 +02:00
|
|
|
|
|
|
|
|
//get the uuid from the POST
|
|
|
|
|
if ($action == "update") {
|
2019-07-07 00:37:13 +02:00
|
|
|
$conference_control_uuid = $_POST["conference_control_uuid"];
|
2017-06-13 07:09:36 +02:00
|
|
|
}
|
|
|
|
|
|
2019-09-18 06:15:16 +02:00
|
|
|
//validate the token
|
|
|
|
|
$token = new token;
|
|
|
|
|
if (!$token->validate($_SERVER['PHP_SELF'])) {
|
|
|
|
|
message::add($text['message-invalid_token'],'negative');
|
|
|
|
|
header('Location: conference_controls.php');
|
|
|
|
|
exit;
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-13 07:09:36 +02:00
|
|
|
//check for all required data
|
|
|
|
|
$msg = '';
|
2023-05-05 18:46:37 +02:00
|
|
|
if (empty($control_name)) { $msg .= $text['message-required']." ".$text['label-control_name']."<br>\n"; }
|
|
|
|
|
if (empty($control_enabled)) { $msg .= $text['message-required']." ".$text['label-control_enabled']."<br>\n"; }
|
|
|
|
|
//if (empty($control_description)) { $msg .= $text['message-required']." ".$text['label-control_description']."<br>\n"; }
|
|
|
|
|
if (!empty($msg) && empty($_POST["persistformvar"])) {
|
2020-01-06 19:16:23 +01:00
|
|
|
$document['title'] = $text['title-conference_control'];
|
2017-06-13 07:09:36 +02:00
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//add the conference_control_uuid
|
2023-06-02 21:47:40 +02:00
|
|
|
if (empty($_POST["conference_control_uuid"]) || !is_uuid($_POST["conference_control_uuid"])) {
|
2017-06-13 07:09:36 +02:00
|
|
|
$conference_control_uuid = uuid();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//prepare the array
|
2019-09-19 17:17:27 +02:00
|
|
|
$array['conference_controls'][0]['conference_control_uuid'] = $conference_control_uuid;
|
|
|
|
|
$array['conference_controls'][0]['control_name'] = $control_name;
|
|
|
|
|
$array['conference_controls'][0]['control_enabled'] = $control_enabled;
|
|
|
|
|
$array['conference_controls'][0]['control_description'] = $control_description;
|
2017-06-13 07:09:36 +02:00
|
|
|
|
|
|
|
|
//save to the data
|
|
|
|
|
$database = new database;
|
|
|
|
|
$database->app_name = 'conference_controls';
|
2019-07-07 00:37:13 +02:00
|
|
|
$database->app_uuid = 'e1ad84a2-79e1-450c-a5b1-7507a043e048';
|
2023-05-05 18:46:37 +02:00
|
|
|
if (!empty($conference_control_uuid)) {
|
2017-06-13 07:09:36 +02:00
|
|
|
$database->uuid($conference_control_uuid);
|
|
|
|
|
}
|
|
|
|
|
$database->save($array);
|
|
|
|
|
$message = $database->message;
|
|
|
|
|
|
|
|
|
|
//redirect the user
|
|
|
|
|
if (isset($action)) {
|
|
|
|
|
if ($action == "add") {
|
2018-08-31 05:09:01 +02:00
|
|
|
message::add($text['message-add']);
|
2017-06-13 07:09:36 +02:00
|
|
|
}
|
|
|
|
|
if ($action == "update") {
|
2018-08-31 05:09:01 +02:00
|
|
|
message::add($text['message-update']);
|
2017-06-13 07:09:36 +02:00
|
|
|
}
|
|
|
|
|
header("Location: conference_controls.php");
|
|
|
|
|
return;
|
|
|
|
|
}
|
2023-05-05 18:46:37 +02:00
|
|
|
} //(is_array($_POST) && empty($_POST["persistformvar"]))
|
2017-06-13 07:09:36 +02:00
|
|
|
|
|
|
|
|
//pre-populate the form
|
2023-06-02 21:47:40 +02:00
|
|
|
if (!empty($_GET) && empty($_POST["persistformvar"])) {
|
2019-07-07 00:37:13 +02:00
|
|
|
$conference_control_uuid = $_GET["id"];
|
2017-06-13 07:09:36 +02:00
|
|
|
$sql = "select * from v_conference_controls ";
|
|
|
|
|
//$sql .= "where domain_uuid = '$domain_uuid' ";
|
2019-07-07 00:37:13 +02:00
|
|
|
$sql .= "where conference_control_uuid = :conference_control_uuid ";
|
|
|
|
|
$parameters['conference_control_uuid'] = $conference_control_uuid;
|
|
|
|
|
$database = new database;
|
2023-06-02 00:39:05 +02:00
|
|
|
$row = $database->select($sql, $parameters, 'row');
|
2023-05-31 17:11:50 +02:00
|
|
|
if (!empty($row)) {
|
2017-06-13 07:09:36 +02:00
|
|
|
$control_name = $row["control_name"];
|
|
|
|
|
$control_enabled = $row["control_enabled"];
|
|
|
|
|
$control_description = $row["control_description"];
|
|
|
|
|
}
|
2019-07-07 00:37:13 +02:00
|
|
|
unset($sql, $parameters, $row);
|
2017-06-13 07:09:36 +02:00
|
|
|
}
|
|
|
|
|
|
2023-02-17 22:21:41 +01:00
|
|
|
//set the defaults
|
2023-05-05 18:46:37 +02:00
|
|
|
if (empty($control_enabled)) { $control_enabled = 'true'; }
|
2023-02-17 22:21:41 +01:00
|
|
|
|
2019-09-18 06:15:16 +02:00
|
|
|
//create token
|
|
|
|
|
$object = new token;
|
|
|
|
|
$token = $object->create($_SERVER['PHP_SELF']);
|
|
|
|
|
|
2017-06-13 07:09:36 +02:00
|
|
|
//show the header
|
2020-01-06 19:16:23 +01:00
|
|
|
$document['title'] = $text['title-conference_control'];
|
2017-06-13 07:09:36 +02:00
|
|
|
require_once "resources/header.php";
|
|
|
|
|
|
|
|
|
|
//show the content
|
2020-01-15 17:35:52 +01:00
|
|
|
echo "<form name='frm' id='frm' method='post'>\n";
|
|
|
|
|
|
|
|
|
|
echo "<div class='action_bar' id='action_bar'>\n";
|
|
|
|
|
echo " <div class='heading'><b>".$text['title-conference_control']."</b></div>\n";
|
|
|
|
|
echo " <div class='actions'>\n";
|
2020-03-05 08:05:45 +01:00
|
|
|
echo button::create(['type'=>'button','label'=>$text['button-back'],'icon'=>$_SESSION['theme']['button_icon_back'],'id'=>'btn_back','collapse'=>'hide-xs','style'=>'margin-right: 15px;','link'=>'conference_controls.php']);
|
|
|
|
|
echo button::create(['type'=>'submit','label'=>$text['button-save'],'icon'=>$_SESSION['theme']['button_icon_save'],'id'=>'btn_save','collapse'=>'hide-xs']);
|
2020-01-15 17:35:52 +01:00
|
|
|
echo " </div>\n";
|
|
|
|
|
echo " <div style='clear: both;'></div>\n";
|
|
|
|
|
echo "</div>\n";
|
|
|
|
|
|
|
|
|
|
echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
|
2017-06-13 07:09:36 +02:00
|
|
|
|
|
|
|
|
echo "<tr>\n";
|
2020-01-15 17:35:52 +01:00
|
|
|
echo "<td width='30%' class='vncellreq' valign='top' align='left' nowrap='nowrap'>\n";
|
2017-06-13 07:09:36 +02:00
|
|
|
echo " ".$text['label-control_name']."\n";
|
|
|
|
|
echo "</td>\n";
|
2020-01-15 17:35:52 +01:00
|
|
|
echo "<td width='70%' class='vtable' align='left'>\n";
|
2018-06-09 19:39:20 +02:00
|
|
|
echo " <input class='formfld' type='text' name='control_name' maxlength='255' value=\"".escape($control_name)."\">\n";
|
2017-06-13 07:09:36 +02:00
|
|
|
echo "<br />\n";
|
|
|
|
|
echo $text['description-control_name']."\n";
|
|
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
|
|
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo "<td class='vncellreq' valign='top' align='left' nowrap='nowrap'>\n";
|
|
|
|
|
echo " ".$text['label-control_enabled']."\n";
|
|
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<td class='vtable' align='left'>\n";
|
2023-02-14 02:02:01 +01:00
|
|
|
if (substr($_SESSION['theme']['input_toggle_style']['text'], 0, 6) == 'switch') {
|
|
|
|
|
echo " <label class='switch'>\n";
|
|
|
|
|
echo " <input type='checkbox' id='control_enabled' name='control_enabled' value='true' ".($control_enabled == 'true' ? "checked='checked'" : null).">\n";
|
|
|
|
|
echo " <span class='slider'></span>\n";
|
|
|
|
|
echo " </label>\n";
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo " <select class='formfld' id='control_enabled' name='control_enabled'>\n";
|
|
|
|
|
echo " <option value='true' ".($control_enabled == 'true' ? "selected='selected'" : null).">".$text['option-true']."</option>\n";
|
2023-02-14 19:19:02 +01:00
|
|
|
echo " <option value='false' ".($control_enabled == 'false' ? "selected='selected'" : null).">".$text['option-false']."</option>\n";
|
2023-02-14 02:02:01 +01:00
|
|
|
echo " </select>\n";
|
|
|
|
|
}
|
2017-06-13 07:09:36 +02:00
|
|
|
echo "<br />\n";
|
|
|
|
|
echo $text['description-control_enabled']."\n";
|
|
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
|
|
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
|
|
|
|
|
echo " ".$text['label-control_description']."\n";
|
|
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<td class='vtable' align='left'>\n";
|
2018-06-09 19:39:20 +02:00
|
|
|
echo " <input class='formfld' type='text' name='control_description' maxlength='255' value=\"".escape($control_description)."\">\n";
|
2017-06-13 07:09:36 +02:00
|
|
|
echo "<br />\n";
|
|
|
|
|
echo $text['description-control_description']."\n";
|
|
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
2020-01-15 17:35:52 +01:00
|
|
|
|
|
|
|
|
echo "</table>";
|
|
|
|
|
echo "<br /><br />";
|
|
|
|
|
|
2017-06-13 07:09:36 +02:00
|
|
|
if ($action == "update") {
|
2020-01-15 17:35:52 +01:00
|
|
|
echo "<input type='hidden' name='conference_control_uuid' value='".escape($conference_control_uuid)."'>\n";
|
2017-06-13 07:09:36 +02:00
|
|
|
}
|
2020-01-15 17:35:52 +01:00
|
|
|
echo "<input type='hidden' name='".$token['name']."' value='".$token['hash']."'>\n";
|
|
|
|
|
|
2017-06-13 07:09:36 +02:00
|
|
|
echo "</form>";
|
|
|
|
|
|
|
|
|
|
if ($action == "update") {
|
|
|
|
|
require "conference_control_details.php";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//include the footer
|
|
|
|
|
require_once "resources/footer.php";
|
|
|
|
|
|
2023-02-14 02:02:01 +01:00
|
|
|
?>
|