Source
xxxxxxxxxx
<?php declare(strict_types = 0);
/*
** 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
* @var array $data
*/
$form_action = (new CUrl('zabbix.php'))
->setArgument('action', 'popup.ldap.test.send')
->getUrl();
$formgrid = (new CFormGrid())
->addItem([
(new CLabel(_('Login'), 'test_username'))->setAsteriskMark(),
new CFormField(
(new CTextBox('test_username', $data['test_username']))
->setWidth(ZBX_TEXTAREA_SMALL_WIDTH)
->disableAutocomplete()
->setAriaRequired()
)
])
->addItem([
(new CLabel(_('User password'), 'test_password'))->setAsteriskMark(),
new CFormField(
(new CPassBox('test_password'))
->setWidth(ZBX_TEXTAREA_SMALL_WIDTH)
->disableAutocomplete()
->setAriaRequired()
)
]);
if ($data['ldap_config']['provision_status'] == JIT_PROVISIONING_ENABLED) {
$formgrid
->addItem([
new CLabel(_('User role')),
(new CFormField((new CSpan(_('No value')))->addClass(ZBX_STYLE_DISABLED)))->setId('provisioning_role')
])
->addItem([
new CLabel(_('User groups')),
(new CFormField((new CSpan(_('No value')))->addClass(ZBX_STYLE_DISABLED)))->setId('provisioning_groups')
])
->addItem([
new CLabel(_('Media type')),
(new CFormField((new CSpan(_('No value')))->addClass(ZBX_STYLE_DISABLED)))->setId('provisioning_medias')
]);
}
$form = (new CForm('post', $form_action))
->addItem((new CVar(CSRF_TOKEN_NAME, CCsrfTokenHelper::get('ldap')))->removeId())