leftSection = new HalfPageSection('leftSection'); $this->rightSection = new HalfPageSection('rightSection'); $this->addSection($this->leftSection) ->addSection($this->rightSection); $this->initFields(); } private function initFields() { //Interfaces $field = new Select('customconfigoption[firewallInterfaces][]'); $field->setDescription('tip'); $field->enableMultiple(); $this->leftSection->addField($field); //Firewall Rules Limit $field = new Text('customconfigoption[firewallMaxRules]'); $field->setDescription('tip'); $this->rightSection->addField($field); //IPSet IP Filter $field = new Switcher('customconfigoption[ipsetIpFilter]'); $field->setDescription('tip'); $this->leftSection->addField($field); } }