Device Vendor Functions - List: Updates for PHP 8.1
This commit is contained in:
parent
0e9df92730
commit
35b04ba3a1
|
|
@ -17,7 +17,7 @@
|
||||||
|
|
||||||
The Initial Developer of the Original Code is
|
The Initial Developer of the Original Code is
|
||||||
Mark J Crane <markjcrane@fusionpbx.com>
|
Mark J Crane <markjcrane@fusionpbx.com>
|
||||||
Portions created by the Initial Developer are Copyright (C) 2016-2022
|
Portions created by the Initial Developer are Copyright (C) 2016-2023
|
||||||
the Initial Developer. All Rights Reserved.
|
the Initial Developer. All Rights Reserved.
|
||||||
|
|
||||||
Contributor(s):
|
Contributor(s):
|
||||||
|
|
@ -47,14 +47,14 @@
|
||||||
$text = $language->get();
|
$text = $language->get();
|
||||||
|
|
||||||
//get the http post data
|
//get the http post data
|
||||||
if (is_array($_POST['vendor_functions'])) {
|
if (!empty($_POST['vendor_functions']) && is_array($_POST['vendor_functions'])) {
|
||||||
$action = $_POST['action'];
|
$action = $_POST['action'];
|
||||||
$device_vendor_uuid = $_POST['device_vendor_uuid'];
|
$device_vendor_uuid = $_POST['device_vendor_uuid'];
|
||||||
$vendor_functions = $_POST['vendor_functions'];
|
$vendor_functions = $_POST['vendor_functions'];
|
||||||
}
|
}
|
||||||
|
|
||||||
//process the http post data by action
|
//process the http post data by action
|
||||||
if ($action != '' && is_array($vendor_functions) && @sizeof($vendor_functions) != 0) {
|
if (!empty($action) && !empty($vendor_functions) && is_array($vendor_functions) && @sizeof($vendor_functions) != 0) {
|
||||||
switch ($action) {
|
switch ($action) {
|
||||||
case 'toggle':
|
case 'toggle':
|
||||||
if (permission_exists('device_vendor_function_edit')) {
|
if (permission_exists('device_vendor_function_edit')) {
|
||||||
|
|
@ -77,8 +77,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
//get variables used to control the order
|
//get variables used to control the order
|
||||||
$order_by = $_GET["order_by"];
|
$order_by = $_GET["order_by"] ?? null;
|
||||||
$order = $_GET["order"];
|
$order = $_GET["order"] ?? null;
|
||||||
|
|
||||||
//prepare to page the results
|
//prepare to page the results
|
||||||
$sql = "select count(*) from v_device_vendor_functions ";
|
$sql = "select count(*) from v_device_vendor_functions ";
|
||||||
|
|
@ -125,7 +125,7 @@
|
||||||
}
|
}
|
||||||
$parameters['device_vendor_uuid'] = $device_vendor_uuid;
|
$parameters['device_vendor_uuid'] = $device_vendor_uuid;
|
||||||
$sql .= order_by($order_by, $order, 'type', 'asc');
|
$sql .= order_by($order_by, $order, 'type', 'asc');
|
||||||
$sql .= limit_offset($rows_per_page, $offset);
|
$sql .= limit_offset($rows_per_page, $offset ?? null);
|
||||||
$database = new database;
|
$database = new database;
|
||||||
$vendor_functions = $database->select($sql, $parameters, 'all');
|
$vendor_functions = $database->select($sql, $parameters, 'all');
|
||||||
unset($sql, $parameters);
|
unset($sql, $parameters);
|
||||||
|
|
@ -152,7 +152,7 @@
|
||||||
if (permission_exists('device_vendor_function_delete') && $vendor_functions) {
|
if (permission_exists('device_vendor_function_delete') && $vendor_functions) {
|
||||||
echo button::create(['type'=>'button','label'=>$text['button-delete'],'icon'=>$_SESSION['theme']['button_icon_delete'],'id'=>'btn_delete','name'=>'btn_delete','style'=>'display: none;','onclick'=>"modal_open('modal-delete','btn_delete');"]);
|
echo button::create(['type'=>'button','label'=>$text['button-delete'],'icon'=>$_SESSION['theme']['button_icon_delete'],'id'=>'btn_delete','name'=>'btn_delete','style'=>'display: none;','onclick'=>"modal_open('modal-delete','btn_delete');"]);
|
||||||
}
|
}
|
||||||
if ($paging_controls_mini != '') {
|
if (!empty($paging_controls_mini)) {
|
||||||
echo "<span style='margin-left: 15px;'>".$paging_controls_mini."</span>\n";
|
echo "<span style='margin-left: 15px;'>".$paging_controls_mini."</span>\n";
|
||||||
}
|
}
|
||||||
echo " </div>\n";
|
echo " </div>\n";
|
||||||
|
|
@ -170,7 +170,7 @@
|
||||||
echo "<tr class='list-header'>\n";
|
echo "<tr class='list-header'>\n";
|
||||||
if (permission_exists('device_vendor_function_add') || permission_exists('device_vendor_function_edit') || permission_exists('device_vendor_function_delete')) {
|
if (permission_exists('device_vendor_function_add') || permission_exists('device_vendor_function_edit') || permission_exists('device_vendor_function_delete')) {
|
||||||
echo " <th class='checkbox'>\n";
|
echo " <th class='checkbox'>\n";
|
||||||
echo " <input type='checkbox' id='checkbox_all' name='checkbox_all' onclick='list_all_toggle(); checkbox_on_change(this);' ".($vendor_functions ?: "style='visibility: hidden;'").">\n";
|
echo " <input type='checkbox' id='checkbox_all' name='checkbox_all' onclick='list_all_toggle(); checkbox_on_change(this);' ".(empty($vendor_functions) ? "style='visibility: hidden;'" : null).">\n";
|
||||||
echo " </th>\n";
|
echo " </th>\n";
|
||||||
}
|
}
|
||||||
echo th_order_by('type', $text['label-type'], $order_by, $order);
|
echo th_order_by('type', $text['label-type'], $order_by, $order);
|
||||||
|
|
@ -179,7 +179,7 @@
|
||||||
echo "<th class='hide-sm-dn'>".$text['label-groups']."</th>\n";
|
echo "<th class='hide-sm-dn'>".$text['label-groups']."</th>\n";
|
||||||
echo th_order_by('enabled', $text['label-enabled'], $order_by, $order, null, "class='center'");
|
echo th_order_by('enabled', $text['label-enabled'], $order_by, $order, null, "class='center'");
|
||||||
echo th_order_by('description', $text['label-description'], $order_by, $order, null, "class='hide-sm-dn'");
|
echo th_order_by('description', $text['label-description'], $order_by, $order, null, "class='hide-sm-dn'");
|
||||||
if (permission_exists('device_vendor_function_edit') && $_SESSION['theme']['list_row_edit_button']['boolean'] == 'true') {
|
if (permission_exists('device_vendor_function_edit') && !empty($_SESSION['theme']['list_row_edit_button']['boolean']) && $_SESSION['theme']['list_row_edit_button']['boolean'] == 'true') {
|
||||||
echo " <td class='action-button'> </td>\n";
|
echo " <td class='action-button'> </td>\n";
|
||||||
}
|
}
|
||||||
echo "</tr>\n";
|
echo "</tr>\n";
|
||||||
|
|
@ -255,7 +255,7 @@
|
||||||
}
|
}
|
||||||
echo " </td>\n";
|
echo " </td>\n";
|
||||||
echo " <td class='description overflow hide-sm-dn'>".escape($row['description'])."</td>\n";
|
echo " <td class='description overflow hide-sm-dn'>".escape($row['description'])."</td>\n";
|
||||||
if (permission_exists('device_vendor_function_edit') && $_SESSION['theme']['list_row_edit_button']['boolean'] == 'true') {
|
if (permission_exists('device_vendor_function_edit') && !empty($_SESSION['theme']['list_row_edit_button']['boolean']) && $_SESSION['theme']['list_row_edit_button']['boolean'] == 'true') {
|
||||||
echo " <td class='action-button'>\n";
|
echo " <td class='action-button'>\n";
|
||||||
echo button::create(['type'=>'button','title'=>$text['button-edit'],'icon'=>$_SESSION['theme']['button_icon_edit'],'link'=>$list_row_url]);
|
echo button::create(['type'=>'button','title'=>$text['button-edit'],'icon'=>$_SESSION['theme']['button_icon_edit'],'link'=>$list_row_url]);
|
||||||
echo " </td>\n";
|
echo " </td>\n";
|
||||||
|
|
@ -268,7 +268,7 @@
|
||||||
|
|
||||||
echo "</table>\n";
|
echo "</table>\n";
|
||||||
echo "<br />\n";
|
echo "<br />\n";
|
||||||
echo "<div align='center'>".$paging_controls."</div>\n";
|
echo "<div align='center'>".($paging_controls ?? '')."</div>\n";
|
||||||
|
|
||||||
echo "<input type='hidden' name='".$token['name']."' value='".$token['hash']."'>\n";
|
echo "<input type='hidden' name='".$token['name']."' value='".$token['hash']."'>\n";
|
||||||
echo "</form>\n";
|
echo "</form>\n";
|
||||||
|
|
@ -290,4 +290,4 @@
|
||||||
|
|
||||||
echo "</script>\n";
|
echo "</script>\n";
|
||||||
|
|
||||||
?>
|
?>
|
||||||
Loading…
Reference in New Issue