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() {
document.addEventListener('click', (e) => {
if (e.target.classList.contains('js-edit-module')) {
this._edit({moduleid: e.target.dataset.moduleid});
}
else if (e.target.classList.contains('js-enable-module')) {
this._enable(e.target, [e.target.dataset.moduleid], false);
}
else if (e.target.classList.contains('js-massenable-module')) {
this._enable(e.target, Object.keys(chkbxRange.getSelectedIds()));
}
else if (e.target.classList.contains('js-disable-module')) {
this._disable(e.target, [e.target.dataset.moduleid], false);
}
else if (e.target.classList.contains('js-massdisable-module')) {
this._disable(e.target, Object.keys(chkbxRange.getSelectedIds()));
}
});
}
_edit(parameters = {}) {
const overlay = PopUp('module.edit', parameters, {
dialogueid: 'module-edit',
dialogue_class: 'modal-popup-medium',
prevent_navigation: true
});
overlay.$dialogue[0].addEventListener('dialogue.submit', (e) => {
postMessageOk(e.detail.title);
if ('messages' in e.detail) {
postMessageDetails('success', e.detail.messages);
}
uncheckTableRows('modules');
location.href = location.href;
});
}