ILIAS
trunk Revision v11.0_alpha-1689-g66c127b4ae8
◀ 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\LearningModule\Presentation
;
20
21
use
ILIAS\Repository
;
22
23
class
PresentationGUIRequest
24
{
25
use
Repository\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
getRefId
():
int
42
{
43
return
$this->
int
(
"ref_id"
);
44
}
45
46
public
function
getObjId
():
int
47
{
48
return
$this->
int
(
"obj_id"
);
49
}
50
51
public
function
getObjType
(): string
52
{
53
return
$this->
str
(
"obj_type"
);
54
}
55
56
public
function
getTranslation
(): string
57
{
58
return
$this->
str
(
"transl"
);
59
}
60
61
public
function
getFocusId
():
int
62
{
63
return
$this->
int
(
"focus_id"
);
64
}
65
66
public
function
getFocusReturn
():
int
67
{
68
return
$this->
int
(
"focus_return"
);
69
}
70
71
public
function
getBackPage
(): string
72
{
73
return
$this->
str
(
"back_pg"
);
74
}
75
76
public
function
getSearchString
(): string
77
{
78
return
$this->
str
(
"srcstring"
);
79
}
80
81
public
function
getFrame
(): string
82
{
83
return
$this->
str
(
"frame"
);
84
}
85
86
public
function
getFromPage
(): string
87
{
88
return
$this->
str
(
"from_page"
);
89
}
90
91
public
function
getMobId
():
int
92
{
93
return
$this->
int
(
"mob_id"
);
94
}
95
96
public
function
getEmbedMode
():
int
97
{
98
return
$this->
int
(
"embed_mode"
);
99
}
100
101
public
function
getCmd
(): string
102
{
103
if
(!$this->
isArray
(
"cmd"
)) {
104
return
$this->
str
(
"cmd"
);
105
}
106
return
""
;
107
}
108
109
public
function
getPgId
():
int
110
{
111
return
$this->
int
(
"pg_id"
);
112
}
113
114
public
function
getPgType
(): string
115
{
116
return
$this->
str
(
"pg_type"
);
117
}
118
119
public
function
getNotificationSwitch
():
int
120
{
121
return
$this->
int
(
"ntf"
);
122
}
123
124
public
function
getType
(): string
125
{
126
return
$this->
str
(
"type"
);
127
}
128
129
public
function
getUrl
(): string
130
{
131
return
$this->
str
(
"url"
);
132
}
133
134
public
function
getRating
():
int
135
{
136
return
$this->
int
(
"rating"
);
137
}
138
139
public
function
getItems
(): array
140
{
141
return
$this->
strArray
(
"item"
);
142
}
143
144
public
function
getSelectedType
(): string
145
{
146
return
$this->
str
(
"sel_type"
);
147
}
148
149
public
function
getSelectedObjIds
(): array
150
{
151
return
$this->
intArray
(
"obj_id"
);
152
}
153
154
public
function
getQuestionPageId
():
int
155
{
156
return
$this->
int
(
"page_id"
);
157
}
158
159
public
function
getQuestionId
():
int
160
{
161
return
$this->
int
(
"id"
);
162
}
163
}
ILIAS\UI\examples\Layout\Page\Standard\$refinery
$refinery
Definition:
ui.php:137
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getBackPage
getBackPage()
Definition:
class.PresentationGUIRequest.php:71
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getRating
getRating()
Definition:
class.PresentationGUIRequest.php:134
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getItems
getItems()
Definition:
class.PresentationGUIRequest.php:139
ILIAS
Interface Observer Contains several chained tasks and infos about them.
Definition:
AccessControl.php:21
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getTranslation
getTranslation()
Definition:
class.PresentationGUIRequest.php:56
ILIAS\Repository\str
str(string $key)
Definition:
trait.BaseGUIRequest.php:106
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getSearchString
getSearchString()
Definition:
class.PresentationGUIRequest.php:76
ILIAS\Repository\isArray
isArray(string $key)
Check if parameter is an array.
Definition:
trait.BaseGUIRequest.php:171
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getPgType
getPgType()
Definition:
class.PresentationGUIRequest.php:114
ILIAS\Repository
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getQuestionPageId
getQuestionPageId()
Definition:
class.PresentationGUIRequest.php:154
ILIAS\Repository\strArray
strArray(string $key)
Definition:
trait.BaseGUIRequest.php:116
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
$http
$http
Definition:
deliver.php:30
ILIAS\Repository\BaseGUIRequest
trait BaseGUIRequest
Base gui request wrapper.
Definition:
trait.BaseGUIRequest.php:34
ILIAS\LearningModule\Presentation
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.PresentationGUIRequest.php:19
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getUrl
getUrl()
Definition:
class.PresentationGUIRequest.php:129
Services
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getSelectedObjIds
getSelectedObjIds()
Definition:
class.PresentationGUIRequest.php:149
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getFrame
getFrame()
Definition:
class.PresentationGUIRequest.php:81
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\getEmbedMode
getEmbedMode()
Definition:
class.PresentationGUIRequest.php:96
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getObjId
getObjId()
Definition:
class.PresentationGUIRequest.php:46
ILIAS\Repository\intArray
intArray(string $key)
Definition:
trait.BaseGUIRequest.php:71
ILIAS\Data\Factory
Builds data types.
Definition:
Factory.php:35
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getFocusReturn
getFocusReturn()
Definition:
class.PresentationGUIRequest.php:66
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getQuestionId
getQuestionId()
Definition:
class.PresentationGUIRequest.php:159
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getSelectedType
getSelectedType()
Definition:
class.PresentationGUIRequest.php:144
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getPgId
getPgId()
Definition:
class.PresentationGUIRequest.php:109
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getFocusId
getFocusId()
Definition:
class.PresentationGUIRequest.php:61
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getFromPage
getFromPage()
Definition:
class.PresentationGUIRequest.php:86
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getCmd
getCmd()
Definition:
class.PresentationGUIRequest.php:101
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest
Definition:
class.PresentationGUIRequest.php:23
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getRefId
getRefId()
Definition:
class.PresentationGUIRequest.php:41
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getObjType
getObjType()
Definition:
class.PresentationGUIRequest.php:51
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getType
getType()
Definition:
class.PresentationGUIRequest.php:124
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getMobId
getMobId()
Definition:
class.PresentationGUIRequest.php:91
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ILIAS\MetaData\Vocabularies\Dispatch\Presentation\Presentation\PresentationGUIRequest\getNotificationSwitch
getNotificationSwitch()
Definition:
class.PresentationGUIRequest.php:119
components
ILIAS
LearningModule
Presentation
class.PresentationGUIRequest.php
Generated on Wed Apr 2 2025 23:02:58 for ILIAS by
1.8.13 (using
Doxyfile
)