1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
<?php
/*
** Zabbix
** Copyright (C) 2001-2019 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.
**/
include('include/views/js/administration.general.iconmap.js.php');
$widget = (new CWidget())
->setTitle(_('Icon mapping'))
->setControls((new CTag('nav', true,
(new CForm())
->cleanItems()
->addItem((new CList())
->addItem(makeAdministrationGeneralMenu('adm.iconmapping.php'))
)
))
->setAttribute('aria-label', _('Content controls'))
);
$iconMapTab = new CFormList();
$name = (new CTextBox('iconmap[name]', $this->data['iconmap']['name']))
->setWidth(ZBX_TEXTAREA_STANDARD_WIDTH)
->setAttribute('maxlength', 64)
->setAriaRequired()
->setAttribute('autofocus', 'autofocus');
$iconMapTab->addRow((new CLabel(_('Name'), 'iconmap[name]'))->setAsteriskMark(), $name);
$iconMapForm = (new CForm())
->setAttribute('aria-labeledby', ZBX_STYLE_PAGE_TITLE)
->addVar('form', 1);
if (isset($this->data['iconmapid'])) {
$iconMapForm->addVar('iconmapid', $this->data['iconmap']['iconmapid']);
}
$iconMapTable = (new CTable())
->setAttribute('style', 'width: 100%;')
->setId('iconMapTable')
->setHeader(['', '', _('Inventory field'), _('Expression'), _('Icon'), '', _('Action')]);
order_result($this->data['iconmap']['mappings'], 'sortorder');
$i = 0;
foreach ($this->data['iconmap']['mappings'] as $mapping) {
$iconMapTable->addRow(
(new CRow([
(new CCol(
(new CDiv())->addClass(ZBX_STYLE_DRAG_ICON)
))->addClass(ZBX_STYLE_TD_DRAG_ICON),
(new CSpan(($i + 1).':'))->addClass('rowNum'),
(new CComboBox('iconmap[mappings]['.$i.'][inventory_link]', $mapping['inventory_link'],
null, $data['inventoryList']
)),
(new CTextBox('iconmap[mappings]['.$i.'][expression]', $mapping['expression']))
->setWidth(ZBX_TEXTAREA_SMALL_WIDTH)
->setAriaRequired()
->setAttribute('maxlength', 64),
(new CComboBox('iconmap[mappings]['.$i.'][iconid]', $mapping['iconid'], null, $data['iconList']))
->addClass('mappingIcon'),
(new CCol(
(new CImg('imgstore.php?iconid='.$mapping['iconid'].'&width='.ZBX_ICON_PREVIEW_WIDTH.
'&height='.ZBX_ICON_PREVIEW_HEIGHT, _('Preview'), null, null
))
->addClass('preview')
->addClass(ZBX_STYLE_CURSOR_POINTER)
->setAttribute('data-image-full', 'imgstore.php?iconid='.$mapping['iconid'])
))->setAttribute('style', 'vertical-align: middle;'),
(new CCol(
(new CButton('remove', _('Remove')))
->addClass(ZBX_STYLE_BTN_LINK)
->addClass('remove_mapping')
->removeId()
))->addClass(ZBX_STYLE_NOWRAP)
]))
->addClass('sortable')
->setId('iconmapidRow_'.$i)
);
$i++;
}
// add row button
$iconMapTable
->addRow((new CRow([
(new CCol(
(new CButton('addMapping', _('Add')))->addClass(ZBX_STYLE_BTN_LINK)
))->setColSpan(7)
]))->setId('iconMapListFooter'))
->addRow([
(new CCol(_('Default')))->setColSpan(4),
(new CComboBox('iconmap[default_iconid]', $data['iconmap']['default_iconid'], null, $data['iconList']))
->addClass('mappingIcon'),
(new CCol(
(new CImg('imgstore.php?iconid='.$data['iconmap']['default_iconid'].
'&width='.ZBX_ICON_PREVIEW_WIDTH.'&height='.ZBX_ICON_PREVIEW_HEIGHT, _('Preview'), null, null
))
->addClass(ZBX_STYLE_CURSOR_POINTER)
->addClass('preview')
->setAttribute('data-image-full', 'imgstore.php?iconid='.$data['iconmap']['default_iconid'])
))->setAttribute('style', 'vertical-align: middle;')
]);
// </default icon row>
$iconMapTab->addRow(
(new CLabel(_('Mappings'), 'iconmap_list'))->setAsteriskMark(),
(new CDiv($iconMapTable))
->addClass(ZBX_STYLE_TABLE_FORMS_SEPARATOR)
->setAttribute('style', 'min-width: '.ZBX_TEXTAREA_BIG_WIDTH.'px;')
->setId('iconmap_list')
);
$iconMapView = new CTabView();
$iconMapView->addTab('iconmap', _('Icon map'), $iconMapTab);
// footer
if (isset($this->data['iconmapid'])) {
$iconMapView->setFooter(makeFormFooter(
new CSubmit('update', _('Update')),
[
new CSubmit('clone', _('Clone')),
new CButtonDelete(_('Delete icon map?'), url_param('form').url_param('iconmapid')),
new CButtonCancel()
]
));
}
else {
$iconMapView->setFooter(makeFormFooter(
new CSubmit('add', _('Add')),
[new CButtonCancel()]
));
}
$iconMapForm->addItem($iconMapView);
$widget->addItem($iconMapForm);
return $widget;
|