Completed
Push — master ( c8aa88...97b00d )
by Alexey
11:42
created
system/Inji/Model.php 1 patch
Braces   +42 added lines, -32 removed lines patch added patch discarded remove patch
@@ -685,17 +685,21 @@  discard block
 block discarded – undo
685 685
      */
686 686
     public static function get_list($options = [])
687 687
     {
688
-        if (!empty($options['where']))
689
-            App::$cur->db->where($options['where']);
688
+        if (!empty($options['where'])) {
689
+                    App::$cur->db->where($options['where']);
690
+        }
690 691
         if (!empty($options['group'])) {
691 692
             App::$cur->db->group($options['group']);
692 693
         }
693
-        if (!empty($options['order']))
694
-            App::$cur->db->order($options['order']);
695
-        if (!empty($options['join']))
696
-            App::$cur->db->join($options['join']);
697
-        if (!empty($options['distinct']))
698
-            App::$cur->db->distinct = $options['distinct'];
694
+        if (!empty($options['order'])) {
695
+                    App::$cur->db->order($options['order']);
696
+        }
697
+        if (!empty($options['join'])) {
698
+                    App::$cur->db->join($options['join']);
699
+        }
700
+        if (!empty($options['distinct'])) {
701
+                    App::$cur->db->distinct = $options['distinct'];
702
+        }
699 703
 
700 704
         foreach (static::$relJoins as $join) {
701 705
             App::$cur->db->join($join[0], $join[1]);
@@ -721,14 +725,14 @@  discard block
 block discarded – undo
721 725
         }
722 726
         static::$needJoin = [];
723 727
 
724
-        if (!empty($options['limit']))
725
-            $limit = (int) $options['limit'];
726
-        else {
728
+        if (!empty($options['limit'])) {
729
+                    $limit = (int) $options['limit'];
730
+        } else {
727 731
             $limit = 0;
728 732
         }
729
-        if (!empty($options['start']))
730
-            $start = (int) $options['start'];
731
-        else {
733
+        if (!empty($options['start'])) {
734
+                    $start = (int) $options['start'];
735
+        } else {
732 736
             $start = 0;
733 737
         }
734 738
         if ($limit || $start) {
@@ -983,21 +987,23 @@  discard block
 block discarded – undo
983 987
         if (!empty($options['where'])) {
984 988
             static::fixPrefix($options['where'], 'first');
985 989
         }
986
-        if (!empty($options['where']))
987
-            App::$cur->db->where($options['where']);
988
-        if (!empty($options['join']))
989
-            App::$cur->db->join($options['join']);
990
+        if (!empty($options['where'])) {
991
+                    App::$cur->db->where($options['where']);
992
+        }
993
+        if (!empty($options['join'])) {
994
+                    App::$cur->db->join($options['join']);
995
+        }
990 996
         if (!empty($options['order'])) {
991 997
             App::$cur->db->order($options['order']);
992 998
         }
993
-        if (!empty($options['limit']))
994
-            $limit = (int) $options['limit'];
995
-        else {
999
+        if (!empty($options['limit'])) {
1000
+                    $limit = (int) $options['limit'];
1001
+        } else {
996 1002
             $limit = 0;
997 1003
         }
998
-        if (!empty($options['start']))
999
-            $start = (int) $options['start'];
1000
-        else {
1004
+        if (!empty($options['start'])) {
1005
+                    $start = (int) $options['start'];
1006
+        } else {
1001 1007
             $start = 0;
1002 1008
         }
1003 1009
         if ($limit || $start) {
@@ -1075,8 +1081,9 @@  discard block
 block discarded – undo
1075 1081
 
1076 1082
         $values = [];
1077 1083
         foreach ($cols as $col => $param) {
1078
-            if (isset($params[$col]))
1079
-                $values[$col] = $params[$col];
1084
+            if (isset($params[$col])) {
1085
+                            $values[$col] = $params[$col];
1086
+            }
1080 1087
         }
1081 1088
         if (empty($values)) {
1082 1089
             return false;
@@ -1259,8 +1266,9 @@  discard block
 block discarded – undo
1259 1266
         $values = [];
1260 1267
 
1261 1268
         foreach ($this->cols() as $col => $param) {
1262
-            if (isset($this->_params[$col]))
1263
-                $values[$col] = $this->_params[$col];
1269
+            if (isset($this->_params[$col])) {
1270
+                            $values[$col] = $this->_params[$col];
1271
+            }
1264 1272
         }
1265 1273
         if (empty($values) && empty($options['empty'])) {
1266 1274
             return false;
@@ -1420,8 +1428,9 @@  discard block
 block discarded – undo
1420 1428
     {
1421 1429
 
1422 1430
         foreach (static::relations() as $relName => $rel) {
1423
-            if ($rel['col'] == $col)
1424
-                return $relName;
1431
+            if ($rel['col'] == $col) {
1432
+                            return $relName;
1433
+            }
1425 1434
         }
1426 1435
         return NULL;
1427 1436
     }
@@ -1577,8 +1586,9 @@  discard block
 block discarded – undo
1577 1586
             App::$cur->db->where($relation['relTablePrefix'] . $this->index(), $this->pk());
1578 1587
             App::$cur->db->where($relation['relTablePrefix'] . $relation['model']::index(), $objectId);
1579 1588
             $isset = App::$cur->db->select($relation['relTable'])->fetch_assoc();
1580
-            if ($isset)
1581
-                return true;
1589
+            if ($isset) {
1590
+                            return true;
1591
+            }
1582 1592
 
1583 1593
             App::$cur->db->insert($relation['relTable'], [
1584 1594
                 $relation['relTablePrefix'] . $this->index() => $this->{$this->index()},
Please login to merge, or discard this patch.
system/modules/Users/Users.php 1 patch
Braces   +13 added lines, -10 removed lines patch added patch discarded remove patch
@@ -189,17 +189,20 @@
 block discarded – undo
189 189
 
190 190
     public function get($idn = false, $ltype = 'id')
191 191
     {
192
-        if (!$idn)
193
-            return false;
192
+        if (!$idn) {
193
+                    return false;
194
+        }
194 195
 
195
-        if (is_numeric($idn) && $ltype != 'login')
196
-            $user = Users\User::get($idn, 'id');
197
-        elseif ($ltype == 'login')
198
-            $user = Users\User::get($idn, 'login');
199
-        else
200
-            $user = Users\User::get($idn, 'mail');
201
-        if (!$user)
202
-            return [];
196
+        if (is_numeric($idn) && $ltype != 'login') {
197
+                    $user = Users\User::get($idn, 'id');
198
+        } elseif ($ltype == 'login') {
199
+                    $user = Users\User::get($idn, 'login');
200
+        } else {
201
+                    $user = Users\User::get($idn, 'mail');
202
+        }
203
+        if (!$user) {
204
+                    return [];
205
+        }
203 206
 
204 207
         return $user;
205 208
     }
Please login to merge, or discard this patch.
system/modules/View/View.php 1 patch
Braces   +43 added lines, -32 removed lines patch added patch discarded remove patch
@@ -140,8 +140,9 @@  discard block
 block discarded – undo
140 140
 
141 141
     private function parseRaw($source)
142 142
     {
143
-        if (!$source)
144
-            return [];
143
+        if (!$source) {
144
+                    return [];
145
+        }
145 146
 
146 147
         preg_match_all("|{([^}]+)}|", $source, $result);
147 148
         return $result[1];
@@ -327,10 +328,11 @@  discard block
 block discarded – undo
327 328
                         $this->ResolveCssHref($css, $type, $hrefs);
328 329
                         continue;
329 330
                     }
330
-                    if (strpos($css, '//') !== false)
331
-                        $href = $css;
332
-                    else
333
-                        $href = ($this->app->type != 'app' ? '/' . $this->app->name : '' ) . $css;
331
+                    if (strpos($css, '//') !== false) {
332
+                                            $href = $css;
333
+                    } else {
334
+                                            $href = ($this->app->type != 'app' ? '/' . $this->app->name : '' ) . $css;
335
+                    }
334 336
                     $hrefs[$href] = $href;
335 337
                 }
336 338
                 break;
@@ -340,10 +342,11 @@  discard block
 block discarded – undo
340 342
                         $this->ResolveCssHref($css, $type, $hrefs);
341 343
                         continue;
342 344
                     }
343
-                    if (strpos($css, '://') !== false)
344
-                        $href = $css;
345
-                    else
346
-                        $href = $this->app->templatesPath . "/{$this->template->name}/css/{$css}";
345
+                    if (strpos($css, '://') !== false) {
346
+                                            $href = $css;
347
+                    } else {
348
+                                            $href = $this->app->templatesPath . "/{$this->template->name}/css/{$css}";
349
+                    }
347 350
                     $hrefs[$href] = $href;
348 351
                 }
349 352
                 break;
@@ -353,10 +356,11 @@  discard block
 block discarded – undo
353 356
                         $this->ResolveCssHref($css, $type, $hrefs);
354 357
                         continue;
355 358
                     }
356
-                    if (strpos($css, '//') !== false)
357
-                        $href = $css;
358
-                    else
359
-                        $href = ($this->app->type != 'app' ? '/' . $this->app->name : '' ) . $css;
359
+                    if (strpos($css, '//') !== false) {
360
+                                            $href = $css;
361
+                    } else {
362
+                                            $href = ($this->app->type != 'app' ? '/' . $this->app->name : '' ) . $css;
363
+                    }
360 364
                     $hrefs[$href] = $href;
361 365
                 }
362 366
                 break;
@@ -410,8 +414,9 @@  discard block
 block discarded – undo
410 414
         $noParsedScripts = [];
411 415
         foreach ($scripts as $script) {
412 416
             if (is_string($script)) {
413
-                if (!empty($urls[$script]))
414
-                    continue;
417
+                if (!empty($urls[$script])) {
418
+                                    continue;
419
+                }
415 420
 
416 421
                 $path = $this->app->staticLoader->parsePath($script);
417 422
                 if (file_exists($path)) {
@@ -422,8 +427,9 @@  discard block
 block discarded – undo
422 427
                     $noParsedScripts[$script] = $script;
423 428
                 }
424 429
             } elseif (!empty($script['file'])) {
425
-                if (!empty($urls[$script['file']]))
426
-                    continue;
430
+                if (!empty($urls[$script['file']])) {
431
+                                    continue;
432
+                }
427 433
 
428 434
                 $path = $this->app->staticLoader->parsePath($script['file']);
429 435
                 if (file_exists($path)) {
@@ -482,12 +488,14 @@  discard block
 block discarded – undo
482 488
                         $this->genScriptArray($js, $type, $resultArray);
483 489
                         continue;
484 490
                     }
485
-                    if (strpos($js, '//') !== false)
486
-                        $href = $js;
487
-                    else
488
-                        $href = $this->getHref('js', $js);
489
-                    if (!$href)
490
-                        continue;
491
+                    if (strpos($js, '//') !== false) {
492
+                                            $href = $js;
493
+                    } else {
494
+                                            $href = $this->getHref('js', $js);
495
+                    }
496
+                    if (!$href) {
497
+                                            continue;
498
+                    }
491 499
 
492 500
                     $resultArray[] = $href;
493 501
                 }
@@ -498,10 +506,11 @@  discard block
 block discarded – undo
498 506
                         $this->genScriptArray($js, $type, $resultArray);
499 507
                         continue;
500 508
                     }
501
-                    if (strpos($js, '//') !== false)
502
-                        $href = $js;
503
-                    else
504
-                        $href = $this->app->templatesPath . "/{$this->template->name}/js/{$js}";
509
+                    if (strpos($js, '//') !== false) {
510
+                                            $href = $js;
511
+                    } else {
512
+                                            $href = $this->app->templatesPath . "/{$this->template->name}/js/{$js}";
513
+                    }
505 514
                     $resultArray[] = $href;
506 515
                 }
507 516
                 break;
@@ -517,8 +526,9 @@  discard block
 block discarded – undo
517 526
                         $asset = [];
518 527
                     }
519 528
                     $asset['file'] = $this->getHref('js', $js);
520
-                    if (!$asset['file'])
521
-                        continue;
529
+                    if (!$asset['file']) {
530
+                                            continue;
531
+                    }
522 532
                     $resultArray[] = $asset;
523 533
                 }
524 534
                 break;
@@ -568,8 +578,9 @@  discard block
 block discarded – undo
568 578
                         $paramArray = true;
569 579
                     }
570 580
                 }
571
-                if (!$paramArray)
572
-                    $lineParams = ':' . implode(':', $_params);
581
+                if (!$paramArray) {
582
+                                    $lineParams = ':' . implode(':', $_params);
583
+                }
573 584
             }
574 585
         }
575 586
         echo "<!--start:{WIDGET:{$_widgetName}{$lineParams}}-->\n";
Please login to merge, or discard this patch.