addSection($this->getLeftSection()) ->addSection($this->getRightSection()); } public function getLeftSection() { $leftSection = new HalfPageSection('essentialFeaturesLeft'); $field = new Switcher('kerioFeatureMailEnabled'); //$field->setDescription('description'); $leftSection->addField($field); $field = new Switcher('kerioFeatureCalendarEnabled'); //$field->setDescription('description'); $leftSection->addField($field); $field = new Switcher('kerioFeatureBriefcasesEnabled'); //$field->setDescription('description'); $leftSection->addField($field); return $leftSection; } public function getRightSection() { $right = new HalfPageSection('essentialFeaturesRight'); $field = new Switcher('kerioFeatureContactsEnabled'); //$field->setDescription('description'); $right->addField($field); $field = new Switcher('kerioFeatureTasksEnabled'); //$field->setDescription('description'); $right->addField($field); $field = new Switcher('kerioFeatureOptionsEnabled'); //$field->setDescription('description'); $right->addField($field); return $right; } }