@@ -12,7 +12,7 @@ |
||
12 | 12 | { |
13 | 13 | $status = $object->disabled; |
14 | 14 | |
15 | - $object->disabled = (int)!$status; // magic inside: bool to int and reverse - 0 => 1, 1 => 0 |
|
15 | + $object->disabled = (int) !$status; // magic inside: bool to int and reverse - 0 => 1, 1 => 0 |
|
16 | 16 | $object->save(); |
17 | 17 | } |
18 | 18 | } |
19 | 19 | \ No newline at end of file |
@@ -31,7 +31,7 @@ |
||
31 | 31 | [['text' => __('Name')], ['text' => $widget->getLocaleName()]], |
32 | 32 | [['text' => __('System name')], ['text' => $widget->sys_name]], |
33 | 33 | [['text' => __('Last update')], ['text' => Date::convertToDatetime($widget->updated_at, DATE::FORMAT_TO_SECONDS)]], |
34 | - [['text' => __('Status')], ['text' => ((int)$widget->disabled === 0) ? 'On' : 'Off'], 'property' => ['class' => ((int)$widget->disabled === 0) ? 'alert-success' : 'alert-danger']] |
|
34 | + [['text' => __('Status')], ['text' => ((int) $widget->disabled === 0) ? 'On' : 'Off'], 'property' => ['class' => ((int) $widget->disabled === 0) ? 'alert-success' : 'alert-danger']] |
|
35 | 35 | ] |
36 | 36 | ] |
37 | 37 | ]); ?> |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | $search = \Apps\ActiveRecord\App::getItem('app', $controller); |
72 | 72 | |
73 | 73 | // check what we got |
74 | - if ($search === null || (int)$search->id < 1) { |
|
74 | + if ($search === null || (int) $search->id < 1) { |
|
75 | 75 | throw new ForbiddenException('App is not founded'); |
76 | 76 | } |
77 | 77 | |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | |
97 | 97 | $search = \Apps\ActiveRecord\App::where('sys_name', '=', $controllerName)->where('type', '=', 'app')->first(); |
98 | 98 | |
99 | - if ($search === null || (int)$search->id < 1) { |
|
99 | + if ($search === null || (int) $search->id < 1) { |
|
100 | 100 | throw new ForbiddenException('App is not founded'); |
101 | 101 | } |
102 | 102 |
@@ -9,4 +9,4 @@ |
||
9 | 9 | ['type' => 'link', 'text' => __('Group management'), 'link' => ['user/grouplist']], |
10 | 10 | ['type' => 'link', 'text' => __('Settings'), 'link' => ['user/settings']] |
11 | 11 | ] |
12 | -]);?> |
|
13 | 12 | \ No newline at end of file |
13 | +]); ?> |
|
14 | 14 | \ No newline at end of file |
@@ -20,7 +20,7 @@ |
||
20 | 20 | |
21 | 21 | public function __construct($captcha = true) |
22 | 22 | { |
23 | - $this->_useCaptcha = (bool)$captcha; |
|
23 | + $this->_useCaptcha = (bool) $captcha; |
|
24 | 24 | parent::__construct(); |
25 | 25 | } |
26 | 26 |
@@ -9,4 +9,4 @@ |
||
9 | 9 | ['type' => 'link', 'text' => __('Group management'), 'link' => ['user/grouplist']], |
10 | 10 | ['type' => 'link', 'text' => __('Settings'), 'link' => ['user/settings']] |
11 | 11 | ] |
12 | -]);?> |
|
13 | 12 | \ No newline at end of file |
13 | +]); ?> |
|
14 | 14 | \ No newline at end of file |
@@ -32,8 +32,8 @@ |
||
32 | 32 | foreach ($records as $item) { |
33 | 33 | $message = Str::sub(\App::$Security->strip_tags($item->message), 0, 50); |
34 | 34 | $author = Simplify::parseUserNick($item->user_id, $item->guest_name); |
35 | - if ((int)$item->user_id > 0) { |
|
36 | - $author = Url::link(['user/update', (int)$item->user_id], $author); |
|
35 | + if ((int) $item->user_id > 0) { |
|
36 | + $author = Url::link(['user/update', (int) $item->user_id], $author); |
|
37 | 37 | } |
38 | 38 | |
39 | 39 |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | App::$Session->set('content.rate.ignore', $ignored); |
65 | 65 | |
66 | 66 | // save rating changes to database |
67 | - switch($this->_type) { |
|
67 | + switch ($this->_type) { |
|
68 | 68 | case 'plus': |
69 | 69 | $this->_content->rating += 1; |
70 | 70 | break; |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | $this->_content->save(); |
77 | 77 | |
78 | 78 | // update content author rating |
79 | - $authorId = (int)$this->_content->author_id; |
|
79 | + $authorId = (int) $this->_content->author_id; |
|
80 | 80 | if ($authorId > 0 && App::$User->isExist($authorId)) { |
81 | 81 | $authorObject = App::$User->identity($authorId); |
82 | 82 | if ($authorObject !== null) { |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | $this->setJsonHeader(); |
33 | 33 | $configs = AppRecord::getConfigs('widget', 'Comments'); |
34 | 34 | |
35 | - $replayTo = (int)App::$Request->request->get('replay-to'); |
|
35 | + $replayTo = (int) App::$Request->request->get('replay-to'); |
|
36 | 36 | $model = null; |
37 | 37 | // check if its a answer (comment answer type) |
38 | 38 | if ($replayTo > 0) { |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | } |
45 | 45 | |
46 | 46 | // pass general comment params to model |
47 | - $model->message = App::$Security->secureHtml((string)App::$Request->request->get('message')); |
|
47 | + $model->message = App::$Security->secureHtml((string) App::$Request->request->get('message')); |
|
48 | 48 | $model->guestName = App::$Security->strip_tags(App::$Request->request->get('guest-name')); |
49 | 49 | |
50 | 50 | // check model conditions before add new row |
@@ -76,12 +76,12 @@ discard block |
||
76 | 76 | // get configs |
77 | 77 | $configs = AppRecord::getConfigs('widget', 'Comments'); |
78 | 78 | // items per page |
79 | - $perPage = (int)$configs['perPage']; |
|
79 | + $perPage = (int) $configs['perPage']; |
|
80 | 80 | // offset can be only integer |
81 | - $index = (int)$index; |
|
81 | + $index = (int) $index; |
|
82 | 82 | $offset = $perPage * $index; |
83 | 83 | // get comment target path and check |
84 | - $path = (string)App::$Request->query->get('path'); |
|
84 | + $path = (string) App::$Request->query->get('path'); |
|
85 | 85 | if (Str::likeEmpty($path)) { |
86 | 86 | throw new NotFoundException('Wrong path'); |
87 | 87 | } |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | $query = CommentPost::where('pathway', '=', $path); |
91 | 91 | |
92 | 92 | // check if comments is depend of language locale |
93 | - if ((int)$configs['onlyLocale'] === 1) { |
|
93 | + if ((int) $configs['onlyLocale'] === 1) { |
|
94 | 94 | $query = $query->where('lang', '=', App::$Request->getLanguage()); |
95 | 95 | } |
96 | 96 | |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | { |
141 | 141 | $this->setJsonHeader(); |
142 | 142 | // check input data |
143 | - if (!Obj::isLikeInt($commentId) || (int)$commentId < 1) { |
|
143 | + if (!Obj::isLikeInt($commentId) || (int) $commentId < 1) { |
|
144 | 144 | throw new ForbiddenException('Input data is incorrect'); |
145 | 145 | } |
146 | 146 | |
@@ -149,7 +149,7 @@ discard block |
||
149 | 149 | |
150 | 150 | // get data from db by comment id |
151 | 151 | $records = CommentAnswer::where('comment_id', '=', $commentId); |
152 | - if ((int)$configs['onlyLocale'] === 1) { |
|
152 | + if ((int) $configs['onlyLocale'] === 1) { |
|
153 | 153 | $records = $records->where('lang', '=', App::$Request->getLanguage()); |
154 | 154 | } |
155 | 155 | |
@@ -193,11 +193,11 @@ discard block |
||
193 | 193 | foreach ($path as $id => $uri) { |
194 | 194 | $query = CommentPost::where('pathway', '=', $uri); |
195 | 195 | // check if comments is depend of language locale |
196 | - if ((int)$configs['onlyLocale'] === 1) { |
|
196 | + if ((int) $configs['onlyLocale'] === 1) { |
|
197 | 197 | $query = $query->where('lang', '=', App::$Request->getLanguage()); |
198 | 198 | } |
199 | 199 | // set itemId => count |
200 | - $count[(int)$id] = $query->count(); |
|
200 | + $count[(int) $id] = $query->count(); |
|
201 | 201 | } |
202 | 202 | // render json response |
203 | 203 | return json_encode(['status' => 1, 'count' => $count]); |