Home
last modified time | relevance | path

Searched refs:rightNode (Results 1 – 1 of 1) sorted by relevance

/plugin/combo/ComboStrap/Xml/
H A DXmlSystems.php128 * @param DOMNode $rightNode
134 …public static function diffNode(DOMNode $leftNode, DOMNode $rightNode, &$error, array $excludedAtt… argument
141 $rightNodeName = $rightNode->localName;
143 …$error .= "The node (" . $rightNode->getNodePath() . ") are different (" . $leftNodeName . "," . $…
147 $rightNodeAttributes = $rightNode->attributes;
149 …$error .= "The node (" . $rightNode->getNodePath() . ") have no attributes while the left node has…
243 if ($rightNode->hasAttributes()) {
244 for ($i = 0; $i < $rightNode->attributes->length; $i++) {
246 $rightAtt = $rightNode->attributes->item($i);
253 $rightNodeValue = trim($rightNode->nodeValue);
[all …]