DeleteMassModal.php 567 B

12345678910111213141516171819202122
  1. <?php
  2. namespace ModulesGarden\ProxmoxAddon\App\UI\IpLog\Modals;
  3. use ModulesGarden\ProxmoxAddon\App\UI\IpLog\Forms\DeleteMassForm;
  4. use ModulesGarden\ProxmoxAddon\Core\UI\Interfaces\AdminArea;
  5. use ModulesGarden\ProxmoxAddon\Core\UI\Widget\Modals\ModalConfirmDanger;
  6. /**
  7. * Description of CloneModal
  8. *
  9. * @author Pawel Kopec <pawelk@modulesgarden.com>
  10. */
  11. class DeleteMassModal extends ModalConfirmDanger implements AdminArea
  12. {
  13. public function initContent()
  14. {
  15. $this->initIds('deleteMassModal');
  16. $this->addForm(new DeleteMassForm());
  17. }
  18. }