@@ -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) { |
@@ -24,6 +24,11 @@ |
||
24 | 24 | return Loader::getImagePath('photo', $path); |
25 | 25 | } |
26 | 26 | |
27 | + /** |
|
28 | + * @param string $string |
|
29 | + * @param boolean $is_absolute |
|
30 | + * @param string $size |
|
31 | + */ |
|
27 | 32 | private function get_thumb($string, $is_absolute, $size) |
28 | 33 | { |
29 | 34 | list($category, $file_name) = explode('/', $string); |
@@ -25,6 +25,9 @@ discard block |
||
25 | 25 | return; |
26 | 26 | } |
27 | 27 | |
28 | + /** |
|
29 | + * @param string $content |
|
30 | + */ |
|
28 | 31 | private function wrap_in_list($content) |
29 | 32 | { |
30 | 33 | $content_array = explode("\n", $content); |
@@ -44,6 +47,9 @@ discard block |
||
44 | 47 | return $content; |
45 | 48 | } |
46 | 49 | |
50 | + /** |
|
51 | + * @param string $type |
|
52 | + */ |
|
47 | 53 | private function highlight_code($content, $type) |
48 | 54 | { |
49 | 55 | switch($type) |
@@ -62,6 +62,9 @@ |
||
62 | 62 | $this->is_trimmed = true; |
63 | 63 | } |
64 | 64 | |
65 | + /** |
|
66 | + * @param string $content |
|
67 | + */ |
|
65 | 68 | private function trim_html_string($content, $length) |
66 | 69 | { |
67 | 70 | $content = preg_replace(self::$PHOTO_PLACEHOLDER_MATCH, '', $content); |
@@ -14,9 +14,20 @@ discard block |
||
14 | 14 | $this->class_new = $class_name; |
15 | 15 | } |
16 | 16 | |
17 | + /** |
|
18 | + * @return string |
|
19 | + */ |
|
17 | 20 | abstract protected function getName(); |
18 | 21 | abstract protected function getDuration(); |
22 | + |
|
23 | + /** |
|
24 | + * @return string|null |
|
25 | + */ |
|
19 | 26 | abstract protected function getDomain(); |
27 | + |
|
28 | + /** |
|
29 | + * @return string|null |
|
30 | + */ |
|
20 | 31 | abstract protected function getPath(); |
21 | 32 | |
22 | 33 | public function setValue($value) |
@@ -28,6 +39,9 @@ discard block |
||
28 | 39 | return $this; |
29 | 40 | } |
30 | 41 | |
42 | + /** |
|
43 | + * @return string|null |
|
44 | + */ |
|
31 | 45 | public function getValue() |
32 | 46 | { |
33 | 47 | if(!$this->is_loaded) |
@@ -118,6 +132,9 @@ discard block |
||
118 | 132 | return $set_cookie; |
119 | 133 | } |
120 | 134 | |
135 | + /** |
|
136 | + * @param string $class_name |
|
137 | + */ |
|
121 | 138 | public static function instance($class_name) |
122 | 139 | { |
123 | 140 | return Loader::loadNew('utility', "cookie/{$class_name}Cookie", (array) $class_name); |
@@ -7,6 +7,9 @@ |
||
7 | 7 | |
8 | 8 | abstract public function activate(); |
9 | 9 | |
10 | + /** |
|
11 | + * @param string $value |
|
12 | + */ |
|
10 | 13 | protected function error($value) |
11 | 14 | { |
12 | 15 | trigger_error("Cron failed: {$value}"); |
@@ -59,6 +59,9 @@ discard block |
||
59 | 59 | $this->add_posts($youtube_result, 'youtube'); |
60 | 60 | } |
61 | 61 | |
62 | + /** |
|
63 | + * @param string $type |
|
64 | + */ |
|
62 | 65 | private function remove_existing($result, $type) |
63 | 66 | { |
64 | 67 | foreach($result as $key => $row) |
@@ -70,6 +73,9 @@ discard block |
||
70 | 73 | return $result; |
71 | 74 | } |
72 | 75 | |
76 | + /** |
|
77 | + * @param string $type |
|
78 | + */ |
|
73 | 79 | private function add_posts($result, $type) |
74 | 80 | { |
75 | 81 | foreach($result as $row) |
@@ -239,6 +239,9 @@ |
||
239 | 239 | return $text; |
240 | 240 | } |
241 | 241 | |
242 | + /** |
|
243 | + * @param string $type |
|
244 | + */ |
|
242 | 245 | private function get_replace_text($entity_type, $entity, $type) |
243 | 246 | { |
244 | 247 | switch($entity_type) |
@@ -28,6 +28,9 @@ |
||
28 | 28 | return self::$instance; |
29 | 29 | } |
30 | 30 | |
31 | + /** |
|
32 | + * @param string $message |
|
33 | + */ |
|
31 | 34 | public static function log($message) |
32 | 35 | { |
33 | 36 | self::instance()->console->logError('Gah, this is using Debugger::log()!'); |