GeneralConfigForm: Add ProxyConfigForm elements

refs #9916
This commit is contained in:
Alexander Fuhr 2015-09-01 15:10:56 +02:00
parent bcae387165
commit 4528e452aa

View File

@ -3,6 +3,7 @@
namespace Icinga\Forms\Config;
use Icinga\Forms\Config\General\ProxyConfigForm;
use Icinga\Web\Notification;
use Icinga\Forms\ConfigForm;
use Icinga\Forms\Config\General\LoggingConfigForm;
@ -30,8 +31,10 @@ class GeneralConfigForm extends ConfigForm
{
$appConfigForm = new ApplicationConfigForm();
$loggingConfigForm = new LoggingConfigForm();
$proxyConfigForm = new ProxyConfigForm();
$this->addElements($appConfigForm->createElements($formData)->getElements());
$this->addElements($loggingConfigForm->createElements($formData)->getElements());
$this->addElements($proxyConfigForm->createElements($formData)->getElements());
}
/**