Source
: (new CImg('#', 'no image'))->setAttribute('data-src', 'imgstore.php?iconid='.$image['imageid'])
<?php
/*
** Zabbix
** Copyright (C) 2001-2022 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 CView $this
*/
$this->includeJsFile('administration.image.list.js.php');
$page_url = (new CUrl('zabbix.php'))->setArgument('action', 'image.list');
$widget = (new CWidget())
->setTitle(_('Images'))
->setTitleSubmenu(getAdministrationGeneralSubmenu())
->setDocUrl(CDocHelper::getUrl(CDocHelper::ADMINISTRATION_IMAGE_LIST))
->setControls((new CTag('nav', true,
(new CForm())
->cleanItems()
->setAction($page_url->getUrl())
->addItem((new CList())
->addItem([
new CLabel(_('Type'), 'label-imagetype'),
(new CDiv())->addClass(ZBX_STYLE_FORM_INPUT_MARGIN),
(new CSelect('imagetype'))
->setId('imagetype')
->setFocusableElementId('label-imagetype')
->addOption(new CSelectOption($page_url
->setArgument('imagetype', IMAGE_TYPE_ICON)
->getUrl(),
_('Icon')
))
->addOption(new CSelectOption($page_url
->setArgument('imagetype', IMAGE_TYPE_BACKGROUND)
->getUrl(),
_('Background')
))
->setValue($page_url
->setArgument('imagetype', $data['imagetype'])
->getUrl()
)
])
->addItem(
(new CButton(null, ($data['imagetype'] == IMAGE_TYPE_ICON)
? _('Create icon')
: _('Create background')
))->onClick(sprintf('javascript: document.location="%s";', (new CUrl('zabbix.php'))