fusionpbx/app/devices/device_settings.php

176 lines
6.1 KiB
PHP
Raw Normal View History

2013-11-14 03:16:11 +01: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>
2019-08-13 08:16:39 +02:00
Portions created by the Initial Developer are Copyright (C) 2008-2019
2013-11-14 03:16:11 +01:00
the Initial Developer. All Rights Reserved.
Contributor(s):
Mark J Crane <markjcrane@fusionpbx.com>
*/
2019-08-13 08:16:39 +02:00
//includes
require_once "root.php";
require_once "resources/require.php";
require_once "resources/check_auth.php";
//check permissions
if (permission_exists('device_setting_view')) {
//access granted
}
else {
echo "access denied";
exit;
}
2013-11-14 03:16:11 +01:00
//add multi-lingual support
$language = new text;
$text = $language->get();
2013-11-14 03:16:11 +01:00
2019-08-13 08:16:39 +02:00
//additional includes
require_once "resources/header.php";
require_once "resources/paging.php";
2013-11-14 03:16:11 +01:00
//get variables used to control the order
$order_by = $_GET["order_by"];
$order = $_GET["order"];
2019-08-13 08:16:39 +02:00
//get the uuid
if (is_uuid($_GET['id'])) {
$device_uuid = $_GET['id'];
}
2014-02-23 06:48:33 +01:00
2013-11-14 03:16:11 +01:00
//show the content
2015-02-15 08:59:02 +01:00
echo "<table width='100%' cellpadding='0' cellspacing='0' border='0'>\n";
2013-11-14 03:16:11 +01:00
echo " <tr>\n";
echo " <td width='50%' align='left' nowrap='nowrap'><b>Device Settings</b></td>\n";
echo " <td width='50%' align='right'>&nbsp;</td>\n";
echo " </tr>\n";
echo " <tr>\n";
echo " <td align='left' colspan='2'>\n";
echo " Settings used for each device.<br /><br />\n";
echo " </td>\n";
echo " </tr>\n";
echo "</table>\n";
//prepare to page the results
2019-08-04 04:21:56 +02:00
$sql = "select count(*) from v_devices_settings ";
$sql .= "where device_uuid = :device_uuid ";
$sql .= "and domain_uuid = :domain_uuid ";
$parameters['device_uuid'] = $device_uuid;
$parameters['domain_uuid'] = $domain_uuid;
$database = new database;
$num_rows = $database->select($sql, $parameters, 'column');
unset($sql);
2013-11-14 03:16:11 +01:00
//prepare to page the results
$rows_per_page = ($_SESSION['domain']['paging']['numeric'] != '') ? $_SESSION['domain']['paging']['numeric'] : 50;
2013-11-14 03:16:11 +01:00
$param = "";
2019-12-19 04:15:52 +01:00
if (isset($_GET['page'])) {
$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;
}
2013-11-14 03:16:11 +01:00
//get the list
2019-08-04 04:21:56 +02:00
$sql = str_replace('count(*)', '*', $sql);
$sql .= order_by($order_by, $order);
$sql .= limit_offset($rows_per_page, $offset);
$database = new database;
$result = $database->select($sql, $parameters, 'all');
unset($sql, $parameters);
2013-11-14 03:16:11 +01:00
$c = 0;
$row_style["0"] = "row_style0";
$row_style["1"] = "row_style1";
echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
2019-08-04 04:21:56 +02:00
if (is_array($result) && @sizeof($result) != 0) {
2013-11-14 03:16:11 +01:00
$previous_category = '';
foreach($result as $row) {
if ($previous_category != $row['device_setting_category']) {
echo "<tr><td colspan='5' align='left'>\n";
echo " <br />\n";
echo " <br />\n";
echo " <b>".ucfirst($row['device_setting_category'])."</b>&nbsp;</td></tr>\n";
echo "<tr>\n";
echo th_order_by('device_setting_subcategory', $text['label-category'], $order_by, $order);
echo th_order_by('device_setting_name', $text['label-type'], $order_by, $order);
echo th_order_by('device_setting_value', $text['label-value'], $order_by, $order);
echo th_order_by('device_setting_enabled', $text['label-enabled'], $order_by, $order);
echo th_order_by('device_setting_description', $text['label-description'], $order_by, $order);
echo "<td align='right' width='42'>\n";
if (permission_exists('device_setting_add')) {
2019-08-13 08:16:39 +02:00
echo " <a href='device_setting_edit.php?device_uuid=".urlencode($device_uuid)."' alt='".$text['button-add']."'>$v_link_label_add</a>\n";
2013-11-14 03:16:11 +01:00
}
else {
echo " &nbsp;\n";
}
echo "</td>\n";
echo "</tr>\n";
}
echo "<tr >\n";
echo " <td valign='top' class='".$row_style[$c]."'>".$row['device_setting_subcategory']."&nbsp;</td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>".$row['device_setting_name']."&nbsp;</td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>".$row['device_setting_value']."&nbsp;</td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>".$row['device_setting_enabled']."&nbsp;</td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>".$row['device_setting_description']."&nbsp;</td>\n";
echo " <td valign='top' align='right'>\n";
if (permission_exists('device_setting_edit')) {
2014-02-23 06:48:33 +01:00
echo " <a href='device_setting_edit.php?device_uuid=".$row['device_uuid']."&id=".$row['device_setting_uuid']."' alt='".$text['button-edit']."'>$v_link_label_edit</a>\n";
2013-11-14 03:16:11 +01:00
}
if (permission_exists('device_setting_delete')) {
2014-02-23 06:48:33 +01:00
echo " <a href='device_setting_delete.php?device_uuid=".$row['device_uuid']."&id=".$row['device_setting_uuid']."' alt='".$text['button-delete']."' onclick=\"return confirm('".$text['confirm-delete']."')\">$v_link_label_delete</a>\n";
2013-11-14 03:16:11 +01:00
}
echo " </td>\n";
echo "</tr>\n";
$previous_category = $row['device_setting_category'];
if ($c==0) { $c=1; } else { $c=0; }
2019-08-04 04:21:56 +02:00
}
}
unset($result, $row);
2013-11-14 03:16:11 +01:00
echo "<tr>\n";
echo "<td colspan='6' align='left'>\n";
echo " <table width='100%' cellpadding='0' cellspacing='0'>\n";
echo " <tr>\n";
echo " <td width='33.3%' nowrap>&nbsp;</td>\n";
echo " <td width='33.3%' align='center' nowrap>$paging_controls</td>\n";
echo " <td width='33.3%' align='right'>\n";
if (permission_exists('device_setting_add')) {
2019-11-20 07:30:13 +01:00
echo " <a href='device_setting_edit.php?device_uuid=".urlencode($device_uuid)."' alt='".$text['button-add']."'>$v_link_label_add</a>\n";
2013-11-14 03:16:11 +01:00
}
else {
echo " &nbsp;\n";
}
echo " </td>\n";
echo " </tr>\n";
echo " </table>\n";
echo "</td>\n";
echo "</tr>\n";
echo "</table>";
echo "<br /><br />";
//include the footer
require_once "resources/footer.php";
2019-08-13 08:16:39 +02:00
?>