Source
<?php declare(strict_types = 0);
/*
** 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 Affero General Public License as published by the Free Software Foundation, version 3.
**
** 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 Affero General Public License for more details.
**
** You should have received a copy of the GNU Affero General Public License along with this program.
** If not, see <https://www.gnu.org/licenses/>.
**/
/**
* @var CView $this
*/
?>
<script>
const view = {
form: null,
init({form_name, host_interfaces, proxy_groupid, host_is_discovered}) {
this.form = document.getElementById(form_name);
this.form.addEventListener('submit', this.events.submit);
this.form_name = form_name;
host_edit.init({form_name, host_interfaces, proxy_groupid, host_is_discovered});
this.initEvents();
},
initEvents() {
this.form.addEventListener('click', (e) => {
const target = e.target;
if (target.classList.contains('js-edit-linked-template')) {
this.editTemplate({templateid: e.target.dataset.templateid});
}
else if (target.classList.contains('js-edit-proxy')) {
this.editProxy(e.target.dataset.proxyid);
}
else if (target.classList.contains('js-update-item')) {
this.editItem(target, target.dataset);
}
});
},
editItem(target, data) {
const overlay = PopUp('item.edit', target.dataset, {
dialogueid: 'item-edit',
dialogue_class: 'modal-popup-large',
trigger_element: target,
prevent_navigation: true
});
overlay.$dialogue[0].addEventListener('dialogue.submit', e => {
const data = e.detail;
if ('success' in data) {
postMessageOk(data.success.title);