@@ -236,8 +236,7 @@ discard block |
||
| 236 | 236 | public function runQueryForList($connection, $parameter, $sql, $result, $delegate = null) |
| 237 | 237 | { |
| 238 | 238 | $registry = $this->getManager()->getTypeHandlers(); |
| 239 | - $list = $result instanceof \ArrayAccess ? $result : |
|
| 240 | - $this->_statement->createInstanceOfListClass($registry); |
|
| 239 | + $list = $result instanceof \ArrayAccess ? $result : $this->_statement->createInstanceOfListClass($registry); |
|
| 241 | 240 | $connection->setActive(true); |
| 242 | 241 | $reader = $sql->query(); |
| 243 | 242 | //$reader = $this->executeSQLQueryLimit($connection, $sql, $max, $skip); |
@@ -313,8 +312,7 @@ discard block |
||
| 313 | 312 | foreach ($reader as $row) { |
| 314 | 313 | $obj = $this->applyResultMap($row); |
| 315 | 314 | $key = TPropertyAccess::get($obj, $keyProperty); |
| 316 | - $value = ($valueProperty === null) ? $obj : |
|
| 317 | - TPropertyAccess::get($obj, $valueProperty); |
|
| 315 | + $value = ($valueProperty === null) ? $obj : TPropertyAccess::get($obj, $valueProperty); |
|
| 318 | 316 | $param = new TResultSetMapItemParameter($key, $value, $parameter, $map); |
| 319 | 317 | $this->raiseRowDelegate($delegate, $param); |
| 320 | 318 | } |
@@ -323,8 +321,7 @@ discard block |
||
| 323 | 321 | foreach ($reader as $row) { |
| 324 | 322 | $obj = $this->applyResultMap($row); |
| 325 | 323 | $key = TPropertyAccess::get($obj, $keyProperty); |
| 326 | - $map[$key] = ($valueProperty === null) ? $obj : |
|
| 327 | - TPropertyAccess::get($obj, $valueProperty); |
|
| 324 | + $map[$key] = ($valueProperty === null) ? $obj : TPropertyAccess::get($obj, $valueProperty); |
|
| 328 | 325 | } |
| 329 | 326 | } |
| 330 | 327 | $this->onExecuteQuery($command); |
@@ -181,8 +181,7 @@ |
||
| 181 | 181 | |
| 182 | 182 | public function validate() |
| 183 | 183 | { |
| 184 | - if (! |
|
| 185 | - ( |
|
| 184 | + if (!( |
|
| 186 | 185 | ($challenge = @$_POST[$this->getChallengeFieldName()]) |
| 187 | 186 | and |
| 188 | 187 | ($response = @$_POST[$this->getResponseFieldName()]) |
@@ -226,7 +226,7 @@ |
||
| 226 | 226 | */ |
| 227 | 227 | public function clear() |
| 228 | 228 | { |
| 229 | - for ($i = $this->_c - 1;$i >= 0;--$i) { |
|
| 229 | + for ($i = $this->_c - 1; $i >= 0; --$i) { |
|
| 230 | 230 | $this->removeAt($i); |
| 231 | 231 | } |
| 232 | 232 | } |
@@ -1235,7 +1235,7 @@ |
||
| 1235 | 1235 | public function onEndRequest() |
| 1236 | 1236 | { |
| 1237 | 1237 | $this->flushOutput(false); // flush all remaining content in the buffer |
| 1238 | - $this->saveGlobals(); // save global state |
|
| 1238 | + $this->saveGlobals(); // save global state |
|
| 1239 | 1239 | $this->raiseEvent('OnEndRequest', $this, null); |
| 1240 | 1240 | } |
| 1241 | 1241 | } |
@@ -481,7 +481,7 @@ |
||
| 481 | 481 | } |
| 482 | 482 | |
| 483 | 483 | foreach ($this->_d as $priority => $items) { |
| 484 | - for ($index = count($items) - 1;$index >= 0;$index--) { |
|
| 484 | + for ($index = count($items) - 1; $index >= 0; $index--) { |
|
| 485 | 485 | $this->removeAtIndexInPriority($index, $priority); |
| 486 | 486 | } |
| 487 | 487 | unset($this->_d[$priority]); |
@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | $hexLength = strlen($hex); |
| 63 | 63 | $base = strlen($alphabet); |
| 64 | 64 | $result = ''; |
| 65 | - for ($i = 0;$i < $hexLength;$i += 6) { |
|
| 65 | + for ($i = 0; $i < $hexLength; $i += 6) { |
|
| 66 | 66 | $number = hexdec(substr($hex, $i, 6)); |
| 67 | 67 | while ($number) { |
| 68 | 68 | $result .= $alphabet[$number % $base]; |
@@ -106,7 +106,7 @@ discard block |
||
| 106 | 106 | } |
| 107 | 107 | |
| 108 | 108 | $hasShadow = ($theme & THEME_SHADOWED_TEXT); |
| 109 | - for ($i = 0;$i < $length;$i++) { |
|
| 109 | + for ($i = 0; $i < $length; $i++) { |
|
| 110 | 110 | $color = imagecolorallocate($image, rand(150, 220), rand(150, 220), rand(150, 220)); |
| 111 | 111 | $size = rand($fontWidth - 10, $fontWidth); |
| 112 | 112 | $angle = rand(-30, 30); |
@@ -159,8 +159,8 @@ discard block |
||
| 159 | 159 | |
| 160 | 160 | function addNoise($image, $width, $height) |
| 161 | 161 | { |
| 162 | - for ($x = 0;$x < $width;++$x) { |
|
| 163 | - for ($y = 0;$y < $height;++$y) { |
|
| 162 | + for ($x = 0; $x < $width; ++$x) { |
|
| 163 | + for ($y = 0; $y < $height; ++$y) { |
|
| 164 | 164 | if (rand(0, 100) < 25) { |
| 165 | 165 | $color = imagecolorallocate($image, rand(150, 220), rand(150, 220), rand(150, 220)); |
| 166 | 166 | imagesetpixel($image, $x, $y, $color); |
@@ -172,13 +172,13 @@ discard block |
||
| 172 | 172 | |
| 173 | 173 | function addGrid($image, $width, $height) |
| 174 | 174 | { |
| 175 | - for ($i = 0;$i < $width;$i += rand(15, 25)) { |
|
| 175 | + for ($i = 0; $i < $width; $i += rand(15, 25)) { |
|
| 176 | 176 | imagesetthickness($image, rand(2, 6)); |
| 177 | 177 | $color = imagecolorallocate($image, rand(100, 180), rand(100, 180), rand(100, 180)); |
| 178 | 178 | imageline($image, $i + rand(-10, 20), 0, $i + rand(-10, 20), $height, $color); |
| 179 | 179 | imagecolordeallocate($image, $color); |
| 180 | 180 | } |
| 181 | - for ($i = 0;$i < $height;$i += rand(15, 25)) { |
|
| 181 | + for ($i = 0; $i < $height; $i += rand(15, 25)) { |
|
| 182 | 182 | imagesetthickness($image, rand(2, 6)); |
| 183 | 183 | $color = imagecolorallocate($image, rand(100, 180), rand(100, 180), rand(100, 180)); |
| 184 | 184 | imageline($image, 0, $i + rand(-10, 20), $width, $i + rand(-10, 20), $color); |
@@ -188,10 +188,10 @@ discard block |
||
| 188 | 188 | |
| 189 | 189 | function addScribble($image, $width, $height) |
| 190 | 190 | { |
| 191 | - for ($i = 0;$i < 8;$i++) { |
|
| 191 | + for ($i = 0; $i < 8; $i++) { |
|
| 192 | 192 | $color = imagecolorallocate($image, rand(100, 180), rand(100, 180), rand(100, 180)); |
| 193 | 193 | $points = []; |
| 194 | - for ($j = 1;$j < rand(5, 10);$j++) { |
|
| 194 | + for ($j = 1; $j < rand(5, 10); $j++) { |
|
| 195 | 195 | $points[] = rand(2 * (20 * ($i + 1)), 2 * (50 * ($i + 1))); |
| 196 | 196 | $points[] = rand(30, $height + 30); |
| 197 | 197 | } |
@@ -205,7 +205,7 @@ discard block |
||
| 205 | 205 | { |
| 206 | 206 | $tempImage = imagecreatetruecolor($width, $height); |
| 207 | 207 | $chunk = rand(1, 5); |
| 208 | - for ($x = $y = 0;$x < $width;$x += $chunk) { |
|
| 208 | + for ($x = $y = 0; $x < $width; $x += $chunk) { |
|
| 209 | 209 | $chunk = rand(1, 5); |
| 210 | 210 | $y += rand(-1, 1); |
| 211 | 211 | if ($y >= $height) { |
@@ -216,7 +216,7 @@ discard block |
||
| 216 | 216 | } |
| 217 | 217 | imagecopy($tempImage, $image, $x, 0, $x, $y, $chunk, $height); |
| 218 | 218 | } |
| 219 | - for ($x = $y = 0;$y < $height;$y += $chunk) { |
|
| 219 | + for ($x = $y = 0; $y < $height; $y += $chunk) { |
|
| 220 | 220 | $chunk = rand(1, 5); |
| 221 | 221 | $x += rand(-1, 1); |
| 222 | 222 | if ($x >= $width) { |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | public static function serialize($page, $data) |
| 39 | 39 | { |
| 40 | 40 | $sm = $page->getApplication()->getSecurityManager(); |
| 41 | - if($page->getEnableStateIGBinary() && extension_loaded('igbinary')) |
|
| 41 | + if ($page->getEnableStateIGBinary() && extension_loaded('igbinary')) |
|
| 42 | 42 | { |
| 43 | 43 | if ($page->getEnableStateValidation()) { |
| 44 | 44 | $str = $sm->hashData(igbinary_serialize($data)); |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | $str = @gzuncompress($str); |
| 82 | 82 | } |
| 83 | 83 | |
| 84 | - if($page->getEnableStateIGBinary() && extension_loaded('igbinary')) |
|
| 84 | + if ($page->getEnableStateIGBinary() && extension_loaded('igbinary')) |
|
| 85 | 85 | { |
| 86 | 86 | if ($page->getEnableStateValidation()) { |
| 87 | 87 | if (($str = $sm->validateData($str)) !== false) { |
@@ -78,15 +78,15 @@ |
||
| 78 | 78 | $data['file'] = $this->hidePrivatePathParts($exception->getFile()); |
| 79 | 79 | $data['line'] = $exception->getLine(); |
| 80 | 80 | $data['trace'] = $exception->getTrace(); |
| 81 | - foreach($data['trace'] as $k => $v) |
|
| 81 | + foreach ($data['trace'] as $k => $v) |
|
| 82 | 82 | { |
| 83 | - if(isset($v['file'])) |
|
| 83 | + if (isset($v['file'])) |
|
| 84 | 84 | $data['trace'][$k]['file'] = $this->hidePrivatePathParts($v['file']); |
| 85 | 85 | |
| 86 | - if(isset($v['args'])) |
|
| 86 | + if (isset($v['args'])) |
|
| 87 | 87 | { |
| 88 | 88 | $argsout = []; |
| 89 | - foreach($v['args'] as $kArg => $vArg) |
|
| 89 | + foreach ($v['args'] as $kArg => $vArg) |
|
| 90 | 90 | { |
| 91 | 91 | $data['trace'][$k]['args'][$kArg] = TVarDumper::dump($vArg, 0, false); |
| 92 | 92 | } |
@@ -114,17 +114,17 @@ discard block |
||
| 114 | 114 | * Indexes for the rare fields. |
| 115 | 115 | * In order to save memory, rare fields will only be created if they are needed. |
| 116 | 116 | */ |
| 117 | - const RF_CONTROLS = 0; // child controls |
|
| 118 | - const RF_CHILD_STATE = 1; // child state field |
|
| 119 | - const RF_NAMED_CONTROLS = 2; // list of controls whose namingcontainer is this control |
|
| 120 | - const RF_NAMED_CONTROLS_ID = 3; // counter for automatic id |
|
| 121 | - const RF_SKIN_ID = 4; // skin ID |
|
| 122 | - const RF_DATA_BINDINGS = 5; // data bindings |
|
| 123 | - const RF_EVENTS = 6; // event handlers |
|
| 124 | - const RF_CONTROLSTATE = 7; // controlstate |
|
| 125 | - const RF_NAMED_OBJECTS = 8; // controls declared with ID on template |
|
| 126 | - const RF_ADAPTER = 9; // adapter |
|
| 127 | - const RF_AUTO_BINDINGS = 10; // auto data bindings |
|
| 117 | + const RF_CONTROLS = 0; // child controls |
|
| 118 | + const RF_CHILD_STATE = 1; // child state field |
|
| 119 | + const RF_NAMED_CONTROLS = 2; // list of controls whose namingcontainer is this control |
|
| 120 | + const RF_NAMED_CONTROLS_ID = 3; // counter for automatic id |
|
| 121 | + const RF_SKIN_ID = 4; // skin ID |
|
| 122 | + const RF_DATA_BINDINGS = 5; // data bindings |
|
| 123 | + const RF_EVENTS = 6; // event handlers |
|
| 124 | + const RF_CONTROLSTATE = 7; // controlstate |
|
| 125 | + const RF_NAMED_OBJECTS = 8; // controls declared with ID on template |
|
| 126 | + const RF_ADAPTER = 9; // adapter |
|
| 127 | + const RF_AUTO_BINDINGS = 10; // auto data bindings |
|
| 128 | 128 | |
| 129 | 129 | /** |
| 130 | 130 | * @var string control ID |
@@ -402,7 +402,7 @@ discard block |
||
| 402 | 402 | public function getUniqueID() |
| 403 | 403 | { |
| 404 | 404 | if ($this->_uid === '' || $this->_uid === null) { // need to build the UniqueID |
| 405 | - $this->_uid = ''; // set to not-null, so that clearCachedUniqueID() may take action |
|
| 405 | + $this->_uid = ''; // set to not-null, so that clearCachedUniqueID() may take action |
|
| 406 | 406 | if ($namingContainer = $this->getNamingContainer()) { |
| 407 | 407 | if ($this->getPage() === $namingContainer) { |
| 408 | 408 | return ($this->_uid = $this->_id); |