mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-04-06 09:45:23 -04:00
Add SPDX license headers and mark source files as GPL-3.0-or-later to preserve the option to relicense under later GPL versions.
43 lines
1.3 KiB
PHP
43 lines
1.3 KiB
PHP
<?php
|
|
|
|
// SPDX-FileCopyrightText: 2018 Icinga GmbH <https://icinga.com>
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
namespace Icinga\Module\Setup\Forms;
|
|
|
|
use Icinga\Forms\Config\General\ApplicationConfigForm;
|
|
use Icinga\Forms\Config\General\LoggingConfigForm;
|
|
use Icinga\Web\Form;
|
|
|
|
/**
|
|
* Wizard page to define the application and logging configuration
|
|
*/
|
|
class GeneralConfigPage extends Form
|
|
{
|
|
/**
|
|
* Initialize this page
|
|
*/
|
|
public function init()
|
|
{
|
|
$this->setName('setup_general_config');
|
|
$this->setTitle($this->translate('Application Configuration', 'setup.page.title'));
|
|
$this->addDescription($this->translate(
|
|
'Now please adjust all application and logging related configuration options to fit your needs.'
|
|
));
|
|
}
|
|
|
|
/**
|
|
* @see Form::createElements()
|
|
*/
|
|
public function createElements(array $formData)
|
|
{
|
|
$appConfigForm = new ApplicationConfigForm();
|
|
$appConfigForm->createElements($formData);
|
|
$appConfigForm->removeElement('global_module_path');
|
|
$appConfigForm->removeElement('global_config_resource');
|
|
$this->addElements($appConfigForm->getElements());
|
|
|
|
$loggingConfigForm = new LoggingConfigForm();
|
|
$this->addElements($loggingConfigForm->createElements($formData)->getElements());
|
|
}
|
|
}
|