@@ -41,7 +41,7 @@ |
||
| 41 | 41 | |
| 42 | 42 | // initialize model with answer add if thread is not closed |
| 43 | 43 | $model = null; |
| 44 | - if ((int)$record->closed !== 1) { |
|
| 44 | + if ((int) $record->closed !== 1) { |
|
| 45 | 45 | $model = new FormAnswerAdd($record); |
| 46 | 46 | if ($model->send()) { |
| 47 | 47 | if ($model->validate()) { |
@@ -39,18 +39,18 @@ discard block |
||
| 39 | 39 | { |
| 40 | 40 | // get configs |
| 41 | 41 | $configs = $this->getConfigs(); |
| 42 | - if (!App::$User->isAuth() && !(bool)$configs['guestAdd']) { |
|
| 42 | + if (!App::$User->isAuth() && !(bool) $configs['guestAdd']) { |
|
| 43 | 43 | throw new ForbiddenException(__('Feedback available only for authorized users')); |
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | // initialize model |
| 47 | - $model = new FormFeedbackAdd((bool)$configs['useCaptcha']); |
|
| 47 | + $model = new FormFeedbackAdd((bool) $configs['useCaptcha']); |
|
| 48 | 48 | if ($model->send()) { |
| 49 | 49 | if ($model->validate()) { |
| 50 | 50 | // if validation is passed save data to db and get row |
| 51 | 51 | $record = $model->make(); |
| 52 | 52 | App::$Session->getFlashBag()->add('success', __('Your message was added successful')); |
| 53 | - $this->response->redirect('feedback/read/' . $record->id . '/' . $record->hash); |
|
| 53 | + $this->response->redirect('feedback/read/'.$record->id.'/'.$record->hash); |
|
| 54 | 54 | } else { |
| 55 | 55 | App::$Session->getFlashBag()->add('error', __('Message is not sended! Please, fix issues in form below')); |
| 56 | 56 | } |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | // render output view |
| 60 | 60 | return $this->view->render('feedback/create', [ |
| 61 | 61 | 'model' => $model, |
| 62 | - 'useCaptcha' => (bool)$configs['useCaptcha'] |
|
| 62 | + 'useCaptcha' => (bool) $configs['useCaptcha'] |
|
| 63 | 63 | ]); |
| 64 | 64 | } |
| 65 | 65 | |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | |
| 91 | 91 | $model = null; |
| 92 | 92 | // check if feedback post is not closed for answers |
| 93 | - if (!(bool)$recordPost->closed) { |
|
| 93 | + if (!(bool) $recordPost->closed) { |
|
| 94 | 94 | // init new answer add model |
| 95 | 95 | $model = new FormAnswerAdd($recordPost); |
| 96 | 96 | // if answer is sender lets try to make it model |
@@ -133,10 +133,10 @@ discard block |
||
| 133 | 133 | // check if action is submited |
| 134 | 134 | if ($this->request->request->get('closeRequest', false)) { |
| 135 | 135 | // if created by authorized user |
| 136 | - if ((int)$record->user_id > 0) { |
|
| 136 | + if ((int) $record->user_id > 0) { |
|
| 137 | 137 | $user = App::$User->identity(); |
| 138 | 138 | // button is pressed not by request creator |
| 139 | - if (!$user || $user->getId() !== (int)$record->user_id) { |
|
| 139 | + if (!$user || $user->getId() !== (int) $record->user_id) { |
|
| 140 | 140 | throw new ForbiddenException(__('This feedback request was created by another user')); |
| 141 | 141 | } |
| 142 | 142 | } |
@@ -147,11 +147,11 @@ discard block |
||
| 147 | 147 | |
| 148 | 148 | // add notification and redirect |
| 149 | 149 | App::$Session->getFlashBag()->add('warning', __('Feedback request now is closed!')); |
| 150 | - $this->response->redirect('feedback/read/' . $id . '/' . $hash); |
|
| 150 | + $this->response->redirect('feedback/read/'.$id.'/'.$hash); |
|
| 151 | 151 | } |
| 152 | 152 | |
| 153 | 153 | return $this->view->render('feedback/close', [ |
| 154 | - 'id' => (int)$id, |
|
| 154 | + 'id' => (int) $id, |
|
| 155 | 155 | 'hash' => $hash |
| 156 | 156 | ]); |
| 157 | 157 | } |
@@ -164,7 +164,7 @@ discard block |
||
| 164 | 164 | public function actionList(): ?string |
| 165 | 165 | { |
| 166 | 166 | // set current page and offset |
| 167 | - $page = (int)$this->request->query->get('page'); |
|
| 167 | + $page = (int) $this->request->query->get('page'); |
|
| 168 | 168 | $offset = $page * self::ITEM_PER_PAGE; |
| 169 | 169 | |
| 170 | 170 | // check if user is authorized or throw exception |
@@ -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 { |
@@ -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(); |
@@ -128,7 +128,8 @@ discard block |
||
| 128 | 128 | <span class="text-sm">No feedback queries found</span> |
| 129 | 129 | </div> |
| 130 | 130 | </div> |
| 131 | - <?php else: ?> |
|
| 131 | + <?php else { |
|
| 132 | + : ?> |
|
| 132 | 133 | <?php foreach ($features->getFeedback() as $feed): ?> |
| 133 | 134 | <div class="media"> |
| 134 | 135 | <div class="media-left"> |
@@ -141,7 +142,9 @@ discard block |
||
| 141 | 142 | <span class="text-sm"><?= Text::snippet($feed->message, 100) ?></span> |
| 142 | 143 | </div> |
| 143 | 144 | </div> |
| 144 | - <?php endforeach; ?> |
|
| 145 | + <?php endforeach; |
|
| 146 | +} |
|
| 147 | +?> |
|
| 145 | 148 | <?php endif; ?> |
| 146 | 149 | </div> |
| 147 | 150 | |
@@ -163,7 +166,8 @@ discard block |
||
| 163 | 166 | <span class="text-sm">No comments found</span> |
| 164 | 167 | </div> |
| 165 | 168 | </div> |
| 166 | - <?php else: ?> |
|
| 169 | + <?php else { |
|
| 170 | + : ?> |
|
| 167 | 171 | <?php foreach ($features->getComments() as $comment): ?> |
| 168 | 172 | <?php /** @var \Apps\ActiveRecord\CommentPost $comment */ ?> |
| 169 | 173 | <div class="media"> |
@@ -171,6 +175,7 @@ discard block |
||
| 171 | 175 | <a href="#"> |
| 172 | 176 | <?php |
| 173 | 177 | $commentAva = \App::$Alias->scriptUrl . '/upload/user/avatar/small/default.jpg'; |
| 178 | +} |
|
| 174 | 179 | if ($comment->user !== null && $comment->user->id > 0) { |
| 175 | 180 | $commentAva = $comment->user->profile->getAvatarUrl('small'); |
| 176 | 181 | } |
@@ -170,7 +170,7 @@ discard block |
||
| 170 | 170 | <div class="media-left"> |
| 171 | 171 | <a href="#"> |
| 172 | 172 | <?php |
| 173 | - $commentAva = \App::$Alias->scriptUrl . '/upload/user/avatar/small/default.jpg'; |
|
| 173 | + $commentAva = \App::$Alias->scriptUrl.'/upload/user/avatar/small/default.jpg'; |
|
| 174 | 174 | if ($comment->user !== null && $comment->user->id > 0) { |
| 175 | 175 | $commentAva = $comment->user->profile->getAvatarUrl('small'); |
| 176 | 176 | } |
@@ -237,7 +237,7 @@ discard block |
||
| 237 | 237 | </li> |
| 238 | 238 | <li class="nav-item<?= (\App::$Request->getController() === 'Main' && \App::$Request->getAction() !== 'Index') ? ' active' : null ?>"> |
| 239 | 239 | <?= Url::a(['#system-dropdown'], |
| 240 | - '<i class="fa fa-fire"></i> <span class="nav-text">' . __('System') . '</span>', |
|
| 240 | + '<i class="fa fa-fire"></i> <span class="nav-text">'.__('System').'</span>', |
|
| 241 | 241 | [ |
| 242 | 242 | 'class' => 'nav-container', |
| 243 | 243 | 'data-toggle' => 'collapse', |
@@ -245,13 +245,13 @@ discard block |
||
| 245 | 245 | ]) |
| 246 | 246 | ?> |
| 247 | 247 | |
| 248 | - <?= $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']) |
|
| 249 | - ->menu(['link' => ['main/settings'], 'text' => '<i class="fa fa-cogs"></i> ' . __('Settings'), 'html' => true]) |
|
| 250 | - ->menu(['link' => ['main/files'], 'text' => '<i class="fa fa-file-o"></i> ' . __('Files'), 'html' => true]) |
|
| 251 | - ->menu(['link' => ['main/antivirus'], 'text' => '<i class="fa fa-shield"></i> ' . __('Antivirus'), 'html' => true]) |
|
| 252 | - ->menu(['link' => ['main/routing'], 'text' => '<i class="fa fa-code"></i> ' . __('Routing'), 'html' => true]) |
|
| 253 | - ->menu(['link' => ['main/backup'], 'text' => '<i class="fa fa-hdd-o"></i> ' . __('Backup'), 'html' => true]) |
|
| 254 | - ->menu(['link' => ['main/updates'], 'text' => '<i class="fa fa-gavel"></i> ' . __('Updates'), 'html' => true]) |
|
| 248 | + <?= $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']) |
|
| 249 | + ->menu(['link' => ['main/settings'], 'text' => '<i class="fa fa-cogs"></i> '.__('Settings'), 'html' => true]) |
|
| 250 | + ->menu(['link' => ['main/files'], 'text' => '<i class="fa fa-file-o"></i> '.__('Files'), 'html' => true]) |
|
| 251 | + ->menu(['link' => ['main/antivirus'], 'text' => '<i class="fa fa-shield"></i> '.__('Antivirus'), 'html' => true]) |
|
| 252 | + ->menu(['link' => ['main/routing'], 'text' => '<i class="fa fa-code"></i> '.__('Routing'), 'html' => true]) |
|
| 253 | + ->menu(['link' => ['main/backup'], 'text' => '<i class="fa fa-hdd-o"></i> '.__('Backup'), 'html' => true]) |
|
| 254 | + ->menu(['link' => ['main/updates'], 'text' => '<i class="fa fa-gavel"></i> '.__('Updates'), 'html' => true]) |
|
| 255 | 255 | ->display(); |
| 256 | 256 | ?> |
| 257 | 257 | </li> |
@@ -269,7 +269,7 @@ discard block |
||
| 269 | 269 | ?> |
| 270 | 270 | <li class="nav-item<?= array_key_exists(\App::$Request->getController(), $apps) ? ' active' : null ?>"> |
| 271 | 271 | <?= Url::a(['#apps-dropdown'], |
| 272 | - '<i class="fa fa-plug"></i> <span class="nav-text">' . __('Applications') . '</span>', |
|
| 272 | + '<i class="fa fa-plug"></i> <span class="nav-text">'.__('Applications').'</span>', |
|
| 273 | 273 | [ |
| 274 | 274 | 'class' => 'nav-container', |
| 275 | 275 | 'data-toggle' => 'collapse', |
@@ -278,18 +278,18 @@ discard block |
||
| 278 | 278 | ?> |
| 279 | 279 | |
| 280 | 280 | <?php |
| 281 | - $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']); |
|
| 281 | + $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']); |
|
| 282 | 282 | foreach ($apps as $app) { |
| 283 | 283 | /** @var \Apps\ActiveRecord\App $app */ |
| 284 | - $appMenu->menu(['link' => [Str::lowerCase($app->sys_name) . '/index'], 'text' => $app->getLocaleName()]); |
|
| 284 | + $appMenu->menu(['link' => [Str::lowerCase($app->sys_name).'/index'], 'text' => $app->getLocaleName()]); |
|
| 285 | 285 | } |
| 286 | - $appMenu->menu(['link' => 'application/index', 'text' => __('All apps') . '...']); |
|
| 286 | + $appMenu->menu(['link' => 'application/index', 'text' => __('All apps').'...']); |
|
| 287 | 287 | echo $appMenu->display(); |
| 288 | 288 | ?> |
| 289 | 289 | </li> |
| 290 | 290 | <li class="nav-item<?= array_key_exists(\App::$Request->getController(), $widgets) ? ' active' : null ?>"> |
| 291 | 291 | <?= Url::a(['#widgets-dropdown'], |
| 292 | - '<i class="fa fa-puzzle-piece"></i> <span class="nav-text">' . __('Widgets') . '</span>', |
|
| 292 | + '<i class="fa fa-puzzle-piece"></i> <span class="nav-text">'.__('Widgets').'</span>', |
|
| 293 | 293 | [ |
| 294 | 294 | 'class' => 'nav-container', |
| 295 | 295 | 'data-toggle' => 'collapse', |
@@ -298,12 +298,12 @@ discard block |
||
| 298 | 298 | ?> |
| 299 | 299 | |
| 300 | 300 | <?php |
| 301 | - $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']); |
|
| 301 | + $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']); |
|
| 302 | 302 | foreach ($widgets as $widget) { |
| 303 | 303 | /** @var \Apps\ActiveRecord\App $widget */ |
| 304 | - $widgetMenu->menu(['link' => [Str::lowerCase($widget->sys_name) . '/index'], 'text' => $widget->getLocaleName()]); |
|
| 304 | + $widgetMenu->menu(['link' => [Str::lowerCase($widget->sys_name).'/index'], 'text' => $widget->getLocaleName()]); |
|
| 305 | 305 | } |
| 306 | - $widgetMenu->menu(['link' => 'widget/index', 'text' => __('All widgets') . '...']); |
|
| 306 | + $widgetMenu->menu(['link' => 'widget/index', 'text' => __('All widgets').'...']); |
|
| 307 | 307 | echo $widgetMenu->display(); |
| 308 | 308 | ?> |
| 309 | 309 | </li> |
@@ -20,54 +20,54 @@ |
||
| 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(); ?> |
@@ -13,11 +13,14 @@ |
||
| 13 | 13 | |
| 14 | 14 | <?php if (App::$Captcha->isFull()): ?> |
| 15 | 15 | <div class="col-md-9 offset-md-3"><?= $html ?></div> |
| 16 | -<?php else: ?> |
|
| 16 | +<?php else { |
|
| 17 | + : ?> |
|
| 17 | 18 | <div class="row"> |
| 18 | 19 | <div class="col-md-9 offset-md-3"> |
| 19 | 20 | <img src="<?= $html ?>" alt="captcha" onClick="this.src='<?=$html?>&rnd='+Math.random()" /> |
| 20 | 21 | </div> |
| 21 | 22 | </div> |
| 22 | 23 | <?= $form->fieldset()->text($name, null, __('Enter data from security image to prove that you are human. If you can\'t read symbols - click on image to reload')) ?> |
| 23 | -<?php endif; ?> |
|
| 24 | 24 | \ No newline at end of file |
| 25 | +<?php endif; |
|
| 26 | +} |
|
| 27 | +?> |
|
| 25 | 28 | \ No newline at end of file |
@@ -13,11 +13,14 @@ |
||
| 13 | 13 | |
| 14 | 14 | <?php if (App::$Captcha->isFull()): ?> |
| 15 | 15 | <div class="col-md-9 offset-md-3"><?= $html ?></div> |
| 16 | -<?php else: ?> |
|
| 16 | +<?php else { |
|
| 17 | + : ?> |
|
| 17 | 18 | <div class="row"> |
| 18 | 19 | <div class="col-md-9 offset-md-3"> |
| 19 | 20 | <img src="<?= $html ?>" alt="captcha" onClick="this.src='<?=$html?>&rnd='+Math.random()" /> |
| 20 | 21 | </div> |
| 21 | 22 | </div> |
| 22 | 23 | <?= $form->fieldset()->text($name, null, __('Enter data from security image to prove that you are human. If you can\'t read symbols - click on image to reload')) ?> |
| 23 | -<?php endif; ?> |
|
| 24 | 24 | \ No newline at end of file |
| 25 | +<?php endif; |
|
| 26 | +} |
|
| 27 | +?> |
|
| 25 | 28 | \ No newline at end of file |