@@ -42,12 +42,12 @@ discard block |
||
42 | 42 | private function getFilename(string $folder, string $file):string |
43 | 43 | { |
44 | 44 | |
45 | - $fileUrl = $folder . $file; |
|
45 | + $fileUrl = $folder.$file; |
|
46 | 46 | $filePath = $_SERVER['DOCUMENT_ROOT']."/public/".$fileUrl; |
47 | - if(file_exists($filePath) !== 1) |
|
47 | + if (file_exists($filePath) !== 1) |
|
48 | 48 | { |
49 | 49 | $fileNum = 0; |
50 | - while(file_exists($filePath)) |
|
50 | + while (file_exists($filePath)) |
|
51 | 51 | { |
52 | 52 | $fileUrl = $folder.$fileNum."_".$file; |
53 | 53 | $filePath = $_SERVER['DOCUMENT_ROOT']."/public/".$fileUrl; |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | |
76 | 76 | // Respond to the successful upload with JSON. |
77 | 77 | echo json_encode(array('location' => $filetowrite)); |
78 | - } else { |
|
78 | + }else { |
|
79 | 79 | // Notify editor that the upload failed |
80 | 80 | echo json_encode(array('error' => 'Upload failed')); |
81 | 81 | } |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | |
110 | 110 | // Respond to the successful upload with JSON. |
111 | 111 | echo json_encode(array('location' => $filetowrite)); |
112 | - } else { |
|
112 | + }else { |
|
113 | 113 | // Notify editor that the upload failed |
114 | 114 | header("HTTP/1.1 500 Server Error"); |
115 | 115 | } |
@@ -7,7 +7,7 @@ |
||
7 | 7 | use Core\Controller; |
8 | 8 | use Core\Container; |
9 | 9 | |
10 | -class Author extends Controller{ |
|
10 | +class Author extends Controller { |
|
11 | 11 | |
12 | 12 | |
13 | 13 | protected $siteConfig; |
@@ -8,7 +8,7 @@ discard block |
||
8 | 8 | use Core\Controller; |
9 | 9 | use Core\Container; |
10 | 10 | |
11 | -class Post extends Controller{ |
|
11 | +class Post extends Controller { |
|
12 | 12 | |
13 | 13 | protected $siteConfig; |
14 | 14 | |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | * @throws \Twig_Error_Runtime |
27 | 27 | * @throws \Twig_Error_Syntax |
28 | 28 | */ |
29 | - public function viewPost(string $slug){ |
|
29 | + public function viewPost(string $slug) { |
|
30 | 30 | |
31 | 31 | $tagModel = new TagsModel($this->container); |
32 | 32 | $postModel = new PostModel($this->container); |
@@ -6,7 +6,7 @@ |
||
6 | 6 | use Core\Controller; |
7 | 7 | use Core\Container; |
8 | 8 | |
9 | -class Tag extends Controller{ |
|
9 | +class Tag extends Controller { |
|
10 | 10 | |
11 | 11 | protected $siteConfig; |
12 | 12 | protected $pagination; |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | $onFrontpage = $posts["isOnFrontPage"]; |
87 | 87 | $idUser = $userSessionid; |
88 | 88 | |
89 | - if(!is_int($idUser) || $idUser === null) |
|
89 | + if (!is_int($idUser) || $idUser === null) |
|
90 | 90 | { |
91 | 91 | throw new \Error("Invalid userID"); |
92 | 92 | } |
@@ -129,10 +129,10 @@ discard block |
||
129 | 129 | |
130 | 130 | //checking result and redirecting |
131 | 131 | if ($postId != null) { |
132 | - $this->alertBox->setAlert("Post " . $title . " Created"); |
|
133 | - $this->container->getResponse()->redirect("admin/post/modify/" . $postSlug); |
|
132 | + $this->alertBox->setAlert("Post ".$title." Created"); |
|
133 | + $this->container->getResponse()->redirect("admin/post/modify/".$postSlug); |
|
134 | 134 | } |
135 | - $this->alertBox->setAlert("Error creating " . $title, "error"); |
|
135 | + $this->alertBox->setAlert("Error creating ".$title, "error"); |
|
136 | 136 | $this->container->getResponse()->redirect("admin/post/new"); |
137 | 137 | |
138 | 138 | } |
@@ -211,10 +211,10 @@ discard block |
||
211 | 211 | |
212 | 212 | //checking result and redirecting |
213 | 213 | if ($postUpdate) { |
214 | - $this->alertBox->setAlert("Post " . $title . " Updated"); |
|
215 | - $this->container->getResponse()->redirect("admin/post/modify/" . $postSlug); |
|
214 | + $this->alertBox->setAlert("Post ".$title." Updated"); |
|
215 | + $this->container->getResponse()->redirect("admin/post/modify/".$postSlug); |
|
216 | 216 | } |
217 | - $this->alertBox->setAlert("Error updating " . $title, "error"); |
|
218 | - $this->container->getResponse()->redirect("admin/post/modify/" . $originalPostSlug); |
|
217 | + $this->alertBox->setAlert("Error updating ".$title, "error"); |
|
218 | + $this->container->getResponse()->redirect("admin/post/modify/".$originalPostSlug); |
|
219 | 219 | } |
220 | 220 | } |
221 | 221 | \ No newline at end of file |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | $this->query($sql); |
88 | 88 | if ($select != null) { |
89 | 89 | foreach ($select as $col => $val) { |
90 | - $this->bind(":" . $col, $val); |
|
90 | + $this->bind(":".$col, $val); |
|
91 | 91 | } |
92 | 92 | } |
93 | 93 | $this->bind(":limit", $limit); |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | $this->query($sql); |
122 | 122 | if ($select != null) { |
123 | 123 | foreach ($select as $col => $val) { |
124 | - $this->bind(":" . $col, $val); |
|
124 | + $this->bind(":".$col, $val); |
|
125 | 125 | } |
126 | 126 | } |
127 | 127 | $this->execute(); |
@@ -291,7 +291,7 @@ discard block |
||
291 | 291 | |
292 | 292 | $this->execute(); |
293 | 293 | |
294 | - return (int)$this->dbh->lastInsertId(); |
|
294 | + return (int) $this->dbh->lastInsertId(); |
|
295 | 295 | } |
296 | 296 | |
297 | 297 | /** |
@@ -67,7 +67,7 @@ |
||
67 | 67 | $this->query($sql); |
68 | 68 | $this->bind(":tag", $tag); |
69 | 69 | $this->execute(); |
70 | - return (int)$this->dbh->lastInsertId(); |
|
70 | + return (int) $this->dbh->lastInsertId(); |
|
71 | 71 | |
72 | 72 | } |
73 | 73 |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | |
85 | 85 | //Searching for the page break tag |
86 | 86 | $breakTagPosition = strpos($text, "<!-- EndOfExcerptBlogOc -->"); |
87 | - if($breakTagPosition > 0){ |
|
87 | + if ($breakTagPosition > 0) { |
|
88 | 88 | return $this->completeDom(substr($text, 0, $breakTagPosition)); |
89 | 89 | } |
90 | 90 | |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | $string = preg_split('/(<img[^>]+\>)|(<p[^>]+\>)|(<span[^>]+\>)|\s/', $text, -1, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE); |
93 | 93 | |
94 | 94 | //The preg split can return false, probably will never happen but just in case. |
95 | - if(!$string) |
|
95 | + if (!$string) |
|
96 | 96 | { |
97 | 97 | throw new \Error("excerpt generation failed"); |
98 | 98 | } |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | $trimed .= $string[$wordCounter]; |
106 | 106 | if ($wordCounter < $count - 1) { |
107 | 107 | $trimed .= " "; |
108 | - } else { |
|
108 | + }else { |
|
109 | 109 | $trimed .= "[...]"; |
110 | 110 | } |
111 | 111 | } |