leftSection = new HalfPageSection('leftSection'); $this->rightSection = new HalfPageSection('rightSection'); $this->addSection($this->leftSection) ->addSection($this->rightSection); $this->initFields(); } private function initFields() { //Welcome Email $field = new Select('customconfigoption[welcomeEmailTemplateId]'); $field->setDescription('tip'); $this->leftSection->addField($field); //Reinstall $field = new Select('customconfigoption[reinstallEmailTemplateId]'); $field->setDescription('tip'); $this->rightSection->addField($field); } }