Commit version 24.12.13800

This commit is contained in:
2025-01-06 17:35:06 -05:00
parent b7f6a79c2c
commit 55d9218816
6133 changed files with 4239740 additions and 1374287 deletions

View File

@ -4,80 +4,70 @@
* Observium Network Management and Monitoring System
* Copyright (C) 2006-2015, Adam Armstrong - http://www.observium.org
*
* @package observium
* @subpackage webui
* @author Adam Armstrong <adama@observium.org>
* @copyright (C) 2006-2013 Adam Armstrong, (C) 2013-2019 Observium Limited
* @package observium
* @subpackage webui
* @author Adam Armstrong <adama@observium.org>
* @copyright (C) Adam Armstrong
*
*/
if ($vars['editing'])
{
if ($readonly)
{
print_error_permission('You have insufficient permissions to edit settings.');
} else {
$agent_port = $vars['agent_port'];
if ($vars['editing']) {
if ($readonly) {
print_error_permission('You have insufficient permissions to edit settings.');
} else {
$agent_port = $vars['agent_port'];
if ($agent_port == "")
{
del_dev_attrib($device, 'agent_port');
$updated = 1;
$update_message = "Agent settings updated.";
if ($agent_port == "") {
del_dev_attrib($device, 'agent_port');
$updated = 1;
$update_message = "Agent settings updated.";
} elseif (!is_numeric($agent_port)) {
$update_message = "Agent port must be numeric!";
$updated = 0;
} else {
set_dev_attrib($device, 'agent_port', $agent_port);
$updated = 1;
$update_message = "Agent settings updated.";
}
}
elseif (!is_numeric($agent_port))
{
$update_message = "Agent port must be numeric!";
$updated = 0;
}
else
{
set_dev_attrib($device, 'agent_port', $agent_port);
$updated = 1;
$update_message = "Agent settings updated.";
}
}
if ($updated && $update_message)
{
print_message($update_message);
log_event('Device Agent configuration changed.', $device['device_id'], 'device', $device, 5); // severity 5, for logging user info
}
else if ($update_message)
{
print_error($update_message);
}
if ($updated && $update_message) {
print_message($update_message);
log_event('Device Agent configuration changed.', $device['device_id'], 'device', $device, 5); // severity 5, for logging user info
} elseif ($update_message) {
print_error($update_message);
}
}
$device = dbFetchRow("SELECT * FROM `devices` WHERE `device_id` = ?", array($device['device_id']));
$device = dbFetchRow("SELECT * FROM `devices` WHERE `device_id` = ?", [$device['device_id']]);
$form = array('type' => 'horizontal',
'id' => 'edit',
//'space' => '20px',
'title' => 'Agent Connectivity',
//'icon' => 'oicon-gear',
//'class' => 'box box-solid',
'fieldset' => array('edit' => ''),
);
$form['row'][0]['editing'] = array(
'type' => 'hidden',
'value' => 'yes');
$form['row'][1]['agent_port'] = array(
'type' => 'text',
'name' => 'Agent Port',
'width' => '250px',
'readonly' => $readonly,
'value' => get_dev_attrib($device, 'agent_port'));
$form['row'][2]['submit'] = array(
'type' => 'submit',
'name' => 'Save Changes',
'icon' => 'icon-ok icon-white',
'class' => 'btn-primary',
'readonly' => $readonly,
'value' => 'save');
$form = ['type' => 'horizontal',
'id' => 'edit',
//'space' => '20px',
'title' => 'Agent Connectivity',
//'icon' => 'oicon-gear',
//'class' => 'box box-solid',
'fieldset' => ['edit' => ''],
];
print_form($form);
unset($form);
$form['row'][0]['editing'] = [
'type' => 'hidden',
'value' => 'yes'];
$form['row'][1]['agent_port'] = [
'type' => 'text',
'name' => 'Agent Port',
'width' => '250px',
'readonly' => $readonly,
'value' => get_dev_attrib($device, 'agent_port')];
$form['row'][2]['submit'] = [
'type' => 'submit',
'name' => 'Save Changes',
'icon' => 'icon-ok icon-white',
'class' => 'btn-primary',
'readonly' => $readonly,
'value' => 'save'];
print_form($form);
unset($form);
// EOF