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
GlossaryPresentationService.php
Go to the documentation of this file.
1
<?php
2
3
namespace
ILIAS\Glossary\Presentation
;
4
5
/* Copyright (c) 1998-2019 ILIAS open source, Extended GPL, see docs/LICENSE */
6
12
class
GlossaryPresentationService
13
{
17
protected
$glo
;
18
22
protected
$glo_gui
;
23
27
protected
$offline
;
28
32
public
function
__construct
(
33
\
ilObjUser
$user,
34
array $query_params,
35
bool
$offline
=
false
,
36
\
ilCtrl
$ctrl = null
37
) {
38
global
$DIC
;
39
40
$ctrl = (is_null($ctrl))
41
? $DIC->ctrl()
42
: $ctrl;
43
44
$this->request =
new
GlossaryPresentationRequest
($query_params);
45
$this->
user
= $user;
46
$this->ref_id = $this->request->getRequestedRefId();
47
$this->glo_gui = new \ilObjGlossaryGUI([], $this->ref_id,
true
,
false
);
48
$this->glo = $this->glo_gui->object;
49
$this->offline =
$offline
;
50
}
51
55
public
function
getGlossaryGUI
() : \
ilObjGlossaryGUI
56
{
57
return
$this->glo_gui
;
58
}
59
63
public
function
getGlossary
() : \
ilObjGlossary
64
{
65
return
$this->glo
;
66
}
67
73
public
function
getRequest
()
74
{
75
return
$this->request;
76
}
77
}
ilObjGlossaryGUI
Class ilGlossaryGUI.
Definition:
class.ilObjGlossaryGUI.php:17
ilCtrl
This class provides processing control methods.
Definition:
class.ilCtrl.php:15
ILIAS\Glossary\Presentation\GlossaryPresentationService\getRequest
getRequest()
Get request.
Definition:
GlossaryPresentationService.php:73
ILIAS\Glossary\Presentation\GlossaryPresentationService\$offline
$offline
Definition:
GlossaryPresentationService.php:27
ilObjGlossary
Class ilObjGlossary.
Definition:
class.ilObjGlossary.php:10
ILIAS\Glossary\Presentation\GlossaryPresentationService\__construct
__construct(\ilObjUser $user, array $query_params, bool $offline=false, \ilCtrl $ctrl=null)
Constructor.
Definition:
GlossaryPresentationService.php:32
ILIAS\Glossary\Presentation\GlossaryPresentationService\getGlossary
getGlossary()
Definition:
GlossaryPresentationService.php:63
user
user()
Definition:
user.php:4
ilObjUser
ILIAS\Glossary\Presentation\GlossaryPresentationService\$glo
$glo
Definition:
GlossaryPresentationService.php:17
ILIAS\Glossary\Presentation\GlossaryPresentationService
Glossary presentation service.
Definition:
GlossaryPresentationService.php:12
ILIAS\Glossary\Presentation\GlossaryPresentationService\$glo_gui
$glo_gui
Definition:
GlossaryPresentationService.php:22
$DIC
global $DIC
Definition:
goto.php:24
ILIAS\Glossary\Presentation\GlossaryPresentationRequest
Glossary presentation request.
Definition:
GlossaryPresentationRequest.php:12
ILIAS\Glossary\Presentation\GlossaryPresentationService\getGlossaryGUI
getGlossaryGUI()
Definition:
GlossaryPresentationService.php:55
ILIAS\Glossary\Presentation
Definition:
GlossaryPresentationRequest.php:5
Modules
Glossary
Presentation
GlossaryPresentationService.php
Generated on Tue Apr 8 2025 21:01:20 for ILIAS by
1.8.13 (using
Doxyfile
)