icingadb-web/application/forms/DatabaseConfigForm.php
Johannes Meyer 2e191a6826 Use t() instead of translate() in controllers and forms
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.
2020-04-24 15:01:29 +02:00

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' => ''
]);
}
}