<?php declare(strict_types = 0); /* ** Zabbix ** Copyright (C) 2001-2022 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 * @var array $data */ // Create form. $form = (new CForm()) ->setId('massupdate-form') ->setAttribute('aria-labeledby', ZBX_STYLE_PAGE_TITLE) ->addVar('action', $data['prototype'] ? 'popup.massupdate.triggerprototype' : 'popup.massupdate.trigger') ->addVar('ids', $data['ids']) ->addVar('update', '1') ->addVar('location_url', $data['location_url']) ->addVar('context', $data['context']) ->disablePasswordAutofill(); if ($data['prototype']) { $form ->addVar('parent_discoveryid', $data['parent_discoveryid']) ->addVar('prototype', $data['prototype']); } /* * Trigger tab */ $trigger_form_list = (new CFormList('trigger-form-list')) ->addRow( (new CVisibilityBox('visible[priority]', 'priority-div', _('Original'))) ->setLabel(_('Severity')) ->setAttribute('autofocus', 'autofocus'), (new CDiv( new CSeverity('priority', 0) ))->setId('priority-div') ) ->addRow( (new CVisibilityBox('visible[manual_close]', 'manual-close-div', _('Original'))) ->setLabel(_('Allow manual close')), (new CDiv( (new CRadioButtonList('manual_close', ZBX_TRIGGER_MANUAL_CLOSE_NOT_ALLOWED)) ->addValue(_('No'), ZBX_TRIGGER_MANUAL_CLOSE_NOT_ALLOWED) ->addValue(_('Yes'), ZBX_TRIGGER_MANUAL_CLOSE_ALLOWED) ->setModern(true) ))->setId('manual-close-div') ); /* * Tags tab */ $tags_form_list = (new CFormList('tags-form-list')) ->addRow( (new CVisibilityBox('visible[tags]', 'tags-div', _('Original')))->setLabel(_('Tags')), (new CDiv([ (new CRadioButtonList('mass_update_tags', ZBX_ACTION_ADD)) ->addValue(_('Add'), ZBX_ACTION_ADD) ->addValue(_('Replace'), ZBX_ACTION_REPLACE) ->addValue(_('Remove'), ZBX_ACTION_REMOVE) ->setModern(true) ->addStyle('margin-bottom: 10px;'), renderTagTable([['tag' => '', 'value' => '']]) ->setHeader([_('Name'), _('Value'), _('Action')]) ->setId('tags-table') ]))->setId('tags-div') ); /* * Dependencies tab */ $dependencies_form_list = new CFormList('dependencies-form-list'); $dependencies_table = (new CTable()) ->setId('dependency-table') ->addClass(ZBX_STYLE_OVERFLOW_ELLIPSIS) ->addStyle('width: 100%;') ->setHeader([_('Name'), (new CColHeader(_('Action')))->setWidth(50)]); $bttn_prototype = ''; if ($data['prototype']) { $bttn_prototype = (new CButton('add_dep_trigger_prototype', _('Add prototype'))) ->setAttribute('data-parent_discoveryid', $data['parent_discoveryid']) ->onClick(' PopUp("popup.generic", { srctbl: "trigger_prototypes", srcfld1: "triggerid", dstfrm: "massupdate", dstfld1: "new_dependency", dstact: "add_dependency", reference: "deptrigger_prototype", multiselect: 1, objname: "triggers", parent_discoveryid: this.dataset.parent_discoveryid }, {dialogue_class: "modal-popup-generic"}); ') ->addClass(ZBX_STYLE_BTN_LINK); } $dependencies_form_list->addRow( (new CVisibilityBox('visible[dependencies]', 'dependencies-div', _('Original'))) ->setLabel(_('Replace dependencies')), (new CDiv([ $dependencies_table, new CHorList([ (new CButton('btn1', _('Add'))) ->onClick( 'return PopUp("popup.generic", '.json_encode([ 'srctbl' => 'triggers', 'srcfld1' => 'triggerid', 'dstfrm' => 'massupdate', 'dstfld1' => 'new_dependency', 'dstact' => 'add_dependency', 'reference' => 'deptrigger', 'objname' => 'triggers', 'multiselect' => '1', 'with_triggers' => '1', 'normal_only' => '1' ]).', {dialogue_class: "modal-popup-generic"});' ) ->addClass(ZBX_STYLE_BTN_LINK), $bttn_prototype ]) ]))->setId('dependencies-div') ); // Append tabs to the form. $tabs = (new CTabView()) ->addTab('trigger_tab', $data['prototype'] ? _('Trigger prototype') :_('Trigger'), $trigger_form_list) ->addTab('tags_tab', _('Tags'), $tags_form_list) ->addTab('dependencies_tab', _('Dependencies'), $dependencies_form_list) ->setSelected(0); // Append tabs to form. $form->addItem($tabs); $form->addItem(new CJsScript($this->readJsFile('popup.massupdate.tmpl.js.php'))); $form->addItem(new CJsScript($this->readJsFile('popup.massupdate.trigger.js.php'))); $output = [ 'header' => $data['title'], 'doc_url' => CDocHelper::getUrl(CDocHelper::POPUP_MASSUPDATE_TRIGGER), 'body' => $form->toString(), 'buttons' => [ [ 'title' => _('Update'), 'class' => '', 'keepOpen' => true, 'isSubmit' => true, 'action' => 'return submitPopup(overlay);' ] ] ]; $output['script_inline'] = $this->readJsFile('popup.massupdate.js.php'); $output['script_inline'] .= getPagePostJs(); if ($data['user']['debug_mode'] == GROUP_DEBUG_MODE_ENABLED) { CProfiler::getInstance()->stop(); $output['debug'] = CProfiler::getInstance()->make()->toString(); } echo json_encode($output);