@@ -1,8 +1,8 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | Loader::load('collector', array( |
4 | - 'waterfall/LogCollector', |
|
5 | - 'waterfall/WaterfallCollector')); |
|
4 | + 'waterfall/LogCollector', |
|
5 | + 'waterfall/WaterfallCollector')); |
|
6 | 6 | Loader::load('router', 'Router'); |
7 | 7 | |
8 | 8 | class WaterfallRouter extends Router |
@@ -26,15 +26,15 @@ discard block |
||
26 | 26 | (object) array( |
27 | 27 | 'pattern' => '@^/falls/results(/?)$@', |
28 | 28 | 'replace' => '/falls/'), |
29 | - (object) array( |
|
30 | - 'pattern' => '@^/log(/?)$@', |
|
31 | - 'replace' => '/journal/'), |
|
32 | - (object) array( |
|
33 | - 'pattern' => '@^/log/(\d+)(/?)$@', |
|
34 | - 'replace' => '/journal/$1'), |
|
35 | - (object) array( |
|
36 | - 'pattern' => '@^/map/([^/]+)(/?)$@', |
|
37 | - 'replace' => '/map/'), |
|
29 | + (object) array( |
|
30 | + 'pattern' => '@^/log(/?)$@', |
|
31 | + 'replace' => '/journal/'), |
|
32 | + (object) array( |
|
33 | + 'pattern' => '@^/log/(\d+)(/?)$@', |
|
34 | + 'replace' => '/journal/$1'), |
|
35 | + (object) array( |
|
36 | + 'pattern' => '@^/map/([^/]+)(/?)$@', |
|
37 | + 'replace' => '/map/'), |
|
38 | 38 | (object) array( |
39 | 39 | 'pattern' => '@^/about/([a-z]*)(/?)$@', |
40 | 40 | 'replace' => '/about/'), |
@@ -73,57 +73,57 @@ discard block |
||
73 | 73 | |
74 | 74 | protected function check_for_special_redirect($uri) |
75 | 75 | { |
76 | - if (preg_match('@^/falls/([a-z\'-]+)(/?)$@', $uri, $matches)) { |
|
77 | - $alias = $matches[1]; |
|
78 | - $alias = str_replace("'", '', $alias); |
|
79 | - $alias .= '-falls'; |
|
80 | - $result = WaterfallCollector::getByOldAlias($alias); |
|
81 | - if ($result !== null) { |
|
82 | - return "/{$result->watercourse_alias}/{$result->alias}/"; |
|
83 | - } else { |
|
84 | - Loader::loadNew('controller', '/Error404Controller')->activate(); |
|
85 | - } |
|
86 | - } |
|
76 | + if (preg_match('@^/falls/([a-z\'-]+)(/?)$@', $uri, $matches)) { |
|
77 | + $alias = $matches[1]; |
|
78 | + $alias = str_replace("'", '', $alias); |
|
79 | + $alias .= '-falls'; |
|
80 | + $result = WaterfallCollector::getByOldAlias($alias); |
|
81 | + if ($result !== null) { |
|
82 | + return "/{$result->watercourse_alias}/{$result->alias}/"; |
|
83 | + } else { |
|
84 | + Loader::loadNew('controller', '/Error404Controller')->activate(); |
|
85 | + } |
|
86 | + } |
|
87 | 87 | |
88 | - if (preg_match('@^/photos/([a-z\'-]+)-([^/]+)(/?)$@', $uri, $matches)) { |
|
89 | - $alias = $matches[1]; |
|
90 | - $alias = explode('-', $alias); |
|
91 | - array_pop($alias); |
|
92 | - $alias = implode('-', $alias); |
|
93 | - $alias = str_replace("'", '', $alias); |
|
94 | - $alias .= '-falls'; |
|
95 | - $result = WaterfallCollector::getByOldAlias($alias); |
|
96 | - if ($result !== null) { |
|
97 | - return "/{$result->watercourse_alias}/{$result->alias}/"; |
|
98 | - } else { |
|
99 | - Loader::loadNew('controller', '/Error404Controller')->activate(); |
|
100 | - } |
|
101 | - } |
|
88 | + if (preg_match('@^/photos/([a-z\'-]+)-([^/]+)(/?)$@', $uri, $matches)) { |
|
89 | + $alias = $matches[1]; |
|
90 | + $alias = explode('-', $alias); |
|
91 | + array_pop($alias); |
|
92 | + $alias = implode('-', $alias); |
|
93 | + $alias = str_replace("'", '', $alias); |
|
94 | + $alias .= '-falls'; |
|
95 | + $result = WaterfallCollector::getByOldAlias($alias); |
|
96 | + if ($result !== null) { |
|
97 | + return "/{$result->watercourse_alias}/{$result->alias}/"; |
|
98 | + } else { |
|
99 | + Loader::loadNew('controller', '/Error404Controller')->activate(); |
|
100 | + } |
|
101 | + } |
|
102 | 102 | |
103 | - if (preg_match('@/log/([a-z]+-\d{2}-\d{4})(/?)$@', $uri, $matches)) { |
|
104 | - $date = $matches[1]; |
|
105 | - $date = explode('-', $date); |
|
106 | - $date = mktime(0, 0, 0, date('n', strtotime($date[0])), $date[1], $date[2]); |
|
107 | - $date = date('Y-m-d', $date); |
|
108 | - $result = LogCollector::getByDate($date); |
|
109 | - if ($result !== null) { |
|
110 | - return "/journal/{$result->alias}/"; |
|
111 | - } else { |
|
112 | - Loader::loadNew('controller', '/Error404Controller')->activate(); |
|
113 | - } |
|
114 | - } |
|
103 | + if (preg_match('@/log/([a-z]+-\d{2}-\d{4})(/?)$@', $uri, $matches)) { |
|
104 | + $date = $matches[1]; |
|
105 | + $date = explode('-', $date); |
|
106 | + $date = mktime(0, 0, 0, date('n', strtotime($date[0])), $date[1], $date[2]); |
|
107 | + $date = date('Y-m-d', $date); |
|
108 | + $result = LogCollector::getByDate($date); |
|
109 | + if ($result !== null) { |
|
110 | + return "/journal/{$result->alias}/"; |
|
111 | + } else { |
|
112 | + Loader::loadNew('controller', '/Error404Controller')->activate(); |
|
113 | + } |
|
114 | + } |
|
115 | 115 | |
116 | - if (preg_match('@/map/([a-z\'-]+)(/?)$@', $uri, $matches)) { |
|
117 | - $alias = $matches[1]; |
|
118 | - $alias = str_replace("'", '', $alias); |
|
119 | - $alias .= '-falls'; |
|
120 | - $result = WaterfallCollector::getByOldAlias($alias); |
|
121 | - if ($result !== null) { |
|
122 | - return "/map/#{$result->watercourse_alias}/{$result->alias}"; |
|
123 | - } else { |
|
124 | - Loader::loadNew('controller', '/Error404Controller')->activate(); |
|
125 | - } |
|
126 | - } |
|
116 | + if (preg_match('@/map/([a-z\'-]+)(/?)$@', $uri, $matches)) { |
|
117 | + $alias = $matches[1]; |
|
118 | + $alias = str_replace("'", '', $alias); |
|
119 | + $alias .= '-falls'; |
|
120 | + $result = WaterfallCollector::getByOldAlias($alias); |
|
121 | + if ($result !== null) { |
|
122 | + return "/map/#{$result->watercourse_alias}/{$result->alias}"; |
|
123 | + } else { |
|
124 | + Loader::loadNew('controller', '/Error404Controller')->activate(); |
|
125 | + } |
|
126 | + } |
|
127 | 127 | |
128 | 128 | return $uri; |
129 | 129 | } |
@@ -164,9 +164,9 @@ discard block |
||
164 | 164 | (object) array( |
165 | 165 | 'match' => '/map/', |
166 | 166 | 'controller' => 'MapController'), |
167 | - (object) array( |
|
168 | - 'match' => '/map/#[a-z-/]+', |
|
169 | - 'controller' => 'MapController'), |
|
167 | + (object) array( |
|
168 | + 'match' => '/map/#[a-z-/]+', |
|
169 | + 'controller' => 'MapController'), |
|
170 | 170 | (object) array( |
171 | 171 | 'match' => '/journal/', |
172 | 172 | 'controller' => 'LogListController'), |
@@ -114,9 +114,9 @@ discard block |
||
114 | 114 | return self::run_query($query); |
115 | 115 | } |
116 | 116 | |
117 | - public static function getRecentWaterfallComments($count = 5) |
|
118 | - { |
|
119 | - $query = " |
|
117 | + public static function getRecentWaterfallComments($count = 5) |
|
118 | + { |
|
119 | + $query = " |
|
120 | 120 | SELECT |
121 | 121 | `comment_meta`.`id`, |
122 | 122 | CONCAT('journal/', `log`.`alias`) AS `log_path`, |
@@ -156,8 +156,8 @@ discard block |
||
156 | 156 | `comment_meta`.`date` DESC |
157 | 157 | LIMIT {$count}"; |
158 | 158 | |
159 | - return self::run_query($query); |
|
160 | - } |
|
159 | + return self::run_query($query); |
|
160 | + } |
|
161 | 161 | |
162 | 162 | public static function getCommentsForURL($site, $path, $commenter = 0) |
163 | 163 | { |
@@ -43,9 +43,9 @@ discard block |
||
43 | 43 | return self::run_query($query); |
44 | 44 | } |
45 | 45 | |
46 | - public static function getMapList() |
|
47 | - { |
|
48 | - $query = " |
|
46 | + public static function getMapList() |
|
47 | + { |
|
48 | + $query = " |
|
49 | 49 | SELECT |
50 | 50 | `waterfall`.`name`, |
51 | 51 | `waterfall`.`alias`, |
@@ -71,8 +71,8 @@ discard block |
||
71 | 71 | ORDER BY |
72 | 72 | `waterfall`.`name`"; |
73 | 73 | |
74 | - return self::run_query($query); |
|
75 | - } |
|
74 | + return self::run_query($query); |
|
75 | + } |
|
76 | 76 | |
77 | 77 | public static function getListCount() |
78 | 78 | { |
@@ -92,9 +92,9 @@ discard block |
||
92 | 92 | return self::get_count($query); |
93 | 93 | } |
94 | 94 | |
95 | - public static function getNearbyList($waterfall) |
|
96 | - { |
|
97 | - $query = " |
|
95 | + public static function getNearbyList($waterfall) |
|
96 | + { |
|
97 | + $query = " |
|
98 | 98 | SELECT |
99 | 99 | `waterfall`.`name`, |
100 | 100 | `waterfall`.`alias` AS `alias`, |
@@ -114,14 +114,14 @@ discard block |
||
114 | 114 | `waterfall`.`name`, |
115 | 115 | `watercourse`.`name`"; |
116 | 116 | |
117 | - return self::run_query($query); |
|
118 | - } |
|
117 | + return self::run_query($query); |
|
118 | + } |
|
119 | 119 | |
120 | - public static function getByOldAlias($alias) |
|
121 | - { |
|
122 | - $alias = self::escape($alias); |
|
120 | + public static function getByOldAlias($alias) |
|
121 | + { |
|
122 | + $alias = self::escape($alias); |
|
123 | 123 | |
124 | - $query = " |
|
124 | + $query = " |
|
125 | 125 | SELECT |
126 | 126 | `waterfall`.`alias`, |
127 | 127 | `watercourse`.`alias` AS `watercourse_alias` |
@@ -134,8 +134,8 @@ discard block |
||
134 | 134 | `waterfall`.`is_public` = '1' |
135 | 135 | LIMIT 1"; |
136 | 136 | |
137 | - return self::run_row_query($query); |
|
138 | - } |
|
137 | + return self::run_row_query($query); |
|
138 | + } |
|
139 | 139 | |
140 | 140 | public static function getByAlias($watercourse, $waterfall) |
141 | 141 | { |
@@ -34,9 +34,9 @@ discard block |
||
34 | 34 | return self::run_query($query); |
35 | 35 | } |
36 | 36 | |
37 | - public static function getRecentList($total) |
|
38 | - { |
|
39 | - $query = " |
|
37 | + public static function getRecentList($total) |
|
38 | + { |
|
39 | + $query = " |
|
40 | 40 | SELECT |
41 | 41 | `log`.`title`, |
42 | 42 | `log`.`alias`, |
@@ -59,8 +59,8 @@ discard block |
||
59 | 59 | `log`.`date` DESC |
60 | 60 | LIMIT |
61 | 61 | {$total}"; |
62 | - return self::run_query($query); |
|
63 | - } |
|
62 | + return self::run_query($query); |
|
63 | + } |
|
64 | 64 | |
65 | 65 | public static function getListCount() |
66 | 66 | { |
@@ -178,11 +178,11 @@ discard block |
||
178 | 178 | return self::run_row_query($query); |
179 | 179 | } |
180 | 180 | |
181 | - public static function getByDate($date) |
|
182 | - { |
|
183 | - $date = self::escape($date); |
|
181 | + public static function getByDate($date) |
|
182 | + { |
|
183 | + $date = self::escape($date); |
|
184 | 184 | |
185 | - $query = " |
|
185 | + $query = " |
|
186 | 186 | SELECT |
187 | 187 | `log`.`alias` |
188 | 188 | FROM |
@@ -192,8 +192,8 @@ discard block |
||
192 | 192 | `log`.`is_public` = '1' |
193 | 193 | LIMIT 1"; |
194 | 194 | |
195 | - return self::run_row_query($query); |
|
196 | - } |
|
195 | + return self::run_row_query($query); |
|
196 | + } |
|
197 | 197 | |
198 | 198 | public static function getById($log) |
199 | 199 | { |
@@ -153,9 +153,9 @@ |
||
153 | 153 | return self::run_query($query); |
154 | 154 | } |
155 | 155 | |
156 | - public static function getParentWatercourse($watercourse) |
|
157 | - { |
|
158 | - } |
|
156 | + public static function getParentWatercourse($watercourse) |
|
157 | + { |
|
158 | + } |
|
159 | 159 | |
160 | 160 | public static function getLogCountForWatercourse($watercourse) |
161 | 161 | { |
@@ -5,29 +5,29 @@ |
||
5 | 5 | final class AboutController extends DefaultPageController |
6 | 6 | { |
7 | 7 | |
8 | - private static $TITLE = 'About the Website | Waterfalls of the Keweenaw'; |
|
9 | - private static $DESCRIPTION = 'A little bit about the website, the area, and the reason why someone would hunt down a hundred and fifty waterfalls in the Upper Peninsula.'; |
|
10 | - private static $KEYWORD_ARRAY = array( |
|
11 | - 'about', |
|
12 | - 'waterfalls', |
|
13 | - 'birthday trip', |
|
14 | - 'Jacob Emerick', |
|
15 | - ); |
|
8 | + private static $TITLE = 'About the Website | Waterfalls of the Keweenaw'; |
|
9 | + private static $DESCRIPTION = 'A little bit about the website, the area, and the reason why someone would hunt down a hundred and fifty waterfalls in the Upper Peninsula.'; |
|
10 | + private static $KEYWORD_ARRAY = array( |
|
11 | + 'about', |
|
12 | + 'waterfalls', |
|
13 | + 'birthday trip', |
|
14 | + 'Jacob Emerick', |
|
15 | + ); |
|
16 | 16 | |
17 | - protected function set_head_data() |
|
18 | - { |
|
19 | - parent::set_head_data(); |
|
17 | + protected function set_head_data() |
|
18 | + { |
|
19 | + parent::set_head_data(); |
|
20 | 20 | |
21 | - $this->set_title(self::$TITLE); |
|
22 | - $this->set_description(self::$DESCRIPTION); |
|
23 | - $this->set_keywords(self::$KEYWORD_ARRAY); |
|
24 | - } |
|
21 | + $this->set_title(self::$TITLE); |
|
22 | + $this->set_description(self::$DESCRIPTION); |
|
23 | + $this->set_keywords(self::$KEYWORD_ARRAY); |
|
24 | + } |
|
25 | 25 | |
26 | - protected function set_body_data($page_type = 'normal') |
|
27 | - { |
|
28 | - parent::set_body_data($page_type); |
|
26 | + protected function set_body_data($page_type = 'normal') |
|
27 | + { |
|
28 | + parent::set_body_data($page_type); |
|
29 | 29 | |
30 | - $this->set_body('view', 'About'); |
|
31 | - } |
|
30 | + $this->set_body('view', 'About'); |
|
31 | + } |
|
32 | 32 | |
33 | 33 | } |
@@ -1,84 +1,84 @@ |
||
1 | 1 | <? |
2 | 2 | |
3 | 3 | Loader::load('collector', array( |
4 | - 'comment/CommentCollector', |
|
5 | - 'image/PhotoCollector', |
|
6 | - 'waterfall/LogCollector', |
|
4 | + 'comment/CommentCollector', |
|
5 | + 'image/PhotoCollector', |
|
6 | + 'waterfall/LogCollector', |
|
7 | 7 | )); |
8 | 8 | Loader::load('controller', 'waterfalls/DefaultPageController'); |
9 | 9 | |
10 | 10 | final class HomeController extends DefaultPageController |
11 | 11 | { |
12 | 12 | |
13 | - private static $TITLE = 'Waterfalls of the Keweenaw | Stories and Tips from Jacob Emerick'; |
|
14 | - private static $DESCRIPTION = 'Stories, maps, and details about many of the waterfalls in the Upper Peninsula of Michigan, compiled by Jacob Emerick.'; |
|
15 | - private static $KEYWORD_ARRAY = array( |
|
16 | - 'waterfalls', |
|
17 | - 'keweenaw', |
|
18 | - 'upper peninsula', |
|
19 | - 'jacob emerick', |
|
20 | - ); |
|
13 | + private static $TITLE = 'Waterfalls of the Keweenaw | Stories and Tips from Jacob Emerick'; |
|
14 | + private static $DESCRIPTION = 'Stories, maps, and details about many of the waterfalls in the Upper Peninsula of Michigan, compiled by Jacob Emerick.'; |
|
15 | + private static $KEYWORD_ARRAY = array( |
|
16 | + 'waterfalls', |
|
17 | + 'keweenaw', |
|
18 | + 'upper peninsula', |
|
19 | + 'jacob emerick', |
|
20 | + ); |
|
21 | 21 | |
22 | - private static $BANNER_IMAGE = 2661; |
|
22 | + private static $BANNER_IMAGE = 2661; |
|
23 | 23 | |
24 | - protected function set_head_data() |
|
25 | - { |
|
26 | - parent::set_head_data(); |
|
24 | + protected function set_head_data() |
|
25 | + { |
|
26 | + parent::set_head_data(); |
|
27 | 27 | |
28 | - $this->set_title(self::$TITLE); |
|
29 | - $this->set_description(self::$DESCRIPTION); |
|
30 | - $this->set_keywords(self::$KEYWORD_ARRAY); |
|
31 | - } |
|
28 | + $this->set_title(self::$TITLE); |
|
29 | + $this->set_description(self::$DESCRIPTION); |
|
30 | + $this->set_keywords(self::$KEYWORD_ARRAY); |
|
31 | + } |
|
32 | 32 | |
33 | - protected function set_body_data($page_type = 'wide') |
|
34 | - { |
|
35 | - parent::set_body_data($page_type); |
|
33 | + protected function set_body_data($page_type = 'wide') |
|
34 | + { |
|
35 | + parent::set_body_data($page_type); |
|
36 | 36 | |
37 | - $photo = PhotoCollector::getRow(self::$BANNER_IMAGE); |
|
38 | - $photo_obj = (object) array( |
|
39 | - 'file' => "/photo/{$photo->category}/{$photo->name}-size-full.jpg", |
|
40 | - 'description' => $photo->description, |
|
41 | - ); |
|
42 | - $this->set_body('photo', $photo_obj); |
|
37 | + $photo = PhotoCollector::getRow(self::$BANNER_IMAGE); |
|
38 | + $photo_obj = (object) array( |
|
39 | + 'file' => "/photo/{$photo->category}/{$photo->name}-size-full.jpg", |
|
40 | + 'description' => $photo->description, |
|
41 | + ); |
|
42 | + $this->set_body('photo', $photo_obj); |
|
43 | 43 | |
44 | - $recent_log_container; |
|
45 | - $recent_logs = LogCollector::getRecentList(4); |
|
46 | - foreach ($recent_logs as $log) { |
|
47 | - $recent_log_container[] = (object) array( |
|
48 | - 'photo' => (object) array( |
|
49 | - 'file' => "/photo/{$log->photo_category}/{$log->photo}-size-thumb.jpg", |
|
50 | - 'description' => $log->photo_description, |
|
51 | - ), |
|
52 | - 'title' => $log->title, |
|
53 | - 'link' => "/journal/{$log->alias}/", |
|
54 | - 'date' => date('F j, Y', strtotime($log->publish_date)), |
|
55 | - ); |
|
56 | - } |
|
57 | - $this->set_body('logs', $recent_log_container); |
|
44 | + $recent_log_container; |
|
45 | + $recent_logs = LogCollector::getRecentList(4); |
|
46 | + foreach ($recent_logs as $log) { |
|
47 | + $recent_log_container[] = (object) array( |
|
48 | + 'photo' => (object) array( |
|
49 | + 'file' => "/photo/{$log->photo_category}/{$log->photo}-size-thumb.jpg", |
|
50 | + 'description' => $log->photo_description, |
|
51 | + ), |
|
52 | + 'title' => $log->title, |
|
53 | + 'link' => "/journal/{$log->alias}/", |
|
54 | + 'date' => date('F j, Y', strtotime($log->publish_date)), |
|
55 | + ); |
|
56 | + } |
|
57 | + $this->set_body('logs', $recent_log_container); |
|
58 | 58 | |
59 | - $recent_comments = CommentCollector::getRecentWaterfallComments(); |
|
59 | + $recent_comments = CommentCollector::getRecentWaterfallComments(); |
|
60 | 60 | |
61 | - $recent_comment_container = array(); |
|
62 | - foreach($recent_comments as $comment) { |
|
63 | - $body = $comment->body; |
|
64 | - $body = strip_tags($body); |
|
61 | + $recent_comment_container = array(); |
|
62 | + foreach($recent_comments as $comment) { |
|
63 | + $body = $comment->body; |
|
64 | + $body = strip_tags($body); |
|
65 | 65 | |
66 | - $comment_obj = new stdclass(); |
|
67 | - $comment_obj->description = Content::instance('SmartTrim', $body)->activate(50); |
|
68 | - $comment_obj->commenter = $comment->name; |
|
69 | - if (!empty($comment->log_path)) { |
|
70 | - $comment_obj->link = Loader::getRootURL() . "{$comment->log_path}/#comment-{$comment->id}"; |
|
71 | - $comment_obj->location = $comment->log_title; |
|
72 | - } else { |
|
73 | - $comment_obj->link = Loader::getRootURL() . "{$comment->waterfall_path}/#comment-{$comment->id}"; |
|
74 | - $comment_obj->location = $comment->waterfall_title; |
|
75 | - } |
|
66 | + $comment_obj = new stdclass(); |
|
67 | + $comment_obj->description = Content::instance('SmartTrim', $body)->activate(50); |
|
68 | + $comment_obj->commenter = $comment->name; |
|
69 | + if (!empty($comment->log_path)) { |
|
70 | + $comment_obj->link = Loader::getRootURL() . "{$comment->log_path}/#comment-{$comment->id}"; |
|
71 | + $comment_obj->location = $comment->log_title; |
|
72 | + } else { |
|
73 | + $comment_obj->link = Loader::getRootURL() . "{$comment->waterfall_path}/#comment-{$comment->id}"; |
|
74 | + $comment_obj->location = $comment->waterfall_title; |
|
75 | + } |
|
76 | 76 | |
77 | - $recent_comment_container[] = $comment_obj; |
|
78 | - } |
|
79 | - $this->set_body('comments', $recent_comment_container); |
|
77 | + $recent_comment_container[] = $comment_obj; |
|
78 | + } |
|
79 | + $this->set_body('comments', $recent_comment_container); |
|
80 | 80 | |
81 | - $this->set_body('view', 'Home'); |
|
82 | - } |
|
81 | + $this->set_body('view', 'Home'); |
|
82 | + } |
|
83 | 83 | |
84 | 84 | } |
85 | 85 | \ No newline at end of file |
@@ -95,9 +95,9 @@ discard block |
||
95 | 95 | abstract protected function get_initial_meta(); |
96 | 96 | abstract protected function get_subsequent_meta(); |
97 | 97 | |
98 | - final protected function set_body_data($page_type = 'normal') |
|
99 | - { |
|
100 | - parent::set_body_data($page_type); |
|
98 | + final protected function set_body_data($page_type = 'normal') |
|
99 | + { |
|
100 | + parent::set_body_data($page_type); |
|
101 | 101 | |
102 | 102 | $this->set_body('view', $this->get_list_view()); |
103 | 103 | $this->set_body('data', $this->get_list_body_data()); |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | { |
108 | 108 | $body_data_array = array(); |
109 | 109 | |
110 | - $body_data_array['introduction'] = $this->get_introduction(); |
|
110 | + $body_data_array['introduction'] = $this->get_introduction(); |
|
111 | 111 | $body_data_array['items'] = array_map(array($this, 'format_item'), $this->get_items()); |
112 | 112 | $body_data_array['navigation'] = array( |
113 | 113 | 'description' => $this->get_list_description(), |
@@ -6,62 +6,62 @@ |
||
6 | 6 | final class MapController extends DefaultPageController |
7 | 7 | { |
8 | 8 | |
9 | - private static $TITLE = 'Map of Upper Peninsula Waterfalls'; |
|
10 | - private static $DESCRIPTION = ''; |
|
11 | - private static $KEYWORD_ARRAY = array(); |
|
9 | + private static $TITLE = 'Map of Upper Peninsula Waterfalls'; |
|
10 | + private static $DESCRIPTION = ''; |
|
11 | + private static $KEYWORD_ARRAY = array(); |
|
12 | 12 | |
13 | - private static $HIDE_ON_INITIAL_LOAD_LIST = array( |
|
14 | - 'Lower Tahquamenon Falls', |
|
15 | - 'Rainbow Falls', |
|
16 | - 'Sandstone Falls', |
|
17 | - 'Upper Tahquamenon Falls', |
|
18 | - ); |
|
13 | + private static $HIDE_ON_INITIAL_LOAD_LIST = array( |
|
14 | + 'Lower Tahquamenon Falls', |
|
15 | + 'Rainbow Falls', |
|
16 | + 'Sandstone Falls', |
|
17 | + 'Upper Tahquamenon Falls', |
|
18 | + ); |
|
19 | 19 | |
20 | - public function __construct() |
|
21 | - { |
|
22 | - parent::__construct(); |
|
20 | + public function __construct() |
|
21 | + { |
|
22 | + parent::__construct(); |
|
23 | 23 | |
24 | - $this->add_js('https://maps.googleapis.com/maps/api/js?sensor=false'); |
|
25 | - $this->add_waterfall_js(); |
|
26 | - } |
|
24 | + $this->add_js('https://maps.googleapis.com/maps/api/js?sensor=false'); |
|
25 | + $this->add_waterfall_js(); |
|
26 | + } |
|
27 | 27 | |
28 | - protected function set_head_data() |
|
29 | - { |
|
30 | - parent::set_head_data(); |
|
28 | + protected function set_head_data() |
|
29 | + { |
|
30 | + parent::set_head_data(); |
|
31 | 31 | |
32 | - $this->set_title(self::$TITLE . ' | ' . self::$WEBSITE_TITLE); |
|
33 | - $this->set_description(self::$DESCRIPTION); |
|
34 | - $this->set_keywords(self::$KEYWORD_ARRAY); |
|
35 | - } |
|
32 | + $this->set_title(self::$TITLE . ' | ' . self::$WEBSITE_TITLE); |
|
33 | + $this->set_description(self::$DESCRIPTION); |
|
34 | + $this->set_keywords(self::$KEYWORD_ARRAY); |
|
35 | + } |
|
36 | 36 | |
37 | - protected function set_body_data($page_type = 'wide') |
|
38 | - { |
|
39 | - parent::set_body_data($page_type); |
|
37 | + protected function set_body_data($page_type = 'wide') |
|
38 | + { |
|
39 | + parent::set_body_data($page_type); |
|
40 | 40 | |
41 | - $this->set_head('full_page_map', true); |
|
42 | - $this->set_body('waterfall_list', $this->fetch_waterfall_list()); |
|
43 | - $this->set_body('view', 'Map'); |
|
44 | - } |
|
41 | + $this->set_head('full_page_map', true); |
|
42 | + $this->set_body('waterfall_list', $this->fetch_waterfall_list()); |
|
43 | + $this->set_body('view', 'Map'); |
|
44 | + } |
|
45 | 45 | |
46 | - private function fetch_waterfall_list() |
|
47 | - { |
|
48 | - $list = WaterfallCollector::getMapList(); |
|
49 | - array_walk($list, array($this, 'parse_waterfall')); |
|
50 | - return $list; |
|
51 | - } |
|
46 | + private function fetch_waterfall_list() |
|
47 | + { |
|
48 | + $list = WaterfallCollector::getMapList(); |
|
49 | + array_walk($list, array($this, 'parse_waterfall')); |
|
50 | + return $list; |
|
51 | + } |
|
52 | 52 | |
53 | - private function parse_waterfall(&$waterfall) |
|
54 | - { |
|
55 | - $waterfall = (object) array( |
|
56 | - 'name' => $waterfall->name, |
|
57 | - 'latitude' => $waterfall->latitude, |
|
58 | - 'longitude' => $waterfall->longitude, |
|
59 | - 'link' => "/{$waterfall->watercourse_alias}/{$waterfall->alias}/", |
|
60 | - 'image' => "/photo/{$waterfall->photo_category}/{$waterfall->photo}-size-medium.jpg", |
|
61 | - 'image_alt' => $waterfall->photo_description, |
|
62 | - 'watercourse' => $waterfall->watercourse, |
|
63 | - 'hide_on_initial_load' => (in_array($waterfall->name, self::$HIDE_ON_INITIAL_LOAD_LIST)), |
|
64 | - ); |
|
65 | - } |
|
53 | + private function parse_waterfall(&$waterfall) |
|
54 | + { |
|
55 | + $waterfall = (object) array( |
|
56 | + 'name' => $waterfall->name, |
|
57 | + 'latitude' => $waterfall->latitude, |
|
58 | + 'longitude' => $waterfall->longitude, |
|
59 | + 'link' => "/{$waterfall->watercourse_alias}/{$waterfall->alias}/", |
|
60 | + 'image' => "/photo/{$waterfall->photo_category}/{$waterfall->photo}-size-medium.jpg", |
|
61 | + 'image_alt' => $waterfall->photo_description, |
|
62 | + 'watercourse' => $waterfall->watercourse, |
|
63 | + 'hide_on_initial_load' => (in_array($waterfall->name, self::$HIDE_ON_INITIAL_LOAD_LIST)), |
|
64 | + ); |
|
65 | + } |
|
66 | 66 | |
67 | 67 | } |