@@ -41,7 +41,7 @@ |
||
41 | 41 | }*/ |
42 | 42 | |
43 | 43 | // prepare query |
44 | - $page = (int)$this->request->query->get('page', 0); |
|
44 | + $page = (int) $this->request->query->get('page', 0); |
|
45 | 45 | $offset = $page * 10; |
46 | 46 | $query = ContentRecord::where('author_id', App::$User->identity()->getId()); |
47 | 47 |
@@ -69,7 +69,7 @@ |
||
69 | 69 | $model = new EntityContentRead($categoryRecord, $contentRecord->first()); |
70 | 70 | $search = null; |
71 | 71 | // check if similar search is enabled for item category |
72 | - if ((bool)$model->getCategory()->getProperty('showSimilar') && !$trash) { |
|
72 | + if ((bool) $model->getCategory()->getProperty('showSimilar') && !$trash) { |
|
73 | 73 | $search = new EntityContentSearch($model->title, $model->id, $model->getCategory()->id); |
74 | 74 | } |
75 | 75 |
@@ -11,15 +11,15 @@ |
||
11 | 11 | } |
12 | 12 | $title = Text::snippet($title, 50); |
13 | 13 | $date = Date::humanize($record->created_at); |
14 | - $categoryUrl = \App::$Alias->baseUrl . '/content/list/' . $record->cpath; |
|
15 | - $categoryLink = '<a href="' . $categoryUrl . '">' . \App::$Translate->getLocaleText($record->ctitle) . '</a>'; |
|
16 | - $newsLink = \App::$Alias->baseUrl . '/content/read/' . $record->cpath; |
|
17 | - $newsLink = rtrim($newsLink, '/') . '/' . $record->path; |
|
14 | + $categoryUrl = \App::$Alias->baseUrl.'/content/list/'.$record->cpath; |
|
15 | + $categoryLink = '<a href="'.$categoryUrl.'">'.\App::$Translate->getLocaleText($record->ctitle).'</a>'; |
|
16 | + $newsLink = \App::$Alias->baseUrl.'/content/read/'.$record->cpath; |
|
17 | + $newsLink = rtrim($newsLink, '/').'/'.$record->path; |
|
18 | 18 | |
19 | 19 | echo '<div class="row"><div class="col-md-12">'; |
20 | - echo '<a href="' . $newsLink . '">→ ' . $title . '</a><br />'; |
|
21 | - echo '<small class="float-left">' . $categoryLink . '</small>'; |
|
22 | - echo '<small class="float-right text-secondary">' . $date . '</small>'; |
|
20 | + echo '<a href="'.$newsLink.'">→ '.$title.'</a><br />'; |
|
21 | + echo '<small class="float-left">'.$categoryLink.'</small>'; |
|
22 | + echo '<small class="float-right text-secondary">'.$date.'</small>'; |
|
23 | 23 | echo '</div></div>'; |
24 | 24 | echo '<hr class="pretty" />'; |
25 | 25 | } |
@@ -99,9 +99,9 @@ |
||
99 | 99 | |
100 | 100 | // add notification msg |
101 | 101 | $targetId = $this->_post->user_id; |
102 | - if ($targetId !== null && (int)$targetId > 0 && $targetId !== $this->_userId) { |
|
102 | + if ($targetId !== null && (int) $targetId > 0 && $targetId !== $this->_userId) { |
|
103 | 103 | $notify = new EntityAddNotification($targetId); |
104 | - $uri = '/feedback/read/' . $this->_post->id . '/' . $this->_post->hash . '#feedback-answer-' . $record->id; |
|
104 | + $uri = '/feedback/read/'.$this->_post->id.'/'.$this->_post->hash.'#feedback-answer-'.$record->id; |
|
105 | 105 | $notify->add($uri, EntityAddNotification::MSG_ADD_FEEDBACKANSWER, [ |
106 | 106 | 'snippet' => Text::snippet($this->message, 50), |
107 | 107 | 'post' => Text::snippet($this->_post->message, 50) |
@@ -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)], |
@@ -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> |
@@ -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> |
@@ -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 |
@@ -51,7 +51,7 @@ |
||
51 | 51 | <h3><?= __('Directories and files') ?></h3> |
52 | 52 | <?php |
53 | 53 | foreach ($check->chmodCheck as $dir => $status) { |
54 | - echo $this->bootstrap()->badge(($status ? 'success' : 'danger'), $dir) . " "; |
|
54 | + echo $this->bootstrap()->badge(($status ? 'success' : 'danger'), $dir)." "; |
|
55 | 55 | } |
56 | 56 | ?> |
57 | 57 | <hr /> |