ILIAS
trunk Revision v11.0_alpha-2645-g16283d3b3f8
◀ ilDoc Overview
Factory.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\UI\Implementation\Component\Launcher
;
22
23
use
ILIAS\Data\Link
;
24
use
ILIAS\UI\Component\Launcher
;
25
use
ILIAS\UI\Implementation\Component\Modal
;
26
27
class
Factory
implements
Launcher\Factory
28
{
29
protected
Modal\Factory
$modal_factory
;
30
31
public
function
__construct
(
Modal
\
Factory
$modal_factory)
32
{
33
$this->modal_factory =
$modal_factory
;
34
}
35
36
public
function
inline
(
Link
$target):
Inline
37
{
38
return
new
Inline
($this->modal_factory, $target);
39
}
40
}
ILIAS\UI\Component\Modal\Modal
This describes commonalities between the different modals.
Definition:
Modal.php:34
ILIAS\UI\Implementation\Component\Modal
Definition:
Factory.php:21
ILIAS\UI\Implementation\Component\Modal\Factory
Definition:
Factory.php:32
ILIAS\UI\Implementation\Component\Launcher\Factory\__construct
__construct(Modal\Factory $modal_factory)
Definition:
Factory.php:31
ILIAS\Data\Link
ILIAS\Data\Color\Factory
Builds a Color from either hex- or rgb values.
Definition:
Factory.php:30
ILIAS\UI\Implementation\Component\Launcher\Factory
Definition:
Factory.php:27
ILIAS\UI\Implementation\Component\Launcher\Factory\$modal_factory
Modal Factory $modal_factory
Definition:
Factory.php:29
ILIAS\UI\Implementation\Component\Launcher
Definition:
Factory.php:21
Standard
ILIAS\UI\Component\Launcher\Inline
Definition:
Inline.php:25
ILIAS\UI\Component\Launcher
Definition:
Factory.php:21
components
ILIAS
UI
src
Implementation
Component
Launcher
Factory.php
Generated on Mon Sep 1 2025 23:02:08 for ILIAS by
1.8.13 (using
Doxyfile
)