mirror of
https://github.com/Icinga/icingadb-web.git
synced 2026-02-03 20:40:15 -05:00
There's no `icingadb` domain so why should we ask everytime for it. `t()` only utilizes the `icinga` domain and that's what we need.
33 lines
902 B
PHP
33 lines
902 B
PHP
<?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' => ''
|
|
]);
|
|
}
|
|
}
|