mirror of
https://github.com/stylersnico/librenms.git
synced 2026-08-03 08:01:38 +02:00
@@ -0,0 +1,35 @@
|
|||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* LibreNMS
|
||||||
|
*
|
||||||
|
* Copyright (c) 2015 Søren Friis Rosiak <sorenrosiak@gmail.com>
|
||||||
|
* 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
$status = 'error';
|
||||||
|
$message = 'unknown error';
|
||||||
|
|
||||||
|
$device_id = mres($_POST['device_id']);
|
||||||
|
$port_id_notes = mres($_POST['port_id_notes']);
|
||||||
|
$attrib_value = mres($_POST['notes']);
|
||||||
|
|
||||||
|
if (isset($attrib_value) && set_dev_attrib(array('device_id' => $device_id), $port_id_notes, $attrib_value)) {
|
||||||
|
$status = 'ok';
|
||||||
|
$message = 'Updated';
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$status = 'error';
|
||||||
|
$message = 'ERROR: Could not update';
|
||||||
|
}
|
||||||
|
die(json_encode(array(
|
||||||
|
'status' => $status,
|
||||||
|
'message' => $message,
|
||||||
|
'attrib_type' => $port_id_notes,
|
||||||
|
'attrib_value' => $attrib_value,
|
||||||
|
'device_id' => $device_id
|
||||||
|
|
||||||
|
)));
|
||||||
@@ -73,6 +73,7 @@ $menu_options['realtime'] = 'Real time';
|
|||||||
// FIXME CONDITIONAL
|
// FIXME CONDITIONAL
|
||||||
$menu_options['arp'] = 'ARP Table';
|
$menu_options['arp'] = 'ARP Table';
|
||||||
$menu_options['events'] = 'Eventlog';
|
$menu_options['events'] = 'Eventlog';
|
||||||
|
$menu_options['notes'] = 'Notes';
|
||||||
|
|
||||||
if (dbFetchCell("SELECT COUNT(*) FROM `ports_adsl` WHERE `port_id` = '".$port['port_id']."'")) {
|
if (dbFetchCell("SELECT COUNT(*) FROM `ports_adsl` WHERE `port_id` = '".$port['port_id']."'")) {
|
||||||
$menu_options['adsl'] = 'ADSL';
|
$menu_options['adsl'] = 'ADSL';
|
||||||
|
|||||||
@@ -0,0 +1,57 @@
|
|||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* LibreNMS
|
||||||
|
*
|
||||||
|
* Copyright (c) 2015 Søren Friis Rosiak <sorenrosiak@gmail.com>
|
||||||
|
* 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.
|
||||||
|
*/
|
||||||
|
$pagetitle[] = 'Notes';
|
||||||
|
$port_id_notes = 'port_id_notes:' . $port['port_id'];
|
||||||
|
$device_id = $device['device_id'];
|
||||||
|
$data = get_dev_attrib($device,$port_id_notes);
|
||||||
|
?>
|
||||||
|
|
||||||
|
<form class="form-horizontal" action="" method="post">
|
||||||
|
<h3>Port Notes</h3>
|
||||||
|
<hr>
|
||||||
|
<div class="form-group">
|
||||||
|
<div class="col-sm-10">
|
||||||
|
<textarea class="form-control" rows="6" name="notes" id="port-notes"><?php
|
||||||
|
echo htmlentities($data); ?></textarea>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<div class="col-sm-10">
|
||||||
|
<?php
|
||||||
|
echo '
|
||||||
|
<button type="submit" name="btn-update-notes" id="btn-update-notes" class="btn btn-primary">Submit</button>
|
||||||
|
';
|
||||||
|
?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
<script>
|
||||||
|
$("[name='btn-update-notes']").on('click', function(event) {
|
||||||
|
event.preventDefault();
|
||||||
|
var $this = $(this);
|
||||||
|
var device_id = "<?php echo $device_id; ?>";
|
||||||
|
var port_id_notes = "<?php echo $port_id_notes; ?>";
|
||||||
|
var notes = $("#port-notes").val();
|
||||||
|
$.ajax({
|
||||||
|
type: 'POST',
|
||||||
|
url: 'ajax_form.php',
|
||||||
|
data: { type: "update-port-notes", notes: notes, port_id_notes: port_id_notes, device_id: device_id },
|
||||||
|
dataType: "html",
|
||||||
|
success: function(data){
|
||||||
|
toastr.success('Saved');
|
||||||
|
},
|
||||||
|
error:function(){
|
||||||
|
toastr.error('Error');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
Reference in New Issue
Block a user