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.ilHtmlDomNodeIterator.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
25
final
class
ilHtmlDomNodeIterator
implements
RecursiveIterator
26
{
27
private
int
$position
;
28
private
readonly DOMNodeList
$nodeList
;
29
30
public
function
__construct
(
DOMNode
$el)
31
{
32
$this->position = 0;
33
if
($el instanceof
DOMDocument
) {
34
$root = $el->documentElement;
35
} elseif ($el instanceof DOMElement) {
36
$root = $el;
37
}
else
{
38
throw
new
InvalidArgumentException
(
'Invalid arguments, expected DOMElement or DOMDocument'
);
39
}
40
41
$this->nodeList = $root->childNodes;
42
}
43
44
public
function
key
():
int
45
{
46
return
$this->position
;
47
}
48
49
public
function
next
(): void
50
{
51
$this->position++;
52
}
53
54
public
function
current
():
DOMNode
55
{
56
return
$this->nodeList->item($this->position);
57
}
58
59
public
function
valid
(): bool
60
{
61
return
$this->position < $this->nodeList->length;
62
}
63
64
public
function
rewind
(): void
65
{
66
$this->position = 0;
67
}
68
69
public
function
hasChildren
(): bool
70
{
71
return
$this->
current
()->hasChildNodes();
72
}
73
74
public
function
getChildren
(): self
75
{
76
return
new
self
($this->
current
());
77
}
78
}
ilHtmlDomNodeIterator\current
current()
Definition:
class.ilHtmlDomNodeIterator.php:54
DOMDocument
ilHtmlDomNodeIterator\key
key()
Definition:
class.ilHtmlDomNodeIterator.php:44
ilHtmlDomNodeIterator\$nodeList
readonly DOMNodeList $nodeList
Definition:
class.ilHtmlDomNodeIterator.php:28
ilHtmlDomNodeIterator\hasChildren
hasChildren()
Definition:
class.ilHtmlDomNodeIterator.php:69
ilHtmlDomNodeIterator\valid
valid()
Definition:
class.ilHtmlDomNodeIterator.php:59
ilHtmlDomNodeIterator\getChildren
getChildren()
Definition:
class.ilHtmlDomNodeIterator.php:74
ilHtmlDomNodeIterator\__construct
__construct(DOMNode $el)
Definition:
class.ilHtmlDomNodeIterator.php:30
ilHtmlDomNodeIterator\$position
int $position
Definition:
class.ilHtmlDomNodeIterator.php:27
ilHtmlDomNodeIterator\next
next()
Definition:
class.ilHtmlDomNodeIterator.php:49
ilHtmlDomNodeIterator
DOMNode
RecursiveIterator
InvalidArgumentException
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ilHtmlDomNodeIterator\rewind
rewind()
Definition:
class.ilHtmlDomNodeIterator.php:64
components
ILIAS
Html
classes
class.ilHtmlDomNodeIterator.php
Generated on Wed Apr 2 2025 23:02:59 for ILIAS by
1.8.13 (using
Doxyfile
)