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>
|
2015-03-07 23:51:32 +01:00
|
|
|
Copyright (C) 2008-2015 All Rights Reserved.
|
2012-06-04 16:58:40 +02:00
|
|
|
|
|
|
|
|
Contributor(s):
|
|
|
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
|
|
|
*/
|
|
|
|
|
require_once "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";
|
2013-03-20 17:53:37 +01:00
|
|
|
if (permission_exists('device_view')) {
|
2012-06-04 16:58:40 +02:00
|
|
|
//access granted
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo "access denied";
|
|
|
|
|
exit;
|
|
|
|
|
}
|
2013-05-23 10:18:12 +02:00
|
|
|
|
|
|
|
|
//add multi-lingual support
|
2015-01-18 11:06:08 +01:00
|
|
|
$language = new text;
|
|
|
|
|
$text = $language->get();
|
2013-05-23 10:18:12 +02:00
|
|
|
|
2014-05-02 11:01:24 +02:00
|
|
|
//get the http values and set them as variables
|
|
|
|
|
$search = check_str($_GET["search"]);
|
|
|
|
|
if (isset($_GET["order_by"])) {
|
|
|
|
|
$order_by = check_str($_GET["order_by"]);
|
|
|
|
|
$order = check_str($_GET["order"]);
|
|
|
|
|
}
|
2013-05-23 10:18:12 +02:00
|
|
|
|
|
|
|
|
//additional includes
|
2013-07-06 08:29:50 +02:00
|
|
|
require_once "resources/header.php";
|
|
|
|
|
require_once "resources/paging.php";
|
2013-05-23 10:18:12 +02:00
|
|
|
|
|
|
|
|
//show the content
|
2015-02-15 01:33:56 +01:00
|
|
|
echo "<table width='100%' cellpadding='0' cellspacing='0' border='0'>\n";
|
2013-05-23 10:18:12 +02:00
|
|
|
echo " <tr>\n";
|
2015-02-15 01:33:56 +01:00
|
|
|
echo " <td width='100%' align='left' valign='top'>";
|
|
|
|
|
echo " <b>".$text['header-devices']."</b>";
|
|
|
|
|
echo " <br /><br />";
|
|
|
|
|
echo " ".$text['description-devices'];
|
|
|
|
|
echo " </td>\n";
|
|
|
|
|
echo " <td align='right' nowrap='nowrap' valign='top'>\n";
|
|
|
|
|
echo " <form method='get' action=''>\n";
|
2015-03-07 23:51:32 +01:00
|
|
|
if (permission_exists('device_show_all')) {
|
2015-03-07 22:35:18 +01:00
|
|
|
echo " <input type='button' class='btn' value='".$text['button-show_all']."' onclick=\"window.location='devices.php?showall=true';\">\n";
|
2015-03-07 23:51:32 +01:00
|
|
|
if ($_GET['showall'] == 'true') {
|
|
|
|
|
echo " <input type='hidden' name='showall' value='true'>";
|
|
|
|
|
}
|
2015-03-07 22:35:18 +01:00
|
|
|
}
|
2015-02-15 01:40:39 +01:00
|
|
|
if (permission_exists('device_profile_view')) {
|
2015-02-15 05:54:32 +01:00
|
|
|
echo " <input type='button' class='btn' value='".$text['button-profiles']."' onclick=\"document.location.href='device_profiles.php';\"> ";
|
2015-02-15 01:40:39 +01:00
|
|
|
}
|
2015-02-15 01:33:56 +01:00
|
|
|
echo " <input type='text' class='txt' style='width: 150px' name='search' value='$search'>";
|
|
|
|
|
echo " <input type='submit' class='btn' name='submit' value='".$text['button-search']."'>";
|
|
|
|
|
echo " </form>\n";
|
2013-05-23 10:18:12 +02:00
|
|
|
echo " </td>\n";
|
|
|
|
|
echo " </tr>\n";
|
|
|
|
|
echo "</table>\n";
|
2015-02-15 01:33:56 +01:00
|
|
|
echo "<br />";
|
2013-05-23 10:18:12 +02:00
|
|
|
|
|
|
|
|
//prepare to page the results
|
|
|
|
|
$sql = "select count(*) as num_rows from v_devices ";
|
2015-03-07 22:35:18 +01:00
|
|
|
if ($_GET['showall'] && permission_exists('device_show_all')) {
|
|
|
|
|
if (strlen($search) > 0) {
|
|
|
|
|
$sql .= "where ";
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$sql .= "where (";
|
|
|
|
|
$sql .= " domain_uuid = '$domain_uuid' ";
|
|
|
|
|
if (permission_exists('device_show_all')) {
|
|
|
|
|
$sql .= " or domain_uuid is null ";
|
|
|
|
|
}
|
|
|
|
|
$sql .= ") ";
|
2015-03-07 23:51:32 +01:00
|
|
|
if (strlen($search) > 0) {
|
|
|
|
|
$sql .= "and ";
|
|
|
|
|
}
|
2015-03-07 22:35:18 +01:00
|
|
|
}
|
2014-05-02 11:01:24 +02:00
|
|
|
if (strlen($search) > 0) {
|
2015-03-07 22:35:18 +01:00
|
|
|
$sql .= "(";
|
2014-05-02 11:01:24 +02:00
|
|
|
$sql .= " device_mac_address like '%".$search."%' ";
|
2015-03-07 22:35:18 +01:00
|
|
|
$sql .= " or device_label like '%".$search."%' ";
|
|
|
|
|
$sql .= " or device_vendor like '%".$search."%' ";
|
|
|
|
|
$sql .= " or device_provision_enable like '%".$search."%' ";
|
|
|
|
|
$sql .= " or device_template like '%".$search."%' ";
|
|
|
|
|
$sql .= " or device_description like '%".$search."%' ";
|
2014-05-02 11:01:24 +02:00
|
|
|
$sql .= ") ";
|
|
|
|
|
}
|
2013-05-23 10:18:12 +02:00
|
|
|
$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';
|
|
|
|
|
}
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
2013-05-23 10:18:12 +02:00
|
|
|
|
|
|
|
|
//prepare to page the results
|
2013-06-10 18:39:09 +02:00
|
|
|
$rows_per_page = 150;
|
2013-05-23 10:18:12 +02:00
|
|
|
$param = "";
|
|
|
|
|
$page = $_GET['page'];
|
2014-02-26 03:30:14 +01:00
|
|
|
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;
|
2013-05-23 10:18:12 +02:00
|
|
|
|
|
|
|
|
//get the list
|
|
|
|
|
$sql = "select * from v_devices ";
|
2015-03-07 22:35:18 +01:00
|
|
|
if ($_GET['showall'] && permission_exists('device_show_all')) {
|
|
|
|
|
if (strlen($search) > 0) {
|
|
|
|
|
$sql .= "where ";
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$sql .= "where (";
|
|
|
|
|
$sql .= " domain_uuid = '$domain_uuid' ";
|
|
|
|
|
if (permission_exists('device_show_all')) {
|
|
|
|
|
$sql .= " or domain_uuid is null ";
|
|
|
|
|
}
|
|
|
|
|
$sql .= ") ";
|
2015-03-07 23:51:32 +01:00
|
|
|
if (strlen($search) > 0) {
|
|
|
|
|
$sql .= "and ";
|
|
|
|
|
}
|
2015-03-07 22:35:18 +01:00
|
|
|
}
|
2014-05-02 11:01:24 +02:00
|
|
|
if (strlen($search) > 0) {
|
2015-03-07 22:35:18 +01:00
|
|
|
$sql .= "(";
|
2014-05-02 11:01:24 +02:00
|
|
|
$sql .= " device_mac_address like '%".$search."%' ";
|
2015-03-07 22:35:18 +01:00
|
|
|
$sql .= " or device_label like '%".$search."%' ";
|
|
|
|
|
$sql .= " or device_vendor like '%".$search."%' ";
|
|
|
|
|
$sql .= " or device_provision_enable like '%".$search."%' ";
|
|
|
|
|
$sql .= " or device_template like '%".$search."%' ";
|
|
|
|
|
$sql .= " or device_description like '%".$search."%' ";
|
2014-05-02 11:01:24 +02:00
|
|
|
$sql .= ") ";
|
|
|
|
|
}
|
2014-01-03 00:20:15 +01:00
|
|
|
if (strlen($order_by) == 0) {
|
2014-07-18 23:01:12 +02:00
|
|
|
$sql .= "order by device_label, device_description asc ";
|
2014-01-03 00:20:15 +01:00
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$sql .= "order by $order_by $order ";
|
|
|
|
|
}
|
2013-05-23 10:18:12 +02:00
|
|
|
$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";
|
|
|
|
|
|
2014-06-21 09:04:04 +02:00
|
|
|
echo "<table class='tr_hover' width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
|
2013-05-23 10:18:12 +02:00
|
|
|
echo "<tr>\n";
|
2015-03-07 22:35:18 +01:00
|
|
|
if ($_GET['showall'] && permission_exists('device_show_all')) {
|
|
|
|
|
echo th_order_by('domain_name', $text['label-domain-name'], $order_by, $order, $param);
|
|
|
|
|
}
|
2015-03-07 22:51:02 +01:00
|
|
|
echo th_order_by('device_mac_address', $text['label-device_mac_address'], $order_by, $order);
|
2013-05-23 10:18:12 +02:00
|
|
|
echo th_order_by('device_label', $text['label-device_label'], $order_by, $order);
|
2014-01-04 00:11:42 +01:00
|
|
|
echo th_order_by('device_vendor', $text['label-device_vendor'], $order_by, $order);
|
2013-05-23 10:18:12 +02:00
|
|
|
echo th_order_by('device_provision_enable', $text['label-device_provision_enable'], $order_by, $order);
|
|
|
|
|
echo th_order_by('device_template', $text['label-device_template'], $order_by, $order);
|
|
|
|
|
echo th_order_by('device_description', $text['label-device_description'], $order_by, $order);
|
2015-02-15 01:33:56 +01:00
|
|
|
echo "<td class='list_control_icons'>\n";
|
2013-05-23 10:18:12 +02:00
|
|
|
if (permission_exists('device_add')) {
|
|
|
|
|
echo " <a href='device_edit.php' alt='".$text['button-add']."'>$v_link_label_add</a>\n";
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo " \n";
|
|
|
|
|
}
|
|
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<tr>\n";
|
|
|
|
|
|
|
|
|
|
if ($result_count > 0) {
|
|
|
|
|
foreach($result as $row) {
|
2014-06-21 10:52:47 +02:00
|
|
|
$tr_link = (permission_exists('device_edit')) ? "href='device_edit.php?id=".$row['device_uuid']."'" : null;
|
2014-06-21 09:04:04 +02:00
|
|
|
echo "<tr ".$tr_link.">\n";
|
2015-03-07 22:35:18 +01:00
|
|
|
if ($_GET['showall'] && permission_exists('device_show_all')) {
|
2015-03-07 23:51:32 +01:00
|
|
|
echo " <td valign='top' class='".$row_style[$c]."'>".$_SESSION['domains'][$row['domain_uuid']]['domain_name']."</td>\n";
|
2015-03-07 22:35:18 +01:00
|
|
|
}
|
2014-06-21 02:58:16 +02:00
|
|
|
echo " <td valign='top' class='".$row_style[$c]."'>";
|
2015-02-15 01:46:58 +01:00
|
|
|
$device_mac_address = substr($row['device_mac_address'], 0,2).'-'.substr($row['device_mac_address'], 2,2).'-'.substr($row['device_mac_address'], 4,2).'-'.substr($row['device_mac_address'], 6,2).'-'.substr($row['device_mac_address'], 8,2).'-'.substr($row['device_mac_address'], 10,2);
|
|
|
|
|
echo (permission_exists('device_edit')) ? "<a href='device_edit.php?id=".$row['device_uuid']."'>".$device_mac_address."</a>" : $device_mac_address;
|
2014-06-21 02:58:16 +02:00
|
|
|
echo " </td>\n";
|
2013-05-23 10:18:12 +02:00
|
|
|
echo " <td valign='top' class='".$row_style[$c]."'>".$row['device_label']." </td>\n";
|
2014-01-04 00:11:42 +01:00
|
|
|
echo " <td valign='top' class='".$row_style[$c]."'>".$row['device_vendor']." </td>\n";
|
2015-02-15 01:33:56 +01:00
|
|
|
echo " <td valign='top' class='".$row_style[$c]."'>".$text['label-'.$row['device_provision_enable']]." </td>\n";
|
2013-05-23 10:18:12 +02:00
|
|
|
echo " <td valign='top' class='".$row_style[$c]."'>".$row['device_template']." </td>\n";
|
|
|
|
|
echo " <td valign='top' class='row_stylebg'>".$row['device_description']." </td>\n";
|
2014-02-26 03:30:14 +01:00
|
|
|
echo " <td class='list_control_icons'>";
|
2013-05-23 10:18:12 +02:00
|
|
|
if (permission_exists('device_edit')) {
|
2014-02-26 03:30:14 +01:00
|
|
|
echo "<a href='device_edit.php?id=".$row['device_uuid']."' alt='".$text['button-edit']."'>$v_link_label_edit</a>";
|
2013-05-23 10:18:12 +02:00
|
|
|
}
|
|
|
|
|
if (permission_exists('device_delete')) {
|
2014-02-26 03:30:14 +01:00
|
|
|
echo "<a href='device_delete.php?id=".$row['device_uuid']."' alt='".$text['button-delete']."' onclick=\"return confirm('".$text['confirm-delete']."')\">$v_link_label_delete</a>";
|
2013-05-23 10:18:12 +02:00
|
|
|
}
|
|
|
|
|
echo " </td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
if ($c==0) { $c=1; } else { $c=0; }
|
|
|
|
|
} //end foreach
|
|
|
|
|
unset($sql, $result, $row_count);
|
|
|
|
|
} //end if results
|
|
|
|
|
|
|
|
|
|
echo "<tr>\n";
|
2015-02-15 01:33:56 +01:00
|
|
|
echo "<td colspan='8'>\n";
|
2013-05-23 10:18:12 +02:00
|
|
|
echo " <table width='100%' cellpadding='0' cellspacing='0'>\n";
|
|
|
|
|
echo " <tr>\n";
|
|
|
|
|
echo " <td width='33.3%' nowrap='nowrap'> </td>\n";
|
2015-02-15 01:33:56 +01:00
|
|
|
echo " <td width='33.3%' align='center' nowrap='nowrap'>".$paging_controls."</td>\n";
|
2014-02-26 03:30:14 +01:00
|
|
|
echo " <td class='list_control_icons'>";
|
2013-05-23 10:18:12 +02:00
|
|
|
if (permission_exists('device_add')) {
|
2015-02-15 01:33:56 +01:00
|
|
|
echo " <a href='device_edit.php' alt='".$text['button-add']."'>$v_link_label_add</a>";
|
2013-05-23 10:18:12 +02:00
|
|
|
}
|
|
|
|
|
echo " </td>\n";
|
|
|
|
|
echo " </tr>\n";
|
|
|
|
|
echo " </table>\n";
|
|
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
echo "</table>";
|
|
|
|
|
echo "<br /><br />";
|
|
|
|
|
|
|
|
|
|
//include the footer
|
2013-07-06 08:29:50 +02:00
|
|
|
require_once "resources/footer.php";
|
2015-03-07 23:51:32 +01:00
|
|
|
|
2013-04-10 01:26:20 +02:00
|
|
|
?>
|