| 12345678910111213141516171819202122232425262728 |
- <?php
- /**
- * Class EditListModal
- * User: Nessandro
- * Date: 2019-10-01
- * Time: 11:25
- * @package ModulesGarden\Servers\KerioEmail\App\UI\Client\DistributionList\Modals
- */
- namespace ModulesGarden\Servers\KerioEmail\App\UI\Client\DistributionList\Modals;
- use ModulesGarden\Servers\KerioEmail\App\UI\Admin\Custom\Modals\ModalExtendedTabsEdit;
- use ModulesGarden\Servers\KerioEmail\App\UI\Client\DistributionList\Forms\EditListForm;
- use ModulesGarden\Servers\KerioEmail\Core\UI\Interfaces\ClientArea;
- class EditListModal extends ModalExtendedTabsEdit implements ClientArea
- {
- protected $id = 'editListModal';
- protected $name = 'editListModal';
- protected $title = 'editListModal';
- public function initContent()
- {
- $this->setModalSizeMedium();
- $this->addForm(new EditListForm());
- }
- }
|