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
class.PresentationGUIRequest.php
Go to the documentation of this file.
1
<?php
2
19
namespace
ILIAS\Glossary\Presentation
;
20
21
use
ILIAS\Repository\BaseGUIRequest
;
22
23
class
PresentationGUIRequest
24
{
25
use
BaseGUIRequest
;
26
27
public
function
__construct
(
28
\
ILIAS
\
HTTP
\
Services
$http
,
29
\
ILIAS
\
Refinery
\
Factory
$refinery
,
30
?array $passed_query_params =
null
,
31
?array $passed_post_data =
null
32
) {
33
$this->
initRequest
(
34
$http,
35
$refinery,
36
$passed_query_params,
37
$passed_post_data
38
);
39
}
40
41
public
function
getMobId
():
int
42
{
43
return
$this->
int
(
"mob_id"
);
44
}
45
49
protected
function
getTableIds
(
string
$key): array
50
{
51
return
$this->
strArray
($key);
52
}
53
54
protected
function
getTableAction
(
string
$key): string
55
{
56
return
$this->
str
($key);
57
}
58
59
public
function
getFileId
(): string
60
{
61
return
$this->
str
(
"file_id"
);
62
}
63
64
public
function
getSearchString
(): string
65
{
66
return
$this->
str
(
"srcstring"
);
67
}
68
69
public
function
getDefinitionPageId
():
int
70
{
71
return
$this->
int
(
"pg_id"
);
72
}
73
74
public
function
getRefId
():
int
75
{
76
return
$this->
int
(
"ref_id"
);
77
}
78
79
public
function
getTermId
():
int
80
{
81
return
$this->
int
(
"term_id"
);
82
}
83
84
public
function
getTaxNode
():
int
85
{
86
return
$this->
int
(
"tax_node"
);
87
}
88
89
public
function
getLetter
(): string
90
{
91
return
$this->
str
(
"letter"
);
92
}
93
94
public
function
getBoxId
():
int
95
{
96
return
$this->
int
(
"box_id"
);
97
}
98
99
public
function
getCurrentPage
():
int
100
{
101
return
$this->
int
(
"current_page"
);
102
}
103
104
public
function
getPageLength
():
int
105
{
106
return
$this->
int
(
"page_length"
);
107
}
108
109
public
function
getViewControlStart
():
int
110
{
111
return
$this->
int
(
"vc_start"
);
112
}
113
114
public
function
getViewControlLength
():
int
115
{
116
return
$this->
int
(
"vc_length"
);
117
}
118
}
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getDefinitionPageId
getDefinitionPageId()
Definition:
class.PresentationGUIRequest.php:69
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getTableAction
getTableAction(string $key)
Definition:
class.PresentationGUIRequest.php:54
ILIAS\UI\examples\Layout\Page\Standard\$refinery
$refinery
Definition:
ui.php:137
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getSearchString
getSearchString()
Definition:
class.PresentationGUIRequest.php:64
ILIAS
Interface Observer Contains several chained tasks and infos about them.
Definition:
AccessControl.php:21
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getLetter
getLetter()
Definition:
class.PresentationGUIRequest.php:89
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\__construct
__construct(\ILIAS\HTTP\Services $http, \ILIAS\Refinery\Factory $refinery, ?array $passed_query_params=null, ?array $passed_post_data=null)
Definition:
class.PresentationGUIRequest.php:27
ILIAS\Repository\str
str(string $key)
Definition:
trait.BaseGUIRequest.php:106
ILIAS\Repository\strArray
strArray(string $key)
Definition:
trait.BaseGUIRequest.php:116
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getTaxNode
getTaxNode()
Definition:
class.PresentationGUIRequest.php:84
$http
$http
Definition:
deliver.php:30
ILIAS\Repository\BaseGUIRequest
trait BaseGUIRequest
Base gui request wrapper.
Definition:
trait.BaseGUIRequest.php:34
BaseGUIRequest
Services
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
ILIAS\Repository\initRequest
initRequest(HTTP\Services $http, Refinery\Factory $refinery, ?array $passed_query_params=null, ?array $passed_post_data=null)
Query params and post data parameters are used for testing.
Definition:
trait.BaseGUIRequest.php:48
Factory
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getTermId
getTermId()
Definition:
class.PresentationGUIRequest.php:79
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getViewControlStart
getViewControlStart()
Definition:
class.PresentationGUIRequest.php:109
ILIAS\Data\Factory
Builds data types.
Definition:
Factory.php:35
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getFileId
getFileId()
Definition:
class.PresentationGUIRequest.php:59
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getCurrentPage
getCurrentPage()
Definition:
class.PresentationGUIRequest.php:99
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getBoxId
getBoxId()
Definition:
class.PresentationGUIRequest.php:94
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest
Definition:
class.PresentationGUIRequest.php:23
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getPageLength
getPageLength()
Definition:
class.PresentationGUIRequest.php:104
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getViewControlLength
getViewControlLength()
Definition:
class.PresentationGUIRequest.php:114
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getTableIds
getTableIds(string $key)
Definition:
class.PresentationGUIRequest.php:49
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getRefId
getRefId()
Definition:
class.PresentationGUIRequest.php:74
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getMobId
getMobId()
Definition:
class.PresentationGUIRequest.php:41
ILIAS\Glossary\Presentation
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.PresentationGUIRequest.php:19
components
ILIAS
Glossary
Presentation
class.PresentationGUIRequest.php
Generated on Tue Apr 8 2025 23:03:31 for ILIAS by
1.8.13 (using
Doxyfile
)