@@ -414,6 +414,9 @@ discard block |
||
| 414 | 414 | } |
| 415 | 415 | } |
| 416 | 416 | |
| 417 | + /** |
|
| 418 | + * @param string $table |
|
| 419 | + */ |
|
| 417 | 420 | public function save($fields, $table, $where = '') |
| 418 | 421 | { |
| 419 | 422 | |
@@ -444,6 +447,7 @@ discard block |
||
| 444 | 447 | /** |
| 445 | 448 | * @name: freeResult |
| 446 | 449 | * |
| 450 | + * @param mysqli_result $rs |
|
| 447 | 451 | */ |
| 448 | 452 | public function freeResult($rs) |
| 449 | 453 | { |
@@ -554,6 +558,7 @@ discard block |
||
| 554 | 558 | * @name: getColumn |
| 555 | 559 | * @desc: returns an array of the values found on colun $name |
| 556 | 560 | * @param: $dsq - dataset or query string |
| 561 | + * @param string $name |
|
| 557 | 562 | */ |
| 558 | 563 | public function getColumn($name, $dsq) |
| 559 | 564 | { |
@@ -720,6 +725,9 @@ discard block |
||
| 720 | 725 | return $result; |
| 721 | 726 | } |
| 722 | 727 | |
| 728 | + /** |
|
| 729 | + * @param string $table_name |
|
| 730 | + */ |
|
| 723 | 731 | public function optimize($table_name) |
| 724 | 732 | { |
| 725 | 733 | $rs = $this->query("OPTIMIZE TABLE {$table_name}"); |
@@ -730,6 +738,9 @@ discard block |
||
| 730 | 738 | return $rs; |
| 731 | 739 | } |
| 732 | 740 | |
| 741 | + /** |
|
| 742 | + * @param string $table_name |
|
| 743 | + */ |
|
| 733 | 744 | public function truncate($table_name) |
| 734 | 745 | { |
| 735 | 746 | $rs = $this->query("TRUNCATE {$table_name}"); |
@@ -240,9 +240,9 @@ discard block |
||
| 240 | 240 | } |
| 241 | 241 | |
| 242 | 242 | /** |
| 243 | - * @param string|array $fields |
|
| 244 | - * @param string|array $from |
|
| 245 | - * @param string|array $where |
|
| 243 | + * @param string $fields |
|
| 244 | + * @param string $from |
|
| 245 | + * @param string $where |
|
| 246 | 246 | * @param string $orderBy |
| 247 | 247 | * @param string $limit |
| 248 | 248 | * @return bool|mysqli_result |
@@ -326,7 +326,7 @@ discard block |
||
| 326 | 326 | * @param string $fromtable |
| 327 | 327 | * @param string $where |
| 328 | 328 | * @param string $limit |
| 329 | - * @return mixed |
|
| 329 | + * @return null|integer |
|
| 330 | 330 | */ |
| 331 | 331 | public function insert($fields, $intotable, $fromfields = "*", $fromtable = "", $where = "", $limit = "") |
| 332 | 332 | { |
@@ -368,7 +368,7 @@ discard block |
||
| 368 | 368 | |
| 369 | 369 | /** |
| 370 | 370 | * @param $fields |
| 371 | - * @param $table |
|
| 371 | + * @param string $table |
|
| 372 | 372 | * @param string $where |
| 373 | 373 | * @return bool|mixed|mysqli_result |
| 374 | 374 | */ |
@@ -435,7 +435,7 @@ discard block |
||
| 435 | 435 | |
| 436 | 436 | /** |
| 437 | 437 | * @param null|mysqli $conn |
| 438 | - * @return mixed |
|
| 438 | + * @return integer |
|
| 439 | 439 | */ |
| 440 | 440 | public function getInsertId($conn = null) |
| 441 | 441 | { |
@@ -513,7 +513,7 @@ discard block |
||
| 513 | 513 | } |
| 514 | 514 | |
| 515 | 515 | /** |
| 516 | - * @param $name |
|
| 516 | + * @param string $name |
|
| 517 | 517 | * @param mysqli_result|string $dsq |
| 518 | 518 | * @return array |
| 519 | 519 | */ |
@@ -572,7 +572,7 @@ discard block |
||
| 572 | 572 | |
| 573 | 573 | /** |
| 574 | 574 | * @param string $table |
| 575 | - * @return array |
|
| 575 | + * @return boolean |
|
| 576 | 576 | */ |
| 577 | 577 | public function getTableMetaData($table) |
| 578 | 578 | { |
@@ -619,7 +619,7 @@ discard block |
||
| 619 | 619 | } |
| 620 | 620 | |
| 621 | 621 | /** |
| 622 | - * @param string|mysqli_result $rs |
|
| 622 | + * @param string $rs |
|
| 623 | 623 | * @param bool $index |
| 624 | 624 | * @return array |
| 625 | 625 | */ |
@@ -72,7 +72,7 @@ |
||
| 72 | 72 | * @deprecated |
| 73 | 73 | * |
| 74 | 74 | * @param $rs |
| 75 | - * @return int|mixed |
|
| 75 | + * @return integer |
|
| 76 | 76 | */ |
| 77 | 77 | public function insertId($rs) |
| 78 | 78 | { |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | /** |
| 95 | 95 | * @param string $mode |
| 96 | 96 | * @param string $modifiers |
| 97 | - * @return bool|string |
|
| 97 | + * @return false|string |
|
| 98 | 98 | */ |
| 99 | 99 | public function _getDelim($mode,$modifiers) { |
| 100 | 100 | $c = substr($modifiers,0,1); |
@@ -131,6 +131,14 @@ discard block |
||
| 131 | 131 | return $opt; |
| 132 | 132 | } |
| 133 | 133 | } |
| 134 | + |
|
| 135 | + /** |
|
| 136 | + * @param string $mode |
|
| 137 | + * @param false|string $delim |
|
| 138 | + * @param string $modifiers |
|
| 139 | + * |
|
| 140 | + * @return string |
|
| 141 | + */ |
|
| 134 | 142 | public function _getRemainModifiers($mode,$delim,$modifiers) { |
| 135 | 143 | if($delim) { |
| 136 | 144 | if($mode=='(') |
@@ -158,6 +166,9 @@ discard block |
||
| 158 | 166 | return substr($string,strpos($string, $delim)+$len); |
| 159 | 167 | } |
| 160 | 168 | |
| 169 | + /** |
|
| 170 | + * @param string $modifiers |
|
| 171 | + */ |
|
| 161 | 172 | public function splitEachModifiers($modifiers) { |
| 162 | 173 | $modx = evolutionCMS(); |
| 163 | 174 | |
@@ -227,6 +238,10 @@ discard block |
||
| 227 | 238 | return $result; |
| 228 | 239 | } |
| 229 | 240 | |
| 241 | + /** |
|
| 242 | + * @param string $key |
|
| 243 | + * @param string $value |
|
| 244 | + */ |
|
| 230 | 245 | public function parsePhx($key,$value,$modifiers) |
| 231 | 246 | { |
| 232 | 247 | $modx = evolutionCMS(); |
@@ -293,6 +308,10 @@ discard block |
||
| 293 | 308 | else return true; |
| 294 | 309 | } |
| 295 | 310 | |
| 311 | + /** |
|
| 312 | + * @param string $cmd |
|
| 313 | + * @param string $opt |
|
| 314 | + */ |
|
| 296 | 315 | public function getValueFromPreset($key, $value, $cmd, $opt) |
| 297 | 316 | { |
| 298 | 317 | $modx = evolutionCMS(); |
@@ -978,6 +997,9 @@ discard block |
||
| 978 | 997 | return $value; |
| 979 | 998 | } |
| 980 | 999 | |
| 1000 | + /** |
|
| 1001 | + * @param string $cmd |
|
| 1002 | + */ |
|
| 981 | 1003 | public function includeMdfFile($cmd) { |
| 982 | 1004 | $modx = evolutionCMS(); |
| 983 | 1005 | $key = $this->key; |
@@ -1133,6 +1155,10 @@ discard block |
||
| 1133 | 1155 | } |
| 1134 | 1156 | |
| 1135 | 1157 | // Sets a placeholder variable which can only be access by Modifiers |
| 1158 | + |
|
| 1159 | + /** |
|
| 1160 | + * @param string $value |
|
| 1161 | + */ |
|
| 1136 | 1162 | public function setModifiersVariable($key, $value) { |
| 1137 | 1163 | if ($key != 'phx' && $key != 'dummy') $this->placeholders[$key] = $value; |
| 1138 | 1164 | } |
@@ -280,7 +280,7 @@ discard block |
||
| 280 | 280 | * MODX_MANAGER_PATH."includes/extenders/ex_{$extname}.inc.php" |
| 281 | 281 | * $extname - extension name in lowercase |
| 282 | 282 | * |
| 283 | - * @param $extname |
|
| 283 | + * @param string $extname |
|
| 284 | 284 | * @param bool $reload |
| 285 | 285 | * @return bool |
| 286 | 286 | */ |
@@ -325,7 +325,7 @@ discard block |
||
| 325 | 325 | * @param int $count_attempts |
| 326 | 326 | * @param string $type $type |
| 327 | 327 | * @param string $responseCode |
| 328 | - * @return bool|null |
|
| 328 | + * @return false|null |
|
| 329 | 329 | * @global string $base_url |
| 330 | 330 | * @global string $site_url |
| 331 | 331 | */ |
@@ -1042,7 +1042,7 @@ discard block |
||
| 1042 | 1042 | } |
| 1043 | 1043 | |
| 1044 | 1044 | /** |
| 1045 | - * @param $contents |
|
| 1045 | + * @param string $contents |
|
| 1046 | 1046 | * @return mixed |
| 1047 | 1047 | */ |
| 1048 | 1048 | public function RecoveryEscapedTags($contents) |
@@ -1068,7 +1068,7 @@ discard block |
||
| 1068 | 1068 | } |
| 1069 | 1069 | |
| 1070 | 1070 | /** |
| 1071 | - * @param $tstart |
|
| 1071 | + * @param double $tstart |
|
| 1072 | 1072 | * @return array |
| 1073 | 1073 | */ |
| 1074 | 1074 | public function getTimerStats($tstart) |
@@ -1851,7 +1851,7 @@ discard block |
||
| 1851 | 1851 | |
| 1852 | 1852 | /** |
| 1853 | 1853 | * Remove Comment-Tags from output like <!--@- Comment -@--> |
| 1854 | - * @param $content |
|
| 1854 | + * @param string $content |
|
| 1855 | 1855 | * @param string $left |
| 1856 | 1856 | * @param string $right |
| 1857 | 1857 | * @return mixed |
@@ -2029,7 +2029,7 @@ discard block |
||
| 2029 | 2029 | /** |
| 2030 | 2030 | * Run snippets as per the tags in $documentSource and replace the tags with the returned values. |
| 2031 | 2031 | * |
| 2032 | - * @param $content |
|
| 2032 | + * @param string $content |
|
| 2033 | 2033 | * @return string |
| 2034 | 2034 | * @internal param string $documentSource |
| 2035 | 2035 | */ |
@@ -3098,7 +3098,7 @@ discard block |
||
| 3098 | 3098 | |
| 3099 | 3099 | /** |
| 3100 | 3100 | * @param $templateID |
| 3101 | - * @return mixed |
|
| 3101 | + * @return string |
|
| 3102 | 3102 | */ |
| 3103 | 3103 | public function _getTemplateCodeFromDB($templateID) |
| 3104 | 3104 | { |
@@ -3142,7 +3142,7 @@ discard block |
||
| 3142 | 3142 | /** |
| 3143 | 3143 | * @param $id |
| 3144 | 3144 | * @param int $top |
| 3145 | - * @return mixed |
|
| 3145 | + * @return string |
|
| 3146 | 3146 | */ |
| 3147 | 3147 | public function getUltimateParentId($id, $top = 0) |
| 3148 | 3148 | { |
@@ -3482,7 +3482,7 @@ discard block |
||
| 3482 | 3482 | * |
| 3483 | 3483 | * @param int $type Types: 1=template, 2=tv, 3=chunk, 4=snippet, 5=plugin, 6=module, 7=resource, 8=role |
| 3484 | 3484 | * @param int $id Element- / Resource-id |
| 3485 | - * @return bool |
|
| 3485 | + * @return false|null |
|
| 3486 | 3486 | */ |
| 3487 | 3487 | public function lockElement($type, $id) |
| 3488 | 3488 | { |
@@ -3505,7 +3505,7 @@ discard block |
||
| 3505 | 3505 | * @param int $type Types: 1=template, 2=tv, 3=chunk, 4=snippet, 5=plugin, 6=module, 7=resource, 8=role |
| 3506 | 3506 | * @param int $id Element- / Resource-id |
| 3507 | 3507 | * @param bool $includeAllUsers true = Deletes not only own user-locks |
| 3508 | - * @return bool |
|
| 3508 | + * @return false|null |
|
| 3509 | 3509 | */ |
| 3510 | 3510 | public function unlockElement($type, $id, $includeAllUsers = false) |
| 3511 | 3511 | { |
@@ -3616,7 +3616,7 @@ discard block |
||
| 3616 | 3616 | * @param array $params |
| 3617 | 3617 | * @param string $msg |
| 3618 | 3618 | * @param array $files |
| 3619 | - * @return mixed |
|
| 3619 | + * @return boolean |
|
| 3620 | 3620 | */ |
| 3621 | 3621 | public function sendmail($params = array(), $msg = '', $files = array()) |
| 3622 | 3622 | { |
@@ -4053,7 +4053,7 @@ discard block |
||
| 4053 | 4053 | * Default: 1 |
| 4054 | 4054 | * @param string $fields List of fields |
| 4055 | 4055 | * Default: id, pagetitle, description, alias |
| 4056 | - * @return boolean|array |
|
| 4056 | + * @return string |
|
| 4057 | 4057 | */ |
| 4058 | 4058 | public function getPageInfo($pageid = -1, $active = 1, $fields = 'id, pagetitle, description, alias') |
| 4059 | 4059 | { |
@@ -4151,7 +4151,7 @@ discard block |
||
| 4151 | 4151 | * |
| 4152 | 4152 | * @param string $type |
| 4153 | 4153 | * @param bool $report |
| 4154 | - * @return bool |
|
| 4154 | + * @return boolean|null |
|
| 4155 | 4155 | */ |
| 4156 | 4156 | public function clearCache($type = '', $report = false) |
| 4157 | 4157 | { |
@@ -4524,7 +4524,7 @@ discard block |
||
| 4524 | 4524 | * - Placeholders prefix. Default: '{'. |
| 4525 | 4525 | * @param string $suffix {string} |
| 4526 | 4526 | * - Placeholders suffix. Default: '}'. |
| 4527 | - * @return bool|mixed|string {string; false} - Parsed chunk or false if $chunkArr is not array. |
|
| 4527 | + * @return false|string {string; false} - Parsed chunk or false if $chunkArr is not array. |
|
| 4528 | 4528 | * - Parsed chunk or false if $chunkArr is not array. |
| 4529 | 4529 | */ |
| 4530 | 4530 | public function parseChunk($chunkName, $chunkArr, $prefix = '{', $suffix = '}') |
@@ -5558,7 +5558,7 @@ discard block |
||
| 5558 | 5558 | * Remove event listener - only for use within the current execution cycle |
| 5559 | 5559 | * |
| 5560 | 5560 | * @param string $evtName |
| 5561 | - * @return boolean |
|
| 5561 | + * @return false|null |
|
| 5562 | 5562 | */ |
| 5563 | 5563 | public function removeEventListener($evtName) |
| 5564 | 5564 | { |
@@ -5582,7 +5582,7 @@ discard block |
||
| 5582 | 5582 | * |
| 5583 | 5583 | * @param string $evtName |
| 5584 | 5584 | * @param array $extParams Parameters available to plugins. Each array key will be the PHP variable name, and the array value will be the variable value. |
| 5585 | - * @return boolean|array |
|
| 5585 | + * @return false|null |
|
| 5586 | 5586 | */ |
| 5587 | 5587 | public function invokeEvent($evtName, $extParams = array()) |
| 5588 | 5588 | { |
@@ -6204,7 +6204,7 @@ discard block |
||
| 6204 | 6204 | |
| 6205 | 6205 | /** |
| 6206 | 6206 | * @param string $str |
| 6207 | - * @return bool|mixed|string |
|
| 6207 | + * @return string |
|
| 6208 | 6208 | */ |
| 6209 | 6209 | public function atBindFileContent($str = '') |
| 6210 | 6210 | { |
@@ -6261,8 +6261,8 @@ discard block |
||
| 6261 | 6261 | } |
| 6262 | 6262 | |
| 6263 | 6263 | /** |
| 6264 | - * @param $str |
|
| 6265 | - * @return bool|string |
|
| 6264 | + * @param string $str |
|
| 6265 | + * @return false|string |
|
| 6266 | 6266 | */ |
| 6267 | 6267 | public function getExtFromFilename($str) |
| 6268 | 6268 | { |
@@ -6290,7 +6290,7 @@ discard block |
||
| 6290 | 6290 | * @param string $text Error message |
| 6291 | 6291 | * @param string $file File where the error was detected |
| 6292 | 6292 | * @param string $line Line number within $file |
| 6293 | - * @return boolean |
|
| 6293 | + * @return boolean|null |
|
| 6294 | 6294 | */ |
| 6295 | 6295 | public function phpError($nr, $text, $file, $line) |
| 6296 | 6296 | { |
@@ -6342,7 +6342,7 @@ discard block |
||
| 6342 | 6342 | * @param string $text |
| 6343 | 6343 | * @param string $line |
| 6344 | 6344 | * @param string $output |
| 6345 | - * @return bool |
|
| 6345 | + * @return null|boolean |
|
| 6346 | 6346 | */ |
| 6347 | 6347 | public function messageQuit( |
| 6348 | 6348 | $msg = 'unspecified error', |
@@ -6785,7 +6785,7 @@ discard block |
||
| 6785 | 6785 | |
| 6786 | 6786 | /** |
| 6787 | 6787 | * @param string $str |
| 6788 | - * @return bool|mixed|string |
|
| 6788 | + * @return string |
|
| 6789 | 6789 | */ |
| 6790 | 6790 | public function atBindInclude($str = '') |
| 6791 | 6791 | { |
@@ -6837,7 +6837,7 @@ discard block |
||
| 6837 | 6837 | * @param $str |
| 6838 | 6838 | * @param int $flags |
| 6839 | 6839 | * @param string $encode |
| 6840 | - * @return mixed |
|
| 6840 | + * @return string |
|
| 6841 | 6841 | */ |
| 6842 | 6842 | public function htmlspecialchars($str, $flags = ENT_COMPAT, $encode = '') |
| 6843 | 6843 | { |
@@ -6847,7 +6847,7 @@ discard block |
||
| 6847 | 6847 | } |
| 6848 | 6848 | |
| 6849 | 6849 | /** |
| 6850 | - * @param $string |
|
| 6850 | + * @param string $string |
|
| 6851 | 6851 | * @param bool $returnData |
| 6852 | 6852 | * @return bool|mixed |
| 6853 | 6853 | */ |