@@ -119,7 +119,7 @@ |
||
| 119 | 119 | * |
| 120 | 120 | * @see XoopsTplset |
| 121 | 121 | * @param bool $isNew is the new tplsets new?? |
| 122 | - * @return object XoopsTplset reference to the new tplsets |
|
| 122 | + * @return XoopsTplset XoopsTplset reference to the new tplsets |
|
| 123 | 123 | **/ |
| 124 | 124 | public function create($isNew = true) |
| 125 | 125 | { |
@@ -592,7 +592,7 @@ |
||
| 592 | 592 | class XoopsUserHandler extends XoopsPersistableObjectHandler |
| 593 | 593 | { |
| 594 | 594 | /** |
| 595 | - * @param XoopsDatabase|null| $db |
|
| 595 | + * @param XoopsDatabase $db |
|
| 596 | 596 | */ |
| 597 | 597 | public function __construct(XoopsDatabase $db) |
| 598 | 598 | { |
@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | * Number Formats |
| 49 | 49 | * |
| 50 | 50 | * @param unknown_type $number |
| 51 | - * @return unknown |
|
| 51 | + * @return string |
|
| 52 | 52 | */ |
| 53 | 53 | public function number_format($number) |
| 54 | 54 | { |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | * |
| 61 | 61 | * @param string $format |
| 62 | 62 | * @param string $number |
| 63 | - * @return money format |
|
| 63 | + * @return string format |
|
| 64 | 64 | */ |
| 65 | 65 | public function money_format($format, $number) |
| 66 | 66 | { |
@@ -238,7 +238,7 @@ discard block |
||
| 238 | 238 | * @param XoopsUser $user {@link XoopsUser} object to get the value of |
| 239 | 239 | * @param profileProfile $profile object to get the value of |
| 240 | 240 | * |
| 241 | - * @return mixed |
|
| 241 | + * @return string |
|
| 242 | 242 | **/ |
| 243 | 243 | public function getOutputValue(&$user, $profile) |
| 244 | 244 | { |
@@ -433,7 +433,7 @@ discard block |
||
| 433 | 433 | class ProfileFieldHandler extends XoopsPersistableObjectHandler |
| 434 | 434 | { |
| 435 | 435 | /** |
| 436 | - * @param null|XoopsDatabase $db |
|
| 436 | + * @param XoopsDatabase $db |
|
| 437 | 437 | */ |
| 438 | 438 | public function __construct(XoopsDatabase $db) |
| 439 | 439 | { |
@@ -644,7 +644,7 @@ discard block |
||
| 644 | 644 | /** |
| 645 | 645 | * Get array of standard variable names (user table) |
| 646 | 646 | * |
| 647 | - * @return array |
|
| 647 | + * @return string[] |
|
| 648 | 648 | */ |
| 649 | 649 | public function getUserVars() |
| 650 | 650 | { |
@@ -528,7 +528,7 @@ discard block |
||
| 528 | 528 | } |
| 529 | 529 | |
| 530 | 530 | /** |
| 531 | - * @param $dirname |
|
| 531 | + * @param string $dirname |
|
| 532 | 532 | * @param $template |
| 533 | 533 | * @param string $type |
| 534 | 534 | * |
@@ -1388,9 +1388,9 @@ discard block |
||
| 1388 | 1388 | |
| 1389 | 1389 | /** |
| 1390 | 1390 | * @param $module |
| 1391 | - * @param $title |
|
| 1391 | + * @param string $title |
|
| 1392 | 1392 | * |
| 1393 | - * @return array |
|
| 1393 | + * @return string[] |
|
| 1394 | 1394 | */ |
| 1395 | 1395 | function xoops_module_log_header($module, $title) |
| 1396 | 1396 | { |
@@ -115,7 +115,7 @@ |
||
| 115 | 115 | * Create new Object |
| 116 | 116 | * |
| 117 | 117 | * @param bool $isNew |
| 118 | - * @return object |
|
| 118 | + * @return SystemAvatar |
|
| 119 | 119 | */ |
| 120 | 120 | public function &create($isNew = true) |
| 121 | 121 | { |
@@ -142,7 +142,7 @@ discard block |
||
| 142 | 142 | * |
| 143 | 143 | * @param array tables 'list of tables' |
| 144 | 144 | * @param array maintenance 'optimize, check, repair, analyze' |
| 145 | - * @return array |
|
| 145 | + * @return string |
|
| 146 | 146 | */ |
| 147 | 147 | public function CheckRepairAnalyzeOptimizeQueries($tables, $maintenance) |
| 148 | 148 | { |
@@ -214,7 +214,7 @@ discard block |
||
| 214 | 214 | * |
| 215 | 215 | * @param array tables 'list of tables' |
| 216 | 216 | * @param int drop |
| 217 | - * @return array 'ret[0] = dump, ret[1] = display result |
|
| 217 | + * @return string[] 'ret[0] = dump, ret[1] = display result |
|
| 218 | 218 | */ |
| 219 | 219 | public function dump_tables($tables, $drop) |
| 220 | 220 | { |
@@ -243,7 +243,7 @@ discard block |
||
| 243 | 243 | * |
| 244 | 244 | * @param array modules 'list of modules' |
| 245 | 245 | * @param int drop |
| 246 | - * @return array 'ret[0] = dump, ret[1] = display result |
|
| 246 | + * @return string[] 'ret[0] = dump, ret[1] = display result |
|
| 247 | 247 | */ |
| 248 | 248 | public function dump_modules($modules, $drop) |
| 249 | 249 | { |
@@ -285,7 +285,10 @@ discard block |
||
| 285 | 285 | * @param string table |
| 286 | 286 | * @param int drop |
| 287 | 287 | * @param string class |
| 288 | - * @return array 'ret[0] = dump, ret[1] = display result |
|
| 288 | + * @param string[] $ret |
|
| 289 | + * @param string $table |
|
| 290 | + * @param string $class |
|
| 291 | + * @return string[] 'ret[0] = dump, ret[1] = display result |
|
| 289 | 292 | */ |
| 290 | 293 | public function dump_table_structure($ret, $table, $drop, $class) |
| 291 | 294 | { |
@@ -314,7 +317,9 @@ discard block |
||
| 314 | 317 | * |
| 315 | 318 | * @param array |
| 316 | 319 | * @param string table |
| 317 | - * @return array 'ret[0] = dump, ret[1] = display result |
|
| 320 | + * @param string[] $ret |
|
| 321 | + * @param string $table |
|
| 322 | + * @return string[] 'ret[0] = dump, ret[1] = display result |
|
| 318 | 323 | */ |
| 319 | 324 | public function dump_table_datas($ret, $table) |
| 320 | 325 | { |
@@ -379,7 +384,8 @@ discard block |
||
| 379 | 384 | * Dump Write |
| 380 | 385 | * |
| 381 | 386 | * @param array |
| 382 | - * @return array 'ret[0] = dump, ret[1] = display result |
|
| 387 | + * @param string[] $ret |
|
| 388 | + * @return string[] 'ret[0] = dump, ret[1] = display result |
|
| 383 | 389 | */ |
| 384 | 390 | public function dump_write($ret) |
| 385 | 391 | { |
@@ -799,6 +799,9 @@ discard block |
||
| 799 | 799 | |
| 800 | 800 | // from getid3.lib.php |
| 801 | 801 | |
| 802 | + /** |
|
| 803 | + * @param double $floatnumber |
|
| 804 | + */ |
|
| 802 | 805 | function trunc($floatnumber) { |
| 803 | 806 | // truncates a floating-point number at the decimal point |
| 804 | 807 | // returns int (if possible, otherwise float) |
@@ -815,6 +818,9 @@ discard block |
||
| 815 | 818 | return $truncatednumber; |
| 816 | 819 | } |
| 817 | 820 | |
| 821 | + /** |
|
| 822 | + * @param string $byteword |
|
| 823 | + */ |
|
| 818 | 824 | function LittleEndian2Int($byteword) { |
| 819 | 825 | $intvalue = 0; |
| 820 | 826 | $byteword = strrev($byteword); |
@@ -838,11 +844,17 @@ discard block |
||
| 838 | 844 | return $binvalue; |
| 839 | 845 | } |
| 840 | 846 | |
| 847 | + /** |
|
| 848 | + * @param string $rawdata |
|
| 849 | + */ |
|
| 841 | 850 | function FixedPoint2_30($rawdata) { |
| 842 | 851 | $binarystring = $this->BigEndian2Bin($rawdata); |
| 843 | 852 | return $this->Bin2Dec(substr($binarystring, 0, 2)) + (float) ($this->Bin2Dec(substr($binarystring, 2, 30)) / 1073741824); |
| 844 | 853 | } |
| 845 | 854 | |
| 855 | + /** |
|
| 856 | + * @param string $binstring |
|
| 857 | + */ |
|
| 846 | 858 | function Bin2Dec($binstring, $signed=false) { |
| 847 | 859 | $signmult = 1; |
| 848 | 860 | if ($signed) { |
@@ -64,6 +64,9 @@ discard block |
||
| 64 | 64 | |
| 65 | 65 | /////////////////////////////////////////////////////////////////////////////////////////////////// |
| 66 | 66 | |
| 67 | +/** |
|
| 68 | + * @param string $lpszFileName |
|
| 69 | + */ |
|
| 67 | 70 | function gif_outputAsBmp($gif, $lpszFileName, $bgColor = -1) |
| 68 | 71 | { |
| 69 | 72 | if (!isSet($gif) || (@get_class($gif) <> 'cgif') || !$gif->loaded() || ($lpszFileName == '')) { |
@@ -186,6 +189,10 @@ discard block |
||
| 186 | 189 | |
| 187 | 190 | /////////////////////////////////////////////////////////////////////////// |
| 188 | 191 | |
| 192 | + /** |
|
| 193 | + * @param string $data |
|
| 194 | + * @param integer $datLen |
|
| 195 | + */ |
|
| 189 | 196 | function deCompress($data, &$datLen) |
| 190 | 197 | { |
| 191 | 198 | $stLen = strlen($data); |
@@ -210,6 +217,11 @@ discard block |
||
| 210 | 217 | |
| 211 | 218 | /////////////////////////////////////////////////////////////////////////// |
| 212 | 219 | |
| 220 | + /** |
|
| 221 | + * @param boolean $bInit |
|
| 222 | + * |
|
| 223 | + * @return integer |
|
| 224 | + */ |
|
| 213 | 225 | function LZWCommand(&$data, $bInit) |
| 214 | 226 | { |
| 215 | 227 | if ($bInit) { |
@@ -392,6 +404,10 @@ discard block |
||
| 392 | 404 | |
| 393 | 405 | /////////////////////////////////////////////////////////////////////////// |
| 394 | 406 | |
| 407 | + /** |
|
| 408 | + * @param string $lpData |
|
| 409 | + * @param integer $num |
|
| 410 | + */ |
|
| 395 | 411 | function load($lpData, $num) |
| 396 | 412 | { |
| 397 | 413 | $this->m_nColors = 0; |
@@ -503,6 +519,9 @@ discard block |
||
| 503 | 519 | |
| 504 | 520 | /////////////////////////////////////////////////////////////////////////// |
| 505 | 521 | |
| 522 | + /** |
|
| 523 | + * @param integer $hdrLen |
|
| 524 | + */ |
|
| 506 | 525 | function load($lpData, &$hdrLen) |
| 507 | 526 | { |
| 508 | 527 | $hdrLen = 0; |
@@ -540,6 +559,9 @@ discard block |
||
| 540 | 559 | |
| 541 | 560 | /////////////////////////////////////////////////////////////////////////// |
| 542 | 561 | |
| 562 | + /** |
|
| 563 | + * @param string $str |
|
| 564 | + */ |
|
| 543 | 565 | function w2i($str) |
| 544 | 566 | { |
| 545 | 567 | return ord(substr($str, 0, 1)) + (ord(substr($str, 1, 1)) << 8); |
@@ -578,6 +600,10 @@ discard block |
||
| 578 | 600 | |
| 579 | 601 | /////////////////////////////////////////////////////////////////////////// |
| 580 | 602 | |
| 603 | + /** |
|
| 604 | + * @param string $lpData |
|
| 605 | + * @param integer $hdrLen |
|
| 606 | + */ |
|
| 581 | 607 | function load($lpData, &$hdrLen) |
| 582 | 608 | { |
| 583 | 609 | $hdrLen = 0; |
@@ -611,6 +637,9 @@ discard block |
||
| 611 | 637 | |
| 612 | 638 | /////////////////////////////////////////////////////////////////////////// |
| 613 | 639 | |
| 640 | + /** |
|
| 641 | + * @param string $str |
|
| 642 | + */ |
|
| 614 | 643 | function w2i($str) |
| 615 | 644 | { |
| 616 | 645 | return ord(substr($str, 0, 1)) + (ord(substr($str, 1, 1)) << 8); |
@@ -648,6 +677,10 @@ discard block |
||
| 648 | 677 | |
| 649 | 678 | /////////////////////////////////////////////////////////////////////////// |
| 650 | 679 | |
| 680 | + /** |
|
| 681 | + * @param string $data |
|
| 682 | + * @param integer $datLen |
|
| 683 | + */ |
|
| 651 | 684 | function load($data, &$datLen) |
| 652 | 685 | { |
| 653 | 686 | $datLen = 0; |
@@ -695,6 +728,10 @@ discard block |
||
| 695 | 728 | |
| 696 | 729 | /////////////////////////////////////////////////////////////////////////// |
| 697 | 730 | |
| 731 | + /** |
|
| 732 | + * @param string $data |
|
| 733 | + * @param integer $extLen |
|
| 734 | + */ |
|
| 698 | 735 | function skipExt(&$data, &$extLen) |
| 699 | 736 | { |
| 700 | 737 | $extLen = 0; |
@@ -740,6 +777,9 @@ discard block |
||
| 740 | 777 | |
| 741 | 778 | /////////////////////////////////////////////////////////////////////////// |
| 742 | 779 | |
| 780 | + /** |
|
| 781 | + * @param string $str |
|
| 782 | + */ |
|
| 743 | 783 | function w2i($str) |
| 744 | 784 | { |
| 745 | 785 | return ord(substr($str, 0, 1)) + (ord(substr($str, 1, 1)) << 8); |
@@ -811,6 +851,9 @@ discard block |
||
| 811 | 851 | |
| 812 | 852 | /////////////////////////////////////////////////////////////////////////// |
| 813 | 853 | |
| 854 | + /** |
|
| 855 | + * @param integer $iIndex |
|
| 856 | + */ |
|
| 814 | 857 | function loadFile($lpszFileName, $iIndex) |
| 815 | 858 | { |
| 816 | 859 | if ($iIndex < 0) { |
@@ -963,6 +1006,9 @@ discard block |
||
| 963 | 1006 | |
| 964 | 1007 | /////////////////////////////////////////////////////////////////////////// |
| 965 | 1008 | |
| 1009 | + /** |
|
| 1010 | + * @param integer $bgColor |
|
| 1011 | + */ |
|
| 966 | 1012 | function getPng($bgColor) |
| 967 | 1013 | { |
| 968 | 1014 | $out = ''; |