@@ -139,7 +139,9 @@ discard block |
||
| 139 | 139 | } |
| 140 | 140 | $this->ci->dbforge->add_field("date_created TIMESTAMP DEFAULT CURRENT_TIMESTAMP"); |
| 141 | 141 | $attributes = array('ENGINE' => 'InnoDB'); |
| 142 | - if (!$this->ci->dbforge->create_table($blogName, true, $attributes)) return false; |
|
| 142 | + if (!$this->ci->dbforge->create_table($blogName, true, $attributes)) { |
|
| 143 | + return false; |
|
| 144 | + } |
|
| 143 | 145 | return true; |
| 144 | 146 | } |
| 145 | 147 | /** |
@@ -253,10 +255,14 @@ discard block |
||
| 253 | 255 | case "publish": |
| 254 | 256 | return $this->handlePublishPost($posterId); |
| 255 | 257 | case "createAndPublish": |
| 256 | - if ($this->ci->bmanager->createAndPublishPost($this->ci->security->xss_clean($this->ci->input->post("title")), $this->ci->security->xss_clean($this->ci->input->post("editor")), $posterId) !== false) return self::CREATE_AND_PUBLISH; |
|
| 258 | + if ($this->ci->bmanager->createAndPublishPost($this->ci->security->xss_clean($this->ci->input->post("title")), $this->ci->security->xss_clean($this->ci->input->post("editor")), $posterId) !== false) { |
|
| 259 | + return self::CREATE_AND_PUBLISH; |
|
| 260 | + } |
|
| 257 | 261 | return self::ABORT; |
| 258 | 262 | case "delete": |
| 259 | - if ($this->ci->bmanager->deletePost($this->ci->security->xss_clean($this->ci->input->post("id")))) return self::DELETE; |
|
| 263 | + if ($this->ci->bmanager->deletePost($this->ci->security->xss_clean($this->ci->input->post("id")))) { |
|
| 264 | + return self::DELETE; |
|
| 265 | + } |
|
| 260 | 266 | return self::ABORT; |
| 261 | 267 | default: |
| 262 | 268 | return self::NO_ACTION; |
@@ -272,10 +278,14 @@ discard block |
||
| 272 | 278 | private function handleSavePost(int $posterId=null): string { |
| 273 | 279 | $id = $this->ci->security->xss_clean($this->ci->input->post("id")); |
| 274 | 280 | if ($id != "") { |
| 275 | - if (!$this->ci->bmanager->savePost($this->ci->input->post("id"), $this->ci->security->xss_clean($this->ci->input->post("title")), $this->ci->security->xss_clean($this->ci->input->post("editor")), $posterId)) return self::ABORT; |
|
| 281 | + if (!$this->ci->bmanager->savePost($this->ci->input->post("id"), $this->ci->security->xss_clean($this->ci->input->post("title")), $this->ci->security->xss_clean($this->ci->input->post("editor")), $posterId)) { |
|
| 282 | + return self::ABORT; |
|
| 283 | + } |
|
| 276 | 284 | return self::EDIT; |
| 277 | 285 | } else { |
| 278 | - if ($this->ci->bmanager->createPost($this->ci->security->xss_clean($this->ci->input->post("title")), $this->ci->security->xss_clean($this->ci->input->post("editor")), $posterId) == 0) return self::ABORT; |
|
| 286 | + if ($this->ci->bmanager->createPost($this->ci->security->xss_clean($this->ci->input->post("title")), $this->ci->security->xss_clean($this->ci->input->post("editor")), $posterId) == 0) { |
|
| 287 | + return self::ABORT; |
|
| 288 | + } |
|
| 279 | 289 | return self::CREATE; |
| 280 | 290 | } |
| 281 | 291 | } |
@@ -289,9 +299,15 @@ discard block |
||
| 289 | 299 | */ |
| 290 | 300 | private function handlePublishPost(int $posterId=null): string { |
| 291 | 301 | $id = $this->ci->security->xss_clean($this->ci->input->post("id")); |
| 292 | - if ($id == "") return self::ABORT; |
|
| 293 | - if (!$this->ci->bmanager->savePost($id, $this->ci->security->xss_clean($this->ci->input->post("title")), $this->ci->security->xss_clean($this->ci->input->post("editor")), $posterId)) return self::ABORT; |
|
| 294 | - if (!$this->ci->bmanager->publishPost($id, true)) return self::ABORT; |
|
| 302 | + if ($id == "") { |
|
| 303 | + return self::ABORT; |
|
| 304 | + } |
|
| 305 | + if (!$this->ci->bmanager->savePost($id, $this->ci->security->xss_clean($this->ci->input->post("title")), $this->ci->security->xss_clean($this->ci->input->post("editor")), $posterId)) { |
|
| 306 | + return self::ABORT; |
|
| 307 | + } |
|
| 308 | + if (!$this->ci->bmanager->publishPost($id, true)) { |
|
| 309 | + return self::ABORT; |
|
| 310 | + } |
|
| 295 | 311 | return self::PUBLISH; |
| 296 | 312 | } |
| 297 | 313 | /** |
@@ -324,7 +340,9 @@ discard block |
||
| 324 | 340 | * @return bool [description] |
| 325 | 341 | */ |
| 326 | 342 | public function renderPostItems($view=null, $callback=null, $empty_view=null, $page=1, $limit=5, $filter=false, $hits=false, $slug=true) { |
| 327 | - if ($view == null || $empty_view == null) $this->ci->load->bind("francis94c/blog", $blogger); |
|
| 343 | + if ($view == null || $empty_view == null) { |
|
| 344 | + $this->ci->load->bind("francis94c/blog", $blogger); |
|
| 345 | + } |
|
| 328 | 346 | $posts = $this->getPosts($page, $limit, $filter, $hits); |
| 329 | 347 | if (count($posts) == 0) { |
| 330 | 348 | if ($empty_view == null) { $blogger->load->view("empty"); } else { |
@@ -359,8 +377,12 @@ discard block |
||
| 359 | 377 | * @return [type] [description] |
| 360 | 378 | */ |
| 361 | 379 | public function renderPost($post, $view=null) { |
| 362 | - if (!is_array($post)) $post = $this->ci->bmanager->getPost($post); |
|
| 363 | - if (!$post) return false; |
|
| 380 | + if (!is_array($post)) { |
|
| 381 | + $post = $this->ci->bmanager->getPost($post); |
|
| 382 | + } |
|
| 383 | + if (!$post) { |
|
| 384 | + return false; |
|
| 385 | + } |
|
| 364 | 386 | $post["content"] = $this->ci->parsedown->text($post["content"]); |
| 365 | 387 | if ($view == null) { |
| 366 | 388 | $this->ci->load->splint("francis94c/blog", "-post_item", $post); |
@@ -378,7 +400,9 @@ discard block |
||
| 378 | 400 | $data = array(); |
| 379 | 401 | $data["title"] = $post["title"]; |
| 380 | 402 | $data["description"] = substr($post["content"], 0, 154); |
| 381 | - if (isset($post["share_image"])) $data["image_link"] = $post["share_image"]; |
|
| 403 | + if (isset($post["share_image"])) { |
|
| 404 | + $data["image_link"] = $post["share_image"]; |
|
| 405 | + } |
|
| 382 | 406 | $data["url"] = current_url(); |
| 383 | 407 | return $this->ci->load->splint(self::PACKAGE, "-meta_og", $data, true); |
| 384 | 408 | } |