@@ -34,6 +34,9 @@ discard block |
||
34 | 34 | return self::run_query($query); |
35 | 35 | } |
36 | 36 | |
37 | + /** |
|
38 | + * @param integer $total |
|
39 | + */ |
|
37 | 40 | public static function getRecentList($total) |
38 | 41 | { |
39 | 42 | $query = " |
@@ -178,6 +181,9 @@ discard block |
||
178 | 181 | return self::run_row_query($query); |
179 | 182 | } |
180 | 183 | |
184 | + /** |
|
185 | + * @param string $date |
|
186 | + */ |
|
181 | 187 | public static function getByDate($date) |
182 | 188 | { |
183 | 189 | $date = self::escape($date); |
@@ -117,6 +117,9 @@ |
||
117 | 117 | return self::run_query($query); |
118 | 118 | } |
119 | 119 | |
120 | + /** |
|
121 | + * @param string $alias |
|
122 | + */ |
|
120 | 123 | public static function getByOldAlias($alias) |
121 | 124 | { |
122 | 125 | $alias = self::escape($alias); |
@@ -97,6 +97,9 @@ |
||
97 | 97 | return $tag_array; |
98 | 98 | } |
99 | 99 | |
100 | + /** |
|
101 | + * @param boolean $trim |
|
102 | + */ |
|
100 | 103 | final private function get_body_for_post($post, $trim) |
101 | 104 | { |
102 | 105 | $body = $post->body; |
@@ -204,6 +204,9 @@ discard block |
||
204 | 204 | exit; |
205 | 205 | } |
206 | 206 | |
207 | + /** |
|
208 | + * @param string $method |
|
209 | + */ |
|
207 | 210 | protected function set_header_method($method) |
208 | 211 | { |
209 | 212 | $this->headers = $method; |
@@ -214,6 +217,9 @@ discard block |
||
214 | 217 | $this->set_head('title', $value); |
215 | 218 | } |
216 | 219 | |
220 | + /** |
|
221 | + * @param string $value |
|
222 | + */ |
|
217 | 223 | protected function set_author($value) |
218 | 224 | { |
219 | 225 | $this->set_head('author', $value); |
@@ -229,26 +235,41 @@ discard block |
||
229 | 235 | $this->set_head('keywords', implode(', ', $array)); |
230 | 236 | } |
231 | 237 | |
238 | + /** |
|
239 | + * @param string $url |
|
240 | + */ |
|
232 | 241 | protected function set_canonical($url) |
233 | 242 | { |
234 | 243 | $this->set_head('canonical', $url); |
235 | 244 | } |
236 | 245 | |
246 | + /** |
|
247 | + * @param string $set |
|
248 | + */ |
|
237 | 249 | protected function set_head($set, $value) |
238 | 250 | { |
239 | 251 | $this->data_array['head'][$set] = $value; |
240 | 252 | } |
241 | 253 | |
254 | + /** |
|
255 | + * @param string $set |
|
256 | + */ |
|
242 | 257 | protected function set_body($set, $value) |
243 | 258 | { |
244 | 259 | $this->data_array['body'][$set] = $value; |
245 | 260 | } |
246 | 261 | |
262 | + /** |
|
263 | + * @param string $file |
|
264 | + */ |
|
247 | 265 | protected function add_css($file) |
248 | 266 | { |
249 | 267 | $this->css_array[] = $file; |
250 | 268 | } |
251 | 269 | |
270 | + /** |
|
271 | + * @param string $file |
|
272 | + */ |
|
252 | 273 | protected function add_js($file) |
253 | 274 | { |
254 | 275 | $this->js_array[] = $file; |
@@ -271,6 +292,9 @@ discard block |
||
271 | 292 | $this->set_head('js_link_array', $js_array); |
272 | 293 | } |
273 | 294 | |
295 | + /** |
|
296 | + * @param string $view |
|
297 | + */ |
|
274 | 298 | protected function set_body_view($view) |
275 | 299 | { |
276 | 300 | $this->body_view_array[] = $view; |
@@ -315,6 +339,10 @@ discard block |
||
315 | 339 | } |
316 | 340 | |
317 | 341 | private $comment_errors; |
342 | + |
|
343 | + /** |
|
344 | + * @param string $redirect_url |
|
345 | + */ |
|
318 | 346 | protected function handle_comment_submit($site_id, $path, $redirect_url, $page_title) |
319 | 347 | { |
320 | 348 | if(Request::hasPost() && Request::getPost('submit') == 'Submit Comment') |
@@ -38,6 +38,9 @@ |
||
38 | 38 | $this->entries[] = $entry; |
39 | 39 | } |
40 | 40 | |
41 | + /** |
|
42 | + * @param string $url |
|
43 | + */ |
|
41 | 44 | protected function disallow_for_all_robots($url = null) |
42 | 45 | { |
43 | 46 | $entry = new stdclass(); |
@@ -18,6 +18,9 @@ discard block |
||
18 | 18 | Debugger::hide(); |
19 | 19 | } |
20 | 20 | |
21 | + /** |
|
22 | + * @param string $title |
|
23 | + */ |
|
21 | 24 | final protected function setTitle($title) |
22 | 25 | { |
23 | 26 | $this->xml->channel->addChild('title', $title); |
@@ -30,11 +33,17 @@ discard block |
||
30 | 33 | $this->xml->channel->addChild('link', $url); |
31 | 34 | } |
32 | 35 | |
36 | + /** |
|
37 | + * @param string $description |
|
38 | + */ |
|
33 | 39 | final protected function setDescription($description) |
34 | 40 | { |
35 | 41 | $this->xml->channel->addChild('description', $description); |
36 | 42 | } |
37 | 43 | |
44 | + /** |
|
45 | + * @param string $url |
|
46 | + */ |
|
38 | 47 | final protected function setAtom($url) |
39 | 48 | { |
40 | 49 | $atom = $this->xml->channel->addChild('link', '', 'http://www.w3.org/2005/Atom'); |
@@ -76,6 +85,9 @@ discard block |
||
76 | 85 | $this->xml->channel->addChild('ttl', $ttl); |
77 | 86 | } |
78 | 87 | |
88 | + /** |
|
89 | + * @param string $pubDate |
|
90 | + */ |
|
79 | 91 | final protected function addItem($title, $link, $description, $category, $pubDate) |
80 | 92 | { |
81 | 93 | $item = $this->xml->channel->addChild('item'); |
@@ -83,6 +83,9 @@ |
||
83 | 83 | } |
84 | 84 | } |
85 | 85 | |
86 | + /** |
|
87 | + * @param string $changefreq |
|
88 | + */ |
|
86 | 89 | private function add_paginated_pages($post_count, $base_url, $changefreq, $rank) |
87 | 90 | { |
88 | 91 | switch($changefreq) |
@@ -64,6 +64,9 @@ |
||
64 | 64 | } |
65 | 65 | } |
66 | 66 | |
67 | + /** |
|
68 | + * @param string $changefreq |
|
69 | + */ |
|
67 | 70 | private function add_paginated_pages($posts, $base_url, $changefreq, $rank) |
68 | 71 | { |
69 | 72 | switch($changefreq) |
@@ -133,6 +133,10 @@ |
||
133 | 133 | $this->addURL('about/', date('Y-01-01'), self::$ABOUT_PAGE_CHANGEFREQ, self::$ABOUT_PAGE_RANK); |
134 | 134 | } |
135 | 135 | |
136 | + /** |
|
137 | + * @param integer $items_per_page |
|
138 | + * @param string $type |
|
139 | + */ |
|
136 | 140 | private function add_paginated_pages($count, $items_per_page, $base_url, $type) |
137 | 141 | { |
138 | 142 | switch($type) { |