blob: 7a6c1bd2b08bf07652ab1cce2fac7b1bbcdd2118 (
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
29
30
31
32
33
|
<?php
/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Forms;
use Icinga\Data\ResourceFactory;
use Icinga\Forms\ConfigForm;
class DatabaseConfigForm extends ConfigForm
{
public function init()
{
$this->setSubmitLabel(t('Save Changes'));
}
public function createElements(array $formData)
{
$dbResources = ResourceFactory::getResourceConfigs('db')->keys();
$this->addElement('select', 'icingadb_resource', [
'description' => t('Database resource'),
'label' => t('Database'),
'multiOptions' => array_merge(
['' => sprintf(' - %s - ', t('Please choose'))],
array_combine($dbResources, $dbResources)
),
'disable' => [''],
'required' => true,
'value' => ''
]);
}
}
|