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
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.SurveyTextQuestionEvaluation.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
4
10
class
SurveyTextQuestionEvaluation
extends
SurveyQuestionEvaluation
11
{
12
//
13
// DETAILS
14
//
15
16
public
function
getGrid
($a_results, $a_abs =
true
, $a_perc =
true
)
17
{
18
}
19
20
public
function
getChart
($a_results)
21
{
22
}
23
24
25
//
26
// EXPORT
27
//
28
29
public
function
getExportGrid
($a_results)
30
{
31
}
32
33
public
function
addUserSpecificResults
(array &$a_row, $a_user_id, $a_results)
34
{
35
$answer = $a_results->getUserResults($a_user_id);
36
if
($answer === null) {
37
$a_row[] = $this->
getSkippedValue
();
38
}
else
{
39
$a_row[] = $answer[0][1];
40
}
41
}
42
}
SurveyTextQuestionEvaluation\addUserSpecificResults
addUserSpecificResults(array &$a_row, $a_user_id, $a_results)
Definition:
class.SurveyTextQuestionEvaluation.php:33
SurveyQuestionEvaluation
Survey question evaluation.
Definition:
class.SurveyQuestionEvaluation.php:10
SurveyTextQuestionEvaluation\getChart
getChart($a_results)
Definition:
class.SurveyTextQuestionEvaluation.php:20
SurveyTextQuestionEvaluation
Survey text evaluation.
Definition:
class.SurveyTextQuestionEvaluation.php:10
SurveyTextQuestionEvaluation\getGrid
getGrid($a_results, $a_abs=true, $a_perc=true)
Definition:
class.SurveyTextQuestionEvaluation.php:16
SurveyQuestionEvaluation\getSkippedValue
getSkippedValue()
Get caption for skipped value.
Definition:
class.SurveyQuestionEvaluation.php:368
SurveyTextQuestionEvaluation\getExportGrid
getExportGrid($a_results)
Definition:
class.SurveyTextQuestionEvaluation.php:29
Modules
SurveyQuestionPool
Questions
class.SurveyTextQuestionEvaluation.php
Generated on Thu Apr 3 2025 20:00:55 for ILIAS by
1.8.13 (using
Doxyfile
)