fusionpbx/app/fax_queue/fax_queue.php

387 lines
18 KiB
PHP
Raw Permalink Normal View History

2022-03-31 20:24:00 +02:00
<?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) 2023
2022-03-31 20:24:00 +02:00
the Initial Developer. All Rights Reserved.
*/
2022-10-11 00:35:14 +02:00
//includes files
Use magic constant dir (#6711) * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ * use magic constant __DIR__ to load only functions.php * replace spaces with tab character * update dirname command to use levels instead of nesting * use magic constant __DIR__ * update dirname command to use levels instead of nesting * Update access_control_edit.php * Update access_control_import.php * Update access_controls.php * Update dnd.php * Update access_controls_reload.php * Update call_center_agents.php * Update call_center_agents.php * Update fax_queue.php * Update login.php * Update pdo.php * Update pdo_vm.php * Update switch.php * Update index.php * Update css.php * Update v_mailto.php * Update fax_to_email.php --------- Co-authored-by: FusionPBX <markjcrane@gmail.com>
2023-06-15 19:28:23 +02:00
require_once dirname(__DIR__, 2) . "/resources/require.php";
2022-03-31 20:24:00 +02:00
require_once "resources/check_auth.php";
require_once "resources/paging.php";
//check permissions
if (permission_exists('fax_queue_view')) {
//access granted
}
else {
echo "access denied";
exit;
}
//set defaults
$database = database::new();
$domain_uuid = $_SESSION['domain_uuid'] ?? '';
$user_uuid = $_SESSION['user_uuid'] ?? '';
$settings = new settings(['database' => $database, 'domain_uuid' => $domain_uuid, 'user_uuid' => $user_uuid]);
//set default permissions
$permission = [];
$permission['fax_queue_add'] = permission_exists('fax_queue_add');
$permission['fax_queue_delete'] = permission_exists('fax_queue_delete');
$permission['fax_queue_domain'] = permission_exists('fax_queue_domain');
$permission['fax_queue_all'] = permission_exists('fax_queue_all');
$permission['fax_queue_edit'] = permission_exists('fax_queue_edit');
2022-03-31 20:24:00 +02:00
//add multi-lingual support
$language = new text;
$text = $language->get();
//get the http post data
if (isset($_REQUEST['action'])) {
$action = $_REQUEST['action'];
}
//add the search
if (isset($_REQUEST["search"])) {
$search = strtolower($_REQUEST["search"]);
2022-03-31 20:24:00 +02:00
}
//get the fax_queue item checked
if (isset($_REQUEST['fax_queue'])) {
$fax_queue = $_REQUEST['fax_queue'];
}
2022-03-31 20:24:00 +02:00
//process the http post data by action
2023-07-06 22:08:54 +02:00
if (!empty($action) && !empty($fax_queue) && !empty($fax_queue)) {
2022-03-31 20:24:00 +02:00
switch ($action) {
case 'copy':
if ($permission['fax_queue_add']) {
2022-03-31 20:24:00 +02:00
$obj = new fax_queue;
$obj->copy($fax_queue);
}
break;
//case 'toggle':
// if ($permission['fax_queue_edit']) {
2022-03-31 20:24:00 +02:00
// $obj = new fax_queue;
// $obj->toggle($fax_queue);
// }
// break;
case 'delete':
if ($permission['fax_queue_delete']) {
2022-03-31 20:24:00 +02:00
$obj = new fax_queue;
$obj->delete($fax_queue);
}
break;
}
//redirect the user
header('Location: fax_queue.php'.(!empty($search) ? '?search='.urlencode($search) : ''));
2022-03-31 20:24:00 +02:00
exit;
}
//set the time zone
$time_zone = $settings->get('domain', 'time_zone', date_default_timezone_get());
2022-03-31 20:24:00 +02:00
//get order and order by
2023-05-30 00:25:05 +02:00
$order_by = $_GET["order_by"] ?? null;
$order = $_GET["order"] ?? null;
2022-03-31 20:24:00 +02:00
//get the count
$sql = "select count(fax_queue_uuid) ";
2023-01-14 23:27:02 +01:00
$sql .= "from v_fax_queue as q ";
$sql .= "LEFT JOIN v_users AS u ON q.insert_user = u.user_uuid ";
if (!empty($_GET['show']) && $_GET['show'] == "all" && $permission['fax_queue_all']) {
// show faxes for all domains
$sql .= "WHERE true ";
}
elseif ($permission['fax_queue_domain']) {
// show faxes for one domain
$sql .= "WHERE q.domain_uuid = :domain_uuid ";
2023-01-14 02:11:01 +01:00
$parameters['domain_uuid'] = $domain_uuid;
}
else {
// show only assigned fax extensions
$sql .= "WHERE q.domain_uuid = :domain_uuid ";
$sql .= "AND u.user_uuid = :user_uuid ";
$parameters['domain_uuid'] = $domain_uuid;
$parameters['user_uuid'] = $user_uuid;
}
2022-03-31 20:24:00 +02:00
if (isset($search)) {
$sql .= "AND (";
$sql .= " LOWER(q.hostname) LIKE :search ";
$sql .= " OR LOWER(q.fax_caller_id_name) LIKE :search ";
$sql .= " OR LOWER(q.fax_caller_id_number) LIKE :search ";
$sql .= " OR LOWER(q.fax_number) LIKE :search ";
$sql .= " OR LOWER(q.fax_email_address) LIKE :search ";
$sql .= " OR LOWER(u.username) LIKE :search ";
$sql .= " OR LOWER(q.fax_file) LIKE :search ";
$sql .= " OR LOWER(q.fax_status) LIKE :search ";
$sql .= " OR LOWER(q.fax_accountcode) LIKE :search ";
2022-03-31 20:24:00 +02:00
$sql .= ") ";
$parameters['search'] = '%' . $search . '%';
2022-03-31 20:24:00 +02:00
}
2023-07-06 22:08:54 +02:00
if (isset($_GET["fax_status"]) && !empty($_GET["fax_status"])) {
$sql .= "AND q.fax_status = :fax_status ";
$parameters['fax_status'] = $_GET["fax_status"];
}
2023-05-30 00:25:05 +02:00
$num_rows = $database->select($sql, $parameters ?? null, 'column');
2022-03-31 20:24:00 +02:00
unset($sql, $parameters);
//prepare to page the results
$rows_per_page = $settings->get('domain', 'paging', 50);
2023-05-30 00:25:05 +02:00
$param = !empty($search) ? "&search=".$search : null;
$param = (!empty($_GET['show']) && $_GET['show'] == 'all' && $permission['fax_queue_all']) ? "&show=all" : null;
2023-05-30 00:25:05 +02:00
$page = !empty($_GET['page']) && is_numeric($_GET['page']) ? $_GET['page'] : 0;
2022-03-31 20:24:00 +02:00
list($paging_controls, $rows_per_page) = paging($num_rows, $param, $rows_per_page);
list($paging_controls_mini, $rows_per_page) = paging($num_rows, $param, $rows_per_page, true);
$offset = $rows_per_page * $page;
//get the list
$sql = "SELECT ";
$sql .= "d.domain_name, ";
$sql .= "q.domain_uuid, ";
$sql .= "q.fax_queue_uuid, ";
$sql .= "q.fax_uuid, ";
$sql .= "q.fax_date, ";
$sql .= "to_char(timezone(:time_zone, q.fax_date), 'DD Mon YYYY') as fax_date_formatted, ";
$sql .= "to_char(timezone(:time_zone, q.fax_date), 'HH12:MI:SS am') as fax_time_formatted, ";
$sql .= "q.hostname, ";
$sql .= "q.fax_caller_id_name, ";
$sql .= "q.fax_caller_id_number, ";
$sql .= "q.fax_number, ";
$sql .= "q.fax_prefix, ";
$sql .= "q.fax_email_address, ";
$sql .= "u.username as insert_user, ";
$sql .= "q.fax_file, ";
$sql .= "q.fax_status, ";
$sql .= "q.fax_retry_date, ";
$sql .= "to_char(timezone(:time_zone, q.fax_retry_date), 'DD Mon YYYY') as fax_retry_date_formatted, ";
$sql .= "to_char(timezone(:time_zone, q.fax_retry_date), 'HH12:MI:SS am') as fax_retry_time_formatted, ";
$sql .= "q.fax_notify_date, ";
$sql .= "to_char(timezone(:time_zone, q.fax_notify_date), 'DD Mon YYYY') as fax_notify_date_formatted, ";
$sql .= "to_char(timezone(:time_zone, q.fax_notify_date), 'HH12:MI:SS am') as fax_notify_time_formatted, ";
$sql .= "q.fax_retry_count, ";
$sql .= "q.fax_accountcode, ";
$sql .= "q.fax_command ";
$sql .= "FROM v_fax_queue AS q ";
$sql .= "LEFT JOIN v_users AS u ON q.insert_user = u.user_uuid ";
$sql .= "JOIN v_domains AS d ON q.domain_uuid = d.domain_uuid ";
if (!empty($_GET['show']) && $_GET['show'] == "all" && $permission['fax_queue_all']) {
// show faxes for all domains
$sql .= "WHERE true ";
}
elseif ($permission['fax_queue_domain']) {
// show faxes for one domain
$sql .= "WHERE q.domain_uuid = :domain_uuid ";
$parameters['domain_uuid'] = $domain_uuid;
}
2023-01-14 02:11:01 +01:00
else {
// show only assigned fax extensions
$sql .= "WHERE q.domain_uuid = :domain_uuid ";
$sql .= "AND u.user_uuid = :user_uuid ";
2023-01-14 02:11:01 +01:00
$parameters['domain_uuid'] = $domain_uuid;
$parameters['user_uuid'] = $user_uuid;
2023-01-14 02:11:01 +01:00
}
if (isset($search)) {
$sql .= "AND (";
$sql .= " LOWER(q.hostname) LIKE :search ";
$sql .= " OR LOWER(q.fax_caller_id_name) LIKE :search ";
$sql .= " OR LOWER(q.fax_caller_id_number) LIKE :search ";
$sql .= " OR LOWER(q.fax_number) LIKE :search ";
$sql .= " OR LOWER(q.fax_email_address) LIKE :search ";
$sql .= " OR LOWER(u.username) LIKE :search ";
$sql .= " OR LOWER(q.fax_file) LIKE :search ";
$sql .= " OR LOWER(q.fax_status) LIKE :search ";
$sql .= " OR LOWER(q.fax_accountcode) LIKE :search ";
2022-03-31 20:24:00 +02:00
$sql .= ") ";
$parameters['search'] = '%' . $search . '%';
2022-03-31 20:24:00 +02:00
}
2023-07-06 22:08:54 +02:00
if (isset($_GET["fax_status"]) && !empty($_GET["fax_status"])) {
$sql .= "AND q.fax_status = :fax_status ";
$parameters['fax_status'] = $_GET["fax_status"];
}
$sql .= order_by($order_by, $order, 'fax_date', 'desc');
2022-03-31 20:24:00 +02:00
$sql .= limit_offset($rows_per_page, $offset);
$parameters['time_zone'] = $time_zone;
2022-03-31 20:24:00 +02:00
$fax_queue = $database->select($sql, $parameters, 'all');
unset ($sql, $parameters);
2022-03-31 20:24:00 +02:00
//create token
2022-03-31 20:24:00 +02:00
$object = new token;
$token = $object->create($_SERVER['PHP_SELF']);
//additional includes
2022-03-31 20:24:00 +02:00
$document['title'] = $text['title-fax_queue'];
require_once "resources/header.php";
//show the content
echo "<div class='action_bar' id='action_bar'>\n";
2024-09-07 00:43:42 +02:00
echo " <div class='heading'><b>".$text['title-fax_queue']."</b><div class='count'>".number_format($num_rows)."</div></div>\n";
2022-03-31 20:24:00 +02:00
echo " <div class='actions'>\n";
echo button::create(['type'=>'button','label'=>$text['button-back'],'icon'=>$settings->get('theme', 'button_icon_back'),'id'=>'btn_back','style'=>'margin-right: 15px;','link'=>'/app/fax/fax.php']);
if ($permission['fax_queue_add']) {
echo button::create(['type'=>'button','label'=>$text['button-add'],'icon'=>$settings->get('theme', 'button_icon_add'),'id'=>'btn_add','name'=>'btn_add','link'=>'fax_queue_edit.php']);
}
if ($permission['fax_queue_add'] && $fax_queue) {
echo button::create(['type'=>'button','label'=>$text['button-copy'],'icon'=>$settings->get('theme', 'button_icon_copy'),'id'=>'btn_copy','name'=>'btn_copy','style'=>'display:none;','onclick'=>"modal_open('modal-copy','btn_copy');"]);
2022-03-31 20:24:00 +02:00
}
//if ($permission['fax_queue_edit'] && $fax_queue) {
// echo button::create(['type'=>'button','label'=>$text['button-toggle'],'icon'=>$settings->get('theme', 'button_icon_toggle'),'id'=>'btn_toggle','name'=>'btn_toggle','style'=>'display:none;','onclick'=>"modal_open('modal-toggle','btn_toggle');"]);
2022-03-31 20:24:00 +02:00
//}
if ($permission['fax_queue_delete'] && $fax_queue) {
echo button::create(['type'=>'button','label'=>$text['button-delete'],'icon'=>$settings->get('theme', 'button_icon_delete'),'id'=>'btn_delete','name'=>'btn_delete','style'=>'display:none;','onclick'=>"modal_open('modal-delete','btn_delete');"]);
2022-03-31 20:24:00 +02:00
}
if ($permission['fax_queue_all']) {
2023-05-30 00:25:05 +02:00
if (!empty($_GET['show']) && $_GET['show'] == 'all') {
2022-03-31 20:24:00 +02:00
echo " <input type='hidden' name='show' value='all'>\n";
}
else {
echo button::create(['type'=>'button','label'=>$text['button-show_all'],'icon'=>$settings->get('theme', 'button_icon_all'),'link'=>'?show=all']);
2022-03-31 20:24:00 +02:00
}
}
echo "<form id='form_search' class='inline' method='get'>\n";
echo " <select class='formfld' name='fax_status' style='margin-left: 15px;'>\n";
echo " <option value='' selected='selected' disabled hidden>".$text['label-fax_status']."...</option>";
echo " <option value=''></option>\n";
2023-05-30 00:25:05 +02:00
echo " <option value='waiting' ".(!empty($_GET["fax_status"]) && $_GET["fax_status"] == "waiting" ? "selected='selected'" : null).">".ucwords($text['label-waiting'])."</option>\n";
echo " <option value='sending' ".(!empty($_GET["fax_status"]) && $_GET["fax_status"] == "sending" ? "selected='selected'" : null).">".ucwords($text['label-sending'])."</option>\n";
echo " <option value='trying' ".(!empty($_GET["fax_status"]) && $_GET["fax_status"] == "trying" ? "selected='selected'" : null).">".ucwords($text['label-trying'])."</option>\n";
echo " <option value='sent' ".(!empty($_GET["fax_status"]) && $_GET["fax_status"] == "sent" ? "selected='selected'" : null).">".ucwords($text['label-sent'])."</option>\n";
echo " <option value='busy' ".(!empty($_GET["fax_status"]) && $_GET["fax_status"] == "busy" ? "selected='selected'" : null).">".ucwords($text['label-busy'])."</option>\n";
echo " <option value='failed' ".(!empty($_GET["fax_status"]) && $_GET["fax_status"] == "failed" ? "selected='selected'" : null).">".ucwords($text['label-failed'])."</option>\n";
echo " </select>\n";
echo "<input type='text' class='txt list-search' name='search' id='search' value=\"".escape($search ?? '')."\" placeholder=\"".$text['label-search']."\" />";
echo button::create(['label'=>$text['button-search'],'icon'=>$settings->get('theme', 'button_icon_search'),'type'=>'submit','id'=>'btn_search']);
2023-07-06 22:08:54 +02:00
if (!empty($paging_controls_mini)) {
echo "<span style='margin-left: 15px;'>".$paging_controls_mini."</span>\n";
2022-03-31 20:24:00 +02:00
}
echo " </form>\n";
echo " </div>\n";
echo " <div style='clear: both;'></div>\n";
echo "</div>\n";
if ($permission['fax_queue_add'] && $fax_queue) {
2022-03-31 20:24:00 +02:00
echo modal::create(['id'=>'modal-copy','type'=>'copy','actions'=>button::create(['type'=>'button','label'=>$text['button-continue'],'icon'=>'check','id'=>'btn_copy','style'=>'float: right; margin-left: 15px;','collapse'=>'never','onclick'=>"modal_close(); list_action_set('copy'); list_form_submit('form_list');"])]);
}
//if ($permission['fax_queue_edit'] && $fax_queue) {
2022-03-31 20:24:00 +02:00
// 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['fax_queue_delete'] && $fax_queue) {
2022-03-31 20:24:00 +02:00
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');"])]);
}
echo "<form id='form_list' method='post'>\n";
echo "<input type='hidden' id='action' name='action' value=''>\n";
2023-05-30 00:25:05 +02:00
echo "<input type='hidden' name='search' value=\"".escape($search ?? '')."\">\n";
2022-03-31 20:24:00 +02:00
echo "<div class='card'>\n";
2022-03-31 20:24:00 +02:00
echo "<table class='list'>\n";
echo "<tr class='list-header'>\n";
if ($permission['fax_queue_add'] || $permission['fax_queue_edit'] || $permission['fax_queue_delete']) {
2022-03-31 20:24:00 +02:00
echo " <th class='checkbox'>\n";
2023-05-30 00:25:05 +02:00
echo " <input type='checkbox' id='checkbox_all' name='checkbox_all' onclick='list_all_toggle(); checkbox_on_change(this);' ".(empty($fax_queue) ? "style='visibility: hidden;'" : null).">\n";
2022-03-31 20:24:00 +02:00
echo " </th>\n";
}
if (!empty($_GET['show']) && $_GET['show'] == 'all' && $permission['fax_queue_all']) {
2022-03-31 20:24:00 +02:00
echo th_order_by('domain_name', $text['label-domain'], $order_by, $order);
}
//echo th_order_by('fax_date', $text['label-fax_date'], $order_by, $order);
echo "<th class='center shrink'>".$text['label-date']."</th>\n";
echo "<th class='center shrink hide-md-dn'>".$text['label-time']."</th>\n";
echo th_order_by('hostname', $text['label-hostname'], $order_by, $order, null, "class='hide-md-dn'");
echo th_order_by('fax_caller_id_name', $text['label-fax_caller_id_name'], $order_by, $order, null, "class='hide-md-dn'");
2022-03-31 20:24:00 +02:00
echo th_order_by('fax_caller_id_number', $text['label-fax_caller_id_number'], $order_by, $order);
echo th_order_by('fax_number', $text['label-fax_number'], $order_by, $order);
echo th_order_by('fax_email_address', $text['label-fax_email_address'], $order_by, $order);
echo th_order_by('insert_user', $text['label-insert_user'], $order_by, $order);
// echo th_order_by('fax_file', $text['label-fax_file'], $order_by, $order);
2022-03-31 20:24:00 +02:00
echo th_order_by('fax_status', $text['label-fax_status'], $order_by, $order);
echo th_order_by('fax_retry_date', $text['label-fax_retry_date'], $order_by, $order);
echo th_order_by('fax_notify_date', $text['label-fax_notify_date'], $order_by, $order);
2022-03-31 20:24:00 +02:00
echo th_order_by('fax_retry_count', $text['label-fax_retry_count'], $order_by, $order);
if ($permission['fax_queue_edit'] && $settings->get('theme', 'list_row_edit_button', false)) {
2022-03-31 20:24:00 +02:00
echo " <td class='action-button'>&nbsp;</td>\n";
}
echo "</tr>\n";
2023-07-06 22:08:54 +02:00
if (!empty($fax_queue)) {
2022-03-31 20:24:00 +02:00
$x = 0;
foreach ($fax_queue as $row) {
$list_row_url = '';
if ($permission['fax_queue_edit']) {
2022-03-31 20:24:00 +02:00
$list_row_url = "fax_queue_edit.php?id=".urlencode($row['fax_queue_uuid']);
if ($row['domain_uuid'] != $_SESSION['domain_uuid'] && permission_exists('domain_select')) {
$list_row_url .= '&domain_uuid='.urlencode($row['domain_uuid']).'&domain_change=true';
}
2022-03-31 20:24:00 +02:00
}
echo "<tr class='list-row' href='".$list_row_url."'>\n";
if ($permission['fax_queue_add'] || $permission['fax_queue_edit'] || $permission['fax_queue_delete']) {
2022-03-31 20:24:00 +02:00
echo " <td class='checkbox'>\n";
echo " <input type='checkbox' name='fax_queue[$x][checked]' id='checkbox_".$x."' value='true' onclick=\"checkbox_on_change(this); if (!this.checked) { document.getElementById('checkbox_all').checked = false; }\">\n";
echo " <input type='hidden' name='fax_queue[$x][fax_queue_uuid]' value='".escape($row['fax_queue_uuid'])."' />\n";
echo " </td>\n";
}
if (!empty($_GET['show']) && $_GET['show'] == 'all' && $permission['fax_queue_all']) {
echo " <td>".escape($row['domain_name'])."</td>\n";
2022-03-31 20:24:00 +02:00
}
echo " <td nowrap='nowrap'>".escape($row['fax_date_formatted'])."</td>\n";
echo " <td class='hide-md-dn' nowrap='nowrap'>".escape($row['fax_time_formatted'])."</td>\n";
echo " <td class='hide-md-dn'>".escape($row['hostname'])."</td>\n";
echo " <td class='hide-md-dn'>".escape($row['fax_caller_id_name'])."</td>\n";
2022-03-31 20:24:00 +02:00
echo " <td>".escape($row['fax_caller_id_number'])."</td>\n";
echo " <td>".escape($row['fax_number'])."</td>\n";
2023-07-06 22:08:54 +02:00
echo " <td>".escape(str_replace(',', ' ', $row['fax_email_address'] ?? ''))."</td>\n";
echo " <td>".escape($row['insert_user']) ."</td>\n";
// echo " <td>".escape($row['fax_file'])."</td>\n";
echo " <td>".ucwords($text['label-'.$row['fax_status']])."</td>\n";
echo " <td>".escape($row['fax_retry_date_formatted'])." ".escape($row['fax_retry_time_formatted'])."</td>\n";
echo " <td>".escape($row['fax_notify_date_formatted'])." ".escape($row['fax_notify_time_formatted'])."</td>\n";
2022-03-31 20:24:00 +02:00
echo " <td>".escape($row['fax_retry_count'])."</td>\n";
if ($permission['fax_queue_edit'] && $settings->get('theme', 'list_row_edit_button', false)) {
2022-03-31 20:24:00 +02:00
echo " <td class='action-button'>\n";
echo button::create(['type'=>'button','title'=>$text['button-edit'],'icon' => $settings->get('theme', 'button_icon_edit'),'link'=>$list_row_url]);
2022-03-31 20:24:00 +02:00
echo " </td>\n";
}
echo "</tr>\n";
$x++;
}
unset($fax_queue);
}
echo "</table>\n";
echo "</div>\n";
2022-03-31 20:24:00 +02:00
echo "<br />\n";
echo "<div align='center'>".$paging_controls."</div>\n";
echo "<input type='hidden' name='".$token['name']."' value='".$token['hash']."'>\n";
echo "</form>\n";
//include the footer
require_once "resources/footer.php";
?>