mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Security fix: unauthorized access Affects nginx users: Moved php files outside of public html directory (Apache was protected by .htaccess) Affects all users: Some files did not check for authentication and could disclose some info. Better checks before including files from user input * git mv html/includes/ includes/html git mv html/pages/ includes/html/
87 lines
3.2 KiB
PHP
87 lines
3.2 KiB
PHP
<?php
|
|
|
|
/*
|
|
* LibreNMS
|
|
*
|
|
* Copyright (c) 2015 Neil Lathwood <https://github.com/laf/ http://www.lathwood.co.uk/fa>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the
|
|
* Free Software Foundation, either version 3 of the License, or (at your
|
|
* option) any later version. Please see LICENSE.txt at the top level of
|
|
* the source code distribution for details.
|
|
*/
|
|
|
|
?>
|
|
|
|
<h3>Processor settings</h3>
|
|
|
|
<div class="table-responsive">
|
|
<table id="processor" class="table table-hover table-condensed processor">
|
|
<thead>
|
|
<tr>
|
|
<th data-column-id="hostname">Device</th>
|
|
<th data-column-id="processor_descr">Processor</th>
|
|
<th data-column-id="processor_perc">%</th>
|
|
<th data-column-id="processor_perc_warn" data-formatter="perc_update" data-header-css-class="edit-processor-input">% Warn</th>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
</div>
|
|
|
|
<script>
|
|
var grid = $("#processor").bootgrid({
|
|
ajax: true,
|
|
rowCount: [50, 100, 250, -1],
|
|
post: function ()
|
|
{
|
|
return {
|
|
id: "processor-edit",
|
|
device_id: <?php echo $device['device_id']; ?>,
|
|
};
|
|
},
|
|
url: "ajax_table.php",
|
|
formatters: {
|
|
"perc_update": function(column,row) {
|
|
return "<div class='form-group'><input type='text' class='form-control input-sm processor' data-device_id='<?php echo $device['device_id']; ?>' data-processor_id='"+row.processor_id+"' value='"+row.processor_perc_warn+"'></div>";
|
|
}
|
|
},
|
|
templates: {
|
|
}
|
|
}).on("loaded.rs.jquery.bootgrid", function() {
|
|
|
|
grid.find(".processor").blur(function(event) {
|
|
event.preventDefault();
|
|
var device_id = $(this).data("device_id");
|
|
var processor_id = $(this).data("processor_id");
|
|
var data = $(this).val();
|
|
var $this = $(this);
|
|
$.ajax({
|
|
type: 'POST',
|
|
url: 'ajax_form.php',
|
|
data: {type: "processor-update", device_id: device_id, data: data, processor_id: processor_id},
|
|
dataType: "json",
|
|
success: function (data) {
|
|
if (data.status == 'ok') {
|
|
$this.closest('.form-group').addClass('has-success');
|
|
setTimeout(function () {
|
|
$this.closest('.form-group').removeClass('has-success');
|
|
}, 2000);
|
|
} else {
|
|
$this.closest('.form-group').addClass('has-error');
|
|
setTimeout(function () {
|
|
$this.closest('.form-group').removeClass('has-error');
|
|
}, 2000);
|
|
}
|
|
},
|
|
error: function () {
|
|
$this.closest('.form-group').addClass('has-error');
|
|
setTimeout(function () {
|
|
$this.closest('.form-group').removeClass('has-error');
|
|
}, 2000);
|
|
}
|
|
});
|
|
});
|
|
});
|
|
</script>
|