@@ -55,12 +55,10 @@ discard block |
||
55 | 55 | $this->appendChild($this->importNode($xml->documentElement, true)); |
56 | 56 | } |
57 | 57 | } |
58 | - } |
|
59 | - else if (is_string($xml) && !empty($xml)) { |
|
58 | + } else if (is_string($xml) && !empty($xml)) { |
|
60 | 59 | if ($this->error_checking == 'none') { |
61 | 60 | @$this->loadXML($xml, LIBXML_COMPACT); |
62 | - } |
|
63 | - else if (!$this->loadXML($xml, LIBXML_COMPACT)) { |
|
61 | + } else if (!$this->loadXML($xml, LIBXML_COMPACT)) { |
|
64 | 62 | trigger_error('BetterDOMDocument\DOMDoc: Could not load: ' . htmlspecialchars($xml), E_USER_WARNING); |
65 | 63 | } |
66 | 64 | } |
@@ -115,8 +113,7 @@ discard block |
||
115 | 113 | public function lookupURL($prefix) { |
116 | 114 | if (isset($this->ns[$prefix])) { |
117 | 115 | return $this->ns[$prefix]; |
118 | - } |
|
119 | - else { |
|
116 | + } else { |
|
120 | 117 | return FALSE; |
121 | 118 | } |
122 | 119 | } |
@@ -150,15 +147,13 @@ discard block |
||
150 | 147 | |
151 | 148 | if ($context) { |
152 | 149 | $result = $xob->query($xpath, $context); |
153 | - } |
|
154 | - else { |
|
150 | + } else { |
|
155 | 151 | $result = $xob->query($xpath); |
156 | 152 | } |
157 | 153 | |
158 | 154 | if ($result) { |
159 | 155 | return new DOMList($result, $this); |
160 | - } |
|
161 | - else { |
|
156 | + } else { |
|
162 | 157 | return FALSE; |
163 | 158 | } |
164 | 159 | } |
@@ -182,8 +177,7 @@ discard block |
||
182 | 177 | |
183 | 178 | if (empty($result) || !count($result)) { |
184 | 179 | return FALSE; |
185 | - } |
|
186 | - else { |
|
180 | + } else { |
|
187 | 181 | return $result->item(0); |
188 | 182 | } |
189 | 183 | } |
@@ -262,13 +256,11 @@ discard block |
||
262 | 256 | if ($context->hasChildNodes()) { |
263 | 257 | if ($context->childNodes->length == 1 && $context->firstChild->nodeType == XML_TEXT_NODE) { |
264 | 258 | $array['#text'] = $context->firstChild->nodeValue; |
265 | - } |
|
266 | - else { |
|
259 | + } else { |
|
267 | 260 | foreach ($context->childNodes as $childNode) { |
268 | 261 | if ($childNode->nodeType == XML_ELEMENT_NODE) { |
269 | 262 | $array[$childNode->nodeName][] = $this->getArray($raw, $childNode); |
270 | - } |
|
271 | - elseif ($childNode->nodeType == XML_CDATA_SECTION_NODE) { |
|
263 | + } elseif ($childNode->nodeType == XML_CDATA_SECTION_NODE) { |
|
272 | 264 | $array['#text'] = $childNode->textContent; |
273 | 265 | } |
274 | 266 | } |
@@ -300,8 +292,7 @@ discard block |
||
300 | 292 | $matches = array(); |
301 | 293 | if (preg_match($pattern, $this->saveXML($context), $matches)) { |
302 | 294 | return $matches[1]; |
303 | - } |
|
304 | - else { |
|
295 | + } else { |
|
305 | 296 | return ''; |
306 | 297 | } |
307 | 298 | } |
@@ -447,8 +438,7 @@ discard block |
||
447 | 438 | if ($context->nextSibling) { |
448 | 439 | // $context has an immediate sibling : insert newnode before this one |
449 | 440 | return $context->parentNode->insertBefore($newnode, $context->nextSibling); |
450 | - } |
|
451 | - else { |
|
441 | + } else { |
|
452 | 442 | return $context->parentNode->appendChild($newnode); |
453 | 443 | } |
454 | 444 | } |
@@ -514,11 +504,9 @@ discard block |
||
514 | 504 | foreach($node as $item) { |
515 | 505 | $this->remove($item); |
516 | 506 | } |
517 | - } |
|
518 | - else if (get_class($node) == 'DOMNodeList') { |
|
507 | + } else if (get_class($node) == 'DOMNodeList') { |
|
519 | 508 | $this->remove(new DOMList($node, $this)); |
520 | - } |
|
521 | - else { |
|
509 | + } else { |
|
522 | 510 | $parent = $node->parentNode; |
523 | 511 | $parent->removeChild($node); |
524 | 512 | } |
@@ -540,8 +528,7 @@ discard block |
||
540 | 528 | public function tranform($xsl, $context = NULL) { |
541 | 529 | if (!$context) { |
542 | 530 | $doc = $this; |
543 | - } |
|
544 | - else { |
|
531 | + } else { |
|
545 | 532 | if (is_string($context)) { |
546 | 533 | $context = $this->xpathSingle($context); |
547 | 534 | } |
@@ -592,8 +579,7 @@ discard block |
||
592 | 579 | |
593 | 580 | $transformed = $this->tranform($xsl, $node); |
594 | 581 | return $this->replace($node, $transformed->documentElement); |
595 | - } |
|
596 | - else { |
|
582 | + } else { |
|
597 | 583 | // @@TODO: Report the correct calling file and number |
598 | 584 | throw new Exception("Changing the namespace of a " . get_class($node) . " is not supported"); |
599 | 585 | } |
@@ -678,14 +664,12 @@ discard block |
||
678 | 664 | // Add in xlink options |
679 | 665 | if ($options['xlink'] === TRUE) { |
680 | 666 | $options['xlink'] = "@xlink:type = 'simple'"; |
681 | - } |
|
682 | - else if (empty($options['xlink'])) { |
|
667 | + } else if (empty($options['xlink'])) { |
|
683 | 668 | $options['xlink'] = "false()"; |
684 | 669 | } |
685 | 670 | $xslOptions = str_replace("||xlink||", $options['xlink'], $xslOptions); |
686 | 671 | $transformed = $this->tranform($xslOptions, $context); |
687 | - } |
|
688 | - else { |
|
672 | + } else { |
|
689 | 673 | $transformed = $this->tranform($xslSimple, $context); |
690 | 674 | } |
691 | 675 | |
@@ -721,8 +705,7 @@ discard block |
||
721 | 705 | // Find any of these elements that have no child nodes and are therefore candidates for self-closing, replace them with a self-closed version. |
722 | 706 | $pattern = '<(area|base|br|col|command|embed|hr|img|input|keygen|link|meta|param|source|track|wbr)(\b[^<]*)><\/\1>'; |
723 | 707 | return preg_replace('/' . $pattern . '/', '<$1$2/>', $output); |
724 | - } |
|
725 | - else { |
|
708 | + } else { |
|
726 | 709 | return $this->saveXML($context, LIBXML_NOEMPTYTAG); |
727 | 710 | } |
728 | 711 | } |
@@ -738,8 +721,7 @@ discard block |
||
738 | 721 | // Check up error-checking |
739 | 722 | if ($error_checking == FALSE) { |
740 | 723 | $this->error_checking = 'none'; |
741 | - } |
|
742 | - else { |
|
724 | + } else { |
|
743 | 725 | $this->error_checking = $error_checking; |
744 | 726 | } |
745 | 727 | if ($this->error_checking != 'strict') { |
@@ -780,8 +762,7 @@ discard block |
||
780 | 762 | if ($namespace->prefix != 'xml' && $namespace->nodeValue != 'http://www.w3.org/XML/1998/namespace') { |
781 | 763 | $this->registerNamespace($namespace->prefix, $namespace->nodeValue); |
782 | 764 | } |
783 | - } |
|
784 | - else { |
|
765 | + } else { |
|
785 | 766 | $this->default_ns = $namespace->nodeValue; |
786 | 767 | if (is_string($auto_register_namespaces)) { |
787 | 768 | $this->registerNamespace($auto_register_namespaces, $namespace->nodeValue); |
@@ -812,8 +793,7 @@ discard block |
||
812 | 793 | $this->registerNamespace($tagname, $attr->value); |
813 | 794 | } |
814 | 795 | } |
815 | - } |
|
816 | - else if (substr($attr->name,0,6) == 'xmlns:') { |
|
796 | + } else if (substr($attr->name,0,6) == 'xmlns:') { |
|
817 | 797 | $prefix = substr($attr->name,6); |
818 | 798 | $this->registerNamespace($prefix, $attr->value); |
819 | 799 | } |
@@ -852,12 +832,10 @@ discard block |
||
852 | 832 | } |
853 | 833 | $context = $this->importNode($context->documentElement, TRUE); |
854 | 834 | return; |
855 | - } |
|
856 | - else if (is_a($context, 'DOMDocument')) { |
|
835 | + } else if (is_a($context, 'DOMDocument')) { |
|
857 | 836 | $context = $this->importNode($context->documentElement, TRUE); |
858 | 837 | return; |
859 | - } |
|
860 | - else { |
|
838 | + } else { |
|
861 | 839 | $context = $this->importNode($context, TRUE); |
862 | 840 | return; |
863 | 841 | } |