@@ -70,6 +70,9 @@ discard block |
||
70 | 70 | var $module; |
71 | 71 | var $massUpdateData = ''; |
72 | 72 | |
73 | + /** |
|
74 | + * @param string $module |
|
75 | + */ |
|
73 | 76 | function PopupSmarty($seed, $module){ |
74 | 77 | parent::ListViewSmarty(); |
75 | 78 | $this->th = new TemplateHandler(); |
@@ -108,6 +111,7 @@ discard block |
||
108 | 111 | * @param file file Template file to use |
109 | 112 | * @param data array from ListViewData |
110 | 113 | * @param html_var string the corresponding html var in xtpl per row |
114 | + * @param string $htmlVar |
|
111 | 115 | * |
112 | 116 | */ |
113 | 117 | function process($file, $data, $htmlVar) { |
@@ -213,6 +213,9 @@ discard block |
||
213 | 213 | |
214 | 214 | /* Mailhide related code */ |
215 | 215 | |
216 | +/** |
|
217 | + * @param string $ky |
|
218 | + */ |
|
216 | 219 | function _recaptcha_aes_encrypt($val,$ky) { |
217 | 220 | if (! function_exists ("mcrypt_encrypt")) { |
218 | 221 | die ("To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed."); |
@@ -224,6 +227,9 @@ discard block |
||
224 | 227 | } |
225 | 228 | |
226 | 229 | |
230 | +/** |
|
231 | + * @param null|string $x |
|
232 | + */ |
|
227 | 233 | function _recaptcha_mailhide_urlbase64 ($x) { |
228 | 234 | return strtr(base64_encode ($x), '+/', '-_'); |
229 | 235 | } |
@@ -44,6 +44,9 @@ |
||
44 | 44 | |
45 | 45 | private $soapServer; |
46 | 46 | |
47 | +/** |
|
48 | + * @param string $module |
|
49 | + */ |
|
47 | 50 | function SoapResourceObserver($module) { |
48 | 51 | parent::ResourceObserver($module); |
49 | 52 | } |
@@ -631,6 +631,7 @@ |
||
631 | 631 | * |
632 | 632 | * @param bool $header display this with headers |
633 | 633 | * @param bool $return echo or return the html |
634 | + * @param ListViewSmarty $lv |
|
634 | 635 | * |
635 | 636 | * @return string html of contents |
636 | 637 | */ |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | * Get all global or section variable names. |
190 | 190 | * |
191 | 191 | * @param string $file_name config file to get info for |
192 | - * @param string $section_name (optional) section to get info for |
|
192 | + * @param string $section (optional) section to get info for |
|
193 | 193 | * @return array an array of variables names from the specified file/section |
194 | 194 | */ |
195 | 195 | function get_var_names($file_name, $section = NULL) |
@@ -342,7 +342,7 @@ discard block |
||
342 | 342 | /** |
343 | 343 | * @param array &$container |
344 | 344 | * @param string $var_name |
345 | - * @param mixed $var_value |
|
345 | + * @param string $var_value |
|
346 | 346 | * @param boolean $booleanize determines whether $var_value is converted to |
347 | 347 | * to true/false |
348 | 348 | */ |
@@ -8,8 +8,7 @@ |
||
8 | 8 | /** |
9 | 9 | * assemble filepath of requested plugin |
10 | 10 | * |
11 | - * @param string $type |
|
12 | - * @param string $name |
|
11 | + * @param Smarty $smarty |
|
13 | 12 | * @return string|false |
14 | 13 | */ |
15 | 14 | function smarty_core_assemble_plugin_filepath($params, &$smarty) |
@@ -9,8 +9,6 @@ |
||
9 | 9 | * Retrieves PHP script resource |
10 | 10 | * |
11 | 11 | * sets $php_resource to the returned resource |
12 | - * @param string $resource |
|
13 | - * @param string $resource_type |
|
14 | 12 | * @param $php_resource |
15 | 13 | * @return boolean |
16 | 14 | */ |
@@ -8,7 +8,7 @@ |
||
8 | 8 | /** |
9 | 9 | * Replace cached inserts with the actual results |
10 | 10 | * |
11 | - * @param string $results |
|
11 | + * @param Smarty $smarty |
|
12 | 12 | * @return string |
13 | 13 | */ |
14 | 14 | function smarty_core_process_cached_inserts($params, &$smarty) |
@@ -9,8 +9,7 @@ |
||
9 | 9 | * Replace nocache-tags by results of the corresponding non-cacheable |
10 | 10 | * functions and return it |
11 | 11 | * |
12 | - * @param string $compiled_tpl |
|
13 | - * @param string $cached_source |
|
12 | + * @param Smarty $smarty |
|
14 | 13 | * @return string |
15 | 14 | */ |
16 | 15 |