@@ -30,7 +30,7 @@ |
||
30 | 30 | |
31 | 31 | <?php if ($useCaptcha === true) { |
32 | 32 | if (\App::$Captcha->isFull()) { |
33 | - echo '<div class="col-md-offset-3 col-md-9">' . \App::$Captcha->get() . '</div>'; |
|
33 | + echo '<div class="col-md-offset-3 col-md-9">'.\App::$Captcha->get().'</div>'; |
|
34 | 34 | } else { |
35 | 35 | echo $form->field('captcha', 'captcha', ['class' => 'form-control'], __('Enter data from security image to prove that you are human. If you can\'t read symbols - click on image to reload')); |
36 | 36 | } |
@@ -23,7 +23,7 @@ |
||
23 | 23 | /** @var \Apps\ActiveRecord\Content $item*/ |
24 | 24 | $items[] = [ |
25 | 25 | 'text' => Serialize::getDecodeLocale($item->title), |
26 | - 'link' => \App::$Alias->baseUrl . '/content/read/' . $item->getPath() |
|
26 | + 'link' => \App::$Alias->baseUrl.'/content/read/'.$item->getPath() |
|
27 | 27 | ]; |
28 | 28 | } |
29 | 29 | ?> |
@@ -7,8 +7,8 @@ |
||
7 | 7 | $numericRating = 0; |
8 | 8 | if ($rating > 0) { |
9 | 9 | $cssRatingClass = 'label-success'; |
10 | - $numericRating = '+' . $rating; |
|
11 | -} elseif($rating < 0) { |
|
10 | + $numericRating = '+'.$rating; |
|
11 | +} elseif ($rating < 0) { |
|
12 | 12 | $cssRatingClass = 'label-danger'; |
13 | 13 | $numericRating = $rating; |
14 | 14 | } |
@@ -30,9 +30,9 @@ |
||
30 | 30 | if (Obj::isArray($notify) && count($notify) > 0) { |
31 | 31 | foreach ($notify as $type => $messages) { |
32 | 32 | foreach ($messages as $message) { |
33 | - echo '<p class="alert ' . type2html($type) . '"> |
|
33 | + echo '<p class="alert '.type2html($type).'"> |
|
34 | 34 | <button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>' |
35 | - . \Ffcms\Core\App::$Security->strip_tags($message) . '</p>'; |
|
35 | + . \Ffcms\Core\App::$Security->strip_tags($message).'</p>'; |
|
36 | 36 | } |
37 | 37 | } |
38 | 38 | } |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | <?php |
17 | 17 | $customCssCode = \App::$View->showPlainCode('css'); |
18 | 18 | if ($customCssCode !== null) { |
19 | - echo '<style>' . $customCssCode . '</style>'; |
|
19 | + echo '<style>'.$customCssCode.'</style>'; |
|
20 | 20 | } ?> |
21 | 21 | <script> |
22 | 22 | window.jQ = []; |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | <?php |
63 | 63 | $customJsCode = \App::$View->showPlainCode('js'); |
64 | 64 | if ($customJsCode !== null) { |
65 | - echo '<script>' . $customJsCode . '</script>'; |
|
65 | + echo '<script>'.$customJsCode.'</script>'; |
|
66 | 66 | } |
67 | 67 | ?> |
68 | 68 | </body> |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | $this->beginTime = time(); |
34 | 34 | |
35 | 35 | $this->signatures = new \DOMDocument(); |
36 | - $this->signatures->load(root . '/Private/Antivirus/Signatures.xml'); |
|
36 | + $this->signatures->load(root.'/Private/Antivirus/Signatures.xml'); |
|
37 | 37 | |
38 | 38 | // list of files is not prepared, 1st iteration |
39 | 39 | if (!File::exist('/Private/Antivirus/ScanFiles.json')) { |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | |
47 | 47 | $this->scanFiles = json_decode(File::read('/Private/Antivirus/ScanFiles.json')); |
48 | 48 | if (File::exist('/Private/Antivirus/Infected.json')) { |
49 | - $this->infected = (array)json_decode(File::read('/Private/Antivirus/Infected.json')); |
|
49 | + $this->infected = (array) json_decode(File::read('/Private/Antivirus/Infected.json')); |
|
50 | 50 | } |
51 | 51 | } |
52 | 52 | |
@@ -108,13 +108,13 @@ discard block |
||
108 | 108 | |
109 | 109 | switch ($attrFormat) { |
110 | 110 | case 're': |
111 | - if ((preg_match('#(' . $sigContent . ')#smi', $content, $found, PREG_OFFSET_CAPTURE)) || |
|
112 | - (preg_match('#(' . $sigContent . ')#smi', $normalized, $found, PREG_OFFSET_CAPTURE)) |
|
111 | + if ((preg_match('#('.$sigContent.')#smi', $content, $found, PREG_OFFSET_CAPTURE)) || |
|
112 | + (preg_match('#('.$sigContent.')#smi', $normalized, $found, PREG_OFFSET_CAPTURE)) |
|
113 | 113 | ) { |
114 | 114 | $detected = true; |
115 | 115 | $pos = $found[0][1]; |
116 | 116 | $this->infected[$path][] = [ |
117 | - 'pos' => (int)$pos, |
|
117 | + 'pos' => (int) $pos, |
|
118 | 118 | 'sigId' => $attrId, |
119 | 119 | 'sigRule' => $sigContent, |
120 | 120 | 'sever' => $attrSever, |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | (($pos = strpos($normalized, $sigContent)) !== false) |
129 | 129 | ) { |
130 | 130 | $this->infected[$path][] = [ |
131 | - 'pos' => (int)$pos, |
|
131 | + 'pos' => (int) $pos, |
|
132 | 132 | 'sigId' => $attrId, |
133 | 133 | 'sigRule' => $sigContent, |
134 | 134 | 'sever' => $attrSever, |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | */ |
149 | 149 | private function prepareScanlist() |
150 | 150 | { |
151 | - $files = (object)File::listFiles(root, $this->affectedExt); |
|
151 | + $files = (object) File::listFiles(root, $this->affectedExt); |
|
152 | 152 | File::write('/Private/Antivirus/ScanFiles.json', json_encode($files)); |
153 | 153 | } |
154 | 154 |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | public function actionIndex() |
33 | 33 | { |
34 | 34 | // set current page and offset |
35 | - $page = (int)App::$Request->query->get('page'); |
|
35 | + $page = (int) App::$Request->query->get('page'); |
|
36 | 36 | $offset = $page * self::ITEM_PER_PAGE; |
37 | 37 | |
38 | 38 | // get feedback posts AR table |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | |
74 | 74 | // initialize model with answer add if thread is not closed |
75 | 75 | $model = null; |
76 | - if ((int)$record->closed !== 1) { |
|
76 | + if ((int) $record->closed !== 1) { |
|
77 | 77 | $model = new FormAnswerAdd($record, App::$User->identity()->getId()); |
78 | 78 | if ($model->send()) { |
79 | 79 | if ($model->validate()) { |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | case 'answer': |
105 | 105 | $record = FeedbackAnswer::find($id); |
106 | 106 | if ($record !== null && $record !== false) { |
107 | - $postId = (int)$record->getFeedbackPost()->id; |
|
107 | + $postId = (int) $record->getFeedbackPost()->id; |
|
108 | 108 | } |
109 | 109 | break; |
110 | 110 | } |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | if ($model->validate()) { |
121 | 121 | $model->make(); |
122 | 122 | App::$Session->getFlashBag()->add('success', __('Feedback item are successful changed')); |
123 | - App::$Response->redirect('feedback/read/' . $postId); |
|
123 | + App::$Response->redirect('feedback/read/'.$postId); |
|
124 | 124 | } else { |
125 | 125 | App::$Session->getFlashBag()->add('danger', __('Updating is failed')); |
126 | 126 | } |
@@ -170,7 +170,7 @@ discard block |
||
170 | 170 | App::$Session->getFlashBag()->add('success', __('Feedback request is changed!')); |
171 | 171 | |
172 | 172 | // redirect to feedback post read |
173 | - App::$Response->redirect('feedback/read/' . $id); |
|
173 | + App::$Response->redirect('feedback/read/'.$id); |
|
174 | 174 | return null; |
175 | 175 | } |
176 | 176 | |
@@ -214,7 +214,7 @@ discard block |
||
214 | 214 | // its a answer, lets remove it and redirect back in post |
215 | 215 | $postId = $record->feedback_id; |
216 | 216 | $record->delete(); |
217 | - App::$Response->redirect('feedback/read/' . $postId); |
|
217 | + App::$Response->redirect('feedback/read/'.$postId); |
|
218 | 218 | } |
219 | 219 | } |
220 | 220 |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | $query = new ProfileRecords(); |
33 | 33 | |
34 | 34 | // set current page and offset |
35 | - $page = (int)App::$Request->query->get('page'); |
|
35 | + $page = (int) App::$Request->query->get('page'); |
|
36 | 36 | $offset = $page * self::ITEM_PER_PAGE; |
37 | 37 | |
38 | 38 | // build pagination |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | */ |
60 | 60 | public function actionDelete($id) |
61 | 61 | { |
62 | - App::$Response->redirect('user/delete/' . $id); |
|
62 | + App::$Response->redirect('user/delete/'.$id); |
|
63 | 63 | } |
64 | 64 | |
65 | 65 | /** |
@@ -40,19 +40,19 @@ discard block |
||
40 | 40 | { |
41 | 41 | // get configs |
42 | 42 | $configs = $this->getConfigs(); |
43 | - if (!App::$User->isAuth() && (int)$configs['guestAdd'] !== 1) { |
|
43 | + if (!App::$User->isAuth() && (int) $configs['guestAdd'] !== 1) { |
|
44 | 44 | throw new ForbiddenException(__('Feedback available only for authorized users')); |
45 | 45 | } |
46 | 46 | |
47 | 47 | // initialize model |
48 | - $model = new FormFeedbackAdd((int)$configs['useCaptcha'] === 1); |
|
48 | + $model = new FormFeedbackAdd((int) $configs['useCaptcha'] === 1); |
|
49 | 49 | if ($model->send()) { |
50 | 50 | if ($model->validate()) { |
51 | 51 | // if validation is passed save data to db and get row |
52 | 52 | $record = $model->make(); |
53 | 53 | App::$Session->getFlashBag()->add('success', __('Your message was added successful')); |
54 | 54 | // todo: add email notification |
55 | - App::$Response->redirect('feedback/read/' . $record->id . '/' . $record->hash); |
|
55 | + App::$Response->redirect('feedback/read/'.$record->id.'/'.$record->hash); |
|
56 | 56 | } else { |
57 | 57 | App::$Session->getFlashBag()->add('error', __('Message is not sended! Please, fix issues in form below')); |
58 | 58 | } |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | // render output view |
62 | 62 | return App::$View->render('create', [ |
63 | 63 | 'model' => $model->export(), |
64 | - 'useCaptcha' => (int)$configs['useCaptcha'] === 1 |
|
64 | + 'useCaptcha' => (int) $configs['useCaptcha'] === 1 |
|
65 | 65 | ]); |
66 | 66 | } |
67 | 67 | |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | $userId = App::$User->isAuth() ? App::$User->identity()->getId() : 0; |
93 | 93 | $model = null; |
94 | 94 | // check if feedback post is not closed for answers |
95 | - if ((int)$recordPost->closed === 0) { |
|
95 | + if ((int) $recordPost->closed === 0) { |
|
96 | 96 | // init new answer add model |
97 | 97 | $model = new FormAnswerAdd($recordPost, $userId); |
98 | 98 | // if answer is sender lets try to make it model |
@@ -127,10 +127,10 @@ discard block |
||
127 | 127 | // check if action is submited |
128 | 128 | if (App::$Request->request->get('closeRequest', false)) { |
129 | 129 | // if created by authorized user |
130 | - if ((int)$record->user_id !== 0) { |
|
130 | + if ((int) $record->user_id !== 0) { |
|
131 | 131 | $user = App::$User->identity(); |
132 | 132 | // button is pressed not by request creator |
133 | - if ($user === null || $user->getId() !== (int)$record->user_id) { |
|
133 | + if ($user === null || $user->getId() !== (int) $record->user_id) { |
|
134 | 134 | throw new ForbiddenException(__('This feedback request was created by another user')); |
135 | 135 | } |
136 | 136 | } |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | |
142 | 142 | // add notification and redirect |
143 | 143 | App::$Session->getFlashBag()->add('warning', __('Feedback request now is closed!')); |
144 | - App::$Response->redirect('feedback/read/' . $id . '/' . $hash); |
|
144 | + App::$Response->redirect('feedback/read/'.$id.'/'.$hash); |
|
145 | 145 | } |
146 | 146 | |
147 | 147 | return App::$View->render('close'); |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | public function actionList() |
157 | 157 | { |
158 | 158 | // set current page and offset |
159 | - $page = (int)App::$Request->query->get('page'); |
|
159 | + $page = (int) App::$Request->query->get('page'); |
|
160 | 160 | $offset = $page * self::ITEM_PER_PAGE; |
161 | 161 | |
162 | 162 | // check if user is authorized or throw exception |