@@ -79,7 +79,7 @@ |
||
79 | 79 | /** |
80 | 80 | * @param string $sUrl |
81 | 81 | * |
82 | - * @return string|boolean The embed URL if id is valid, false otherwise. |
|
82 | + * @return false|string The embed URL if id is valid, false otherwise. |
|
83 | 83 | */ |
84 | 84 | public function getEmbedUrl($sUrl) |
85 | 85 | { |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | /** |
23 | 23 | * @param string $sUrl |
24 | 24 | * |
25 | - * @return string|boolean Returns the video embed URL if it was found, FALSE otherwise. |
|
25 | + * @return false|string Returns the video embed URL if it was found, FALSE otherwise. |
|
26 | 26 | */ |
27 | 27 | public function getVideo($sUrl) |
28 | 28 | { |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | /** |
62 | 62 | * @param string $sUrl |
63 | 63 | * |
64 | - * @return integer|boolean Returns the ID of the video if it was found, FALSE otherwise. |
|
64 | + * @return string|false Returns the ID of the video if it was found, FALSE otherwise. |
|
65 | 65 | */ |
66 | 66 | public function getVideoId($sUrl) |
67 | 67 | { |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | /** |
23 | 23 | * @param string $sUrl |
24 | 24 | * |
25 | - * @return string|boolean Returns the embed video URL if found, FALSE otherwise. |
|
25 | + * @return false|string Returns the embed video URL if found, FALSE otherwise. |
|
26 | 26 | */ |
27 | 27 | public function getVideo($sUrl) |
28 | 28 | { |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | /** |
127 | 127 | * @param string $sUrl |
128 | 128 | * |
129 | - * @return integer|boolean Returns the ID of the video if it was found, FALSE otherwise. |
|
129 | + * @return string|false Returns the ID of the video if it was found, FALSE otherwise. |
|
130 | 130 | */ |
131 | 131 | public function getVideoId($sUrl) |
132 | 132 | { |
@@ -139,7 +139,7 @@ discard block |
||
139 | 139 | * |
140 | 140 | * @param string $sUrl |
141 | 141 | * |
142 | - * @return boolean|string |
|
142 | + * @return false|string |
|
143 | 143 | */ |
144 | 144 | public function getEmbedUrl($sUrl) |
145 | 145 | { |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | /** |
23 | 23 | * @param string $sUrl |
24 | 24 | * |
25 | - * @return string|boolean Returns the video embed URL if it was found and is valid, FALSE otherwise. |
|
25 | + * @return false|string Returns the video embed URL if it was found and is valid, FALSE otherwise. |
|
26 | 26 | */ |
27 | 27 | public function getVideo($sUrl) |
28 | 28 | { |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | /** |
71 | 71 | * @param string $sUrl |
72 | 72 | * |
73 | - * @return integer|boolean Returns the ID of the video if it was found, FALSE otherwise. |
|
73 | + * @return string|false Returns the ID of the video if it was found, FALSE otherwise. |
|
74 | 74 | */ |
75 | 75 | public function getVideoId($sUrl) |
76 | 76 | { |
@@ -26,7 +26,7 @@ |
||
26 | 26 | /** |
27 | 27 | * @param string $sUrl |
28 | 28 | * |
29 | - * @return string|boolean Returns the embed video URL if found, FALSE otherwise. |
|
29 | + * @return false|string Returns the embed video URL if found, FALSE otherwise. |
|
30 | 30 | */ |
31 | 31 | public function getVideo($sUrl) |
32 | 32 | { |
@@ -347,7 +347,7 @@ |
||
347 | 347 | * @param string $sToFind |
348 | 348 | * @param string $sContents |
349 | 349 | * |
350 | - * @return boolean |
|
350 | + * @return integer |
|
351 | 351 | */ |
352 | 352 | protected function find($sToFind, $sContents) |
353 | 353 | { |
@@ -15,7 +15,7 @@ |
||
15 | 15 | /** |
16 | 16 | * Sets the Note Thumbnail. |
17 | 17 | * |
18 | - * @param object $oPost |
|
18 | + * @param \stdClass $oPost |
|
19 | 19 | * @param \PH7\NoteModel $oNoteModel |
20 | 20 | * @param \PH7\Framework\File\File $oFile |
21 | 21 | * @return void |
@@ -629,7 +629,7 @@ |
||
629 | 629 | * @param string $sModName Module Name. |
630 | 630 | * @param string $sStatus '1' = Enabled | '0' = Disabled (need to be string because in DB it is an "enum"). |
631 | 631 | * |
632 | - * @return mixed (integer | boolean) Returns the number of rows on success or FALSE on failure. |
|
632 | + * @return boolean (integer | boolean) Returns the number of rows on success or FALSE on failure. |
|
633 | 633 | */ |
634 | 634 | private function _updateMods(Db $oDb, $sModName, $sStatus) |
635 | 635 | { |
@@ -179,6 +179,13 @@ |
||
179 | 179 | } |
180 | 180 | } |
181 | 181 | |
182 | +/** |
|
183 | + * @param string $name |
|
184 | + * @param string $extra |
|
185 | + * @param string $separator |
|
186 | + * @param boolean $labels |
|
187 | + * @param boolean $label_ids |
|
188 | + */ |
|
182 | 189 | function smarty_function_html_checkboxes_output($name, $value, $output, $selected, $extra, $separator, $labels, |
183 | 190 | $label_ids, $escape = true) |
184 | 191 | { |