@@ -26,7 +26,7 @@ |
||
26 | 26 | $alias = URLDecode::getPiece(2); |
27 | 27 | $this->period = PeriodCollector::getByAlias($alias); |
28 | 28 | |
29 | - if(!$this->period) |
|
29 | + if (!$this->period) |
|
30 | 30 | $this->eject(); |
31 | 31 | |
32 | 32 | parent::__construct(); |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | $companion_result = CompanionCollector::getCompanionList(); |
43 | 43 | $companion_list = array(); |
44 | 44 | |
45 | - foreach($companion_result as $companion_row) |
|
45 | + foreach ($companion_result as $companion_row) |
|
46 | 46 | { |
47 | 47 | $companion = new stdclass(); |
48 | 48 | $companion->name = $companion_row->name; |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | $period_result = PeriodCollector::getPeriodList(); |
56 | 56 | $period_list = array(); |
57 | 57 | |
58 | - foreach($period_result as $period_row) |
|
58 | + foreach ($period_result as $period_row) |
|
59 | 59 | { |
60 | 60 | $period = new stdclass(); |
61 | 61 | $period->name = $period_row->name; |
@@ -27,7 +27,7 @@ |
||
27 | 27 | protected function get_page_number() |
28 | 28 | { |
29 | 29 | $page = URLDecode::getPiece(2); |
30 | - if(isset($page) && is_numeric($page)) |
|
30 | + if (isset($page) && is_numeric($page)) |
|
31 | 31 | return $page; |
32 | 32 | return 1; |
33 | 33 | } |
@@ -59,7 +59,7 @@ |
||
59 | 59 | $recent_comments = CommentCollector::getRecentWaterfallComments(); |
60 | 60 | |
61 | 61 | $recent_comment_container = array(); |
62 | - foreach($recent_comments as $comment) { |
|
62 | + foreach ($recent_comments as $comment) { |
|
63 | 63 | $body = $comment->body; |
64 | 64 | $body = strip_tags($body); |
65 | 65 |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | $county_result = CountyCollector::getCountyList(); |
42 | 42 | $county_list = array(); |
43 | 43 | |
44 | - foreach($county_result as $county_row) |
|
44 | + foreach ($county_result as $county_row) |
|
45 | 45 | { |
46 | 46 | $county = new stdclass(); |
47 | 47 | $county->name = $county_row->name; |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | $watercourse_result = WatercourseCollector::getWatercourseList(); |
55 | 55 | $watercourse_list = array(); |
56 | 56 | |
57 | - foreach($watercourse_result as $watercourse_row) |
|
57 | + foreach ($watercourse_result as $watercourse_row) |
|
58 | 58 | { |
59 | 59 | $watercourse = new stdclass(); |
60 | 60 | $watercourse->name = $watercourse_row->name; |
@@ -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', |
@@ -27,7 +27,7 @@ |
||
27 | 27 | $alias = URLDecode::getPiece(3); |
28 | 28 | $this->tag = LogTagCollector::getTag($alias); |
29 | 29 | |
30 | - if(!$this->tag) |
|
30 | + if (!$this->tag) |
|
31 | 31 | $this->eject(); |
32 | 32 | |
33 | 33 | parent::__construct(); |
@@ -29,7 +29,7 @@ |
||
29 | 29 | $path = URLDecode::getPiece(1); |
30 | 30 | $this->watercourse = WatercourseCollector::getByAlias($path); |
31 | 31 | |
32 | - if(!$this->watercourse) |
|
32 | + if (!$this->watercourse) |
|
33 | 33 | $this->eject(); |
34 | 34 | |
35 | 35 | parent::__construct(); |
@@ -20,14 +20,14 @@ discard block |
||
20 | 20 | $this->offset = ($this->page - 1) * $this->get_item_count_per_page(); |
21 | 21 | |
22 | 22 | $items = $this->get_items(); |
23 | - if(count($items) < 1) |
|
23 | + if (count($items) < 1) |
|
24 | 24 | $this->eject(); |
25 | 25 | } |
26 | 26 | |
27 | 27 | final protected function get_page_number() |
28 | 28 | { |
29 | 29 | $page = $this->get_page_number_piece(); |
30 | - if(isset($page) && is_numeric($page)) |
|
30 | + if (isset($page) && is_numeric($page)) |
|
31 | 31 | return $page; |
32 | 32 | return 1; |
33 | 33 | } |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | |
42 | 42 | final private function get_introduction() |
43 | 43 | { |
44 | - if($this->page == 1) |
|
44 | + if ($this->page == 1) |
|
45 | 45 | return $this->get_initial_introduction(); |
46 | 46 | |
47 | 47 | return $this->get_subsequent_introduction(); |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | private $items; |
54 | 54 | protected function get_items() |
55 | 55 | { |
56 | - if(!isset($this->items)) |
|
56 | + if (!isset($this->items)) |
|
57 | 57 | { |
58 | 58 | $total = $this->get_item_count_per_page(); |
59 | 59 | $offset = ($this->page - 1) * $this->get_item_count_per_page(); |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | private $item_count; |
69 | 69 | final private function get_item_count() |
70 | 70 | { |
71 | - if(!isset($this->item_count)) |
|
71 | + if (!isset($this->item_count)) |
|
72 | 72 | $this->item_count = $this->get_item_count_result(); |
73 | 73 | return $this->item_count; |
74 | 74 | } |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | $this->set_head('next_link', $this->get_list_next_link()); |
83 | 83 | $this->set_head('previous_link', $this->get_list_prev_link()); |
84 | 84 | |
85 | - if($this->page == 1) |
|
85 | + if ($this->page == 1) |
|
86 | 86 | $meta_array = $this->get_initial_meta(); |
87 | 87 | else |
88 | 88 | $meta_array = $this->get_subsequent_meta(); |
@@ -119,16 +119,16 @@ discard block |
||
119 | 119 | |
120 | 120 | final private function get_list_prev_link() |
121 | 121 | { |
122 | - if($this->page == 1) |
|
122 | + if ($this->page == 1) |
|
123 | 123 | return; |
124 | - if($this->page == 2) |
|
124 | + if ($this->page == 2) |
|
125 | 125 | return $this->get_list_link_root(); |
126 | 126 | return $this->get_list_link_root() . ($this->page - 1) . '/'; |
127 | 127 | } |
128 | 128 | |
129 | 129 | final private function get_list_next_link() |
130 | 130 | { |
131 | - if(($this->page * $this->get_item_count_per_page()) >= $this->get_item_count()) |
|
131 | + if (($this->page * $this->get_item_count_per_page()) >= $this->get_item_count()) |
|
132 | 132 | return; |
133 | 133 | return $this->get_list_link_root() . ($this->page + 1) . '/'; |
134 | 134 | } |
@@ -139,27 +139,27 @@ discard block |
||
139 | 139 | { |
140 | 140 | $link_array = array(); |
141 | 141 | |
142 | - if($this->get_item_count_per_page() >= $this->get_item_count()) |
|
142 | + if ($this->get_item_count_per_page() >= $this->get_item_count()) |
|
143 | 143 | return $link_array; |
144 | 144 | |
145 | 145 | $link = new stdclass(); |
146 | 146 | $link->anchor = '« previous'; |
147 | - if($this->get_list_prev_link() !== null) |
|
147 | + if ($this->get_list_prev_link() !== null) |
|
148 | 148 | $link->uri = $this->get_list_prev_link(); |
149 | 149 | else |
150 | 150 | $link->class = 'inactive'; |
151 | 151 | $link_array[] = $link; |
152 | 152 | |
153 | - for($i = 1; $i <= ceil($this->get_item_count() / $this->get_item_count_per_page()); $i++) |
|
153 | + for ($i = 1; $i <= ceil($this->get_item_count() / $this->get_item_count_per_page()); $i++) |
|
154 | 154 | { |
155 | 155 | $link = new stdclass(); |
156 | 156 | $link->anchor = $i; |
157 | 157 | |
158 | - if($i == $this->page) |
|
158 | + if ($i == $this->page) |
|
159 | 159 | $link->class = 'current'; |
160 | 160 | else |
161 | 161 | { |
162 | - if($i == 1) |
|
162 | + if ($i == 1) |
|
163 | 163 | $link->uri = $this->get_list_link_root(); |
164 | 164 | else |
165 | 165 | $link->uri = $this->get_list_link_root() . $i . '/'; |
@@ -170,7 +170,7 @@ discard block |
||
170 | 170 | |
171 | 171 | $link = new stdclass(); |
172 | 172 | $link->anchor = 'next »'; |
173 | - if($this->get_list_next_link() !== null) |
|
173 | + if ($this->get_list_next_link() !== null) |
|
174 | 174 | $link->uri = $this->get_list_next_link(); |
175 | 175 | else |
176 | 176 | $link->class = 'inactive'; |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | |
193 | 193 | final protected function get_image_element($category, $path, $description, $size = 'small') |
194 | 194 | { |
195 | - switch($size) |
|
195 | + switch ($size) |
|
196 | 196 | { |
197 | 197 | case 'medium' : |
198 | 198 | $height = 375; |