Passed
Push — master ( bc905b...ef8807 )
by Mihail
04:40
created
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/Controller/Admin/Widget.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
         $search = \Apps\ActiveRecord\App::getItem('widget', $controller);
83 83
 
84 84
         // check what we got
85
-        if (!$search|| (int)$search->id < 1) {
85
+        if (!$search || (int) $search->id < 1) {
86 86
             throw new NotFoundException('Widget is not founded');
87 87
         }
88 88
 
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
             ->first();
118 118
 
119 119
         // check if widget admin controller exists
120
-        if (!$record || (int)$record->id < 1) {
120
+        if (!$record || (int) $record->id < 1) {
121 121
             throw new ForbiddenException('Widget is not founded');
122 122
         }
123 123
 
Please login to merge, or discard this patch.
Apps/View/Admin/default/_layouts/default.php 2 patches
Braces   +13 added lines, -5 removed lines patch added patch discarded remove patch
@@ -131,7 +131,8 @@  discard block
 block discarded – undo
131 131
                                     <span class="text-sm">No feedback queries found</span>
132 132
                                 </div>
133 133
                             </div>
134
-                            <?php else: ?>
134
+                            <?php else {
135
+    : ?>
135 136
                                 <?php foreach ($features->getFeedback() as $feed): ?>
136 137
                                     <div class="media">
137 138
                                         <div class="media-left">
@@ -144,7 +145,9 @@  discard block
 block discarded – undo
144 145
                                             <span class="text-sm"><?= Text::snippet($feed->message, 100) ?></span>
145 146
                                         </div>
146 147
                                     </div>
147
-                                <?php endforeach; ?>
148
+                                <?php endforeach;
149
+}
150
+?>
148 151
                             <?php endif; ?>
149 152
                         </div>
150 153
 
@@ -166,7 +169,8 @@  discard block
 block discarded – undo
166 169
                                     <span class="text-sm">No comments found</span>
167 170
                                 </div>
168 171
                             </div>
169
-                            <?php else: ?>
172
+                            <?php else {
173
+    : ?>
170 174
                                 <?php foreach ($features->getComments() as $comment): ?>
171 175
                                 <?php /** @var \Apps\ActiveRecord\CommentPost $comment */ ?>
172 176
                                     <div class="media">
@@ -174,6 +178,7 @@  discard block
 block discarded – undo
174 178
                                             <a href="#">
175 179
                                                 <?php
176 180
                                                 $commentAva = \App::$Alias->scriptUrl . '/upload/user/avatar/small/default.jpg';
181
+}
177 182
                                                 if ($comment->user !== null && $comment->user->id > 0) {
178 183
                                                     $commentAva = $comment->user->profile->getAvatarUrl('small');
179 184
                                                 }
@@ -219,9 +224,12 @@  discard block
 block discarded – undo
219 224
                             <?php foreach ($breadcrumbs as $url => $text): ?>
220 225
                                 <?php if (\Ffcms\Core\Helper\Type\Any::isInt($url)): ?>
221 226
                                     <?= $text ?>
222
-                                <?php else: ?>
227
+                                <?php else {
228
+    : ?>
223 229
                                     <a href="<?= $url ?>"><?= $text ?></a> /
224
-                                <?php endif; ?>
230
+                                <?php endif;
231
+}
232
+?>
225 233
                             <?php endforeach; ?>
226 234
                         <?php endif; ?>
227 235
                         </h2>
Please login to merge, or discard this patch.
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
                                         <div class="media-left">
174 174
                                             <a href="#">
175 175
                                                 <?php
176
-                                                $commentAva = \App::$Alias->scriptUrl . '/upload/user/avatar/small/default.jpg';
176
+                                                $commentAva = \App::$Alias->scriptUrl.'/upload/user/avatar/small/default.jpg';
177 177
                                                 if ($comment->user !== null && $comment->user->id > 0) {
178 178
                                                     $commentAva = $comment->user->profile->getAvatarUrl('small');
179 179
                                                 }
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
                         <li class="nav-item<?= (\App::$Request->getController() === 'Main' && \App::$Request->getAction() !== 'Index') ? ' active' : null ?>">
252 252
                             <?= Url::a(
253 253
                                                     ['#system-dropdown'],
254
-                                '<i class="fa fa-fire"></i> <span class="nav-text">' . __('System') . '</span>',
254
+                                '<i class="fa fa-fire"></i> <span class="nav-text">'.__('System').'</span>',
255 255
                                 [
256 256
                                     'class' => 'nav-container',
257 257
                                     'data-toggle' => 'collapse',
@@ -260,13 +260,13 @@  discard block
 block discarded – undo
260 260
                                                 )
261 261
                             ?>
262 262
 
263
-                            <?= $this->bootstrap()->nav('ul', ['class' => 'nav nav-pills nav-stacked collapse' . ((\App::$Request->getController() === 'Main' && \App::$Request->getAction() !== 'Index') ? 'in show' : null), 'id' => 'system-dropdown'])
264
-                                ->menu(['link' => ['main/settings'], 'text' => '<i class="fa fa-cogs"></i> ' . __('Settings'), 'html' => true])
265
-                                ->menu(['link' => ['main/files'], 'text' => '<i class="fa fa-file-o"></i> ' . __('Files'), 'html' => true])
266
-                                ->menu(['link' => ['main/antivirus'], 'text' => '<i class="fa fa-shield"></i> ' . __('Antivirus'), 'html' => true])
267
-                                ->menu(['link' => ['main/routing'], 'text' => '<i class="fa fa-code"></i> ' . __('Routing'), 'html' => true])
268
-                                ->menu(['link' => ['main/backup'], 'text' => '<i class="fa fa-hdd-o"></i> ' . __('Backup'), 'html' => true])
269
-                                ->menu(['link' => ['main/updates'], 'text' => '<i class="fa fa-gavel"></i> ' . __('Updates'), 'html' => true])
263
+                            <?= $this->bootstrap()->nav('ul', ['class' => 'nav nav-pills nav-stacked collapse'.((\App::$Request->getController() === 'Main' && \App::$Request->getAction() !== 'Index') ? 'in show' : null), 'id' => 'system-dropdown'])
264
+                                ->menu(['link' => ['main/settings'], 'text' => '<i class="fa fa-cogs"></i> '.__('Settings'), 'html' => true])
265
+                                ->menu(['link' => ['main/files'], 'text' => '<i class="fa fa-file-o"></i> '.__('Files'), 'html' => true])
266
+                                ->menu(['link' => ['main/antivirus'], 'text' => '<i class="fa fa-shield"></i> '.__('Antivirus'), 'html' => true])
267
+                                ->menu(['link' => ['main/routing'], 'text' => '<i class="fa fa-code"></i> '.__('Routing'), 'html' => true])
268
+                                ->menu(['link' => ['main/backup'], 'text' => '<i class="fa fa-hdd-o"></i> '.__('Backup'), 'html' => true])
269
+                                ->menu(['link' => ['main/updates'], 'text' => '<i class="fa fa-gavel"></i> '.__('Updates'), 'html' => true])
270 270
                                 ->display();
271 271
                             ?>
272 272
                         </li>
@@ -285,7 +285,7 @@  discard block
 block discarded – undo
285 285
                         <li class="nav-item<?= (array_key_exists(\App::$Request->getController(), $apps) || \App::$Request->getController() === 'Application') ? ' active' : null ?>">
286 286
                             <?= Url::a(
287 287
                             ['#apps-dropdown'],
288
-                                '<i class="fa fa-plug"></i> <span class="nav-text">' . __('Applications') . '</span>',
288
+                                '<i class="fa fa-plug"></i> <span class="nav-text">'.__('Applications').'</span>',
289 289
                                 [
290 290
                                     'class' => 'nav-container',
291 291
                                     'data-toggle' => 'collapse',
@@ -295,19 +295,19 @@  discard block
 block discarded – undo
295 295
                             ?>
296 296
 
297 297
                             <?php
298
-                            $appMenu = $this->bootstrap()->nav('ul', ['class' => 'nav nav-pills nav-stacked collapse' . ((array_key_exists(\App::$Request->getController(), $apps) || \App::$Request->getController() === 'Application') ? 'in show' : null), 'id' => 'apps-dropdown']);
298
+                            $appMenu = $this->bootstrap()->nav('ul', ['class' => 'nav nav-pills nav-stacked collapse'.((array_key_exists(\App::$Request->getController(), $apps) || \App::$Request->getController() === 'Application') ? 'in show' : null), 'id' => 'apps-dropdown']);
299 299
                             foreach ($apps as $app) {
300 300
                                 /** @var \Apps\ActiveRecord\App $app */
301
-                                $appMenu->menu(['link' => [Str::lowerCase($app->sys_name) . '/index'], 'text' => $app->getLocaleName()]);
301
+                                $appMenu->menu(['link' => [Str::lowerCase($app->sys_name).'/index'], 'text' => $app->getLocaleName()]);
302 302
                             }
303
-                            $appMenu->menu(['link' => 'application/index', 'text' => __('All apps') . '...']);
303
+                            $appMenu->menu(['link' => 'application/index', 'text' => __('All apps').'...']);
304 304
                             echo $appMenu->display();
305 305
                             ?>
306 306
                         </li>
307 307
                         <li class="nav-item<?= (array_key_exists(\App::$Request->getController(), $widgets) || \App::$Request->getController() === 'Widget') ? ' active' : null ?>">
308 308
                             <?= Url::a(
309 309
                                 ['#widgets-dropdown'],
310
-                                '<i class="fa fa-puzzle-piece"></i> <span class="nav-text">' . __('Widgets') . '</span>',
310
+                                '<i class="fa fa-puzzle-piece"></i> <span class="nav-text">'.__('Widgets').'</span>',
311 311
                                 [
312 312
                                     'class' => 'nav-container',
313 313
                                     'data-toggle' => 'collapse',
@@ -317,12 +317,12 @@  discard block
 block discarded – undo
317 317
                             ?>
318 318
 
319 319
                             <?php
320
-                            $widgetMenu = $this->bootstrap()->nav('ul', ['class' => 'nav nav-pills nav-stacked collapse' . ((array_key_exists(\App::$Request->getController(), $widgets) || \App::$Request->getController() === 'Widget') ? 'in show' : null), 'id' => 'widgets-dropdown']);
320
+                            $widgetMenu = $this->bootstrap()->nav('ul', ['class' => 'nav nav-pills nav-stacked collapse'.((array_key_exists(\App::$Request->getController(), $widgets) || \App::$Request->getController() === 'Widget') ? 'in show' : null), 'id' => 'widgets-dropdown']);
321 321
                             foreach ($widgets as $widget) {
322 322
                                 /** @var \Apps\ActiveRecord\App $widget */
323
-                                $widgetMenu->menu(['link' => [Str::lowerCase($widget->sys_name) . '/index'], 'text' => $widget->getLocaleName()]);
323
+                                $widgetMenu->menu(['link' => [Str::lowerCase($widget->sys_name).'/index'], 'text' => $widget->getLocaleName()]);
324 324
                             }
325
-                            $widgetMenu->menu(['link' => 'widget/index', 'text' => __('All widgets') . '...']);
325
+                            $widgetMenu->menu(['link' => 'widget/index', 'text' => __('All widgets').'...']);
326 326
                             echo $widgetMenu->display();
327 327
                             ?>
328 328
                         </li>
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.