@@ -1,218 +1,218 @@ |
||
1 | 1 | <? |
2 | 2 | |
3 | 3 | Loader::load('collector', array( |
4 | - 'image/AlbumCollector', |
|
5 | - 'waterfall/LogCollector')); |
|
4 | + 'image/AlbumCollector', |
|
5 | + 'waterfall/LogCollector')); |
|
6 | 6 | Loader::load('controller', 'waterfalls/DefaultPageController'); |
7 | 7 | |
8 | 8 | final class LogController extends DefaultPageController |
9 | 9 | { |
10 | 10 | |
11 | - private static $AUTHOR = 'Jacob Emerick'; |
|
12 | - private static $AUTHOR_URL = 'http://home.jacobemerick.com/'; |
|
13 | - private static $JOURNAL_DIRECTORY = 'journal'; |
|
14 | - |
|
15 | - private static $FULL_IMAGE_LINK = '/photo/%s/%s-size-standard.jpg'; |
|
16 | - private static $THUMB_IMAGE_NODE = '<img src="/photo/%s/%s-size-thumb.jpg" alt="%s" height="%s" width="%s" />'; |
|
17 | - private static $MEDIUM_IMAGE_NODE = '<img src="/photo/%s/%s-size-small.jpg" alt="%s" height="375" width="500" />'; |
|
18 | - |
|
19 | - private $log; |
|
11 | + private static $AUTHOR = 'Jacob Emerick'; |
|
12 | + private static $AUTHOR_URL = 'http://home.jacobemerick.com/'; |
|
13 | + private static $JOURNAL_DIRECTORY = 'journal'; |
|
14 | + |
|
15 | + private static $FULL_IMAGE_LINK = '/photo/%s/%s-size-standard.jpg'; |
|
16 | + private static $THUMB_IMAGE_NODE = '<img src="/photo/%s/%s-size-thumb.jpg" alt="%s" height="%s" width="%s" />'; |
|
17 | + private static $MEDIUM_IMAGE_NODE = '<img src="/photo/%s/%s-size-small.jpg" alt="%s" height="375" width="500" />'; |
|
18 | + |
|
19 | + private $log; |
|
20 | 20 | |
21 | - public function __construct() |
|
22 | - { |
|
23 | - parent::__construct(); |
|
24 | - |
|
25 | - $log_path = URLDecode::getPiece(2); |
|
26 | - |
|
27 | - $this->log = LogCollector::getByAlias($log_path); |
|
28 | - if(!$this->log) |
|
29 | - $this->eject(); |
|
30 | - |
|
31 | - $this->parent_navigation_item = 'journal'; |
|
32 | - |
|
33 | - $this->handle_comment_submit( |
|
34 | - self::$WATERFALL_SITE_ID, |
|
35 | - $this->log->alias, |
|
36 | - Loader::getRootUrl('waterfalls') . self::$JOURNAL_DIRECTORY . '/' . $this->log->alias . '/', |
|
37 | - $this->log->title); |
|
38 | - |
|
39 | - $this->add_waterfall_js(); |
|
40 | - } |
|
41 | - |
|
42 | - protected function set_head_data() |
|
43 | - { |
|
44 | - parent::set_head_data(); |
|
45 | - |
|
46 | - $this->set_title("{$this->log->title} | " . self::$WEBSITE_TITLE); |
|
47 | - $this->set_description($this->log->introduction); |
|
48 | - |
|
49 | - $keyword_array = array(); |
|
50 | - $tag_result = LogCollector::getTagListForLog($this->log->id); |
|
51 | - foreach($tag_result as $tag) |
|
52 | - { |
|
53 | - $keyword_array[] = $tag->name; |
|
54 | - } |
|
55 | - |
|
56 | - $this->set_keywords($keyword_array); |
|
57 | - } |
|
58 | - |
|
59 | - protected function set_body_data($page_type = 'normal') |
|
60 | - { |
|
61 | - parent::set_body_data($page_type); |
|
62 | - |
|
63 | - $this->set_body('view', 'Log'); |
|
64 | - |
|
65 | - $body_data = $this->get_formatted_log(); |
|
66 | - $body_data['comment_array'] = $this->get_comment_array(self::$WATERFALL_SITE_ID, $this->log->alias); |
|
67 | - $body_data['sidebar'] = $this->get_sidebar(); |
|
68 | - $body_data['series'] = $this->get_series(); |
|
69 | - $body_data['album'] = $this->get_album(); |
|
70 | - |
|
71 | - $this->set_body('data', $body_data); |
|
72 | - } |
|
73 | - |
|
74 | - private function get_formatted_log() |
|
75 | - { |
|
76 | - $formatted_log = array(); |
|
77 | - |
|
78 | - $formatted_log['introduction'] = $this->get_log_introduction($this->log); |
|
79 | - $formatted_log['title'] = $this->log->title; |
|
80 | - $formatted_log['url'] = Loader::getRootURL('waterfalls') . self::$JOURNAL_DIRECTORY . '/' . $this->log->alias . '/'; |
|
81 | - |
|
82 | - $formatted_log['body'] = $this->get_formatted_log_body(); |
|
83 | - |
|
84 | - return $formatted_log; |
|
85 | - } |
|
86 | - |
|
87 | - private function get_log_introduction($log) |
|
88 | - { |
|
89 | - if ($log->image_description == '') { |
|
90 | - Debugger::logMessage("No description for {$log->image_category}/{$log->image_name}"); |
|
91 | - } |
|
92 | - |
|
93 | - return array( |
|
94 | - 'title' => $log->title, |
|
95 | - 'url' => Loader::getRootURL('waterfalls') . self::$JOURNAL_DIRECTORY . '/' . $log->alias . '/', |
|
96 | - 'date' => $this->get_parsed_date($log->date), |
|
97 | - 'publish_date' => $this->get_parsed_date($log->publish_date), |
|
98 | - 'introduction' => $log->introduction, |
|
99 | - 'image' => sprintf( |
|
100 | - self::$MEDIUM_IMAGE_NODE, |
|
101 | - $log->image_category, |
|
102 | - $log->image_name, |
|
103 | - $log->image_description), |
|
104 | - 'author' => self::$AUTHOR, |
|
105 | - 'author_url' => self::$AUTHOR_URL, |
|
106 | - ); |
|
107 | - } |
|
108 | - |
|
109 | - // @todo - link things up |
|
110 | - private function get_formatted_log_body() |
|
111 | - { |
|
112 | - $body = $this->log->body; |
|
113 | - |
|
114 | - $body = Content::instance('FixPhoto', $body)->activate(false, 'standard'); |
|
115 | - $body = Content::instance('FixInternalLink', $body)->activate(); |
|
116 | - |
|
117 | - return $body; |
|
118 | - } |
|
119 | - |
|
120 | - private function get_series() |
|
121 | - { |
|
122 | - $series = array( |
|
123 | - 'previous' => array(), |
|
124 | - 'next' => array()); |
|
125 | - |
|
126 | - $previous_log = LogCollector::getPreviousLog($this->log->id); |
|
127 | - if($previous_log != false) |
|
128 | - { |
|
129 | - $series['previous'] = (object) array( |
|
130 | - 'path' => '/' . self::$JOURNAL_DIRECTORY . '/' . $previous_log->alias . '/', |
|
131 | - 'title' => $previous_log->title, |
|
132 | - 'date' => $previous_log->date); |
|
133 | - } |
|
134 | - |
|
135 | - $next_log = LogCollector::getNextLog($this->log->id); |
|
136 | - if($next_log != false) |
|
137 | - { |
|
138 | - $series['next'] = (object) array( |
|
139 | - 'path' => '/' . self::$JOURNAL_DIRECTORY . '/' . $next_log->alias . '/', |
|
140 | - 'title' => $next_log->title, |
|
141 | - 'date' => $next_log->date); |
|
142 | - } |
|
143 | - |
|
144 | - return $series; |
|
145 | - } |
|
146 | - |
|
147 | - private function get_sidebar() |
|
148 | - { |
|
149 | - $sidebar = array(); |
|
150 | - |
|
151 | - $sidebar['companion_list'] = array(); |
|
152 | - $companions = LogCollector::getCompanionListForLog($this->log->id); |
|
153 | - foreach($companions as $companion) |
|
154 | - { |
|
155 | - $sidebar['companion_list'][] = (object) array( |
|
156 | - 'title' => $companion->name, |
|
157 | - 'path' => "/companion/{$companion->alias}/"); |
|
158 | - } |
|
159 | - |
|
160 | - $sidebar['tag_list'] = array(); |
|
161 | - $tags = LogCollector::getTagListForLog($this->log->id); |
|
162 | - foreach($tags as $tag) |
|
163 | - { |
|
164 | - $sidebar['tag_list'][] = (object) array( |
|
165 | - 'title' => $tag->name, |
|
166 | - 'path' => "/journal/tag/{$tag->alias}/"); |
|
167 | - } |
|
168 | - |
|
169 | - $sidebar['waterfall_list'] = array(); |
|
170 | - $waterfalls = LogCollector::getWaterfallListForLog($this->log->id); |
|
171 | - foreach($waterfalls as $waterfall) |
|
172 | - { |
|
173 | - $sidebar['waterfall_list'][] = (object) array( |
|
174 | - 'title' => $waterfall->name, |
|
175 | - 'path' => "/{$waterfall->watercourse_alias}/{$waterfall->alias}/"); |
|
176 | - } |
|
177 | - |
|
178 | - return $sidebar; |
|
179 | - } |
|
180 | - |
|
181 | - private function get_album() |
|
182 | - { |
|
183 | - $album = array(); |
|
184 | - |
|
185 | - if($this->log->album == 0) |
|
186 | - return $album; |
|
187 | - |
|
188 | - $photo_list = AlbumCollector::getPhotoListForAlbum($this->log->album); |
|
189 | - foreach($photo_list as $photo) |
|
190 | - { |
|
191 | - $photo_array = array(); |
|
192 | - $photo_array['full_link'] = sprintf(self::$FULL_IMAGE_LINK, $photo->category, $photo->name); |
|
193 | - $photo_array['description'] = $photo->description; |
|
21 | + public function __construct() |
|
22 | + { |
|
23 | + parent::__construct(); |
|
24 | + |
|
25 | + $log_path = URLDecode::getPiece(2); |
|
26 | + |
|
27 | + $this->log = LogCollector::getByAlias($log_path); |
|
28 | + if(!$this->log) |
|
29 | + $this->eject(); |
|
30 | + |
|
31 | + $this->parent_navigation_item = 'journal'; |
|
32 | + |
|
33 | + $this->handle_comment_submit( |
|
34 | + self::$WATERFALL_SITE_ID, |
|
35 | + $this->log->alias, |
|
36 | + Loader::getRootUrl('waterfalls') . self::$JOURNAL_DIRECTORY . '/' . $this->log->alias . '/', |
|
37 | + $this->log->title); |
|
38 | + |
|
39 | + $this->add_waterfall_js(); |
|
40 | + } |
|
41 | + |
|
42 | + protected function set_head_data() |
|
43 | + { |
|
44 | + parent::set_head_data(); |
|
45 | + |
|
46 | + $this->set_title("{$this->log->title} | " . self::$WEBSITE_TITLE); |
|
47 | + $this->set_description($this->log->introduction); |
|
48 | + |
|
49 | + $keyword_array = array(); |
|
50 | + $tag_result = LogCollector::getTagListForLog($this->log->id); |
|
51 | + foreach($tag_result as $tag) |
|
52 | + { |
|
53 | + $keyword_array[] = $tag->name; |
|
54 | + } |
|
55 | + |
|
56 | + $this->set_keywords($keyword_array); |
|
57 | + } |
|
58 | + |
|
59 | + protected function set_body_data($page_type = 'normal') |
|
60 | + { |
|
61 | + parent::set_body_data($page_type); |
|
62 | + |
|
63 | + $this->set_body('view', 'Log'); |
|
64 | + |
|
65 | + $body_data = $this->get_formatted_log(); |
|
66 | + $body_data['comment_array'] = $this->get_comment_array(self::$WATERFALL_SITE_ID, $this->log->alias); |
|
67 | + $body_data['sidebar'] = $this->get_sidebar(); |
|
68 | + $body_data['series'] = $this->get_series(); |
|
69 | + $body_data['album'] = $this->get_album(); |
|
70 | + |
|
71 | + $this->set_body('data', $body_data); |
|
72 | + } |
|
73 | + |
|
74 | + private function get_formatted_log() |
|
75 | + { |
|
76 | + $formatted_log = array(); |
|
77 | + |
|
78 | + $formatted_log['introduction'] = $this->get_log_introduction($this->log); |
|
79 | + $formatted_log['title'] = $this->log->title; |
|
80 | + $formatted_log['url'] = Loader::getRootURL('waterfalls') . self::$JOURNAL_DIRECTORY . '/' . $this->log->alias . '/'; |
|
81 | + |
|
82 | + $formatted_log['body'] = $this->get_formatted_log_body(); |
|
83 | + |
|
84 | + return $formatted_log; |
|
85 | + } |
|
86 | + |
|
87 | + private function get_log_introduction($log) |
|
88 | + { |
|
89 | + if ($log->image_description == '') { |
|
90 | + Debugger::logMessage("No description for {$log->image_category}/{$log->image_name}"); |
|
91 | + } |
|
92 | + |
|
93 | + return array( |
|
94 | + 'title' => $log->title, |
|
95 | + 'url' => Loader::getRootURL('waterfalls') . self::$JOURNAL_DIRECTORY . '/' . $log->alias . '/', |
|
96 | + 'date' => $this->get_parsed_date($log->date), |
|
97 | + 'publish_date' => $this->get_parsed_date($log->publish_date), |
|
98 | + 'introduction' => $log->introduction, |
|
99 | + 'image' => sprintf( |
|
100 | + self::$MEDIUM_IMAGE_NODE, |
|
101 | + $log->image_category, |
|
102 | + $log->image_name, |
|
103 | + $log->image_description), |
|
104 | + 'author' => self::$AUTHOR, |
|
105 | + 'author_url' => self::$AUTHOR_URL, |
|
106 | + ); |
|
107 | + } |
|
108 | + |
|
109 | + // @todo - link things up |
|
110 | + private function get_formatted_log_body() |
|
111 | + { |
|
112 | + $body = $this->log->body; |
|
113 | + |
|
114 | + $body = Content::instance('FixPhoto', $body)->activate(false, 'standard'); |
|
115 | + $body = Content::instance('FixInternalLink', $body)->activate(); |
|
116 | + |
|
117 | + return $body; |
|
118 | + } |
|
119 | + |
|
120 | + private function get_series() |
|
121 | + { |
|
122 | + $series = array( |
|
123 | + 'previous' => array(), |
|
124 | + 'next' => array()); |
|
125 | + |
|
126 | + $previous_log = LogCollector::getPreviousLog($this->log->id); |
|
127 | + if($previous_log != false) |
|
128 | + { |
|
129 | + $series['previous'] = (object) array( |
|
130 | + 'path' => '/' . self::$JOURNAL_DIRECTORY . '/' . $previous_log->alias . '/', |
|
131 | + 'title' => $previous_log->title, |
|
132 | + 'date' => $previous_log->date); |
|
133 | + } |
|
134 | + |
|
135 | + $next_log = LogCollector::getNextLog($this->log->id); |
|
136 | + if($next_log != false) |
|
137 | + { |
|
138 | + $series['next'] = (object) array( |
|
139 | + 'path' => '/' . self::$JOURNAL_DIRECTORY . '/' . $next_log->alias . '/', |
|
140 | + 'title' => $next_log->title, |
|
141 | + 'date' => $next_log->date); |
|
142 | + } |
|
143 | + |
|
144 | + return $series; |
|
145 | + } |
|
146 | + |
|
147 | + private function get_sidebar() |
|
148 | + { |
|
149 | + $sidebar = array(); |
|
150 | + |
|
151 | + $sidebar['companion_list'] = array(); |
|
152 | + $companions = LogCollector::getCompanionListForLog($this->log->id); |
|
153 | + foreach($companions as $companion) |
|
154 | + { |
|
155 | + $sidebar['companion_list'][] = (object) array( |
|
156 | + 'title' => $companion->name, |
|
157 | + 'path' => "/companion/{$companion->alias}/"); |
|
158 | + } |
|
159 | + |
|
160 | + $sidebar['tag_list'] = array(); |
|
161 | + $tags = LogCollector::getTagListForLog($this->log->id); |
|
162 | + foreach($tags as $tag) |
|
163 | + { |
|
164 | + $sidebar['tag_list'][] = (object) array( |
|
165 | + 'title' => $tag->name, |
|
166 | + 'path' => "/journal/tag/{$tag->alias}/"); |
|
167 | + } |
|
168 | + |
|
169 | + $sidebar['waterfall_list'] = array(); |
|
170 | + $waterfalls = LogCollector::getWaterfallListForLog($this->log->id); |
|
171 | + foreach($waterfalls as $waterfall) |
|
172 | + { |
|
173 | + $sidebar['waterfall_list'][] = (object) array( |
|
174 | + 'title' => $waterfall->name, |
|
175 | + 'path' => "/{$waterfall->watercourse_alias}/{$waterfall->alias}/"); |
|
176 | + } |
|
177 | + |
|
178 | + return $sidebar; |
|
179 | + } |
|
180 | + |
|
181 | + private function get_album() |
|
182 | + { |
|
183 | + $album = array(); |
|
184 | + |
|
185 | + if($this->log->album == 0) |
|
186 | + return $album; |
|
187 | + |
|
188 | + $photo_list = AlbumCollector::getPhotoListForAlbum($this->log->album); |
|
189 | + foreach($photo_list as $photo) |
|
190 | + { |
|
191 | + $photo_array = array(); |
|
192 | + $photo_array['full_link'] = sprintf(self::$FULL_IMAGE_LINK, $photo->category, $photo->name); |
|
193 | + $photo_array['description'] = $photo->description; |
|
194 | 194 | |
195 | - if($photo->height < $photo->width) |
|
196 | - list($height, $width) = array(75, 100); |
|
197 | - else |
|
198 | - list($height, $width) = array(100, 75); |
|
195 | + if($photo->height < $photo->width) |
|
196 | + list($height, $width) = array(75, 100); |
|
197 | + else |
|
198 | + list($height, $width) = array(100, 75); |
|
199 | 199 | |
200 | - if ($photo->description == '') { |
|
201 | - Debugger::logMessage("No description for {$photo->category}/{$photo->name}"); |
|
202 | - } |
|
200 | + if ($photo->description == '') { |
|
201 | + Debugger::logMessage("No description for {$photo->category}/{$photo->name}"); |
|
202 | + } |
|
203 | 203 | |
204 | - $photo_array['image_node'] = sprintf( |
|
205 | - self::$THUMB_IMAGE_NODE, |
|
206 | - $photo->category, |
|
207 | - $photo->name, |
|
208 | - $photo->description, |
|
209 | - $height, |
|
210 | - $width); |
|
204 | + $photo_array['image_node'] = sprintf( |
|
205 | + self::$THUMB_IMAGE_NODE, |
|
206 | + $photo->category, |
|
207 | + $photo->name, |
|
208 | + $photo->description, |
|
209 | + $height, |
|
210 | + $width); |
|
211 | 211 | |
212 | - $album[] = (object) $photo_array; |
|
213 | - } |
|
212 | + $album[] = (object) $photo_array; |
|
213 | + } |
|
214 | 214 | |
215 | - return $album; |
|
216 | - } |
|
215 | + return $album; |
|
216 | + } |
|
217 | 217 | |
218 | 218 | } |
219 | 219 | \ No newline at end of file |
@@ -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 | } |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | |
11 | 11 | protected static $WATERFALL_SITE_ID = 5; |
12 | 12 | |
13 | - protected $parent_navigation_item = ''; |
|
13 | + protected $parent_navigation_item = ''; |
|
14 | 14 | |
15 | 15 | protected function set_head_data() |
16 | 16 | { |
@@ -19,46 +19,46 @@ discard block |
||
19 | 19 | $this->add_css('waterfall'); |
20 | 20 | } |
21 | 21 | |
22 | - protected function add_waterfall_js() |
|
23 | - { |
|
24 | - $this->add_js('jquery-1.10.2.min'); |
|
25 | - $this->add_js('imagelightbox.min'); |
|
26 | - $this->add_js('waterfall-overlay'); |
|
27 | - $this->add_js('waterfall-map'); |
|
28 | - } |
|
22 | + protected function add_waterfall_js() |
|
23 | + { |
|
24 | + $this->add_js('jquery-1.10.2.min'); |
|
25 | + $this->add_js('imagelightbox.min'); |
|
26 | + $this->add_js('waterfall-overlay'); |
|
27 | + $this->add_js('waterfall-map'); |
|
28 | + } |
|
29 | 29 | |
30 | 30 | protected function set_body_data($page_type = 'normal') |
31 | 31 | { |
32 | 32 | $this->set_body('activity_array', $this->get_recent_activity()); |
33 | 33 | |
34 | - $this->set_body('main_navigation', array( |
|
35 | - (object) array( |
|
36 | - 'uri' => '/falls/', |
|
37 | - 'anchor' => 'Falls', |
|
38 | - 'is_active' => $this->parent_navigation_item === 'falls', |
|
39 | - ), |
|
40 | - (object) array( |
|
41 | - 'uri' => '/map/', |
|
42 | - 'anchor' => 'Map', |
|
43 | - 'is_active' => $this->parent_navigation_item === 'map', |
|
44 | - ), |
|
45 | - (object) array( |
|
46 | - 'uri' => '/journal/', |
|
47 | - 'anchor' => 'Journal', |
|
48 | - 'is_active' => $this->parent_navigation_item === 'journal', |
|
49 | - ), |
|
50 | - (object) array( |
|
51 | - 'uri' => '/about/', |
|
52 | - 'anchor' => 'About', |
|
53 | - 'is_active' => $this->parent_navigation_item === 'about', |
|
54 | - ) |
|
55 | - )); |
|
34 | + $this->set_body('main_navigation', array( |
|
35 | + (object) array( |
|
36 | + 'uri' => '/falls/', |
|
37 | + 'anchor' => 'Falls', |
|
38 | + 'is_active' => $this->parent_navigation_item === 'falls', |
|
39 | + ), |
|
40 | + (object) array( |
|
41 | + 'uri' => '/map/', |
|
42 | + 'anchor' => 'Map', |
|
43 | + 'is_active' => $this->parent_navigation_item === 'map', |
|
44 | + ), |
|
45 | + (object) array( |
|
46 | + 'uri' => '/journal/', |
|
47 | + 'anchor' => 'Journal', |
|
48 | + 'is_active' => $this->parent_navigation_item === 'journal', |
|
49 | + ), |
|
50 | + (object) array( |
|
51 | + 'uri' => '/about/', |
|
52 | + 'anchor' => 'About', |
|
53 | + 'is_active' => $this->parent_navigation_item === 'about', |
|
54 | + ) |
|
55 | + )); |
|
56 | 56 | |
57 | - if ($page_type == 'wide') { |
|
58 | - $this->set_body_view('WidePage'); |
|
59 | - } else { |
|
60 | - $this->set_body_view('Page'); |
|
61 | - } |
|
62 | - } |
|
57 | + if ($page_type == 'wide') { |
|
58 | + $this->set_body_view('WidePage'); |
|
59 | + } else { |
|
60 | + $this->set_body_view('Page'); |
|
61 | + } |
|
62 | + } |
|
63 | 63 | |
64 | 64 | } |
@@ -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 | } |
@@ -57,10 +57,10 @@ |
||
57 | 57 | |
58 | 58 | final protected function setWebMaster($webmaster = '') |
59 | 59 | { |
60 | - if ($webmaster == '') { |
|
61 | - global $config; |
|
62 | - $webmaster = "{$config->admin_email} (Jacob Emerick)"; |
|
63 | - } |
|
60 | + if ($webmaster == '') { |
|
61 | + global $config; |
|
62 | + $webmaster = "{$config->admin_email} (Jacob Emerick)"; |
|
63 | + } |
|
64 | 64 | $this->xml->channel->addChild('webMaster', $webmaster); |
65 | 65 | } |
66 | 66 |
@@ -34,7 +34,7 @@ |
||
34 | 34 | { |
35 | 35 | $query = URLDecode::getPiece(2); |
36 | 36 | $query = urldecode($query); |
37 | - $query = str_replace('-', ' ', $query); |
|
37 | + $query = str_replace('-', ' ', $query); |
|
38 | 38 | |
39 | 39 | $this->query = $query; |
40 | 40 |
@@ -86,7 +86,7 @@ |
||
86 | 86 | Loader::load('collector', 'blog/TagCollector'); |
87 | 87 | |
88 | 88 | $tag_result = TagCollector::getTagsForPost($post->id); |
89 | - $tag_array = array(); |
|
89 | + $tag_array = array(); |
|
90 | 90 | foreach($tag_result as $tag) |
91 | 91 | { |
92 | 92 | $tag_object = new stdclass(); |