ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ 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
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
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
class.ilGlossaryDefPageGUI.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 1998-2019 ILIAS open source, Extended GPL, see docs/LICENSE */
4
14
class
ilGlossaryDefPageGUI
extends
ilPageObjectGUI
15
{
19
protected
$glossary
;
20
24
public
function
__construct
($a_id = 0, $a_old_nr = 0)
25
{
26
global
$DIC
;
27
28
$this->tpl = $DIC[
"tpl"
];
29
$tpl
= $DIC[
"tpl"
];
30
31
parent::__construct
(
"gdf"
, $a_id, $a_old_nr);
32
}
33
39
public
function
setGlossary
($a_val)
40
{
41
$this->glossary = $a_val;
42
}
43
49
public
function
getGlossary
()
50
{
51
return
$this->glossary
;
52
}
53
57
public
function
postOutputProcessing
($a_output)
58
{
59
if
($this->
getOutputMode
() ==
"print"
&& $this->glossary instanceof
ilObjGlossary
) {
60
$term_id =
ilGlossaryDefinition::_lookupTermId
($this->
getId
());
61
$mdgui =
new
ilObjectMetaDataGUI
($this->glossary,
"term"
, $term_id);
62
$md = $mdgui->getKeyValueList();
63
if
($md !=
""
) {
64
$a_output = str_replace(
"<!--COPage-PageTop-->"
,
"<p>"
. $md .
"</p>"
, $a_output);
65
}
66
}
67
68
return
$a_output;
69
}
70
71
public
function
finishEditing
()
72
{
73
$this->ctrl->redirectByClass(
"ilObjGlossaryGUI"
,
"listTerms"
);
74
}
75
}
ilGlossaryDefPageGUI\$glossary
$glossary
Definition:
class.ilGlossaryDefPageGUI.php:19
ilObjectMetaDataGUI
Class ilObjectMetaDataGUI.
Definition:
class.ilObjectMetaDataGUI.php:12
ilGlossaryDefPageGUI\setGlossary
setGlossary($a_val)
Set glossary.
Definition:
class.ilGlossaryDefPageGUI.php:39
ilObjGlossary
Class ilObjGlossary.
Definition:
class.ilObjGlossary.php:10
ilPageObjectGUI\$tpl
$tpl
Definition:
class.ilPageObjectGUI.php:30
ilPageObjectGUI
Class ilPageObjectGUI.
Definition:
class.ilPageObjectGUI.php:16
ilGlossaryDefPageGUI\postOutputProcessing
postOutputProcessing($a_output)
Output metadata.
Definition:
class.ilGlossaryDefPageGUI.php:57
ilGlossaryDefPageGUI\finishEditing
finishEditing()
Definition:
class.ilGlossaryDefPageGUI.php:71
ilGlossaryDefinition\_lookupTermId
static _lookupTermId($a_def_id)
Looks up term id for a definition id.
Definition:
class.ilGlossaryDefinition.php:611
ilPageObjectGUI\getId
getId()
Get ID.
Definition:
class.ilPageObjectGUI.php:273
ilGlossaryDefPageGUI\__construct
__construct($a_id=0, $a_old_nr=0)
Constructor.
Definition:
class.ilGlossaryDefPageGUI.php:24
$DIC
global $DIC
Definition:
goto.php:24
ilPageObjectGUI\getOutputMode
getOutputMode()
Definition:
class.ilPageObjectGUI.php:392
ilGlossaryDefPageGUI\getGlossary
getGlossary()
Get glossary.
Definition:
class.ilGlossaryDefPageGUI.php:49
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
Definition:
PluginProviderHelper.php:40
ilGlossaryDefPageGUI
Glossary definition page GUI class.
Definition:
class.ilGlossaryDefPageGUI.php:14
Modules
Glossary
classes
class.ilGlossaryDefPageGUI.php
Generated on Wed Apr 2 2025 21:01:02 for ILIAS by
1.8.13 (using
Doxyfile
)