Source
<?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 CView $this
*/
$this->includeJsFile('administration.image.list.js.php');
$page_url = (new CUrl('zabbix.php'))->setArgument('action', 'image.list');
$html_page = (new CHtmlPage())
->setTitle(_('Images'))
->setTitleSubmenu(getAdministrationGeneralSubmenu())
->setDocUrl(CDocHelper::getUrl(CDocHelper::ADMINISTRATION_IMAGE_LIST))
->setControls((new CTag('nav', true,
(new CForm())
->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 CSimpleButton(
$data['imagetype'] == IMAGE_TYPE_ICON ? _('Create icon') : _('Create background')
))->onClick(sprintf('javascript: document.location="%s";', (new CUrl('zabbix.php'))
->setArgument('action', 'image.edit')
->setArgument('imagetype', $data['imagetype'])
->getUrl()
))
)
)
))