1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
|
<?php
/*
** Zabbix
** Copyright (C) 2001-2019 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.
**/
$this->includeJSfile('app/views/monitoring.acknowledge.edit.js.php');
$form_list = (new CFormList())
->addRow(
new CLabel(_('Message'), 'message'),
(new CTextArea('message', $data['message']))
->setWidth(ZBX_TEXTAREA_BIG_WIDTH)
->setMaxLength(255)
->setAttribute('autofocus', 'autofocus')
);
if (array_key_exists('history', $data)) {
$form_list->addRow(_('History'),
(new CDiv(makeEventHistoryTable($data['history'], $data['users'], $data['config'])))
->addClass(ZBX_STYLE_TABLE_FORMS_SEPARATOR)
->setAttribute('style', 'min-width: '.ZBX_TEXTAREA_BIG_WIDTH.'px;')
);
}
$selected_events = count($data['eventids']);
$form_list
->addRow(_x('Scope', 'selected problems'),
(new CDiv(
(new CRadioButtonList('scope', $data['scope']))
->makeVertical()
->addValue([
_n('Only selected problem', 'Only selected problems', $selected_events),
$selected_events > 1 ? (new CDiv())->addClass(ZBX_STYLE_FORM_INPUT_MARGIN) : null,
$selected_events > 1 ? new CSup(_n('%1$s event', '%1$s events', $selected_events)) : null
], ZBX_ACKNOWLEDGE_SELECTED)
->addValue([
_('Selected and all other problems of related triggers'),
(new CDiv())->addClass(ZBX_STYLE_FORM_INPUT_MARGIN),
new CSup(_n('%1$s event', '%1$s events', $data['related_problems_count']))
], ZBX_ACKNOWLEDGE_PROBLEM)
))
->setAttribute('style', 'min-width: '.ZBX_TEXTAREA_BIG_WIDTH.'px;')
->addClass(ZBX_STYLE_TABLE_FORMS_SEPARATOR)
)
->addRow(_('Change severity'),
(new CList([
(new CCheckBox('change_severity', ZBX_PROBLEM_UPDATE_SEVERITY))
->onClick('javascript: jQuery("#severity input").attr("disabled", this.checked ? false : true)')
->setChecked($data['change_severity'])
->setEnabled($data['problem_severity_can_be_changed']),
(new CSeverity(['name' => 'severity', 'value' => $data['severity']], $data['change_severity']))
]))
->addClass('hor-list')
)
->addRow(_('Acknowledge'),
(new CCheckBox('acknowledge_problem', ZBX_PROBLEM_UPDATE_ACKNOWLEDGE))
->setChecked($data['acknowledge_problem'])
->setEnabled($data['problem_can_be_acknowledged'])
)
->addRow(_('Close problem'),
(new CCheckBox('close_problem', ZBX_PROBLEM_UPDATE_CLOSE))
->setChecked($data['close_problem'])
->setEnabled($data['problem_can_be_closed'])
)
->addRow('',
(new CDiv((new CLabel(_('At least one update operation or message must exist.')))->setAsteriskMark()))
);
$footer_buttons = makeFormFooter(
new CSubmitButton(_('Update'), 'action', 'acknowledge.create'),
[new CRedirectButton(_('Cancel'), $data['backurl'])]
);
(new CWidget())
->setTitle(_('Update problem'))
->addItem(
(new CForm())
->setId('acknowledge_form')
->setAttribute('aria-labeledby', ZBX_STYLE_PAGE_TITLE)
->addVar('eventids', $data['eventids'])
->addVar('backurl', $data['backurl'])
->addItem(
(new CTabView())
->addTab('ackTab', null, $form_list)
->setFooter($footer_buttons)
)
)
->show();
|