You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
98 lines
3.5 KiB
98 lines
3.5 KiB
<?php
|
|
/*
|
|
** Zabbix
|
|
** Copyright (C) 2001-2023 Zabbix SIA
|
|
**
|
|
** 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 2 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, write to the Free Software
|
|
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
**/
|
|
?>
|
|
|
|
|
|
<script type="text/javascript">
|
|
const view = new class {
|
|
|
|
init({connect_timeout, default_inventory_mode, iframe_sandboxing_enabled, iframe_sandboxing_exceptions,
|
|
item_test_timeout, login_attempts, login_block, media_type_test_timeout, report_test_timeout,
|
|
script_timeout, snmptrap_logging, socket_timeout, uri_valid_schemes, url, validate_uri_schemes,
|
|
vault_provider, x_frame_options}) {
|
|
$('#validate_uri_schemes').change(function() {
|
|
$('#uri_valid_schemes').prop('disabled', !this.checked);
|
|
});
|
|
|
|
$('#iframe_sandboxing_enabled').change(function() {
|
|
$('#iframe_sandboxing_exceptions').prop('disabled', !this.checked);
|
|
});
|
|
|
|
$("#resetDefaults").click(function() {
|
|
overlayDialogue({
|
|
'title': <?= json_encode(_('Reset confirmation')) ?>,
|
|
'class': 'position-middle',
|
|
'content': $('<span>').text(<?= json_encode(_('Reset all fields to default values?')) ?>),
|
|
'buttons': [
|
|
{
|
|
'title': <?= json_encode(_('Cancel')) ?>,
|
|
'cancel': true,
|
|
'class': '<?= ZBX_STYLE_BTN_ALT ?>',
|
|
'action': function() {}
|
|
},
|
|
{
|
|
'title': <?= json_encode(_('Reset defaults')) ?>,
|
|
'focused': true,
|
|
'action': function() {
|
|
$('main')
|
|
.prev('.msg-bad')
|
|
.remove();
|
|
|
|
$('#url').val(url);
|
|
$('#discovery_groupid').multiSelect('clean');
|
|
$(`#default_inventory_mode input[value=${default_inventory_mode}]`)
|
|
.prop('checked', true);
|
|
$('#alert_usrgrpid').multiSelect('clean');
|
|
$('#snmptrap_logging').prop('checked', snmptrap_logging == 0 ? 'false' : 'true');
|
|
|
|
// Authorization.
|
|
$('#login_attempts').val(login_attempts);
|
|
$('#login_block').val(login_block);
|
|
|
|
// Storage of secrets.
|
|
$(`#vault_provider input[value=${vault_provider}]`).prop('checked', true);
|
|
|
|
// Security.
|
|
$('#validate_uri_schemes')
|
|
.prop('checked', validate_uri_schemes == 0 ? 'false' : 'true')
|
|
.change();
|
|
$('#uri_valid_schemes').val(uri_valid_schemes);
|
|
$('#x_frame_options').val(x_frame_options);
|
|
$('#iframe_sandboxing_enabled')
|
|
.prop('checked', iframe_sandboxing_enabled == 0 ? 'false' : 'true')
|
|
.change();
|
|
$('#iframe_sandboxing_exceptions').val(iframe_sandboxing_exceptions);
|
|
|
|
// Communication with Zabbix server.
|
|
$('#socket_timeout').val(socket_timeout);
|
|
$('#connect_timeout').val(connect_timeout);
|
|
$('#media_type_test_timeout').val(media_type_test_timeout);
|
|
$('#script_timeout').val(script_timeout);
|
|
$('#item_test_timeout').val(item_test_timeout);
|
|
$('#report_test_timeout').val(report_test_timeout);
|
|
}
|
|
}
|
|
]
|
|
}, this);
|
|
});
|
|
}
|
|
}
|
|
</script>
|