Passed
Push — master ( 0d9957...3a195a )
by Mihail
04:49
created
Apps/Controller/Api/Main.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -45,8 +45,8 @@  discard block
 block discarded – undo
45 45
             'roots' => [
46 46
                 [
47 47
                     'driver' => 'LocalFileSystem',
48
-                    'path' => root . '/upload/',
49
-                    'URL' => App::$Alias->scriptUrl . '/upload/'
48
+                    'path' => root.'/upload/',
49
+                    'URL' => App::$Alias->scriptUrl.'/upload/'
50 50
                 ]
51 51
             ]
52 52
         ]));
@@ -111,9 +111,9 @@  discard block
 block discarded – undo
111 111
     {
112 112
         $this->setJsonHeader();
113 113
         // get ffcms news if cache is not available
114
-        $cache = App::$Cache->getItem('download.ffcms.api.news.' . $this->lang);
114
+        $cache = App::$Cache->getItem('download.ffcms.api.news.'.$this->lang);
115 115
         if (!$cache->isHit()) {
116
-            $cache->set(File::getFromUrl('https://ffcms.org/api/api/news?lang=' . $this->lang))
116
+            $cache->set(File::getFromUrl('https://ffcms.org/api/api/news?lang='.$this->lang))
117 117
                 ->expiresAfter(1440);
118 118
         }
119 119
         return $cache->get();
Please login to merge, or discard this patch.
Apps/View/Admin/default/main/routing.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -37,9 +37,9 @@  discard block
 block discarded – undo
37 37
                 if (Any::isArray($route)) {
38 38
                     foreach ($route as $source => $target) {
39 39
                         $alias->row([
40
-                            ['text' => '<span class="badge badge-primary">' . $source . '</span> ' .
41
-                                '→ ' .
42
-                                '<span class="badge badge-secondary">' . $target . '</span>', 'html' => true],
40
+                            ['text' => '<span class="badge badge-primary">'.$source.'</span> '.
41
+                                '→ '.
42
+                                '<span class="badge badge-secondary">'.$target.'</span>', 'html' => true],
43 43
                             ['text' => $env],
44 44
                             ['text' => Url::a(
45 45
                                 ['main/deleteroute', null, ['type' => 'Alias', 'loader' => $env, 'path' => $source]],
@@ -71,9 +71,9 @@  discard block
 block discarded – undo
71 71
                 if (Any::isArray($route)) {
72 72
                     foreach ($route as $source => $target) {
73 73
                         $dynamic->row([
74
-                            ['text' => '<span class="badge badge-primary">' . $source . '</span> ' .
75
-                                '→ ' .
76
-                                '<span class="badge badge-secondary">' . $target . '</span>', 'html' => true],
74
+                            ['text' => '<span class="badge badge-primary">'.$source.'</span> '.
75
+                                '→ '.
76
+                                '<span class="badge badge-secondary">'.$target.'</span>', 'html' => true],
77 77
                             ['text' => $env],
78 78
                             ['text' => Url::a(
79 79
                                 ['main/deleteroute', null, ['type' => 'Callback', 'loader' => $env, 'path' => $source]],
@@ -92,6 +92,6 @@  discard block
 block discarded – undo
92 92
 </div>
93 93
 <?php if (!$aliasExist && !$callbackExist): ?>
94 94
     <p class="alert alert-warning"><?= __('Custom routes is not yet found') ?></p>
95
-<?php endif ;?>
96
-<?= Url::a(['main/addroute'], '<i class="fa fa-plus"></i> ' . __('New route'), ['class' => 'btn btn-primary', 'html' => true]) ?>
95
+<?php endif; ?>
96
+<?= Url::a(['main/addroute'], '<i class="fa fa-plus"></i> '.__('New route'), ['class' => 'btn btn-primary', 'html' => true]) ?>
97 97
 <?php $this->stop() ?>
Please login to merge, or discard this patch.
Apps/View/Admin/default/main/updates.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -64,7 +64,10 @@
 block discarded – undo
64 64
     echo $form->button()->submit(__('Download update'), ['class' => 'btn btn-primary']);
65 65
     echo $form->stop();
66 66
     ?>
67
-<?php else: ?>
67
+<?php else {
68
+    : ?>
68 69
     <p class="alert alert-success"><?= __('Your system is up to date. No updates is available') ?></p>
69
-<?php endif; ?>
70
+<?php endif;
71
+}
72
+?>
70 73
 <?php $this->stop() ?>
Please login to merge, or discard this patch.
Apps/View/Admin/default/application/_actions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,6 +5,6 @@
 block discarded – undo
5 5
 
6 6
 ?>
7 7
 <?php if (isset($controller)): ?>
8
-    <a href="<?= Url::to($controller . '/index') ?>"><i class="fa fa-cogs"></i></a>&nbsp;
8
+    <a href="<?= Url::to($controller.'/index') ?>"><i class="fa fa-cogs"></i></a>&nbsp;
9 9
     <a href="<?= Url::to('application/turn', [$controller]) ?>"><i class="fa fa-power-off"></i></a>
10 10
 <?php endif; ?>
11 11
\ No newline at end of file
Please login to merge, or discard this patch.
Apps/View/Admin/default/application/index.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -36,11 +36,11 @@  discard block
 block discarded – undo
36 36
         continue;
37 37
     }
38 38
     $controller = Str::lowerCase($app->sys_name);
39
-    $route = $controller . '/index';
39
+    $route = $controller.'/index';
40 40
     $icoStatus = null;
41 41
     $actions = $this->fetch('application/_actions', ['controller' => $controller]);
42 42
     // set action icons based on app status
43
-    if ((bool)$app->disabled) {
43
+    if ((bool) $app->disabled) {
44 44
         $icoStatus = ' <i class="fa fa-pause" style="color: #ff0000;"></i>';
45 45
     } elseif (!$app->checkVersion()) {
46 46
         $icoStatus = ' <i class="fa fa-exclamation-circle" style="color: #ffbd26;"></i>';
@@ -50,9 +50,9 @@  discard block
 block discarded – undo
50 50
     }
51 51
 
52 52
     $table->row([
53
-        ['text' => $app->id . $icoStatus, 'html' => true],
53
+        ['text' => $app->id.$icoStatus, 'html' => true],
54 54
         ['text' => Url::a([$route], $app->getLocaleName()), 'html' => true],
55
-        ['text' => '<a target="_blank" href="' . \App::$Alias->scriptUrl . '/' . Str::lowerCase($route) . '">' . $route . '</a>', 'html' => true],
55
+        ['text' => '<a target="_blank" href="'.\App::$Alias->scriptUrl.'/'.Str::lowerCase($route).'">'.$route.'</a>', 'html' => true],
56 56
         ['text' => $app->version],
57 57
         ['text' => Date::convertToDatetime($app->updated_at, Date::FORMAT_TO_HOUR)],
58 58
         ['text' => $actions, 'html' => true]
@@ -63,5 +63,5 @@  discard block
 block discarded – undo
63 63
 <div class="table-responsive">
64 64
     <?= $table->display() ?>
65 65
 </div>
66
-<?= Url::a(['application/install'], '<i class="fa fa-tasks"></i> ' . __('Install app'), ['class' => 'btn btn-primary', 'html' => true]) ?>
66
+<?= Url::a(['application/install'], '<i class="fa fa-tasks"></i> '.__('Install app'), ['class' => 'btn btn-primary', 'html' => true]) ?>
67 67
 <?php $this->stop() ?>
68 68
\ No newline at end of file
Please login to merge, or discard this patch.
Apps/View/Admin/default/main/antivirus.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 
16 16
 <?php $this->start('body') ?>
17 17
 <h1><?= __('Antivirus scan'); ?></h1>
18
-<p><?= __('FFCMS 3 provide a simple signature-based antivirus software') . '. ' . __('Remember! This is just an advisory algorithm!') ?></p>
18
+<p><?= __('FFCMS 3 provide a simple signature-based antivirus software').'. '.__('Remember! This is just an advisory algorithm!') ?></p>
19 19
 
20 20
 <div class="row mb-2">
21 21
     <div class="col-md-8">
Please login to merge, or discard this patch.
Apps/View/Admin/default/widget/index.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -31,10 +31,10 @@  discard block
 block discarded – undo
31 31
 
32 32
 foreach ($widgets as $widget) {
33 33
     $controller = Str::lowerCase($widget->sys_name);
34
-    $route = $controller . '/index';
34
+    $route = $controller.'/index';
35 35
     $icoStatus = null;
36 36
     $actions = $this->fetch('widget/_actions', ['controller' => $controller]);
37
-    if ((bool)$widget->disabled) {
37
+    if ((bool) $widget->disabled) {
38 38
         $icoStatus = ' <i class="fa fa-pause" style="color: #ff0000;"></i>';
39 39
     } elseif (!$widget->checkVersion()) {
40 40
         $icoStatus = ' <i class="fa fa-exclamation-circle" style="color: #ffbd26;"></i>';
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     }
45 45
 
46 46
     $table->row([
47
-        ['text' => $widget->id . $icoStatus, 'html' => true],
47
+        ['text' => $widget->id.$icoStatus, 'html' => true],
48 48
         ['text' => Url::a([$route], $widget->getLocaleName()), 'html' => true],
49 49
         ['text' => $widget->version],
50 50
         ['text' => Date::convertToDatetime($widget->updated_at, Date::FORMAT_TO_HOUR)],
@@ -57,5 +57,5 @@  discard block
 block discarded – undo
57 57
     <?= $table->display() ?>
58 58
 </div>
59 59
 
60
-<?= Url::a(['widget/install'], '<i class="fa fa-tasks"></i> ' . __('Install'), ['class' => 'btn btn-primary', 'html' => true]) ?>
60
+<?= Url::a(['widget/install'], '<i class="fa fa-tasks"></i> '.__('Install'), ['class' => 'btn btn-primary', 'html' => true]) ?>
61 61
 <?php $this->stop() ?>
62 62
\ No newline at end of file
Please login to merge, or discard this patch.
Apps/View/Admin/default/widget/turn.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
         [['text' => __('Name')], ['text' => $widget->getLocaleName()]],
29 29
         [['text' => __('System name')], ['text' => $widget->sys_name]],
30 30
         [['text' => __('Last update')], ['text' => Date::convertToDatetime($widget->updated_at, Date::FORMAT_TO_SECONDS)]],
31
-        [['text' => __('Status')], ['text' => !(bool)$widget->disabled ? 'On' : 'Off'], 'properties' => ['class' =>  !(bool)$widget->disabled ? 'alert-success' : 'alert-danger']]
31
+        [['text' => __('Status')], ['text' => !(bool) $widget->disabled ? 'On' : 'Off'], 'properties' => ['class' =>  !(bool) $widget->disabled ? 'alert-success' : 'alert-danger']]
32 32
     ])->display() ?>
33 33
 </div>
34 34
 
Please login to merge, or discard this patch.
Apps/View/Admin/default/widget/_actions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,6 +4,6 @@
 block discarded – undo
4 4
 
5 5
 ?>
6 6
 <?php if (isset($controller)): ?>
7
-    <a href="<?= Url::to($controller . '/index') ?>"><i class="fa fa-cogs"></i></a>&nbsp;
7
+    <a href="<?= Url::to($controller.'/index') ?>"><i class="fa fa-cogs"></i></a>&nbsp;
8 8
     <a href="<?= Url::to('widget/turn', [$controller]) ?>"><i class="fa fa-power-off"></i></a>
9 9
 <?php endif; ?>
10 10
\ No newline at end of file
Please login to merge, or discard this patch.