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 = new class {
init() {
this.#initActions();
}
#initActions() {
document.getElementById('js-create').addEventListener('click', () => this.#edit());
document.getElementById('js-massdelete').addEventListener('click', (e) => {
this.#delete(e.target, Object.keys(chkbxRange.getSelectedIds()), true)
});
document.addEventListener('click', (e) => {
if (e.target.classList.contains('js-action-edit')) {
this.#editAction({actionid: e.target.dataset.actionid, eventsource: e.target.dataset.eventsource});
}
if (e.target.classList.contains('js-edit')) {
this.#edit({scriptid: e.target.dataset.scriptid});
}
})
}
#edit(parameters = {}) {
const overlay = PopUp('script.edit', parameters, {
dialogueid: 'script-form',
dialogue_class: 'modal-popup-large',
prevent_navigation: true
});
overlay.$dialogue[0].addEventListener('dialogue.submit', (e) => {
uncheckTableRows('script');
postMessageOk(e.detail.title);
if ('messages' in e.detail) {
postMessageDetails('success', e.detail.messages);
}
location.href = location.href;
});