24 public function isValid() :
bool 26 if (!preg_match(
'/<[^>]+?>/', $this->text)) {
31 $dom =
new DOMDocument();
32 if (!$dom->loadHTML($this->text)) {
38 RecursiveIteratorIterator::SELF_FIRST
40 foreach ($iter as $element) {
42 if (in_array(strtolower($element->nodeName), [
'body'])) {
46 if ($element->nodeType === XML_ELEMENT_NODE) {
__construct(string $text)
ilAccessibilityDocumentsContainsHtmlValidator constructor.
Class ilAccessibilityDocumentsContainsHtmlValidator.
Class ilHtmlDomNodeIterator.