leftSection = new HalfPageSection('leftSection'); $this->rightSection = new HalfPageSection('rightSection'); $this->addSection($this->leftSection) ->addSection($this->rightSection); $this->initFields(); } private function initFields() { //Storage $field = new Select('customconfigoption[backupStorage]'); $field->setDescription('tip'); $this->leftSection->addField($field); //Backups Routing $field = new Switcher('customconfigoption[backupRouting]'); $field->setDescription('tip'); $field->setDefaultValue("on"); $this->rightSection->addField($field); //Store The Backup For X Days $field = new Text('customconfigoption[backupStoreDays]'); $field->setDescription('tip'); $this->leftSection->addField($field); } }