@@ -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')); |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | <div class="row"> |
18 | 18 | <div class="col-md-12"> |
19 | 19 | <div class="pull-right"> |
20 | - <?= Url::link(['widget/install'], '<i class="fa fa-tasks"></i> ' . __('Install'), ['class' => 'btn btn-primary']) ?> |
|
20 | + <?= Url::link(['widget/install'], '<i class="fa fa-tasks"></i> '.__('Install'), ['class' => 'btn btn-primary']) ?> |
|
21 | 21 | </div> |
22 | 22 | </div> |
23 | 23 | </div> |
@@ -25,10 +25,10 @@ discard block |
||
25 | 25 | $widgetTableItems = null; |
26 | 26 | foreach ($widgets as $widget) { |
27 | 27 | /** @var $widget Apps\ActiveRecord\App */ |
28 | - $route = $widget->sys_name . '/index'; |
|
28 | + $route = $widget->sys_name.'/index'; |
|
29 | 29 | $icoStatus = null; |
30 | 30 | $actions = $this->render('native/macro/widget_actions', ['controller' => $widget->sys_name]); |
31 | - if ((int)$widget->disabled !== 0) { |
|
31 | + if ((int) $widget->disabled !== 0) { |
|
32 | 32 | $icoStatus = ' <i class="fa fa-pause" style="color: #ff0000;"></i>'; |
33 | 33 | } elseif ($widget->checkVersion() !== true) { |
34 | 34 | $icoStatus = ' <i class="fa fa-exclamation" style="color: #ffbd26;"></i>'; |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | } |
39 | 39 | |
40 | 40 | $widgetTableItems[] = [ |
41 | - ['text' => $widget->id . $icoStatus, 'html' => true, '!secure' => true], |
|
41 | + ['text' => $widget->id.$icoStatus, 'html' => true, '!secure' => true], |
|
42 | 42 | ['text' => Url::link([$route], $widget->getLocaleName()), 'html' => true], |
43 | 43 | ['text' => $widget->version], |
44 | 44 | ['text' => Date::convertToDatetime($widget->updated_at, Date::FORMAT_TO_HOUR)], |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | ?> |
50 | 50 | |
51 | 51 | <?php if ($widgetTableItems === null || count($widgetTableItems) < 1) { |
52 | - echo '<p class="alert alert-info">' . __('Installed widgets is not founded') . '</p>'; |
|
52 | + echo '<p class="alert alert-info">'.__('Installed widgets is not founded').'</p>'; |
|
53 | 53 | } ?> |
54 | 54 | |
55 | 55 |
@@ -18,7 +18,7 @@ |
||
18 | 18 | <?= $form->field('email', 'email', ['class' => 'form-control'], __('Input your account email')); ?> |
19 | 19 | <?php |
20 | 20 | if (\App::$Captcha->isFull()) { |
21 | - echo '<div class="col-md-offset-3 col-md-9">' . \App::$Captcha->get() . '</div>'; |
|
21 | + echo '<div class="col-md-offset-3 col-md-9">'.\App::$Captcha->get().'</div>'; |
|
22 | 22 | } else { |
23 | 23 | echo $form->field('captcha', 'captcha', ['class' => 'form-control'], __('Enter data from security image to prove that you are human. If you can\'t read symbols - click on image to reload')); |
24 | 24 | } |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | /** @var $pagination object */ |
12 | 12 | /** @var $ratingOn int */ |
13 | 13 | |
14 | -$this->title = __('User list') . ': ' . __('Search'); |
|
14 | +$this->title = __('User list').': '.__('Search'); |
|
15 | 15 | |
16 | 16 | $this->breadcrumbs = [ |
17 | 17 | Url::to('main/index') => __('Home'), |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | <?php |
36 | 36 | if ($records === null || $records->count() < 1) { |
37 | 37 | if ($model->send()) { |
38 | - echo '<div class="row"><div class="col-md-12"><div class="alert alert-danger">' . __('Users are not founded!') . '</div></div></div>'; |
|
38 | + echo '<div class="row"><div class="col-md-12"><div class="alert alert-danger">'.__('Users are not founded!').'</div></div></div>'; |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | return; |
@@ -34,7 +34,7 @@ |
||
34 | 34 | <?= $form->field('url', 'text', ['class' => 'form-control'], __('If you have your own homepage - enter url there')) ?> |
35 | 35 | <?php |
36 | 36 | foreach (ProfileField::getAll() as $custom) { |
37 | - echo $form->field('custom_data.' . $custom->id, 'text', ['class' => 'form-control']); |
|
37 | + echo $form->field('custom_data.'.$custom->id, 'text', ['class' => 'form-control']); |
|
38 | 38 | } |
39 | 39 | ?> |
40 | 40 |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | |
22 | 22 | <?php |
23 | 23 | if ($records->count() < 1) { |
24 | - echo '<p class="alert alert-warning">' . __('No requests is founded') . '</p>'; |
|
24 | + echo '<p class="alert alert-warning">'.__('No requests is founded').'</p>'; |
|
25 | 25 | return; |
26 | 26 | } |
27 | 27 | $items = []; |
@@ -30,9 +30,8 @@ discard block |
||
30 | 30 | ['text' => $item->id], |
31 | 31 | ['text' => Url::link(['feedback/read', $item->id, $item->hash], Text::cut($item->message, 0, 40)), 'html' => true], |
32 | 32 | ['text' => |
33 | - (int)$item->closed === 1 ? |
|
34 | - '<span class="label label-danger">' . __('Closed') . '</span>' : |
|
35 | - '<span class="label label-success">' . __('Opened') . '</span>', |
|
33 | + (int) $item->closed === 1 ? |
|
34 | + '<span class="label label-danger">'.__('Closed').'</span>' : '<span class="label label-success">'.__('Opened').'</span>', |
|
36 | 35 | 'html' => true, '!secure' => true], |
37 | 36 | ['text' => Date::convertToDatetime($item->created_at, Date::FORMAT_TO_HOUR)], |
38 | 37 | ['text' => Date::convertToDatetime($item->updated_at, Date::FORMAT_TO_HOUR)] |
@@ -33,7 +33,7 @@ |
||
33 | 33 | <tbody> |
34 | 34 | <tr> |
35 | 35 | <td align="left" style="font-family:Helvetica Neue,Arial,Helvetica,sans-serif;padding-left:9px;font-size:14px;"> |
36 | - <a href="<?= \App::$Alias->scriptUrl ?>/feedback/read/<?= $record->id . '/' . $record->hash ?>"> |
|
36 | + <a href="<?= \App::$Alias->scriptUrl ?>/feedback/read/<?= $record->id.'/'.$record->hash ?>"> |
|
37 | 37 | <?= __('View request') ?> |
38 | 38 | </a> |
39 | 39 | </td> |
@@ -30,7 +30,7 @@ |
||
30 | 30 | |
31 | 31 | <?php if ($useCaptcha === true) { |
32 | 32 | if (\App::$Captcha->isFull()) { |
33 | - echo '<div class="col-md-offset-3 col-md-9">' . \App::$Captcha->get() . '</div>'; |
|
33 | + echo '<div class="col-md-offset-3 col-md-9">'.\App::$Captcha->get().'</div>'; |
|
34 | 34 | } else { |
35 | 35 | echo $form->field('captcha', 'captcha', ['class' => 'form-control'], __('Enter data from security image to prove that you are human. If you can\'t read symbols - click on image to reload')); |
36 | 36 | } |
@@ -23,7 +23,7 @@ |
||
23 | 23 | /** @var \Apps\ActiveRecord\Content $item*/ |
24 | 24 | $items[] = [ |
25 | 25 | 'text' => Serialize::getDecodeLocale($item->title), |
26 | - 'link' => \App::$Alias->baseUrl . '/content/read/' . $item->getPath() |
|
26 | + 'link' => \App::$Alias->baseUrl.'/content/read/'.$item->getPath() |
|
27 | 27 | ]; |
28 | 28 | } |
29 | 29 | ?> |