Source
'action' => 'return reloadPopup(document.forms["expression_testing_from"], "popup.testtriggerexpr");'
<?php
/*
** 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
*/
$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;
}
if (array_key_exists('error', $data['results'][$expression])) {
$error = makeErrorIcon($data['results'][$expression]['error']);
}
}