@@ -24,11 +24,9 @@ discard block |
||
24 | 24 | public function __get ($prop) { |
25 | 25 | if ($prop == 'length') { |
26 | 26 | return $this->length; |
27 | - } |
|
28 | - else if ($prop == 'dom') { |
|
27 | + } else if ($prop == 'dom') { |
|
29 | 28 | return $this->dom; |
30 | - } |
|
31 | - else { |
|
29 | + } else { |
|
32 | 30 | return null; |
33 | 31 | } |
34 | 32 | } |
@@ -56,8 +54,9 @@ discard block |
||
56 | 54 | public function item($index) { |
57 | 55 | if (isset($this->array[$index])) { |
58 | 56 | return $this->array[$index]; |
57 | + } else { |
|
58 | + return FALSE; |
|
59 | 59 | } |
60 | - else return FALSE; |
|
61 | 60 | } |
62 | 61 | |
63 | 62 | public function count() { |
@@ -41,23 +41,19 @@ discard block |
||
41 | 41 | if (is_object($xml)) { |
42 | 42 | if (is_a($xml, 'DOMElement')) { |
43 | 43 | $this->appendChild($this->importNode($xml, true)); |
44 | - } |
|
45 | - elseif (is_a($xml, 'BetterDOMDocument\DOMDoc')) { |
|
44 | + } elseif (is_a($xml, 'BetterDOMDocument\DOMDoc')) { |
|
46 | 45 | if ($xml->documentElement) { |
47 | 46 | $this->appendChild($this->importNode($xml->documentElement, true)); |
48 | 47 | } |
49 | 48 | $this->ns = $xml->ns; |
50 | - } |
|
51 | - elseif (is_a($xml, 'DOMDocument')) { |
|
49 | + } elseif (is_a($xml, 'DOMDocument')) { |
|
52 | 50 | if ($xml->documentElement) { |
53 | 51 | $this->appendChild($this->importNode($xml->documentElement, true)); |
54 | 52 | } |
55 | - } |
|
56 | - elseif (method_exists($xml, '__toString')) { |
|
53 | + } elseif (method_exists($xml, '__toString')) { |
|
57 | 54 | $this->loadFromString($xml->__toString()); |
58 | 55 | } |
59 | - } |
|
60 | - elseif (is_string($xml) && !empty($xml)) { |
|
56 | + } elseif (is_string($xml) && !empty($xml)) { |
|
61 | 57 | $this->loadFromString($xml); |
62 | 58 | } |
63 | 59 | |
@@ -113,8 +109,7 @@ discard block |
||
113 | 109 | public function lookupURL($prefix) { |
114 | 110 | if (isset($this->ns[$prefix])) { |
115 | 111 | return $this->ns[$prefix]; |
116 | - } |
|
117 | - else { |
|
112 | + } else { |
|
118 | 113 | return FALSE; |
119 | 114 | } |
120 | 115 | } |
@@ -148,15 +143,13 @@ discard block |
||
148 | 143 | |
149 | 144 | if ($context) { |
150 | 145 | $result = $xob->query($xpath, $context); |
151 | - } |
|
152 | - else { |
|
146 | + } else { |
|
153 | 147 | $result = $xob->query($xpath); |
154 | 148 | } |
155 | 149 | |
156 | 150 | if ($result) { |
157 | 151 | return new DOMList($result, $this); |
158 | - } |
|
159 | - else { |
|
152 | + } else { |
|
160 | 153 | return FALSE; |
161 | 154 | } |
162 | 155 | } |
@@ -180,8 +173,7 @@ discard block |
||
180 | 173 | |
181 | 174 | if (empty($result) || !count($result)) { |
182 | 175 | return FALSE; |
183 | - } |
|
184 | - else { |
|
176 | + } else { |
|
185 | 177 | return $result->item(0); |
186 | 178 | } |
187 | 179 | } |
@@ -260,13 +252,11 @@ discard block |
||
260 | 252 | if ($context->hasChildNodes()) { |
261 | 253 | if ($context->childNodes->length == 1 && $context->firstChild->nodeType == XML_TEXT_NODE) { |
262 | 254 | $array['#text'] = $context->firstChild->nodeValue; |
263 | - } |
|
264 | - else { |
|
255 | + } else { |
|
265 | 256 | foreach ($context->childNodes as $childNode) { |
266 | 257 | if ($childNode->nodeType == XML_ELEMENT_NODE) { |
267 | 258 | $array[$childNode->nodeName][] = $this->getArray($raw, $childNode); |
268 | - } |
|
269 | - elseif ($childNode->nodeType == XML_CDATA_SECTION_NODE) { |
|
259 | + } elseif ($childNode->nodeType == XML_CDATA_SECTION_NODE) { |
|
270 | 260 | $array['#text'] = $childNode->textContent; |
271 | 261 | } |
272 | 262 | } |
@@ -298,8 +288,7 @@ discard block |
||
298 | 288 | $matches = array(); |
299 | 289 | if (preg_match($pattern, $this->saveXML($context), $matches)) { |
300 | 290 | return $matches[1]; |
301 | - } |
|
302 | - else { |
|
291 | + } else { |
|
303 | 292 | return ''; |
304 | 293 | } |
305 | 294 | } |
@@ -445,8 +434,7 @@ discard block |
||
445 | 434 | if ($context->nextSibling) { |
446 | 435 | // $context has an immediate sibling : insert newnode before this one |
447 | 436 | return $context->parentNode->insertBefore($newnode, $context->nextSibling); |
448 | - } |
|
449 | - else { |
|
437 | + } else { |
|
450 | 438 | return $context->parentNode->appendChild($newnode); |
451 | 439 | } |
452 | 440 | } |
@@ -512,11 +500,9 @@ discard block |
||
512 | 500 | foreach($node as $item) { |
513 | 501 | $this->remove($item); |
514 | 502 | } |
515 | - } |
|
516 | - else if (get_class($node) == 'DOMNodeList') { |
|
503 | + } else if (get_class($node) == 'DOMNodeList') { |
|
517 | 504 | $this->remove(new DOMList($node, $this)); |
518 | - } |
|
519 | - else { |
|
505 | + } else { |
|
520 | 506 | $parent = $node->parentNode; |
521 | 507 | $parent->removeChild($node); |
522 | 508 | } |
@@ -538,8 +524,7 @@ discard block |
||
538 | 524 | public function tranform($xsl, $context = NULL) { |
539 | 525 | if (!$context) { |
540 | 526 | $doc = $this; |
541 | - } |
|
542 | - else { |
|
527 | + } else { |
|
543 | 528 | if (is_string($context)) { |
544 | 529 | $context = $this->xpathSingle($context); |
545 | 530 | } |
@@ -590,8 +575,7 @@ discard block |
||
590 | 575 | |
591 | 576 | $transformed = $this->tranform($xsl, $node); |
592 | 577 | return $this->replace($node, $transformed->documentElement); |
593 | - } |
|
594 | - else { |
|
578 | + } else { |
|
595 | 579 | // @@TODO: Report the correct calling file and number |
596 | 580 | throw new \Exception("Changing the namespace of a " . get_class($node) . " is not supported"); |
597 | 581 | } |
@@ -676,14 +660,12 @@ discard block |
||
676 | 660 | // Add in xlink options |
677 | 661 | if ($options['xlink'] === TRUE) { |
678 | 662 | $options['xlink'] = "@xlink:type = 'simple'"; |
679 | - } |
|
680 | - else if (empty($options['xlink'])) { |
|
663 | + } else if (empty($options['xlink'])) { |
|
681 | 664 | $options['xlink'] = "false()"; |
682 | 665 | } |
683 | 666 | $xslOptions = str_replace("||xlink||", $options['xlink'], $xslOptions); |
684 | 667 | $transformed = $this->tranform($xslOptions, $context); |
685 | - } |
|
686 | - else { |
|
668 | + } else { |
|
687 | 669 | $transformed = $this->tranform($xslSimple, $context); |
688 | 670 | } |
689 | 671 | |
@@ -719,8 +701,7 @@ discard block |
||
719 | 701 | // Find any of these elements that have no child nodes and are therefore candidates for self-closing, replace them with a self-closed version. |
720 | 702 | $pattern = '<(area|base|br|col|command|embed|hr|img|input|keygen|link|meta|param|source|track|wbr)(\b[^<]*)><\/\1>'; |
721 | 703 | return preg_replace('/' . $pattern . '/', '<$1$2/>', $output); |
722 | - } |
|
723 | - else { |
|
704 | + } else { |
|
724 | 705 | return $this->saveXML($context, LIBXML_NOEMPTYTAG); |
725 | 706 | } |
726 | 707 | } |
@@ -749,8 +730,7 @@ discard block |
||
749 | 730 | // Check up error-checking |
750 | 731 | if ($error_checking == FALSE) { |
751 | 732 | $this->error_checking = 'none'; |
752 | - } |
|
753 | - else { |
|
733 | + } else { |
|
754 | 734 | $this->error_checking = $error_checking; |
755 | 735 | } |
756 | 736 | if ($this->error_checking != 'strict') { |
@@ -810,8 +790,7 @@ discard block |
||
810 | 790 | if ($namespace->prefix != 'xml' && $namespace->nodeValue != 'http://www.w3.org/XML/1998/namespace') { |
811 | 791 | $this->registerNamespace($namespace->prefix, $namespace->nodeValue); |
812 | 792 | } |
813 | - } |
|
814 | - else { |
|
793 | + } else { |
|
815 | 794 | $this->default_ns = $namespace->nodeValue; |
816 | 795 | if (is_string($auto_register_namespaces)) { |
817 | 796 | $this->registerNamespace($auto_register_namespaces, $namespace->nodeValue); |
@@ -842,8 +821,7 @@ discard block |
||
842 | 821 | $this->registerNamespace($tagname, $attr->value); |
843 | 822 | } |
844 | 823 | } |
845 | - } |
|
846 | - else if (substr($attr->name,0,6) == 'xmlns:') { |
|
824 | + } else if (substr($attr->name,0,6) == 'xmlns:') { |
|
847 | 825 | $prefix = substr($attr->name,6); |
848 | 826 | $this->registerNamespace($prefix, $attr->value); |
849 | 827 | } |
@@ -882,12 +860,10 @@ discard block |
||
882 | 860 | } |
883 | 861 | $context = $this->importNode($context->documentElement, TRUE); |
884 | 862 | return; |
885 | - } |
|
886 | - else if (is_a($context, 'DOMDocument')) { |
|
863 | + } else if (is_a($context, 'DOMDocument')) { |
|
887 | 864 | $context = $this->importNode($context->documentElement, TRUE); |
888 | 865 | return; |
889 | - } |
|
890 | - else { |
|
866 | + } else { |
|
891 | 867 | $context = $this->importNode($context, TRUE); |
892 | 868 | return; |
893 | 869 | } |
@@ -899,8 +875,7 @@ discard block |
||
899 | 875 | protected function loadFromString($xml) { |
900 | 876 | if ($this->error_checking == 'none') { |
901 | 877 | @$this->loadXML($xml, LIBXML_COMPACT); |
902 | - } |
|
903 | - else if (!$this->loadXML($xml, LIBXML_COMPACT)) { |
|
878 | + } else if (!$this->loadXML($xml, LIBXML_COMPACT)) { |
|
904 | 879 | trigger_error('BetterDOMDocument\DOMDoc: Could not load: ' . htmlspecialchars($xml), E_USER_WARNING); |
905 | 880 | } |
906 | 881 | } |