Passed
Pull Request — Showing-Posts (#54)
by Stone
04:55 queued 02:28
created
App/Controllers/Admin/Post.php 2 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -211,10 +211,12 @@
 block discarded – undo
211 211
             $this->alertBox->setAlert("empty slug not allowed", "error");
212 212
         }
213 213
 
214
-        if ($postSlug != $originalPostSlug) //if the slug has been updated
214
+        if ($postSlug != $originalPostSlug) {
215
+            //if the slug has been updated
215 216
         {
216 217
             if (!$this->postModel->isPostSlugUnique($postSlug)) {
217 218
                 $error = true;
219
+        }
218 220
                 $originalPostSlug = $this->postModel->getPostSlugFromId($postId);
219 221
                 $this->alertBox->setAlert("Slug not unique", "error");
220 222
             }
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -166,10 +166,10 @@  discard block
 block discarded – undo
166 166
 
167 167
         //checking result and redirecting
168 168
         if ($postId != null) {
169
-            $this->alertBox->setAlert("Post " . $title . " Created");
170
-            $this->container->getResponse()->redirect("admin/post/modify/" . $postSlug);
169
+            $this->alertBox->setAlert("Post ".$title." Created");
170
+            $this->container->getResponse()->redirect("admin/post/modify/".$postSlug);
171 171
         }
172
-        $this->alertBox->setAlert("Error creating " . $title, "error");
172
+        $this->alertBox->setAlert("Error creating ".$title, "error");
173 173
         $this->container->getResponse()->redirect("admin/post/new");
174 174
 
175 175
     }
@@ -237,11 +237,11 @@  discard block
 block discarded – undo
237 237
 
238 238
         //checking result and redirecting
239 239
         if ($postUpdate) {
240
-            $this->alertBox->setAlert("Post " . $title . " Updated");
241
-            $this->container->getResponse()->redirect("admin/post/modify/" . $postSlug);
240
+            $this->alertBox->setAlert("Post ".$title." Updated");
241
+            $this->container->getResponse()->redirect("admin/post/modify/".$postSlug);
242 242
         }
243
-        $this->alertBox->setAlert("Error updating " . $title, "error");
244
-        $this->container->getResponse()->redirect("admin/post/modify/" . $originalPostSlug);
243
+        $this->alertBox->setAlert("Error updating ".$title, "error");
244
+        $this->container->getResponse()->redirect("admin/post/modify/".$originalPostSlug);
245 245
     }
246 246
 
247 247
 
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
         $removedPost = $this->postModel->deletePost($postId);
259 259
 
260 260
         if ($removedPost) {
261
-            $this->alertBox->setAlert("Post " . $postTitle . " deleted");
261
+            $this->alertBox->setAlert("Post ".$postTitle." deleted");
262 262
         }
263 263
 
264 264
         $this->response->redirect("admin/post/list/");
Please login to merge, or discard this patch.
App/Controllers/Admin/Category.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -103,10 +103,10 @@  discard block
 block discarded – undo
103 103
 
104 104
         //checking result and redirecting
105 105
         if ($categoryUpdate) {
106
-            $this->alertBox->setAlert("Category " . $categoryName . " updated");
106
+            $this->alertBox->setAlert("Category ".$categoryName." updated");
107 107
             $this->container->getResponse()->redirect("/admin/category/list/");
108 108
         }
109
-        $this->alertBox->setAlert("Error updating " . $categoryName, "error");
109
+        $this->alertBox->setAlert("Error updating ".$categoryName, "error");
110 110
         $this->container->getResponse()->redirect("/admin/category/list/");
111 111
     }
112 112
 
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
         $removedCategory = $this->categoryModel->delete($categoryId);
124 124
 
125 125
         if ($removedCategory) {
126
-            $this->alertBox->setAlert("Category " . $categoryName . " deleted");
126
+            $this->alertBox->setAlert("Category ".$categoryName." deleted");
127 127
         }
128 128
 
129 129
         $this->response->redirect("/admin/category/list/");
@@ -168,10 +168,10 @@  discard block
 block discarded – undo
168 168
 
169 169
         //checking result and redirecting
170 170
         if ($categoryNew) {
171
-            $this->alertBox->setAlert("Category " . $categoryName . " created");
171
+            $this->alertBox->setAlert("Category ".$categoryName." created");
172 172
             $this->container->getResponse()->redirect("/admin/category/list/");
173 173
         }
174
-        $this->alertBox->setAlert("Error creating " . $categoryName, "error");
174
+        $this->alertBox->setAlert("Error creating ".$categoryName, "error");
175 175
         $this->container->getResponse()->redirect("/admin/category/list/");
176 176
     }
177 177
 }
178 178
\ No newline at end of file
Please login to merge, or discard this patch.
App/Controllers/Admin/Tag.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -89,10 +89,10 @@  discard block
 block discarded – undo
89 89
 
90 90
         //checking result and redirecting
91 91
         if ($tagUpdate) {
92
-            $this->alertBox->setAlert("Tag " . $tagName . " updated");
92
+            $this->alertBox->setAlert("Tag ".$tagName." updated");
93 93
             $this->response->redirect("/admin/tag/list/");
94 94
         }
95
-        $this->alertBox->setAlert("Error updating " . $tagName, "error");
95
+        $this->alertBox->setAlert("Error updating ".$tagName, "error");
96 96
         $this->response->redirect("/admin/tag/list/");
97 97
     }
98 98
 
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
         $removedTag = $this->tagModel->delete($tagId);
110 110
 
111 111
         if ($removedTag) {
112
-            $this->alertBox->setAlert("Tag " . $tagName . " deleted");
112
+            $this->alertBox->setAlert("Tag ".$tagName." deleted");
113 113
         }
114 114
 
115 115
         $this->response->redirect("/admin/tag/list/");
@@ -145,10 +145,10 @@  discard block
 block discarded – undo
145 145
 
146 146
         //checking result and redirecting
147 147
         if ($tagNew) {
148
-            $this->alertBox->setAlert("Tag " . $tagName . " created");
148
+            $this->alertBox->setAlert("Tag ".$tagName." created");
149 149
             $this->response->redirect("/admin/tag/list/");
150 150
         }
151
-        $this->alertBox->setAlert("Error creating " . $tagName, "error");
151
+        $this->alertBox->setAlert("Error creating ".$tagName, "error");
152 152
         $this->response->redirect("/admin/tag/list/");
153 153
     }
154 154
 }
155 155
\ No newline at end of file
Please login to merge, or discard this patch.
App/Controllers/Admin/Home.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      */
16 16
     public function index()
17 17
     {
18
-        if(!$this->auth->isUser()){
18
+        if (!$this->auth->isUser()) {
19 19
             $this->alertBox->setAlert("You must be connected to access the admin interface", 'warning');
20 20
             $this->container->getResponse()->redirect();
21 21
         }
Please login to merge, or discard this patch.
App/Controllers/Ajax/ImageUpload.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -43,14 +43,14 @@  discard block
 block discarded – undo
43 43
     private function getFilename(string $folder, string $file): string
44 44
     {
45 45
 
46
-        $fileUrl = $folder . $file;
46
+        $fileUrl = $folder.$file;
47 47
         $docRoot = $this->request->getDocumentRoot();
48
-        $filePath = $docRoot . "/public/" . $fileUrl;
48
+        $filePath = $docRoot."/public/".$fileUrl;
49 49
         if (file_exists($filePath) !== 1) {
50 50
             $fileNum = 0;
51 51
             while (file_exists($filePath)) {
52
-                $fileUrl = $folder . $fileNum . "_" . $file;
53
-                $filePath = $docRoot . "/public/" . $fileUrl;
52
+                $fileUrl = $folder.$fileNum."_".$file;
53
+                $filePath = $docRoot."/public/".$fileUrl;
54 54
                 $fileNum += 1;
55 55
             }
56 56
         }
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
 
75 75
             // Respond to the successful upload with JSON.
76 76
             echo json_encode(array('location' => $filetowrite));
77
-        } else {
77
+        }else {
78 78
             // Notify editor that the upload failed
79 79
             echo json_encode(array('error' => 'Upload failed, file might be too big'));
80 80
 
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
 
109 109
             // Respond to the successful upload with JSON.
110 110
             echo json_encode(array('location' => $filetowrite));
111
-        } else {
111
+        }else {
112 112
             // Notify editor that the upload failed
113 113
             header("HTTP/1.1 500 Server Error");
114 114
         }
Please login to merge, or discard this patch.
App/Controllers/Ajax/postModification.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,8 +28,8 @@  discard block
 block discarded – undo
28 28
         if (!$this->container->getRequest()->isPost()) {
29 29
             throw new \Core\JsonException('Call is not post');
30 30
         }
31
-        $state = (bool)($this->request->getData("state") === 'true');
32
-        $postId = (int)$this->request->getData("postId");
31
+        $state = (bool) ($this->request->getData("state") === 'true');
32
+        $postId = (int) $this->request->getData("postId");
33 33
 
34 34
         $result = array();
35 35
         $result["success"] = $this->postModule->setPublished(!$state, $postId);
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
             throw new \Core\JsonException('Call is not post');
50 50
         }
51 51
         $state = ($this->request->getData("state") === 'true');
52
-        $postId = (int)$this->request->getData("postId");
52
+        $postId = (int) $this->request->getData("postId");
53 53
 
54 54
         $result = array();
55 55
         $result["success"] = $this->postModule->setOnFrontPage(!$state, $postId);
Please login to merge, or discard this patch.
App/Controllers/Ajax/PostVerification.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,9 +36,11 @@
 block discarded – undo
36 36
 
37 37
         $data = $postModel->isPostSlugUnique($postSlug);
38 38
 
39
-        if ($data === false) //slug is not unique, but could be from the same post
39
+        if ($data === false) {
40
+            //slug is not unique, but could be from the same post
40 41
         {
41 42
             $slugOfId = $postModel->getPostSlugFromId($postId);
43
+        }
42 44
             if ($slugOfId === $postSlug) {
43 45
                 //it's the same post, return true
44 46
                 $data = true;
Please login to merge, or discard this patch.