ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ 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
s
t
w
+
Functions
_
a
b
c
f
g
h
i
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
▼
ILIAS
Test List
Todo List
Deprecated List
►
Modules
►
Namespaces
►
Data Structures
▼
Files
►
File List
►
Globals
►
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilExerciseUIRequest.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
10
class
ilExerciseUIRequest
11
{
15
protected
$requested_ref_id
;
16
20
protected
$requested_ass_id
;
21
25
protected
$requested_member_id
;
26
30
protected
$ass
= null;
31
35
protected
$exc
= null;
36
40
public
function
__construct
(array $query_params, array $post_data)
41
{
42
$this->requested_ref_id = (int) $query_params[
"ref_id"
];
43
$this->requested_ass_id = ($post_data[
"ass_id"
])
44
? (
int
) $post_data[
"ass_id"
]
45
: (int) $query_params[
"ass_id"
];
46
$this->requested_member_id = ($post_data[
"member_id"
])
47
? (
int
) $post_data[
"member_id"
]
48
: (int) $query_params[
"member_id"
];
49
50
if
($this->
getRequestedAssId
() > 0) {
51
$this->ass =
new
ilExAssignment
($this->
getRequestedAssId
());
52
}
53
if
($this->
getRequestedRefId
() > 0 &&
ilObject::_lookupType
($this->
getRequestedRefId
(),
true
) ==
"exc"
) {
54
$this->exc =
new
ilObjExercise
($this->
getRequestedRefId
());
55
}
56
}
57
61
public
function
getRequestedRefId
() : int
62
{
63
return
$this->requested_ref_id
;
64
}
65
69
public
function
getRequestedAssId
() : int
70
{
71
return
$this->requested_ass_id
;
72
}
73
77
public
function
getRequestedMemberId
() : int
78
{
79
return
$this->requested_member_id
;
80
}
81
85
public
function
getRequestedExercise
()
86
{
87
return
$this->exc
;
88
}
89
93
public
function
getRequestedAssignment
()
94
{
95
return
$this->ass
;
96
}
97
}
ilExerciseUIRequest\$ass
$ass
Definition:
class.ilExerciseUIRequest.php:30
ilExAssignment
Exercise assignment.
Definition:
class.ilExAssignment.php:10
ilExerciseUIRequest\__construct
__construct(array $query_params, array $post_data)
Constructor.
Definition:
class.ilExerciseUIRequest.php:40
ilExerciseUIRequest\getRequestedExercise
getRequestedExercise()
Definition:
class.ilExerciseUIRequest.php:85
ilExerciseUIRequest\getRequestedAssId
getRequestedAssId()
Definition:
class.ilExerciseUIRequest.php:69
ilExerciseUIRequest\$requested_member_id
$requested_member_id
Definition:
class.ilExerciseUIRequest.php:25
ilExerciseUIRequest
Exercise ui request.
Definition:
class.ilExerciseUIRequest.php:10
ilExerciseUIRequest\getRequestedRefId
getRequestedRefId()
Definition:
class.ilExerciseUIRequest.php:61
ilObjExercise
Class ilObjExercise.
Definition:
class.ilObjExercise.php:15
ilExerciseUIRequest\getRequestedAssignment
getRequestedAssignment()
Definition:
class.ilExerciseUIRequest.php:93
ilExerciseUIRequest\$requested_ref_id
$requested_ref_id
Definition:
class.ilExerciseUIRequest.php:15
ilObject\_lookupType
static _lookupType($a_id, $a_reference=false)
lookup object type
Definition:
class.ilObject.php:1278
ilExerciseUIRequest\$exc
$exc
Definition:
class.ilExerciseUIRequest.php:35
ilExerciseUIRequest\$requested_ass_id
$requested_ass_id
Definition:
class.ilExerciseUIRequest.php:20
ilExerciseUIRequest\getRequestedMemberId
getRequestedMemberId()
Definition:
class.ilExerciseUIRequest.php:77
Modules
Exercise
Service
classes
class.ilExerciseUIRequest.php
Generated on Thu Apr 3 2025 20:00:49 for ILIAS by
1.8.13 (using
Doxyfile
)