Source
'action' => 'return reloadPopup(document.forms["expression_testing_from"], "popup.testtriggerexpr");'
<?php
/*
** 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
*/
$data_table = (new CTable())
->addStyle('width: 100%;')
->setHeader([
_('Expression variable elements'),
_('Result type'),
_('Value')
]);
foreach ($data['data_table_rows'] as $row) {
$data_table->addRow($row);
}
$form_list = (new CFormList())
->addRow(_('Test data'),
(new CDiv($data_table))
->addClass(ZBX_STYLE_TABLE_FORMS_SEPARATOR)
->addStyle('min-width: '.ZBX_TEXTAREA_BIG_WIDTH.'px;')
);
$result_table = (new CTable())
->addStyle('width: 100%;')
->setHeader([
_('Expression'),
_('Result'),
_('Error')
]);
foreach ($data['eHTMLTree'] as $e) {
$expression = $e['expression']['value'];
$result = '';
$style = null;
$error = null;
if (array_key_exists($expression, $data['results'])) {
if (array_key_exists('value', $data['results'][$expression])) {
$result = $data['results'][$expression]['value'] ? 'TRUE' : 'FALSE';
$style = $data['results'][$expression]['value'] ? ZBX_STYLE_GREEN : ZBX_STYLE_RED;
}