15 $this->text = $purified_html_content;
21 public function isValid() :
bool 23 if (!preg_match(
'/<[^>]+?>/', $this->text)) {
28 $dom =
new DOMDocument();
29 if (!$dom->loadHTML($this->text)) {
35 RecursiveIteratorIterator::SELF_FIRST
37 foreach ($iter as $element) {
39 if (in_array(strtolower($element->nodeName), [
'body'])) {
43 if ($element->nodeType === XML_ELEMENT_NODE) {
__construct(string $purified_html_content)
ilWebDAVMountInstructionsDocumentsContainsHtmlValidator constructor.
Class ilHtmlDomNodeIterator.