@@ -46,7 +46,7 @@ |
||
46 | 46 | ]); |
47 | 47 | |
48 | 48 | $configs->newcontent = serialize([ |
49 | - 'categories' => serialize(['2','3']), |
|
49 | + 'categories' => serialize(['2', '3']), |
|
50 | 50 | 'count' => '5', |
51 | 51 | 'cache' => '60' |
52 | 52 | ]); |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | |
25 | 25 | <?php |
26 | 26 | $items = []; |
27 | -foreach($records as $role) { |
|
27 | +foreach ($records as $role) { |
|
28 | 28 | $permissions = explode(';', $role->permissions); |
29 | 29 | $permissionsLabel = null; |
30 | 30 | foreach ($permissions as $perm) { |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | } else { |
37 | 37 | $labelMark = 'label-default'; |
38 | 38 | } |
39 | - $permissionsLabel .= '<span class="label ' . $labelMark . '">' . $perm . '</span> '; |
|
39 | + $permissionsLabel .= '<span class="label '.$labelMark.'">'.$perm.'</span> '; |
|
40 | 40 | } |
41 | 41 | $items[] = [ |
42 | 42 | ['text' => $role->id], |
@@ -2,6 +2,6 @@ |
||
2 | 2 | use Ffcms\Core\Helper\Url; |
3 | 3 | |
4 | 4 | if (isset($controller)): ?> |
5 | -<a href="<?= Url::to($controller . '/index') ?>"><i class="fa fa-cogs"></i></a> |
|
5 | +<a href="<?= Url::to($controller.'/index') ?>"><i class="fa fa-cogs"></i></a> |
|
6 | 6 | <a href="<?= Url::to('widget/turn', $controller) ?>"><i class="fa fa-power-off"></i></a> |
7 | 7 | <?php endif; ?> |
8 | 8 | \ No newline at end of file |
@@ -33,8 +33,8 @@ |
||
33 | 33 | foreach (\App::$Properties->get('languages') as $lang) { |
34 | 34 | $nameTab[] = [ |
35 | 35 | 'type' => 'tab', |
36 | - 'text' => __('Lang') . ': ' . Str::upperCase($lang), |
|
37 | - 'content' => $form->field('name.' . $lang, 'text', ['class' => 'form-control'], __('Define field name, which be displayed for user for current language locale')), |
|
36 | + 'text' => __('Lang').': '.Str::upperCase($lang), |
|
37 | + 'content' => $form->field('name.'.$lang, 'text', ['class' => 'form-control'], __('Define field name, which be displayed for user for current language locale')), |
|
38 | 38 | 'active' => $lang === \App::$Request->getLanguage(), |
39 | 39 | 'html' => true, |
40 | 40 | '!secure' => true |
@@ -27,11 +27,11 @@ |
||
27 | 27 | foreach ($records as $profile) { |
28 | 28 | $items[] = [ |
29 | 29 | ['text' => $profile->id], |
30 | - ['text' => $profile->User()->login . '/' . $profile->User()->email], |
|
30 | + ['text' => $profile->User()->login.'/'.$profile->User()->email], |
|
31 | 31 | ['text' => $profile->nick], |
32 | 32 | ['text' => Str::startsWith('0000-', $profile->birthday) ? __('None') : Date::convertToDatetime($profile->birthday)], |
33 | - ['text' => ($profile->rating > 0 ? '+' : null) . $profile->rating], |
|
34 | - ['text' => Url::link(['profile/update', $profile->id], '<i class="fa fa-pencil fa-lg"></i> ') . |
|
33 | + ['text' => ($profile->rating > 0 ? '+' : null).$profile->rating], |
|
34 | + ['text' => Url::link(['profile/update', $profile->id], '<i class="fa fa-pencil fa-lg"></i> '). |
|
35 | 35 | Url::link(['user/delete', $profile->User()->id], '<i class="fa fa-trash-o fa-lg"></i>'), |
36 | 36 | 'html' => true, 'property' => ['class' => 'text-center']] |
37 | 37 | ]; |
@@ -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> |
@@ -93,4 +93,4 @@ |
||
93 | 93 | ?> |
94 | 94 | </div> |
95 | 95 | </div> |
96 | -<?= Url::link(['main/addroute'], '<i class="fa fa-plus"></i> ' . __('New route'), ['class' => 'btn btn-primary']) ?> |
|
97 | 96 | \ No newline at end of file |
97 | +<?= Url::link(['main/addroute'], '<i class="fa fa-plus"></i> '.__('New route'), ['class' => 'btn btn-primary']) ?> |
|
98 | 98 | \ No newline at end of file |