Lines Matching refs:getDomDocument
291 function &getDomDocument(): DOMDocument function in ComboStrap\\Xml\\XmlDocument
332 $element = $this->getDomDocument()->documentElement;
338 $xmlText = $this->getDomDocument()->saveXML(
428 $xpath = new DOMXPath($this->getDomDocument());
429 $DOMNodeList = $xpath->query("namespace::*", $this->getDomDocument()->ownerDocument);
447 $xpath = new DOMXPath($this->getDomDocument());
452 $DOMNodeList = $xpath->query('namespace::*', $this->getDomDocument()->ownerDocument);
484 $this->domXpath = new DOMXPath($this->getDomDocument());
524 for ($i = 0; $i < $this->getDomDocument()->documentElement->attributes->length; $i++) {
525 if ($this->getDomDocument()->documentElement->attributes[$i]->name == $attribute) {
526 …$result = $this->getDomDocument()->documentElement->removeAttributeNode($this->getDomDocument()->d…
539 for ($i = 0; $i < $this->getDomDocument()->documentElement->childNodes->length; $i++) {
540 $childNode = &$this->getDomDocument()->documentElement->childNodes[$i];
542 $result = $this->getDomDocument()->documentElement->removeChild($childNode);
589 XmlSystems::diffNode($this->getDomDocument(), $rightDocument->getDomDocument(), $error);
756 return XmlElement::create($this->getDomDocument()->documentElement, $this);