ILIAS
trunk Revision v11.0_alpha-1753-gb21ca8c4367
◀ 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.ilAssQuestionSkillAssignmentImportList.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
28
class
ilAssQuestionSkillAssignmentImportList
implements
Iterator
29
{
31
protected
array
$assignments
;
32
33
public
function
__construct
()
34
{
35
$this->assignments = [];
36
}
37
38
public
function
addAssignment
(
ilAssQuestionSkillAssignmentImport
$assignment): void
39
{
40
$this->assignments[] = $assignment;
41
}
42
43
public
function
assignmentsExist
(): bool
44
{
45
return
count($this->assignments) > 0;
46
}
47
48
public
function
current
(): ?
ilAssQuestionSkillAssignmentImport
49
{
50
$current =
current
($this->assignments);
51
return
$current !==
false
? $current :
null
;
52
}
53
54
public
function
next
(): void
55
{
56
next
($this->assignments);
57
}
58
59
public
function
key
(): ?
int
60
{
61
return
key
($this->assignments);
62
}
63
64
public
function
valid
(): bool
65
{
66
$res
=
key
($this->assignments);
67
return
$res
!==
null
;
68
}
69
70
public
function
rewind
(): void
71
{
72
reset($this->assignments);
73
}
74
}
ilAssQuestionSkillAssignmentImport
Definition:
class.ilAssQuestionSkillAssignmentImport.php:25
$res
$res
Definition:
ltiservices.php:66
ilAssQuestionSkillAssignmentImportList\key
key()
Definition:
class.ilAssQuestionSkillAssignmentImportList.php:59
ilAssQuestionSkillAssignmentImportList\current
current()
Definition:
class.ilAssQuestionSkillAssignmentImportList.php:48
ilAssQuestionSkillAssignmentImportList
Definition:
class.ilAssQuestionSkillAssignmentImportList.php:28
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
ilAssQuestionSkillAssignmentImportList\$assignments
array $assignments
Definition:
class.ilAssQuestionSkillAssignmentImportList.php:31
ilAssQuestionSkillAssignmentImportList\__construct
__construct()
Definition:
class.ilAssQuestionSkillAssignmentImportList.php:33
ilAssQuestionSkillAssignmentImportList\assignmentsExist
assignmentsExist()
Definition:
class.ilAssQuestionSkillAssignmentImportList.php:43
ilAssQuestionSkillAssignmentImportList\valid
valid()
Definition:
class.ilAssQuestionSkillAssignmentImportList.php:64
Iterator
ilAssQuestionSkillAssignmentImportList\rewind
rewind()
Definition:
class.ilAssQuestionSkillAssignmentImportList.php:70
ilAssQuestionSkillAssignmentImportList\next
next()
Definition:
class.ilAssQuestionSkillAssignmentImportList.php:54
ilAssQuestionSkillAssignmentImportList\addAssignment
addAssignment(ilAssQuestionSkillAssignmentImport $assignment)
Definition:
class.ilAssQuestionSkillAssignmentImportList.php:38
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
components
ILIAS
TestQuestionPool
classes
questions
class.ilAssQuestionSkillAssignmentImportList.php
Generated on Thu Apr 10 2025 23:04:18 for ILIAS by
1.8.13 (using
Doxyfile
)