ILIAS
release_8 Revision v8.19
◀ 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
n
o
p
r
s
t
u
v
w
x
+
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
j
l
m
p
s
t
u
+
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
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilAssKprimChoiceAnswer.php
Go to the documentation of this file.
1
<?php
2
25
class
ilAssKprimChoiceAnswer
26
{
27
private
$position
;
28
29
private
$answertext
;
30
31
private
$imageFile
;
32
33
private
$imageFsDir
;
34
35
private
$imageWebDir
;
36
37
private
$thumbPrefix
;
38
39
private
$correctness
;
40
41
public
function
setPosition
(
$position
): void
42
{
43
$this->position =
$position
;
44
}
45
46
public
function
getPosition
()
47
{
48
return
$this->position
;
49
}
50
51
public
function
setAnswertext
(
$answertext
): void
52
{
53
$this->answertext =
$answertext
;
54
}
55
56
public
function
getAnswertext
()
57
{
58
return
$this->answertext
;
59
}
60
61
public
function
setImageFile
(
$imageFile
): void
62
{
63
$this->imageFile =
$imageFile
;
64
}
65
66
public
function
getImageFile
()
67
{
68
return
$this->imageFile
;
69
}
70
71
public
function
setImageFsDir
(
$imageFsDir
): void
72
{
73
$this->imageFsDir =
$imageFsDir
;
74
}
75
76
public
function
getImageFsDir
()
77
{
78
return
$this->imageFsDir
;
79
}
80
81
public
function
setImageWebDir
(
$imageWebDir
): void
82
{
83
$this->imageWebDir =
$imageWebDir
;
84
}
85
86
public
function
getImageWebDir
()
87
{
88
return
$this->imageWebDir
;
89
}
90
94
public
function
setThumbPrefix
(
$thumbPrefix
): void
95
{
96
$this->thumbPrefix =
$thumbPrefix
;
97
}
98
102
public
function
getThumbPrefix
()
103
{
104
return
$this->thumbPrefix
;
105
}
106
107
public
function
setCorrectness
(
$correctness
): void
108
{
109
$this->correctness =
$correctness
;
110
}
111
112
public
function
getCorrectness
()
113
{
114
return
$this->correctness
;
115
}
116
117
public
function
getImageFsPath
(): string
118
{
119
return
$this->
getImageFsDir
() . $this->
getImageFile
();
120
}
121
122
public
function
getThumbFsPath
(): string
123
{
124
return
$this->
getImageFsDir
() . $this->
getThumbPrefix
() . $this->
getImageFile
();
125
}
126
127
public
function
getImageWebPath
(): string
128
{
129
return
$this->
getImageWebDir
() . $this->
getImageFile
();
130
}
131
132
public
function
getThumbWebPath
(): string
133
{
134
return
$this->
getImageWebDir
() . $this->
getThumbPrefix
() . $this->
getImageFile
();
135
}
136
}
ilAssKprimChoiceAnswer\setImageFile
setImageFile($imageFile)
Definition:
class.ilAssKprimChoiceAnswer.php:61
ilAssKprimChoiceAnswer\setImageFsDir
setImageFsDir($imageFsDir)
Definition:
class.ilAssKprimChoiceAnswer.php:71
ilAssKprimChoiceAnswer\getAnswertext
getAnswertext()
Definition:
class.ilAssKprimChoiceAnswer.php:56
ilAssKprimChoiceAnswer\getThumbFsPath
getThumbFsPath()
Definition:
class.ilAssKprimChoiceAnswer.php:122
ilAssKprimChoiceAnswer\$position
$position
Definition:
class.ilAssKprimChoiceAnswer.php:27
ilAssKprimChoiceAnswer\setThumbPrefix
setThumbPrefix($thumbPrefix)
Definition:
class.ilAssKprimChoiceAnswer.php:94
ilAssKprimChoiceAnswer\$imageFsDir
$imageFsDir
Definition:
class.ilAssKprimChoiceAnswer.php:33
ilAssKprimChoiceAnswer\getThumbWebPath
getThumbWebPath()
Definition:
class.ilAssKprimChoiceAnswer.php:132
ilAssKprimChoiceAnswer\$imageFile
$imageFile
Definition:
class.ilAssKprimChoiceAnswer.php:31
ilAssKprimChoiceAnswer\setCorrectness
setCorrectness($correctness)
Definition:
class.ilAssKprimChoiceAnswer.php:107
ilAssKprimChoiceAnswer\setImageWebDir
setImageWebDir($imageWebDir)
Definition:
class.ilAssKprimChoiceAnswer.php:81
ilAssKprimChoiceAnswer\$imageWebDir
$imageWebDir
Definition:
class.ilAssKprimChoiceAnswer.php:35
ilAssKprimChoiceAnswer\getImageFsPath
getImageFsPath()
Definition:
class.ilAssKprimChoiceAnswer.php:117
ilAssKprimChoiceAnswer\$thumbPrefix
$thumbPrefix
Definition:
class.ilAssKprimChoiceAnswer.php:37
ilAssKprimChoiceAnswer\getImageWebDir
getImageWebDir()
Definition:
class.ilAssKprimChoiceAnswer.php:86
ilAssKprimChoiceAnswer\getImageFile
getImageFile()
Definition:
class.ilAssKprimChoiceAnswer.php:66
ilAssKprimChoiceAnswer\getImageFsDir
getImageFsDir()
Definition:
class.ilAssKprimChoiceAnswer.php:76
ilAssKprimChoiceAnswer\getImageWebPath
getImageWebPath()
Definition:
class.ilAssKprimChoiceAnswer.php:127
ilAssKprimChoiceAnswer\getPosition
getPosition()
Definition:
class.ilAssKprimChoiceAnswer.php:46
ilAssKprimChoiceAnswer\setPosition
setPosition($position)
Definition:
class.ilAssKprimChoiceAnswer.php:41
ilAssKprimChoiceAnswer\getThumbPrefix
getThumbPrefix()
Definition:
class.ilAssKprimChoiceAnswer.php:102
ilAssKprimChoiceAnswer\$correctness
$correctness
Definition:
class.ilAssKprimChoiceAnswer.php:39
ilAssKprimChoiceAnswer
Definition:
class.ilAssKprimChoiceAnswer.php:25
ilAssKprimChoiceAnswer\getCorrectness
getCorrectness()
Definition:
class.ilAssKprimChoiceAnswer.php:112
ilAssKprimChoiceAnswer\$answertext
$answertext
Definition:
class.ilAssKprimChoiceAnswer.php:29
ilAssKprimChoiceAnswer\setAnswertext
setAnswertext($answertext)
Definition:
class.ilAssKprimChoiceAnswer.php:51
Modules
TestQuestionPool
classes
class.ilAssKprimChoiceAnswer.php
Generated on Fri Apr 4 2025 22:02:03 for ILIAS by
1.8.13 (using
Doxyfile
)