| 1234567891011121314151617181920212223242526272829 |
- <?php
- namespace ModulesGarden\Servers\KerioEmail\App\UI\Admin\Custom\Modals;
- use ModulesGarden\Servers\KerioEmail\Core\UI\Interfaces\AdminArea;
- use ModulesGarden\Servers\KerioEmail\Core\UI\Widget\Modals\ModalTabsEdit;
- /**
- * Class ModalExtendedTabsEdit
- * User: Nessandro
- * Date: 2019-09-20
- * Time: 12:40
- */
- class ModalExtendedTabsEdit extends ModalTabsEdit implements AdminArea
- {
- protected $id = 'modalExtendedTabsEdit';
- protected $name = 'modalExtendedTabsEdit';
- protected $title = 'modalExtendedTabsEdit';
- protected function afterInitContent()
- {
- parent::afterInitContent();
- foreach ($this->forms as &$form)
- {
- $form->getHtml();
- }
- }
- }
|