2017-06-13 07:09:36 +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>
|
|
|
|
|
Portions created by the Initial Developer are Copyright (C) 2016-2017
|
|
|
|
|
the Initial Developer. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
Contributor(s):
|
|
|
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
//includes
|
|
|
|
|
require_once "root.php";
|
|
|
|
|
require_once "resources/require.php";
|
|
|
|
|
|
|
|
|
|
//check permissions
|
|
|
|
|
require_once "resources/check_auth.php";
|
|
|
|
|
if (permission_exists('device_vendor_function_view')) {
|
|
|
|
|
//access granted
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo "access denied";
|
|
|
|
|
exit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//add multi-lingual support
|
|
|
|
|
$language = new text;
|
|
|
|
|
$text = $language->get();
|
|
|
|
|
|
|
|
|
|
//get variables used to control the order
|
2019-08-04 04:21:56 +02:00
|
|
|
$order_by = $_GET["order_by"];
|
|
|
|
|
$order = $_GET["order"];
|
2017-06-13 07:09:36 +02:00
|
|
|
|
|
|
|
|
//add the search term
|
2019-08-04 04:21:56 +02:00
|
|
|
$search = $_GET["search"];
|
2017-06-13 07:09:36 +02:00
|
|
|
if (strlen($search) > 0) {
|
2019-08-04 04:21:56 +02:00
|
|
|
$sql_where = "and (";
|
|
|
|
|
$sql_where .= "label like :search ";
|
|
|
|
|
$sql_where .= "or name like :search ";
|
|
|
|
|
$sql_where .= "or value like :search ";
|
|
|
|
|
$sql_where .= "or enabled like :search ";
|
|
|
|
|
$sql_where .= "or description like :search ";
|
|
|
|
|
$sql_where .= ")";
|
|
|
|
|
$parameters['search'] = '%'.$search.'%';
|
2017-06-13 07:09:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//additional includes
|
|
|
|
|
require_once "resources/header.php";
|
|
|
|
|
require_once "resources/paging.php";
|
|
|
|
|
|
|
|
|
|
//prepare to page the results
|
2019-08-04 04:21:56 +02:00
|
|
|
$sql = "select count(*) from v_device_vendor_functions ";
|
|
|
|
|
$sql .= "where device_vendor_uuid = :device_vendor_uuid ";
|
|
|
|
|
$sql .= $sql_where;
|
|
|
|
|
$parameters['device_vendor_uuid'] = $device_vendor_uuid;
|
|
|
|
|
$database = new database;
|
|
|
|
|
$num_rows = $database->select($sql, $parameters, 'column');
|
2017-06-13 07:09:36 +02:00
|
|
|
|
|
|
|
|
//prepare to page the results
|
|
|
|
|
$rows_per_page = ($_SESSION['domain']['paging']['numeric'] != '') ? $_SESSION['domain']['paging']['numeric'] : 50;
|
|
|
|
|
$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
|
2019-08-04 04:21:56 +02:00
|
|
|
$sql = str_replace('count(*)', '*', $sql);
|
|
|
|
|
$sql .= order_by($order_by, $order, 'name', 'asc');
|
|
|
|
|
$sql .= limit_offset($rows_per_page, $offset);
|
|
|
|
|
$database = new database;
|
|
|
|
|
$vendor_functions = $database->select($sql, $parameters, 'all');
|
|
|
|
|
unset($sql, $parameters);
|
2017-06-13 07:09:36 +02:00
|
|
|
|
|
|
|
|
//alternate the row style
|
|
|
|
|
$c = 0;
|
|
|
|
|
$row_style["0"] = "row_style0";
|
|
|
|
|
$row_style["1"] = "row_style1";
|
|
|
|
|
|
|
|
|
|
//show the content
|
|
|
|
|
echo "<table width='100%' border='0'>\n";
|
|
|
|
|
echo " <tr>\n";
|
|
|
|
|
echo " <td width='50%' align='left' nowrap='nowrap'><b>".$text['title-device_vendor_functions']."</b></td>\n";
|
|
|
|
|
//echo " <form method='get' action=''>\n";
|
|
|
|
|
//echo " <td width='50%' style='vertical-align: top; text-align: right; white-space: nowrap;'>\n";
|
|
|
|
|
//echo " <input type='text' class='txt' style='width: 150px' name='search' id='search' value='".$search."'>\n";
|
|
|
|
|
//echo " <input type='submit' class='btn' name='submit' value='".$text['button-search']."'>\n";
|
|
|
|
|
//echo " </td>\n";
|
|
|
|
|
//echo " </form>\n";
|
|
|
|
|
echo " </tr>\n";
|
|
|
|
|
echo "</table>\n";
|
|
|
|
|
|
|
|
|
|
echo "<table class='tr_hover' width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
|
|
|
|
|
echo "<tr>\n";
|
2019-08-04 04:21:56 +02:00
|
|
|
//echo "<th>".$text['label-label']."</th>\n";
|
2017-06-13 07:09:36 +02:00
|
|
|
echo th_order_by('name', $text['label-name'], $order_by, $order);
|
|
|
|
|
echo th_order_by('value', $text['label-value'], $order_by, $order);
|
|
|
|
|
echo "<th>".$text['label-groups']."</th>\n";
|
|
|
|
|
echo th_order_by('enabled', $text['label-enabled'], $order_by, $order);
|
|
|
|
|
echo th_order_by('description', $text['label-description'], $order_by, $order);
|
|
|
|
|
echo "<td class='list_control_icons'>";
|
|
|
|
|
if (permission_exists('device_vendor_function_add')) {
|
2018-06-30 06:25:57 +02:00
|
|
|
echo "<a href='device_vendor_function_edit.php?device_vendor_uuid=".escape($_GET['id'])."' alt='".$text['button-add']."'>$v_link_label_add</a>";
|
2017-06-13 07:09:36 +02:00
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo " \n";
|
|
|
|
|
}
|
|
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<tr>\n";
|
|
|
|
|
|
2019-08-04 04:21:56 +02:00
|
|
|
if (is_array($vendor_functions) && @sizeof($vendor_functions) != 0) {
|
2017-06-13 07:09:36 +02:00
|
|
|
foreach($vendor_functions as $row) {
|
|
|
|
|
|
|
|
|
|
//get the groups that have been assigned to the vendor functions
|
|
|
|
|
$sql = "select ";
|
2019-08-04 04:21:56 +02:00
|
|
|
$sql .= "fg.*, g.domain_uuid as group_domain_uuid ";
|
2017-06-13 07:09:36 +02:00
|
|
|
$sql .= "from ";
|
2019-08-04 04:21:56 +02:00
|
|
|
$sql .= "v_device_vendor_function_groups as fg, ";
|
|
|
|
|
$sql .= "v_groups as g ";
|
2017-06-13 07:09:36 +02:00
|
|
|
$sql .= "where ";
|
2019-08-04 04:21:56 +02:00
|
|
|
$sql .= "fg.group_uuid = g.group_uuid ";
|
|
|
|
|
$sql .= "and fg.device_vendor_uuid = :device_vendor_uuid ";
|
|
|
|
|
$sql .= "and fg.device_vendor_function_uuid = :device_vendor_function_uuid ";
|
2017-06-13 07:09:36 +02:00
|
|
|
$sql .= "order by ";
|
2019-08-04 04:21:56 +02:00
|
|
|
$sql .= "g.domain_uuid desc, ";
|
|
|
|
|
$sql .= "g.group_name asc ";
|
|
|
|
|
$parameters['device_vendor_uuid'] = $device_vendor_uuid;
|
|
|
|
|
$parameters['device_vendor_function_uuid'] = $row['device_vendor_function_uuid'];
|
|
|
|
|
$database = new database;
|
|
|
|
|
$vendor_function_groups = $database->select($sql, $parameters, 'all');
|
|
|
|
|
unset($sql, $parameters);
|
2017-06-13 07:09:36 +02:00
|
|
|
unset($group_list);
|
|
|
|
|
foreach ($vendor_function_groups as &$sub_row) {
|
2018-06-30 06:25:57 +02:00
|
|
|
$group_list[] = escape($sub_row["group_name"]).(($sub_row['group_domain_uuid'] != '') ? "@".escape($_SESSION['domains'][$sub_row['group_domain_uuid']]['domain_name']) : null);
|
2017-06-13 07:09:36 +02:00
|
|
|
}
|
|
|
|
|
$group_list = isset($group_list) ? implode(', ', $group_list) : '';
|
|
|
|
|
unset ($vendor_function_groups);
|
|
|
|
|
//build the edit link
|
|
|
|
|
if (permission_exists('device_vendor_function_edit')) {
|
2018-06-30 06:25:57 +02:00
|
|
|
$tr_link = "href='device_vendor_function_edit.php?device_vendor_uuid=".escape($row['device_vendor_uuid'])."&id=".escape($row['device_vendor_function_uuid'])."'";
|
2017-06-13 07:09:36 +02:00
|
|
|
}
|
|
|
|
|
//show the row of data
|
|
|
|
|
echo "<tr ".$tr_link.">\n";
|
2019-08-04 04:21:56 +02:00
|
|
|
//echo " <td valign='top' class='".$row_style[$c]."'>".$text['label-'.escape($row['name'])]." </td>\n";
|
2018-06-30 06:25:57 +02:00
|
|
|
echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['name'])." </td>\n";
|
|
|
|
|
echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['value'])." </td>\n";
|
|
|
|
|
echo " <td valign='top' class='".$row_style[$c]."'>".escape($group_list)." </td>\n";
|
|
|
|
|
echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['enabled'])." </td>\n";
|
|
|
|
|
echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['description'])." </td>\n";
|
2017-06-13 07:09:36 +02:00
|
|
|
echo " <td class='list_control_icons'>";
|
|
|
|
|
if (permission_exists('device_vendor_function_edit')) {
|
2018-06-30 06:25:57 +02:00
|
|
|
echo "<a href='device_vendor_function_edit.php?device_vendor_uuid=".escape($row['device_vendor_uuid'])."&id=".escape($row['device_vendor_function_uuid'])."' alt='".$text['button-edit']."'>$v_link_label_edit</a>";
|
2017-06-13 07:09:36 +02:00
|
|
|
}
|
|
|
|
|
if (permission_exists('device_vendor_function_delete')) {
|
2018-06-30 06:25:57 +02:00
|
|
|
echo "<a href='device_vendor_function_delete.php?device_vendor_uuid=".escape($row['device_vendor_uuid'])."&id=".escape($row['device_vendor_function_uuid'])."' alt='".$text['button-delete']."' onclick=\"return confirm('".$text['confirm-delete']."')\">$v_link_label_delete</a>";
|
2017-06-13 07:09:36 +02:00
|
|
|
}
|
|
|
|
|
echo " </td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
//toggle the value of the c variable
|
|
|
|
|
if ($c==0) { $c=1; } else { $c=0; }
|
2019-08-04 04:21:56 +02:00
|
|
|
}
|
|
|
|
|
unset($vendor_functions, $row);
|
|
|
|
|
}
|
2017-06-13 07:09:36 +02:00
|
|
|
|
|
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo "<td colspan='7' align='left'>\n";
|
|
|
|
|
echo " <table width='100%' cellpadding='0' cellspacing='0'>\n";
|
|
|
|
|
echo " <tr>\n";
|
|
|
|
|
echo " <td width='33.3%' nowrap='nowrap'> </td>\n";
|
|
|
|
|
echo " <td width='33.3%' align='center' nowrap='nowrap'>$paging_controls</td>\n";
|
|
|
|
|
echo " <td class='list_control_icons'>";
|
|
|
|
|
if (permission_exists('device_vendor_function_add')) {
|
2018-06-30 06:25:57 +02:00
|
|
|
echo "<a href='device_vendor_function_edit.php?device_vendor_uuid=".escape($_GET['id'])."' alt='".$text['button-add']."'>$v_link_label_add</a>";
|
2017-06-13 07:09:36 +02:00
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo " ";
|
|
|
|
|
}
|
|
|
|
|
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";
|
|
|
|
|
|
|
|
|
|
?>
|