ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
FlexibleModal.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 
27 {
28  protected ?Modal $modal = null;
30 
31  public function __construct(Modal|string $modal_or_link)
32  {
33  if (is_string($modal_or_link)) {
34  $this->flexible_signal = new FlexibleSignal(
35  $modal_or_link
36  );
37  } else {
38  $this->modal = $modal_or_link;
39  $this->flexible_signal = new FlexibleSignal(
40  $this->modal->getShowSignal()
41  );
42  }
43  }
44 
45  public function getModal(): ?Modal
46  {
47  return $this->modal;
48  }
49 
50  public function getFlexibleSignal(): FlexibleSignal
51  {
53  }
54 }
This describes commonalities between the different modals.
Definition: Modal.php:34
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
modal(string $title="", string $cancel_label="")