@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | <?php if (\App::$Debug): ?> |
28 | 28 | <?= \App::$Debug->renderHead() ?> |
29 | 29 | <?php endif; ?> |
30 | - <?php if (!isset($fullgrid)){ $fullgrid = false; } ?> |
|
30 | + <?php if (!isset($fullgrid)) { $fullgrid = false; } ?> |
|
31 | 31 | </head> |
32 | 32 | <body class="bg-light"> |
33 | 33 | |
@@ -41,15 +41,15 @@ discard block |
||
41 | 41 | |
42 | 42 | if (\App::$User->isAuth()) { |
43 | 43 | $userId = \App::$User->identity()->getId(); |
44 | - $navbar->menu('right', ['text' => __('Account') . ' <span class="badge" id="summary-count-block">0</span>', 'dropdown' => [ |
|
44 | + $navbar->menu('right', ['text' => __('Account').' <span class="badge" id="summary-count-block">0</span>', 'dropdown' => [ |
|
45 | 45 | ['text' => __('My profile'), 'link' => ['profile/show', [$userId]]], |
46 | - ['text' => __('Messages') . ' <span class="badge" id="pm-count-block">0</span>', 'link' => ['profile/messages'], 'class' => 'dropdown-item', 'html' => true], |
|
46 | + ['text' => __('Messages').' <span class="badge" id="pm-count-block">0</span>', 'link' => ['profile/messages'], 'class' => 'dropdown-item', 'html' => true], |
|
47 | 47 | ['text' => __('Feed'), 'link' => ['profile/feed'], 'class' => 'dropdown-item'], |
48 | - ['text' => __('Notifications') . ' <span class="badge" id="notify-count-block">0</span>', 'link' => ['profile/notifications'], 'class' => 'dropdown-item', 'html' => true], |
|
48 | + ['text' => __('Notifications').' <span class="badge" id="notify-count-block">0</span>', 'link' => ['profile/notifications'], 'class' => 'dropdown-item', 'html' => true], |
|
49 | 49 | ['text' => __('Settings'), 'link' => ['profile/settings'], 'class' => 'dropdown-item'], |
50 | 50 | ], 'properties' => ['html' => true]]); |
51 | 51 | if (\App::$User->identity()->role->can('Admin/Main/Index')) { |
52 | - $navbar->menu('right', ['text' => __('Admin'), 'link' => \App::$Alias->scriptUrl . '/admin']); |
|
52 | + $navbar->menu('right', ['text' => __('Admin'), 'link' => \App::$Alias->scriptUrl.'/admin']); |
|
53 | 53 | } |
54 | 54 | $navbar->menu('right', ['text' => __('Logout'), 'link' => ['user/logout']]); |
55 | 55 | } else { |
@@ -14,7 +14,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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']) . " "; |
|
146 | + echo Url::a(['content/tag', [urlencode($tag)]], $tag, ['class' => 'badge badge-secondary'])." "; |
|
147 | 147 | } |
148 | 148 | ?> |
149 | 149 | </span> |
@@ -20,10 +20,10 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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"> |
@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | </li> |
226 | 226 | <li class="nav-item<?= \App::$Request->getController() === 'Main' ? ' active' : null ?>"> |
227 | 227 | <?= Url::a(['#system-dropdown'], |
228 | - '<i class="fa fa-fire"></i> <span class="nav-text">' . __('System') . '</span>', |
|
228 | + '<i class="fa fa-fire"></i> <span class="nav-text">'.__('System').'</span>', |
|
229 | 229 | [ |
230 | 230 | 'class' => 'nav-container', |
231 | 231 | 'data-toggle' => 'collapse', |
@@ -233,12 +233,12 @@ discard block |
||
233 | 233 | ]) |
234 | 234 | ?> |
235 | 235 | |
236 | - <?= $this->bootstrap()->nav('ul', ['class' => 'nav nav-pills nav-stacked collapse' . (\App::$Request->getController() === 'Main' ? 'in show' : null), 'id' => 'system-dropdown']) |
|
237 | - ->menu(['link' => ['main/settings'], 'text' => '<i class="fa fa-cogs"></i> ' . __('Settings'), 'html' => true]) |
|
238 | - ->menu(['link' => ['main/files'], 'text' => '<i class="fa fa-file-o"></i> ' . __('Files'), 'html' => true]) |
|
239 | - ->menu(['link' => ['main/antivirus'], 'text' => '<i class="fa fa-shield"></i> ' . __('Antivirus'), 'html' => true]) |
|
240 | - ->menu(['link' => ['main/routing'], 'text' => '<i class="fa fa-code"></i> ' . __('Routing'), 'html' => true]) |
|
241 | - ->menu(['link' => ['main/updates'], 'text' => '<i class="fa fa-gavel"></i> ' . __('Updates'), 'html' => true]) |
|
236 | + <?= $this->bootstrap()->nav('ul', ['class' => 'nav nav-pills nav-stacked collapse'.(\App::$Request->getController() === 'Main' ? 'in show' : null), 'id' => 'system-dropdown']) |
|
237 | + ->menu(['link' => ['main/settings'], 'text' => '<i class="fa fa-cogs"></i> '.__('Settings'), 'html' => true]) |
|
238 | + ->menu(['link' => ['main/files'], 'text' => '<i class="fa fa-file-o"></i> '.__('Files'), 'html' => true]) |
|
239 | + ->menu(['link' => ['main/antivirus'], 'text' => '<i class="fa fa-shield"></i> '.__('Antivirus'), 'html' => true]) |
|
240 | + ->menu(['link' => ['main/routing'], 'text' => '<i class="fa fa-code"></i> '.__('Routing'), 'html' => true]) |
|
241 | + ->menu(['link' => ['main/updates'], 'text' => '<i class="fa fa-gavel"></i> '.__('Updates'), 'html' => true]) |
|
242 | 242 | ->display(); |
243 | 243 | ?> |
244 | 244 | </li> |
@@ -256,7 +256,7 @@ discard block |
||
256 | 256 | ?> |
257 | 257 | <li class="nav-item<?= array_key_exists(\App::$Request->getController(), $apps) ? ' active' : null ?>"> |
258 | 258 | <?= Url::a(['#apps-dropdown'], |
259 | - '<i class="fa fa-plug"></i> <span class="nav-text">' . __('Applications') . '</span>', |
|
259 | + '<i class="fa fa-plug"></i> <span class="nav-text">'.__('Applications').'</span>', |
|
260 | 260 | [ |
261 | 261 | 'class' => 'nav-container', |
262 | 262 | 'data-toggle' => 'collapse', |
@@ -265,17 +265,17 @@ discard block |
||
265 | 265 | ?> |
266 | 266 | |
267 | 267 | <?php |
268 | - $appMenu = $this->bootstrap()->nav('ul', ['class' => 'nav nav-pills nav-stacked collapse' . (array_key_exists(\App::$Request->getController(), $apps) ? 'in show' : null), 'id' => 'apps-dropdown']); |
|
268 | + $appMenu = $this->bootstrap()->nav('ul', ['class' => 'nav nav-pills nav-stacked collapse'.(array_key_exists(\App::$Request->getController(), $apps) ? 'in show' : null), 'id' => 'apps-dropdown']); |
|
269 | 269 | foreach ($apps as $app) { |
270 | 270 | /** @var \Apps\ActiveRecord\App $app */ |
271 | - $appMenu->menu(['link' => [Str::lowerCase($app->sys_name) . '/index'], 'text' => $app->getLocaleName()]); |
|
271 | + $appMenu->menu(['link' => [Str::lowerCase($app->sys_name).'/index'], 'text' => $app->getLocaleName()]); |
|
272 | 272 | } |
273 | 273 | echo $appMenu->display(); |
274 | 274 | ?> |
275 | 275 | </li> |
276 | 276 | <li class="nav-item<?= array_key_exists(\App::$Request->getController(), $widgets) ? ' active' : null ?>"> |
277 | 277 | <?= Url::a(['#widgets-dropdown'], |
278 | - '<i class="fa fa-puzzle-piece"></i> <span class="nav-text">' . __('Widgets') . '</span>', |
|
278 | + '<i class="fa fa-puzzle-piece"></i> <span class="nav-text">'.__('Widgets').'</span>', |
|
279 | 279 | [ |
280 | 280 | 'class' => 'nav-container', |
281 | 281 | 'data-toggle' => 'collapse', |
@@ -284,10 +284,10 @@ discard block |
||
284 | 284 | ?> |
285 | 285 | |
286 | 286 | <?php |
287 | - $widgetMenu = $this->bootstrap()->nav('ul', ['class' => 'nav nav-pills nav-stacked collapse' . (array_key_exists(\App::$Request->getController(), $widgets) ? 'in show' : null), 'id' => 'widgets-dropdown']); |
|
287 | + $widgetMenu = $this->bootstrap()->nav('ul', ['class' => 'nav nav-pills nav-stacked collapse'.(array_key_exists(\App::$Request->getController(), $widgets) ? 'in show' : null), 'id' => 'widgets-dropdown']); |
|
288 | 288 | foreach ($widgets as $widget) { |
289 | 289 | /** @var \Apps\ActiveRecord\App $widget */ |
290 | - $widgetMenu->menu(['link' => [Str::lowerCase($widget->sys_name) . '/index'], 'text' => $widget->getLocaleName()]); |
|
290 | + $widgetMenu->menu(['link' => [Str::lowerCase($widget->sys_name).'/index'], 'text' => $widget->getLocaleName()]); |
|
291 | 291 | } |
292 | 292 | echo $widgetMenu->display(); |
293 | 293 | ?> |
@@ -51,7 +51,7 @@ |
||
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) . " "; |
|
54 | + echo $this->bootstrap()->badge(($status ? 'success' : 'danger'), $dir)." "; |
|
55 | 55 | } |
56 | 56 | ?> |
57 | 57 | <hr /> |
@@ -45,8 +45,8 @@ discard block |
||
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 |
||
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(); |