leftSection = new HalfPageSection('leftSection'); $this->rightSection = new HalfPageSection('rightSection'); $this->addSection($this->leftSection) ->addSection($this->rightSection); $this->initFields(); } private function initFields() { //Service Creation Failed $field = new Select('customconfigoption[serviceCreationFailedTemplateId]'); $field->setDescription('tip'); $this->leftSection->addField($field); //To-Do List $field = new Switcher('customconfigoption[toDoList]'); $field->setDescription('tip'); $this->rightSection->addField($field); //Upgrade $field = new Select('customconfigoption[upgradeNotificationTemplateId]'); $field->setDescription('tip'); $this->leftSection->addField($field); } }