2012-06-04 16:58:40 +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>
|
2014-02-19 04:11:42 +01:00
|
|
|
Portions created by the Initial Developer are Copyright (C) 2008-2014
|
2012-06-04 16:58:40 +02:00
|
|
|
the Initial Developer. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
Contributor(s):
|
|
|
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
|
|
|
*/
|
|
|
|
|
include "root.php";
|
2013-07-06 08:03:27 +02:00
|
|
|
require_once "resources/require.php";
|
2013-07-06 07:50:55 +02:00
|
|
|
require_once "resources/check_auth.php";
|
2012-06-04 16:58:40 +02:00
|
|
|
if (permission_exists('fax_extension_view')) {
|
|
|
|
|
//access granted
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo "access denied";
|
|
|
|
|
exit;
|
|
|
|
|
}
|
2013-07-06 08:29:50 +02:00
|
|
|
require_once "resources/header.php";
|
|
|
|
|
require_once "resources/paging.php";
|
2012-06-04 16:58:40 +02:00
|
|
|
|
2012-10-09 01:15:31 +02:00
|
|
|
//add multi-lingual support
|
2015-01-18 11:06:08 +01:00
|
|
|
$language = new text;
|
|
|
|
|
$text = $language->get();
|
2012-09-26 03:23:43 +02:00
|
|
|
|
2012-06-04 16:58:40 +02:00
|
|
|
//get the http get values and set them as php variables
|
|
|
|
|
$order_by = check_str($_GET["order_by"]);
|
|
|
|
|
$order = check_str($_GET["order"]);
|
|
|
|
|
|
|
|
|
|
//show the content
|
2014-11-27 14:37:08 +01:00
|
|
|
echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
|
2014-09-03 04:41:11 +02:00
|
|
|
echo " <tr>\n";
|
|
|
|
|
echo " <td align='left'>\n";
|
2015-02-15 12:57:14 +01:00
|
|
|
echo " <span class=\"title\">".$text['title']."</span>";
|
|
|
|
|
echo " <br /><br />\n";
|
2014-09-03 04:41:11 +02:00
|
|
|
echo " ".$text['description']."\n";
|
|
|
|
|
echo " </td>\n";
|
|
|
|
|
echo " </tr>\n";
|
|
|
|
|
echo "</table>\n";
|
|
|
|
|
echo "<br />\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
|
|
|
|
|
if (if_group("superadmin") || if_group("admin")) {
|
|
|
|
|
//show all fax extensions
|
|
|
|
|
$sql = "select count(*) as num_rows from v_fax ";
|
|
|
|
|
$sql .= "where domain_uuid = '".$_SESSION['domain_uuid']."' ";
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
//show only assigned fax extensions
|
|
|
|
|
$sql = "select count(*) as num_rows from v_fax as f, v_fax_users as u ";
|
|
|
|
|
$sql .= "where f.fax_uuid = u.fax_uuid ";
|
|
|
|
|
$sql .= "and f.domain_uuid = '".$_SESSION['domain_uuid']."' ";
|
|
|
|
|
$sql .= "and u.user_uuid = '".$_SESSION['user_uuid']."' ";
|
|
|
|
|
}
|
2013-10-31 04:48:08 +01:00
|
|
|
$prep_statement = $db->prepare(check_sql($sql));
|
2012-06-04 16:58:40 +02:00
|
|
|
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';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
unset($prep_statement, $result);
|
|
|
|
|
|
|
|
|
|
$rows_per_page = 150;
|
|
|
|
|
$param = "";
|
|
|
|
|
$page = check_str($_GET['page']);
|
2013-10-31 04:48:08 +01:00
|
|
|
if (strlen($page) == 0) { $page = 0; $_GET['page'] = 0; }
|
|
|
|
|
list($paging_controls, $rows_per_page, $var_3) = paging($num_rows, $param, $rows_per_page);
|
2012-06-04 16:58:40 +02:00
|
|
|
$offset = $rows_per_page * $page;
|
|
|
|
|
|
|
|
|
|
if (if_group("superadmin") || if_group("admin")) {
|
|
|
|
|
//show all fax extensions
|
|
|
|
|
$sql = "select * from v_fax ";
|
2014-02-06 06:45:36 +01:00
|
|
|
$sql .= "where domain_uuid = '".$_SESSION['domain_uuid']."' ";
|
|
|
|
|
if (strlen($order_by) == 0) { $sql .= "order by fax_name asc "; }
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
//show only assigned fax extensions
|
|
|
|
|
$sql = "select * from v_fax as f, v_fax_users as u ";
|
|
|
|
|
$sql .= "where f.fax_uuid = u.fax_uuid ";
|
|
|
|
|
$sql .= "and f.domain_uuid = '".$_SESSION['domain_uuid']."' ";
|
|
|
|
|
$sql .= "and u.user_uuid = '".$_SESSION['user_uuid']."' ";
|
2014-02-06 06:45:36 +01:00
|
|
|
if (strlen($order_by) == 0) { $sql .= "order by f.fax_name asc "; }
|
|
|
|
|
}
|
|
|
|
|
if (strlen($order_by) > 0) {
|
2014-02-23 07:55:16 +01:00
|
|
|
$sql .= "order by $order_by $order ";
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
2013-10-31 04:48:08 +01:00
|
|
|
$sql .= "limit $rows_per_page offset $offset ";
|
2012-06-04 16:58:40 +02:00
|
|
|
$prep_statement = $db->prepare(check_sql($sql));
|
|
|
|
|
$prep_statement->execute();
|
|
|
|
|
$result = $prep_statement->fetchAll(PDO::FETCH_ASSOC);
|
|
|
|
|
$result_count = count($result);
|
|
|
|
|
unset ($prep_statement, $sql);
|
|
|
|
|
|
|
|
|
|
$c = 0;
|
|
|
|
|
$row_style["0"] = "row_style0";
|
|
|
|
|
$row_style["1"] = "row_style1";
|
|
|
|
|
|
2014-06-22 06:34:19 +02:00
|
|
|
echo "<table class='tr_hover' width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "<tr>\n";
|
2012-10-24 08:51:28 +02:00
|
|
|
echo th_order_by('fax_name', $text['label-name'], $order_by, $order);
|
2013-12-20 06:58:25 +01:00
|
|
|
echo th_order_by('fax_extension', $text['label-extension'], $order_by, $order);
|
2012-10-24 08:51:28 +02:00
|
|
|
echo th_order_by('fax_email', $text['label-email'], $order_by, $order);
|
2014-09-03 04:41:11 +02:00
|
|
|
echo "<th>".$text['label-tools']."</th>";
|
2012-10-24 08:51:28 +02:00
|
|
|
echo th_order_by('fax_description', $text['label-description'], $order_by, $order);
|
2014-11-27 14:37:08 +01:00
|
|
|
echo "<td class='list_control_icons'>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
if (permission_exists('fax_extension_add')) {
|
2012-07-27 17:22:11 +02:00
|
|
|
echo " <a href='fax_edit.php' alt='add'>$v_link_label_add</a>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
|
|
|
|
echo "</td>\n";
|
2014-06-22 06:34:19 +02:00
|
|
|
echo "</tr>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
|
|
|
|
|
if ($result_count > 0) {
|
|
|
|
|
foreach($result as $row) {
|
2014-02-19 04:11:42 +01:00
|
|
|
//remove the backslash
|
|
|
|
|
$row['fax_email'] = str_replace("\\", "", $row['fax_email']);
|
|
|
|
|
//show the fax extensions
|
2014-09-03 04:41:11 +02:00
|
|
|
$tr_link = (permission_exists('fax_extension_edit')) ? "href='fax_edit.php?id=".$row['fax_uuid']."'" : null;
|
2014-06-22 06:34:19 +02:00
|
|
|
echo "<tr ".$tr_link.">\n";
|
2014-06-21 05:42:09 +02:00
|
|
|
echo " <td valign='top' class='".$row_style[$c]."'>";
|
|
|
|
|
if (permission_exists('fax_extension_edit')) {
|
2014-09-03 04:41:11 +02:00
|
|
|
echo "<a href='fax_edit.php?id=".$row['fax_uuid']."'>".$row['fax_name']."</a>";
|
2014-06-21 05:42:09 +02:00
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo $row['fax_name'];
|
|
|
|
|
}
|
|
|
|
|
echo " </td>\n";
|
2014-02-19 04:11:42 +01:00
|
|
|
echo " <td valign='top' class='".$row_style[$c]."'>".$row['fax_extension']."</td>\n";
|
|
|
|
|
echo " <td valign='top' class='".$row_style[$c]."'>".$row['fax_email']." </td>\n";
|
2014-09-03 04:41:11 +02:00
|
|
|
echo " <td valign='top' class='".$row_style[$c]." tr_link_void'>";
|
|
|
|
|
if (permission_exists('fax_send')) {
|
|
|
|
|
echo " <a href='fax_send.php?id=".$row['fax_uuid']."'>".$text['label-new']."</a> ";
|
|
|
|
|
}
|
|
|
|
|
if (permission_exists('fax_inbox_view')) {
|
2015-05-09 07:22:29 +02:00
|
|
|
if ($row['fax_email_connection_host'] != '') {
|
2015-05-09 07:40:39 +02:00
|
|
|
$file = "fax_files_remote.php";
|
2015-05-09 07:22:29 +02:00
|
|
|
$box = $row['fax_email_connection_mailbox'];
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$file = "fax_files.php";
|
|
|
|
|
$box = 'inbox';
|
|
|
|
|
}
|
2015-05-01 12:48:48 +02:00
|
|
|
echo " <a href='".$file."?id=".$row['fax_uuid']."&box=".$box."'>".$text['label-inbox']."</a> ";
|
2014-09-03 04:41:11 +02:00
|
|
|
}
|
|
|
|
|
if (permission_exists('fax_sent_view')) {
|
2015-05-01 12:48:48 +02:00
|
|
|
echo " <a href='fax_files.php?id=".$row['fax_uuid']."&box=sent'>".$text['label-sent']."</a> ";
|
2014-09-03 04:41:11 +02:00
|
|
|
}
|
2014-09-09 18:49:58 +02:00
|
|
|
if (permission_exists('fax_log_view')) {
|
2014-09-09 18:53:26 +02:00
|
|
|
echo " <a href='fax_logs.php?id=".$row['fax_uuid']."'>".$text['label-log']."</a>";
|
2014-09-09 18:49:58 +02:00
|
|
|
}
|
2014-09-03 04:41:11 +02:00
|
|
|
echo " </td>\n";
|
2014-02-19 04:11:42 +01:00
|
|
|
echo " <td valign='top' class='row_stylebg' width='35%'>".$row['fax_description']." </td>\n";
|
2014-02-26 05:56:09 +01:00
|
|
|
echo " <td class='list_control_icons'>";
|
2014-02-19 04:11:42 +01:00
|
|
|
if (permission_exists('fax_extension_edit')) {
|
2014-09-03 04:41:11 +02:00
|
|
|
echo "<a href='fax_edit.php?id=".$row['fax_uuid']."' alt='".$text['button-edit']."'>$v_link_label_edit</a>";
|
2014-02-19 04:11:42 +01:00
|
|
|
}
|
|
|
|
|
if (permission_exists('fax_extension_delete')) {
|
2015-05-09 07:22:29 +02:00
|
|
|
echo "<a href='fax_delete.php?id=".$row['fax_uuid']."' alt='".$text['button-delete']."' onclick=\"return confirm('".$text['confirm-delete']."')\">$v_link_label_delete</a>";
|
2014-02-19 04:11:42 +01:00
|
|
|
}
|
|
|
|
|
echo " </td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
//alternate the CSS class
|
|
|
|
|
if ($c==0) { $c=1; } else { $c=0; }
|
2012-06-04 16:58:40 +02:00
|
|
|
} //end foreach
|
|
|
|
|
unset($sql, $result, $row_count);
|
|
|
|
|
} //end if results
|
|
|
|
|
|
|
|
|
|
echo "<tr>\n";
|
2014-09-03 04:41:11 +02:00
|
|
|
echo "<td colspan='6'>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo " <table width='100%' cellpadding='0' cellspacing='0'>\n";
|
|
|
|
|
echo " <tr>\n";
|
|
|
|
|
echo " <td width='33.3%' nowrap> </td>\n";
|
|
|
|
|
echo " <td width='33.3%' align='center' nowrap>$paging_controls</td>\n";
|
2014-02-26 05:56:09 +01:00
|
|
|
echo " <td class='list_control_icons'>";
|
2012-06-04 16:58:40 +02:00
|
|
|
if (permission_exists('fax_extension_add')) {
|
2014-02-26 05:56:09 +01:00
|
|
|
echo "<a href='fax_edit.php' alt='add'>$v_link_label_add</a>";
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
|
|
|
|
echo " </td>\n";
|
|
|
|
|
echo " </tr>\n";
|
|
|
|
|
echo " </table>\n";
|
|
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
echo "</table>";
|
2014-09-03 04:41:11 +02:00
|
|
|
echo "<br><br>";
|
2012-06-04 16:58:40 +02:00
|
|
|
|
|
|
|
|
//show the footer
|
2013-07-06 08:29:50 +02:00
|
|
|
require_once "resources/footer.php";
|
2012-10-08 23:43:16 +02:00
|
|
|
?>
|