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.ilAssQuestionSkillAssignmentImportList.php
Go to the documentation of this file.
1
<?php
2
25
class
ilAssQuestionSkillAssignmentImportList
implements
Iterator
26
{
30
protected
$assignments
;
31
35
public
function
__construct
()
36
{
37
$this->assignments = array();
38
}
39
43
public
function
addAssignment
(
ilAssQuestionSkillAssignmentImport
$assignment): void
44
{
45
$this->assignments[] = $assignment;
46
}
47
48
public
function
assignmentsExist
(): bool
49
{
50
return
count($this->assignments) > 0;
51
}
52
56
public
function
current
()
57
{
58
return
current
($this->assignments);
59
}
60
64
public
function
next
()
65
{
66
return
next
($this->assignments);
67
}
68
72
public
function
key
()
73
{
74
$res
=
key
($this->assignments);
75
return
$res
;
76
}
77
81
public
function
valid
(): bool
82
{
83
$res
=
key
($this->assignments);
84
return
$res
!== null;
85
}
86
90
public
function
rewind
()
91
{
92
return
reset($this->assignments);
93
}
94
95
public
function
sleep
(): void
96
{
97
// TODO: Implement __sleep() method.
98
}
99
100
public
function
wakeup
(): void
101
{
102
// TODO: Implement __wakeup() method.
103
}
104
}
ilAssQuestionSkillAssignmentImport
Definition:
class.ilAssQuestionSkillAssignmentImport.php:25
$res
$res
Definition:
ltiservices.php:69
ilAssQuestionSkillAssignmentImportList\$assignments
$assignments
Definition:
class.ilAssQuestionSkillAssignmentImportList.php:30
ilAssQuestionSkillAssignmentImportList\key
key()
Definition:
class.ilAssQuestionSkillAssignmentImportList.php:72
ilAssQuestionSkillAssignmentImportList\current
current()
Definition:
class.ilAssQuestionSkillAssignmentImportList.php:56
ilAssQuestionSkillAssignmentImportList\wakeup
wakeup()
Definition:
class.ilAssQuestionSkillAssignmentImportList.php:100
ilAssQuestionSkillAssignmentImportList
Definition:
class.ilAssQuestionSkillAssignmentImportList.php:25
ilAssQuestionSkillAssignmentImportList\sleep
sleep()
Definition:
class.ilAssQuestionSkillAssignmentImportList.php:95
ilAssQuestionSkillAssignmentImportList\__construct
__construct()
ilAssQuestionSkillAssignmentImportList constructor.
Definition:
class.ilAssQuestionSkillAssignmentImportList.php:35
ilAssQuestionSkillAssignmentImportList\assignmentsExist
assignmentsExist()
Definition:
class.ilAssQuestionSkillAssignmentImportList.php:48
ilAssQuestionSkillAssignmentImportList\valid
valid()
Definition:
class.ilAssQuestionSkillAssignmentImportList.php:81
Iterator
ilAssQuestionSkillAssignmentImportList\rewind
rewind()
Definition:
class.ilAssQuestionSkillAssignmentImportList.php:90
ilAssQuestionSkillAssignmentImportList\next
next()
Definition:
class.ilAssQuestionSkillAssignmentImportList.php:64
ilAssQuestionSkillAssignmentImportList\addAssignment
addAssignment(ilAssQuestionSkillAssignmentImport $assignment)
Definition:
class.ilAssQuestionSkillAssignmentImportList.php:43
Modules
TestQuestionPool
classes
questions
class.ilAssQuestionSkillAssignmentImportList.php
Generated on Fri Apr 4 2025 22:02:04 for ILIAS by
1.8.13 (using
Doxyfile
)