ILIAS
release_4-4 Revision
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
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
k
l
m
n
o
p
q
r
s
t
u
v
w
y
+
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
k
l
m
o
p
r
s
t
u
v
w
x
+
Variables
$
(
_
a
b
c
d
e
f
g
h
i
j
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.assAnswerErrorText.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4
require_once
'./Modules/Test/classes/inc.AssessmentConstants.php'
;
5
18
class
assAnswerErrorText
19
{
26
protected
$arrData
;
27
37
public
function
__construct
( $text_wrong =
""
, $text_correct =
""
, $points = 0.0 )
38
{
39
$this->arrData = array(
40
'text_wrong'
=> $text_wrong,
41
'text_correct'
=> $text_correct,
42
'points'
=> $points
43
);
44
}
45
49
public
function
__get
($value)
50
{
51
switch
($value)
52
{
53
case
"text_wrong"
:
54
case
"text_correct"
:
55
case
"points"
:
56
return
$this->arrData[$value];
57
break
;
58
default
:
59
return
null;
60
break
;
61
}
62
}
63
67
public
function
__set
($key, $value)
68
{
69
switch
($key)
70
{
71
case
"text_wrong"
:
72
case
"text_correct"
:
73
case
"points"
:
74
$this->arrData[$key] = $value;
75
break
;
76
default
:
77
break
;
78
}
79
}
80
}
assAnswerErrorText\__construct
__construct( $text_wrong="", $text_correct="", $points=0.0)
assAnswerErrorText constructor
Definition:
class.assAnswerErrorText.php:37
assAnswerErrorText\__get
__get($value)
Object getter.
Definition:
class.assAnswerErrorText.php:49
assAnswerErrorText
Class for error text answers.
Definition:
class.assAnswerErrorText.php:18
assAnswerErrorText\__set
__set($key, $value)
Object setter.
Definition:
class.assAnswerErrorText.php:67
assAnswerErrorText\$arrData
$arrData
Definition:
class.assAnswerErrorText.php:26
Modules
TestQuestionPool
classes
class.assAnswerErrorText.php
Generated on Mon Dec 21 2020 19:01:07 for ILIAS by
1.8.13 (using
Doxyfile
)