FreeFieldsSection.php 551 B

123456789101112131415161718
  1. <?php
  2. namespace ModulesGarden\Servers\KerioEmail\App\UI\Admin\Custom\Sections;
  3. use ModulesGarden\Servers\KerioEmail\Core\UI\Interfaces\AdminArea;
  4. use ModulesGarden\Servers\KerioEmail\Core\UI\Interfaces\ClientArea;
  5. use ModulesGarden\Servers\KerioEmail\Core\UI\Widget\Forms\Sections\BaseSection;
  6. /**
  7. * Class FreeFieldsSection
  8. * User: Nessandro
  9. * Date: 2019-09-20
  10. * Time: 12:44
  11. */
  12. class FreeFieldsSection extends BaseSection implements ClientArea, AdminArea
  13. {
  14. protected $id = 'freeFieldsSection';
  15. protected $name = 'freeFieldsSection';
  16. }