@@ -9,7 +9,6 @@ |
||
| 9 | 9 | use Ffcms\Core\Exception\JsonException; |
| 10 | 10 | use Ffcms\Core\Helper\Date; |
| 11 | 11 | use Ffcms\Core\Helper\Type\Str; |
| 12 | -use Ffcms\Core\Exception\ForbiddenException; |
|
| 13 | 12 | |
| 14 | 13 | /** |
| 15 | 14 | * Class CommentPostAdd. Model to parse and insert input comment post data. |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | public function check() |
| 58 | 58 | { |
| 59 | 59 | // check if user is auth'd or guest name is defined |
| 60 | - if (!App::$User->isAuth() && ((int)$this->_configs['guestAdd'] !== 1 || Str::length($this->guestName) < 2)) { |
|
| 60 | + if (!App::$User->isAuth() && ((int) $this->_configs['guestAdd'] !== 1 || Str::length($this->guestName) < 2)) { |
|
| 61 | 61 | throw new JsonException(__('Guest name is not defined')); |
| 62 | 62 | } |
| 63 | 63 | |
@@ -67,7 +67,7 @@ discard block |
||
| 67 | 67 | } |
| 68 | 68 | |
| 69 | 69 | // check if message length is correct |
| 70 | - if (Str::length($this->message) < (int)$this->_configs['minLength'] || Str::length($this->message) > (int)$this->_configs['maxLength']) { |
|
| 70 | + if (Str::length($this->message) < (int) $this->_configs['minLength'] || Str::length($this->message) > (int) $this->_configs['maxLength']) { |
|
| 71 | 71 | throw new JsonException(__('Message length is incorrect. Current: %cur%, min - %min%, max - %max%', [ |
| 72 | 72 | 'cur' => Str::length($this->message), |
| 73 | 73 | 'min' => $this->_configs['minLength'], |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | } |
| 77 | 77 | |
| 78 | 78 | // guest moderation |
| 79 | - if (!App::$User->isAuth() && (bool)$this->_configs['guestModerate']) { |
|
| 79 | + if (!App::$User->isAuth() && (bool) $this->_configs['guestModerate']) { |
|
| 80 | 80 | $captcha = App::$Request->request->get('captcha'); |
| 81 | 81 | if (!App::$Captcha->validate($captcha)) { |
| 82 | 82 | throw new JsonException(__('Captcha is incorrect! Click on image to refresh and try again')); |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | $record->message = $this->message; |
| 115 | 115 | $record->lang = App::$Request->getLanguage(); |
| 116 | 116 | // check if premoderation is enabled and user is guest |
| 117 | - if ((int)$this->_configs['guestModerate'] === 1 && $this->_userId < 1) { |
|
| 117 | + if ((int) $this->_configs['guestModerate'] === 1 && $this->_userId < 1) { |
|
| 118 | 118 | $record->moderate = 1; |
| 119 | 119 | } |
| 120 | 120 | $record->save(); |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | <h1><?= __('Feedback list') ?></h1> |
| 24 | 24 | <hr /> |
| 25 | 25 | <?php if ($records === null || $records->count() < 1) { |
| 26 | - echo '<p class="alert alert-warning">' . __('Feedback requests is empty now!') . '</p>'; |
|
| 26 | + echo '<p class="alert alert-warning">'.__('Feedback requests is empty now!').'</p>'; |
|
| 27 | 27 | return; |
| 28 | 28 | } |
| 29 | 29 | |
@@ -31,17 +31,16 @@ discard block |
||
| 31 | 31 | foreach ($records as $item) { |
| 32 | 32 | /** @var \Apps\ActiveRecord\FeedbackPost $item*/ |
| 33 | 33 | $items[] = [ |
| 34 | - ['text' => $item->id . ((int)$item->readed !== 1 ? ' <i class="fa fa-bell alert-info"></i>' : null), 'html' => true], |
|
| 34 | + ['text' => $item->id.((int) $item->readed !== 1 ? ' <i class="fa fa-bell alert-info"></i>' : null), 'html' => true], |
|
| 35 | 35 | ['text' => Url::link(['feedback/read', $item->id], Text::snippet($item->message, 40, false)), 'html' => true], |
| 36 | 36 | ['text' => $item->getAnswers()->count()], |
| 37 | 37 | ['text' => $item->email], |
| 38 | 38 | ['text' => |
| 39 | - (int)$item->closed === 1 ? |
|
| 40 | - '<span class="label label-danger">' . __('Closed') . '</span>' : |
|
| 41 | - '<span class="label label-success">' . __('Opened') . '</span>', |
|
| 39 | + (int) $item->closed === 1 ? |
|
| 40 | + '<span class="label label-danger">'.__('Closed').'</span>' : '<span class="label label-success">'.__('Opened').'</span>', |
|
| 42 | 41 | 'html' => true, '!secure' => true], |
| 43 | 42 | ['text' => Date::convertToDatetime($item->updated_at, Date::FORMAT_TO_HOUR)], |
| 44 | - ['text' => Url::link(['feedback/read', $item->id], '<i class="fa fa-list fa-lg"></i> ') . |
|
| 43 | + ['text' => Url::link(['feedback/read', $item->id], '<i class="fa fa-list fa-lg"></i> '). |
|
| 45 | 44 | Url::link(['feedback/delete', 'post', $item->id], '<i class="fa fa-trash-o fa-lg"></i>'), |
| 46 | 45 | 'html' => true, 'property' => ['class' => 'text-center']] |
| 47 | 46 | ]; |
@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | $author = Url::link(['user/update', $record->user_id], $author); |
| 29 | 29 | } |
| 30 | 30 | ?> |
| 31 | - <?= $author . ', ' . Date::convertToDatetime($record->created_at, Date::FORMAT_TO_HOUR) ?> |
|
| 31 | + <?= $author.', '.Date::convertToDatetime($record->created_at, Date::FORMAT_TO_HOUR) ?> |
|
| 32 | 32 | <div class="pull-right"> |
| 33 | 33 | <?= Url::link(['comments/edit', 'comment', $record->id], __('Edit'), ['class' => 'label label-primary']) ?> |
| 34 | 34 | <?= Url::link(['comments/delete', 'comment', $record->id], __('Delete'), ['class' => 'label label-danger']) ?> |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | <?php |
| 56 | 56 | $answerAuthor = Simplify::parseUserLink($answer->user_id, $answer->guest_name, 'user/update'); |
| 57 | 57 | ?> |
| 58 | - <?= $answerAuthor . ', ' . Date::convertToDatetime($answer->created_at, Date::FORMAT_TO_HOUR) ?> |
|
| 58 | + <?= $answerAuthor.', '.Date::convertToDatetime($answer->created_at, Date::FORMAT_TO_HOUR) ?> |
|
| 59 | 59 | <div class="pull-right"> |
| 60 | 60 | <?= Url::link(['comments/edit', 'answer', $answer->id], __('Edit'), ['class' => 'label label-primary']) ?> |
| 61 | 61 | <?= Url::link(['comments/delete', 'answer', $answer->id], __('Delete'), ['class' => 'label label-danger']) ?> |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | |
| 28 | 28 | <?php |
| 29 | 29 | if ($records === null || $records->count() < 1) { |
| 30 | - echo '<p class="alert alert-warning">' . __('Answers is not founded') . '</p>'; |
|
| 30 | + echo '<p class="alert alert-warning">'.__('Answers is not founded').'</p>'; |
|
| 31 | 31 | return; |
| 32 | 32 | } |
| 33 | 33 | $items = []; |
@@ -37,12 +37,12 @@ discard block |
||
| 37 | 37 | |
| 38 | 38 | $items[] = [ |
| 39 | 39 | 1 => ['text' => $item->id], |
| 40 | - 2 => ['text' => Url::link(['comments/read', $commentObject->id, null, ['#' => '#answer-' . $item->id]], $message), 'html' => true], |
|
| 41 | - 3 => ['text' => Simplify::parseUserLink((int)$item->user_id, $item->guest_name, 'user/update'), 'html' => true], |
|
| 42 | - 4 => ['text' => '<a href="' . App::$Alias->scriptUrl . $commentObject->pathway . '" target="_blank">' . Str::sub($commentObject->pathway, 0, 20) . '...</a>', 'html' => true], |
|
| 40 | + 2 => ['text' => Url::link(['comments/read', $commentObject->id, null, ['#' => '#answer-'.$item->id]], $message), 'html' => true], |
|
| 41 | + 3 => ['text' => Simplify::parseUserLink((int) $item->user_id, $item->guest_name, 'user/update'), 'html' => true], |
|
| 42 | + 4 => ['text' => '<a href="'.App::$Alias->scriptUrl.$commentObject->pathway.'" target="_blank">'.Str::sub($commentObject->pathway, 0, 20).'...</a>', 'html' => true], |
|
| 43 | 43 | 5 => ['text' => Date::convertToDatetime($item->created_at, Date::FORMAT_TO_HOUR)], |
| 44 | - 6 => ['text' => Url::link(['comments/read', $commentObject->id], '<i class="fa fa-list fa-lg"></i>') . |
|
| 45 | - ' ' . Url::link(['comments/delete', 'answer', $item->id], '<i class="fa fa-trash-o fa-lg"></i>'), |
|
| 44 | + 6 => ['text' => Url::link(['comments/read', $commentObject->id], '<i class="fa fa-list fa-lg"></i>'). |
|
| 45 | + ' '.Url::link(['comments/delete', 'answer', $item->id], '<i class="fa fa-trash-o fa-lg"></i>'), |
|
| 46 | 46 | 'html' => true, 'property' => ['class' => 'text-center']], |
| 47 | 47 | 'property' => ['class' => 'checkbox-row'] |
| 48 | 48 | ]; |
@@ -26,7 +26,7 @@ discard block |
||
| 26 | 26 | |
| 27 | 27 | <?php |
| 28 | 28 | if ($records === null || $records->count() < 1) { |
| 29 | - echo '<p class="alert alert-warning">' . __('Comments is not founded') . '</p>'; |
|
| 29 | + echo '<p class="alert alert-warning">'.__('Comments is not founded').'</p>'; |
|
| 30 | 30 | return; |
| 31 | 31 | } |
| 32 | 32 | $items = []; |
@@ -37,11 +37,11 @@ discard block |
||
| 37 | 37 | 1 => ['text' => $item->id], |
| 38 | 38 | 2 => ['text' => Url::link(['comments/read', $item->id], $message), 'html' => true], |
| 39 | 39 | 3 => ['text' => $item->getAnswerCount()], |
| 40 | - 4 => ['text' => Simplify::parseUserLink((int)$item->user_id, $item->guest_name, 'user/update'), 'html' => true], |
|
| 41 | - 5 => ['text' => '<a href="' . App::$Alias->scriptUrl . $item->pathway . '" target="_blank">' . Str::sub($item->pathway, 0, 20) . '...</a>', 'html' => true], |
|
| 40 | + 4 => ['text' => Simplify::parseUserLink((int) $item->user_id, $item->guest_name, 'user/update'), 'html' => true], |
|
| 41 | + 5 => ['text' => '<a href="'.App::$Alias->scriptUrl.$item->pathway.'" target="_blank">'.Str::sub($item->pathway, 0, 20).'...</a>', 'html' => true], |
|
| 42 | 42 | 6 => ['text' => Date::convertToDatetime($item->created_at, Date::FORMAT_TO_HOUR)], |
| 43 | - 7 => ['text' => Url::link(['comments/read', $item->id], '<i class="fa fa-list fa-lg"></i>') . |
|
| 44 | - ' ' . Url::link(['comments/delete', 'comment', $item->id], '<i class="fa fa-trash-o fa-lg"></i>'), |
|
| 43 | + 7 => ['text' => Url::link(['comments/read', $item->id], '<i class="fa fa-list fa-lg"></i>'). |
|
| 44 | + ' '.Url::link(['comments/delete', 'comment', $item->id], '<i class="fa fa-trash-o fa-lg"></i>'), |
|
| 45 | 45 | 'html' => true, 'property' => ['class' => 'text-center']], |
| 46 | 46 | 'property' => ['class' => 'checkbox-row'] |
| 47 | 47 | ]; |
@@ -2,7 +2,7 @@ discard block |
||
| 2 | 2 | /** @var array $configs */ |
| 3 | 3 | ?> |
| 4 | 4 | |
| 5 | -<?php if ((bool)$configs['guestAdd'] && (bool)$configs['guestModerate'] && !\App::$User->isAuth()): ?> |
|
| 5 | +<?php if ((bool) $configs['guestAdd'] && (bool) $configs['guestModerate'] && !\App::$User->isAuth()): ?> |
|
| 6 | 6 | <p class="alert alert-warning"><?= __('All guest comments will be moderated before display') ?></p> |
| 7 | 7 | <?php endif; ?> |
| 8 | 8 | |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | </a> |
| 35 | 35 | </i> |
| 36 | 36 | </div> |
| 37 | - <div id="comment-text" class="comment-text"><?= __('Loading') . ' ...' ?></div> |
|
| 37 | + <div id="comment-text" class="comment-text"><?= __('Loading').' ...' ?></div> |
|
| 38 | 38 | </div> |
| 39 | 39 | <div id="comment-answers-0" class="hidden"></div> |
| 40 | 40 | <div class="row hidden" id="add-replay-to"> |
@@ -57,12 +57,12 @@ discard block |
||
| 57 | 57 | <span id="answer-date">00.00.00 00-00-00</span> |
| 58 | 58 | <span id="answer-user-name"><?= __('Unknown') ?></span>: |
| 59 | 59 | </div> |
| 60 | - <div id="answer-text" class="comment-text"><?= __('Loading') . ' ...' ?></div> |
|
| 60 | + <div id="answer-text" class="comment-text"><?= __('Loading').' ...' ?></div> |
|
| 61 | 61 | </div> |
| 62 | 62 | </li> |
| 63 | 63 | </ul> |
| 64 | 64 | |
| 65 | -<?php if ((int)$configs['guestAdd'] === 1 || \App::$User->isAuth()): ?> |
|
| 65 | +<?php if ((int) $configs['guestAdd'] === 1 || \App::$User->isAuth()): ?> |
|
| 66 | 66 | <!-- comment form --> |
| 67 | 67 | <form name="comment-add-form" action="" method="post" style="padding-top: 15px;" class="form-horizontal"> |
| 68 | 68 | <input type="hidden" name="replay-to" value="0" /> |
@@ -71,9 +71,12 @@ |
||
| 71 | 71 | <span><i class="fa fa-eye"></i><?= $model->views ?></span> |
| 72 | 72 | <?php endif ?> |
| 73 | 73 | </div> |
| 74 | - <?php else: ?> |
|
| 74 | + <?php else { |
|
| 75 | + : ?> |
|
| 75 | 76 | <hr /> |
| 76 | - <?php endif; ?> |
|
| 77 | + <?php endif; |
|
| 78 | +} |
|
| 79 | +?> |
|
| 77 | 80 | <?php if ($trash): ?> |
| 78 | 81 | <p class="alert alert-danger"><i class="fa fa-trash-o"></i> <?= __('This content is placed in trash') ?></p> |
| 79 | 82 | <?php endif; ?> |
@@ -45,15 +45,15 @@ |
||
| 45 | 45 | public function getAnswerCount() |
| 46 | 46 | { |
| 47 | 47 | // check if count is cached |
| 48 | - if (MainApp::$Memory->get('commentpost.answer.count.' . $this->id) !== null) { |
|
| 49 | - return MainApp::$Memory->get('commentpost.answer.count.' . $this->id); |
|
| 48 | + if (MainApp::$Memory->get('commentpost.answer.count.'.$this->id) !== null) { |
|
| 49 | + return MainApp::$Memory->get('commentpost.answer.count.'.$this->id); |
|
| 50 | 50 | } |
| 51 | 51 | // get count from db |
| 52 | 52 | $count = CommentAnswer::where('comment_id', '=', $this->id) |
| 53 | 53 | ->where('moderate', '=', 0) |
| 54 | 54 | ->count(); |
| 55 | 55 | // save in cache |
| 56 | - MainApp::$Memory->set('commentpost.answer.count.' . $this->id, $count); |
|
| 56 | + MainApp::$Memory->set('commentpost.answer.count.'.$this->id, $count); |
|
| 57 | 57 | return $count; |
| 58 | 58 | } |
| 59 | 59 | |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | |
| 52 | 52 | // build user data |
| 53 | 53 | $userName = __('Unknown'); |
| 54 | - $userAvatar = App::$Alias->scriptUrl . '/upload/user/avatar/small/default.jpg'; |
|
| 54 | + $userAvatar = App::$Alias->scriptUrl.'/upload/user/avatar/small/default.jpg'; |
|
| 55 | 55 | $userObject = $this->_record->getUser(); |
| 56 | 56 | if ($userObject !== null) { |
| 57 | 57 | $userName = $userObject->getProfile()->getNickname(); |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | 'text' => $this->_record->message, |
| 70 | 70 | 'date' => Date::convertToDatetime($this->_record->created_at, Date::FORMAT_TO_HOUR), |
| 71 | 71 | 'pathway' => $this->_record->pathway, |
| 72 | - 'moderate' => (int)$this->_record->moderate, |
|
| 72 | + 'moderate' => (int) $this->_record->moderate, |
|
| 73 | 73 | 'user' => [ |
| 74 | 74 | 'id' => $this->_record->user_id, |
| 75 | 75 | 'name' => $userName, |
@@ -47,12 +47,12 @@ discard block |
||
| 47 | 47 | public function check() |
| 48 | 48 | { |
| 49 | 49 | // check if user is auth'd or guest name is defined |
| 50 | - if (!App::$User->isAuth() && ((int)$this->_configs['guestAdd'] !== 1 || Str::length($this->guestName) < 2)) { |
|
| 50 | + if (!App::$User->isAuth() && ((int) $this->_configs['guestAdd'] !== 1 || Str::length($this->guestName) < 2)) { |
|
| 51 | 51 | throw new JsonException(__('Guest name is not defined')); |
| 52 | 52 | } |
| 53 | 53 | |
| 54 | 54 | // guest moderation |
| 55 | - if (!App::$User->isAuth() && (bool)$this->_configs['guestModerate']) { |
|
| 55 | + if (!App::$User->isAuth() && (bool) $this->_configs['guestModerate']) { |
|
| 56 | 56 | $captcha = App::$Request->request->get('captcha'); |
| 57 | 57 | if (!App::$Captcha->validate($captcha)) { |
| 58 | 58 | throw new JsonException(__('Captcha is incorrect! Click on image to refresh and try again')); |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | } |
| 66 | 66 | |
| 67 | 67 | // check if message length is correct |
| 68 | - if (Str::length($this->message) < (int)$this->_configs['minLength'] || Str::length($this->message) > (int)$this->_configs['maxLength']) { |
|
| 68 | + if (Str::length($this->message) < (int) $this->_configs['minLength'] || Str::length($this->message) > (int) $this->_configs['maxLength']) { |
|
| 69 | 69 | throw new JsonException(__('Message length is incorrect. Current: %cur%, min - %min%, max - %max%', [ |
| 70 | 70 | 'cur' => Str::length($this->message), |
| 71 | 71 | 'min' => $this->_configs['minLength'], |
@@ -110,7 +110,7 @@ discard block |
||
| 110 | 110 | $record->lang = App::$Request->getLanguage(); |
| 111 | 111 | $record->ip = $this->ip; |
| 112 | 112 | // check if premoderation is enabled and user is guest |
| 113 | - if ((int)$this->_configs['guestModerate'] === 1 && $this->_userId < 1) { |
|
| 113 | + if ((int) $this->_configs['guestModerate'] === 1 && $this->_userId < 1) { |
|
| 114 | 114 | $record->moderate = 1; |
| 115 | 115 | } |
| 116 | 116 | $record->save(); |