@@ -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"> |
@@ -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(); |
@@ -50,7 +50,7 @@ discard block |
||
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 |
||
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()) { |
@@ -83,7 +83,7 @@ discard block |
||
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 |
||
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 |
@@ -37,9 +37,9 @@ discard block |
||
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 |
||
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 |
||
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() ?> |
@@ -5,6 +5,6 @@ |
||
5 | 5 | |
6 | 6 | ?> |
7 | 7 | <?php if (isset($controller)): ?> |
8 | - <a href="<?= Url::to($controller . '/index') ?>"><i class="fa fa-cogs"></i></a> |
|
8 | + <a href="<?= Url::to($controller.'/index') ?>"><i class="fa fa-cogs"></i></a> |
|
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 |
@@ -36,11 +36,11 @@ discard block |
||
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 |
||
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 |
||
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 |
@@ -82,7 +82,7 @@ discard block |
||
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 |
||
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 |