Files
librenms-librenms/includes/html/modal/delete_alert_template.inc.php

72 lines
2.7 KiB
PHP
Raw Normal View History

2014-11-30 17:49:52 +00:00
<?php
/*
* LibreNMS
*
* Copyright (c) 2014 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.
*/
if (!Auth::user()->hasGlobalAdmin()) {
2014-11-30 17:49:52 +00:00
die('ERROR: You need to be admin');
}
?>
<div class="modal fade" id="confirm-delete-alert-template" 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">&times;</button>
<h5 class="modal-title" id="Delete">Confirm Delete</h5>
</div>
<div class="modal-body">
<p>If you would like to remove the alert template then please click Delete.</p>
</div>
<div class="modal-footer">
<form role="form" class="remove_alert_templet_form">
<?php echo csrf_field() ?>
2014-11-30 17:49:52 +00:00
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
<button type="submit" class="btn btn-danger danger" id="alert-template-removal" data-target="alert-template-removal">Delete</button>
<input type="hidden" name="template_id" id="template_id" value="">
<input type="hidden" name="confirm" id="confirm" value="yes">
</form>
</div>
</div>
</div>
</div>
<script>
$('#alert-template-removal').click('', function(event) {
event.preventDefault();
var template_id = $("#template_id").val();
$.ajax({
type: 'POST',
url: 'ajax_form.php',
2014-11-30 17:49:52 +00:00
data: { type: "delete-alert-template", template_id: template_id },
dataType: "html",
success: function(msg) {
if(msg.indexOf("ERROR:") <= -1) {
$('[data-row-id="'+template_id+'"]').remove();
2014-11-30 17:49:52 +00:00
}
$("#template_id").val('');
toastr.success(msg);
2014-11-30 17:49:52 +00:00
$("#confirm-delete-alert-template").modal('hide');
},
error: function() {
toastr.error("The alert template could not be deleted.");
2014-11-30 17:49:52 +00:00
$("#confirm-delete-alert-template").modal('hide');
}
});
});
$('#confirm-delete-alert-template').on('hide.bs.modal', function(event) {
$('#template_id').val('');
});
2014-11-30 17:49:52 +00:00
</script>