ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
s
t
w
+
Functions
_
a
b
c
f
g
h
i
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
LightboxTextPage.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2018 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4
namespace
ILIAS\UI\Implementation\Component\Modal
;
5
6
use
ILIAS\UI\Component\Modal\LightboxPage
;
7
use
ILIAS\UI\Implementation\Component\ComponentHelper
;
8
use
ILIAS\UI\Implementation\Component\Legacy\Legacy
;
9
use
ILIAS\UI\Implementation\Component\SignalGenerator
;
10
16
class
LightboxTextPage
implements
LightboxPage
17
{
18
use
ComponentHelper
;
19
21
protected
$text
=
''
;
22
24
protected
$title
=
''
;
25
30
public
function
__construct
(
string
$text
,
string
$title
)
31
{
32
$this->
checkStringArg
(
'text'
, $text);
33
$this->
checkStringArg
(
'title'
, $title);
34
$this->text =
$text
;
35
$this->title =
$title
;
36
}
37
38
42
public
function
getTitle
()
43
{
44
return
$this->title
;
45
}
46
50
public
function
getComponent
()
51
{
52
return
new
Legacy
($this->text,
new
SignalGenerator
());
53
}
54
}
ILIAS\UI\Implementation\Component\Modal
Definition:
Factory.php:2
SignalGenerator
ILIAS\UI\Implementation\Component\ComponentHelper
trait ComponentHelper
Provides common functionality for component implementations.
Definition:
ComponentHelper.php:13
ILIAS\UI\Implementation\Component\Modal\LightboxTextPage\getTitle
getTitle()
Get the title of this page, displayed as title in the lightbox modal.string
Definition:
LightboxTextPage.php:42
ILIAS\UI\Implementation\Component\checkStringArg
checkStringArg($which, $value)
Throw an InvalidArgumentException if $value is no string.
Definition:
ComponentHelper.php:92
LightboxPage
ILIAS\UI\Implementation\Component\Modal\LightboxTextPage\$text
$text
Definition:
LightboxTextPage.php:21
ILIAS\UI\Implementation\Component\Modal\LightboxTextPage\__construct
__construct(string $text, string $title)
Definition:
LightboxTextPage.php:30
ILIAS\UI\Implementation\Component\Modal\LightboxTextPage
Definition:
LightboxTextPage.php:16
ILIAS\UI\Implementation\Component\SignalGenerator
Definition:
SignalGenerator.php:10
ILIAS\UI\Implementation\Component\Modal\LightboxTextPage\$title
$title
Definition:
LightboxTextPage.php:24
ILIAS\UI\Implementation\Component\Modal\LightboxTextPage\getComponent
getComponent()
Get the component representing the media item to be displayed in the modals content section...
Definition:
LightboxTextPage.php:50
Legacy
ILIAS\UI\Implementation\Component\Legacy\Legacy
Definition:
Legacy.php:18
ILIAS\UI\Component\Modal\LightboxPage
Interface LightboxPage.
Definition:
LightboxPage.php:12
src
UI
Implementation
Component
Modal
LightboxTextPage.php
Generated on Sat Apr 5 2025 20:01:40 for ILIAS by
1.8.13 (using
Doxyfile
)