Source
<?php
/*
** Zabbix
** 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 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 CPartial $this
*/
$table = (new CTable())
->setId('tbl_macros')
->addClass(ZBX_STYLE_TEXTAREA_FLEXIBLE_CONTAINER)
->setHeader([_('Macro'), _('Value'), _('Description')]);
foreach ($data['macros'] as $i => $macro) {
$macro_input = (new CTextAreaFlexible('macros['.$i.'][macro]', $macro['macro']))
->addClass('macro')
->setAdaptiveWidth(ZBX_TEXTAREA_MACRO_WIDTH)
->setAttribute('placeholder', '{$MACRO}')
->disableSpellcheck();
if ($i == 0) {
$macro_input->setAttribute('autofocus', 'autofocus');
}
$macro_value = new CMacroValue($macro['type'], 'macros['.$i.']');
if ($macro['type'] == ZBX_MACRO_TYPE_SECRET) {
$macro_value->addRevertButton();
$macro_value->setRevertButtonVisibility(array_key_exists('value', $macro)
&& array_key_exists('globalmacroid', $macro)
);
}
if (array_key_exists('value', $macro)) {
$macro_value->setAttribute('value', $macro['value']);
}
$description_input = (new CTextAreaFlexible('macros['.$i.'][description]', $macro['description']))
->setAdaptiveWidth(ZBX_TEXTAREA_MACRO_VALUE_WIDTH)
->setMaxlength(DB::getFieldLength('globalmacro', 'description'))
->setAttribute('placeholder', _('description'));
$button_cell = [
(new CButton('macros['.$i.'][remove]', _('Remove')))
->addClass(ZBX_STYLE_BTN_LINK)
->addClass('element-table-remove')