icingaweb2/library/Icinga/Web/Dom/DomNodeIterator.php
Eric Lippmann 662de28f85 License source files as GPL-3.0-or-later
Add SPDX license headers and mark source files as GPL-3.0-or-later to
preserve the option to relicense under later GPL versions.
2026-03-26 17:49:26 +01:00

86 lines
1.6 KiB
PHP

<?php
// SPDX-FileCopyrightText: 2018 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later
namespace Icinga\Web\Dom;
use DOMNode;
use IteratorIterator;
use RecursiveIterator;
/**
* Recursive iterator over a DOMNode
*
* Usage example:
* <code>
* <?php
*
* namespace Icinga\Example;
*
* use DOMDocument;
* use RecursiveIteratorIterator;
* use Icinga\Web\Dom\DomIterator;
*
* $doc = new DOMDocument();
* $doc->loadHTML(...);
* $dom = new RecursiveIteratorIterator(new DomNodeIterator($doc), RecursiveIteratorIterator::SELF_FIRST);
* foreach ($dom as $node) {
* ....
* }
* </code>
*/
class DomNodeIterator implements RecursiveIterator
{
/**
* The node's children
*
* @var IteratorIterator
*/
protected $children;
/**
* Create a new iterator over a DOMNode's children
*
* @param DOMNode $node
*/
public function __construct(DOMNode $node)
{
$this->children = new IteratorIterator($node->childNodes);
}
public function current(): ?DOMNode
{
return $this->children->current();
}
public function key(): int
{
return $this->children->key();
}
public function next(): void
{
$this->children->next();
}
public function rewind(): void
{
$this->children->rewind();
}
public function valid(): bool
{
return $this->children->valid();
}
public function hasChildren(): bool
{
return $this->current()->hasChildNodes();
}
public function getChildren(): DomNodeIterator
{
return new static($this->current());
}
}