@@ -46,9 +46,8 @@ |
||
46 | 46 | ['text' => $item->id], |
47 | 47 | ['text' => Url::a(['feedback/read', [$item->id, $item->hash]], Text::cut($item->message, 0, 40)), 'html' => true], |
48 | 48 | ['text' => |
49 | - (int)$item->closed === 1 ? |
|
50 | - '<span class="badge badge-danger">' . __('Closed') . '</span>' : |
|
51 | - '<span class="badge badge-success">' . __('Opened') . '</span>', |
|
49 | + (int) $item->closed === 1 ? |
|
50 | + '<span class="badge badge-danger">'.__('Closed').'</span>' : '<span class="badge badge-success">'.__('Opened').'</span>', |
|
52 | 51 | 'html' => true, '!secure' => true], |
53 | 52 | ['text' => $item->answers()->count()], |
54 | 53 | ['text' => Date::convertToDatetime($item->created_at, Date::FORMAT_TO_HOUR)], |
@@ -27,9 +27,9 @@ discard block |
||
27 | 27 | <?php endif; ?> |
28 | 28 | |
29 | 29 | <?php |
30 | -if (!(bool)$post->closed && \App::$User->isAuth()) { |
|
30 | +if (!(bool) $post->closed && \App::$User->isAuth()) { |
|
31 | 31 | $user = App::$User->identity(); |
32 | - if ((int)$user->getId() === (int)$post->user_id) { |
|
32 | + if ((int) $user->getId() === (int) $post->user_id) { |
|
33 | 33 | echo Url::a(['feedback/close', [$post->id, $post->hash]], __('Close request'), ['class' => 'btn btn-danger']); |
34 | 34 | } |
35 | 35 | } |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | </div> |
51 | 51 | <h3><?= __('Answers') ?></h3> |
52 | 52 | <hr /> |
53 | -<?php if (!(bool)$post->readed && (!$answers || $answers->count() < 1)): ?> |
|
53 | +<?php if (!(bool) $post->readed && (!$answers || $answers->count() < 1)): ?> |
|
54 | 54 | <?= $this->bootstrap()->alert('warning', __('This message is not properly readed by website administrators')) ?> |
55 | 55 | <?php endif; ?> |
56 | 56 | |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | <div class="row" id="feedback-answer-<?= $answer->id ?>"> |
60 | 60 | <div class="col-md-12"> |
61 | 61 | <div class="card"> |
62 | - <div class="card-header<?= (bool)$answer->is_admin ? ' bg-success' : null ?>"> |
|
62 | + <div class="card-header<?= (bool) $answer->is_admin ? ' bg-success' : null ?>"> |
|
63 | 63 | <strong><?= $answer->name ?> (<?= $answer->email ?>)</strong>, |
64 | 64 | <?= Date::convertToDatetime($answer->created_at, Date::FORMAT_TO_HOUR) ?> |
65 | 65 | </div> |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | <?php endif; ?> |
74 | 74 | |
75 | 75 | <br /> |
76 | -<?php if (!(bool)$post->closed && $model): ?> |
|
76 | +<?php if (!(bool) $post->closed && $model): ?> |
|
77 | 77 | <h3><?= __('Add answer') ?></h3> |
78 | 78 | <?php $form = $this->form($model) ?> |
79 | 79 | <?= $form->start() ?> |
@@ -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 @@ discard block |
||
30 | 30 | } |
31 | 31 | // don't use breadcrumbs on injected pathway rule |
32 | 32 | $breadcrumbs = null; |
33 | -if (!\App::$Request->isPathInjected() && (bool)$model->getCategory()->getProperty('showCategory')) { |
|
33 | +if (!\App::$Request->isPathInjected() && (bool) $model->getCategory()->getProperty('showCategory')) { |
|
34 | 34 | $breadcrumbs = [ |
35 | 35 | Url::to('/') => __('Home') |
36 | 36 | ]; |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | $breadcrumbs[Url::to('content/list', [$cat['path']])] = $cat['name']; |
43 | 43 | } |
44 | 44 | } |
45 | - $breadcrumbs[] = __('Content') . ': ' . Str::sub($title, 0, 40); |
|
45 | + $breadcrumbs[] = __('Content').': '.Str::sub($title, 0, 40); |
|
46 | 46 | } |
47 | 47 | } |
48 | 48 | |
@@ -55,39 +55,39 @@ discard block |
||
55 | 55 | ]); |
56 | 56 | |
57 | 57 | $properties = [ |
58 | - 'date' => (bool)$model->getCategory()->getProperty('showDate'), |
|
59 | - 'author' => (bool)$model->getCategory()->getProperty('showAuthor'), |
|
60 | - 'views' => (bool)$model->getCategory()->getProperty('showViews'), |
|
61 | - 'category' => (bool)$model->getCategory()->getProperty('showCategory'), |
|
62 | - 'rating' => (bool)$model->getCategory()->getProperty('showRating'), |
|
63 | - 'tags' => (bool)$model->getCategory()->getProperty('showTags') |
|
58 | + 'date' => (bool) $model->getCategory()->getProperty('showDate'), |
|
59 | + 'author' => (bool) $model->getCategory()->getProperty('showAuthor'), |
|
60 | + 'views' => (bool) $model->getCategory()->getProperty('showViews'), |
|
61 | + 'category' => (bool) $model->getCategory()->getProperty('showCategory'), |
|
62 | + 'rating' => (bool) $model->getCategory()->getProperty('showRating'), |
|
63 | + 'tags' => (bool) $model->getCategory()->getProperty('showTags') |
|
64 | 64 | ]; |
65 | -$showComments = (bool)$model->getCategory()->getProperty('showComments'); |
|
66 | -$showPoster = (bool)$model->getCategory()->getProperty('showPoster'); |
|
65 | +$showComments = (bool) $model->getCategory()->getProperty('showComments'); |
|
66 | +$showPoster = (bool) $model->getCategory()->getProperty('showPoster'); |
|
67 | 67 | ?> |
68 | 68 | <?php $this->start('body') ?> |
69 | 69 | <article class="article-item" itemscope="itemscope" itemtype="https://schema.org/NewsArticle"> |
70 | 70 | <h1><?= $model->title ?></h1> |
71 | 71 | <?php if (Arr::in(true, $properties)): ?> |
72 | 72 | <div class="meta"> |
73 | - <?php if ((bool)$properties['category']): ?> |
|
73 | + <?php if ((bool) $properties['category']): ?> |
|
74 | 74 | <span class="spaced"><i class="fa fa-list"></i> <?= Url::a(['content/list', [$model->catPath]], $model->catName, ['itemprop' => 'genre']) ?></span> |
75 | 75 | <?php endif; ?> |
76 | - <?php if ((bool)$properties['date']): ?> |
|
76 | + <?php if ((bool) $properties['date']): ?> |
|
77 | 77 | <span class="spaced"><i class="fa fa-calendar"></i> <time datetime="<?= date('c', Date::convertToTimestamp($model->getRecord()->created_at)) ?> itemprop="datePublished"><?= $model->createDate ?></time></span> |
78 | 78 | <?php endif; ?> |
79 | - <?php if ((bool)$properties['author']): ?> |
|
79 | + <?php if ((bool) $properties['author']): ?> |
|
80 | 80 | <?php if ($model->authorId && $model->authorId > 0): ?> |
81 | 81 | <span class="spaced"><i class="fa fa-user"></i> <?= Url::a(['profile/show', [$model->authorId]], $model->authorName, ['itemprop' => 'author']) ?></span> |
82 | 82 | <?php else: ?> |
83 | 83 | <span class="spaced"><i class="fa fa-user"></i> <s><?= $model->authorName ?></s></span> |
84 | 84 | <?php endif; ?> |
85 | 85 | <?php endif; ?> |
86 | - <?php if ((bool)$properties['views']): ?> |
|
86 | + <?php if ((bool) $properties['views']): ?> |
|
87 | 87 | <span class="spaced"><i class="fa fa-eye"></i> <?= $model->views ?></span> |
88 | 88 | <?php endif ?> |
89 | 89 | <?php if (\App::$User->isAuth() && \App::$User->identity()->role->can('Admin/Content/Update')): ?> |
90 | - <span class="float-right"><a href="<?= \App::$Alias->scriptUrl . '/admin/content/update/' . $model->id ?>" target="_blank"><i class="fa fa-pencil" style="color: #ff0000;"></i></a></span> |
|
90 | + <span class="float-right"><a href="<?= \App::$Alias->scriptUrl.'/admin/content/update/'.$model->id ?>" target="_blank"><i class="fa fa-pencil" style="color: #ff0000;"></i></a></span> |
|
91 | 91 | <?php endif; ?> |
92 | 92 | </div> |
93 | 93 | <?php else: ?> |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | <div id="content-text"> |
103 | 103 | <?php if ($showPoster === true && $model->posterFull !== null && $model->posterThumb !== null): ?> |
104 | 104 | <a href="#showPoster" data-toggle="modal" data-target="#showPoster"> |
105 | - <img alt="<?= __('Poster for') ?>: <?= Str::lowerCase($model->title) ?>" src="<?= \App::$Alias->scriptUrl . $model->posterThumb ?>" class="image_poster img-thumbnail" /> |
|
105 | + <img alt="<?= __('Poster for') ?>: <?= Str::lowerCase($model->title) ?>" src="<?= \App::$Alias->scriptUrl.$model->posterThumb ?>" class="image_poster img-thumbnail" /> |
|
106 | 106 | </a> |
107 | 107 | <!-- Modal poster pop-up --> |
108 | 108 | <div class="modal fade" id="showPoster" tabindex="-1" role="dialog" aria-labelledby="showPosterModal"> |
@@ -113,12 +113,12 @@ discard block |
||
113 | 113 | <h4 class="modal-title" id="myModalLabel"><?= __('View poster') ?></h4> |
114 | 114 | </div> |
115 | 115 | <div class="modal-body"> |
116 | - <img class="img-fluid" src="<?= \App::$Alias->scriptUrl . $model->posterFull ?>" alt="<?= __('Poster image') ?>" style="margin: 0 auto;" /> |
|
116 | + <img class="img-fluid" src="<?= \App::$Alias->scriptUrl.$model->posterFull ?>" alt="<?= __('Poster image') ?>" style="margin: 0 auto;" /> |
|
117 | 117 | </div> |
118 | 118 | </div> |
119 | 119 | </div> |
120 | 120 | </div> |
121 | - <?php endif ;?> |
|
121 | + <?php endif; ?> |
|
122 | 122 | <?= $model->text ?> |
123 | 123 | </div> |
124 | 124 | <?php if ($model->galleryItems !== null && Any::isArray($model->galleryItems)): ?> |
@@ -126,8 +126,8 @@ discard block |
||
126 | 126 | <?php $i = 1; ?> |
127 | 127 | <?php foreach ($model->galleryItems as $thumbPic => $fullPic): ?> |
128 | 128 | <div class="col-md-2 well"> |
129 | - <a href="#showGallery" class="modalGallery" content="<?= \App::$Alias->scriptUrl . $fullPic ?>" id="gallery-<?= $i ?>"> |
|
130 | - <img src="<?= \App::$Alias->scriptUrl . $thumbPic ?>" class="img-fluid image-item" /> |
|
129 | + <a href="#showGallery" class="modalGallery" content="<?= \App::$Alias->scriptUrl.$fullPic ?>" id="gallery-<?= $i ?>"> |
|
130 | + <img src="<?= \App::$Alias->scriptUrl.$thumbPic ?>" class="img-fluid image-item" /> |
|
131 | 131 | </a> |
132 | 132 | </div> |
133 | 133 | <?php $i++ ?> |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | <h4 class="modal-title" id="showModalLabel"><?= __('View picture') ?></h4> |
142 | 142 | </div> |
143 | 143 | <div class="modal-body" id="modal-gallery-body"> |
144 | - <img class="img-fluid" src="<?= \App::$Alias->scriptUrl . $model->posterFull ?>" alt="<?= __('Gallery picture') ?>" style="margin: 0 auto;" /> |
|
144 | + <img class="img-fluid" src="<?= \App::$Alias->scriptUrl.$model->posterFull ?>" alt="<?= __('Gallery picture') ?>" style="margin: 0 auto;" /> |
|
145 | 145 | </div> |
146 | 146 | </div> |
147 | 147 | </div> |
@@ -162,7 +162,7 @@ discard block |
||
162 | 162 | </div> |
163 | 163 | <div id="similar<?= $idx ?>" class="panel-collapse collapse"> |
164 | 164 | <div class="panel-body"> |
165 | - <a href="<?= \App::$Alias->baseUrl . $item['uri'] ?>"> |
|
165 | + <a href="<?= \App::$Alias->baseUrl.$item['uri'] ?>"> |
|
166 | 166 | <?= $item['snippet'] ?> |
167 | 167 | </a> |
168 | 168 | </div> |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | echo '<i class="fa fa-tags"></i> '; |
193 | 193 | foreach ($model->metaKeywords as $tag) { |
194 | 194 | $tag = trim($tag); |
195 | - echo Url::a(['content/tag', [urlencode($tag)]], $tag, ['class' => 'badge badge-secondary']) . " "; |
|
195 | + echo Url::a(['content/tag', [urlencode($tag)]], $tag, ['class' => 'badge badge-secondary'])." "; |
|
196 | 196 | } |
197 | 197 | } |
198 | 198 | ?> |
@@ -7,5 +7,5 @@ |
||
7 | 7 | ?> |
8 | 8 | |
9 | 9 | <?php foreach ($records as $row) { |
10 | - echo Url::a(['content/tag', [$row['tag']]], $row['tag'], ['class' => 'badge badge-secondary']) . ' '; |
|
10 | + echo Url::a(['content/tag', [$row['tag']]], $row['tag'], ['class' => 'badge badge-secondary']).' '; |
|
11 | 11 | } |
12 | 12 | \ No newline at end of file |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | <div class="row"> |
17 | 17 | <div class="col-md-12"> |
18 | 18 | <i class="fa fa-user"></i> |
19 | - <?php if ((int)$comment['user']['id'] > 0): ?> |
|
19 | + <?php if ((int) $comment['user']['id'] > 0): ?> |
|
20 | 20 | <?= Url::a(['profile/show', [$comment['user']['id']]], $comment['user']['name']) ?> |
21 | 21 | <?php else: ?> |
22 | 22 | <?= $comment['user']['name'] ?> |
@@ -28,8 +28,8 @@ discard block |
||
28 | 28 | <img class="img-fluid rounded mt-1" src="<?= $comment['user']['avatar']?>" style="min-height: 50px;" alt="Picture of user <?= $comment['user']['name'] ?>"> |
29 | 29 | </div> |
30 | 30 | <div class="col-md"> |
31 | - <a href="<?= \App::$Alias->baseUrl . $comment['pathway'] . '#comment-list' ?>"> |
|
32 | - <?= Text::cut(\App::$Security->strip_tags($comment['text']), 0, $snippet) . '...' ?> |
|
31 | + <a href="<?= \App::$Alias->baseUrl.$comment['pathway'].'#comment-list' ?>"> |
|
32 | + <?= Text::cut(\App::$Security->strip_tags($comment['text']), 0, $snippet).'...' ?> |
|
33 | 33 | </a> |
34 | 34 | </div> |
35 | 35 | </div> |
@@ -43,7 +43,7 @@ |
||
43 | 43 | <div class="col-md-12"> |
44 | 44 | <div class="search-result"> |
45 | 45 | <div class="h4"> |
46 | - <a href="<?= \App::$Alias->baseUrl . $item['uri'] ?>"><?= $model->highlightText($item['title'], 'span', ['class' => 'search-highlight']) ?></a> |
|
46 | + <a href="<?= \App::$Alias->baseUrl.$item['uri'] ?>"><?= $model->highlightText($item['title'], 'span', ['class' => 'search-highlight']) ?></a> |
|
47 | 47 | <small class="float-right text-secondary"><?= $item['date'] ?></small> |
48 | 48 | </div> |
49 | 49 | <small><?= $model->highlightText($item['snippet'], 'span', ['class' => 'search-highlight']) ?>...</small> |
@@ -41,7 +41,7 @@ |
||
41 | 41 | |
42 | 42 | // initialize model with answer add if thread is not closed |
43 | 43 | $model = null; |
44 | - if ((int)$record->closed !== 1) { |
|
44 | + if ((int) $record->closed !== 1) { |
|
45 | 45 | $model = new FormAnswerAdd($record); |
46 | 46 | if ($model->send()) { |
47 | 47 | if ($model->validate()) { |
@@ -39,18 +39,18 @@ discard block |
||
39 | 39 | { |
40 | 40 | // get configs |
41 | 41 | $configs = $this->getConfigs(); |
42 | - if (!App::$User->isAuth() && !(bool)$configs['guestAdd']) { |
|
42 | + if (!App::$User->isAuth() && !(bool) $configs['guestAdd']) { |
|
43 | 43 | throw new ForbiddenException(__('Feedback available only for authorized users')); |
44 | 44 | } |
45 | 45 | |
46 | 46 | // initialize model |
47 | - $model = new FormFeedbackAdd((bool)$configs['useCaptcha']); |
|
47 | + $model = new FormFeedbackAdd((bool) $configs['useCaptcha']); |
|
48 | 48 | if ($model->send()) { |
49 | 49 | if ($model->validate()) { |
50 | 50 | // if validation is passed save data to db and get row |
51 | 51 | $record = $model->make(); |
52 | 52 | App::$Session->getFlashBag()->add('success', __('Your message was added successful')); |
53 | - $this->response->redirect('feedback/read/' . $record->id . '/' . $record->hash); |
|
53 | + $this->response->redirect('feedback/read/'.$record->id.'/'.$record->hash); |
|
54 | 54 | } else { |
55 | 55 | App::$Session->getFlashBag()->add('error', __('Message is not sended! Please, fix issues in form below')); |
56 | 56 | } |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | // render output view |
60 | 60 | return $this->view->render('feedback/create', [ |
61 | 61 | 'model' => $model, |
62 | - 'useCaptcha' => (bool)$configs['useCaptcha'] |
|
62 | + 'useCaptcha' => (bool) $configs['useCaptcha'] |
|
63 | 63 | ]); |
64 | 64 | } |
65 | 65 | |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | |
91 | 91 | $model = null; |
92 | 92 | // check if feedback post is not closed for answers |
93 | - if (!(bool)$recordPost->closed) { |
|
93 | + if (!(bool) $recordPost->closed) { |
|
94 | 94 | // init new answer add model |
95 | 95 | $model = new FormAnswerAdd($recordPost); |
96 | 96 | // if answer is sender lets try to make it model |
@@ -133,10 +133,10 @@ discard block |
||
133 | 133 | // check if action is submited |
134 | 134 | if ($this->request->request->get('closeRequest', false)) { |
135 | 135 | // if created by authorized user |
136 | - if ((int)$record->user_id > 0) { |
|
136 | + if ((int) $record->user_id > 0) { |
|
137 | 137 | $user = App::$User->identity(); |
138 | 138 | // button is pressed not by request creator |
139 | - if (!$user || $user->getId() !== (int)$record->user_id) { |
|
139 | + if (!$user || $user->getId() !== (int) $record->user_id) { |
|
140 | 140 | throw new ForbiddenException(__('This feedback request was created by another user')); |
141 | 141 | } |
142 | 142 | } |
@@ -147,11 +147,11 @@ discard block |
||
147 | 147 | |
148 | 148 | // add notification and redirect |
149 | 149 | App::$Session->getFlashBag()->add('warning', __('Feedback request now is closed!')); |
150 | - $this->response->redirect('feedback/read/' . $id . '/' . $hash); |
|
150 | + $this->response->redirect('feedback/read/'.$id.'/'.$hash); |
|
151 | 151 | } |
152 | 152 | |
153 | 153 | return $this->view->render('feedback/close', [ |
154 | - 'id' => (int)$id, |
|
154 | + 'id' => (int) $id, |
|
155 | 155 | 'hash' => $hash |
156 | 156 | ]); |
157 | 157 | } |
@@ -164,7 +164,7 @@ discard block |
||
164 | 164 | public function actionList(): ?string |
165 | 165 | { |
166 | 166 | // set current page and offset |
167 | - $page = (int)$this->request->query->get('page'); |
|
167 | + $page = (int) $this->request->query->get('page'); |
|
168 | 168 | $offset = $page * self::ITEM_PER_PAGE; |
169 | 169 | |
170 | 170 | // check if user is authorized or throw exception |