Source
$macro_cell[] = new CVar('macros['.$i.'][original_description]', $macro['original']['description']);
<?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 CPartial $this
* @var array $data
*/
if ($data['readonly'] && !$data['macros']) {
$table = new CObject(_('No macros found.'));
}
else {
$table = (new CTable())
->setId('tbl_macros')
->addClass(ZBX_STYLE_TEXTAREA_FLEXIBLE_CONTAINER)
->addClass('host-macros-table')
->setColumns([
(new CTableColumn(_('Macro')))->addClass('table-col-macro'),
(new CTableColumn(_('Value')))->addClass('table-col-value'),
(new CTableColumn(_('Description')))->addClass('table-col-description'),
$data['readonly'] ? null : (new CTableColumn())->addClass('table-col-action')
]);
foreach ($data['macros'] as $i => $macro) {
$macro_value = (new CMacroValue($macro['type'], 'macros['.$i.']', null, false))
->setReadonly($data['readonly']
|| !($macro['discovery_state'] & CControllerHostMacrosList::DISCOVERY_STATE_CONVERTING)
);
$macro_cell = [
(new CTextAreaFlexible('macros['.$i.'][macro]', $macro['macro']))
->setReadonly($data['readonly']
|| $macro['discovery_state'] != CControllerHostMacrosList::DISCOVERY_STATE_MANUAL
)
->addClass('macro')
->setWidth(ZBX_TEXTAREA_MACRO_WIDTH)
->setAttribute('placeholder', '{$MACRO}')
->disableSpellcheck()
];
if (!$data['readonly']) {
$macro_cell[] = new CVar('macros['.$i.'][discovery_state]', $macro['discovery_state']);
if (array_key_exists('hostmacroid', $macro)) {
$macro_cell[] = new CVar('macros['.$i.'][hostmacroid]', $macro['hostmacroid']);
}
if (array_key_exists('allow_revert', $macro)) {
$macro_value->addRevertButton();
$macro_value->setRevertButtonVisibility($macro['type'] != ZBX_MACRO_TYPE_SECRET