ModalExtendedTabsEdit.php 715 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. namespace ModulesGarden\Servers\KerioEmail\App\UI\Admin\Custom\Modals;
  3. use ModulesGarden\Servers\KerioEmail\Core\UI\Interfaces\AdminArea;
  4. use ModulesGarden\Servers\KerioEmail\Core\UI\Widget\Modals\ModalTabsEdit;
  5. /**
  6. * Class ModalExtendedTabsEdit
  7. * User: Nessandro
  8. * Date: 2019-09-20
  9. * Time: 12:40
  10. */
  11. class ModalExtendedTabsEdit extends ModalTabsEdit implements AdminArea
  12. {
  13. protected $id = 'modalExtendedTabsEdit';
  14. protected $name = 'modalExtendedTabsEdit';
  15. protected $title = 'modalExtendedTabsEdit';
  16. protected function afterInitContent()
  17. {
  18. parent::afterInitContent();
  19. foreach ($this->forms as &$form)
  20. {
  21. $form->getHtml();
  22. }
  23. }
  24. }