Portions created by the Initial Developer are Copyright (C) 2008-2018 the Initial Developer. All Rights Reserved. Contributor(s): Mark J Crane */ //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(); //pre-populate the form if (isset($_REQUEST["id"]) && isset($_REQUEST["fax_uuid"])) { $fax_log_uuid = check_str($_REQUEST["id"]); $fax_uuid = check_str($_REQUEST["fax_uuid"]); $sql = "select * from v_fax_logs "; $sql .= "where domain_uuid = '".$domain_uuid."' "; $sql .= "and fax_log_uuid = '".$fax_log_uuid."' "; $prep_statement = $db->prepare(check_sql($sql)); $prep_statement->execute(); $result = $prep_statement->fetchAll(PDO::FETCH_NAMED); foreach ($result as &$row) { $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"]; break; //limit to 1 row } unset ($prep_statement); } //show the header require_once "resources/header.php"; //show the content echo "
"; echo "".$text['title-fax_log']."\n"; echo "

\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "
".$text['label-fax_success']."".$fax_success."
".$text['label-fax_result_code']."".$fax_result_code."
".$text['label-fax_result_text']."".$fax_result_text."
".$text['label-fax_file']."".$fax_file."
".$text['label-fax_ecm_used']."".$fax_ecm_used."
".$text['label-fax_local_station_id']."".$fax_local_station_id."
".$text['label-fax_document_transferred_pages']."".$fax_document_transferred_pages."
".$text['label-fax_document_total_pages']."".$fax_document_total_pages."
".$text['label-fax_image_resolution']."".$fax_image_resolution."
".$text['label-fax_image_size']."".$fax_image_size."
".$text['label-fax_bad_rows']."".$fax_bad_rows."
".$text['label-fax_transfer_rate']."".$fax_transfer_rate."
".$text['label-fax_retry_attempts']."".$fax_retry_attempts."
".$text['label-fax_retry_limit']."".$fax_retry_limit."
".$text['label-fax_retry_sleep']."".$fax_retry_sleep."
".$text['label-fax_uri']."".$fax_uri."
".$text['label-fax_date']."".$fax_date."
".$text['label-fax_epoch']."".$fax_epoch."
"; echo "

"; echo ""; //include the footer require_once "resources/footer.php"; ?>