@@ -18,9 +18,9 @@ discard block |
||
18 | 18 | |
19 | 19 | static function getServer($key = null) |
20 | 20 | { |
21 | - if($key) |
|
21 | + if ($key) |
|
22 | 22 | { |
23 | - if(isset(self::$server[$key])) |
|
23 | + if (isset(self::$server[$key])) |
|
24 | 24 | return self::$server[$key]; |
25 | 25 | return false; |
26 | 26 | } |
@@ -29,16 +29,16 @@ discard block |
||
29 | 29 | |
30 | 30 | static function isAjax() |
31 | 31 | { |
32 | - if(self::getServer(self::$AJAX_REQUEST)) |
|
32 | + if (self::getServer(self::$AJAX_REQUEST)) |
|
33 | 33 | return true; |
34 | 34 | return false; |
35 | 35 | } |
36 | 36 | |
37 | 37 | static function getGet($key = null) |
38 | 38 | { |
39 | - if($key) |
|
39 | + if ($key) |
|
40 | 40 | { |
41 | - if(isset(self::$get[$key])) |
|
41 | + if (isset(self::$get[$key])) |
|
42 | 42 | return self::$get[$key]; |
43 | 43 | return false; |
44 | 44 | } |
@@ -47,9 +47,9 @@ discard block |
||
47 | 47 | |
48 | 48 | static function getPost($key = null) |
49 | 49 | { |
50 | - if($key) |
|
50 | + if ($key) |
|
51 | 51 | { |
52 | - if(isset(self::$post[$key])) |
|
52 | + if (isset(self::$post[$key])) |
|
53 | 53 | return self::$post[$key]; |
54 | 54 | return false; |
55 | 55 | } |
@@ -56,11 +56,11 @@ |
||
56 | 56 | final private function get_list_posts() |
57 | 57 | { |
58 | 58 | $post_array = array(); |
59 | - foreach($this->get_list_results() as $post) |
|
59 | + foreach ($this->get_list_results() as $post) |
|
60 | 60 | { |
61 | 61 | $post_array[] = $this->format_post($post, true); |
62 | 62 | } |
63 | - if(count($post_array) < 1 && URLDecode::getPiece(1) !== 'search') |
|
63 | + if (count($post_array) < 1 && URLDecode::getPiece(1) !== 'search') |
|
64 | 64 | $this->eject(); |
65 | 65 | return $post_array; |
66 | 66 | } |
@@ -33,16 +33,16 @@ discard block |
||
33 | 33 | |
34 | 34 | private function process_form() |
35 | 35 | { |
36 | - if(!Request::hasPost() || Request::getPost('submit') != 'Send Message!') |
|
36 | + if (!Request::hasPost() || Request::getPost('submit') != 'Send Message!') |
|
37 | 37 | return (object) array('display' => 'normal'); |
38 | 38 | |
39 | 39 | Loader::load('utility', 'Validate'); |
40 | 40 | $error_result = array(); |
41 | - if(!Validate::checkRequest('post', 'name', 'string')) |
|
41 | + if (!Validate::checkRequest('post', 'name', 'string')) |
|
42 | 42 | $error_result['name'] = 'please enter your name'; |
43 | - if(!Validate::checkRequest('post', 'email', 'string')) |
|
43 | + if (!Validate::checkRequest('post', 'email', 'string')) |
|
44 | 44 | $error_result['email'] = 'please enter a valid email'; |
45 | - if(!Validate::checkRequest('post', 'message', 'string')) |
|
45 | + if (!Validate::checkRequest('post', 'message', 'string')) |
|
46 | 46 | $error_result['message'] = 'please write a message'; |
47 | 47 | |
48 | 48 | $values = (object) array( |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | 'email' => Request::getPost('email'), |
51 | 51 | 'message' => Request::getPost('message')); |
52 | 52 | |
53 | - if(count($error_result) > 0) |
|
53 | + if (count($error_result) > 0) |
|
54 | 54 | { |
55 | 55 | return (object) array( |
56 | 56 | 'display' => 'error', |
@@ -20,14 +20,14 @@ discard block |
||
20 | 20 | parent::__construct(); |
21 | 21 | |
22 | 22 | $id = URLDecode::getPiece(2); |
23 | - if(!$id || !is_numeric($id)) |
|
23 | + if (!$id || !is_numeric($id)) |
|
24 | 24 | $this->eject(); |
25 | 25 | |
26 | 26 | $post = $this->postRepository->getPostById($id); |
27 | - if(!$post) |
|
27 | + if (!$post) |
|
28 | 28 | $this->eject(); |
29 | 29 | |
30 | - if(URLDecode::getPiece(1) != $post['type']) |
|
30 | + if (URLDecode::getPiece(1) != $post['type']) |
|
31 | 31 | $this->eject(); |
32 | 32 | |
33 | 33 | $this->post = $post; |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | |
60 | 60 | private function get_title() |
61 | 61 | { |
62 | - switch($this->post['type']) |
|
62 | + switch ($this->post['type']) |
|
63 | 63 | { |
64 | 64 | case 'blog' : |
65 | 65 | return 'Jacob blogged'; |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | |
85 | 85 | private function get_description() |
86 | 86 | { |
87 | - switch($this->post['type']) |
|
87 | + switch ($this->post['type']) |
|
88 | 88 | { |
89 | 89 | case 'blog' : |
90 | 90 | return 'Another awesome blog post from Jacob. Did I mention it was awesome?'; |
@@ -4,5 +4,5 @@ |
||
4 | 4 | |
5 | 5 | interface LogRepositoryInterface |
6 | 6 | { |
7 | - public function getActiveLogs($limit = null, $offset= 0); |
|
7 | + public function getActiveLogs($limit = null, $offset = 0); |
|
8 | 8 | } |
@@ -4,5 +4,5 @@ |
||
4 | 4 | |
5 | 5 | interface WaterfallRepositoryInterface |
6 | 6 | { |
7 | - public function getWaterfalls($limit = null, $offset= 0); |
|
7 | + public function getWaterfalls($limit = null, $offset = 0); |
|
8 | 8 | } |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | $post_result = $activityRepository->getActivities(5); |
65 | 65 | |
66 | 66 | $post_array = array(); |
67 | - foreach($post_result as $row) { |
|
67 | + foreach ($post_result as $row) { |
|
68 | 68 | array_push($post_array, $this->expand_post($row)); |
69 | 69 | } |
70 | 70 | |
@@ -100,9 +100,9 @@ discard block |
||
100 | 100 | $headers = $this->headers; |
101 | 101 | Header::$headers(); |
102 | 102 | Loader::load('view', '/Head', $this->data_array['head']); |
103 | - foreach($this->body_view_array as $view) |
|
103 | + foreach ($this->body_view_array as $view) |
|
104 | 104 | { |
105 | - if(substr($view, 0, 1) == '/') |
|
105 | + if (substr($view, 0, 1) == '/') |
|
106 | 106 | Loader::load('view', $view, $this->data_array['body']); |
107 | 107 | else |
108 | 108 | Loader::load('view', URLDecode::getSite() . '/' . $view, $this->data_array['body']); |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | Loader::load('view', '/Foot', array('tracking_code' => self::$TRACKING_CODE)); |
115 | 115 | } |
116 | 116 | |
117 | - if($view == '/404' || $view == '/503') |
|
117 | + if ($view == '/404' || $view == '/503') |
|
118 | 118 | exit; |
119 | 119 | } |
120 | 120 | |
@@ -170,14 +170,14 @@ discard block |
||
170 | 170 | |
171 | 171 | private function load_assets() |
172 | 172 | { |
173 | - $css_array = array_map(function ($stylesheet) { |
|
173 | + $css_array = array_map(function($stylesheet) { |
|
174 | 174 | $path = "/css/{$stylesheet[0]}.css"; |
175 | 175 | if ($stylesheet[1] > 1) { |
176 | 176 | $path .= "?v={$stylesheet[1]}"; |
177 | 177 | } |
178 | 178 | return $path; |
179 | 179 | }, $this->css_array); |
180 | - $js_array = array_map(function ($script) { |
|
180 | + $js_array = array_map(function($script) { |
|
181 | 181 | if (substr($script, 0, 4) == 'http') { |
182 | 182 | return $script; |
183 | 183 | } |
@@ -195,26 +195,26 @@ discard block |
||
195 | 195 | |
196 | 196 | protected function eject() |
197 | 197 | { |
198 | - if(get_class($this) !== 'Error404Controller') |
|
198 | + if (get_class($this) !== 'Error404Controller') |
|
199 | 199 | Loader::loadNew('controller', '/Error404Controller')->activate(); |
200 | 200 | } |
201 | 201 | |
202 | 202 | protected function unavailable() |
203 | 203 | { |
204 | - if(get_class($this) !== 'Error503Controller') |
|
204 | + if (get_class($this) !== 'Error503Controller') |
|
205 | 205 | Loader::loadNew('controller', '/Error503Controller')->activate(); |
206 | 206 | } |
207 | 207 | |
208 | 208 | protected function redirect($uri, $method = 301) |
209 | 209 | { |
210 | - switch($method) |
|
210 | + switch ($method) |
|
211 | 211 | { |
212 | 212 | case 301 : |
213 | - if(get_class($this) !== 'Error301Controller') |
|
213 | + if (get_class($this) !== 'Error301Controller') |
|
214 | 214 | Loader::loadNew('controller', '/Error301Controller', array($uri))->activate(); |
215 | 215 | break; |
216 | 216 | case 303 : |
217 | - if(get_class($this) !== 'Error303Controller') |
|
217 | + if (get_class($this) !== 'Error303Controller') |
|
218 | 218 | Loader::loadNew('controller', '/Error303Controller', array($uri))->activate(); |
219 | 219 | break; |
220 | 220 | } |
@@ -234,7 +234,7 @@ discard block |
||
234 | 234 | private $comment_errors; |
235 | 235 | protected function handle_comment_submit($site_id, $path, $redirect_url, $page_title) |
236 | 236 | { |
237 | - if(Request::hasPost() && Request::getPost('submit') == 'Submit Comment') |
|
237 | + if (Request::hasPost() && Request::getPost('submit') == 'Submit Comment') |
|
238 | 238 | { |
239 | 239 | $parameters = array($site_id, $path, $redirect_url, $page_title); |
240 | 240 | $this->comment_errors = Loader::loadNew('module', 'form/CommentSubmitModule', $parameters)->activate(); |
@@ -252,7 +252,7 @@ discard block |
||
252 | 252 | $comment_array = array(); |
253 | 253 | $comment_result = CommentCollector::getCommentsForURL($site, $path, $commenter->id); |
254 | 254 | |
255 | - foreach($comment_result as $comment) |
|
255 | + foreach ($comment_result as $comment) |
|
256 | 256 | { |
257 | 257 | $comment_object = new stdclass(); |
258 | 258 | $comment_object->id = $comment->id; |
@@ -262,12 +262,12 @@ discard block |
||
262 | 262 | $comment_object->url = $comment->url; |
263 | 263 | $comment_object->trusted = $comment->trusted; |
264 | 264 | |
265 | - if($comment->reply == 0 && Request::getPost('type') == $comment->id) |
|
265 | + if ($comment->reply == 0 && Request::getPost('type') == $comment->id) |
|
266 | 266 | $comment_object->errors = $this->comment_errors; |
267 | 267 | else |
268 | 268 | $comment_object->errors = array(); |
269 | 269 | |
270 | - if($comment->reply == 0) |
|
270 | + if ($comment->reply == 0) |
|
271 | 271 | { |
272 | 272 | $comment_object->replies = array(); |
273 | 273 | $comment_array[$comment->id] = $comment_object; |
@@ -298,21 +298,21 @@ discard block |
||
298 | 298 | $commenter->website = ''; |
299 | 299 | |
300 | 300 | $commenter_cookie = Cookie::instance('Commenter'); |
301 | - if(!$commenter_cookie->exists()) |
|
301 | + if (!$commenter_cookie->exists()) |
|
302 | 302 | return $commenter; |
303 | 303 | |
304 | 304 | $commenter_cookie_value = $commenter_cookie->getValue(); |
305 | 305 | $commenter_cookie_value = json_decode($commenter_cookie_value); |
306 | 306 | |
307 | - if($commenter_cookie_value === NULL) |
|
307 | + if ($commenter_cookie_value === NULL) |
|
308 | 308 | return $commenter; |
309 | 309 | |
310 | - if(!isset($commenter_cookie_value->name) || !isset($commenter_cookie_value->email)) |
|
310 | + if (!isset($commenter_cookie_value->name) || !isset($commenter_cookie_value->email)) |
|
311 | 311 | return $commenter; |
312 | 312 | |
313 | 313 | $commenter_object = CommentCollector::getCommenterByFields($commenter_cookie_value->name, $commenter_cookie_value->email, (isset($commenter_cookie_value->website) ? $commenter_cookie_value->website : '')); |
314 | 314 | |
315 | - if($commenter_object === NULL) |
|
315 | + if ($commenter_object === NULL) |
|
316 | 316 | return $commenter; |
317 | 317 | |
318 | 318 | $commenter->id = $commenter_object->id; |
@@ -17,14 +17,14 @@ discard block |
||
17 | 17 | |
18 | 18 | public static function instance() |
19 | 19 | { |
20 | - if(!isset(self::$instance)) |
|
20 | + if (!isset(self::$instance)) |
|
21 | 21 | self::$instance = new Loader(); |
22 | 22 | return self::$instance; |
23 | 23 | } |
24 | 24 | |
25 | 25 | private function get_root() |
26 | 26 | { |
27 | - if(!isset($this->root)) |
|
27 | + if (!isset($this->root)) |
|
28 | 28 | { |
29 | 29 | $current_directory = dirname(__FILE__); |
30 | 30 | $current_directory = substr($current_directory, 0, -7); |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | |
53 | 53 | private static function get_extension($type) |
54 | 54 | { |
55 | - switch($type) |
|
55 | + switch ($type) |
|
56 | 56 | { |
57 | 57 | case 'collector' : |
58 | 58 | case 'controller' : |
@@ -104,10 +104,10 @@ discard block |
||
104 | 104 | |
105 | 105 | public static function load($type, $files, $data = array()) |
106 | 106 | { |
107 | - foreach((array) $files as $file) |
|
107 | + foreach ((array) $files as $file) |
|
108 | 108 | { |
109 | 109 | $file_path = self::instance()->get_path($type, $file); |
110 | - if(in_array($file_path, self::instance()->get_included_files()) && $type !== 'view') |
|
110 | + if (in_array($file_path, self::instance()->get_included_files()) && $type !== 'view') |
|
111 | 111 | continue; |
112 | 112 | |
113 | 113 | // if(!file_exists($file_path)) |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | |
116 | 116 | self::instance()->add_included_file($file_path); |
117 | 117 | |
118 | - switch($type) |
|
118 | + switch ($type) |
|
119 | 119 | { |
120 | 120 | case 'images' : |
121 | 121 | case 'scripts' : |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | |
146 | 146 | $reflectionObject = self::create_reflection_class($file); |
147 | 147 | |
148 | - if( |
|
148 | + if ( |
|
149 | 149 | $reflectionObject->hasMethod('instance') && |
150 | 150 | $reflectionObject->getMethod('instance')->isStatic()) |
151 | 151 | { |
@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | |
161 | 161 | $reflectionObject = self::create_reflection_class($file); |
162 | 162 | |
163 | - if($reflectionObject->hasMethod('__construct')) |
|
163 | + if ($reflectionObject->hasMethod('__construct')) |
|
164 | 164 | return $reflectionObject->newInstanceArgs($data); |
165 | 165 | else |
166 | 166 | return $reflectionObject->newInstance(); |
@@ -18,10 +18,10 @@ discard block |
||
18 | 18 | |
19 | 19 | private static function get_router_name() |
20 | 20 | { |
21 | - if(Request::isAJAX()) |
|
21 | + if (Request::isAJAX()) |
|
22 | 22 | return 'AJAXRouter'; |
23 | 23 | |
24 | - switch(URLDecode::getSite()) |
|
24 | + switch (URLDecode::getSite()) |
|
25 | 25 | { |
26 | 26 | case 'ajax' : |
27 | 27 | return 'AjaxRouter'; |
@@ -65,14 +65,14 @@ discard block |
||
65 | 65 | |
66 | 66 | final protected function check_for_redirect($redirect_uri) |
67 | 67 | { |
68 | - foreach($this->get_redirect_array() as $check) |
|
68 | + foreach ($this->get_redirect_array() as $check) |
|
69 | 69 | { |
70 | 70 | $redirect_uri = preg_replace($check->pattern, $check->replace, $redirect_uri); |
71 | 71 | } |
72 | 72 | |
73 | 73 | $redirect_uri = $this->check_for_special_redirect($redirect_uri); |
74 | 74 | |
75 | - if($this->requires_trailing_slash() && substr($redirect_uri, -1) != '/') |
|
75 | + if ($this->requires_trailing_slash() && substr($redirect_uri, -1) != '/') |
|
76 | 76 | $redirect_uri .= '/'; |
77 | 77 | |
78 | 78 | if (URLDecode::getHost() == 'waterfalls.jacobemerick.com') { |
@@ -80,23 +80,23 @@ discard block |
||
80 | 80 | $redirect_uri = $protocol . '://' . (!Loader::isLive() ? 'dev' : 'www') . '.waterfallsofthekeweenaw.com' . $redirect_uri; |
81 | 81 | } |
82 | 82 | |
83 | - if($redirect_uri == URLDecode::getURI()) |
|
83 | + if ($redirect_uri == URLDecode::getURI()) |
|
84 | 84 | return; |
85 | 85 | |
86 | 86 | $controller_check = $redirect_uri; |
87 | - if(substr($redirect_uri, 0, 4) == 'http') { |
|
87 | + if (substr($redirect_uri, 0, 4) == 'http') { |
|
88 | 88 | $protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') ? 'https' : 'http'; |
89 | 89 | $controller_check = preg_replace('@^' . $protocol . '://([a-z\.]+)@', '', $redirect_uri); |
90 | 90 | |
91 | 91 | $controller = $this->get_controller($controller_check); |
92 | - if($controller == '/Error404Controller') |
|
92 | + if ($controller == '/Error404Controller') |
|
93 | 93 | { |
94 | 94 | Loader::loadNew('controller', '/Error404Controller') |
95 | 95 | ->activate(); |
96 | 96 | exit; |
97 | 97 | } |
98 | 98 | |
99 | - if(substr($redirect_uri, 0, 4) != 'http') |
|
99 | + if (substr($redirect_uri, 0, 4) != 'http') |
|
100 | 100 | { |
101 | 101 | $redirect_uri = substr($redirect_uri, 1); |
102 | 102 | $redirect_uri = URLDecode::getBase() . $redirect_uri; |
@@ -113,12 +113,12 @@ discard block |
||
113 | 113 | |
114 | 114 | final private function get_controller($uri) |
115 | 115 | { |
116 | - foreach($this->get_direct_array() as $check) |
|
116 | + foreach ($this->get_direct_array() as $check) |
|
117 | 117 | { |
118 | - if($uri == $check->match) |
|
118 | + if ($uri == $check->match) |
|
119 | 119 | return "{$this->get_primary_folder()}/{$check->controller}"; |
120 | 120 | |
121 | - if(preg_match("@^{$check->match}$@", $uri)) |
|
121 | + if (preg_match("@^{$check->match}$@", $uri)) |
|
122 | 122 | return "{$this->get_primary_folder()}/{$check->controller}"; |
123 | 123 | } |
124 | 124 | |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | |
128 | 128 | final private function get_primary_folder() |
129 | 129 | { |
130 | - if(Request::isAjax()) |
|
130 | + if (Request::isAjax()) |
|
131 | 131 | return 'ajax'; |
132 | 132 | |
133 | 133 | return URLDecode::getSite(); |