addSection($this->getLeftSection()) ->addSection($this->getRightSection()); } /** * @return HalfPageSection */ public function getLeftSection() { $left = new HalfPageSection('left'); $field = new Switcher('zimbraFeatureGroupCalendarEnabled'); $left->addField($field); return $left; } /** * @return HalfPageSection */ public function getRightSection() { $right = new HalfPageSection('right'); $field = new Switcher('zimbraFeatureCalendarReminderDeviceEmailEnabled'); $right->addField($field); return $right; } }