ILIAS
release_5-0 Revision 5.0.0-1144-gc4397b1f870
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
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
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
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
k
l
m
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
class.ilModalGUI.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 1998-2014 ILIAS open source, Extended GPL, see docs/LICENSE */
4
12
class
ilModalGUI
13
{
14
protected
$heading
=
""
;
15
protected
$body
=
""
;
16
protected
$id
=
""
;
17
const
TYPE_LARGE
=
"large"
;
18
const
TYPE_MEDIUM
=
"medium"
;
19
const
TYPE_SMALL
=
"small"
;
20
21
protected
$type
= self::TYPE_MEDIUM;
22
26
protected
function
__construct
()
27
{
28
29
}
30
36
static
function
getInstance
()
37
{
38
return
new
ilModalGUI
();
39
}
40
46
function
setId
($a_val)
47
{
48
$this->
id
= $a_val;
49
}
50
56
function
getId
()
57
{
58
return
$this->id
;
59
}
60
66
function
setHeading
($a_val)
67
{
68
$this->heading = $a_val;
69
}
70
76
function
getHeading
()
77
{
78
return
$this->heading
;
79
}
80
86
function
setBody
($a_val)
87
{
88
$this->body = $a_val;
89
}
90
96
function
getBody
()
97
{
98
return
$this->body
;
99
}
100
106
function
setType
($a_val)
107
{
108
$this->type = $a_val;
109
}
110
116
function
getType
()
117
{
118
return
$this->type
;
119
}
120
126
function
getHTML
()
127
{
128
$tpl
=
new
ilTemplate
(
"tpl.modal.html"
,
true
,
true
,
"Services/UIComponent/Modal"
);
129
130
$tpl
->setVariable(
"HEADING"
, $this->
getHeading
());
131
132
$tpl
->setVariable(
"MOD_ID"
, $this->
getId
());
133
$tpl
->setVariable(
"BODY"
, $this->
getBody
());
134
135
switch
($this->
getType
())
136
{
137
case
self::TYPE_LARGE:
138
$tpl
->setVariable(
"CLASS"
,
"modal-lg"
);
139
break
;
140
141
case
self::TYPE_SMALL:
142
$tpl
->setVariable(
"CLASS"
,
"modal-sm"
);
143
break
;
144
}
145
146
return
$tpl
->get();
147
}
148
149
150
}
151
152
?>
ilModalGUI\getType
getType()
Get type.
Definition:
class.ilModalGUI.php:116
ilModalGUI\getHeading
getHeading()
Get heading.
Definition:
class.ilModalGUI.php:76
ilModalGUI\setBody
setBody($a_val)
Set body.
Definition:
class.ilModalGUI.php:86
ilModalGUI\$body
$body
Definition:
class.ilModalGUI.php:15
ilModalGUI\getBody
getBody()
Get body.
Definition:
class.ilModalGUI.php:96
ilModalGUI\TYPE_SMALL
const TYPE_SMALL
Definition:
class.ilModalGUI.php:19
ilModalGUI\getHTML
getHTML()
Get HTML.
Definition:
class.ilModalGUI.php:126
ilModalGUI\$type
$type
Definition:
class.ilModalGUI.php:21
$tpl
global $tpl
Definition:
ilias.php:8
ilModalGUI\setType
setType($a_val)
Set type.
Definition:
class.ilModalGUI.php:106
ilModalGUI\__construct
__construct()
Constructor.
Definition:
class.ilModalGUI.php:26
ilModalGUI\setId
setId($a_val)
Set id.
Definition:
class.ilModalGUI.php:46
ilModalGUI\TYPE_LARGE
const TYPE_LARGE
Definition:
class.ilModalGUI.php:17
ilTemplate
special template class to simplify handling of ITX/PEAR
Definition:
class.ilTemplate.php:11
ilModalGUI\TYPE_MEDIUM
const TYPE_MEDIUM
Definition:
class.ilModalGUI.php:18
ilModalGUI\getInstance
static getInstance()
Get instance.
Definition:
class.ilModalGUI.php:36
ilModalGUI\$heading
$heading
Definition:
class.ilModalGUI.php:14
ilModalGUI\setHeading
setHeading($a_val)
Set heading.
Definition:
class.ilModalGUI.php:66
ilModalGUI\getId
getId()
Get id.
Definition:
class.ilModalGUI.php:56
ilModalGUI
Modal class.
Definition:
class.ilModalGUI.php:12
ilModalGUI\$id
$id
Definition:
class.ilModalGUI.php:16
Services
UIComponent
Modal
classes
class.ilModalGUI.php
Generated on Mon Mar 31 2025 19:00:54 for ILIAS by
1.8.13 (using
Doxyfile
)