@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | <hr /> |
24 | 24 | <div class="row"> |
25 | 25 | <div class="col-md-12"> |
26 | - <?= Url::link(['profile/fieldupdate', 0], '<i class="fa fa-plus"></i> ' . __('Add field'), ['class' => 'btn btn-primary pull-right']) ?> |
|
26 | + <?= Url::link(['profile/fieldupdate', 0], '<i class="fa fa-plus"></i> '.__('Add field'), ['class' => 'btn btn-primary pull-right']) ?> |
|
27 | 27 | </div> |
28 | 28 | </div> |
29 | 29 | <?php if ($records->count() > 0): |
@@ -38,10 +38,10 @@ discard block |
||
38 | 38 | $items[] = [ |
39 | 39 | ['text' => $row->id], |
40 | 40 | ['text' => Serialize::getDecodeLocale($row->name)], |
41 | - ['text' => '<span class="' . $labelClass . '">' . $row->type . '</span>', 'html' => true], |
|
42 | - ['text' => '<code>' . ($row->reg_cond == 0 ? '!' : null) . 'preg_match("' . $row->reg_exp . '", input)' . '</code>', 'html' => true], |
|
41 | + ['text' => '<span class="'.$labelClass.'">'.$row->type.'</span>', 'html' => true], |
|
42 | + ['text' => '<code>'.($row->reg_cond == 0 ? '!' : null).'preg_match("'.$row->reg_exp.'", input)'.'</code>', 'html' => true], |
|
43 | 43 | [ |
44 | - 'text' => Url::link(['profile/fieldupdate', $row->id], '<i class="fa fa-pencil fa-lg"></i> ', ['html' => true]) . |
|
44 | + 'text' => Url::link(['profile/fieldupdate', $row->id], '<i class="fa fa-pencil fa-lg"></i> ', ['html' => true]). |
|
45 | 45 | Url::link(['profile/fielddelete', $row->id], '<i class="fa fa-trash-o fa-lg"></i>', ['html' => true]), |
46 | 46 | 'html' => true, |
47 | 47 | 'property' => ['class' => 'text-center'] |
@@ -35,7 +35,7 @@ |
||
35 | 35 | 'items' => [ |
36 | 36 | [['text' => $model->getLabel('name')], ['text' => $model->name[\App::$Request->getLanguage()]]], |
37 | 37 | [['text' => $model->getLabel('type')], ['text' => $model->type]], |
38 | - [['text' => $model->getLabel('reg_exp')], ['text' => ($model->reg_cond == 0 ? '!' : null) . 'preg_match("'.$model->reg_exp.'", $input)']], |
|
38 | + [['text' => $model->getLabel('reg_exp')], ['text' => ($model->reg_cond == 0 ? '!' : null).'preg_match("'.$model->reg_exp.'", $input)']], |
|
39 | 39 | ] |
40 | 40 | ] |
41 | 41 | ]); |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | <div class="row"> |
19 | 19 | <div class="col-md-12"> |
20 | 20 | <div class="pull-right"> |
21 | - <?= Url::link(['application/install'], '<i class="fa fa-tasks"></i> ' . __('Install'), ['class' => 'btn btn-primary']) ?> |
|
21 | + <?= Url::link(['application/install'], '<i class="fa fa-tasks"></i> '.__('Install'), ['class' => 'btn btn-primary']) ?> |
|
22 | 22 | </div> |
23 | 23 | </div> |
24 | 24 | </div> |
@@ -30,11 +30,11 @@ discard block |
||
30 | 30 | continue; |
31 | 31 | } |
32 | 32 | |
33 | - $route = $app->sys_name . '/index'; |
|
33 | + $route = $app->sys_name.'/index'; |
|
34 | 34 | $icoStatus = null; |
35 | 35 | $actions = \App::$View->render('native/macro/app_actions', ['controller' => $app->sys_name]); |
36 | 36 | // set action icons based on app status |
37 | - if ((int)$app->disabled !== 0) { |
|
37 | + if ((int) $app->disabled !== 0) { |
|
38 | 38 | $icoStatus = ' <i class="fa fa-pause" style="color: #ff0000;"></i>'; |
39 | 39 | } elseif ($app->checkVersion() !== true) { |
40 | 40 | $icoStatus = ' <i class="fa fa-exclamation" style="color: #ffbd26;"></i>'; |
@@ -44,9 +44,9 @@ discard block |
||
44 | 44 | } |
45 | 45 | |
46 | 46 | $appTableItems[] = [ |
47 | - ['text' => $app->id . $icoStatus, 'html' => true, '!secure' => true], |
|
47 | + ['text' => $app->id.$icoStatus, 'html' => true, '!secure' => true], |
|
48 | 48 | ['text' => Url::link([$route], $app->getLocaleName()), 'html' => true], |
49 | - ['text' => '<a target="_blank" href="' . \App::$Alias->scriptUrl . '/' . Str::lowerCase($route) . '">' . $route . '</a>', 'html' => true], |
|
49 | + ['text' => '<a target="_blank" href="'.\App::$Alias->scriptUrl.'/'.Str::lowerCase($route).'">'.$route.'</a>', 'html' => true], |
|
50 | 50 | ['text' => $app->version], |
51 | 51 | ['text' => Date::convertToDatetime($app->updated_at, Date::FORMAT_TO_HOUR)], |
52 | 52 | ['text' => $actions, 'property' => ['class' => 'text-center'], 'html' => true] |
@@ -12,15 +12,15 @@ |
||
12 | 12 | \App::$Alias->setCustomLibrary('js', 'https://code.jquery.com/jquery-migrate-1.2.1.js'); |
13 | 13 | \App::$Alias->setCustomLibrary('css', \App::$Alias->getVendor('css', 'jquery-ui')); |
14 | 14 | \App::$Alias->setCustomLibrary('js', \App::$Alias->getVendor('js', 'jquery-ui')); |
15 | -\App::$Alias->setCustomLibrary('css', \App::$Alias->scriptUrl . '/vendor/phpffcms/ffcms-elfinder/css/elfinder.min.css'); |
|
16 | -\App::$Alias->setCustomLibrary('js', \App::$Alias->scriptUrl . '/vendor/phpffcms/ffcms-elfinder/js/elfinder.min.js'); |
|
15 | +\App::$Alias->setCustomLibrary('css', \App::$Alias->scriptUrl.'/vendor/phpffcms/ffcms-elfinder/css/elfinder.min.css'); |
|
16 | +\App::$Alias->setCustomLibrary('js', \App::$Alias->scriptUrl.'/vendor/phpffcms/ffcms-elfinder/js/elfinder.min.js'); |
|
17 | 17 | |
18 | 18 | |
19 | 19 | ?> |
20 | 20 | <?php \App::$Alias->addPlainCode('js', '$().ready(function() { |
21 | 21 | var elf = $("#elfinder").elfinder({ |
22 | - url : "' . $connector . '", // connector URL (REQUIRED) |
|
23 | - lang: "' . \App::$Request->getLanguage() . '", // language (OPTIONAL) |
|
22 | + url : "' . $connector.'", // connector URL (REQUIRED) |
|
23 | + lang: "' . \App::$Request->getLanguage().'", // language (OPTIONAL) |
|
24 | 24 | }).elfinder("instance"); |
25 | 25 | });'); ?> |
26 | 26 | <h1><?= __('File management') ?></h1> |
@@ -97,7 +97,7 @@ |
||
97 | 97 | </script> |
98 | 98 | <h1><?= __('Antivirus scan'); ?></h1> |
99 | 99 | <hr /> |
100 | -<p><?= __('FFCMS 3 provide a simple signature-based antivirus software') . '. ' . __('Remember! This is just an advisory algorithm!') ?></p> |
|
100 | +<p><?= __('FFCMS 3 provide a simple signature-based antivirus software').'. '.__('Remember! This is just an advisory algorithm!') ?></p> |
|
101 | 101 | |
102 | 102 | <div class="row"> |
103 | 103 | <div class="col-md-4"> |
@@ -27,8 +27,8 @@ discard block |
||
27 | 27 | $themeTab = $form->field('theme.Front', 'select', ['class' => 'form-control', 'options' => $model->getAvailableThemes('Front')]); |
28 | 28 | $themeTab .= $form->field('theme.Admin', 'select', ['class' => 'form-control', 'options' => $model->getAvailableThemes('Admin')]); |
29 | 29 | |
30 | -$debugTab = '<p>' . __('The key-value of cookie to enable debugging on website') . '. ' . __('If user got this cookie he can see debug bar') . '. ' . |
|
31 | - Url::link(['main/debugcookie'], __('Set cookie for me')) . '</p>'; |
|
30 | +$debugTab = '<p>'.__('The key-value of cookie to enable debugging on website').'. '.__('If user got this cookie he can see debug bar').'. '. |
|
31 | + Url::link(['main/debugcookie'], __('Set cookie for me')).'</p>'; |
|
32 | 32 | $debugTab .= $form->field('debug.cookie.key', 'text', ['class' => 'form-control'], __('Set cookie name(key) for enable debug bar panel')); |
33 | 33 | $debugTab .= $form->field('debug.cookie.value', 'text', ['class' => 'form-control'], __('Set cookie value for enable debug bar panel')); |
34 | 34 | |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | $langTab .= $form->field('baseLanguage', 'text', ['class' => 'form-control', 'disabled' => null], __('Website base script language. Do not change it')); |
38 | 38 | $langTab .= $form->field('languages', 'checkboxes', ['options' => ['ru', 'en']], __('Website available languages')); |
39 | 39 | |
40 | -$databaseTab = '<p>' . __('Do not change any information in this tab if you not sure what you do!') . '</p>'; |
|
40 | +$databaseTab = '<p>'.__('Do not change any information in this tab if you not sure what you do!').'</p>'; |
|
41 | 41 | $databaseTab .= $form->field('database.driver', 'select', ['class' => 'form-control', 'options' => ['mysql', 'sqlite', 'pgsql']], __('Database connection driver')); |
42 | 42 | $databaseTab .= $form->field('database.host', 'text', ['class' => 'form-control'], __('Database connection host name')); |
43 | 43 | $databaseTab .= $form->field('database.database', 'text', ['class' => 'form-control'], __('Database name or path to sqlite created file database')); |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | $databaseTab .= $form->field('database.collation', 'text', ['class' => 'form-control']); |
48 | 48 | $databaseTab .= $form->field('database.prefix', 'text', ['class' => 'form-control'], __('Database tables prefix')); |
49 | 49 | |
50 | -$otherTab = '<p>' . __('There you can change specified configs depends of other platforms. GA = google analytics.') . '</p>'; |
|
50 | +$otherTab = '<p>'.__('There you can change specified configs depends of other platforms. GA = google analytics.').'</p>'; |
|
51 | 51 | $otherTab .= $form->field('gaClientId', 'text', ['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')); |
52 | 52 | $otherTab .= $form->field('gaTrackId', 'text', ['class' => 'form-control'], __('Set google analytics tracking id for your website. Track id looks like: UA-XXXXXX-Y')); |
53 | 53 |
@@ -25,7 +25,7 @@ |
||
25 | 25 | 'table' => ['class' => 'table table-bordered'], |
26 | 26 | 'tbody' => [ |
27 | 27 | 'items' => [ |
28 | - [['text' => __('Sender')], ['text' => $record->name . ' (' . $record->email . ')']], |
|
28 | + [['text' => __('Sender')], ['text' => $record->name.' ('.$record->email.')']], |
|
29 | 29 | [['text' => __('Date')], ['text' => Date::convertToDatetime($record->created_at, Date::FORMAT_TO_HOUR)]], |
30 | 30 | [['text' => __('Message')], ['text' => $record->message]] |
31 | 31 | ] |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | <hr /> |
24 | 24 | <div class="row"> |
25 | 25 | <div class="col-md-12"> |
26 | - <?= Url::link(['content/categoryupdate', 0], '<i class="fa fa-plus"></i> ' . __('Add category'), ['class' => 'btn btn-primary pull-right']) ?> |
|
26 | + <?= Url::link(['content/categoryupdate', 0], '<i class="fa fa-plus"></i> '.__('Add category'), ['class' => 'btn btn-primary pull-right']) ?> |
|
27 | 27 | </div> |
28 | 28 | </div> |
29 | 29 | <div class="table-responsive"> |
@@ -55,8 +55,8 @@ discard block |
||
55 | 55 | <tr> |
56 | 56 | <td> |
57 | 57 | <div class="row"> |
58 | - <div class="col-md-<?= $offset ?> col-xs-<?= $offset+2 ?>" style="padding-top: 8px;border-bottom: 2px solid #8a8a8a"></div> |
|
59 | - <div class="col-md-<?= $set ?> col-xs-<?= $set-2 ?>"> |
|
58 | + <div class="col-md-<?= $offset ?> col-xs-<?= $offset + 2 ?>" style="padding-top: 8px;border-bottom: 2px solid #8a8a8a"></div> |
|
59 | + <div class="col-md-<?= $set ?> col-xs-<?= $set - 2 ?>"> |
|
60 | 60 | <?= Serialize::getDecodeLocale($row->title) ?> |
61 | 61 | <sup>id: <?= $row->id ?></sup> |
62 | 62 | <span class="label label-info">/<?= $row->path ?></span> |
@@ -32,9 +32,9 @@ discard block |
||
32 | 32 | foreach (\App::$Properties->get('languages') as $lang) { |
33 | 33 | $items[] = [ |
34 | 34 | 'type' => 'tab', |
35 | - 'text' => __('Lang') . ': ' . Str::upperCase($lang), |
|
36 | - 'content' => $form->field('title.' . $lang, 'text', ['class' => 'form-control'], __('Enter category title, visible for users')) . |
|
37 | - $form->field('description.' . $lang, 'text', ['class' => 'form-control'], __('Enter category description')), |
|
35 | + 'text' => __('Lang').': '.Str::upperCase($lang), |
|
36 | + 'content' => $form->field('title.'.$lang, 'text', ['class' => 'form-control'], __('Enter category title, visible for users')). |
|
37 | + $form->field('description.'.$lang, 'text', ['class' => 'form-control'], __('Enter category description')), |
|
38 | 38 | 'html' => true, |
39 | 39 | 'active' => $lang === \App::$Request->getLanguage(), |
40 | 40 | '!secure' => true |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | $pathProperty = [ |
54 | 54 | 'class' => 'form-control' |
55 | 55 | ]; |
56 | -if ((int)$model->id == '1') { |
|
56 | +if ((int) $model->id == '1') { |
|
57 | 57 | $pathProperty['disabled'] = ''; |
58 | 58 | } else { |
59 | 59 | echo $form->field('dependId', 'select', ['class' => 'form-control', 'options' => $model->categoryList(), 'optionsKey' => true], __('Select owner category for this category')); |