191 lines
6.4 KiB
PHP
191 lines
6.4 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) 2008-2018
|
|
the Initial Developer. All Rights Reserved.
|
|
|
|
Contributor(s):
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
*/
|
|
|
|
//includes
|
|
require_once "root.php";
|
|
require_once "resources/require.php";
|
|
require_once "resources/check_auth.php";
|
|
|
|
//check permissions
|
|
if (permission_exists('fax_log_view')) {
|
|
//access granted
|
|
}
|
|
else {
|
|
echo "access denied";
|
|
exit;
|
|
}
|
|
|
|
//add multi-lingual support
|
|
$language = new text;
|
|
$text = $language->get();
|
|
|
|
//get ids
|
|
$fax_log_uuid = $_REQUEST["id"];
|
|
$fax_uuid = $_REQUEST["fax_uuid"];
|
|
|
|
//pre-populate the form
|
|
if (is_uuid($fax_log_uuid) && is_uuid($fax_uuid)) {
|
|
$sql = "select * from v_fax_logs ";
|
|
$sql .= "where domain_uuid = :domain_uuid ";
|
|
$sql .= "and fax_log_uuid = :fax_log_uuid ";
|
|
$parameters['domain_uuid'] = $domain_uuid;
|
|
$parameters['fax_log_uuid'] = $fax_log_uuid;
|
|
$database = new database;
|
|
$row = $database->select($sql, $parameters, 'row');
|
|
if (is_array($row) && @sizeof($row) != 0) {
|
|
$fax_log_uuid = $row["fax_log_uuid"];
|
|
$fax_success = $row["fax_success"];
|
|
$fax_result_code = $row["fax_result_code"];
|
|
$fax_result_text = $row["fax_result_text"];
|
|
$fax_file = $row["fax_file"];
|
|
$fax_ecm_used = $row["fax_ecm_used"];
|
|
$fax_local_station_id = $row["fax_local_station_id"];
|
|
$fax_document_transferred_pages = $row["fax_document_transferred_pages"];
|
|
$fax_document_total_pages = $row["fax_document_total_pages"];
|
|
$fax_image_resolution = $row["fax_image_resolution"];
|
|
$fax_image_size = $row["fax_image_size"];
|
|
$fax_bad_rows = $row["fax_bad_rows"];
|
|
$fax_transfer_rate = $row["fax_transfer_rate"];
|
|
$fax_retry_attempts = $row["fax_retry_attempts"];
|
|
$fax_retry_limit = $row["fax_retry_limit"];
|
|
$fax_retry_sleep = $row["fax_retry_sleep"];
|
|
$fax_uri = $row["fax_uri"];
|
|
$fax_date = $row["fax_date"];
|
|
$fax_epoch = $row["fax_epoch"];
|
|
}
|
|
unset($sql, $parameters, $row);
|
|
}
|
|
|
|
//show the header
|
|
require_once "resources/header.php";
|
|
|
|
//show the content
|
|
echo "<table cellpadding='0' cellspacing='0' border='0' align='right'><tr><td><input type='button' class='btn' alt='".$text['button-back']."' onclick=\"document.location='fax_logs.php?id=".$fax_uuid."'\" value='".$text['button-back']."'></td></tr></table>";
|
|
echo "<b>".$text['title-fax_log']."</b>\n";
|
|
echo "<br /><br />\n";
|
|
|
|
echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
|
|
|
|
echo "<tr>\n";
|
|
echo "<td width='30%' class='vncell' valign='top' nowrap='nowrap'>".$text['label-fax_success']."</td>\n";
|
|
echo "<td width='70%' class='vtable'>".$fax_success."</td>\n";
|
|
echo "</tr>\n";
|
|
|
|
echo "<tr>\n";
|
|
echo "<td class='vncell' valign='top' nowrap='nowrap'>".$text['label-fax_result_code']."</td>\n";
|
|
echo "<td class='vtable'>".$fax_result_code."</td>\n";
|
|
echo "</tr>\n";
|
|
|
|
echo "<tr>\n";
|
|
echo "<td class='vncell' valign='top' nowrap='nowrap'>".$text['label-fax_result_text']."</td>\n";
|
|
echo "<td class='vtable'>".$fax_result_text."</td>\n";
|
|
echo "</tr>\n";
|
|
|
|
echo "<tr>\n";
|
|
echo "<td class='vncell' valign='top' nowrap='nowrap'>".$text['label-fax_file']."</td>\n";
|
|
echo "<td class='vtable'>".$fax_file."</td>\n";
|
|
echo "</tr>\n";
|
|
|
|
echo "<tr>\n";
|
|
echo "<td class='vncell' valign='top' nowrap='nowrap'>".$text['label-fax_ecm_used']."</td>\n";
|
|
echo "<td class='vtable'>".$fax_ecm_used."</td>\n";
|
|
echo "</tr>\n";
|
|
|
|
echo "<tr>\n";
|
|
echo "<td class='vncell' valign='top' nowrap='nowrap'>".$text['label-fax_local_station_id']."</td>\n";
|
|
echo "<td class='vtable'>".$fax_local_station_id."</td>\n";
|
|
echo "</tr>\n";
|
|
|
|
echo "<tr>\n";
|
|
echo "<td class='vncell' valign='top' nowrap='nowrap'>".$text['label-fax_document_transferred_pages']."</td>\n";
|
|
echo "<td class='vtable'>".$fax_document_transferred_pages."</td>\n";
|
|
echo "</tr>\n";
|
|
|
|
echo "<tr>\n";
|
|
echo "<td class='vncell' valign='top' nowrap='nowrap'>".$text['label-fax_document_total_pages']."</td>\n";
|
|
echo "<td class='vtable'>".$fax_document_total_pages."</td>\n";
|
|
echo "</tr>\n";
|
|
|
|
echo "<tr>\n";
|
|
echo "<td class='vncell' valign='top' nowrap='nowrap'>".$text['label-fax_image_resolution']."</td>\n";
|
|
echo "<td class='vtable'>".$fax_image_resolution."</td>\n";
|
|
echo "</tr>\n";
|
|
|
|
echo "<tr>\n";
|
|
echo "<td class='vncell' valign='top' nowrap='nowrap'>".$text['label-fax_image_size']."</td>\n";
|
|
echo "<td class='vtable'>".$fax_image_size."</td>\n";
|
|
echo "</tr>\n";
|
|
|
|
echo "<tr>\n";
|
|
echo "<td class='vncell' valign='top' nowrap='nowrap'>".$text['label-fax_bad_rows']."</td>\n";
|
|
echo "<td class='vtable'>".$fax_bad_rows."</td>\n";
|
|
echo "</tr>\n";
|
|
|
|
echo "<tr>\n";
|
|
echo "<td class='vncell' valign='top' nowrap='nowrap'>".$text['label-fax_transfer_rate']."</td>\n";
|
|
echo "<td class='vtable'>".$fax_transfer_rate."</td>\n";
|
|
echo "</tr>\n";
|
|
|
|
echo "<tr>\n";
|
|
echo "<td class='vncell' valign='top' nowrap='nowrap'>".$text['label-fax_retry_attempts']."</td>\n";
|
|
echo "<td class='vtable'>".$fax_retry_attempts."</td>\n";
|
|
echo "</tr>\n";
|
|
|
|
echo "<tr>\n";
|
|
echo "<td class='vncell' valign='top' nowrap='nowrap'>".$text['label-fax_retry_limit']."</td>\n";
|
|
echo "<td class='vtable'>".$fax_retry_limit."</td>\n";
|
|
echo "</tr>\n";
|
|
|
|
echo "<tr>\n";
|
|
echo "<td class='vncell' valign='top' nowrap='nowrap'>".$text['label-fax_retry_sleep']."</td>\n";
|
|
echo "<td class='vtable'>".$fax_retry_sleep."</td>\n";
|
|
echo "</tr>\n";
|
|
|
|
echo "<tr>\n";
|
|
echo "<td class='vncell' valign='top' nowrap='nowrap'>".$text['label-fax_uri']."</td>\n";
|
|
echo "<td class='vtable'>".$fax_uri."</td>\n";
|
|
echo "</tr>\n";
|
|
|
|
echo "<tr>\n";
|
|
echo "<td class='vncell' valign='top' nowrap='nowrap'>".$text['label-fax_date']."</td>\n";
|
|
echo "<td class='vtable'>".$fax_date."</td>\n";
|
|
echo "</tr>\n";
|
|
|
|
echo "<tr>\n";
|
|
echo "<td class='vncell' valign='top' nowrap='nowrap'>".$text['label-fax_epoch']."</td>\n";
|
|
echo "<td class='vtable'>".$fax_epoch."</td>\n";
|
|
echo "</tr>\n";
|
|
|
|
echo "</table>";
|
|
echo "<br /><br />";
|
|
|
|
echo "</form>";
|
|
|
|
//include the footer
|
|
require_once "resources/footer.php";
|
|
|
|
?>
|