@@ -46,8 +46,7 @@ discard block |
||
46 | 46 | { |
47 | 47 | $am=self::$_application->getAssetManager(); |
48 | 48 | $url=$am->publishFilePath(self::getPathOfNamespace('System.'.$logoName,'.gif')); |
49 | - } |
|
50 | - else |
|
49 | + } else |
|
51 | 50 | $url='http://pradosoft.github.io/docs/'.$logoName.'.gif'; |
52 | 51 | return '<a title="Powered by PRADO" href="https://github.com/pradosoft/prado" target="_blank"><img src="'.$url.'" style="border-width:0px;" alt="Powered by PRADO" /></a>'; |
53 | 52 | } |
@@ -71,8 +70,7 @@ discard block |
||
71 | 70 | if(self::$_application!==null && ($errorHandler=self::$_application->getErrorHandler())!==null) |
72 | 71 | { |
73 | 72 | $errorHandler->handleError(null,$exception); |
74 | - } |
|
75 | - else |
|
73 | + } else |
|
76 | 74 | { |
77 | 75 | echo $exception; |
78 | 76 | } |
@@ -126,8 +124,7 @@ discard block |
||
126 | 124 | return $component; |
127 | 125 | break; |
128 | 126 | } |
129 | - } |
|
130 | - else |
|
127 | + } else |
|
131 | 128 | return new $type; |
132 | 129 | } |
133 | 130 | public static function using($namespace,$checkClassExistence=true) |
@@ -138,31 +135,27 @@ discard block |
||
138 | 135 | try |
139 | 136 | { |
140 | 137 | include_once($namespace.self::CLASS_FILE_EXT); |
141 | - } |
|
142 | - catch(Exception $e) |
|
138 | + } catch(Exception $e) |
|
143 | 139 | { |
144 | 140 | if($checkClassExistence && !class_exists($namespace,false)) |
145 | 141 | throw new TInvalidOperationException('prado_component_unknown',$namespace,$e->getMessage()); |
146 | 142 | else |
147 | 143 | throw $e; |
148 | 144 | } |
149 | - } |
|
150 | - else if(($path=self::getPathOfNamespace($namespace,self::CLASS_FILE_EXT))!==null) |
|
145 | + } else if(($path=self::getPathOfNamespace($namespace,self::CLASS_FILE_EXT))!==null) |
|
151 | 146 | { |
152 | 147 | $className=substr($namespace,$pos+1); |
153 | 148 | if($className==='*') { |
154 | 149 | self::$_usings[$namespace]=$path; |
155 | 150 | set_include_path(get_include_path().PATH_SEPARATOR.$path); |
156 | - } |
|
157 | - else { |
|
151 | + } else { |
|
158 | 152 | self::$_usings[$namespace]=$path; |
159 | 153 | if(!$checkClassExistence || !class_exists($className,false)) |
160 | 154 | { |
161 | 155 | try |
162 | 156 | { |
163 | 157 | include_once($path); |
164 | - } |
|
165 | - catch(Exception $e) |
|
158 | + } catch(Exception $e) |
|
166 | 159 | { |
167 | 160 | if($checkClassExistence && !class_exists($className,false)) |
168 | 161 | throw new TInvalidOperationException('prado_component_unknown',$className,$e->getMessage()); |
@@ -171,8 +164,7 @@ discard block |
||
171 | 164 | } |
172 | 165 | } |
173 | 166 | } |
174 | - } |
|
175 | - else |
|
167 | + } else |
|
176 | 168 | throw new TInvalidDataValueException('prado_using_invalid',$namespace); |
177 | 169 | } |
178 | 170 | public static function getPathOfNamespace($namespace, $ext='') |
@@ -208,8 +200,7 @@ discard block |
||
208 | 200 | self::$_aliases[$alias]=$rp; |
209 | 201 | else |
210 | 202 | throw new TInvalidDataValueException('prado_aliasname_invalid',$alias); |
211 | - } |
|
212 | - else |
|
203 | + } else |
|
213 | 204 | throw new TInvalidDataValueException('prado_alias_invalid',$alias,$path); |
214 | 205 | } |
215 | 206 | public static function fatalError($msg) |
@@ -246,8 +237,7 @@ discard block |
||
246 | 237 | echo "'". substr($str, 0, 70) . "...'"; |
247 | 238 | else |
248 | 239 | echo "'" . $str . "'"; |
249 | - } |
|
250 | - else if (is_int($item) || is_float($item)) |
|
240 | + } else if (is_int($item) || is_float($item)) |
|
251 | 241 | echo $item; |
252 | 242 | else if (is_object($item)) |
253 | 243 | echo get_class($item); |
@@ -316,8 +306,7 @@ discard block |
||
316 | 306 | if(isset($trace[0]['file']) && isset($trace[0]['line'])) |
317 | 307 | $msg.=" (line {$trace[0]['line']}, {$trace[0]['file']})"; |
318 | 308 | $level=TLogger::DEBUG; |
319 | - } |
|
320 | - else |
|
309 | + } else |
|
321 | 310 | $level=TLogger::INFO; |
322 | 311 | self::log($msg,$level,$category,$ctl); |
323 | 312 | } |
@@ -622,8 +611,7 @@ discard block |
||
622 | 611 | echo "<body><h1>Recursive Error</h1>\n"; |
623 | 612 | echo "<pre>".$exception->__toString()."</pre>\n"; |
624 | 613 | echo "</body></html>"; |
625 | - } |
|
626 | - else |
|
614 | + } else |
|
627 | 615 | { |
628 | 616 | error_log("Error happened while processing an existing error:\n".$exception->__toString()); |
629 | 617 | header('HTTP/1.0 500 Internal Error'); |
@@ -645,15 +633,13 @@ discard block |
||
645 | 633 | if($fileName==='') |
646 | 634 | $fileName='---embedded template---'; |
647 | 635 | $errorLine=$exception->getLineNumber(); |
648 | - } |
|
649 | - else |
|
636 | + } else |
|
650 | 637 | { |
651 | 638 | if(($trace=$this->getExactTrace($exception))!==null) |
652 | 639 | { |
653 | 640 | $fileName=$trace['file']; |
654 | 641 | $errorLine=$trace['line']; |
655 | - } |
|
656 | - else |
|
642 | + } else |
|
657 | 643 | { |
658 | 644 | $fileName=$exception->getFile(); |
659 | 645 | $errorLine=$exception->getLine(); |
@@ -712,8 +698,7 @@ discard block |
||
712 | 698 | $result=$trace[0]; |
713 | 699 | elseif(isset($trace[1])) |
714 | 700 | $result=$trace[1]; |
715 | - } |
|
716 | - else if($exception instanceof TInvalidOperationException) |
|
701 | + } else if($exception instanceof TInvalidOperationException) |
|
717 | 702 | { |
718 | 703 | if(($result=$this->getPropertyAccessTrace($trace,'__get'))===null) |
719 | 704 | $result=$this->getPropertyAccessTrace($trace,'__set'); |
@@ -745,8 +730,7 @@ discard block |
||
745 | 730 | { |
746 | 731 | $line=htmlspecialchars(sprintf("%04d: %s",$i+1,str_replace("\t",' ',$lines[$i]))); |
747 | 732 | $source.="<div class=\"error\">".$line."</div>"; |
748 | - } |
|
749 | - else |
|
733 | + } else |
|
750 | 734 | $source.=htmlspecialchars(sprintf("%04d: %s",$i+1,str_replace("\t",' ',$lines[$i]))); |
751 | 735 | } |
752 | 736 | return $source; |
@@ -810,11 +794,9 @@ discard block |
||
810 | 794 | { |
811 | 795 | array_splice($this->_d,$index,0,array($item)); |
812 | 796 | $this->_c++; |
813 | - } |
|
814 | - else |
|
797 | + } else |
|
815 | 798 | throw new TInvalidDataValueException('list_index_invalid',$index); |
816 | - } |
|
817 | - else |
|
799 | + } else |
|
818 | 800 | throw new TInvalidOperationException('list_readonly',get_class($this)); |
819 | 801 | } |
820 | 802 | public function remove($item) |
@@ -825,11 +807,9 @@ discard block |
||
825 | 807 | { |
826 | 808 | $this->removeAt($index); |
827 | 809 | return $index; |
828 | - } |
|
829 | - else |
|
810 | + } else |
|
830 | 811 | throw new TInvalidDataValueException('list_item_inexistent'); |
831 | - } |
|
832 | - else |
|
812 | + } else |
|
833 | 813 | throw new TInvalidOperationException('list_readonly',get_class($this)); |
834 | 814 | } |
835 | 815 | public function removeAt($index) |
@@ -847,11 +827,9 @@ discard block |
||
847 | 827 | array_splice($this->_d,$index,1); |
848 | 828 | return $item; |
849 | 829 | } |
850 | - } |
|
851 | - else |
|
830 | + } else |
|
852 | 831 | throw new TInvalidDataValueException('list_index_invalid',$index); |
853 | - } |
|
854 | - else |
|
832 | + } else |
|
855 | 833 | throw new TInvalidOperationException('list_readonly',get_class($this)); |
856 | 834 | } |
857 | 835 | public function clear() |
@@ -878,8 +856,7 @@ discard block |
||
878 | 856 | throw new TInvalidDataValueException('list_item_inexistent'); |
879 | 857 | $this->insertAt($index, $item); |
880 | 858 | return $index; |
881 | - } |
|
882 | - else |
|
859 | + } else |
|
883 | 860 | throw new TInvalidOperationException('list_readonly',get_class($this)); |
884 | 861 | } |
885 | 862 | public function insertAfter($baseitem, $item) |
@@ -890,8 +867,7 @@ discard block |
||
890 | 867 | throw new TInvalidDataValueException('list_item_inexistent'); |
891 | 868 | $this->insertAt($index + 1, $item); |
892 | 869 | return $index + 1; |
893 | - } |
|
894 | - else |
|
870 | + } else |
|
895 | 871 | throw new TInvalidOperationException('list_readonly',get_class($this)); |
896 | 872 | } |
897 | 873 | public function toArray() |
@@ -906,8 +882,7 @@ discard block |
||
906 | 882 | $this->clear(); |
907 | 883 | foreach($data as $item) |
908 | 884 | $this->add($item); |
909 | - } |
|
910 | - else if($data!==null) |
|
885 | + } else if($data!==null) |
|
911 | 886 | throw new TInvalidDataTypeException('list_data_not_iterable'); |
912 | 887 | } |
913 | 888 | public function mergeWith($data) |
@@ -916,8 +891,7 @@ discard block |
||
916 | 891 | { |
917 | 892 | foreach($data as $item) |
918 | 893 | $this->add($item); |
919 | - } |
|
920 | - else if($data!==null) |
|
894 | + } else if($data!==null) |
|
921 | 895 | throw new TInvalidDataTypeException('list_data_not_iterable'); |
922 | 896 | } |
923 | 897 | public function offsetExists($offset) |
@@ -1131,8 +1105,7 @@ discard block |
||
1131 | 1105 | { |
1132 | 1106 | if(($this->_recursiveLevel<0 || $level<$this->_recursiveLevel) && $this->validateDirectory($path)) |
1133 | 1107 | $timestamps=array_merge($this->generateTimestamps($path,$level+1)); |
1134 | - } |
|
1135 | - else if($this->validateFile($path)) |
|
1108 | + } else if($this->validateFile($path)) |
|
1136 | 1109 | $timestamps[$path]=filemtime($path); |
1137 | 1110 | } |
1138 | 1111 | closedir($dir); |
@@ -1393,8 +1366,7 @@ discard block |
||
1393 | 1366 | } |
1394 | 1367 | $this->removeAtIndexInPriority($p[1],$p[0]); |
1395 | 1368 | return $p[2]; |
1396 | - } |
|
1397 | - else |
|
1369 | + } else |
|
1398 | 1370 | throw new TInvalidDataValueException('list_item_inexistent'); |
1399 | 1371 | } |
1400 | 1372 | public function removeAt($index) |
@@ -1552,13 +1524,11 @@ discard block |
||
1552 | 1524 | foreach($data->itemsAtPriority($priority) as $index=>$item) |
1553 | 1525 | $this->insertAtIndexInPriority($item,false,$priority); |
1554 | 1526 | } |
1555 | - } |
|
1556 | - else if(is_array($data)||$data instanceof Traversable) |
|
1527 | + } else if(is_array($data)||$data instanceof Traversable) |
|
1557 | 1528 | { |
1558 | 1529 | foreach($data as $priority=>$item) |
1559 | 1530 | $this->add($item); |
1560 | - } |
|
1561 | - else if($data!==null) |
|
1531 | + } else if($data!==null) |
|
1562 | 1532 | throw new TInvalidDataTypeException('map_data_not_iterable'); |
1563 | 1533 | } |
1564 | 1534 | public function offsetExists($offset) |
@@ -1649,11 +1619,9 @@ discard block |
||
1649 | 1619 | $value=$this->_d[$key]; |
1650 | 1620 | unset($this->_d[$key]); |
1651 | 1621 | return $value; |
1652 | - } |
|
1653 | - else |
|
1622 | + } else |
|
1654 | 1623 | return null; |
1655 | - } |
|
1656 | - else |
|
1624 | + } else |
|
1657 | 1625 | throw new TInvalidOperationException('map_readonly',get_class($this)); |
1658 | 1626 | } |
1659 | 1627 | public function clear() |
@@ -1677,8 +1645,7 @@ discard block |
||
1677 | 1645 | $this->clear(); |
1678 | 1646 | foreach($data as $key=>$value) |
1679 | 1647 | $this->add($key,$value); |
1680 | - } |
|
1681 | - else if($data!==null) |
|
1648 | + } else if($data!==null) |
|
1682 | 1649 | throw new TInvalidDataTypeException('map_data_not_iterable'); |
1683 | 1650 | } |
1684 | 1651 | public function mergeWith($data) |
@@ -1687,8 +1654,7 @@ discard block |
||
1687 | 1654 | { |
1688 | 1655 | foreach($data as $key=>$value) |
1689 | 1656 | $this->add($key,$value); |
1690 | - } |
|
1691 | - else if($data!==null) |
|
1657 | + } else if($data!==null) |
|
1692 | 1658 | throw new TInvalidDataTypeException('map_data_not_iterable'); |
1693 | 1659 | } |
1694 | 1660 | public function offsetExists($offset) |
@@ -1862,13 +1828,11 @@ discard block |
||
1862 | 1828 | if(!isset($this->_d[$priority])) { |
1863 | 1829 | $this->_d[$priority]=array($key=>$value); |
1864 | 1830 | $this->_o=false; |
1865 | - } |
|
1866 | - else |
|
1831 | + } else |
|
1867 | 1832 | $this->_d[$priority][$key]=$value; |
1868 | 1833 | $this->_c++; |
1869 | 1834 | $this->_fd=null; |
1870 | - } |
|
1871 | - else |
|
1835 | + } else |
|
1872 | 1836 | throw new TInvalidOperationException('map_readonly',get_class($this)); |
1873 | 1837 | return $priority; |
1874 | 1838 | } |
@@ -1896,8 +1860,7 @@ discard block |
||
1896 | 1860 | return $value; |
1897 | 1861 | } |
1898 | 1862 | return null; |
1899 | - } |
|
1900 | - else |
|
1863 | + } else |
|
1901 | 1864 | { |
1902 | 1865 | $priority=(string)round(TPropertyValue::ensureFloat($priority),$this->_p); |
1903 | 1866 | if(isset($this->_d[$priority])&&(isset($this->_d[$priority][$key])||array_key_exists($key,$this->_d[$priority]))) |
@@ -1911,12 +1874,10 @@ discard block |
||
1911 | 1874 | } |
1912 | 1875 | $this->_fd=null; |
1913 | 1876 | return $value; |
1914 | - } |
|
1915 | - else |
|
1877 | + } else |
|
1916 | 1878 | return null; |
1917 | 1879 | } |
1918 | - } |
|
1919 | - else |
|
1880 | + } else |
|
1920 | 1881 | throw new TInvalidOperationException('map_readonly',get_class($this)); |
1921 | 1882 | } |
1922 | 1883 | public function clear() |
@@ -1969,15 +1930,13 @@ discard block |
||
1969 | 1930 | $this->add($key,$value,$priority); |
1970 | 1931 | } |
1971 | 1932 | } |
1972 | - } |
|
1973 | - else if(is_array($data)||$data instanceof Traversable) |
|
1933 | + } else if(is_array($data)||$data instanceof Traversable) |
|
1974 | 1934 | { |
1975 | 1935 | if($this->getCount()>0) |
1976 | 1936 | $this->clear(); |
1977 | 1937 | foreach($data as $key=>$value) |
1978 | 1938 | $this->add($key,$value); |
1979 | - } |
|
1980 | - else if($data!==null) |
|
1939 | + } else if($data!==null) |
|
1981 | 1940 | throw new TInvalidDataTypeException('map_data_not_iterable'); |
1982 | 1941 | } |
1983 | 1942 | public function mergeWith($data) |
@@ -1989,13 +1948,11 @@ discard block |
||
1989 | 1948 | foreach($data->itemsAtPriority($priority) as $key => $value) |
1990 | 1949 | $this->add($key,$value,$priority); |
1991 | 1950 | } |
1992 | - } |
|
1993 | - else if(is_array($data)||$data instanceof Traversable) |
|
1951 | + } else if(is_array($data)||$data instanceof Traversable) |
|
1994 | 1952 | { |
1995 | 1953 | foreach($data as $key=>$value) |
1996 | 1954 | $this->add($key,$value); |
1997 | - } |
|
1998 | - else if($data!==null) |
|
1955 | + } else if($data!==null) |
|
1999 | 1956 | throw new TInvalidDataTypeException('map_data_not_iterable'); |
2000 | 1957 | } |
2001 | 1958 | public function offsetExists($offset) |
@@ -2038,8 +1995,7 @@ discard block |
||
2038 | 1995 | $this->_d[]=$item; |
2039 | 1996 | ++$this->_c; |
2040 | 1997 | } |
2041 | - } |
|
2042 | - else if($data!==null) |
|
1998 | + } else if($data!==null) |
|
2043 | 1999 | throw new TInvalidDataTypeException('stack_data_not_iterable'); |
2044 | 2000 | } |
2045 | 2001 | public function clear() |
@@ -2224,13 +2180,11 @@ discard block |
||
2224 | 2180 | $str.=$element->toString($indent+1)."\n"; |
2225 | 2181 | $str.=$prefix."</{$this->_tagName}>"; |
2226 | 2182 | return $str; |
2227 | - } |
|
2228 | - else if(($value=$this->getValue())!=='') |
|
2183 | + } else if(($value=$this->getValue())!=='') |
|
2229 | 2184 | { |
2230 | 2185 | $value=$this->xmlEncode($value); |
2231 | 2186 | return $prefix."<{$this->_tagName}$attr>$value</{$this->_tagName}>"; |
2232 | - } |
|
2233 | - else |
|
2187 | + } else |
|
2234 | 2188 | return $prefix."<{$this->_tagName}$attr />"; |
2235 | 2189 | } |
2236 | 2190 | public function __toString() |
@@ -2327,8 +2281,7 @@ discard block |
||
2327 | 2281 | { |
2328 | 2282 | fwrite($fw,$this->saveToString()); |
2329 | 2283 | fclose($fw); |
2330 | - } |
|
2331 | - else |
|
2284 | + } else |
|
2332 | 2285 | throw new TIOException('xmldocument_file_write_failed',$file); |
2333 | 2286 | } |
2334 | 2287 | public function saveToString() |
@@ -2374,8 +2327,7 @@ discard block |
||
2374 | 2327 | if($item->getParent()!==null) |
2375 | 2328 | $item->getParent()->getElements()->remove($item); |
2376 | 2329 | $item->setParent($this->_o); |
2377 | - } |
|
2378 | - else |
|
2330 | + } else |
|
2379 | 2331 | throw new TInvalidDataTypeException('xmlelementlist_xmlelement_required'); |
2380 | 2332 | } |
2381 | 2333 | public function removeAt($index) |
@@ -2419,8 +2371,7 @@ discard block |
||
2419 | 2371 | { |
2420 | 2372 | $this->_everyone=true; |
2421 | 2373 | break; |
2422 | - } |
|
2423 | - else if($user==='?') |
|
2374 | + } else if($user==='?') |
|
2424 | 2375 | $this->_guest=true; |
2425 | 2376 | else if($user==='@') |
2426 | 2377 | $this->_authenticated=true; |
@@ -2530,8 +2481,7 @@ discard block |
||
2530 | 2481 | return ($decision>0); |
2531 | 2482 | } |
2532 | 2483 | return true; |
2533 | - } |
|
2534 | - else |
|
2484 | + } else |
|
2535 | 2485 | return false; |
2536 | 2486 | } |
2537 | 2487 | public function insertAt($index,$item) |
@@ -2661,8 +2611,7 @@ discard block |
||
2661 | 2611 | if($module===false) |
2662 | 2612 | throw new TNotSupportedException('securitymanager_mcryptextension_initfailed'); |
2663 | 2613 | return $module; |
2664 | - } |
|
2665 | - else |
|
2614 | + } else |
|
2666 | 2615 | throw new TNotSupportedException('securitymanager_mcryptextension_required'); |
2667 | 2616 | } |
2668 | 2617 | public function hashData($data) |
@@ -2802,8 +2751,7 @@ discard block |
||
2802 | 2751 | } |
2803 | 2752 | } |
2804 | 2753 | return '{'.$results.'}'; |
2805 | - } |
|
2806 | - else |
|
2754 | + } else |
|
2807 | 2755 | { |
2808 | 2756 | foreach($value as $v) |
2809 | 2757 | { |
@@ -2816,8 +2764,7 @@ discard block |
||
2816 | 2764 | } |
2817 | 2765 | return '['.$results.']'; |
2818 | 2766 | } |
2819 | - } |
|
2820 | - else if(is_integer($value)) |
|
2767 | + } else if(is_integer($value)) |
|
2821 | 2768 | return "$value"; |
2822 | 2769 | else if(is_float($value)) |
2823 | 2770 | { |
@@ -2837,8 +2784,7 @@ discard block |
||
2837 | 2784 | return str_replace($locale['decimal_point'], '.', "$value"); |
2838 | 2785 | break; |
2839 | 2786 | } |
2840 | - } |
|
2841 | - else if(is_object($value)) |
|
2787 | + } else if(is_object($value)) |
|
2842 | 2788 | if ($value instanceof TJavaScriptLiteral) |
2843 | 2789 | return $value->toJavaScriptLiteral(); |
2844 | 2790 | else |
@@ -2925,12 +2871,10 @@ discard block |
||
2925 | 2871 | $name=urlencode($name.'[]'); |
2926 | 2872 | foreach($value as $v) |
2927 | 2873 | $url.=$amp.$name.'='.urlencode($v); |
2928 | - } |
|
2929 | - else |
|
2874 | + } else |
|
2930 | 2875 | $url.=$amp.urlencode($name).'='.urlencode($value); |
2931 | 2876 | } |
2932 | - } |
|
2933 | - else |
|
2877 | + } else |
|
2934 | 2878 | { |
2935 | 2879 | foreach($getItems as $name=>$value) |
2936 | 2880 | { |
@@ -2938,8 +2882,7 @@ discard block |
||
2938 | 2882 | { |
2939 | 2883 | foreach($value as $v) |
2940 | 2884 | $url.=$amp.$name.'[]='.$v; |
2941 | - } |
|
2942 | - else |
|
2885 | + } else |
|
2943 | 2886 | $url.=$amp.$name.'='.$value; |
2944 | 2887 | } |
2945 | 2888 | } |
@@ -2977,14 +2920,12 @@ discard block |
||
2977 | 2920 | $getVariables[substr($name,0,$pos)][]=$value; |
2978 | 2921 | else |
2979 | 2922 | $getVariables[$name]=$value; |
2980 | - } |
|
2981 | - else |
|
2923 | + } else |
|
2982 | 2924 | $getVariables[$path]=''; |
2983 | 2925 | } |
2984 | 2926 | } |
2985 | 2927 | return $getVariables; |
2986 | - } |
|
2987 | - else |
|
2928 | + } else |
|
2988 | 2929 | return array(); |
2989 | 2930 | } |
2990 | 2931 | } |
@@ -3068,8 +3009,7 @@ discard block |
||
3068 | 3009 | $port=$_SERVER['SERVER_PORT']; |
3069 | 3010 | if(($port!=80 && !$secure) || ($port!=443 && $secure)) |
3070 | 3011 | $url.=':'.$port; |
3071 | - } |
|
3072 | - else |
|
3012 | + } else |
|
3073 | 3013 | $url.=$_SERVER['HTTP_HOST']; |
3074 | 3014 | $url.=$this->getRequestUri(); |
3075 | 3015 | $this->_url=new TUri($url); |
@@ -3139,8 +3079,7 @@ discard block |
||
3139 | 3079 | { |
3140 | 3080 | $this->_urlManager=new TUrlManager; |
3141 | 3081 | $this->_urlManager->init(null); |
3142 | - } |
|
3143 | - else |
|
3082 | + } else |
|
3144 | 3083 | { |
3145 | 3084 | $this->_urlManager=$this->getApplication()->getModule($this->_urlManagerID); |
3146 | 3085 | if($this->_urlManager===null) |
@@ -3205,8 +3144,7 @@ discard block |
||
3205 | 3144 | static $result; |
3206 | 3145 | if($result === null && function_exists('apache_request_headers')) { |
3207 | 3146 | $result = apache_request_headers(); |
3208 | - } |
|
3209 | - elseif($result === null) { |
|
3147 | + } elseif($result === null) { |
|
3210 | 3148 | $result = array(); |
3211 | 3149 | foreach($_SERVER as $key=>$value) { |
3212 | 3150 | if(strncasecmp($key, 'HTTP_', 5) !== 0) continue; |
@@ -3261,8 +3199,7 @@ discard block |
||
3261 | 3199 | try |
3262 | 3200 | { |
3263 | 3201 | return get_browser(); |
3264 | - } |
|
3265 | - catch(TPhpErrorException $e) |
|
3202 | + } catch(TPhpErrorException $e) |
|
3266 | 3203 | { |
3267 | 3204 | throw new TConfigurationException('httprequest_browscap_required'); |
3268 | 3205 | } |
@@ -3316,8 +3253,7 @@ discard block |
||
3316 | 3253 | if(($value=$sm->validateData($value))!==false) |
3317 | 3254 | $this->_cookies->add(new THttpCookie($key,$value)); |
3318 | 3255 | } |
3319 | - } |
|
3320 | - else |
|
3256 | + } else |
|
3321 | 3257 | { |
3322 | 3258 | foreach($_COOKIE as $key=>$value) |
3323 | 3259 | $this->_cookies->add(new THttpCookie($key,$value)); |
@@ -3420,8 +3356,7 @@ discard block |
||
3420 | 3356 | $value=$this->_items[$key]; |
3421 | 3357 | unset($this->_items[$key]); |
3422 | 3358 | return $value; |
3423 | - } |
|
3424 | - else |
|
3359 | + } else |
|
3425 | 3360 | return null; |
3426 | 3361 | } |
3427 | 3362 | public function clear() |
@@ -3468,8 +3403,7 @@ discard block |
||
3468 | 3403 | parent::insertAt($index,$item); |
3469 | 3404 | if($this->_o instanceof THttpResponse) |
3470 | 3405 | $this->_o->addCookie($item); |
3471 | - } |
|
3472 | - else |
|
3406 | + } else |
|
3473 | 3407 | throw new TInvalidDataTypeException('httpcookiecollection_httpcookie_required'); |
3474 | 3408 | } |
3475 | 3409 | public function removeAt($index) |
@@ -3599,8 +3533,7 @@ discard block |
||
3599 | 3533 | $this->_query=isset($ret['query'])?$ret['query']:''; |
3600 | 3534 | $this->_fragment=isset($ret['fragment'])?$ret['fragment']:''; |
3601 | 3535 | $this->_uri=$uri; |
3602 | - } |
|
3603 | - else |
|
3536 | + } else |
|
3604 | 3537 | { |
3605 | 3538 | throw new TInvalidDataValueException('uri_format_invalid',$uri); |
3606 | 3539 | } |
@@ -3772,7 +3705,7 @@ discard block |
||
3772 | 3705 | $status=TPropertyValue::ensureInteger($status); |
3773 | 3706 | if(isset(self::$HTTP_STATUS_CODES[$status])) { |
3774 | 3707 | $this->_reason=self::$HTTP_STATUS_CODES[$status]; |
3775 | - }else{ |
|
3708 | + } else{ |
|
3776 | 3709 | if($reason===null || $reason==='') { |
3777 | 3710 | throw new TInvalidDataValueException("response_status_reason_missing"); |
3778 | 3711 | } |
@@ -3836,8 +3769,7 @@ discard block |
||
3836 | 3769 | { |
3837 | 3770 | foreach($headers as $h) |
3838 | 3771 | header($h); |
3839 | - } |
|
3840 | - else |
|
3772 | + } else |
|
3841 | 3773 | { |
3842 | 3774 | header('Pragma: public'); |
3843 | 3775 | header('Expires: 0'); |
@@ -3900,13 +3832,11 @@ discard block |
||
3900 | 3832 | { |
3901 | 3833 | $this->_bufferOutput = false; |
3902 | 3834 | ob_end_flush(); |
3903 | - } |
|
3904 | - else |
|
3835 | + } else |
|
3905 | 3836 | ob_flush(); |
3906 | 3837 | flush(); |
3907 | 3838 | } |
3908 | - } |
|
3909 | - else |
|
3839 | + } else |
|
3910 | 3840 | flush(); |
3911 | 3841 | } |
3912 | 3842 | protected function ensureHttpHeaderSent() |
@@ -3992,8 +3922,7 @@ discard block |
||
3992 | 3922 | $cookie->getSecure(), |
3993 | 3923 | $cookie->getHttpOnly() |
3994 | 3924 | ); |
3995 | - } |
|
3996 | - else { |
|
3925 | + } else { |
|
3997 | 3926 | setcookie( |
3998 | 3927 | $cookie->getName(), |
3999 | 3928 | $cookie->getValue(), |
@@ -4173,13 +4102,11 @@ discard block |
||
4173 | 4102 | { |
4174 | 4103 | ini_set('session.use_cookies','0'); |
4175 | 4104 | ini_set('session.use_only_cookies','0'); |
4176 | - } |
|
4177 | - else if($value===THttpSessionCookieMode::Allow) |
|
4105 | + } else if($value===THttpSessionCookieMode::Allow) |
|
4178 | 4106 | { |
4179 | 4107 | ini_set('session.use_cookies','1'); |
4180 | 4108 | ini_set('session.use_only_cookies','0'); |
4181 | - } |
|
4182 | - else |
|
4109 | + } else |
|
4183 | 4110 | { |
4184 | 4111 | ini_set('session.use_cookies','1'); |
4185 | 4112 | ini_set('session.use_only_cookies','1'); |
@@ -4213,8 +4140,7 @@ discard block |
||
4213 | 4140 | { |
4214 | 4141 | ini_set('session.gc_probability',$value); |
4215 | 4142 | ini_set('session.gc_divisor','100'); |
4216 | - } |
|
4217 | - else |
|
4143 | + } else |
|
4218 | 4144 | throw new TInvalidDataValueException('httpsession_gcprobability_invalid',$value); |
4219 | 4145 | } |
4220 | 4146 | } |
@@ -4300,8 +4226,7 @@ discard block |
||
4300 | 4226 | $value=$_SESSION[$key]; |
4301 | 4227 | unset($_SESSION[$key]); |
4302 | 4228 | return $value; |
4303 | - } |
|
4304 | - else |
|
4229 | + } else |
|
4305 | 4230 | return null; |
4306 | 4231 | } |
4307 | 4232 | public function clear() |
@@ -4617,10 +4542,8 @@ discard block |
||
4617 | 4542 | return $this->_id; |
4618 | 4543 | else |
4619 | 4544 | return ($this->_uid=$prefix.self::ID_SEPARATOR.$this->_id); |
4620 | - } |
|
4621 | - else return $this->_id; |
|
4622 | - } |
|
4623 | - else |
|
4545 | + } else return $this->_id; |
|
4546 | + } else |
|
4624 | 4547 | return $this->_uid; |
4625 | 4548 | } |
4626 | 4549 | public function focus() |
@@ -4696,8 +4619,7 @@ discard block |
||
4696 | 4619 | if(!$control->getVisible(false)) |
4697 | 4620 | return false; |
4698 | 4621 | return true; |
4699 | - } |
|
4700 | - else |
|
4622 | + } else |
|
4701 | 4623 | return $this->getViewState('Visible',true); |
4702 | 4624 | } |
4703 | 4625 | public function setVisible($value) |
@@ -4712,8 +4634,7 @@ discard block |
||
4712 | 4634 | if(!$control->getViewState('Enabled',true)) |
4713 | 4635 | return false; |
4714 | 4636 | return true; |
4715 | - } |
|
4716 | - else |
|
4637 | + } else |
|
4717 | 4638 | return $this->getViewState('Enabled',true); |
4718 | 4639 | } |
4719 | 4640 | public function setEnabled($value) |
@@ -4771,8 +4692,7 @@ discard block |
||
4771 | 4692 | if($control->_flags & self::IS_DISABLE_VIEWSTATE) |
4772 | 4693 | return false; |
4773 | 4694 | return true; |
4774 | - } |
|
4775 | - else |
|
4695 | + } else |
|
4776 | 4696 | return !($this->_flags & self::IS_DISABLE_VIEWSTATE); |
4777 | 4697 | } |
4778 | 4698 | public function setEnableViewState($value) |
@@ -4810,8 +4730,7 @@ discard block |
||
4810 | 4730 | if(is_object($this->_tempState[$key]) && $this->_trackViewState) |
4811 | 4731 | $this->_viewState[$key]=$this->_tempState[$key]; |
4812 | 4732 | return $this->_tempState[$key]; |
4813 | - } |
|
4814 | - else |
|
4733 | + } else |
|
4815 | 4734 | return $defaultValue; |
4816 | 4735 | } |
4817 | 4736 | public function setViewState($key,$value,$defaultValue=null) |
@@ -4823,8 +4742,7 @@ discard block |
||
4823 | 4742 | unset($this->_viewState[$key]); |
4824 | 4743 | else |
4825 | 4744 | $this->_viewState[$key]=$value; |
4826 | - } |
|
4827 | - else |
|
4745 | + } else |
|
4828 | 4746 | { |
4829 | 4747 | unset($this->_viewState[$key]); |
4830 | 4748 | if($value===$defaultValue) |
@@ -4913,8 +4831,7 @@ discard block |
||
4913 | 4831 | $this->createChildControls(); |
4914 | 4832 | $this->_flags &= ~self::IS_CREATING_CHILD; |
4915 | 4833 | $this->_flags |= self::IS_CHILD_CREATED; |
4916 | - } |
|
4917 | - catch(Exception $e) |
|
4834 | + } catch(Exception $e) |
|
4918 | 4835 | { |
4919 | 4836 | $this->_flags &= ~self::IS_CREATING_CHILD; |
4920 | 4837 | $this->_flags |= self::IS_CHILD_CREATED; |
@@ -5038,8 +4955,9 @@ discard block |
||
5038 | 4955 | final protected function isDescendentOf($ancestor) |
5039 | 4956 | { |
5040 | 4957 | $control=$this; |
5041 | - while($control!==$ancestor && $control->_parent) |
|
5042 | - $control=$control->_parent; |
|
4958 | + while($control!==$ancestor && $control->_parent) { |
|
4959 | + $control=$control->_parent; |
|
4960 | + } |
|
5043 | 4961 | return $control===$ancestor; |
5044 | 4962 | } |
5045 | 4963 | public function addedControl($control) |
@@ -5067,8 +4985,7 @@ discard block |
||
5067 | 4985 | { |
5068 | 4986 | $state=$this->_rf[self::RF_CHILD_STATE][$control->_id]; |
5069 | 4987 | unset($this->_rf[self::RF_CHILD_STATE][$control->_id]); |
5070 | - } |
|
5071 | - else |
|
4988 | + } else |
|
5072 | 4989 | $state=null; |
5073 | 4990 | $control->loadStateRecursive($state,!($this->_flags & self::IS_DISABLE_VIEWSTATE)); |
5074 | 4991 | if($this->_stage>=self::CS_LOADED) |
@@ -5301,8 +5218,7 @@ discard block |
||
5301 | 5218 | { |
5302 | 5219 | $this->_rf[self::RF_CONTROLSTATE]=&$state[1]; |
5303 | 5220 | unset($state[1]); |
5304 | - } |
|
5305 | - else |
|
5221 | + } else |
|
5306 | 5222 | unset($this->_rf[self::RF_CONTROLSTATE]); |
5307 | 5223 | if($needViewState) |
5308 | 5224 | { |
@@ -5366,8 +5282,7 @@ discard block |
||
5366 | 5282 | { |
5367 | 5283 | $page->applyControlStyleSheet($this); |
5368 | 5284 | $this->_flags |= self::IS_STYLESHEET_APPLIED; |
5369 | - } |
|
5370 | - else if($this->_flags & self::IS_STYLESHEET_APPLIED) |
|
5285 | + } else if($this->_flags & self::IS_STYLESHEET_APPLIED) |
|
5371 | 5286 | throw new TInvalidOperationException('control_stylesheet_applied',get_class($this)); |
5372 | 5287 | } |
5373 | 5288 | private function clearCachedUniqueID($recursive) |
@@ -5430,8 +5345,7 @@ discard block |
||
5430 | 5345 | { |
5431 | 5346 | parent::insertAt($index,$item); |
5432 | 5347 | $this->_o->addedControl($item); |
5433 | - } |
|
5434 | - else if(is_string($item) || ($item instanceof IRenderable)) |
|
5348 | + } else if(is_string($item) || ($item instanceof IRenderable)) |
|
5435 | 5349 | parent::insertAt($index,$item); |
5436 | 5350 | else |
5437 | 5351 | throw new TInvalidDataTypeException('controlcollection_control_required'); |
@@ -5591,8 +5505,7 @@ discard block |
||
5591 | 5505 | else if($item[0]===self::TYPE_DATABINDING) |
5592 | 5506 | $this->_bindings[$id]=$item[1]; |
5593 | 5507 | $this->_items[$id]=''; |
5594 | - } |
|
5595 | - else |
|
5508 | + } else |
|
5596 | 5509 | $this->_items[$id]=$item; |
5597 | 5510 | } |
5598 | 5511 | } |
@@ -6739,8 +6652,7 @@ discard block |
||
6739 | 6652 | if(!isset(self::$_template[$class])) |
6740 | 6653 | self::$_template[$class]=$this->loadTemplate(); |
6741 | 6654 | return self::$_template[$class]; |
6742 | - } |
|
6743 | - else |
|
6655 | + } else |
|
6744 | 6656 | return $this->_localTemplate; |
6745 | 6657 | } |
6746 | 6658 | public function setTemplate($value) |
@@ -6814,8 +6726,7 @@ discard block |
||
6814 | 6726 | $controls=$placeholder->getParent()->getControls(); |
6815 | 6727 | $loc=$controls->remove($placeholder); |
6816 | 6728 | $controls->insertAt($loc,$content); |
6817 | - } |
|
6818 | - else |
|
6729 | + } else |
|
6819 | 6730 | throw new TConfigurationException('templatecontrol_placeholder_inexistent',$id); |
6820 | 6731 | } |
6821 | 6732 | protected function initRecursive($namingContainer=null) |
@@ -6832,8 +6743,7 @@ discard block |
||
6832 | 6743 | $master->ensureChildControls(); |
6833 | 6744 | foreach($this->_contents as $id=>$content) |
6834 | 6745 | $master->injectContent($id,$content); |
6835 | - } |
|
6836 | - else if(!empty($this->_contents)) |
|
6746 | + } else if(!empty($this->_contents)) |
|
6837 | 6747 | throw new TConfigurationException('templatecontrol_mastercontrol_required',get_class($this)); |
6838 | 6748 | parent::initRecursive($namingContainer); |
6839 | 6749 | } |
@@ -6853,8 +6763,7 @@ discard block |
||
6853 | 6763 | $control->Checked = (boolean) $arObj->{$key}; |
6854 | 6764 | elseif ($control instanceof TDatePicker) |
6855 | 6765 | $control->Date = $arObj->{$key}; |
6856 | - } |
|
6857 | - else |
|
6766 | + } else |
|
6858 | 6767 | { |
6859 | 6768 | foreach ($objAttrs["RELATIONS"] as $relKey => $relValues) |
6860 | 6769 | { |
@@ -6876,8 +6785,7 @@ discard block |
||
6876 | 6785 | } |
6877 | 6786 | break; |
6878 | 6787 | } |
6879 | - } |
|
6880 | - catch (Exception $ex) |
|
6788 | + } catch (Exception $ex) |
|
6881 | 6789 | { |
6882 | 6790 | if ($throwExceptions) |
6883 | 6791 | throw $ex; |
@@ -6900,8 +6808,7 @@ discard block |
||
6900 | 6808 | $arObj->{$key} = $control->Checked; |
6901 | 6809 | elseif ($control instanceof TDatePicker) |
6902 | 6810 | $arObj->{$key} = $control->Date; |
6903 | - } |
|
6904 | - catch (Exception $ex) |
|
6811 | + } catch (Exception $ex) |
|
6905 | 6812 | { |
6906 | 6813 | if ($throwExceptions) |
6907 | 6814 | throw $ex; |
@@ -6952,8 +6859,7 @@ discard block |
||
6952 | 6859 | $page->endFormRender($writer); |
6953 | 6860 | $cs->renderScriptFilesEnd($writer); |
6954 | 6861 | $cs->renderEndScripts($writer); |
6955 | - } |
|
6956 | - else |
|
6862 | + } else |
|
6957 | 6863 | { |
6958 | 6864 | $cs->renderHiddenFieldsBegin($writer); |
6959 | 6865 | $page->beginFormRender($writer); |
@@ -7111,8 +7017,7 @@ discard block |
||
7111 | 7017 | $base = $dir; |
7112 | 7018 | } |
7113 | 7019 | return array($assets->getPublishedPath($base), $assets->publishFilePath($base)); |
7114 | - } |
|
7115 | - else |
|
7020 | + } else |
|
7116 | 7021 | { |
7117 | 7022 | return array($assets->getBasePath().str_replace($assets->getBaseUrl(),'',$base), $base); |
7118 | 7023 | } |
@@ -7400,8 +7305,7 @@ discard block |
||
7400 | 7305 | { |
7401 | 7306 | foreach($value as $v) |
7402 | 7307 | $str.='<input type="hidden" name="'.$name.'[]" id="'.$id.'" value="'.THttpUtility::htmlEncode($value)."\" />\n"; |
7403 | - } |
|
7404 | - else |
|
7308 | + } else |
|
7405 | 7309 | { |
7406 | 7310 | $str.='<input type="hidden" name="'.$name.'" id="'.$id.'" value="'.THttpUtility::htmlEncode($value)."\" />\n"; |
7407 | 7311 | } |
@@ -7510,8 +7414,7 @@ discard block |
||
7510 | 7414 | $this->processCallbackRequest($writer); |
7511 | 7415 | else |
7512 | 7416 | $this->processPostBackRequest($writer); |
7513 | - } |
|
7514 | - else |
|
7417 | + } else |
|
7515 | 7418 | $this->processNormalRequest($writer); |
7516 | 7419 | $this->_writer = null; |
7517 | 7420 | } |
@@ -7657,8 +7560,7 @@ discard block |
||
7657 | 7560 | { |
7658 | 7561 | foreach($this->_validators as $validator) |
7659 | 7562 | $validator->validate(); |
7660 | - } |
|
7661 | - else |
|
7563 | + } else |
|
7662 | 7564 | { |
7663 | 7565 | foreach($this->_validators as $validator) |
7664 | 7566 | { |
@@ -7679,8 +7581,7 @@ discard block |
||
7679 | 7581 | return false; |
7680 | 7582 | } |
7681 | 7583 | return true; |
7682 | - } |
|
7683 | - else |
|
7584 | + } else |
|
7684 | 7585 | throw new TInvalidOperationException('page_isvalid_unknown'); |
7685 | 7586 | } |
7686 | 7587 | public function getTheme() |
@@ -7865,14 +7766,12 @@ discard block |
||
7865 | 7766 | { |
7866 | 7767 | if($control->loadPostData($key,$postData)) |
7867 | 7768 | $this->_controlsPostDataChanged[]=$control; |
7868 | - } |
|
7869 | - else if($control instanceof IPostBackEventHandler && |
|
7769 | + } else if($control instanceof IPostBackEventHandler && |
|
7870 | 7770 | empty($this->_postData[self::FIELD_POSTBACK_TARGET])) |
7871 | 7771 | { |
7872 | 7772 | $this->_postData->add(self::FIELD_POSTBACK_TARGET,$key); } |
7873 | 7773 | unset($this->_controlsRequiringPostData[$key]); |
7874 | - } |
|
7875 | - else if($beforeLoad) |
|
7774 | + } else if($beforeLoad) |
|
7876 | 7775 | $this->_restPostData->add($key,$value); |
7877 | 7776 | } |
7878 | 7777 | foreach($this->_controlsRequiringPostData as $key=>$value) |
@@ -7883,8 +7782,7 @@ discard block |
||
7883 | 7782 | { |
7884 | 7783 | if($control->loadPostData($key,$this->_postData)) |
7885 | 7784 | $this->_controlsPostDataChanged[]=$control; |
7886 | - } |
|
7887 | - else |
|
7785 | + } else |
|
7888 | 7786 | throw new TInvalidDataValueException('page_postbackcontrol_invalid',$key); |
7889 | 7787 | unset($this->_controlsRequiringPostData[$key]); |
7890 | 7788 | } |
@@ -7933,8 +7831,7 @@ discard block |
||
7933 | 7831 | else |
7934 | 7832 | $focus=$this->_focus; |
7935 | 7833 | $this->getClientScript()->registerFocusControl($focus); |
7936 | - } |
|
7937 | - else if($this->_postData && ($lastFocus=$this->_postData->itemAt(self::FIELD_LASTFOCUS))!==null) |
|
7834 | + } else if($this->_postData && ($lastFocus=$this->_postData->itemAt(self::FIELD_LASTFOCUS))!==null) |
|
7938 | 7835 | $this->getClientScript()->registerFocusControl($lastFocus); |
7939 | 7836 | $this->_inFormRender=false; |
7940 | 7837 | } |
@@ -8100,8 +7997,7 @@ discard block |
||
8100 | 7997 | { |
8101 | 7998 | if(($str=$sm->validateData($str))!==false) |
8102 | 7999 | return unserialize($str); |
8103 | - } |
|
8104 | - else |
|
8000 | + } else |
|
8105 | 8001 | return unserialize($str); |
8106 | 8002 | } |
8107 | 8003 | return null; |
@@ -8142,8 +8038,7 @@ discard block |
||
8142 | 8038 | $this->_cache=$this->getApplication()->getModule($this->_cacheModuleID); |
8143 | 8039 | if(!($this->_cache instanceof ICache)) |
8144 | 8040 | throw new TConfigurationException('outputcache_cachemoduleid_invalid',$this->_cacheModuleID); |
8145 | - } |
|
8146 | - else |
|
8041 | + } else |
|
8147 | 8042 | $this->_cache=$this->getApplication()->getCache(); |
8148 | 8043 | if($this->_cache!==null) |
8149 | 8044 | { |
@@ -8155,8 +8050,7 @@ discard block |
||
8155 | 8050 | $param->setCacheTime(isset($data[3])?$data[3]:0); |
8156 | 8051 | $this->onCheckDependency($param); |
8157 | 8052 | $this->_dataCached=$param->getIsValid(); |
8158 | - } |
|
8159 | - else |
|
8053 | + } else |
|
8160 | 8054 | $this->_dataCached=false; |
8161 | 8055 | if($this->_dataCached) |
8162 | 8056 | list($this->_contents,$this->_state,$this->_actions,$this->_cacheTime)=$data; |
@@ -8172,8 +8066,7 @@ discard block |
||
8172 | 8066 | $stack->push($this); |
8173 | 8067 | parent::initRecursive($namingContainer); |
8174 | 8068 | $stack->pop(); |
8175 | - } |
|
8176 | - else |
|
8069 | + } else |
|
8177 | 8070 | parent::initRecursive($namingContainer); |
8178 | 8071 | } |
8179 | 8072 | protected function loadRecursive() |
@@ -8184,8 +8077,7 @@ discard block |
||
8184 | 8077 | $stack->push($this); |
8185 | 8078 | parent::loadRecursive(); |
8186 | 8079 | $stack->pop(); |
8187 | - } |
|
8188 | - else |
|
8080 | + } else |
|
8189 | 8081 | { |
8190 | 8082 | if($this->_dataCached) |
8191 | 8083 | $this->performActions(); |
@@ -8214,8 +8106,7 @@ discard block |
||
8214 | 8106 | $stack->push($this); |
8215 | 8107 | parent::preRenderRecursive(); |
8216 | 8108 | $stack->pop(); |
8217 | - } |
|
8218 | - else |
|
8109 | + } else |
|
8219 | 8110 | parent::preRenderRecursive(); |
8220 | 8111 | } |
8221 | 8112 | protected function loadStateRecursive(&$state,$needViewState=true) |
@@ -8351,8 +8242,7 @@ discard block |
||
8351 | 8242 | $content=$textwriter->flush(); |
8352 | 8243 | $data=array($content,$this->_state,$this->_actions,time()); |
8353 | 8244 | $this->_cache->set($this->getCacheKey(),$data,$this->getDuration(),$this->getCacheDependency()); |
8354 | - } |
|
8355 | - else |
|
8245 | + } else |
|
8356 | 8246 | parent::render($writer); |
8357 | 8247 | } |
8358 | 8248 | } |
@@ -8457,8 +8347,7 @@ discard block |
||
8457 | 8347 | $cache->set(self::TEMPLATE_CACHE_PREFIX.$fileName,array($template,$timestamps)); |
8458 | 8348 | return $template; |
8459 | 8349 | } |
8460 | - } |
|
8461 | - else |
|
8350 | + } else |
|
8462 | 8351 | return null; |
8463 | 8352 | } |
8464 | 8353 | protected function getLocalizedTemplate($filename) |
@@ -8578,8 +8467,7 @@ discard block |
||
8578 | 8467 | $component->createdOnTemplate($parent); |
8579 | 8468 | if($component->getAllowChildControls()) |
8580 | 8469 | $controls[$key]=$component; |
8581 | - } |
|
8582 | - else if($component instanceof TComponent) |
|
8470 | + } else if($component instanceof TComponent) |
|
8583 | 8471 | { |
8584 | 8472 | $controls[$key]=$component; |
8585 | 8473 | if(isset($properties['id'])) |
@@ -8597,8 +8485,7 @@ discard block |
||
8597 | 8485 | else |
8598 | 8486 | $component->createdOnTemplate($parent); |
8599 | 8487 | } |
8600 | - } |
|
8601 | - else |
|
8488 | + } else |
|
8602 | 8489 | { |
8603 | 8490 | if($object[1] instanceof TCompositeLiteral) |
8604 | 8491 | { |
@@ -8608,8 +8495,7 @@ discard block |
||
8608 | 8495 | $directChildren[]=$o; |
8609 | 8496 | else |
8610 | 8497 | $parent->addParsedObject($o); |
8611 | - } |
|
8612 | - else |
|
8498 | + } else |
|
8613 | 8499 | { |
8614 | 8500 | if($parent===$parentControl) |
8615 | 8501 | $directChildren[]=$object[1]; |
@@ -8680,8 +8566,7 @@ discard block |
||
8680 | 8566 | default: throw new TConfigurationException('template_tag_unexpected',$name,$value[1]); |
8681 | 8567 | break; |
8682 | 8568 | } |
8683 | - } |
|
8684 | - else |
|
8569 | + } else |
|
8685 | 8570 | { |
8686 | 8571 | if (substr($name,0,2)=='js') |
8687 | 8572 | if ($value and !($value instanceof TJavaScriptLiteral)) |
@@ -8717,8 +8602,7 @@ discard block |
||
8717 | 8602 | default: throw new TConfigurationException('template_tag_unexpected',$name,$value[1]); |
8718 | 8603 | break; |
8719 | 8604 | } |
8720 | - } |
|
8721 | - else |
|
8605 | + } else |
|
8722 | 8606 | $component->setSubProperty($name,$value); |
8723 | 8607 | } |
8724 | 8608 | protected function parse($input) |
@@ -8755,8 +8639,7 @@ discard block |
||
8755 | 8639 | $stack[] = $type; |
8756 | 8640 | $container=$c-1; |
8757 | 8641 | } |
8758 | - } |
|
8759 | - else if(strpos($str,'</com:')===0) { |
|
8642 | + } else if(strpos($str,'</com:')===0) { |
|
8760 | 8643 | if($expectPropEnd) |
8761 | 8644 | continue; |
8762 | 8645 | if($matchStart>$textStart) |
@@ -8772,8 +8655,7 @@ discard block |
||
8772 | 8655 | throw new TConfigurationException('template_closingtag_expected',$tag); |
8773 | 8656 | } |
8774 | 8657 | $container=$tpl[$container][0]; |
8775 | - } |
|
8776 | - else if(strpos($str,'<%@')===0) { |
|
8658 | + } else if(strpos($str,'<%@')===0) { |
|
8777 | 8659 | if($expectPropEnd) |
8778 | 8660 | continue; |
8779 | 8661 | if($matchStart>$textStart) |
@@ -8782,8 +8664,7 @@ discard block |
||
8782 | 8664 | if(isset($tpl[0]) || $this->_directive!==null) |
8783 | 8665 | throw new TConfigurationException('template_directive_nonunique'); |
8784 | 8666 | $this->_directive=$this->parseAttributes($match[4][0],$match[4][1]); |
8785 | - } |
|
8786 | - else if(strpos($str,'<%')===0) { |
|
8667 | + } else if(strpos($str,'<%')===0) { |
|
8787 | 8668 | if($expectPropEnd) |
8788 | 8669 | continue; |
8789 | 8670 | if($matchStart>$textStart) |
@@ -8805,8 +8686,7 @@ discard block |
||
8805 | 8686 | $literal=strtr(trim(substr($literal,0,strlen($literal)-1)),array("'"=>"\'","\\"=>"\\\\")); |
8806 | 8687 | $tpl[$c++]=array($container,array(TCompositeLiteral::TYPE_EXPRESSION,"Prado::localize('$literal')")); |
8807 | 8688 | } |
8808 | - } |
|
8809 | - else if(strpos($str,'<prop:')===0) { |
|
8689 | + } else if(strpos($str,'<prop:')===0) { |
|
8810 | 8690 | if(strrpos($str,'/>')===strlen($str)-2) { |
8811 | 8691 | if($expectPropEnd) |
8812 | 8692 | continue; |
@@ -8826,8 +8706,7 @@ discard block |
||
8826 | 8706 | throw new TConfigurationException('template_property_duplicated',$name); |
8827 | 8707 | $tpl[$container][2][$name]=$value; |
8828 | 8708 | } |
8829 | - } |
|
8830 | - else { |
|
8709 | + } else { |
|
8831 | 8710 | $prop=strtolower($match[3][0]); |
8832 | 8711 | $stack[] = '@'.$prop; |
8833 | 8712 | if(!$expectPropEnd) |
@@ -8838,8 +8717,7 @@ discard block |
||
8838 | 8717 | $expectPropEnd=true; |
8839 | 8718 | } |
8840 | 8719 | } |
8841 | - } |
|
8842 | - else if(strpos($str,'</prop:')===0) { |
|
8720 | + } else if(strpos($str,'</prop:')===0) { |
|
8843 | 8721 | $prop=strtolower($match[3][0]); |
8844 | 8722 | if(empty($stack)) |
8845 | 8723 | throw new TConfigurationException('template_closingtag_unexpected',"</prop:$prop>"); |
@@ -8865,21 +8743,18 @@ discard block |
||
8865 | 8743 | if(isset($tpl[$container][2][$prop])) |
8866 | 8744 | throw new TConfigurationException('template_property_duplicated',$prop); |
8867 | 8745 | $tpl[$container][2][$prop]=$value; |
8868 | - } |
|
8869 | - else $this->_directive[$prop]=$value; |
|
8746 | + } else $this->_directive[$prop]=$value; |
|
8870 | 8747 | $textStart=$matchEnd+1; |
8871 | 8748 | } |
8872 | 8749 | $expectPropEnd=false; |
8873 | 8750 | } |
8874 | - } |
|
8875 | - else if(strpos($str,'<!--')===0) { |
|
8751 | + } else if(strpos($str,'<!--')===0) { |
|
8876 | 8752 | if($expectPropEnd) |
8877 | 8753 | throw new TConfigurationException('template_comments_forbidden'); |
8878 | 8754 | if($matchStart>$textStart) |
8879 | 8755 | $tpl[$c++]=array($container,substr($input,$textStart,$matchStart-$textStart)); |
8880 | 8756 | $textStart=$matchEnd+1; |
8881 | - } |
|
8882 | - else |
|
8757 | + } else |
|
8883 | 8758 | throw new TConfigurationException('template_matching_unexpected',$match); |
8884 | 8759 | } |
8885 | 8760 | if(!empty($stack)) |
@@ -8890,8 +8765,7 @@ discard block |
||
8890 | 8765 | } |
8891 | 8766 | if($textStart<strlen($input)) |
8892 | 8767 | $tpl[$c++]=array($container,substr($input,$textStart)); |
8893 | - } |
|
8894 | - catch(Exception $e) |
|
8768 | + } catch(Exception $e) |
|
8895 | 8769 | { |
8896 | 8770 | if(($e instanceof TException) && ($e instanceof TTemplateException)) |
8897 | 8771 | throw $e; |
@@ -8921,14 +8795,12 @@ discard block |
||
8921 | 8795 | { |
8922 | 8796 | $parent=null; |
8923 | 8797 | $objects[$id]=$object; |
8924 | - } |
|
8925 | - else |
|
8798 | + } else |
|
8926 | 8799 | { |
8927 | 8800 | $parent=$object[0]; |
8928 | 8801 | $merged=array($parent,array($object[1])); |
8929 | 8802 | } |
8930 | - } |
|
8931 | - else |
|
8803 | + } else |
|
8932 | 8804 | $merged[1][]=$object[1]; |
8933 | 8805 | } |
8934 | 8806 | if($parent!==null) |
@@ -8961,8 +8833,7 @@ discard block |
||
8961 | 8833 | $attributes[$name]=$this->parseTemplateProperty(substr($value,1,strlen($value)-2),$match[2][1]+1); |
8962 | 8834 | else |
8963 | 8835 | $attributes[$name]=$this->parseTemplateProperty($value,$match[2][1]); |
8964 | - } |
|
8965 | - else |
|
8836 | + } else |
|
8966 | 8837 | { |
8967 | 8838 | if($value[0]==='\'' || $value[0]==='"') |
8968 | 8839 | $attributes[$name]=$this->parseAttribute(substr($value,1,strlen($value)-2)); |
@@ -9004,8 +8875,7 @@ discard block |
||
9004 | 8875 | return array(self::CONFIG_DATABIND,ltrim($expr,'.')); |
9005 | 8876 | else |
9006 | 8877 | return array(self::CONFIG_EXPRESSION,ltrim($expr,'.')); |
9007 | - } |
|
9008 | - else if(preg_match('/\\s*(<%~.*?%>|<%\\$.*?%>|<%\\[.*?\\]%>|<%\/.*?%>)\\s*/msS',$value,$matches) && $matches[0]===$value) |
|
8878 | + } else if(preg_match('/\\s*(<%~.*?%>|<%\\$.*?%>|<%\\[.*?\\]%>|<%\/.*?%>)\\s*/msS',$value,$matches) && $matches[0]===$value) |
|
9009 | 8879 | { |
9010 | 8880 | $value=$matches[1]; |
9011 | 8881 | if($value[2]==='~') |
@@ -9018,8 +8888,7 @@ discard block |
||
9018 | 8888 | $literal = trim(substr($value,3,strlen($value)-5)); |
9019 | 8889 | return array(self::CONFIG_EXPRESSION,"rtrim(dirname(\$this->getApplication()->getRequest()->getApplicationUrl()), '/').'/$literal'"); |
9020 | 8890 | } |
9021 | - } |
|
9022 | - else |
|
8891 | + } else |
|
9023 | 8892 | return $value; |
9024 | 8893 | } |
9025 | 8894 | protected function validateAttributes($type,$attributes) |
@@ -9039,15 +8908,13 @@ discard block |
||
9039 | 8908 | $subname=substr($name,0,$pos); |
9040 | 8909 | if(!$class->hasMethod('get'.$subname)) |
9041 | 8910 | throw new TConfigurationException('template_property_unknown',$type,$subname); |
9042 | - } |
|
9043 | - else if(strncasecmp($name,'on',2)===0) |
|
8911 | + } else if(strncasecmp($name,'on',2)===0) |
|
9044 | 8912 | { |
9045 | 8913 | if(!$class->hasMethod($name)) |
9046 | 8914 | throw new TConfigurationException('template_event_unknown',$type,$name); |
9047 | 8915 | else if(!is_string($att)) |
9048 | 8916 | throw new TConfigurationException('template_eventhandler_invalid',$type,$name); |
9049 | - } |
|
9050 | - else |
|
8917 | + } else |
|
9051 | 8918 | { |
9052 | 8919 | if (! ($class->hasMethod('set'.$name) || $class->hasMethod('setjs'.$name) || $this->isClassBehaviorMethod($class,'set'.$name)) ) |
9053 | 8920 | { |
@@ -9055,8 +8922,7 @@ discard block |
||
9055 | 8922 | throw new TConfigurationException('template_property_readonly',$type,$name); |
9056 | 8923 | else |
9057 | 8924 | throw new TConfigurationException('template_property_unknown',$type,$name); |
9058 | - } |
|
9059 | - else if(is_array($att) && $att[0]!==self::CONFIG_EXPRESSION) |
|
8925 | + } else if(is_array($att) && $att[0]!==self::CONFIG_EXPRESSION) |
|
9060 | 8926 | { |
9061 | 8927 | if(strcasecmp($name,'id')===0) |
9062 | 8928 | throw new TConfigurationException('template_controlid_invalid',$type); |
@@ -9065,8 +8931,7 @@ discard block |
||
9065 | 8931 | } |
9066 | 8932 | } |
9067 | 8933 | } |
9068 | - } |
|
9069 | - else if(is_subclass_of($className,'TComponent') || $className==='TComponent') |
|
8934 | + } else if(is_subclass_of($className,'TComponent') || $className==='TComponent') |
|
9070 | 8935 | { |
9071 | 8936 | foreach($attributes as $name=>$att) |
9072 | 8937 | { |
@@ -9077,8 +8942,7 @@ discard block |
||
9077 | 8942 | $subname=substr($name,0,$pos); |
9078 | 8943 | if(!$class->hasMethod('get'.$subname)) |
9079 | 8944 | throw new TConfigurationException('template_property_unknown',$type,$subname); |
9080 | - } |
|
9081 | - else if(strncasecmp($name,'on',2)===0) |
|
8945 | + } else if(strncasecmp($name,'on',2)===0) |
|
9082 | 8946 | throw new TConfigurationException('template_event_forbidden',$type,$name); |
9083 | 8947 | else |
9084 | 8948 | { |
@@ -9091,8 +8955,7 @@ discard block |
||
9091 | 8955 | } |
9092 | 8956 | } |
9093 | 8957 | } |
9094 | - } |
|
9095 | - else |
|
8958 | + } else |
|
9096 | 8959 | throw new TConfigurationException('template_component_required',$type); |
9097 | 8960 | } |
9098 | 8961 | public function getIncludedFiles() |
@@ -9112,8 +8975,7 @@ discard block |
||
9112 | 8975 | $line=$line-$this->_includeAtLine[$i]+1; |
9113 | 8976 | $srcFile=$this->_includedFiles[$i]; |
9114 | 8977 | break; |
9115 | - } |
|
9116 | - else |
|
8978 | + } else |
|
9117 | 8979 | $line=$line-$this->_includeLines[$i]+1; |
9118 | 8980 | } |
9119 | 8981 | } |
@@ -9299,8 +9161,7 @@ discard block |
||
9299 | 9161 | closedir($dir); |
9300 | 9162 | if($cacheValid) |
9301 | 9163 | $this->_skins=$skins; |
9302 | - } |
|
9303 | - else |
|
9164 | + } else |
|
9304 | 9165 | { |
9305 | 9166 | $cacheValid=true; |
9306 | 9167 | $this->_cssFiles=$cssFiles; |
@@ -9425,19 +9286,15 @@ discard block |
||
9425 | 9286 | { |
9426 | 9287 | $setter='set'.$name; |
9427 | 9288 | $control->$setter($value); |
9428 | - } |
|
9429 | - else |
|
9289 | + } else |
|
9430 | 9290 | throw new TConfigurationException('theme_property_readonly',$type,$name); |
9431 | - } |
|
9432 | - else |
|
9291 | + } else |
|
9433 | 9292 | throw new TConfigurationException('theme_property_undefined',$type,$name); |
9434 | - } |
|
9435 | - else $control->setSubProperty($name,$value); |
|
9293 | + } else $control->setSubProperty($name,$value); |
|
9436 | 9294 | } |
9437 | 9295 | } |
9438 | 9296 | return true; |
9439 | - } |
|
9440 | - else |
|
9297 | + } else |
|
9441 | 9298 | return false; |
9442 | 9299 | } |
9443 | 9300 | public function getStyleSheetFiles() |
@@ -9530,8 +9387,7 @@ discard block |
||
9530 | 9387 | $pageConfig->loadPageConfigurationFromXml($config,$application->getBasePath(),''); |
9531 | 9388 | } |
9532 | 9389 | $pageConfig->loadFromFiles($this->getBasePath()); |
9533 | - } |
|
9534 | - else |
|
9390 | + } else |
|
9535 | 9391 | { |
9536 | 9392 | $configCached=true; |
9537 | 9393 | $currentTimestamp=array(); |
@@ -9548,8 +9404,7 @@ discard block |
||
9548 | 9404 | $currentTimestamp[0]=$appConfigFile===null?0:@filemtime($appConfigFile); |
9549 | 9405 | if($currentTimestamp[0]>$timestamp || ($timestamp>0 && !$currentTimestamp[0])) |
9550 | 9406 | $configCached=false; |
9551 | - } |
|
9552 | - else |
|
9407 | + } else |
|
9553 | 9408 | { |
9554 | 9409 | $currentTimestamp[$fileName]=@filemtime($fileName); |
9555 | 9410 | if($currentTimestamp[$fileName]>$timestamp || ($timestamp>0 && !$currentTimestamp[$fileName])) |
@@ -9557,8 +9412,7 @@ discard block |
||
9557 | 9412 | } |
9558 | 9413 | } |
9559 | 9414 | } |
9560 | - } |
|
9561 | - else |
|
9415 | + } else |
|
9562 | 9416 | { |
9563 | 9417 | $configCached=false; |
9564 | 9418 | $paths=explode('.',$pagePath); |
@@ -9701,8 +9555,7 @@ discard block |
||
9701 | 9555 | $className=basename($path); |
9702 | 9556 | if(!class_exists($className,false)) |
9703 | 9557 | include_once($path.Prado::CLASS_FILE_EXT); |
9704 | - } |
|
9705 | - else |
|
9558 | + } else |
|
9706 | 9559 | { |
9707 | 9560 | $className=$this->getBasePageClass(); |
9708 | 9561 | Prado::using($className); |
@@ -9784,8 +9637,7 @@ discard block |
||
9784 | 9637 | { |
9785 | 9638 | $fcontent = include $fname; |
9786 | 9639 | $this->loadFromPhp($fcontent,dirname($fname),$configPagePath); |
9787 | - } |
|
9788 | - else |
|
9640 | + } else |
|
9789 | 9641 | { |
9790 | 9642 | $dom=new TXmlDocument; |
9791 | 9643 | if($dom->loadFromFile($fname)) |
@@ -10028,8 +9880,7 @@ discard block |
||
10028 | 9880 | if(!is_file($dst.DIRECTORY_SEPARATOR.$fileName) || $checkTimestamp || $this->getApplication()->getMode()!==TApplicationMode::Performance) |
10029 | 9881 | $this->copyFile($fullpath,$dst); |
10030 | 9882 | return $this->_published[$path]=$this->_baseUrl.'/'.$dir.'/'.$fileName; |
10031 | - } |
|
10032 | - else |
|
9883 | + } else |
|
10033 | 9884 | { |
10034 | 9885 | $dir=$this->hash($fullpath); |
10035 | 9886 | if(!is_dir($this->_basePath.DIRECTORY_SEPARATOR.$dir) || $checkTimestamp || $this->getApplication()->getMode()!==TApplicationMode::Performance) |
@@ -10100,8 +9951,7 @@ discard block |
||
10100 | 9951 | @copy($src.DIRECTORY_SEPARATOR.$file,$dst.DIRECTORY_SEPARATOR.$file); |
10101 | 9952 | @chmod($dst.DIRECTORY_SEPARATOR.$file, PRADO_CHMOD); |
10102 | 9953 | } |
10103 | - } |
|
10104 | - else |
|
9954 | + } else |
|
10105 | 9955 | $this->copyDirectory($src.DIRECTORY_SEPARATOR.$file,$dst.DIRECTORY_SEPARATOR.$file); |
10106 | 9956 | } |
10107 | 9957 | closedir($folder); |
@@ -10230,8 +10080,7 @@ discard block |
||
10230 | 10080 | throw new TConfigurationException('globalization_source_path_failed', |
10231 | 10081 | $config['source']); |
10232 | 10082 | chmod($config['source'], PRADO_CHMOD); } |
10233 | - } |
|
10234 | - else |
|
10083 | + } else |
|
10235 | 10084 | { |
10236 | 10085 | throw new TConfigurationException("invalid source dir '{$config['source']}'"); |
10237 | 10086 | } |
@@ -10362,8 +10211,7 @@ discard block |
||
10362 | 10211 | { |
10363 | 10212 | $configFile=$basePath; |
10364 | 10213 | $basePath=dirname($configFile); |
10365 | - } |
|
10366 | - else |
|
10214 | + } else |
|
10367 | 10215 | $configFile=null; |
10368 | 10216 | $runtimePath=$basePath.DIRECTORY_SEPARATOR.self::RUNTIME_PATH; |
10369 | 10217 | if(is_writable($runtimePath)) |
@@ -10380,8 +10228,7 @@ discard block |
||
10380 | 10228 | } |
10381 | 10229 | $this->setBasePath($basePath); |
10382 | 10230 | $this->setRuntimePath($runtimePath); |
10383 | - } |
|
10384 | - else |
|
10231 | + } else |
|
10385 | 10232 | throw new TConfigurationException('application_runtimepath_invalid',$runtimePath); |
10386 | 10233 | } |
10387 | 10234 | public function run() |
@@ -10402,8 +10249,7 @@ discard block |
||
10402 | 10249 | $this->$method(); |
10403 | 10250 | $this->_step++; |
10404 | 10251 | } |
10405 | - } |
|
10406 | - catch(Exception $e) |
|
10252 | + } catch(Exception $e) |
|
10407 | 10253 | { |
10408 | 10254 | $this->onError($e); |
10409 | 10255 | } |
@@ -10747,8 +10593,7 @@ discard block |
||
10747 | 10593 | foreach($parameter[1] as $name=>$value) |
10748 | 10594 | $component->setSubProperty($name,$value); |
10749 | 10595 | $this->_parameters->add($id,$component); |
10750 | - } |
|
10751 | - else |
|
10596 | + } else |
|
10752 | 10597 | $this->_parameters->add($id,$parameter); |
10753 | 10598 | } |
10754 | 10599 | $modules=array(); |
@@ -10789,8 +10634,7 @@ discard block |
||
10789 | 10634 | $config->loadFromFile($this->_configFile); |
10790 | 10635 | if($this->_cacheFile!==null) |
10791 | 10636 | file_put_contents($this->_cacheFile,serialize($config),LOCK_EX); |
10792 | - } |
|
10793 | - else |
|
10637 | + } else |
|
10794 | 10638 | $config=unserialize(file_get_contents($this->_cacheFile)); |
10795 | 10639 | $this->applyConfiguration($config,false); |
10796 | 10640 | } |
@@ -10822,8 +10666,7 @@ discard block |
||
10822 | 10666 | $this->applyConfiguration($config,true); |
10823 | 10667 | } |
10824 | 10668 | $service->init($configElement); |
10825 | - } |
|
10826 | - else |
|
10669 | + } else |
|
10827 | 10670 | throw new THttpException(500,'application_service_unknown',$serviceID); |
10828 | 10671 | } |
10829 | 10672 | public function onError($param) |
@@ -10915,8 +10758,7 @@ discard block |
||
10915 | 10758 | { |
10916 | 10759 | $fcontent = include $fname; |
10917 | 10760 | $this->loadFromPhp($fcontent,dirname($fname)); |
10918 | - } |
|
10919 | - else |
|
10761 | + } else |
|
10920 | 10762 | { |
10921 | 10763 | $dom=new TXmlDocument; |
10922 | 10764 | $dom->loadFromFile($fname); |
@@ -11023,8 +10865,7 @@ discard block |
||
11023 | 10865 | if(isset($this->_aliases[$id])) |
11024 | 10866 | throw new TConfigurationException('appconfig_alias_redefined',$id); |
11025 | 10867 | $this->_aliases[$id]=$p; |
11026 | - } |
|
11027 | - else |
|
10868 | + } else |
|
11028 | 10869 | throw new TConfigurationException('appconfig_alias_invalid'); |
11029 | 10870 | $this->_empty=false; |
11030 | 10871 | break; |
@@ -11079,8 +10920,7 @@ discard block |
||
11079 | 10920 | else |
11080 | 10921 | $this->_modules[$id]=array($type,$properties->toArray(),$element); |
11081 | 10922 | $this->_empty=false; |
11082 | - } |
|
11083 | - else |
|
10923 | + } else |
|
11084 | 10924 | throw new TConfigurationException('appconfig_modules_invalid',$element->getTagName()); |
11085 | 10925 | } |
11086 | 10926 | } |
@@ -11112,8 +10952,7 @@ discard block |
||
11112 | 10952 | $element->setParent(null); |
11113 | 10953 | $this->_services[$id]=array($type,$properties->toArray(),$element); |
11114 | 10954 | $this->_empty=false; |
11115 | - } |
|
11116 | - else |
|
10955 | + } else |
|
11117 | 10956 | throw new TConfigurationException('appconfig_services_invalid',$element->getTagName()); |
11118 | 10957 | } |
11119 | 10958 | } |
@@ -11131,8 +10970,7 @@ discard block |
||
11131 | 10970 | $properties['id'] = $id; |
11132 | 10971 | $this->_parameters[$id] = array($type,$properties); |
11133 | 10972 | } |
11134 | - } |
|
11135 | - else |
|
10973 | + } else |
|
11136 | 10974 | { |
11137 | 10975 | $this->_parameters[$id] = $parameter; |
11138 | 10976 | } |
@@ -11153,12 +10991,10 @@ discard block |
||
11153 | 10991 | $this->_parameters[$id]=$element; |
11154 | 10992 | else |
11155 | 10993 | $this->_parameters[$id]=$value; |
11156 | - } |
|
11157 | - else |
|
10994 | + } else |
|
11158 | 10995 | $this->_parameters[$id]=array($type,$properties->toArray()); |
11159 | 10996 | $this->_empty=false; |
11160 | - } |
|
11161 | - else |
|
10997 | + } else |
|
11162 | 10998 | throw new TConfigurationException('appconfig_parameters_invalid',$element->getTagName()); |
11163 | 10999 | } |
11164 | 11000 | } |