@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -return function ($step = NULL, $params = []) { |
|
3 | +return function ($step = null, $params = []) { |
|
4 | 4 | |
5 | 5 | }; |
@@ -2,7 +2,7 @@ |
||
2 | 2 | <?php |
3 | 3 | $blocked = App::$cur->money->getUserBlocks(); |
4 | 4 | $wallets = App::$cur->money->getUserWallets(); |
5 | -foreach ($wallets as $wallet) { |
|
5 | +foreach ($wallets as $wallet) { |
|
6 | 6 | ?> |
7 | 7 | <b><?= $wallet->showAmount(); ?></b> <?= $wallet->currency->acronym(); ?><br/> |
8 | 8 | <?php |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -return function ($step = NULL, $params = []) { |
|
3 | +return function ($step = null, $params = []) { |
|
4 | 4 | |
5 | 5 | }; |
@@ -49,8 +49,9 @@ |
||
49 | 49 | * @return array |
50 | 50 | */ |
51 | 51 | public static function get($clean = false) { |
52 | - if (empty($_SESSION['_INJI_MSG'])) |
|
53 | - return []; |
|
52 | + if (empty($_SESSION['_INJI_MSG'])) { |
|
53 | + return []; |
|
54 | + } |
|
54 | 55 | $msgs = $_SESSION['_INJI_MSG']; |
55 | 56 | if ($clean) { |
56 | 57 | $_SESSION['_INJI_MSG'] = []; |
@@ -37,7 +37,7 @@ |
||
37 | 37 | } |
38 | 38 | } |
39 | 39 | |
40 | -require_once( INJI_SYSTEM_DIR . '/init.php' ); |
|
40 | +require_once(INJI_SYSTEM_DIR . '/init.php'); |
|
41 | 41 | |
42 | 42 | /** |
43 | 43 | * System error messages |
@@ -12,9 +12,9 @@ |
||
12 | 12 | <div class ="category-materials"> |
13 | 13 | <div class ="row"> |
14 | 14 | <?php |
15 | - $i = 0; |
|
16 | - foreach ($materials as $material) { |
|
17 | - ?> |
|
15 | + $i = 0; |
|
16 | + foreach ($materials as $material) { |
|
17 | + ?> |
|
18 | 18 | <div class = "col-sm-6 category-material"> |
19 | 19 | <a class="category-material-name" href ="<?= $material->getHref(); ?>"><h3><?= $material->name; ?></h3></a> |
20 | 20 | <div class="category-material-preview"><?= $material->preview; ?></div> |
@@ -1,7 +1,7 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | return [ |
4 | - 'up' => function() { |
|
4 | + 'up' => function () { |
|
5 | 5 | Materials\Material::createCol('date_publish'); |
6 | 6 | foreach (Materials\Material::getList() as $material) { |
7 | 7 | $material->date_publish = $material->date_create; |
@@ -64,7 +64,7 @@ |
||
64 | 64 | 'type' => 'many', |
65 | 65 | 'model' => 'Menu\Item', |
66 | 66 | 'col' => 'Menu_id', |
67 | - 'where'=>[['parent_id',0]] |
|
67 | + 'where'=>[['parent_id', 0]] |
|
68 | 68 | ], |
69 | 69 | 'group' => [ |
70 | 70 | 'col' => 'group_id', |
@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | $code = 'main'; |
7 | 7 | } |
8 | 8 | $uid = Tools::randomString(); |
9 | -$childDraws = function($item, $childDraws, $uid, $activeFind) { |
|
9 | +$childDraws = function ($item, $childDraws, $uid, $activeFind) { |
|
10 | 10 | if ($item->childs(['order' => ['weight', 'asc']])) { |
11 | 11 | echo "<ul class ='dropdown-menu'>"; |
12 | 12 | |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | echo "</ul>"; |
24 | 24 | } |
25 | 25 | }; |
26 | -$activeFind = function($item, $activeFind) { |
|
26 | +$activeFind = function ($item, $activeFind) { |
|
27 | 27 | foreach ($item->childs(['order' => ['weight', 'asc']]) as $item) { |
28 | 28 | if (urldecode($_SERVER['REQUEST_URI']) == $item->href) { |
29 | 29 | return true; |