ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Interruptive.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\UI\Component\Modal;
22 
24 
30 interface Interruptive extends Modal
31 {
35  public function getMessage(): string;
36 
40  public function getTitle(): string;
41 
45  public function withFormAction(string $form_action): Interruptive;
46 
53  public function withAffectedItems(array $items): Interruptive;
54 
58  public function getActionButtonLabel(): ?string;
59 
64  public function withActionButtonLabel(string $action_label): Interruptive;
65 
69  public function getCancelButtonLabel(): ?string;
70 
76  public function withCancelButtonLabel(string $cancel_label): Interruptive;
77 
83  public function getAffectedItems(): array;
84 
88  public function getFormAction(): string;
89 }
This describes commonalities between the different modals.
Definition: Modal.php:34
withAffectedItems(array $items)
Get a modal like this listing the given items in the content section below the message.
getCancelButtonLabel()
Get the custom label of the cancel button in the footer.
getTitle()
Get the title of this modal.
getMessage()
Get the message of this modal, displayed below the modals title.
withActionButtonLabel(string $action_label)
Get a modal like this with the action button labeled according to the parameter.
withFormAction(string $form_action)
Get a modal like this submitting the form to the given form action.
getFormAction()
Get the form action where the action button is sending the IDs of the affected items.
withCancelButtonLabel(string $cancel_label)
Get a modal like this with the cancel button labeled according to the parameter.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Factory.php:21
getAffectedItems()
Return the affected items listed in the content by this modal.
getActionButtonLabel()
Get the custom label of the action button in the footer.