✏️ 正在编辑: hostmacros.list.html.php
路径:
/usr/share/zabbix/app/partials/hostmacros.list.html.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php /* ** Zabbix ** Copyright (C) 2001-2021 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 */ if ($data['readonly'] && !$data['macros']) { $table = new CObject(_('No macros found.')); } else { $table = (new CTable()) ->setId('tbl_macros') ->addClass(ZBX_STYLE_TEXTAREA_FLEXIBLE_CONTAINER) ->setHeader([ (new CColHeader(_('Macro')))->setWidth(ZBX_TEXTAREA_MACRO_WIDTH), (new CColHeader(_('Value')))->setWidth(ZBX_TEXTAREA_MACRO_VALUE_WIDTH), _('Description'), $data['readonly'] ? null : '' ]); foreach ($data['macros'] as $i => $macro) { $macro_input = (new CTextAreaFlexible('macros['.$i.'][macro]', $macro['macro'])) ->setReadonly($data['readonly']) ->addClass('macro') ->setWidth(ZBX_TEXTAREA_MACRO_WIDTH) ->setAttribute('placeholder', '{$MACRO}'); $macro_value = (new CMacroValue($macro['type'], 'macros['.$i.']', null, false)) ->setReadonly($data['readonly']); $macro_cell = [$macro_input]; if (!$data['readonly']) { if (array_key_exists('hostmacroid', $macro)) { $macro_cell[] = new CVar('macros['.$i.'][hostmacroid]', $macro['hostmacroid']); } $action_btn = (new CButton('macros['.$i.'][remove]', _('Remove'))) ->addClass(ZBX_STYLE_BTN_LINK) ->addClass('element-table-remove'); } else { $action_btn = null; } if ($macro['type'] == ZBX_MACRO_TYPE_SECRET) { $macro_value->addRevertButton(); $macro_value->setRevertButtonVisibility(array_key_exists('value', $macro) && array_key_exists('hostmacroid', $macro) ); } if (array_key_exists('value', $macro)) { $macro_value->setAttribute('value', $macro['value']); } $table->addRow([ (new CCol($macro_cell))->addClass(ZBX_STYLE_TEXTAREA_FLEXIBLE_PARENT), (new CCol($macro_value))->addClass(ZBX_STYLE_TEXTAREA_FLEXIBLE_PARENT), (new CCol( (new CTextAreaFlexible('macros['.$i.'][description]', $macro['description'])) ->setWidth(ZBX_TEXTAREA_MACRO_VALUE_WIDTH) ->setMaxlength(DB::getFieldLength('hostmacro', 'description')) ->setReadonly($data['readonly']) ->setAttribute('placeholder', _('description')) ))->addClass(ZBX_STYLE_TEXTAREA_FLEXIBLE_PARENT), $action_btn ? (new CCol($action_btn))->addClass(ZBX_STYLE_NOWRAP) : null ], 'form_row'); } // buttons if (!$data['readonly']) { $table->setFooter(new CCol( (new CButton('macro_add', _('Add'))) ->addClass(ZBX_STYLE_BTN_LINK) ->addClass('element-table-add') )); } } $table->show(); // Initializing input secret and macro value init script separately. (new CScriptTag("jQuery('.input-secret').inputSecret();"))->show(); (new CScriptTag("jQuery('.input-group').macroValue();"))->show();
💾 保存文件
← 返回文件管理器