Lines Matching refs:getXmlDocument

255 …          foreach ($this->getXmlDocument()->getNamespaces() as $namespacePrefix => $namespaceUri) {
262 $this->getXmlDocument()->removeNamespace($namespaceUri);
269 $documentElement = $this->getXmlDocument()->getDomDocument()->documentElement;
270 … foreach ($this->getXmlDocument()->getNamespaces() as $namespacePrefix => $namespaceUri) {
271 $nodes = $this->getXmlDocument()->xpath("//*[namespace-uri()='$namespaceUri']");
272 … $attributes = $this->getXmlDocument()->xpath("//@*[namespace-uri()='$namespaceUri']");
284 $commentNodes = $this->getXmlDocument()->xpath("//comment()");
286 $this->getXmlDocument()->removeNode($commentNode);
315 $nodes = $this->getXmlDocument()->xpath("//@$value");
393 XmlSystems::deleteAllElementsByName($elementToDelete, $this->getXmlDocument());
402 … $elementNodeList = $this->getXmlDocument()->xpath("//*[local-name()='$elementToDeleteIfEmpty']");
476 return $this->getXmlDocument()->toXml();
756 private function getXmlDocument(): XmlDocument function in ComboStrap\\FetcherSvg
769 return $this->getXmlDocument()->getDomDocument();
863 $documentElement = $this->getXmlDocument()->getElement();
1155 $svgFillsElement = $this->getXmlDocument()->xpath("//*[@fill]");
1218 XmlSystems::deleteAllElementsByName("rect", $this->getXmlDocument());
1272 … $svgPaths = $this->getXmlDocument()->xpath("//*[local-name()='path' or local-name()='g']");
1283 … $this->getXmlDocument()->removeAttributeValue("fill", $nodeElement);
1291 … $firsFillElement = $this->getXmlDocument()->xpath("//*[@fill][1]")->item(0);
1307 … $svgPaths = $this->getXmlDocument()->xpath("//*[local-name()='path']");
1315 … $this->getXmlDocument()->removeAttributeValue(FetcherSvg::STROKE_ATTRIBUTE, $nodeElement);
1317 $this->getXmlDocument()->removeNode($nodeElement);
1607 …$viewBox = $this->getXmlDocument()->getDomDocument()->documentElement->getAttribute(FetcherSvg::VI…
1625 … $height = $this->getXmlDocument()->getDomDocument()->documentElement->getAttribute("height");