setName('setup_general_config'); } /** * @see Form::createElements() */ public function createElements(array $formData) { $this->addElement( new Note( 'description', array( 'value' => t( 'Now please adjust all application and logging related configuration options to fit your needs.' ) ) ) ); $appForm = new ApplicationConfigForm(); $this->addElement($appForm->createElements($formData)->getElement('global_modulePath')); $loggingForm = new LoggingConfigForm(); $this->addElements($loggingForm->createElements($formData)->getElements()); } }