@@ -188,7 +188,7 @@ discard block |
||
188 | 188 | /** |
189 | 189 | * Set the value |
190 | 190 | * |
191 | - * @param $value int |
|
191 | + * @param integer $value int |
|
192 | 192 | */ |
193 | 193 | function setValue($value) |
194 | 194 | { |
@@ -207,7 +207,7 @@ discard block |
||
207 | 207 | /** |
208 | 208 | * Set the min value |
209 | 209 | * |
210 | - * @param $min int |
|
210 | + * @param integer $min int |
|
211 | 211 | */ |
212 | 212 | function setMin($min) |
213 | 213 | { |
@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | /** |
226 | 226 | * Set the max value - must be more great then min |
227 | 227 | * |
228 | - * @param $max int |
|
228 | + * @param integer $max int |
|
229 | 229 | */ |
230 | 230 | function setMax($max) |
231 | 231 | { |
@@ -246,6 +246,7 @@ discard block |
||
246 | 246 | * must be " > 0 " |
247 | 247 | * |
248 | 248 | * @param $value int |
249 | + * @param integer $smallIncrement |
|
249 | 250 | */ |
250 | 251 | function setSmallIncrement($smallIncrement) |
251 | 252 | { |
@@ -265,7 +266,7 @@ discard block |
||
265 | 266 | /** |
266 | 267 | * Set the large increment when click a long time on up down nutton |
267 | 268 | * |
268 | - * @param $largeIncrement int |
|
269 | + * @param integer $largeIncrement int |
|
269 | 270 | */ |
270 | 271 | function setLargeIncrement($largeIncrement) |
271 | 272 | { |
@@ -286,7 +287,7 @@ discard block |
||
286 | 287 | * Set the size in nb car of the input text for the value |
287 | 288 | * must be 2 car min |
288 | 289 | * |
289 | - * @param $size mixed |
|
290 | + * @param integer $size mixed |
|
290 | 291 | */ |
291 | 292 | function setSize($size) |
292 | 293 | { |
@@ -305,7 +306,7 @@ discard block |
||
305 | 306 | /** |
306 | 307 | * Set the shortname of the folder images |
307 | 308 | * |
308 | - * @param $folder string |
|
309 | + * @param string $folder string |
|
309 | 310 | */ |
310 | 311 | function setImgFolder($folder) |
311 | 312 | { |
@@ -323,7 +324,7 @@ discard block |
||
323 | 324 | /** |
324 | 325 | * Set the label of unites between value and buttons |
325 | 326 | * |
326 | - * @param $unite string |
|
327 | + * @param string $unite string |
|
327 | 328 | */ |
328 | 329 | function setUnite($unite) |
329 | 330 | { |
@@ -341,7 +342,7 @@ discard block |
||
341 | 342 | /** |
342 | 343 | * Set the style CSS of the text |
343 | 344 | * |
344 | - * @param $style string |
|
345 | + * @param string $style string |
|
345 | 346 | */ |
346 | 347 | function setStyleText($style) |
347 | 348 | { |
@@ -359,7 +360,7 @@ discard block |
||
359 | 360 | /** |
360 | 361 | * Set the style CSS of the frame |
361 | 362 | * |
362 | - * @param $style string |
|
363 | + * @param string $style string |
|
363 | 364 | */ |
364 | 365 | function setStyleBordure($style) |
365 | 366 | { |
@@ -377,7 +378,7 @@ discard block |
||
377 | 378 | /** |
378 | 379 | * Set MinMaxVisible : show the button to go min and max value |
379 | 380 | * |
380 | - * @param $visible bool |
|
381 | + * @param boolean $visible bool |
|
381 | 382 | */ |
382 | 383 | function setMinMaxVisible($visible) |
383 | 384 | { |
@@ -485,6 +486,10 @@ discard block |
||
485 | 486 | /******************************************************************** |
486 | 487 | * |
487 | 488 | *********************************************************************/ |
489 | +/** |
|
490 | + * @param string $attribut |
|
491 | + * @param string $value |
|
492 | + */ |
|
488 | 493 | function htmlAddAttribut($attribut, $value, $default = ''){ |
489 | 494 | |
490 | 495 | if ($value == ''){$value = $default;} |
@@ -155,11 +155,11 @@ discard block |
||
155 | 155 | * |
156 | 156 | */ |
157 | 157 | function XoopsFormSpin($caption, $name, $value = 0, |
158 | - $min = 0, $max=100, |
|
159 | - $smallIncrement = 1, $largeIncrement = 10, |
|
160 | - $size = 5, $unite='', $imgFolder='default', |
|
161 | - $styleText = '', $styleBordure = '', |
|
162 | - $minMaxVisible = true) |
|
158 | + $min = 0, $max=100, |
|
159 | + $smallIncrement = 1, $largeIncrement = 10, |
|
160 | + $size = 5, $unite='', $imgFolder='default', |
|
161 | + $styleText = '', $styleBordure = '', |
|
162 | + $minMaxVisible = true) |
|
163 | 163 | { |
164 | 164 | $this->setName($name); |
165 | 165 | $this->setCaption($caption); |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | */ |
193 | 193 | function setValue($value) |
194 | 194 | { |
195 | - $this->_value = $value; |
|
195 | + $this->_value = $value; |
|
196 | 196 | } |
197 | 197 | |
198 | 198 | /*-----------------------------------------------------------------*/ |
@@ -392,83 +392,83 @@ discard block |
||
392 | 392 | */ |
393 | 393 | function render() |
394 | 394 | { |
395 | - $sSpinFolder = $this->getFolder(); |
|
396 | - $sFolderImg = "{$sSpinFolder}/images/{$this->getImgFolder()}/"; |
|
395 | + $sSpinFolder = $this->getFolder(); |
|
396 | + $sFolderImg = "{$sSpinFolder}/images/{$this->getImgFolder()}/"; |
|
397 | 397 | |
398 | 398 | |
399 | - $prefixe = $this->getName(); |
|
400 | - $prefixe2 = 'spin'.$prefixe; |
|
399 | + $prefixe = $this->getName(); |
|
400 | + $prefixe2 = 'spin'.$prefixe; |
|
401 | 401 | |
402 | - $smallIncrement = $this->getSmallIncrement(); |
|
403 | - $largeIncrement = $this->getLargeIncrement(); |
|
402 | + $smallIncrement = $this->getSmallIncrement(); |
|
403 | + $largeIncrement = $this->getLargeIncrement(); |
|
404 | 404 | |
405 | - /*----------------------------------------------*/ |
|
406 | - $delai = 200; |
|
407 | - $onMouseDown1 = "spinStart(\"{$prefixe}\", \"{$prefixe2}\", {$smallIncrement}, {$largeIncrement}, {$delai}, \"{$sFolderImg}spinUp1.gif\");"; |
|
408 | - $onMouseDown2 = "spinStart(\"{$prefixe}\", \"{$prefixe2}\", -{$smallIncrement}, -{$largeIncrement}, {$delai}, \"{$sFolderImg}spinDown1.gif\");"; |
|
409 | - |
|
410 | - $onMouseUp = "spinStop();"; |
|
411 | - //---------------------------------------------------------------- |
|
412 | - $styleBordure = $this->htmlAddAttribut ('style', $this->getStyleBordure()); |
|
413 | - $styleText = $this->htmlAddAttribut ('style', $this->getStyleText()); |
|
414 | - $styleArrow = "style=\"display: table-cell;vertical-align: middle; text-align: center; line-height: 100%; font-size: 7 pt; margin-top: 0; margin-bottom: 0; padding: 0\""; |
|
415 | - //---------------------------------------------------------------- |
|
416 | - $t = array(); |
|
405 | + /*----------------------------------------------*/ |
|
406 | + $delai = 200; |
|
407 | + $onMouseDown1 = "spinStart(\"{$prefixe}\", \"{$prefixe2}\", {$smallIncrement}, {$largeIncrement}, {$delai}, \"{$sFolderImg}spinUp1.gif\");"; |
|
408 | + $onMouseDown2 = "spinStart(\"{$prefixe}\", \"{$prefixe2}\", -{$smallIncrement}, -{$largeIncrement}, {$delai}, \"{$sFolderImg}spinDown1.gif\");"; |
|
409 | + |
|
410 | + $onMouseUp = "spinStop();"; |
|
411 | + //---------------------------------------------------------------- |
|
412 | + $styleBordure = $this->htmlAddAttribut ('style', $this->getStyleBordure()); |
|
413 | + $styleText = $this->htmlAddAttribut ('style', $this->getStyleText()); |
|
414 | + $styleArrow = "style=\"display: table-cell;vertical-align: middle; text-align: center; line-height: 100%; font-size: 7 pt; margin-top: 0; margin-bottom: 0; padding: 0\""; |
|
415 | + //---------------------------------------------------------------- |
|
416 | + $t = array(); |
|
417 | 417 | |
418 | 418 | |
419 | - if ($this->_loadJS) { |
|
419 | + if ($this->_loadJS) { |
|
420 | 420 | $js = $sSpinFolder . "/js/spin.js"; |
421 | 421 | $t[] = "<script src='{$js}' type='text/javascript'></script>"; |
422 | - } |
|
422 | + } |
|
423 | 423 | |
424 | - $t[] = "<div STYLE='width:50px'>"; |
|
425 | - //$t[] = "<table border='0' width='8%' cellpadding='0' cellspacing='0'>"; |
|
426 | - $t[] = "<table border='0' width='8%' cellpadding='0' cellspacing='0' {$styleBordure}>"; |
|
427 | - $t[] = " <tr>"; |
|
428 | - //$t[] = " <td width='60%'>{$Caption}</td>"; |
|
429 | - $t[] = " <td width='60%'>"; |
|
430 | - $t[] = " <INPUT TYPE='hidden' NAME='{$prefixe2}_min' VALUE='{$this->getMin()}'>"; |
|
431 | - $t[] = " <INPUT TYPE='hidden' NAME='{$prefixe2}_max' VALUE='{$this->getMax()}'>"; |
|
432 | - $t[] = " <INPUT TYPE='hidden' NAME='{$prefixe2}_smallIncrement' VALUE='{$this->_smallIncrement}' style='text-align: right'>"; |
|
433 | - $t[] = " <input type='text' name='{$prefixe}' size='{$this->GetSize()}' value='{$this->getValue()}' {$styleText}>"; |
|
434 | - $t[] = " </td>"; |
|
424 | + $t[] = "<div STYLE='width:50px'>"; |
|
425 | + //$t[] = "<table border='0' width='8%' cellpadding='0' cellspacing='0'>"; |
|
426 | + $t[] = "<table border='0' width='8%' cellpadding='0' cellspacing='0' {$styleBordure}>"; |
|
427 | + $t[] = " <tr>"; |
|
428 | + //$t[] = " <td width='60%'>{$Caption}</td>"; |
|
429 | + $t[] = " <td width='60%'>"; |
|
430 | + $t[] = " <INPUT TYPE='hidden' NAME='{$prefixe2}_min' VALUE='{$this->getMin()}'>"; |
|
431 | + $t[] = " <INPUT TYPE='hidden' NAME='{$prefixe2}_max' VALUE='{$this->getMax()}'>"; |
|
432 | + $t[] = " <INPUT TYPE='hidden' NAME='{$prefixe2}_smallIncrement' VALUE='{$this->_smallIncrement}' style='text-align: right'>"; |
|
433 | + $t[] = " <input type='text' name='{$prefixe}' size='{$this->GetSize()}' value='{$this->getValue()}' {$styleText}>"; |
|
434 | + $t[] = " </td>"; |
|
435 | 435 | |
436 | - $unite = $this->getUnite(); |
|
437 | - if ($unite <> ''){ |
|
436 | + $unite = $this->getUnite(); |
|
437 | + if ($unite <> ''){ |
|
438 | 438 | $t[] = " <td style='display: table-cell;vertical-align: middle; '> {$unite} </td>"; |
439 | - } |
|
440 | - //------------------------------------------------------- |
|
441 | - if ($this->getMinMaxVisible()){ |
|
439 | + } |
|
440 | + //------------------------------------------------------- |
|
441 | + if ($this->getMinMaxVisible()){ |
|
442 | 442 | $onMouseDownMin = "spinSetValue(\"{$prefixe}\", \"{$prefixe2}\", \"Min\", {$this->getMin()}, {$delai}, \"{$sFolderImg}spinMin1.gif\");"; |
443 | 443 | $t[] = " <td width='63%' align='center' {$styleArrow}>"; |
444 | 444 | $t[] = " <img border='0' name='{$prefixe2}_imgMin' src='{$sFolderImg}spinMin0.gif' onmousedown='{$onMouseDownMin}'><br>"; |
445 | 445 | $t[] = " </td>"; |
446 | - } |
|
447 | - //------------------------------------------------------- |
|
448 | - $t[] = " <td width='63%' align='center' {$styleArrow}>"; |
|
446 | + } |
|
447 | + //------------------------------------------------------- |
|
448 | + $t[] = " <td width='63%' align='center' {$styleArrow}>"; |
|
449 | 449 | |
450 | - $t[] = " <img border='0' name='{$prefixe2}_img0' src='{$sFolderImg}spinUp0.gif' onmousedown='{$onMouseDown1}' onmouseup='{$onMouseUp}' onmouseout='{$onMouseUp}'><br>"; |
|
451 | - $t[] = " <img border='0' name='{$prefixe2}_img1' src='{$sFolderImg}spinDown0.gif' onmousedown='{$onMouseDown2}' onmouseup='{$onMouseUp}' onmouseout='{$onMouseUp}'>"; |
|
450 | + $t[] = " <img border='0' name='{$prefixe2}_img0' src='{$sFolderImg}spinUp0.gif' onmousedown='{$onMouseDown1}' onmouseup='{$onMouseUp}' onmouseout='{$onMouseUp}'><br>"; |
|
451 | + $t[] = " <img border='0' name='{$prefixe2}_img1' src='{$sFolderImg}spinDown0.gif' onmousedown='{$onMouseDown2}' onmouseup='{$onMouseUp}' onmouseout='{$onMouseUp}'>"; |
|
452 | 452 | |
453 | - $t[] = " </td>"; |
|
453 | + $t[] = " </td>"; |
|
454 | 454 | |
455 | - //------------------------------------------------------- |
|
456 | - if ($this->getMinMaxVisible()){ |
|
455 | + //------------------------------------------------------- |
|
456 | + if ($this->getMinMaxVisible()){ |
|
457 | 457 | $onMouseDownMax = "spinSetValue(\"{$prefixe}\", \"{$prefixe2}\", \"Max\", {$this->getMax()}, {$delai}, \"{$sFolderImg}spinMax1.gif\");"; |
458 | 458 | $t[] = " <td width='63%' align='center' {$styleArrow}>"; |
459 | 459 | $t[] = " <img border='0' name='{$prefixe2}_imgMax' src='{$sFolderImg}spinMax0.gif' onmousedown='{$onMouseDownMax}'><br>"; |
460 | 460 | $t[] = " </td>"; |
461 | - } |
|
462 | - //------------------------------------------------------- |
|
461 | + } |
|
462 | + //------------------------------------------------------- |
|
463 | 463 | |
464 | 464 | |
465 | - $t[] = " </tr>"; |
|
466 | - $t[] = "</table>"."\n"; |
|
467 | - $t[] = "</div>"; |
|
468 | - //------------------------------------------- |
|
469 | - $html = implode ("\n", $t); |
|
465 | + $t[] = " </tr>"; |
|
466 | + $t[] = "</table>"."\n"; |
|
467 | + $t[] = "</div>"; |
|
468 | + //------------------------------------------- |
|
469 | + $html = implode ("\n", $t); |
|
470 | 470 | |
471 | - return $html; |
|
471 | + return $html; |
|
472 | 472 | |
473 | 473 | } |
474 | 474 | |
@@ -487,17 +487,17 @@ discard block |
||
487 | 487 | *********************************************************************/ |
488 | 488 | function htmlAddAttribut($attribut, $value, $default = ''){ |
489 | 489 | |
490 | - if ($value == ''){$value = $default;} |
|
490 | + if ($value == ''){$value = $default;} |
|
491 | 491 | |
492 | - if ($value <> ""){ |
|
492 | + if ($value <> ""){ |
|
493 | 493 | if (substr($value,0,strlen($attribut)) <> $attribut){ |
494 | - $r ="{$attribut}=\"{$value}\""; |
|
494 | + $r ="{$attribut}=\"{$value}\""; |
|
495 | 495 | } |
496 | - }else{ |
|
496 | + }else{ |
|
497 | 497 | $r = ''; |
498 | - } |
|
498 | + } |
|
499 | 499 | |
500 | - return $r; |
|
500 | + return $r; |
|
501 | 501 | |
502 | 502 | } |
503 | 503 |
@@ -450,9 +450,9 @@ |
||
450 | 450 | /** |
451 | 451 | * @param $event |
452 | 452 | * @param $eventsArray |
453 | - * @param $extcalTimeHandler |
|
454 | - * @param $startMonth |
|
455 | - * @param $endMonth |
|
453 | + * @param ExtcalTime $extcalTimeHandler |
|
454 | + * @param integer $startMonth |
|
455 | + * @param integer $endMonth |
|
456 | 456 | * @param $cats |
457 | 457 | */ |
458 | 458 | function bExtcalMinicalAddEventToArray( |
@@ -5,10 +5,10 @@ |
||
5 | 5 | include_once(XOOPS_ROOT_PATH . '/modules/extcal/class/tableForm.php'); |
6 | 6 | //--------------------------------------------------------------------------- |
7 | 7 | /** |
8 | - * @param $options |
|
9 | - * |
|
10 | - * @return array |
|
11 | - */ |
|
8 | + * @param $options |
|
9 | + * |
|
10 | + * @return array |
|
11 | + */ |
|
12 | 12 | function bExtcalMinicalShow($options) |
13 | 13 | { |
14 | 14 | global $extcalConfig, $xoopsUser; |
@@ -264,6 +264,10 @@ |
||
264 | 264 | * @param $max |
265 | 265 | * @return |
266 | 266 | */ |
267 | + |
|
268 | + /** |
|
269 | + * @param integer $min |
|
270 | + */ |
|
267 | 271 | Function bornerValeur($val, $min, $max) |
268 | 272 | { |
269 | 273 |
@@ -791,7 +791,7 @@ discard block |
||
791 | 791 | /** |
792 | 792 | * @param $start |
793 | 793 | * @param $end |
794 | - * @param $cat |
|
794 | + * @param integer $cat |
|
795 | 795 | * @param $user |
796 | 796 | * |
797 | 797 | * @return CriteriaCompo |
@@ -1841,7 +1841,7 @@ discard block |
||
1841 | 1841 | |
1842 | 1842 | /** |
1843 | 1843 | * @param $month |
1844 | - * @param $year |
|
1844 | + * @param string $year |
|
1845 | 1845 | * @param $dayCode |
1846 | 1846 | * |
1847 | 1847 | * @return int |
@@ -1726,7 +1726,7 @@ discard block |
||
1726 | 1726 | |
1727 | 1727 | $eventHourOccurStart = $event['event_recur_start'] - mktime(0, 0, 0, $month, $day, $year); |
1728 | 1728 | $eventHourOccurEnd |
1729 | - = $event['event_end'] - $event['event_start']; |
|
1729 | + = $event['event_end'] - $event['event_start']; |
|
1730 | 1730 | |
1731 | 1731 | // Parse all occurence of this event |
1732 | 1732 | while ($nbOccur < $rRuleInterval) { |
@@ -1736,7 +1736,7 @@ discard block |
||
1736 | 1736 | } |
1737 | 1737 | |
1738 | 1738 | $occurEventStart |
1739 | - = $eventDayOccurStart + $eventHourOccurStart; |
|
1739 | + = $eventDayOccurStart + $eventHourOccurStart; |
|
1740 | 1740 | $occurEventEnd = $occurEventStart + $eventHourOccurEnd; |
1741 | 1741 | |
1742 | 1742 | if // Event start falls within search period |
@@ -1786,7 +1786,7 @@ discard block |
||
1786 | 1786 | |
1787 | 1787 | $eventHourOccurStart = $event['event_recur_start'] - mktime(0, 0, 0, $month, $day, $year); |
1788 | 1788 | $eventHourOccurEnd |
1789 | - = $event['event_end'] - $event['event_start']; |
|
1789 | + = $event['event_end'] - $event['event_start']; |
|
1790 | 1790 | |
1791 | 1791 | // If recurring month not specified, make it starting month |
1792 | 1792 | if (!count($eventOptions)) { |
@@ -1802,7 +1802,7 @@ discard block |
||
1802 | 1802 | } |
1803 | 1803 | |
1804 | 1804 | $occurEventStart |
1805 | - = $eventDayOccurStart + $eventHourOccurStart; |
|
1805 | + = $eventDayOccurStart + $eventHourOccurStart; |
|
1806 | 1806 | $occurEventEnd = $eventDayOccurStart + $eventHourOccurEnd; |
1807 | 1807 | |
1808 | 1808 | if // Event start falls within search period |
@@ -536,7 +536,7 @@ |
||
536 | 536 | |
537 | 537 | /** |
538 | 538 | * @param $objects |
539 | - * @param array $externalKeys |
|
539 | + * @param string[] $externalKeys |
|
540 | 540 | * @param string $format |
541 | 541 | * |
542 | 542 | * @return array |
@@ -9,7 +9,7 @@ |
||
9 | 9 | { |
10 | 10 | |
11 | 11 | /** |
12 | - * @param $form |
|
12 | + * @param ExtcalThemeForm $form |
|
13 | 13 | * @param int $startTS |
14 | 14 | * @param int $endTS |
15 | 15 | */ |
@@ -7,8 +7,8 @@ |
||
7 | 7 | { |
8 | 8 | |
9 | 9 | /** |
10 | - * @param $caption |
|
11 | - * @param $name |
|
10 | + * @param string $caption |
|
11 | + * @param string $name |
|
12 | 12 | * @param null $value |
13 | 13 | */ |
14 | 14 | function ExtcalFormFileCheckBox($caption, $name, $value = null) |
@@ -7,9 +7,9 @@ |
||
7 | 7 | { |
8 | 8 | |
9 | 9 | /** |
10 | - * @param $caption |
|
11 | - * @param $name |
|
12 | - * @param null $value |
|
10 | + * @param string $caption |
|
11 | + * @param string $name |
|
12 | + * @param string $value |
|
13 | 13 | */ |
14 | 14 | function ExtcalFormRRuleCheckBox($caption, $name, $value = null) |
15 | 15 | { |
@@ -1190,7 +1190,7 @@ discard block |
||
1190 | 1190 | /** |
1191 | 1191 | * @param $p_tarname |
1192 | 1192 | * @param $p_list |
1193 | - * @param $p_mode |
|
1193 | + * @param string $p_mode |
|
1194 | 1194 | * @param string $p_add_dir |
1195 | 1195 | * @param string $p_remove_dir |
1196 | 1196 | * |
@@ -1290,10 +1290,10 @@ discard block |
||
1290 | 1290 | /** |
1291 | 1291 | * @param $p_tarname |
1292 | 1292 | * @param $p_list |
1293 | - * @param $p_mode |
|
1293 | + * @param string $p_mode |
|
1294 | 1294 | * @param $p_list_detail |
1295 | - * @param $p_add_dir |
|
1296 | - * @param $p_remove_dir |
|
1295 | + * @param string $p_add_dir |
|
1296 | + * @param string $p_remove_dir |
|
1297 | 1297 | * |
1298 | 1298 | * @return int |
1299 | 1299 | */ |
@@ -2092,10 +2092,10 @@ discard block |
||
2092 | 2092 | * @param $p_tarname |
2093 | 2093 | * @param $p_file_list |
2094 | 2094 | * @param $p_list_detail |
2095 | - * @param $p_mode |
|
2096 | - * @param $p_path |
|
2095 | + * @param string $p_mode |
|
2096 | + * @param string $p_path |
|
2097 | 2097 | * @param $p_tar_mode |
2098 | - * @param $p_remove_path |
|
2098 | + * @param string $p_remove_path |
|
2099 | 2099 | * |
2100 | 2100 | * @return int |
2101 | 2101 | */ |
@@ -2648,8 +2648,8 @@ discard block |
||
2648 | 2648 | * @param $p_tarname |
2649 | 2649 | * @param $p_index_string |
2650 | 2650 | * @param $p_list_detail |
2651 | - * @param $p_path |
|
2652 | - * @param $p_remove_path |
|
2651 | + * @param string $p_path |
|
2652 | + * @param string $p_remove_path |
|
2653 | 2653 | * @param $p_tar_mode |
2654 | 2654 | * |
2655 | 2655 | * @return int |
@@ -3219,7 +3219,7 @@ discard block |
||
3219 | 3219 | * @param $p_tarname |
3220 | 3220 | * @param $p_file_list |
3221 | 3221 | * @param $p_list_detail |
3222 | - * @param $p_tar_mode |
|
3222 | + * @param string $p_tar_mode |
|
3223 | 3223 | * |
3224 | 3224 | * @return int |
3225 | 3225 | */ |
@@ -3513,9 +3513,9 @@ discard block |
||
3513 | 3513 | * @param $p_tarname |
3514 | 3514 | * @param $p_file_list |
3515 | 3515 | * @param $p_list_detail |
3516 | - * @param $p_tar_mode |
|
3517 | - * @param $p_add_dir |
|
3518 | - * @param $p_remove_dir |
|
3516 | + * @param string $p_tar_mode |
|
3517 | + * @param string $p_add_dir |
|
3518 | + * @param string $p_remove_dir |
|
3519 | 3519 | * |
3520 | 3520 | * @return int |
3521 | 3521 | */ |
@@ -3922,7 +3922,7 @@ discard block |
||
3922 | 3922 | // Return Values : |
3923 | 3923 | // -------------------------------------------------------------------------------- |
3924 | 3924 | /** |
3925 | - * @param $v_binary_data |
|
3925 | + * @param string $v_binary_data |
|
3926 | 3926 | * @param $v_header |
3927 | 3927 | * |
3928 | 3928 | * @return int |