Source
<?php declare(strict_types = 0);
/*
** Zabbix
** Copyright (C) 2001-2025 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.
**/
/**
* @var CView $this
*/
?>
window.host_edit_popup = {
overlay: null,
dialogue: null,
form: null,
init({popup_url, form_name, host_interfaces, host_is_discovered, warnings}) {
this.overlay = overlays_stack.getById('host_edit');
this.dialogue = this.overlay.$dialogue[0];
this.form = this.overlay.$dialogue.$body[0].querySelector('form');
this.addEventListeners();
history.replaceState({}, '', popup_url);
host_edit.init({form_name, host_interfaces, host_is_discovered});
if (warnings.length) {
const message_box = warnings.length == 1
? makeMessageBox('warning', warnings, null, true, false)[0]
: makeMessageBox('warning', warnings,
<?= json_encode(_('Cloned host parameter values have been modified.')) ?>, true, false
)[0];
this.form.parentNode.insertBefore(message_box, this.form);
}
},
addEventListeners() {
this.enableNavigationWarning();
this.overlay.$dialogue[0].addEventListener('overlay.close', this.events.overlayClose, {once: true});
},
removeEventListeners() {
this.disableNavigationWarning();
this.overlay.$dialogue[0].removeEventListener('overlay.close', this.events.overlayClose);
},