| 123456789101112131415161718 |
- <?php
- namespace ModulesGarden\Servers\KerioEmail\App\UI\Admin\Custom\Sections;
- use ModulesGarden\Servers\KerioEmail\Core\UI\Interfaces\AdminArea;
- use ModulesGarden\Servers\KerioEmail\Core\UI\Interfaces\ClientArea;
- use ModulesGarden\Servers\KerioEmail\Core\UI\Widget\Forms\Sections\BaseSection;
- /**
- * Class FreeFieldsSection
- * User: Nessandro
- * Date: 2019-09-20
- * Time: 12:44
- */
- class FreeFieldsSection extends BaseSection implements ClientArea, AdminArea
- {
- protected $id = 'freeFieldsSection';
- protected $name = 'freeFieldsSection';
- }
|