\n";
echo " \n";
echo " ";
echo "\n";
//prepare to page the results
$sql = "select count(*) as num_rows from v_fax_logs ";
$sql .= "where domain_uuid = '$domain_uuid' ";
$sql .= "and fax_uuid = '$fax_uuid' ";
if (strlen($order_by)> 0) { $sql .= "order by $order_by $order "; }
$prep_statement = $db->prepare($sql);
if ($prep_statement) {
$prep_statement->execute();
$row = $prep_statement->fetch(PDO::FETCH_ASSOC);
if ($row['num_rows'] > 0) {
$num_rows = $row['num_rows'];
}
else {
$num_rows = '0';
}
}
//prepare to page the results
$rows_per_page = 100;
$param = "";
$page = $_GET['page'];
if (strlen($page) == 0) { $page = 0; $_GET['page'] = 0; }
list($paging_controls, $rows_per_page, $var3) = paging($num_rows, $param, $rows_per_page);
$offset = $rows_per_page * $page;
//get the list
$sql = "select * from v_fax_logs ";
$sql .= "where domain_uuid = '$domain_uuid' ";
$sql .= "and fax_uuid = '$fax_uuid' ";
if (strlen($order_by)> 0) { $sql .= "order by $order_by $order "; }
$sql .= "limit $rows_per_page offset $offset ";
$prep_statement = $db->prepare(check_sql($sql));
$prep_statement->execute();
$result = $prep_statement->fetchAll(PDO::FETCH_NAMED);
$result_count = count($result);
unset ($prep_statement, $sql);
$c = 0;
$row_style["0"] = "row_style0";
$row_style["1"] = "row_style1";
echo "\n";
echo " \n";
echo "\n";
echo th_order_by('fax_success', $text['label-fax_success'], $order_by, $order);
echo th_order_by('fax_result_code', $text['label-fax_result_code'], $order_by, $order);
echo th_order_by('fax_result_text', $text['label-fax_result_text'], $order_by, $order);
echo th_order_by('fax_file', $text['label-fax_file'], $order_by, $order);
echo th_order_by('fax_ecm_used', $text['label-fax_ecm_used'], $order_by, $order);
echo th_order_by('fax_local_station_id', $text['label-fax_local_station_id'], $order_by, $order);
//echo th_order_by('fax_document_transferred_pages', $text['label-fax_document_transferred_pages'], $order_by, $order);
//echo th_order_by('fax_document_total_pages', $text['label-fax_document_total_pages'], $order_by, $order);
//echo th_order_by('fax_image_resolution', $text['label-fax_image_resolution'], $order_by, $order);
//echo th_order_by('fax_image_size', $text['label-fax_image_size'], $order_by, $order);
echo th_order_by('fax_bad_rows', $text['label-fax_bad_rows'], $order_by, $order);
echo th_order_by('fax_transfer_rate', $text['label-fax_transfer_rate'], $order_by, $order);
echo th_order_by('fax_retry_attempts', $text['label-fax_retry_attempts'], $order_by, $order);
//echo th_order_by('fax_retry_limit', $text['label-fax_retry_limit'], $order_by, $order);
//echo th_order_by('fax_retry_sleep', $text['label-fax_retry_sleep'], $order_by, $order);
echo th_order_by('fax_uri', $text['label-fax_destination'], $order_by, $order);
echo th_order_by('fax_date', $text['label-fax_date'], $order_by, $order);
//echo th_order_by('fax_epoch', $text['label-fax_epoch'], $order_by, $order);
echo "| ";
echo " \n";
echo " | \n";
echo " \n";
if ($result_count > 0) {
foreach($result as $row) {
if (permission_exists('fax_log_edit')) {
$tr_link = "href='fax_log_edit.php?id=".$row['fax_log_uuid']."&fax_uuid=$fax_uuid'";
}
echo " \n";
echo " | ".$row['fax_success']." | \n";
echo " ".$row['fax_result_code']." | \n";
echo " ".$row['fax_result_text']." | \n";
echo " ".basename($row['fax_file'])." | \n";
echo " ".$row['fax_ecm_used']." | \n";
echo " ".$row['fax_local_station_id']." | \n";
//echo " ".$row['fax_document_transferred_pages']." | \n";
//echo " ".$row['fax_document_total_pages']." | \n";
//echo " ".$row['fax_image_resolution']." | \n";
//echo " ".$row['fax_image_size']." | \n";
echo " ".$row['fax_bad_rows']." | \n";
echo " ".$row['fax_transfer_rate']." | \n";
echo " ".$row['fax_retry_attempts']." | \n";
//echo " ".$row['fax_retry_limit']." | \n";
//echo " ".$row['fax_retry_sleep']." | \n";
echo " ".basename($row['fax_uri'])." | \n";
echo " ".$row['fax_date']." | \n";
//echo " ".$row['fax_epoch']." | \n";
echo " ";
if (permission_exists('fax_log_edit')) {
echo "$v_link_label_edit";
}
if (permission_exists('fax_log_delete')) {
echo "$v_link_label_delete";
}
echo " | \n";
echo " \n";
if ($c==0) { $c=1; } else { $c=0; }
} //end foreach
unset($sql, $result, $row_count);
} //end if results
echo "\n";
echo "\n";
echo " \n";
echo " \n";
echo " | | \n";
echo " $paging_controls | \n";
echo " | \n";
echo " \n";
echo " \n";
echo " | \n";
echo " \n";
echo " ";
echo " ";
echo "
";
echo " | ";
echo "
";
echo "