ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Factory.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
27 
33 interface Factory
34 {
76  public function interruptive(string $title, string $message, string $form_action): Interruptive;
77 
78 
97  public function interruptiveItem(): InterruptiveItem\Factory;
98 
99 
152  public function roundtrip(string $title, Component\Component|array|null $content, array $inputs = [], ?string $post_url = null): RoundTrip;
153 
154 
184  public function lightbox($pages): Lightbox;
185 
186 
210  public function lightboxImagePage(Image $image, string $title, string $description = ''): LightboxImagePage;
211 
233  public function lightboxTextPage(string $text, string $title): LightboxTextPage;
234 
255  public function lightboxCardPage(Card $card): LightboxCardPage;
256 }
lightboxImagePage(Image $image, string $title, string $description='')
description: purpose: > A Lightbox image page represents an image inside a Lightbox modal...
interruptive(string $title, string $message, string $form_action)
description: purpose: > An Interruptive modal disrupts the user in critical situation, forcing him or her to focus on the task at hand.
lightboxTextPage(string $text, string $title)
description: purpose: > A Lightbox text page represents a document like content/text inside a Lightb...
Builds a Color from either hex- or rgb values.
Definition: Factory.php:30
A lightbox Text page represents a page displaying a media element, such as text.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Factory.php:21
A lightbox Image page represents a page displaying a media element, such as image, video.
lightbox($pages)
description: purpose: > The Lightbox modal displays media data such as images or videos...
$message
Definition: xapiexit.php:31
interruptiveItem()
description: purpose: > Interruptive items are displayed in an Interruptive modal and represent the ...
lightboxCardPage(Card $card)
description: purpose: > A lightbox card page shows a card as a Lightbox modal.
roundtrip(string $title, Component\Component|array|null $content, array $inputs=[], ?string $post_url=null)
description: purpose: > Round-Trip modals are to be used if the context would be lost by performing ...