blob: 28b2c79ec567ce15b5663e7d65d894cc5bb6ad71 (
plain)
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
|
<?php
// Icinga Web 2 X.509 Module | (c) 2018 Icinga GmbH | GPLv2
namespace Icinga\Module\X509\Forms\Config;
use Icinga\Data\ResourceFactory;
use Icinga\Forms\ConfigForm;
class BackendConfigForm extends ConfigForm
{
public function init()
{
$this->setName('x509_backend');
$this->setSubmitLabel($this->translate('Save Changes'));
}
public function createElements(array $formData)
{
$dbResources = ResourceFactory::getResourceConfigs('db')->keys();
$this->addElement('select', 'backend_resource', [
'label' => $this->translate('Database'),
'description' => $this->translate('Database resource'),
'multiOptions' => array_combine($dbResources, $dbResources),
'required' => true
]);
}
}
|