icingaweb2/modules/setup/application/forms/GeneralConfigPage.php

52 lines
1.3 KiB
PHP
Raw Normal View History

2014-09-29 12:29:13 +02:00
<?php
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
2014-09-29 12:29:13 +02:00
namespace Icinga\Module\Setup\Forms;
2014-09-29 12:29:13 +02:00
use Icinga\Web\Form;
use Icinga\Forms\Config\General\LoggingConfigForm;
2014-09-29 12:29:13 +02:00
/**
* Wizard page to define the application and logging configuration
*/
class GeneralConfigPage extends Form
{
/**
* Initialize this page
*/
public function init()
{
$this->setName('setup_general_config');
2014-09-29 12:29:13 +02:00
}
/**
* @see Form::createElements()
*/
public function createElements(array $formData)
{
2014-11-11 15:27:14 +01:00
$this->addElement(
'note',
'title',
array(
'value' => $this->translate('Application Configuration', 'setup.page.title'),
'decorators' => array(
'ViewHelper',
array('HtmlTag', array('tag' => 'h2'))
2014-11-11 15:27:14 +01:00
)
)
);
$this->addElement(
'note',
'description',
array(
'value' => $this->translate(
'Now please adjust all application and logging related configuration options to fit your needs.'
)
)
);
2014-09-29 12:29:13 +02:00
$loggingForm = new LoggingConfigForm();
$this->addElements($loggingForm->createElements($formData)->getElements());
}
}