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.assFormulaQuestionUnitCategory.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
26
class
assFormulaQuestionUnitCategory
27
{
28
private
int
$id
= 0;
29
private
string
$category
=
''
;
30
private
int
$question_fi
= 0;
31
32
public
function
initFormArray
(array
$data
): void
33
{
34
$this->
id
= (
int
) $data[
'category_id'
];
35
$this->category = $data[
'category'
];
36
$this->question_fi = (
int
) $data[
'question_fi'
];
37
}
38
39
public
function
setId
(
int
$id): void
40
{
41
$this->
id
=
$id
;
42
}
43
44
public
function
getId
():
int
45
{
46
return
$this->id
;
47
}
48
49
public
function
setCategory
(
string
$category): void
50
{
51
$this->category =
$category
;
52
}
53
54
public
function
getCategory
(): string
55
{
56
return
$this->category
;
57
}
58
59
public
function
setQuestionFi
(
int
$question_fi): void
60
{
61
$this->question_fi =
$question_fi
;
62
}
63
64
public
function
getQuestionFi
():
int
65
{
66
return
$this->question_fi
;
67
}
68
69
public
function
getDisplayString
(): string
70
{
71
global
$DIC
;
72
73
$lng
= $DIC->language();
74
75
$category = $this->
getCategory
();
76
if
(strcmp(
'-qpl_qst_formulaquestion_'
. $category .
'-'
,
$lng
->txt(
'qpl_qst_formulaquestion_'
. $category)) !== 0) {
77
$category =
$lng
->txt(
'qpl_qst_formulaquestion_'
. $category);
78
}
79
80
return
$category
;
81
}
82
}
assFormulaQuestionUnitCategory
Formula Question Unit Category.
Definition:
class.assFormulaQuestionUnitCategory.php:26
$data
$data
Definition:
ltiregistration.php:29
assFormulaQuestionUnitCategory\$question_fi
int $question_fi
Definition:
class.assFormulaQuestionUnitCategory.php:30
assFormulaQuestionUnitCategory\setCategory
setCategory(string $category)
Definition:
class.assFormulaQuestionUnitCategory.php:49
assFormulaQuestionUnitCategory\setId
setId(int $id)
Definition:
class.assFormulaQuestionUnitCategory.php:39
assFormulaQuestionUnitCategory\getId
getId()
Definition:
class.assFormulaQuestionUnitCategory.php:44
$DIC
global $DIC
Definition:
shib_login.php:22
assFormulaQuestionUnitCategory\$id
int $id
Definition:
class.assFormulaQuestionUnitCategory.php:28
assFormulaQuestionUnitCategory\getCategory
getCategory()
Definition:
class.assFormulaQuestionUnitCategory.php:54
assFormulaQuestionUnitCategory\getDisplayString
getDisplayString()
Definition:
class.assFormulaQuestionUnitCategory.php:69
assFormulaQuestionUnitCategory\$category
string $category
Definition:
class.assFormulaQuestionUnitCategory.php:29
$lng
global $lng
Definition:
privfeed.php:31
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
assFormulaQuestionUnitCategory\initFormArray
initFormArray(array $data)
Definition:
class.assFormulaQuestionUnitCategory.php:32
assFormulaQuestionUnitCategory\setQuestionFi
setQuestionFi(int $question_fi)
Definition:
class.assFormulaQuestionUnitCategory.php:59
assFormulaQuestionUnitCategory\getQuestionFi
getQuestionFi()
Definition:
class.assFormulaQuestionUnitCategory.php:64
components
ILIAS
TestQuestionPool
classes
class.assFormulaQuestionUnitCategory.php
Generated on Wed Apr 2 2025 23:03:51 for ILIAS by
1.8.13 (using
Doxyfile
)