Passed
Push — master ( ad27f5...852dd4 )
by Francis
01:13
created
views/post_edit.php 1 patch
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,7 +1,13 @@
 block discarded – undo
1 1
 <?php
2
-if (!isset($title)) $title = "";
3
-if (!isset($content)) $content = "";
4
-if (!isset($prompt_color)) $prompt_color = "w3-green";
2
+if (!isset($title)) {
3
+  $title = "";
4
+}
5
+if (!isset($content)) {
6
+  $content = "";
7
+}
8
+if (!isset($prompt_color)) {
9
+  $prompt_color = "w3-green";
10
+}
5 11
 ?>
6 12
 <div id="publishModal" class="w3-modal w3-animate-opacity">
7 13
   <div class="w3-modal-content">
Please login to merge, or discard this patch.
models/BlogManager.php 1 patch
Braces   +42 added lines, -14 removed lines patch added patch discarded remove patch
@@ -46,9 +46,15 @@  discard block
 block discarded – undo
46 46
       "content" => $content,
47 47
       "slug"    => url_title($title)
48 48
     );
49
-    if (is_numeric($title)) $data["slug"] = "_" . $data["slug"];
50
-    if ($adminId != null) $data["poster_id"] = $adminId;
51
-    if ($this->db->insert($this->table_name, $data)) return $this->db->insert_id();
49
+    if (is_numeric($title)) {
50
+      $data["slug"] = "_" . $data["slug"];
51
+    }
52
+    if ($adminId != null) {
53
+      $data["poster_id"] = $adminId;
54
+    }
55
+    if ($this->db->insert($this->table_name, $data)) {
56
+      return $this->db->insert_id();
57
+    }
52 58
     return false;
53 59
   }
54 60
   /**
@@ -66,9 +72,15 @@  discard block
 block discarded – undo
66 72
       "published"      => 1,
67 73
       "date_published" => date("Y-m-d H:i:s")
68 74
     );
69
-    if (is_numeric($title)) $data["slug"] = "_" . $data["slug"];
70
-    if ($adminId != null) $data["poster_id"] = $adminId;
71
-    if ($this->db->insert($this->table_name, $data)) return $this->db->insert_id();
75
+    if (is_numeric($title)) {
76
+      $data["slug"] = "_" . $data["slug"];
77
+    }
78
+    if ($adminId != null) {
79
+      $data["poster_id"] = $adminId;
80
+    }
81
+    if ($this->db->insert($this->table_name, $data)) {
82
+      return $this->db->insert_id();
83
+    }
72 84
     return false;
73 85
   }
74 86
   /**
@@ -82,8 +94,12 @@  discard block
 block discarded – undo
82 94
    * @return array           Array of posts for a given page.
83 95
    */
84 96
   function getPosts($page=1, $limit=5, $filter=false, $hits=false) {
85
-    if ($limit != 0) $this->db->limit($limit, ($page * $limit) - $limit);
86
-    if ($filter) $this->db->where("published", 1);
97
+    if ($limit != 0) {
98
+      $this->db->limit($limit, ($page * $limit) - $limit);
99
+    }
100
+    if ($filter) {
101
+      $this->db->where("published", 1);
102
+    }
87 103
     if ($hits) {
88 104
       $this->db->order_by("hits", "DESC");
89 105
     } else {
@@ -98,8 +114,12 @@  discard block
 block discarded – undo
98 114
    * @return [type]          [description]
99 115
    */
100 116
   function getRecentPosts($limit=5, $filter=false) {
101
-    if ($limit != null && $limit != null) $this->db->limit($limit);
102
-    if ($filter) $this->db->where("published", 1);
117
+    if ($limit != null && $limit != null) {
118
+      $this->db->limit($limit);
119
+    }
120
+    if ($filter) {
121
+      $this->db->where("published", 1);
122
+    }
103 123
     $this->db->order_by("id", "DESC");
104 124
     return $this->db->get($this->table_name)->result_array();
105 125
   }
@@ -151,7 +171,9 @@  discard block
 block discarded – undo
151 171
       $src = array();
152 172
       // Get the contents of the src tag.
153 173
       preg_match("/(http|https):\/\/[a-zA-Z0-9-._\/]+/", $share_image, $src);
154
-      if (count($src) == 0) return $post;
174
+      if (count($src) == 0) {
175
+        return $post;
176
+      }
155 177
       $post["share_image"] = $src[0];
156 178
       return $post;
157 179
     }
@@ -165,7 +187,9 @@  discard block
 block discarded – undo
165 187
   function getHits($postId) {
166 188
     $this->db->where("id", $postId);
167 189
     $query = $this->db->get($this->table_name);
168
-    if ($query->num_rows() > 0) return $query->result()[0]->hits;
190
+    if ($query->num_rows() > 0) {
191
+      return $query->result()[0]->hits;
192
+    }
169 193
     return 0;
170 194
   }
171 195
   /**
@@ -206,8 +230,12 @@  discard block
 block discarded – undo
206 230
    * @return [type]          [description]
207 231
    */
208 232
   function searchPosts($words, $page, $limit=0, $filter=false) {
209
-    if ($limit != 0) $this->db->limit($limit, ($page * $limit) - $limit);
210
-    if ($filter) $this->db->where("published", 1);
233
+    if ($limit != 0) {
234
+      $this->db->limit($limit, ($page * $limit) - $limit);
235
+    }
236
+    if ($filter) {
237
+      $this->db->where("published", 1);
238
+    }
211 239
     $this->db->like("title", $words);
212 240
     $this->db->or_like("content", $words);
213 241
     return $this->db->get($this->table_name)->result_array();
Please login to merge, or discard this patch.
libraries/Blogger.php 1 patch
Braces   +18 added lines, -6 removed lines patch added patch discarded remove patch
@@ -88,7 +88,9 @@  discard block
 block discarded – undo
88 88
         "FOREIGN KEY (poster_id) REFERENCES $adminTableName($adminIdColumnName)");
89 89
     }
90 90
     $attributes = array('ENGINE' => 'InnoDB');
91
-    if (!$this->ci->dbforge->create_table($blogName, true, $attributes)) return false;
91
+    if (!$this->ci->dbforge->create_table($blogName, true, $attributes)) {
92
+      return false;
93
+    }
92 94
     return true;
93 95
   }
94 96
   /**
@@ -172,7 +174,9 @@  discard block
 block discarded – undo
172 174
     } elseif ($action == "publish" || $action == "createAndPublish") {
173 175
       if ($action == "publish") {
174 176
         $id = $this->ci->security->xss_clean($this->ci->input->post("id"));
175
-        if ($id == "") return self::ABORT;
177
+        if ($id == "") {
178
+          return self::ABORT;
179
+        }
176 180
         $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);
177 181
         $this->ci->bmanager->publishPost($id, true);
178 182
         return self::PUBLISH;
@@ -181,7 +185,9 @@  discard block
 block discarded – undo
181 185
         return self::CREATE_AND_PUBLISH;
182 186
       }
183 187
     } elseif ($action == "delete") {
184
-      if ($this->ci->bmanager->deletePost($this->ci->security->xss_clean($this->ci->input->post("id")))) return self::DELETE;
188
+      if ($this->ci->bmanager->deletePost($this->ci->security->xss_clean($this->ci->input->post("id")))) {
189
+        return self::DELETE;
190
+      }
185 191
     }
186 192
     return false;
187 193
   }
@@ -208,7 +214,9 @@  discard block
 block discarded – undo
208 214
    * @return [type]              [description]
209 215
    */
210 216
   function renderPostItems($view=null, $callback=null, $empty_view=null, $page=1, $limit=5, $filter=false, $hits=false, $slug=true) {
211
-    if ($view == null || $empty_view == null) $this->ci->load->bind("francis94c/blog", $blogger);
217
+    if ($view == null || $empty_view == null) {
218
+      $this->ci->load->bind("francis94c/blog", $blogger);
219
+    }
212 220
     $posts = $this->getPosts($page, $limit, $filter, $hits);
213 221
     if (count($posts) == 0) {
214 222
       if ($empty_view == null) { $blogger->load->view("empty"); } else {
@@ -242,7 +250,9 @@  discard block
 block discarded – undo
242 250
    * @return [type]       [description]
243 251
    */
244 252
   function renderPost($post, $view=null) {
245
-    if (!is_array($post)) $post = $this->ci->bmanager->getPost($post);
253
+    if (!is_array($post)) {
254
+      $post = $this->ci->bmanager->getPost($post);
255
+    }
246 256
     $post["content"] = $this->ci->parsedown->text($post["content"]);
247 257
     if ($view == null) {
248 258
       $this->ci->load->splint("francis94c/blog", "-post_item", $post);
@@ -259,7 +269,9 @@  discard block
 block discarded – undo
259 269
     $data = array();
260 270
     $data["title"] = $post["title"];
261 271
     $data["description"] = substr($post["content"], 0, 154);
262
-    if (isset($post["share_image"])) $data["image_link"] = $post["share_image"];
272
+    if (isset($post["share_image"])) {
273
+      $data["image_link"] = $post["share_image"];
274
+    }
263 275
     $data["url"] = current_url();
264 276
     return $this->ci->load->splint(self::PACKAGE, "-meta_og", $data, true);
265 277
   }
Please login to merge, or discard this patch.