ILIAS
trunk Revision v11.0_alpha-1702-gfd3ecb7f852
◀ 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
MessageBox.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\UI\Implementation\Component\MessageBox
;
22
23
use
ILIAS\UI\Component
as
C
;
24
use
ILIAS\UI\Implementation\Component\ComponentHelper
;
25
use
ILIAS\UI\Implementation\Component\Prompt\IsPromptContentInternal
;
26
27
class
MessageBox
implements
C\MessageBox\MessageBox,
IsPromptContentInternal
28
{
29
use
ComponentHelper
;
30
34
private
static
array
$types
= [
35
self::FAILURE
,
36
self::SUCCESS,
37
self::INFO,
38
self::CONFIRMATION
39
];
40
41
private
string
$type
;
42
private
string
$message_text
;
43
private
array
$buttons
= [];
44
private
array
$links
= [];
45
46
public
function
__construct
($type,
string
$message_text)
47
{
48
$this->checkArgIsElement(
"type"
, $type, self::$types,
"message box type"
);
49
$this->type =
$type
;
50
$this->message_text =
$message_text
;
51
}
52
56
public
function
getType
(): string
57
{
58
return
$this->type
;
59
}
60
64
public
function
getMessageText
(): string
65
{
66
return
$this->message_text
;
67
}
68
72
public
function
getButtons
(): array
73
{
74
return
$this->buttons
;
75
}
76
80
public
function
getLinks
(): array
81
{
82
return
$this->links
;
83
}
84
88
public
function
withButtons
(array $buttons):
C
\
MessageBox
\
MessageBox
89
{
90
$types = array(
C
\Component::class);
91
$this->checkArgListElements(
"buttons"
, $buttons, $types);
92
93
$clone = clone $this;
94
$clone->buttons =
$buttons
;
95
return
$clone;
96
}
97
101
public
function
withLinks
(array $links):
C
\
MessageBox
\
MessageBox
102
{
103
$types = array(
C
\Component::class);
104
$this->checkArgListElements(
"links"
, $links, $types);
105
106
$clone = clone $this;
107
$clone->links =
$links
;
108
return
$clone;
109
}
110
114
public
function
getPromptButtons
(): array
115
{
116
return
$this->buttons
;
117
}
118
122
public
function
getPromptTitle
(): string
123
{
124
return
$this->type
;
125
}
126
127
128
}
ILIAS\UI\Implementation\Component\MessageBox\MessageBox\$links
array $links
Definition:
MessageBox.php:44
ILIAS\UI\Implementation\Component\MessageBox\MessageBox\getPromptButtons
getPromptButtons()
Button[]
Definition:
MessageBox.php:114
ILIAS\UI\Implementation\Component\MessageBox\MessageBox\getMessageText
getMessageText()
Definition:
MessageBox.php:64
ILIAS\UI\Component
ILIAS\UI\Implementation\Component\MessageBox\MessageBox\getButtons
getButtons()
Definition:
MessageBox.php:72
ILIAS\UI\Implementation\Component\MessageBox\MessageBox\getPromptTitle
getPromptTitle()
Definition:
MessageBox.php:122
ILIAS\UI\Implementation\Component\Prompt\IsPromptContentInternal
Flags some Component to be a valid content of a Prompt.
Definition:
IsPromptContentInternal.php:30
ILIAS\UI\Implementation\Component\Progress\State\Bar\FAILURE
The progress of the process/task cannot be calculated (yet), but it has started processing.
Definition:
Status.php:42
ILIAS\UI\Implementation\Component\MessageBox\MessageBox\withButtons
withButtons(array $buttons)
Definition:
MessageBox.php:88
ILIAS\UI\Implementation\Component\MessageBox\MessageBox\__construct
__construct($type, string $message_text)
Definition:
MessageBox.php:46
ILIAS\UI\Implementation\Component\MessageBox
Definition:
Factory.php:21
ILIAS\UI\Implementation\Component\MessageBox\MessageBox\getType
getType()
Definition:
MessageBox.php:56
ILIAS\UI\Implementation\Component\MessageBox\MessageBox\$buttons
array $buttons
Definition:
MessageBox.php:43
ILIAS\UI\Implementation\Component\MessageBox\MessageBox
Definition:
MessageBox.php:27
ILIAS\UI\Implementation\Component\MessageBox\MessageBox\withLinks
withLinks(array $links)
Definition:
MessageBox.php:101
ILIAS\UI\Implementation\Component\MessageBox\MessageBox\$types
static array $types
Definition:
MessageBox.php:34
ComponentHelper
ILIAS\UI\Implementation\Component\MessageBox\MessageBox\getLinks
getLinks()
Definition:
MessageBox.php:80
ILIAS\UI\Implementation\Component\MessageBox\MessageBox\$message_text
string $message_text
Definition:
MessageBox.php:42
ComponentHelper
IsPromptContentInternal
ILIAS\UI\Implementation\Component\MessageBox\MessageBox\$type
string $type
Definition:
MessageBox.php:41
components
ILIAS
UI
src
Implementation
Component
MessageBox
MessageBox.php
Generated on Thu Apr 3 2025 23:04:03 for ILIAS by
1.8.13 (using
Doxyfile
)