Home
last modified time | relevance | path

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

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