Files

229 lines
10 KiB
PHP
Raw Permalink Normal View History

2016-07-16 15:17:54 -06:00
<?php
2023-06-02 20:00:19 +00: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>
2024-09-05 16:10:04 -07:00
Portions created by the Initial Developer are Copyright (C) 2018-2024
2023-06-02 20:00:19 +00:00
the Initial Developer. All Rights Reserved.
Contributor(s):
Mark J Crane <markjcrane@fusionpbx.com>
*/
2016-07-16 15:17:54 -06:00
2022-10-10 16:35:14 -06:00
//includes files
2023-06-15 14:28:23 -03:00
require_once dirname(__DIR__, 2) . "/resources/require.php";
require_once "resources/check_auth.php";
2020-01-06 11:23:17 -07:00
require_once "resources/paging.php";
2016-07-16 15:17:54 -06:00
//check permissions
if (permission_exists('conference_profile_param_view')) {
//access granted
}
else {
echo "access denied";
exit;
}
//add multi-lingual support
$language = new text;
$text = $language->get();
2023-05-31 09:11:50 -06:00
//set from session variables
2025-03-04 14:25:47 -04:00
$list_row_edit_button = filter_var($_SESSION['theme']['list_row_edit_button']['boolean'] ?? false, FILTER_VALIDATE_BOOL);
2023-05-31 09:11:50 -06:00
//get the http post data
2023-05-31 09:11:50 -06:00
if (!empty($_POST['conference_profile_params'])) {
$action = $_POST['action'];
$conference_profile_uuid = $_POST['conference_profile_uuid'];
$conference_profile_params = $_POST['conference_profile_params'];
}
//process the http post data by action
2023-05-31 09:11:50 -06:00
if (!empty($action) && !empty($conference_profile_params)) {
switch ($action) {
case 'toggle':
if (permission_exists('conference_profile_param_edit')) {
$obj = new conference_profiles;
$obj->conference_profile_uuid = $conference_profile_uuid;
$obj->toggle_params($conference_profile_params);
}
break;
case 'delete':
if (permission_exists('conference_profile_param_delete')) {
$obj = new conference_profiles;
$obj->conference_profile_uuid = $conference_profile_uuid;
$obj->delete_params($conference_profile_params);
}
break;
}
header('Location: conference_profile_edit.php?id='.urlencode($conference_profile_uuid));
exit;
}
2016-07-16 15:17:54 -06:00
//get variables used to control the order
2023-05-31 09:11:50 -06:00
$order_by = $_GET["order_by"] ?? '';
$order = $_GET["order"] ?? '';
2016-07-17 00:00:22 -06:00
2016-07-16 15:17:54 -06:00
//prepare to page the results
$sql = "select count(conference_profile_param_uuid) ";
$sql .= "from v_conference_profile_params ";
$sql .= "where conference_profile_uuid = :conference_profile_uuid ";
$parameters['conference_profile_uuid'] = $conference_profile_uuid;
$database = new database;
2019-07-06 17:27:36 -06:00
$num_rows = $database->select($sql, $parameters, 'column');
2016-07-16 15:17:54 -06:00
//prepare to page the results
2023-05-31 09:11:50 -06:00
$rows_per_page = (!empty($_SESSION['domain']['paging']['numeric'])) ? $_SESSION['domain']['paging']['numeric'] : 50;
$param = "&id=".$conference_profile_uuid;
if (isset($_GET['page'])) {
2023-05-31 09:11:50 -06:00
$page = isset($_GET['page']) ? $_GET['page'] : 0;
list($paging_controls, $rows_per_page) = paging($num_rows, $param, $rows_per_page);
$offset = $rows_per_page * $page;
}
2016-07-16 15:17:54 -06:00
//get the list
$sql = str_replace('count(conference_profile_param_uuid)', '*', $sql);
$sql .= order_by($order_by, $order, 'profile_param_name', 'asc');
2023-05-31 09:11:50 -06:00
$sql .= limit_offset($rows_per_page ?? '', $offset ?? '');
$database = new database;
2023-05-31 09:11:50 -06:00
$result = $database->select($sql, $parameters ?? null, 'all');
2019-07-06 17:27:36 -06:00
unset($sql, $parameters);
2016-07-16 15:17:54 -06:00
//create token
$object = new token;
$token = $object->create('/app/conference_profiles/conference_profile_params.php');
2016-07-16 15:17:54 -06:00
//show the content
echo "<div class='action_bar' id='action_bar_sub'>\n";
2024-09-06 15:43:42 -07:00
echo " <div class='heading'><b id='heading_sub'>".$text['title-conference_profile_params']."</b><div class='count'>".number_format($num_rows)."</div></div>\n";
echo " <div class='actions'>\n";
echo button::create(['type'=>'button','id'=>'action_bar_sub_button_back','label'=>$text['button-back'],'icon'=>$_SESSION['theme']['button_icon_back'],'collapse'=>'hide-xs','style'=>'margin-right: 15px; display: none;','link'=>'conference_profiles.php']);
if (permission_exists('conference_profile_param_add')) {
echo button::create(['type'=>'button','label'=>$text['button-add'],'icon'=>$_SESSION['theme']['button_icon_add'],'id'=>'btn_add','collapse'=>'hide-xs','link'=>'conference_profile_param_edit.php?conference_profile_uuid='.escape($_GET['id'])]);
}
if (permission_exists('conference_profile_param_edit') && $result) {
2020-03-26 07:41:56 -06:00
echo button::create(['type'=>'button','label'=>$text['button-toggle'],'icon'=>$_SESSION['theme']['button_icon_toggle'],'name'=>'btn_toggle','collapse'=>'hide-xs','onclick'=>"modal_open('modal-toggle','btn_toggle');"]);
}
if (permission_exists('conference_profile_param_delete') && $result) {
2020-03-26 07:41:56 -06:00
echo button::create(['type'=>'button','label'=>$text['button-delete'],'icon'=>$_SESSION['theme']['button_icon_delete'],'name'=>'btn_delete','collapse'=>'hide-xs','onclick'=>"modal_open('modal-delete','btn_delete');"]);
}
echo "</div>\n";
echo " <div style='clear: both;'></div>\n";
echo "</div>\n";
2020-03-26 07:41:56 -06:00
if (permission_exists('conference_profile_param_edit') && $result) {
echo modal::create(['id'=>'modal-toggle','type'=>'toggle','actions'=>button::create(['type'=>'button','label'=>$text['button-continue'],'icon'=>'check','id'=>'btn_toggle','style'=>'float: right; margin-left: 15px;','collapse'=>'never','onclick'=>"modal_close(); list_action_set('toggle'); list_form_submit('form_list');"])]);
}
if (permission_exists('conference_profile_param_delete') && $result) {
echo modal::create(['id'=>'modal-delete','type'=>'delete','actions'=>button::create(['type'=>'button','label'=>$text['button-continue'],'icon'=>'check','id'=>'btn_delete','style'=>'float: right; margin-left: 15px;','collapse'=>'never','onclick'=>"modal_close(); list_action_set('delete'); list_form_submit('form_list');"])]);
}
2020-01-06 11:23:17 -07:00
echo $text['title_description-conference_profile_param']."\n";
echo "<br /><br />\n";
2016-07-16 15:17:54 -06:00
echo "<form id='form_list' method='post' action='conference_profile_params.php'>\n";
echo "<input type='hidden' id='action' name='action' value=''>\n";
echo "<input type='hidden' name='conference_profile_uuid' value=\"".escape($conference_profile_uuid)."\">\n";
2024-09-05 16:10:04 -07:00
echo "<div class='card'>\n";
echo "<table class='list'>\n";
echo "<tr class='list-header'>\n";
if (permission_exists('conference_profile_param_edit') || permission_exists('conference_profile_param_delete')) {
echo " <th class='checkbox'>\n";
2023-05-31 09:11:50 -06:00
echo " <input type='checkbox' id='checkbox_all' name='checkbox_all' onclick='list_all_toggle();' ".(!empty($result) ?: "style='visibility: hidden;'").">\n";
echo " </th>\n";
2016-07-16 15:17:54 -06:00
}
echo th_order_by('profile_param_name', $text['label-profile_param_name'], $order_by, $order, null, null, $param);
echo th_order_by('profile_param_value', $text['label-profile_param_value'], $order_by, $order, null, "class='pct-40'", $param);
echo th_order_by('profile_param_enabled', $text['label-profile_param_enabled'], $order_by, $order, null, "class='center'", $param);
echo th_order_by('profile_param_description', $text['label-profile_param_description'], $order_by, $order, null, "class='hide-sm-dn'", $param);
2025-03-04 14:25:47 -04:00
if (permission_exists('conference_profile_param_edit') && $list_row_edit_button) {
echo " <td class='action-button'>&nbsp;</td>\n";
2016-07-16 15:17:54 -06:00
}
echo "</tr>\n";
2016-07-16 15:17:54 -06:00
2023-05-31 09:11:50 -06:00
if (!empty($result)) {
$x = 0;
foreach ($result as $row) {
2016-07-16 15:17:54 -06:00
if (permission_exists('conference_profile_param_edit')) {
$list_row_url = 'conference_profile_param_edit.php?conference_profile_uuid='.urlencode($row['conference_profile_uuid']).'&id='.urlencode($row['conference_profile_param_uuid']);
2016-07-16 15:17:54 -06:00
}
echo "<tr class='list-row' href='".$list_row_url."'>\n";
if (permission_exists('conference_profile_param_edit') || permission_exists('conference_profile_param_delete')) {
echo " <td class='checkbox'>\n";
echo " <input type='checkbox' name='conference_profile_params[$x][checked]' id='checkbox_".$x."' value='true' onclick=\"if (!this.checked) { document.getElementById('checkbox_all').checked = false; }\">\n";
echo " <input type='hidden' name='conference_profile_params[$x][uuid]' value='".escape($row['conference_profile_param_uuid'])."' />\n";
echo " </td>\n";
}
echo " <td>\n";
2016-07-16 15:17:54 -06:00
if (permission_exists('conference_profile_param_edit')) {
echo " <a href='".$list_row_url."' title=\"".$text['button-edit']."\">".escape($row['profile_param_name'])."</a>\n";
2016-07-16 15:17:54 -06:00
}
else {
echo " ".escape($row['profile_param_name']);
2016-07-16 15:17:54 -06:00
}
echo " </td>\n";
echo " <td class='overflow'>".escape($row['profile_param_value'])."&nbsp;</td>\n";
if (permission_exists('conference_profile_param_edit')) {
echo " <td class='no-link center'>\n";
echo button::create(['type'=>'submit','class'=>'link','label'=>$text['label-'.$row['profile_param_enabled']],'title'=>$text['button-toggle'],'onclick'=>"list_self_check('checkbox_".$x."'); list_action_set('toggle'); list_form_submit('form_list')"]);
}
else {
echo " <td class='center'>\n";
echo $text['label-'.$row['profile_param_enabled']];
}
echo " </td>\n";
echo " <td class='description overflow hide-sm-dn'>".escape($row['profile_param_description'])."&nbsp;</td>\n";
2025-03-04 14:25:47 -04:00
if (permission_exists('conference_profile_param_edit') && $list_row_edit_button) {
echo " <td class='action-button'>\n";
echo button::create(['type'=>'button','title'=>$text['button-edit'],'icon'=>$_SESSION['theme']['button_icon_edit'],'link'=>$list_row_url]);
echo " </td>\n";
}
2016-07-16 15:17:54 -06:00
echo "</tr>\n";
$x++;
}
2019-07-06 17:27:36 -06:00
unset($result);
2016-07-16 15:17:54 -06:00
}
echo "</table>\n";
2024-09-05 16:10:04 -07:00
echo "</div>\n";
echo "<br />\n";
2023-05-31 09:11:50 -06:00
echo "<div align='center'>".!empty($paging_controls)."</div>\n";
echo "<input type='hidden' name='".$token['name']."' value='".$token['hash']."'>\n";
echo "</form>\n";
//make sub action bar sticky
echo "<script>\n";
echo " window.addEventListener('scroll', function(){\n";
echo " action_bar_scroll('action_bar_sub', 255, heading_modify, heading_restore);\n";
echo " }, false);\n";
echo " function heading_modify() {\n";
echo " document.getElementById('action_bar_sub_button_back').style.display = 'inline-block';\n";
echo " }\n";
echo " function heading_restore() {\n";
echo " document.getElementById('action_bar_sub_button_back').style.display = 'none';\n";
echo " }\n";
echo "</script>\n";
2016-07-16 15:17:54 -06:00
//include the footer
require_once "resources/footer.php";
2023-05-31 09:11:50 -06:00
?>