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.EvaluationGUIRequest.php
Go to the documentation of this file.
1
<?php
2
19
namespace
ILIAS\Survey\Evaluation
;
20
21
use
ILIAS\Repository\BaseGUIRequest
;
22
26
class
EvaluationGUIRequest
27
{
28
use
BaseGUIRequest
;
29
30
protected
array
$params
;
31
32
public
function
__construct
(
33
\
ILIAS
\
HTTP
\
Services
$http
,
34
\
ILIAS
\
Refinery
\
Factory
$refinery
,
35
?array $get =
null
,
36
?array
$post
=
null
37
) {
38
$this->
initRequest
(
39
$http,
40
$refinery,
41
$get,
42
$post
43
);
44
}
45
46
public
function
getShowTable
(): bool
47
{
48
$vw = $this->
str
(
"vw"
);
49
return
$vw ===
""
|| is_int(strpos($vw,
"t"
));
50
}
51
52
public
function
getShowChart
(): bool
53
{
54
$vw = $this->
str
(
"vw"
);
55
return
$vw ===
""
|| is_int(strpos($vw,
"c"
));
56
}
57
58
public
function
getVW
(): string
59
{
60
return
$this->
str
(
"vw"
);
61
}
62
63
public
function
getShowAbsolute
(): bool
64
{
65
$cp = $this->
str
(
"cp"
);
66
return
$cp ===
""
|| is_int(strpos($cp,
"a"
));
67
}
68
69
public
function
getShowPercentage
(): bool
70
{
71
$cp = $this->
str
(
"cp"
);
72
return
$cp ===
""
|| is_int(strpos($cp,
"p"
));
73
}
74
75
public
function
getCP
(): string
76
{
77
return
$this->
str
(
"cp"
);
78
}
79
80
public
function
getAppraiseeId
():
int
81
{
82
return
$this->
int
(
"appr_id"
);
83
}
84
85
public
function
getRaterId
(): string
86
{
87
return
$this->
str
(
"rater_id"
);
88
}
89
90
public
function
getRefId
():
int
91
{
92
return
$this->
int
(
"ref_id"
);
93
}
94
95
public
function
getCompEvalMode
(): string
96
{
97
return
$this->
str
(
"comp_eval_mode"
);
98
}
99
100
public
function
getSurveyCode
(): string
101
{
102
return
$this->
str
(
"surveycode"
);
103
}
104
105
public
function
getExportLabel
(): string
106
{
107
return
$this->
str
(
"export_label"
);
108
}
109
110
public
function
getExportFormat
(): string
111
{
112
return
$this->
str
(
"export_format"
);
113
}
114
115
public
function
getExportCmd
(): string
116
{
117
return
$this->
str
(
"export_cmd"
);
118
}
119
120
public
function
getPrintSelection
(): string
121
{
122
return
$this->
str
(
"print_selection"
);
123
}
124
125
public
function
getQuestionIds
(): array
126
{
127
return
$this->
intArray
(
"qids"
);
128
}
129
130
public
function
getActiveIds
(): array
131
{
132
return
$this->
intArray
(
"active_ids"
);
133
}
134
}
ILIAS\Survey\Evaluation\EvaluationGUIRequest\getAppraiseeId
getAppraiseeId()
Definition:
class.EvaluationGUIRequest.php:80
ILIAS\UI\examples\Layout\Page\Standard\$refinery
$refinery
Definition:
ui.php:137
ILIAS\Survey\Evaluation\EvaluationGUIRequest\getRefId
getRefId()
Definition:
class.EvaluationGUIRequest.php:90
ILIAS\Survey\Evaluation\EvaluationGUIRequest\getShowTable
getShowTable()
Definition:
class.EvaluationGUIRequest.php:46
ILIAS\Survey\Evaluation\EvaluationGUIRequest\getVW
getVW()
Definition:
class.EvaluationGUIRequest.php:58
ILIAS\Survey\Evaluation\EvaluationGUIRequest\getShowPercentage
getShowPercentage()
Definition:
class.EvaluationGUIRequest.php:69
ILIAS
Interface Observer Contains several chained tasks and infos about them.
Definition:
AccessControl.php:21
ILIAS\Survey\Evaluation\EvaluationGUIRequest\getCP
getCP()
Definition:
class.EvaluationGUIRequest.php:75
ILIAS\Repository\str
str(string $key)
Definition:
trait.BaseGUIRequest.php:106
ILIAS\Survey\Evaluation\EvaluationGUIRequest\getRaterId
getRaterId()
Definition:
class.EvaluationGUIRequest.php:85
$http
$http
Definition:
deliver.php:30
ILIAS\Survey\Evaluation\EvaluationGUIRequest\getExportCmd
getExportCmd()
Definition:
class.EvaluationGUIRequest.php:115
ILIAS\Repository\BaseGUIRequest
trait BaseGUIRequest
Base gui request wrapper.
Definition:
trait.BaseGUIRequest.php:34
BaseGUIRequest
ILIAS\Data\Color\Factory
Builds a Color from either hex- or rgb values.
Definition:
Factory.php:30
ILIAS\Survey\Evaluation\EvaluationGUIRequest\getShowAbsolute
getShowAbsolute()
Definition:
class.EvaluationGUIRequest.php:63
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
ILIAS\Survey\Evaluation\EvaluationGUIRequest\getActiveIds
getActiveIds()
Definition:
class.EvaluationGUIRequest.php:130
ILIAS\Survey\Evaluation\EvaluationGUIRequest\getCompEvalMode
getCompEvalMode()
Definition:
class.EvaluationGUIRequest.php:95
Factory
ILIAS\Repository\intArray
intArray(string $key)
Definition:
trait.BaseGUIRequest.php:71
ILIAS\Survey\Evaluation\EvaluationGUIRequest\__construct
__construct(\ILIAS\HTTP\Services $http, \ILIAS\Refinery\Factory $refinery, ?array $get=null, ?array $post=null)
Definition:
class.EvaluationGUIRequest.php:32
ILIAS\Survey\Evaluation\EvaluationGUIRequest\getShowChart
getShowChart()
Definition:
class.EvaluationGUIRequest.php:52
ILIAS\Survey\Evaluation
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.EvaluationGUIRequest.php:19
ILIAS\Survey\Evaluation\EvaluationGUIRequest\getSurveyCode
getSurveyCode()
Definition:
class.EvaluationGUIRequest.php:100
ILIAS\Survey\Evaluation\EvaluationGUIRequest\getExportLabel
getExportLabel()
Definition:
class.EvaluationGUIRequest.php:105
ILIAS\Survey\Evaluation\EvaluationGUIRequest\getExportFormat
getExportFormat()
Definition:
class.EvaluationGUIRequest.php:110
ILIAS\Survey\Evaluation\EvaluationGUIRequest
Definition:
class.EvaluationGUIRequest.php:26
ILIAS\Survey\Evaluation\EvaluationGUIRequest\$params
array $params
Definition:
class.EvaluationGUIRequest.php:30
ILIAS\Survey\Evaluation\EvaluationGUIRequest\getPrintSelection
getPrintSelection()
Definition:
class.EvaluationGUIRequest.php:120
$post
$post
Definition:
ltitoken.php:46
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ILIAS\Survey\Evaluation\EvaluationGUIRequest\getQuestionIds
getQuestionIds()
Definition:
class.EvaluationGUIRequest.php:125
components
ILIAS
Survey
Evaluation
class.EvaluationGUIRequest.php
Generated on Wed Apr 2 2025 23:03:43 for ILIAS by
1.8.13 (using
Doxyfile
)