| 12345678910111213141516171819202122232425262728 |
- <?php
- 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\AddListForm;
- use ModulesGarden\Servers\KerioEmail\App\UI\Client\EmailAccount\Forms\AddAccountForm;
- use ModulesGarden\Servers\KerioEmail\Core\UI\Interfaces\ClientArea;
- use ModulesGarden\Servers\KerioEmail\Core\UI\Widget\Modals\BaseEditModal;
- /**
- *
- * Created by PhpStorm.
- * User: Tomasz Bielecki ( tomasz.bi@modulesgarden.com )
- * Date: 18.09.19
- * Time: 13:32
- * Class AddListModal
- */
- class AddListModal extends ModalExtendedTabsEdit implements ClientArea
- {
- protected $id = 'addListModal';
- protected $name = 'addListModal';
- protected $title = 'addListModal';
- public function initContent()
- {
- $this->setModalSizeMedium();
- $this->addForm(new AddListForm());
- }
- }
|