@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | } |
24 | 24 | |
25 | 25 | // don't use breadcrumbs on injected pathway rule |
26 | -if (!\App::$Request->isPathInjected() && (bool)$model->getCategory()->getProperty('showCategory')) { |
|
26 | +if (!\App::$Request->isPathInjected() && (bool) $model->getCategory()->getProperty('showCategory')) { |
|
27 | 27 | $breadcrumbs = [ |
28 | 28 | Url::to('/') => __('Home') |
29 | 29 | ]; |
@@ -35,21 +35,21 @@ discard block |
||
35 | 35 | $breadcrumbs[Url::to('content/list', $cat['path'], null, [], false)] = $cat['name']; |
36 | 36 | } |
37 | 37 | } |
38 | - $breadcrumbs[] = __('Content') . ': ' . Str::sub($this->title, 0, 40); |
|
38 | + $breadcrumbs[] = __('Content').': '.Str::sub($this->title, 0, 40); |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | $this->breadcrumbs = $breadcrumbs; |
42 | 42 | } |
43 | 43 | |
44 | 44 | $properties = [ |
45 | - 'date' => (bool)$model->getCategory()->getProperty('showDate'), |
|
46 | - 'author' => (bool)$model->getCategory()->getProperty('showAuthor'), |
|
47 | - 'views' => (bool)$model->getCategory()->getProperty('showViews'), |
|
48 | - 'category' => (bool)$model->getCategory()->getProperty('showCategory'), |
|
49 | - 'rating' => (bool)$model->getCategory()->getProperty('showRating') |
|
45 | + 'date' => (bool) $model->getCategory()->getProperty('showDate'), |
|
46 | + 'author' => (bool) $model->getCategory()->getProperty('showAuthor'), |
|
47 | + 'views' => (bool) $model->getCategory()->getProperty('showViews'), |
|
48 | + 'category' => (bool) $model->getCategory()->getProperty('showCategory'), |
|
49 | + 'rating' => (bool) $model->getCategory()->getProperty('showRating') |
|
50 | 50 | ]; |
51 | -$showComments = (bool)$model->getCategory()->getProperty('showComments'); |
|
52 | -$showPoster = (bool)$model->getCategory()->getProperty('showPoster'); |
|
51 | +$showComments = (bool) $model->getCategory()->getProperty('showComments'); |
|
52 | +$showPoster = (bool) $model->getCategory()->getProperty('showPoster'); |
|
53 | 53 | |
54 | 54 | ?> |
55 | 55 | |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | <span class="spaced"><i class="fa fa-eye"></i> <?= $model->views ?></span> |
75 | 75 | <?php endif ?> |
76 | 76 | <?php if (\App::$User->isAuth() && \App::$User->identity()->getRole()->can('Admin/Content/Update')): ?> |
77 | - <span class="pull-right"><a href="<?= \App::$Alias->scriptUrl . '/admin/content/update/' . $model->id ?>" target="_blank"><i class="fa fa-pencil" style="color: #ff0000;"></i></a></span> |
|
77 | + <span class="pull-right"><a href="<?= \App::$Alias->scriptUrl.'/admin/content/update/'.$model->id ?>" target="_blank"><i class="fa fa-pencil" style="color: #ff0000;"></i></a></span> |
|
78 | 78 | <?php endif; ?> |
79 | 79 | </div> |
80 | 80 | <?php else: ?> |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | <div id="content-text"> |
87 | 87 | <?php if ($showPoster === true && $model->posterFull !== null && $model->posterThumb !== null): ?> |
88 | 88 | <a href="#showPoster" data-toggle="modal" data-target="#showPoster"> |
89 | - <img alt="<?= __('Poster for') ?>: <?= Str::lowerCase(\App::$Security->strip_tags($model->title)) ?>" src="<?= \App::$Alias->scriptUrl . $model->posterThumb ?>" class="image_poster img-thumbnail" /> |
|
89 | + <img alt="<?= __('Poster for') ?>: <?= Str::lowerCase(\App::$Security->strip_tags($model->title)) ?>" src="<?= \App::$Alias->scriptUrl.$model->posterThumb ?>" class="image_poster img-thumbnail" /> |
|
90 | 90 | </a> |
91 | 91 | |
92 | 92 | <!-- Modal poster pop-up --> |
@@ -98,19 +98,19 @@ discard block |
||
98 | 98 | <h4 class="modal-title" id="myModalLabel"><?= __('View poster') ?></h4> |
99 | 99 | </div> |
100 | 100 | <div class="modal-body"> |
101 | - <img class="img-responsive" src="<?= \App::$Alias->scriptUrl . $model->posterFull ?>" alt="<?= __('Poster image') ?>" style="margin: 0 auto;" /> |
|
101 | + <img class="img-responsive" src="<?= \App::$Alias->scriptUrl.$model->posterFull ?>" alt="<?= __('Poster image') ?>" style="margin: 0 auto;" /> |
|
102 | 102 | </div> |
103 | 103 | </div> |
104 | 104 | </div> |
105 | 105 | </div> |
106 | - <?php endif ;?> |
|
106 | + <?php endif; ?> |
|
107 | 107 | <?= $model->text ?> |
108 | 108 | </div> |
109 | 109 | <?php if ($model->galleryItems !== null && Obj::isArray($model->galleryItems)): ?> |
110 | 110 | <div class="row"> |
111 | 111 | <?php foreach ($model->galleryItems as $thumbPic => $fullPic): ?> |
112 | 112 | <div class="col-md-2 well"> |
113 | - <a href="#showGallery" class="modalGallery" content="<?= \App::$Alias->scriptUrl . $fullPic ?>"><img src="<?= \App::$Alias->scriptUrl . $thumbPic ?>" class="img-responsive image-item" /></a> |
|
113 | + <a href="#showGallery" class="modalGallery" content="<?= \App::$Alias->scriptUrl.$fullPic ?>"><img src="<?= \App::$Alias->scriptUrl.$thumbPic ?>" class="img-responsive image-item" /></a> |
|
114 | 114 | </div> |
115 | 115 | <?php endforeach; ?> |
116 | 116 | </div> |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | <h4 class="modal-title" id="showModalLabel"><?= __('View picture') ?></h4> |
123 | 123 | </div> |
124 | 124 | <div class="modal-body" id="modal-gallery-body"> |
125 | - <img class="img-responsive" src="<?= \App::$Alias->scriptUrl . $model->posterFull ?>" alt="<?= __('Gallery picture') ?>" style="margin: 0 auto;" /> |
|
125 | + <img class="img-responsive" src="<?= \App::$Alias->scriptUrl.$model->posterFull ?>" alt="<?= __('Gallery picture') ?>" style="margin: 0 auto;" /> |
|
126 | 126 | </div> |
127 | 127 | </div> |
128 | 128 | </div> |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | </div> |
144 | 144 | <div id="similar<?= $idx ?>" class="panel-collapse collapse"> |
145 | 145 | <div class="panel-body"> |
146 | - <a href="<?= \App::$Alias->baseUrl . $item['uri'] ?>"> |
|
146 | + <a href="<?= \App::$Alias->baseUrl.$item['uri'] ?>"> |
|
147 | 147 | <?= $item['snippet'] ?> |
148 | 148 | </a> |
149 | 149 | </div> |
@@ -167,14 +167,14 @@ discard block |
||
167 | 167 | <?= \App::$View->render('content/_rateJs') ?> |
168 | 168 | </div> |
169 | 169 | <div class="pull-right"> |
170 | - <?php if ((int)$configs['keywordsAsTags'] === 1): ?> |
|
170 | + <?php if ((int) $configs['keywordsAsTags'] === 1): ?> |
|
171 | 171 | <div id="content-tags"> |
172 | 172 | <?php |
173 | 173 | if (Obj::isArray($model->metaKeywords) && count($model->metaKeywords) > 0 && Str::length($model->metaKeywords[0]) > 0) { |
174 | 174 | echo '<i class="fa fa-tags hidden-xs"></i> '; |
175 | 175 | foreach ($model->metaKeywords as $tag) { |
176 | 176 | $tag = \App::$Security->strip_tags(trim($tag)); |
177 | - echo Url::link(['content/tag', $tag], $tag, ['class' => 'label label-default']) . " "; |
|
177 | + echo Url::link(['content/tag', $tag], $tag, ['class' => 'label label-default'])." "; |
|
178 | 178 | } |
179 | 179 | } |
180 | 180 | ?> |
@@ -51,9 +51,9 @@ discard block |
||
51 | 51 | { |
52 | 52 | $path = App::$Request->getPathWithoutControllerAction(); |
53 | 53 | $configs = $this->getConfigs(); |
54 | - $page = (int)App::$Request->query->get('page'); |
|
55 | - $sort = (string)App::$Request->query->get('sort', 'newest'); |
|
56 | - $itemCount = (int)$configs['itemPerCategory']; |
|
54 | + $page = (int) App::$Request->query->get('page'); |
|
55 | + $sort = (string) App::$Request->query->get('sort', 'newest'); |
|
56 | + $itemCount = (int) $configs['itemPerCategory']; |
|
57 | 57 | |
58 | 58 | // build special model with content list and category list information |
59 | 59 | $model = new EntityCategoryList($path, $configs, $page, $sort); |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | $model = new EntityContentRead($categoryRecord, $contentRecord->first()); |
134 | 134 | $search = null; |
135 | 135 | // check if similar search is enabled for item category |
136 | - if ((int)$model->getCategory()->getProperty('showSimilar') === 1 && $trash === false) { |
|
136 | + if ((int) $model->getCategory()->getProperty('showSimilar') === 1 && $trash === false) { |
|
137 | 137 | $search = new EntityContentSearch($model->title, $model->id); |
138 | 138 | } |
139 | 139 | |
@@ -162,7 +162,7 @@ discard block |
||
162 | 162 | { |
163 | 163 | $configs = $this->getConfigs(); |
164 | 164 | // check if tags is enabled |
165 | - if ((int)$configs['keywordsAsTags'] !== 1) { |
|
165 | + if ((int) $configs['keywordsAsTags'] !== 1) { |
|
166 | 166 | throw new NotFoundException(__('Tag system is disabled')); |
167 | 167 | } |
168 | 168 | |
@@ -175,7 +175,7 @@ discard block |
||
175 | 175 | } |
176 | 176 | |
177 | 177 | // get equal rows order by creation date |
178 | - $records = ContentEntity::where('meta_keywords', 'like', '%' . $tagName . '%')->orderBy('created_at', 'DESC')->take(self::TAG_PER_PAGE); |
|
178 | + $records = ContentEntity::where('meta_keywords', 'like', '%'.$tagName.'%')->orderBy('created_at', 'DESC')->take(self::TAG_PER_PAGE); |
|
179 | 179 | // check if result is not empty |
180 | 180 | if ($records->count() < 1) { |
181 | 181 | throw new NotFoundException(__('Nothing founded')); |
@@ -209,7 +209,7 @@ discard block |
||
209 | 209 | $this->layout = null; |
210 | 210 | |
211 | 211 | // check if rss display allowed for this category |
212 | - if ((int)$model->category['configs']['showRss'] !== 1) { |
|
212 | + if ((int) $model->category['configs']['showRss'] !== 1) { |
|
213 | 213 | throw new ForbiddenException(__('Rss feed is disabled for this category')); |
214 | 214 | } |
215 | 215 | |
@@ -220,7 +220,7 @@ discard block |
||
220 | 220 | // set channel data |
221 | 221 | $channel->title($model->category['title']) |
222 | 222 | ->description($model->category['description']) |
223 | - ->url(App::$Alias->baseUrl . '/content/list/' . $model->category['path']) |
|
223 | + ->url(App::$Alias->baseUrl.'/content/list/'.$model->category['path']) |
|
224 | 224 | ->appendTo($feed); |
225 | 225 | |
226 | 226 | // add content data |
@@ -230,10 +230,10 @@ discard block |
||
230 | 230 | // add title, short text, url |
231 | 231 | $item->title($row['title']) |
232 | 232 | ->description($row['text']) |
233 | - ->url(App::$Alias->baseUrl . $row['uri']); |
|
233 | + ->url(App::$Alias->baseUrl.$row['uri']); |
|
234 | 234 | // add poster |
235 | 235 | if ($row['thumb'] !== null) { |
236 | - $item->enclosure(App::$Alias->scriptUrl . $row['thumb'], $row['thumbSize'], 'image/jpeg'); |
|
236 | + $item->enclosure(App::$Alias->scriptUrl.$row['thumb'], $row['thumbSize'], 'image/jpeg'); |
|
237 | 237 | } |
238 | 238 | |
239 | 239 | // append response to channel |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | { |
57 | 57 | $this->_path = $path; |
58 | 58 | $this->_configs = $configs; |
59 | - $this->_page = (int)$offset; |
|
59 | + $this->_page = (int) $offset; |
|
60 | 60 | $this->_sort = $sort; |
61 | 61 | parent::__construct(); |
62 | 62 | } |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | public function before() |
70 | 70 | { |
71 | 71 | // find one or more categories where we must looking for content items |
72 | - if ((int)$this->_configs['multiCategories'] === 1) { |
|
72 | + if ((int) $this->_configs['multiCategories'] === 1) { |
|
73 | 73 | $this->findCategories(); |
74 | 74 | } else { |
75 | 75 | $this->findCategory(); |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | private function findCategories() |
108 | 108 | { |
109 | 109 | // get all categories for current path and child of it |
110 | - $query = ContentCategory::where('path', 'like', $this->_path . '%'); |
|
110 | + $query = ContentCategory::where('path', 'like', $this->_path.'%'); |
|
111 | 111 | if ($query->count() < 1) { |
112 | 112 | throw new NotFoundException(__('Category is not founded')); |
113 | 113 | } |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | } |
141 | 141 | |
142 | 142 | // calculate selection offset |
143 | - $itemPerPage = (int)$this->_configs['itemPerCategory']; |
|
143 | + $itemPerPage = (int) $this->_configs['itemPerCategory']; |
|
144 | 144 | if ($itemPerPage < 1) { |
145 | 145 | $itemPerPage = 1; |
146 | 146 | } |
@@ -177,15 +177,15 @@ discard block |
||
177 | 177 | { |
178 | 178 | // prepare rss url link for current category if enabled |
179 | 179 | $rssUrl = false; |
180 | - if ((int)$this->_configs['rss'] === 1) { |
|
181 | - $rssUrl = App::$Alias->baseUrl . '/content/rss/' . $this->_currentCategory->path; |
|
180 | + if ((int) $this->_configs['rss'] === 1) { |
|
181 | + $rssUrl = App::$Alias->baseUrl.'/content/rss/'.$this->_currentCategory->path; |
|
182 | 182 | $rssUrl = rtrim($rssUrl, '/'); |
183 | 183 | } |
184 | 184 | |
185 | 185 | // prepare sorting urls |
186 | 186 | $catSortParams = []; |
187 | 187 | if (App::$Request->query->get('page') !== null) { |
188 | - $catSortParams['page'] = (int)App::$Request->query->get('page'); |
|
188 | + $catSortParams['page'] = (int) App::$Request->query->get('page'); |
|
189 | 189 | } |
190 | 190 | $catSortUrls = [ |
191 | 191 | 'views' => Url::to('content/list', $this->_currentCategory->path, null, Arr::merge($catSortParams, ['sort' => 'views']), false), |
@@ -204,7 +204,7 @@ discard block |
||
204 | 204 | ]; |
205 | 205 | |
206 | 206 | // check if this category is hidden |
207 | - if ((int)$this->category['configs']['showCategory'] !== 1) { |
|
207 | + if ((int) $this->category['configs']['showCategory'] !== 1) { |
|
208 | 208 | throw new ForbiddenException(__('This category is not available to view')); |
209 | 209 | } |
210 | 210 | |
@@ -259,7 +259,7 @@ discard block |
||
259 | 259 | // check if current user can rate item |
260 | 260 | $ignoredRate = App::$Session->get('content.rate.ignore'); |
261 | 261 | $canRate = true; |
262 | - if (Obj::isArray($ignoredRate) && Arr::in((string)$row->id, $ignoredRate)) { |
|
262 | + if (Obj::isArray($ignoredRate) && Arr::in((string) $row->id, $ignoredRate)) { |
|
263 | 263 | $canRate = false; |
264 | 264 | } |
265 | 265 | if (!App::$User->isAuth()) { |
@@ -276,11 +276,11 @@ discard block |
||
276 | 276 | 'poster' => $row->getPosterUri(), |
277 | 277 | 'thumb' => $row->getPosterThumbUri(), |
278 | 278 | 'thumbSize' => File::size($row->getPosterThumbUri()), |
279 | - 'views' => (int)$row->views, |
|
280 | - 'rating' => (int)$row->rating, |
|
279 | + 'views' => (int) $row->views, |
|
280 | + 'rating' => (int) $row->rating, |
|
281 | 281 | 'canRate' => $canRate, |
282 | 282 | 'category' => $this->categories[$row->category_id], |
283 | - 'uri' => '/content/read/' . $itemPath, |
|
283 | + 'uri' => '/content/read/'.$itemPath, |
|
284 | 284 | 'tags' => $tags |
285 | 285 | ]; |
286 | 286 | } |