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.ilCtrlArrayIterator.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
5
/* Copyright (c) 2021 Thibeau Fuhrer <thf@studer-raimann.ch> Extended GPL, see docs/LICENSE */
6
12
class
ilCtrlArrayIterator
implements
ilCtrlIteratorInterface
13
{
17
private
array
$data
;
18
24
public
function
__construct
(array $data)
25
{
26
$this->data =
$data
;
27
}
28
32
public
function
current
(): ?string
33
{
34
if
($this->
valid
()) {
35
return
current
($this->data);
36
}
37
38
return
null;
39
}
40
44
public
function
next
(): void
45
{
46
next
($this->data);
47
}
48
52
public
function
key
(): ?string
53
{
54
if
($this->
valid
()) {
55
return
key
($this->data);
56
}
57
58
return
null;
59
}
60
64
public
function
valid
(): bool
65
{
66
$value =
current
($this->data);
67
$key
=
key
($this->data);
68
69
if
(null ===
$key
) {
70
return
false
;
71
}
72
73
if
(!is_string($value) || !is_string(
$key
)) {
74
$this->
next
();
75
return
$this->
valid
();
76
}
77
78
return
true
;
79
}
80
84
public
function
rewind
(): void
85
{
86
reset($this->data);
87
}
88
}
ilCtrlArrayIterator\__construct
__construct(array $data)
ilCtrlArrayIterator Constructor
Definition:
class.ilCtrlArrayIterator.php:24
ilCtrlArrayIterator\key
key()
Definition:
class.ilCtrlArrayIterator.php:52
ilCtrlArrayIterator\valid
valid()
Definition:
class.ilCtrlArrayIterator.php:64
ilCtrlIteratorInterface
Interface ilCtrlIteratorInterface.
Definition:
interface.ilCtrlIteratorInterface.php:17
ilCtrlArrayIterator\next
next()
Definition:
class.ilCtrlArrayIterator.php:44
ILIAS\LTI\ToolProvider\$key
string $key
Consumer key/client ID value.
Definition:
System.php:193
ilCtrlArrayIterator
Class ilCtrlArrayIterator.
Definition:
class.ilCtrlArrayIterator.php:12
ilCtrlArrayIterator\$data
array $data
Definition:
class.ilCtrlArrayIterator.php:17
ilCtrlArrayIterator\current
current()
Definition:
class.ilCtrlArrayIterator.php:32
ilCtrlArrayIterator\rewind
rewind()
Definition:
class.ilCtrlArrayIterator.php:84
Services
UICore
classes
Iterator
class.ilCtrlArrayIterator.php
Generated on Thu Apr 3 2025 22:02:37 for ILIAS by
1.8.13 (using
Doxyfile
)