@@ -35,7 +35,7 @@ |
||
| 35 | 35 | } |
| 36 | 36 | } |
| 37 | 37 | |
| 38 | -require_once( INJI_SYSTEM_DIR . '/init.php' ); |
|
| 38 | +require_once(INJI_SYSTEM_DIR . '/init.php'); |
|
| 39 | 39 | /** |
| 40 | 40 | * System error messages |
| 41 | 41 | */ |
@@ -25,7 +25,7 @@ |
||
| 25 | 25 | |
| 26 | 26 | function parseColsForModel($cols = []) |
| 27 | 27 | { |
| 28 | - $modelCols = [ 'labels' => [], 'cols' => [], 'relations' => []]; |
|
| 28 | + $modelCols = ['labels' => [], 'cols' => [], 'relations' => []]; |
|
| 29 | 29 | foreach ($cols as $col) { |
| 30 | 30 | $modelCols['labels'][$col['code']] = $col['label']; |
| 31 | 31 | $colType = !empty($col['type']['primary']) ? $col['type']['primary'] : $col['type']; |
@@ -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> |
@@ -2,9 +2,9 @@ |
||
| 2 | 2 | <div class="row"> |
| 3 | 3 | <div class="col-md-3"> |
| 4 | 4 | <?php |
| 5 | - $category = $material->category; |
|
| 6 | - $this->widget('Materials\categoryTree', ['category' => $category]); |
|
| 7 | - ?> |
|
| 5 | + $category = $material->category; |
|
| 6 | + $this->widget('Materials\categoryTree', ['category' => $category]); |
|
| 7 | + ?> |
|
| 8 | 8 | </div> |
| 9 | 9 | <div class="col-md-9"> |
| 10 | 10 | <div class="content"> |
@@ -14,12 +14,12 @@ |
||
| 14 | 14 | <span class="caption">Вид:</span> |
| 15 | 15 | <span class="group"> |
| 16 | 16 | <?php |
| 17 | - for ($i = 2; $i < 5; $i++) { |
|
| 18 | - $curLimit = $limit * $i; |
|
| 19 | - $curQuery = http_build_query(array_merge($query, ['limit' => $curLimit])); |
|
| 20 | - echo " <a href='{$path}?{$curQuery}'>{$curLimit}</a> "; |
|
| 21 | - } |
|
| 22 | - ?> |
|
| 17 | + for ($i = 2; $i < 5; $i++) { |
|
| 18 | + $curLimit = $limit * $i; |
|
| 19 | + $curQuery = http_build_query(array_merge($query, ['limit' => $curLimit])); |
|
| 20 | + echo " <a href='{$path}?{$curQuery}'>{$curLimit}</a> "; |
|
| 21 | + } |
|
| 22 | + ?> |
|
| 23 | 23 | </span> |
| 24 | 24 | <span class="group"> |
| 25 | 25 | <a href ='#' onclick="inji.onLoad(function () { |
@@ -221,7 +221,7 @@ discard block |
||
| 221 | 221 | if ($file) { |
| 222 | 222 | $photoId = Tools::randomString(); |
| 223 | 223 | $value = '<a href = "' . $file->path . '" id="' . $photoId . '"><img src="' . $file->path . '?resize=60x120" /></a>'; |
| 224 | - $value .='<script>inji.onLoad(function(){$("#' . $photoId . '").fancybox();});</script>'; |
|
| 224 | + $value .= '<script>inji.onLoad(function(){$("#' . $photoId . '").fancybox();});</script>'; |
|
| 225 | 225 | } else { |
| 226 | 226 | $value = '<img src="/static/system/images/no-image.png?resize=60x120" />'; |
| 227 | 227 | } |
@@ -1110,7 +1110,7 @@ discard block |
||
| 1110 | 1110 | $items[$item[$arrayKey]] = new $class($item); |
| 1111 | 1111 | } |
| 1112 | 1112 | if (!empty($options['order'])) { |
| 1113 | - usort($items, function($a, $b) use($options) { |
|
| 1113 | + usort($items, function ($a, $b) use($options) { |
|
| 1114 | 1114 | if ($a->{$options['order'][0]} > $b->{$options['order'][0]} && $options['order'][1] = 'asc') { |
| 1115 | 1115 | return 1; |
| 1116 | 1116 | } elseif ($a->{$options['order'][0]} < $b->{$options['order'][0]} && $options['order'][1] = 'asc') { |
@@ -1290,7 +1290,7 @@ discard block |
||
| 1290 | 1290 | } else { |
| 1291 | 1291 | $cols .= '*'; |
| 1292 | 1292 | } |
| 1293 | - $cols .=') as `count`' . (!empty($options['cols']) ? ',' . $options['cols'] : ''); |
|
| 1293 | + $cols .= ') as `count`' . (!empty($options['cols']) ? ',' . $options['cols'] : ''); |
|
| 1294 | 1294 | $query->cols = $cols; |
| 1295 | 1295 | if (!empty($options['group'])) { |
| 1296 | 1296 | $query->group($options['group']); |
@@ -71,7 +71,7 @@ |
||
| 71 | 71 | $this->info = $this->getInfo(); |
| 72 | 72 | $this->config = Config::module($this->moduleName, !empty($this->info['systemConfig'])); |
| 73 | 73 | $that = $this; |
| 74 | - Inji::$inst->listen('Config-change-module-' . $this->app->name . '-' . $this->moduleName, $this->app->name . '-' . $this->moduleName . 'config', function($event) use ($that) { |
|
| 74 | + Inji::$inst->listen('Config-change-module-' . $this->app->name . '-' . $this->moduleName, $this->app->name . '-' . $this->moduleName . 'config', function ($event) use ($that) { |
|
| 75 | 75 | $that->config = $event['eventObject']; |
| 76 | 76 | return $event['eventObject']; |
| 77 | 77 | }); |
@@ -12,7 +12,7 @@ discard block |
||
| 12 | 12 | |
| 13 | 13 | define('INJI_DOMAIN_NAME', $_SERVER['SERVER_NAME']); |
| 14 | 14 | |
| 15 | -spl_autoload_register(function($class_name) { |
|
| 15 | +spl_autoload_register(function ($class_name) { |
|
| 16 | 16 | if (file_exists(INJI_SYSTEM_DIR . '/Inji/' . $class_name . '.php')) { |
| 17 | 17 | include_once INJI_SYSTEM_DIR . '/Inji/' . $class_name . '.php'; |
| 18 | 18 | } |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | //load core |
| 22 | 22 | Inji::$inst = new Inji(); |
| 23 | 23 | Inji::$config = Config::system(); |
| 24 | -Inji::$inst->listen('Config-change-system', 'systemConfig', function($event) { |
|
| 24 | +Inji::$inst->listen('Config-change-system', 'systemConfig', function ($event) { |
|
| 25 | 25 | Inji::$config = $event['eventObject']; |
| 26 | 26 | return $event['eventObject']; |
| 27 | 27 | }); |
@@ -70,12 +70,12 @@ discard block |
||
| 70 | 70 | App::$cur->params = array_slice($params, 1); |
| 71 | 71 | App::$cur->config = Config::app(App::$cur); |
| 72 | 72 | |
| 73 | - Inji::$inst->listen('Config-change-app-' . App::$primary->name, 'primaryAppConfig', function($event) { |
|
| 73 | + Inji::$inst->listen('Config-change-app-' . App::$primary->name, 'primaryAppConfig', function ($event) { |
|
| 74 | 74 | App::$primary->config = $event['eventObject']; |
| 75 | 75 | return $event['eventObject']; |
| 76 | 76 | }); |
| 77 | 77 | } |
| 78 | -Inji::$inst->listen('Config-change-app-' . App::$cur->name, 'curAppConfig', function($event) { |
|
| 78 | +Inji::$inst->listen('Config-change-app-' . App::$cur->name, 'curAppConfig', function ($event) { |
|
| 79 | 79 | App::$cur->config = $event['eventObject']; |
| 80 | 80 | return $event['eventObject']; |
| 81 | 81 | }); |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | return [ |
| 3 | - 'accessCheck' => function() { |
|
| 3 | + 'accessCheck' => function () { |
|
| 4 | 4 | if (!class_exists('Users\User')) { |
| 5 | 5 | return false; |
| 6 | 6 | } |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | } |
| 35 | 35 | return true; |
| 36 | 36 | }, |
| 37 | - 'widget' => function() { |
|
| 37 | + 'widget' => function () { |
|
| 38 | 38 | ?> |
| 39 | 39 | <div class="panel panel-default"> |
| 40 | 40 | <div class="panel-heading">Общие настройки сайта</div> |