mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
90 lines
3.5 KiB
PHP
90 lines
3.5 KiB
PHP
<?php
|
|
/**
|
|
* delete_poller.inc.php
|
|
*
|
|
* -Description-
|
|
*
|
|
* 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.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* @link https://www.librenms.org
|
|
*
|
|
* @copyright 2017 Tony Murray
|
|
* @author Tony Murray <murraytony@gmail.com>
|
|
*/
|
|
if (Auth::user()->hasGlobalAdmin()) {
|
|
?>
|
|
|
|
<div class="modal fade" id="confirm-delete" tabindex="-1" role="dialog" aria-labelledby="Delete" aria-hidden="true">
|
|
<div class="modal-dialog modal-sm">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
|
<h5 class="modal-title" id="Delete">Confirm Delete</h5>
|
|
</div>
|
|
<div class="modal-body">
|
|
<p>Please confirm that you would like to delete this poller.</p>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<form role="form" class="remove_token_form">
|
|
<?php echo csrf_field() ?>
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
|
|
<button type="submit" class="btn btn-danger danger" id="poller-removal"
|
|
data-target="poller-removal">Delete
|
|
</button>
|
|
<input type="hidden" name="id" id="id" value="">
|
|
<input type="hidden" name="pollertype" id="pollertype" value="">
|
|
<input type="hidden" name="confirm" id="confirm" value="yes">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
$('#confirm-delete').on('show.bs.modal', function (e) {
|
|
id = $(e.relatedTarget).data('id');
|
|
pollertype = $(e.relatedTarget).data('pollertype');
|
|
$("#id").val(id);
|
|
$("#pollertype").val(pollertype);
|
|
});
|
|
|
|
$('#poller-removal').on("click", function (e) {
|
|
e.preventDefault();
|
|
var id = $("#id").val();
|
|
var pollertype = $("#pollertype").val();
|
|
$.ajax({
|
|
type: 'POST',
|
|
url: 'ajax_form.php',
|
|
data: {type: pollertype, id: id},
|
|
success: function (result) {
|
|
if (result.status == 0) {
|
|
toastr.success(result.message);
|
|
$("#row_" + id).remove();
|
|
}
|
|
else {
|
|
toastr.error(result.message);
|
|
}
|
|
$("#confirm-delete").modal('hide');
|
|
},
|
|
error: function () {
|
|
toastr.error('An error occurred deleting this poller.');
|
|
$("#confirm-delete").modal('hide');
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
<?php
|
|
}
|
|
?>
|