| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- namespace ThurData\Servers\KerioEmail\App\UI\Admin\ProductConfiguration\Pages\Sections;
- use ThurData\Servers\KerioEmail\App\UI\Admin\Custom\Sections\BoxSectionExtended;
- use ThurData\Servers\KerioEmail\Core\UI\Interfaces\AdminArea;
- use ThurData\Servers\KerioEmail\Core\UI\Widget\Forms\Fields\Switcher;
- use ThurData\Servers\KerioEmail\Core\UI\Widget\Forms\Sections\BoxSection;
- use ThurData\Servers\KerioEmail\Core\UI\Widget\Forms\Sections\HalfPageSection;
- /**
- *
- * Created by PhpStorm.
- * User: ThurData
- * Date: 29.08.19
- * Time: 08:34
- * Class SearchFeatures
- */
- class SearchFeatures extends BoxSectionExtended implements AdminArea
- {
- protected $id = 'searchFeatures';
- protected $name = 'searchFeatures';
- protected $title = 'searchFeatures';
- public function initContent()
- {
- $this
- ->addSection($this->getLeftSection())
- ->addSection($this->getRightSection());
- }
- /**
- * @return HalfPageSection
- */
- public function getLeftSection()
- {
- $left = new HalfPageSection('left');
- $field = new Switcher('kerioFeatureAdvancedSearchEnabled');
- $left->addField($field);
- $field = new Switcher('kerioFeatureInitialSearchPreferenceEnabled');
- $left->addField($field);
- return $left;
- }
- /**
- * @return HalfPageSection
- */
- public function getRightSection()
- {
- $right = new HalfPageSection('right');
- $field = new Switcher('kerioFeatureSavedSearchesEnabled');
- $right->addField($field);
- $field = new Switcher('kerioFeaturePeopleSearchEnabled');
- $right->addField($field);
- return $right;
- }
- }
|