Passed
Push — master ( 313c53...eadb07 )
by Mihail
04:44
created
Apps/View/Front/default/content/list.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
 
15 15
 $catConfigs = [];
16 16
 foreach ($model->category['configs'] as $key=>$value) {
17
-    $catConfigs[$key] = (bool)$value;
17
+    $catConfigs[$key] = (bool) $value;
18 18
 }
19 19
 $catMeta = [
20 20
     'date' => $catConfigs['showDate'],
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
 <?php foreach ($model->items as $item): ?>
72 72
     <article class="article-item" itemscope="itemscope" itemtype="https://schema.org/NewsArticle">
73 73
         <h2 itemprop="name">
74
-            <a href="<?= \App::$Alias->baseUrl . $item['uri'] ?>">
74
+            <a href="<?= \App::$Alias->baseUrl.$item['uri'] ?>">
75 75
                 <?= $item['title'] ?>
76 76
             </a>
77 77
             <?php if ($item['important']): ?>
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
                         <?php
102 102
                         $ownerNick = $item['author']->profile === null ? __('Unknown') : $item['author']->profile->getNickname();
103 103
                         if ($item['author']->getId() < 1) {
104
-                            echo '<s>' . $ownerNick . '</s>';
104
+                            echo '<s>'.$ownerNick.'</s>';
105 105
                         } else {
106 106
                             echo Url::a(['profile/show', [$item['author']->getId()]], $ownerNick, ['itemprop' => 'author']);
107 107
                         }
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
         <div class="row">
119 119
             <div class="col-md-12">
120 120
                 <?php if ($catConfigs['showPoster'] === true && $item['thumb'] !== null): ?>
121
-                    <img src="<?= \App::$Alias->scriptUrl . $item['thumb'] ?>" class="image_poster img-thumbnail d-none d-sm-block" alt="<?= __('Poster for') ?>: <?= Str::lowerCase($item['title']) ?>" />
121
+                    <img src="<?= \App::$Alias->scriptUrl.$item['thumb'] ?>" class="image_poster img-thumbnail d-none d-sm-block" alt="<?= __('Poster for') ?>: <?= Str::lowerCase($item['title']) ?>" />
122 122
                 <?php endif; ?>
123 123
                 <div itemprop="text articleBody">
124 124
                     <?= $item['text'] ?>
@@ -135,15 +135,15 @@  discard block
 block discarded – undo
135 135
             }*/ ?>
136 136
 
137 137
             <span class="spaced"><i class="fa fa-comment-o"></i>
138
-                <a href="<?= \App::$Alias->baseUrl . $item['uri'] ?>#comments-list"><?= __('Comments') ?>: <span itemprop="commentCount" id="comment-count-<?= $item['id'] ?>">0</span></a>
138
+                <a href="<?= \App::$Alias->baseUrl.$item['uri'] ?>#comments-list"><?= __('Comments') ?>: <span itemprop="commentCount" id="comment-count-<?= $item['id'] ?>">0</span></a>
139 139
             </span>
140 140
             <span class="float-right">
141
-            <?php if ((int)$catConfigs['showTags'] === 1 && $item['tags'] !== null && Any::isArray($item['tags'])): ?>
141
+            <?php if ((int) $catConfigs['showTags'] === 1 && $item['tags'] !== null && Any::isArray($item['tags'])): ?>
142 142
                 <span class="spaced"><i class="fa fa-tags"></i>
143 143
                     <?php
144 144
                     foreach ($item['tags'] as $tag) {
145 145
                         $tag = trim($tag);
146
-                        echo Url::a(['content/tag', [urlencode($tag)]], $tag, ['class' => 'badge badge-secondary']) . "&nbsp;";
146
+                        echo Url::a(['content/tag', [urlencode($tag)]], $tag, ['class' => 'badge badge-secondary'])."&nbsp;";
147 147
                     }
148 148
                     ?>
149 149
                 </span>
Please login to merge, or discard this patch.
Apps/View/Front/default/profile/show.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -20,10 +20,10 @@  discard block
 block discarded – undo
20 20
 $name = $user->profile === null ? __('Unknown') : $user->profile->getNickname();
21 21
 
22 22
 $this->layout('_layouts/default', [
23
-    'title' => __('Profile') . ': ' . $name,
23
+    'title' => __('Profile').': '.$name,
24 24
     'breadcrumbs' => [
25 25
         Url::to('/') => __('Home'),
26
-        __('Profile') . ': ' . $name
26
+        __('Profile').': '.$name
27 27
     ]
28 28
 ]);
29 29
 
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
         <img src="<?= $user->profile->getAvatarUrl('big') ?>" class="img-fluid img-thumbnail" />
44 44
         <?php if ($ratingOn):
45 45
             $rateClass = 'btn-secondary';
46
-            $rateValue = (int)$user->profile->rating;
46
+            $rateValue = (int) $user->profile->rating;
47 47
             if ($user->profile->rating > 0) {
48 48
                 $rateClass = 'btn-info';
49 49
             } elseif ($user->profile->rating < 0) {
@@ -80,11 +80,11 @@  discard block
 block discarded – undo
80 80
         <?php
81 81
         $userMenu = $this->bootstrap()->nav('ul', ['class' => 'nav-tabs flex-column']);
82 82
         if ($isSelf) {
83
-            $userMenu->menu(['link' => ['profile/feed'], 'text' => '<i class="fa fa-rss-square"></i> ' . __('Feed'), 'html' => true]);
84
-            $userMenu->menu(['link' => ['profile/avatar'], 'text' => '<i class="fa fa-camera"></i> ' . __('Avatar'), 'html' => true]);
85
-            $userMenu->menu(['link' => ['profile/messages'], 'text' => '<i class="fa fa-envelope"></i> ' . __('Messages') . ' <span class="badge pm-count-block">0</span>', 'html' => true]);
86
-            $userMenu->menu(['link' => ['profile/settings'], 'text' => '<i class="fa fa-cogs"></i> ' . __('Settings'), 'html' => true]);
87
-        } else if(\App::$User->isAuth()) {
83
+            $userMenu->menu(['link' => ['profile/feed'], 'text' => '<i class="fa fa-rss-square"></i> '.__('Feed'), 'html' => true]);
84
+            $userMenu->menu(['link' => ['profile/avatar'], 'text' => '<i class="fa fa-camera"></i> '.__('Avatar'), 'html' => true]);
85
+            $userMenu->menu(['link' => ['profile/messages'], 'text' => '<i class="fa fa-envelope"></i> '.__('Messages').' <span class="badge pm-count-block">0</span>', 'html' => true]);
86
+            $userMenu->menu(['link' => ['profile/settings'], 'text' => '<i class="fa fa-cogs"></i> '.__('Settings'), 'html' => true]);
87
+        } else if (\App::$User->isAuth()) {
88 88
             $userMenu->menu(['link' => ['profile/messages', null, ['newdialog' => $user->id]], 'text' => __('Write message')]);
89 89
             $userMenu->menu(['link' => ['profile/ignore', null, ['id' => $user->id]], 'text' => __('Block')]);
90 90
         }
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
                             foreach ($hobbyArray as $item) {
161 161
                                 $item = \App::$Security->strip_tags($item);
162 162
                                 if (!Str::likeEmpty($item)) {
163
-                                    echo Url::a(['profile/index', ['hobby', trim($item, ' ')]], $item, ['class' => 'badge badge-secondary']) . ' ';
163
+                                    echo Url::a(['profile/index', ['hobby', trim($item, ' ')]], $item, ['class' => 'badge badge-secondary']).' ';
164 164
                                 }
165 165
                             }
166 166
                             ?>
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
                     <div class="col-xs-8 col-md-10">
214 214
                         <div class="h5" style="margin-top: 0;margin-bottom: 5px;">
215 215
                             <i class="glyphicon glyphicon-user"></i>
216
-                            <?= Url::a(['profile/show', [$post->sender_id]], $post->senderUser->profile->getNickname(), ['style' => 'color: ' . $post->senderUser->role->color]) ?>
216
+                            <?= Url::a(['profile/show', [$post->sender_id]], $post->senderUser->profile->getNickname(), ['style' => 'color: '.$post->senderUser->role->color]) ?>
217 217
                             <small class="float-right"><?= Date::humanize($post->updated_at); ?></small>
218 218
                         </div>
219 219
                         <div class="object-text">
Please login to merge, or discard this patch.
Apps/View/Admin/default/main/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
         <h3><?= __('Directories and files') ?></h3>
52 52
         <?php
53 53
         foreach ($check->chmodCheck as $dir => $status) {
54
-            echo $this->bootstrap()->badge(($status ? 'success' : 'danger'), $dir) . "&nbsp;";
54
+            echo $this->bootstrap()->badge(($status ? 'success' : 'danger'), $dir)."&nbsp;";
55 55
         }
56 56
         ?>
57 57
         <hr />
Please login to merge, or discard this patch.
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/settings.php 1 patch
Spacing   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -20,54 +20,54 @@
 block discarded – undo
20 20
 
21 21
 <?= $this->bootstrap()->nav('ul', ['class' => 'nav-tabs'])
22 22
     ->menu(['text' => __('Base'), 'tab' => function() use ($form) {
23
-        return $form->fieldset()->text('baseDomain', ['class' => 'form-control'], __('Main domain of website. Use only in console or cron tasks, if domain cannot be defined from request string')) .
24
-            $form->fieldset()->radio('baseProto', ['options' => ['http', 'https']], __('Main website transfer protocol. Use only if request data is not available in console or cron tasks')) .
25
-            $form->fieldset()->text('basePath', ['class' => 'form-control'], __('FFCMS installation sub-directory, used if installed not in root. Example: /subdir/')) .
26
-            $form->fieldset()->select('timezone', ['class' => 'form-control', 'options' => DateTimeZone::listIdentifiers()], __('Define website default timezone id')) .
27
-            $form->fieldset()->boolean('userCron', null, __('Initialize cron manager when user load website? Enable this option if you are not configured cron tasks in your operation system')) .
28
-            $form->fieldset()->boolean('debug.all', null, __('Enable debug bar panel for all visitors? Recommended only on development environment')) .
23
+        return $form->fieldset()->text('baseDomain', ['class' => 'form-control'], __('Main domain of website. Use only in console or cron tasks, if domain cannot be defined from request string')).
24
+            $form->fieldset()->radio('baseProto', ['options' => ['http', 'https']], __('Main website transfer protocol. Use only if request data is not available in console or cron tasks')).
25
+            $form->fieldset()->text('basePath', ['class' => 'form-control'], __('FFCMS installation sub-directory, used if installed not in root. Example: /subdir/')).
26
+            $form->fieldset()->select('timezone', ['class' => 'form-control', 'options' => DateTimeZone::listIdentifiers()], __('Define website default timezone id')).
27
+            $form->fieldset()->boolean('userCron', null, __('Initialize cron manager when user load website? Enable this option if you are not configured cron tasks in your operation system')).
28
+            $form->fieldset()->boolean('debug.all', null, __('Enable debug bar panel for all visitors? Recommended only on development environment')).
29 29
             $form->fieldset()->boolean('testSuite', null, __('Enable codeception test suite adapter? Use this option ONLY to run codeception tests! Disable this option on production'));
30 30
     }, 'linkProperties' => ['class' => 'nav-link active']])
31 31
     ->menu(['text' => __('Themes'), 'tab' => function() use ($form, $model) {
32
-        return $form->fieldset()->select('theme.Front', ['class' => 'form-control', 'options' => $model->getAvailableThemes('Front')], __('Set theme for user part of website')) .
32
+        return $form->fieldset()->select('theme.Front', ['class' => 'form-control', 'options' => $model->getAvailableThemes('Front')], __('Set theme for user part of website')).
33 33
             $form->fieldset()->select('theme.Admin', ['class' => 'form-control', 'options' => $model->getAvailableThemes('Admin')], __('Set theme for admin panel'));
34 34
     }])
35 35
     ->menu(['text' => __('Mail'), 'tab' => function() use ($form) {
36
-        return '<p>' . __('Configure sendmail over smtp server. You should set host:port and auth data for your smtp server') . '</p>' .
37
-            $form->fieldset()->text('mail.host', ['class' => 'form-control'], __('Set SMTP hostname or ip')) .
38
-            $form->fieldset()->text('mail.port', ['class' => 'form-control'], __('Set SMTP connection port')) .
39
-            $form->fieldset()->select('mail.encrypt', ['class' => 'form-control', 'options' => ['tls', 'ssl', 'none']], __('Set encryption method for your smtp server. For remote service we are strongly recommend use tls/ssl encryption')) .
40
-            $form->fieldset()->text('mail.user', ['class' => 'form-control'], __('Set auth user name if required')) .
36
+        return '<p>'.__('Configure sendmail over smtp server. You should set host:port and auth data for your smtp server').'</p>'.
37
+            $form->fieldset()->text('mail.host', ['class' => 'form-control'], __('Set SMTP hostname or ip')).
38
+            $form->fieldset()->text('mail.port', ['class' => 'form-control'], __('Set SMTP connection port')).
39
+            $form->fieldset()->select('mail.encrypt', ['class' => 'form-control', 'options' => ['tls', 'ssl', 'none']], __('Set encryption method for your smtp server. For remote service we are strongly recommend use tls/ssl encryption')).
40
+            $form->fieldset()->text('mail.user', ['class' => 'form-control'], __('Set auth user name if required')).
41 41
             $form->fieldset()->text('mail.password', ['class' => 'form-control'], __('Set auth user password if exist'));
42 42
     }])
43 43
     ->menu(['text' => __('Localization'), 'tab' => function() use ($form) {
44
-        return $form->fieldset()->select('singleLanguage', ['class' => 'form-control', 'options' => \App::$Translate->getAvailableLangs()], __('Default language of website')) .
45
-            $form->fieldset()->boolean('multiLanguage', null, __('Must we use multi language system in site pathway')) .
46
-            $form->fieldset()->text('baseLanguage', ['class' => 'form-control', 'disabled' => null], __('Website base script language. Do not change it')) .
44
+        return $form->fieldset()->select('singleLanguage', ['class' => 'form-control', 'options' => \App::$Translate->getAvailableLangs()], __('Default language of website')).
45
+            $form->fieldset()->boolean('multiLanguage', null, __('Must we use multi language system in site pathway')).
46
+            $form->fieldset()->text('baseLanguage', ['class' => 'form-control', 'disabled' => null], __('Website base script language. Do not change it')).
47 47
             $form->fieldset()->checkboxes('languages', ['options' => App::$Translate->getAvailableLangs()], __('Website available languages'));
48 48
 
49 49
     }])
50 50
     ->menu(['text' => __('Database'), 'tab' => function() use ($form) {
51
-        return '<p>' . __('Do not change any information in this tab if you not sure what you do!') . '</p>' .
52
-            $form->fieldset()->select('database.driver', ['class' => 'form-control', 'options' => ['mysql', 'sqlite', 'pgsql']], __('Database connection driver')) .
53
-            $form->fieldset()->text('database.host', ['class' => 'form-control'], __('Database connection host name')) .
54
-            $form->fieldset()->text('database.database', ['class' => 'form-control'], __('Database name or path to sqlite created file database')) .
55
-            $form->fieldset()->text('database.username', ['class' => 'form-control'], __('User name for database connection')) .
56
-            $form->fieldset()->text('database.password', ['class' => 'form-control'], __('Password for user of database connection')) .
57
-            $form->fieldset()->text('database.charset', ['class' => 'form-control']) .
58
-            $form->fieldset()->text('database.collation', ['class' => 'form-control']) .
51
+        return '<p>'.__('Do not change any information in this tab if you not sure what you do!').'</p>'.
52
+            $form->fieldset()->select('database.driver', ['class' => 'form-control', 'options' => ['mysql', 'sqlite', 'pgsql']], __('Database connection driver')).
53
+            $form->fieldset()->text('database.host', ['class' => 'form-control'], __('Database connection host name')).
54
+            $form->fieldset()->text('database.database', ['class' => 'form-control'], __('Database name or path to sqlite created file database')).
55
+            $form->fieldset()->text('database.username', ['class' => 'form-control'], __('User name for database connection')).
56
+            $form->fieldset()->text('database.password', ['class' => 'form-control'], __('Password for user of database connection')).
57
+            $form->fieldset()->text('database.charset', ['class' => 'form-control']).
58
+            $form->fieldset()->text('database.collation', ['class' => 'form-control']).
59 59
             $form->fieldset()->text('database.prefix', ['class' => 'form-control'], __('Database tables prefix'));
60 60
     }])
61 61
     ->menu(['text' => __('Debug'), 'tab' => function() use ($form){
62
-        return '<p>' . __('The key-value of cookie to enable debugging on website') . '. ' . __('If user got this cookie he can see debug bar') . '. ' .
63
-            Url::a(['main/debugcookie'], __('Set cookie for me')) . '</p>' .
64
-            $form->fieldset()->text('debug.cookie.key', ['class' => 'form-control'], __('Set cookie name(key) for enable debug bar panel')) .
62
+        return '<p>'.__('The key-value of cookie to enable debugging on website').'. '.__('If user got this cookie he can see debug bar').'. '.
63
+            Url::a(['main/debugcookie'], __('Set cookie for me')).'</p>'.
64
+            $form->fieldset()->text('debug.cookie.key', ['class' => 'form-control'], __('Set cookie name(key) for enable debug bar panel')).
65 65
             $form->fieldset()->text('debug.cookie.value', ['class' => 'form-control'], __('Set cookie value for enable debug bar panel'));
66 66
     }])
67 67
     ->menu(['text' => __('Other'), 'tab' => function() use ($form){
68
-        return '<p>' . __('There you can change specified configs depends of other platforms. GA = google analytics.') . '</p>' .
69
-            $form->fieldset()->text('gaClientId', ['class' => 'form-control'], __('Google oAuth2 client id. This id will be used to display google.analytics info. Client ID looks like: xxxxxx.apps.googleusercontent.com')) .
70
-            $form->fieldset()->text('gaTrackId', ['class' => 'form-control'], __('Set google analytics tracking id for your website. Track id looks like: UA-XXXXXX-Y')) .
68
+        return '<p>'.__('There you can change specified configs depends of other platforms. GA = google analytics.').'</p>'.
69
+            $form->fieldset()->text('gaClientId', ['class' => 'form-control'], __('Google oAuth2 client id. This id will be used to display google.analytics info. Client ID looks like: xxxxxx.apps.googleusercontent.com')).
70
+            $form->fieldset()->text('gaTrackId', ['class' => 'form-control'], __('Set google analytics tracking id for your website. Track id looks like: UA-XXXXXX-Y')).
71 71
             $form->fieldset()->text('trustedProxy', ['class' => 'form-control'], __('Set trusted proxy list to accept X-FORWARDED data. Example: 103.21.244.15,103.22.200.0/22'));
72 72
     }])
73 73
     ->display(); ?>
Please login to merge, or discard this patch.
Apps/Controller/Admin/Main.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     public function actionFiles(): ?string
51 51
     {
52 52
         return $this->view->render('main/files', [
53
-            'connector' => App::$Alias->scriptUrl . '/api/main/files?lang=' . $this->request->getLanguage()
53
+            'connector' => App::$Alias->scriptUrl.'/api/main/files?lang='.$this->request->getLanguage()
54 54
         ]);
55 55
     }
56 56
 
@@ -115,9 +115,9 @@  discard block
 block discarded – undo
115 115
      */
116 116
     public function actionDeleteroute(): ?string
117 117
     {
118
-        $type = (string)$this->request->query->get('type');
119
-        $loader = (string)$this->request->query->get('loader');
120
-        $source = Str::lowerCase((string)$this->request->query->get('path'));
118
+        $type = (string) $this->request->query->get('type');
119
+        $loader = (string) $this->request->query->get('loader');
120
+        $source = Str::lowerCase((string) $this->request->query->get('path'));
121 121
 
122 122
         $model = new EntityDeleteRoute($type, $loader, $source);
123 123
         if ($model->send() && $model->validate()) {
Please login to merge, or discard this patch.
Apps/Controller/Admin/Application.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
         $search = \Apps\ActiveRecord\App::getItem('app', $controller);
84 84
 
85 85
         // check what we got
86
-        if ($search === null || (int)$search->id < 1) {
86
+        if ($search === null || (int) $search->id < 1) {
87 87
             throw new NotFoundException('App is not founded');
88 88
         }
89 89
 
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
         $search = \Apps\ActiveRecord\App::where('sys_name', '=', $controllerName)
116 116
             ->where('type', '=', 'app')
117 117
             ->first();
118
-        if (!$search || (int)$search->id < 1) {
118
+        if (!$search || (int) $search->id < 1) {
119 119
             throw new ForbiddenException('App is not founded');
120 120
         }
121 121
 
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/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.