ILIAS
trunk Revision v11.0_alpha-1744-gb0451eebef4
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
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
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
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
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
Standard.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem
;
22
23
use
ILIAS\UI\Component\Image\Image
;
24
use
ILIAS\UI\Component\Modal\InterruptiveItem\Standard
as
StandardInterface
;
25
26
class
Standard
extends
InterruptiveItem
implements
StandardInterface
27
{
28
protected
string
$title
;
29
protected
string
$description
;
30
protected
?
Image
$icon
;
31
32
public
function
__construct
(
33
string
$id
,
34
string
$title,
35
?
Image
$icon =
null
,
36
string
$description =
''
37
) {
38
parent::__construct
($id);
39
40
$this->title =
$title
;
41
$this->icon =
$icon
;
42
$this->description =
$description
;
43
}
44
45
public
function
getTitle
(): string
46
{
47
return
$this->title
;
48
}
49
50
public
function
getDescription
(): string
51
{
52
return
$this->description
;
53
}
54
55
public
function
getIcon
(): ?
Image
56
{
57
return
$this->icon
;
58
}
59
}
Image
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\InterruptiveItem
Definition:
InterruptiveItem.php:26
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\Standard\__construct
__construct(string $id, string $title, ?Image $icon=null, string $description='')
Definition:
Standard.php:32
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\Standard\getTitle
getTitle()
Get the title of the object.
Definition:
Standard.php:45
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\Standard\$description
string $description
Definition:
Standard.php:29
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\Standard\getIcon
getIcon()
Get the icon of the object.
Definition:
Standard.php:55
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\Standard\$icon
Image $icon
Definition:
Standard.php:30
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
Definition:
PluginProviderHelper.php:37
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\Standard
Definition:
Standard.php:26
Standard
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\InterruptiveItem\$id
string $id
Definition:
InterruptiveItem.php:30
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\Standard\getDescription
getDescription()
Get the description of the object.
Definition:
Standard.php:50
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem\Standard\$title
string $title
Definition:
Standard.php:28
ILIAS\UI\Implementation\Component\Modal\InterruptiveItem
Definition:
Factory.php:21
components
ILIAS
UI
src
Implementation
Component
Modal
InterruptiveItem
Standard.php
Generated on Tue Apr 8 2025 23:03:08 for ILIAS by
1.8.13 (using
Doxyfile
)