| 12345678910111213141516171819202122 |
- <?php
- namespace ModulesGarden\ProxmoxAddon\App\UI\IpLog\Modals;
- use ModulesGarden\ProxmoxAddon\App\UI\IpLog\Forms\DeleteForm;
- use ModulesGarden\ProxmoxAddon\Core\UI\Interfaces\AdminArea;
- use ModulesGarden\ProxmoxAddon\Core\UI\Widget\Modals\ModalConfirmDanger;
- /**
- * Description of CloneModal
- *
- * @author Pawel Kopec <pawelk@modulesgarden.com>
- */
- class DeleteModal extends ModalConfirmDanger implements AdminArea
- {
- public function initContent()
- {
- $this->initIds('deleteModal');
- $this->addForm(new DeleteForm());
- }
- }
|