@@ -97,6 +97,9 @@ |
||
97 | 97 | return $return; |
98 | 98 | } |
99 | 99 | |
100 | + /** |
|
101 | + * @param boolean $index |
|
102 | + */ |
|
100 | 103 | function f($index) { |
101 | 104 | return stripslashes($this->row[$index]); |
102 | 105 | } |
@@ -97,6 +97,9 @@ |
||
97 | 97 | return $return; |
98 | 98 | } |
99 | 99 | |
100 | + /** |
|
101 | + * @param boolean $index |
|
102 | + */ |
|
100 | 103 | function f($index) { |
101 | 104 | return stripslashes($this->row[$index]); |
102 | 105 | } |
@@ -61,9 +61,17 @@ discard block |
||
61 | 61 | return $path; |
62 | 62 | } |
63 | 63 | |
64 | + /** |
|
65 | + * @param integer $parent |
|
66 | + * @param integer $position |
|
67 | + */ |
|
64 | 68 | function _create($parent, $position) { |
65 | 69 | return $this->_move(0, $parent, $position); |
66 | 70 | } |
71 | + |
|
72 | + /** |
|
73 | + * @param integer $id |
|
74 | + */ |
|
67 | 75 | function _remove($id) { |
68 | 76 | if((int)$id === 1) { return false; } |
69 | 77 | $data = $this->_get_node($id); |
@@ -100,6 +108,10 @@ discard block |
||
100 | 108 | ); |
101 | 109 | return true; |
102 | 110 | } |
111 | + |
|
112 | + /** |
|
113 | + * @param integer $id |
|
114 | + */ |
|
103 | 115 | function _move($id, $ref_id, $position = 0, $is_copy = false) { |
104 | 116 | if((int)$ref_id === 0 || (int)$id === 1) { return false; } |
105 | 117 | $sql = array(); // Queries executed at the end |
@@ -238,6 +250,10 @@ discard block |
||
238 | 250 | if($is_copy) $this->_fix_copy($ind, $position); |
239 | 251 | return $node === false || $is_copy ? $ind : true; |
240 | 252 | } |
253 | + |
|
254 | + /** |
|
255 | + * @param integer $position |
|
256 | + */ |
|
241 | 257 | function _fix_copy($id, $position) { |
242 | 258 | $node = $this->_get_node($id); |
243 | 259 | $children = $this->_get_children($id, true); |
@@ -118,6 +118,10 @@ |
||
118 | 118 | |
119 | 119 | // Patch in multibyte support |
120 | 120 | if (!function_exists('mb_substr')) { |
121 | + |
|
122 | + /** |
|
123 | + * @param string $str |
|
124 | + */ |
|
121 | 125 | function mb_substr($str, $start, $len = '', $encoding="UTF-8"){ |
122 | 126 | $limit = strlen($str); |
123 | 127 |
@@ -52,7 +52,7 @@ |
||
52 | 52 | /** |
53 | 53 | * Throws an error message back to the user. This will stop all execution. |
54 | 54 | * |
55 | - * @param {String} $str Message to send back to user. |
|
55 | + * @param string $str Message to send back to user. |
|
56 | 56 | */ |
57 | 57 | function throwError($str) { |
58 | 58 | die('{"result":null,"id":null,"error":{"errstr":"' . addslashes($str) . '","errfile":"","errline":null,"errcontext":"","level":"FATAL"}}'); |
@@ -342,6 +342,9 @@ discard block |
||
342 | 342 | return null; |
343 | 343 | } |
344 | 344 | |
345 | + /** |
|
346 | + * @param integer $len |
|
347 | + */ |
|
345 | 348 | function skip($len) { |
346 | 349 | $this->_pos += $len; |
347 | 350 | } |
@@ -369,6 +372,9 @@ discard block |
||
369 | 372 | return $this->readValue($reader); |
370 | 373 | } |
371 | 374 | |
375 | + /** |
|
376 | + * @param Moxiecode_JSONReader $reader |
|
377 | + */ |
|
372 | 378 | function readValue(&$reader) { |
373 | 379 | $this->data = array(); |
374 | 380 | $this->parents = array(); |
@@ -554,6 +560,11 @@ discard block |
||
554 | 560 | return '"' . $input . '"'; |
555 | 561 | } |
556 | 562 | |
563 | + /** |
|
564 | + * @param string $utf8 |
|
565 | + * |
|
566 | + * @return string |
|
567 | + */ |
|
557 | 568 | function _utf82utf16($utf8) { |
558 | 569 | if (function_exists('mb_convert_encoding')) |
559 | 570 | return mb_convert_encoding($utf8, 'UTF-16', 'UTF-8'); |
@@ -86,6 +86,9 @@ discard block |
||
86 | 86 | return $this->_level; |
87 | 87 | } |
88 | 88 | |
89 | + /** |
|
90 | + * @param string $path |
|
91 | + */ |
|
89 | 92 | function setPath($path) { |
90 | 93 | $this->_path = $path; |
91 | 94 | } |
@@ -102,6 +105,9 @@ discard block |
||
102 | 105 | return $this->_filename; |
103 | 106 | } |
104 | 107 | |
108 | + /** |
|
109 | + * @param string $format |
|
110 | + */ |
|
105 | 111 | function setFormat($format) { |
106 | 112 | $this->_format = $format; |
107 | 113 | } |
@@ -110,6 +116,9 @@ discard block |
||
110 | 116 | return $this->_format; |
111 | 117 | } |
112 | 118 | |
119 | + /** |
|
120 | + * @param string $size |
|
121 | + */ |
|
113 | 122 | function setMaxSize($size) { |
114 | 123 | // Fix log max size |
115 | 124 | $logMaxSizeBytes = intval(preg_replace("/[^0-9]/", "", $size)); |
@@ -130,6 +139,9 @@ discard block |
||
130 | 139 | return $this->_maxSize; |
131 | 140 | } |
132 | 141 | |
142 | + /** |
|
143 | + * @param string $max_files |
|
144 | + */ |
|
133 | 145 | function setMaxFiles($max_files) { |
134 | 146 | $this->_maxFiles = $max_files; |
135 | 147 | } |
@@ -183,6 +195,10 @@ discard block |
||
183 | 195 | return $this->_level >= MC_LOGGER_FATAL; |
184 | 196 | } |
185 | 197 | |
198 | + /** |
|
199 | + * @param integer $level |
|
200 | + * @param string $message |
|
201 | + */ |
|
186 | 202 | function _logMsg($level, $message) { |
187 | 203 | $roll = false; |
188 | 204 |
@@ -83,7 +83,6 @@ discard block |
||
83 | 83 | /** |
84 | 84 | * Adds a file to the concatenation/compression process. |
85 | 85 | * |
86 | - * @param String $path Path to the file to include in the compressed package/output. |
|
87 | 86 | */ |
88 | 87 | public function &addFile($file) { |
89 | 88 | $this->files .= ($this->files ? "," : "") . $file; |
@@ -256,7 +255,7 @@ discard block |
||
256 | 255 | /** |
257 | 256 | * Renders a script tag that loads the TinyMCE script. |
258 | 257 | * |
259 | - * @param Array $settings Name/value array with settings for the script tag. |
|
258 | + * @param Array $tagSettings Name/value array with settings for the script tag. |
|
260 | 259 | * @param Bool $return The script tag is return instead of being output if true |
261 | 260 | * @return String the tag is returned if $return is true |
262 | 261 | */ |
@@ -252,7 +252,7 @@ discard block |
||
252 | 252 | /** |
253 | 253 | * Gets the combined configuration of all LeafAndMain subclasses required by the client app. |
254 | 254 | * |
255 | - * @return array |
|
255 | + * @return string |
|
256 | 256 | * |
257 | 257 | * WARNING: Experimental API |
258 | 258 | */ |
@@ -639,7 +639,7 @@ discard block |
||
639 | 639 | * |
640 | 640 | * @param string $url |
641 | 641 | * @param int $code |
642 | - * @return HTTPResponse|string |
|
642 | + * @return string|null |
|
643 | 643 | */ |
644 | 644 | public function redirect($url, $code=302) { |
645 | 645 | if($this->getRequest()->isAjax()) { |
@@ -917,7 +917,7 @@ discard block |
||
917 | 917 | * {@link SSViewer::get_templates_by_class()} |
918 | 918 | * |
919 | 919 | * @param string $suffix |
920 | - * @return array |
|
920 | + * @return string |
|
921 | 921 | */ |
922 | 922 | public function getTemplatesWithSuffix($suffix) { |
923 | 923 | $templates = SSViewer::get_templates_by_class(get_class($this), $suffix, __CLASS__); |
@@ -2000,7 +2000,7 @@ discard block |
||
2000 | 2000 | } |
2001 | 2001 | |
2002 | 2002 | /** |
2003 | - * @return String |
|
2003 | + * @return DBField |
|
2004 | 2004 | */ |
2005 | 2005 | public function Locale() { |
2006 | 2006 | return DBField::create_field('Locale', i18n::get_locale()); |