@@ -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 |
@@ -3,9 +3,8 @@ |
||
3 | 3 | namespace Apps\Model\Front\Content; |
4 | 4 | |
5 | 5 | |
6 | -use Apps\ActiveRecord\Content; |
|
7 | -use Apps\ActiveRecord\ContentCategory; |
|
8 | 6 | use Apps\ActiveRecord\Content as ContentRecord; |
7 | +use Apps\ActiveRecord\ContentCategory; |
|
9 | 8 | use Apps\ActiveRecord\User; |
10 | 9 | use Ffcms\Core\App; |
11 | 10 | use Ffcms\Core\Arch\Model; |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | { |
60 | 60 | $this->_path = $path; |
61 | 61 | $this->_configs = $configs; |
62 | - $this->_page = (int)$offset; |
|
62 | + $this->_page = (int) $offset; |
|
63 | 63 | $this->_sort = $sort; |
64 | 64 | parent::__construct(); |
65 | 65 | } |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | public function before() |
73 | 73 | { |
74 | 74 | // find one or more categories where we must looking for content items |
75 | - if ((int)$this->_configs['multiCategories'] === 1) { |
|
75 | + if ((int) $this->_configs['multiCategories'] === 1) { |
|
76 | 76 | $this->findCategories(); |
77 | 77 | } else { |
78 | 78 | $this->findCategory(); |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | */ |
92 | 92 | public function setItemLimit($limit) |
93 | 93 | { |
94 | - $this->_customItemLimit = (int)$limit; |
|
94 | + $this->_customItemLimit = (int) $limit; |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | /** |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | private function findCategories() |
120 | 120 | { |
121 | 121 | // get all categories for current path and child of it |
122 | - $query = ContentCategory::where('path', 'like', $this->_path . '%'); |
|
122 | + $query = ContentCategory::where('path', 'like', $this->_path.'%'); |
|
123 | 123 | if ($query->count() < 1) { |
124 | 124 | throw new NotFoundException(__('Category is not founded')); |
125 | 125 | } |
@@ -152,10 +152,10 @@ discard block |
||
152 | 152 | } |
153 | 153 | |
154 | 154 | // calculate selection offset |
155 | - $itemPerPage = (int)$this->_configs['itemPerCategory']; |
|
155 | + $itemPerPage = (int) $this->_configs['itemPerCategory']; |
|
156 | 156 | // check if custom itemlimit defined over model api |
157 | 157 | if ($this->_customItemLimit !== false) { |
158 | - $itemPerPage = (int)$this->_customItemLimit; |
|
158 | + $itemPerPage = (int) $this->_customItemLimit; |
|
159 | 159 | } |
160 | 160 | |
161 | 161 | $offset = $this->_page * $itemPerPage; |
@@ -197,15 +197,15 @@ discard block |
||
197 | 197 | $catConfigs = Serialize::decode($this->_currentCategory->configs); |
198 | 198 | // prepare rss url link for current category if enabled |
199 | 199 | $rssUrl = false; |
200 | - if ((int)$this->_configs['rss'] === 1 && (int)$catConfigs['showRss'] === 1) { |
|
201 | - $rssUrl = App::$Alias->baseUrl . '/content/rss/' . $this->_currentCategory->path; |
|
200 | + if ((int) $this->_configs['rss'] === 1 && (int) $catConfigs['showRss'] === 1) { |
|
201 | + $rssUrl = App::$Alias->baseUrl.'/content/rss/'.$this->_currentCategory->path; |
|
202 | 202 | $rssUrl = rtrim($rssUrl, '/'); |
203 | 203 | } |
204 | 204 | |
205 | 205 | // prepare sorting urls |
206 | 206 | $catSortParams = []; |
207 | 207 | if (App::$Request->query->get('page') !== null) { |
208 | - $catSortParams['page'] = (int)App::$Request->query->get('page'); |
|
208 | + $catSortParams['page'] = (int) App::$Request->query->get('page'); |
|
209 | 209 | } |
210 | 210 | $catSortUrls = [ |
211 | 211 | 'views' => Url::to('content/list', $this->_currentCategory->path, null, Arr::merge($catSortParams, ['sort' => 'views']), false), |
@@ -224,7 +224,7 @@ discard block |
||
224 | 224 | ]; |
225 | 225 | |
226 | 226 | // check if this category is hidden |
227 | - if ((int)$this->category['configs']['showCategory'] !== 1) { |
|
227 | + if ((int) $this->category['configs']['showCategory'] !== 1) { |
|
228 | 228 | throw new ForbiddenException(__('This category is not available to view')); |
229 | 229 | } |
230 | 230 | |
@@ -279,7 +279,7 @@ discard block |
||
279 | 279 | // check if current user can rate item |
280 | 280 | $ignoredRate = App::$Session->get('content.rate.ignore'); |
281 | 281 | $canRate = true; |
282 | - if (Obj::isArray($ignoredRate) && Arr::in((string)$row->id, $ignoredRate)) { |
|
282 | + if (Obj::isArray($ignoredRate) && Arr::in((string) $row->id, $ignoredRate)) { |
|
283 | 283 | $canRate = false; |
284 | 284 | } |
285 | 285 | if (!App::$User->isAuth()) { |
@@ -299,11 +299,11 @@ discard block |
||
299 | 299 | 'poster' => $row->getPosterUri(), |
300 | 300 | 'thumb' => $row->getPosterThumbUri(), |
301 | 301 | 'thumbSize' => File::size($row->getPosterThumbUri()), |
302 | - 'views' => (int)$row->views, |
|
303 | - 'rating' => (int)$row->rating, |
|
302 | + 'views' => (int) $row->views, |
|
303 | + 'rating' => (int) $row->rating, |
|
304 | 304 | 'canRate' => $canRate, |
305 | 305 | 'category' => $this->categories[$row->category_id], |
306 | - 'uri' => '/content/read/' . $itemPath, |
|
306 | + 'uri' => '/content/read/'.$itemPath, |
|
307 | 307 | 'tags' => $tags |
308 | 308 | ]; |
309 | 309 | } |
@@ -25,7 +25,7 @@ |
||
25 | 25 | /** |
26 | 26 | * EntityContentSearch constructor. Pass search terms (query string) to model and used items to skip it by id. |
27 | 27 | * @param $terms |
28 | - * @param int|array $skipIds |
|
28 | + * @param integer $skipIds |
|
29 | 29 | */ |
30 | 30 | public function __construct($terms, $skipIds = 0) |
31 | 31 | { |
@@ -77,7 +77,7 @@ |
||
77 | 77 | $this->items[] = [ |
78 | 78 | 'title' => $item->getLocaled('title'), |
79 | 79 | 'snippet' => Text::snippet($text), |
80 | - 'uri' => '/content/read/' . $item->getPath(), |
|
80 | + 'uri' => '/content/read/'.$item->getPath(), |
|
81 | 81 | 'thumb' => $item->getPosterThumbUri() |
82 | 82 | ]; |
83 | 83 | } |
@@ -42,8 +42,8 @@ discard block |
||
42 | 42 | } |
43 | 43 | |
44 | 44 | /** |
45 | - * Labels for form |
|
46 | - */ |
|
45 | + * Labels for form |
|
46 | + */ |
|
47 | 47 | public function labels() |
48 | 48 | { |
49 | 49 | return [ |
@@ -57,8 +57,8 @@ discard block |
||
57 | 57 | } |
58 | 58 | |
59 | 59 | /** |
60 | - * Validation rules for comments settings |
|
61 | - */ |
|
60 | + * Validation rules for comments settings |
|
61 | + */ |
|
62 | 62 | public function rules() |
63 | 63 | { |
64 | 64 | return [ |
@@ -1,8 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -use Ffcms\Core\Helper\Date; |
|
4 | 3 | use Ffcms\Core\Helper\HTML\Form; |
5 | -use Ffcms\Core\Helper\HTML\Table; |
|
6 | 4 | use Ffcms\Core\Helper\Url; |
7 | 5 | |
8 | 6 | /** @var \Apps\Model\Admin\Feedback\FormUpdate $model */ |
@@ -34,8 +34,8 @@ discard block |
||
34 | 34 | } |
35 | 35 | |
36 | 36 | /** |
37 | - * Labels to display edit form |
|
38 | - */ |
|
37 | + * Labels to display edit form |
|
38 | + */ |
|
39 | 39 | public function labels() |
40 | 40 | { |
41 | 41 | return [ |
@@ -46,8 +46,8 @@ discard block |
||
46 | 46 | } |
47 | 47 | |
48 | 48 | /** |
49 | - * Rules to validate changes |
|
50 | - */ |
|
49 | + * Rules to validate changes |
|
50 | + */ |
|
51 | 51 | public function rules() |
52 | 52 | { |
53 | 53 | return [ |
@@ -47,8 +47,8 @@ discard block |
||
47 | 47 | } |
48 | 48 | |
49 | 49 | /** |
50 | - * Labels for display form |
|
51 | - */ |
|
50 | + * Labels for display form |
|
51 | + */ |
|
52 | 52 | public function labels() |
53 | 53 | { |
54 | 54 | return [ |
@@ -59,8 +59,8 @@ discard block |
||
59 | 59 | } |
60 | 60 | |
61 | 61 | /** |
62 | - * Form validation rules |
|
63 | - */ |
|
62 | + * Form validation rules |
|
63 | + */ |
|
64 | 64 | public function rules() |
65 | 65 | { |
66 | 66 | return [ |
@@ -25,7 +25,7 @@ |
||
25 | 25 | |
26 | 26 | /** |
27 | 27 | * FormAnswerAdd constructor. Pass active record of comment post and user id |
28 | - * @param $recordPost |
|
28 | + * @param \Ffcms\Core\Arch\ActiveModel $recordPost |
|
29 | 29 | * @param int $userId |
30 | 30 | */ |
31 | 31 | public function __construct($recordPost, $userId = 0) |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | public function __construct($recordPost, $userId = 0) |
32 | 32 | { |
33 | 33 | $this->_post = $recordPost; |
34 | - $this->_userId = (int)$userId; |
|
34 | + $this->_userId = (int) $userId; |
|
35 | 35 | parent::__construct(); |
36 | 36 | } |
37 | 37 | |
@@ -96,10 +96,10 @@ discard block |
||
96 | 96 | |
97 | 97 | // add notification msg |
98 | 98 | $targetId = $this->_post->user_id; |
99 | - if ($targetId !== null && (int)$targetId > 0 && $targetId !== $this->_userId) { |
|
99 | + if ($targetId !== null && (int) $targetId > 0 && $targetId !== $this->_userId) { |
|
100 | 100 | $notify = new EntityAddNotification($targetId); |
101 | - $uri = '/feedback/read/' . $this->_post->id . '/' . $this->_post->hash . '#feedback-answer-' . $record->id; |
|
102 | - $notify->add($uri, EntityAddNotification::MSG_ADD_FEEDBACKANSWER, [ |
|
101 | + $uri = '/feedback/read/'.$this->_post->id.'/'.$this->_post->hash.'#feedback-answer-'.$record->id; |
|
102 | + $notify->add($uri, EntityAddNotification::MSG_ADD_FEEDBACKANSWER, [ |
|
103 | 103 | 'snippet' => Text::snippet(App::$Security->strip_tags($this->message), 50), |
104 | 104 | 'post' => Text::snippet(App::$Security->strip_tags($this->_post->message), 50) |
105 | 105 | ]); |