@@ -1314,7 +1314,7 @@ |
||
| 1314 | 1314 | * If no reply has been received yet, it will return null. |
| 1315 | 1315 | * If no pattern was matched, it will return false. |
| 1316 | 1316 | * |
| 1317 | - * @return bool|null|string |
|
| 1317 | + * @return string |
|
| 1318 | 1318 | * |
| 1319 | 1319 | * @see recordLastTransactionID() |
| 1320 | 1320 | */ |
@@ -307,7 +307,7 @@ discard block |
||
| 307 | 307 | } |
| 308 | 308 | // Connect to the SMTP server |
| 309 | 309 | $this->edebug( |
| 310 | - "Connection: opening to $host:$port, timeout=$timeout, options=" . |
|
| 310 | + "Connection: opening to $host:$port, timeout=$timeout, options=". |
|
| 311 | 311 | (count($options) > 0 ? var_export($options, true) : 'array()'), |
| 312 | 312 | self::DEBUG_CONNECTION |
| 313 | 313 | ); |
@@ -317,7 +317,7 @@ discard block |
||
| 317 | 317 | $socket_context = stream_context_create($options); |
| 318 | 318 | set_error_handler([$this, 'errorHandler']); |
| 319 | 319 | $this->smtp_conn = stream_socket_client( |
| 320 | - $host . ':' . $port, |
|
| 320 | + $host.':'.$port, |
|
| 321 | 321 | $errno, |
| 322 | 322 | $errstr, |
| 323 | 323 | $timeout, |
@@ -350,7 +350,7 @@ discard block |
||
| 350 | 350 | (string) $errstr |
| 351 | 351 | ); |
| 352 | 352 | $this->edebug( |
| 353 | - 'SMTP ERROR: ' . $this->error['error'] |
|
| 353 | + 'SMTP ERROR: '.$this->error['error'] |
|
| 354 | 354 | . ": $errstr ($errno)", |
| 355 | 355 | self::DEBUG_CLIENT |
| 356 | 356 | ); |
@@ -370,7 +370,7 @@ discard block |
||
| 370 | 370 | } |
| 371 | 371 | // Get any announcement |
| 372 | 372 | $announce = $this->get_lines(); |
| 373 | - $this->edebug('SERVER -> CLIENT: ' . $announce, self::DEBUG_SERVER); |
|
| 373 | + $this->edebug('SERVER -> CLIENT: '.$announce, self::DEBUG_SERVER); |
|
| 374 | 374 | |
| 375 | 375 | return true; |
| 376 | 376 | } |
@@ -426,7 +426,7 @@ discard block |
||
| 426 | 426 | $password, |
| 427 | 427 | $authtype = null, |
| 428 | 428 | $OAuth = null |
| 429 | - ) { |
|
| 429 | + ){ |
|
| 430 | 430 | if (!$this->server_caps) { |
| 431 | 431 | $this->setError('Authentication is not allowed before HELO/EHLO'); |
| 432 | 432 | |
@@ -443,15 +443,15 @@ discard block |
||
| 443 | 443 | return false; |
| 444 | 444 | } |
| 445 | 445 | |
| 446 | - $this->edebug('Auth method requested: ' . ($authtype ? $authtype : 'UNKNOWN'), self::DEBUG_LOWLEVEL); |
|
| 446 | + $this->edebug('Auth method requested: '.($authtype ? $authtype : 'UNKNOWN'), self::DEBUG_LOWLEVEL); |
|
| 447 | 447 | $this->edebug( |
| 448 | - 'Auth methods available on the server: ' . implode(',', $this->server_caps['AUTH']), |
|
| 448 | + 'Auth methods available on the server: '.implode(',', $this->server_caps['AUTH']), |
|
| 449 | 449 | self::DEBUG_LOWLEVEL |
| 450 | 450 | ); |
| 451 | 451 | |
| 452 | 452 | //If we have requested a specific auth type, check the server supports it before trying others |
| 453 | 453 | if (!in_array($authtype, $this->server_caps['AUTH'])) { |
| 454 | - $this->edebug('Requested auth method not available: ' . $authtype, self::DEBUG_LOWLEVEL); |
|
| 454 | + $this->edebug('Requested auth method not available: '.$authtype, self::DEBUG_LOWLEVEL); |
|
| 455 | 455 | $authtype = null; |
| 456 | 456 | } |
| 457 | 457 | |
@@ -469,7 +469,7 @@ discard block |
||
| 469 | 469 | |
| 470 | 470 | return false; |
| 471 | 471 | } |
| 472 | - self::edebug('Auth method selected: ' . $authtype, self::DEBUG_LOWLEVEL); |
|
| 472 | + self::edebug('Auth method selected: '.$authtype, self::DEBUG_LOWLEVEL); |
|
| 473 | 473 | } |
| 474 | 474 | |
| 475 | 475 | if (!in_array($authtype, $this->server_caps['AUTH'])) { |
@@ -489,7 +489,7 @@ discard block |
||
| 489 | 489 | // Send encoded username and password |
| 490 | 490 | if (!$this->sendCommand( |
| 491 | 491 | 'User & Password', |
| 492 | - base64_encode("\0" . $username . "\0" . $password), |
|
| 492 | + base64_encode("\0".$username."\0".$password), |
|
| 493 | 493 | 235 |
| 494 | 494 | ) |
| 495 | 495 | ) { |
@@ -517,7 +517,7 @@ discard block |
||
| 517 | 517 | $challenge = base64_decode(substr($this->last_reply, 4)); |
| 518 | 518 | |
| 519 | 519 | // Build the response |
| 520 | - $response = $username . ' ' . $this->hmac($challenge, $password); |
|
| 520 | + $response = $username.' '.$this->hmac($challenge, $password); |
|
| 521 | 521 | |
| 522 | 522 | // send encoded credentials |
| 523 | 523 | return $this->sendCommand('Username', base64_encode($response), 235); |
@@ -529,7 +529,7 @@ discard block |
||
| 529 | 529 | $oauth = $OAuth->getOauth64(); |
| 530 | 530 | |
| 531 | 531 | // Start authentication |
| 532 | - if (!$this->sendCommand('AUTH', 'AUTH XOAUTH2 ' . $oauth, 235)) { |
|
| 532 | + if (!$this->sendCommand('AUTH', 'AUTH XOAUTH2 '.$oauth, 235)) { |
|
| 533 | 533 | return false; |
| 534 | 534 | } |
| 535 | 535 | break; |
@@ -576,7 +576,7 @@ discard block |
||
| 576 | 576 | $k_ipad = $key ^ $ipad; |
| 577 | 577 | $k_opad = $key ^ $opad; |
| 578 | 578 | |
| 579 | - return md5($k_opad . pack('H*', md5($k_ipad . $data))); |
|
| 579 | + return md5($k_opad.pack('H*', md5($k_ipad.$data))); |
|
| 580 | 580 | } |
| 581 | 581 | |
| 582 | 582 | /** |
@@ -691,7 +691,7 @@ discard block |
||
| 691 | 691 | } |
| 692 | 692 | //If processing headers add a LWSP-char to the front of new line RFC822 section 3.1.1 |
| 693 | 693 | if ($in_headers) { |
| 694 | - $line = "\t" . $line; |
|
| 694 | + $line = "\t".$line; |
|
| 695 | 695 | } |
| 696 | 696 | } |
| 697 | 697 | $lines_out[] = $line; |
@@ -700,9 +700,9 @@ discard block |
||
| 700 | 700 | foreach ($lines_out as $line_out) { |
| 701 | 701 | //RFC2821 section 4.5.2 |
| 702 | 702 | if (!empty($line_out) and $line_out[0] == '.') { |
| 703 | - $line_out = '.' . $line_out; |
|
| 703 | + $line_out = '.'.$line_out; |
|
| 704 | 704 | } |
| 705 | - $this->client_send($line_out . static::LE, 'DATA'); |
|
| 705 | + $this->client_send($line_out.static::LE, 'DATA'); |
|
| 706 | 706 | } |
| 707 | 707 | } |
| 708 | 708 | |
@@ -748,7 +748,7 @@ discard block |
||
| 748 | 748 | */ |
| 749 | 749 | protected function sendHello($hello, $host) |
| 750 | 750 | { |
| 751 | - $noerror = $this->sendCommand($hello, $hello . ' ' . $host, 250); |
|
| 751 | + $noerror = $this->sendCommand($hello, $hello.' '.$host, 250); |
|
| 752 | 752 | $this->helo_rply = $this->last_reply; |
| 753 | 753 | if ($noerror) { |
| 754 | 754 | $this->parseHelloFields($hello); |
@@ -819,7 +819,7 @@ discard block |
||
| 819 | 819 | |
| 820 | 820 | return $this->sendCommand( |
| 821 | 821 | 'MAIL FROM', |
| 822 | - 'MAIL FROM:<' . $from . '>' . $useVerp, |
|
| 822 | + 'MAIL FROM:<'.$from.'>'.$useVerp, |
|
| 823 | 823 | 250 |
| 824 | 824 | ); |
| 825 | 825 | } |
@@ -859,7 +859,7 @@ discard block |
||
| 859 | 859 | { |
| 860 | 860 | return $this->sendCommand( |
| 861 | 861 | 'RCPT TO', |
| 862 | - 'RCPT TO:<' . $address . '>', |
|
| 862 | + 'RCPT TO:<'.$address.'>', |
|
| 863 | 863 | [250, 251] |
| 864 | 864 | ); |
| 865 | 865 | } |
@@ -898,7 +898,7 @@ discard block |
||
| 898 | 898 | |
| 899 | 899 | return false; |
| 900 | 900 | } |
| 901 | - $this->client_send($commandstring . static::LE, $command); |
|
| 901 | + $this->client_send($commandstring.static::LE, $command); |
|
| 902 | 902 | |
| 903 | 903 | $this->last_reply = $this->get_lines(); |
| 904 | 904 | // Fetch SMTP code and possible error code explanation |
@@ -908,8 +908,8 @@ discard block |
||
| 908 | 908 | $code_ex = (count($matches) > 2 ? $matches[2] : null); |
| 909 | 909 | // Cut off error code from each response line |
| 910 | 910 | $detail = preg_replace( |
| 911 | - "/{$code}[ -]" . |
|
| 912 | - ($code_ex ? str_replace('.', '\\.', $code_ex) . ' ' : '') . '/m', |
|
| 911 | + "/{$code}[ -]". |
|
| 912 | + ($code_ex ? str_replace('.', '\\.', $code_ex).' ' : '').'/m', |
|
| 913 | 913 | '', |
| 914 | 914 | $this->last_reply |
| 915 | 915 | ); |
@@ -920,7 +920,7 @@ discard block |
||
| 920 | 920 | $detail = substr($this->last_reply, 4); |
| 921 | 921 | } |
| 922 | 922 | |
| 923 | - $this->edebug('SERVER -> CLIENT: ' . $this->last_reply, self::DEBUG_SERVER); |
|
| 923 | + $this->edebug('SERVER -> CLIENT: '.$this->last_reply, self::DEBUG_SERVER); |
|
| 924 | 924 | |
| 925 | 925 | if (!in_array($code, (array) $expect)) { |
| 926 | 926 | $this->setError( |
@@ -930,7 +930,7 @@ discard block |
||
| 930 | 930 | $code_ex |
| 931 | 931 | ); |
| 932 | 932 | $this->edebug( |
| 933 | - 'SMTP ERROR: ' . $this->error['error'] . ': ' . $this->last_reply, |
|
| 933 | + 'SMTP ERROR: '.$this->error['error'].': '.$this->last_reply, |
|
| 934 | 934 | self::DEBUG_CLIENT |
| 935 | 935 | ); |
| 936 | 936 | |
@@ -996,7 +996,7 @@ discard block |
||
| 996 | 996 | public function turn() |
| 997 | 997 | { |
| 998 | 998 | $this->setError('The SMTP TURN command is not implemented'); |
| 999 | - $this->edebug('SMTP NOTICE: ' . $this->error['error'], self::DEBUG_CLIENT); |
|
| 999 | + $this->edebug('SMTP NOTICE: '.$this->error['error'], self::DEBUG_CLIENT); |
|
| 1000 | 1000 | |
| 1001 | 1001 | return false; |
| 1002 | 1002 | } |
@@ -1017,7 +1017,7 @@ discard block |
||
| 1017 | 1017 | in_array($command, ['User & Password', 'Username', 'Password'], true)) { |
| 1018 | 1018 | $this->edebug('CLIENT -> SERVER: <credentials hidden>', self::DEBUG_CLIENT); |
| 1019 | 1019 | } else { |
| 1020 | - $this->edebug('CLIENT -> SERVER: ' . $data, self::DEBUG_CLIENT); |
|
| 1020 | + $this->edebug('CLIENT -> SERVER: '.$data, self::DEBUG_CLIENT); |
|
| 1021 | 1021 | } |
| 1022 | 1022 | set_error_handler([$this, 'errorHandler']); |
| 1023 | 1023 | $result = fwrite($this->smtp_conn, $data); |
@@ -1123,14 +1123,14 @@ discard block |
||
| 1123 | 1123 | //Must pass vars in here as params are by reference |
| 1124 | 1124 | if (!stream_select($selR, $selW, $selW, $this->Timelimit)) { |
| 1125 | 1125 | $this->edebug( |
| 1126 | - 'SMTP -> get_lines(): timed-out (' . $this->Timeout . ' sec)', |
|
| 1126 | + 'SMTP -> get_lines(): timed-out ('.$this->Timeout.' sec)', |
|
| 1127 | 1127 | self::DEBUG_LOWLEVEL |
| 1128 | 1128 | ); |
| 1129 | 1129 | break; |
| 1130 | 1130 | } |
| 1131 | 1131 | //Deliberate noise suppression - errors are handled afterwards |
| 1132 | 1132 | $str = @fgets($this->smtp_conn, 515); |
| 1133 | - $this->edebug('SMTP INBOUND: "' . trim($str) . '"', self::DEBUG_LOWLEVEL); |
|
| 1133 | + $this->edebug('SMTP INBOUND: "'.trim($str).'"', self::DEBUG_LOWLEVEL); |
|
| 1134 | 1134 | $data .= $str; |
| 1135 | 1135 | // If response is only 3 chars (not valid, but RFC5321 S4.2 says it must be handled), |
| 1136 | 1136 | // or 4th character is a space, we are done reading, break the loop, |
@@ -1142,7 +1142,7 @@ discard block |
||
| 1142 | 1142 | $info = stream_get_meta_data($this->smtp_conn); |
| 1143 | 1143 | if ($info['timed_out']) { |
| 1144 | 1144 | $this->edebug( |
| 1145 | - 'SMTP -> get_lines(): timed-out (' . $this->Timeout . ' sec)', |
|
| 1145 | + 'SMTP -> get_lines(): timed-out ('.$this->Timeout.' sec)', |
|
| 1146 | 1146 | self::DEBUG_LOWLEVEL |
| 1147 | 1147 | ); |
| 1148 | 1148 | break; |
@@ -1150,8 +1150,8 @@ discard block |
||
| 1150 | 1150 | // Now check if reads took too long |
| 1151 | 1151 | if ($endtime and time() > $endtime) { |
| 1152 | 1152 | $this->edebug( |
| 1153 | - 'SMTP -> get_lines(): timelimit reached (' . |
|
| 1154 | - $this->Timelimit . ' sec)', |
|
| 1153 | + 'SMTP -> get_lines(): timelimit reached ('. |
|
| 1154 | + $this->Timelimit.' sec)', |
|
| 1155 | 1155 | self::DEBUG_LOWLEVEL |
| 1156 | 1156 | ); |
| 1157 | 1157 | break; |
@@ -888,7 +888,7 @@ discard block |
||
| 888 | 888 | protected function sendCommand($command, $commandstring, $expect) |
| 889 | 889 | { |
| 890 | 890 | if (!$this->connected()) { |
| 891 | - $this->setError("Called $command without being connected"); |
|
| 891 | + $this->setError("called $command without being connected"); |
|
| 892 | 892 | |
| 893 | 893 | return false; |
| 894 | 894 | } |
@@ -970,7 +970,7 @@ discard block |
||
| 970 | 970 | */ |
| 971 | 971 | public function verify($name) |
| 972 | 972 | { |
| 973 | - return $this->sendCommand('VRFY', "VRFY $name", [250, 251]); |
|
| 973 | + return $this->sendCommand('VRFY', "vrfy $name", [250, 251]); |
|
| 974 | 974 | } |
| 975 | 975 | |
| 976 | 976 | /** |
@@ -177,7 +177,7 @@ discard block |
||
| 177 | 177 | * MODX_MANAGER_PATH."includes/extenders/ex_{$extname}.inc.php" |
| 178 | 178 | * $extname - extension name in lowercase |
| 179 | 179 | * |
| 180 | - * @param $extname |
|
| 180 | + * @param string $extname |
|
| 181 | 181 | * @param bool $reload |
| 182 | 182 | * @return bool |
| 183 | 183 | */ |
@@ -218,9 +218,9 @@ discard block |
||
| 218 | 218 | * |
| 219 | 219 | * @param string $url |
| 220 | 220 | * @param int $count_attempts |
| 221 | - * @param string|type $type $type |
|
| 222 | - * @param string|type $responseCode |
|
| 223 | - * @return bool |
|
| 221 | + * @param string $type $type |
|
| 222 | + * @param string $responseCode |
|
| 223 | + * @return false|null |
|
| 224 | 224 | * @global string $base_url |
| 225 | 225 | * @global string $site_url |
| 226 | 226 | */ |
@@ -915,7 +915,7 @@ discard block |
||
| 915 | 915 | } |
| 916 | 916 | |
| 917 | 917 | /** |
| 918 | - * @param $contents |
|
| 918 | + * @param string $contents |
|
| 919 | 919 | * @return mixed |
| 920 | 920 | */ |
| 921 | 921 | function RecoveryEscapedTags($contents) |
@@ -939,7 +939,7 @@ discard block |
||
| 939 | 939 | } |
| 940 | 940 | |
| 941 | 941 | /** |
| 942 | - * @param $tstart |
|
| 942 | + * @param double $tstart |
|
| 943 | 943 | * @return array |
| 944 | 944 | */ |
| 945 | 945 | function getTimerStats($tstart) |
@@ -1692,7 +1692,7 @@ discard block |
||
| 1692 | 1692 | |
| 1693 | 1693 | /** |
| 1694 | 1694 | * Remove Comment-Tags from output like <!--@- Comment -@--> |
| 1695 | - * @param $content |
|
| 1695 | + * @param string $content |
|
| 1696 | 1696 | * @param string $left |
| 1697 | 1697 | * @param string $right |
| 1698 | 1698 | * @return mixed |
@@ -1862,7 +1862,7 @@ discard block |
||
| 1862 | 1862 | /** |
| 1863 | 1863 | * Run snippets as per the tags in $documentSource and replace the tags with the returned values. |
| 1864 | 1864 | * |
| 1865 | - * @param $content |
|
| 1865 | + * @param string $content |
|
| 1866 | 1866 | * @return string |
| 1867 | 1867 | * @internal param string $documentSource |
| 1868 | 1868 | */ |
@@ -2901,7 +2901,7 @@ discard block |
||
| 2901 | 2901 | |
| 2902 | 2902 | /** |
| 2903 | 2903 | * @param $templateID |
| 2904 | - * @return mixed |
|
| 2904 | + * @return string |
|
| 2905 | 2905 | */ |
| 2906 | 2906 | function _getTemplateCodeFromDB($templateID) |
| 2907 | 2907 | { |
@@ -2942,9 +2942,9 @@ discard block |
||
| 2942 | 2942 | } |
| 2943 | 2943 | |
| 2944 | 2944 | /** |
| 2945 | - * @param $id |
|
| 2945 | + * @param integer $id |
|
| 2946 | 2946 | * @param int $top |
| 2947 | - * @return mixed |
|
| 2947 | + * @return string |
|
| 2948 | 2948 | */ |
| 2949 | 2949 | function getUltimateParentId($id, $top = 0) |
| 2950 | 2950 | { |
@@ -3275,7 +3275,7 @@ discard block |
||
| 3275 | 3275 | * |
| 3276 | 3276 | * @param int $type Types: 1=template, 2=tv, 3=chunk, 4=snippet, 5=plugin, 6=module, 7=resource, 8=role |
| 3277 | 3277 | * @param int $id Element- / Resource-id |
| 3278 | - * @return bool |
|
| 3278 | + * @return false|null |
|
| 3279 | 3279 | */ |
| 3280 | 3280 | function lockElement($type, $id) |
| 3281 | 3281 | { |
@@ -3297,7 +3297,7 @@ discard block |
||
| 3297 | 3297 | * @param int $type Types: 1=template, 2=tv, 3=chunk, 4=snippet, 5=plugin, 6=module, 7=resource, 8=role |
| 3298 | 3298 | * @param int $id Element- / Resource-id |
| 3299 | 3299 | * @param bool $includeAllUsers true = Deletes not only own user-locks |
| 3300 | - * @return bool |
|
| 3300 | + * @return false|null |
|
| 3301 | 3301 | */ |
| 3302 | 3302 | function unlockElement($type, $id, $includeAllUsers = false) |
| 3303 | 3303 | { |
@@ -3909,7 +3909,7 @@ discard block |
||
| 3909 | 3909 | * |
| 3910 | 3910 | * @param string $type |
| 3911 | 3911 | * @param bool $report |
| 3912 | - * @return bool |
|
| 3912 | + * @return boolean|null |
|
| 3913 | 3913 | */ |
| 3914 | 3914 | function clearCache($type = '', $report = false) |
| 3915 | 3915 | { |
@@ -5256,7 +5256,7 @@ discard block |
||
| 5256 | 5256 | * Remove event listener - only for use within the current execution cycle |
| 5257 | 5257 | * |
| 5258 | 5258 | * @param string $evtName |
| 5259 | - * @return boolean |
|
| 5259 | + * @return false|null |
|
| 5260 | 5260 | */ |
| 5261 | 5261 | function removeEventListener($evtName) |
| 5262 | 5262 | { |
@@ -5280,7 +5280,7 @@ discard block |
||
| 5280 | 5280 | * |
| 5281 | 5281 | * @param string $evtName |
| 5282 | 5282 | * @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. |
| 5283 | - * @return boolean|array |
|
| 5283 | + * @return false|null |
|
| 5284 | 5284 | */ |
| 5285 | 5285 | function invokeEvent($evtName, $extParams = array()) |
| 5286 | 5286 | { |
@@ -5701,7 +5701,7 @@ discard block |
||
| 5701 | 5701 | |
| 5702 | 5702 | /** |
| 5703 | 5703 | * @param string $string |
| 5704 | - * @return mixed|string |
|
| 5704 | + * @return string |
|
| 5705 | 5705 | */ |
| 5706 | 5706 | function removeSanitizeSeed($string = '') |
| 5707 | 5707 | { |
@@ -5716,7 +5716,7 @@ discard block |
||
| 5716 | 5716 | |
| 5717 | 5717 | /** |
| 5718 | 5718 | * @param string $content |
| 5719 | - * @return mixed|string |
|
| 5719 | + * @return string |
|
| 5720 | 5720 | */ |
| 5721 | 5721 | function cleanUpMODXTags($content = '') |
| 5722 | 5722 | { |
@@ -5879,7 +5879,7 @@ discard block |
||
| 5879 | 5879 | |
| 5880 | 5880 | /** |
| 5881 | 5881 | * @param string $str |
| 5882 | - * @return bool|mixed|string |
|
| 5882 | + * @return string |
|
| 5883 | 5883 | */ |
| 5884 | 5884 | function atBindFileContent($str = '') |
| 5885 | 5885 | { |
@@ -5930,8 +5930,8 @@ discard block |
||
| 5930 | 5930 | } |
| 5931 | 5931 | |
| 5932 | 5932 | /** |
| 5933 | - * @param $str |
|
| 5934 | - * @return bool|string |
|
| 5933 | + * @param string $str |
|
| 5934 | + * @return false|string |
|
| 5935 | 5935 | */ |
| 5936 | 5936 | function getExtFromFilename($str) |
| 5937 | 5937 | { |
@@ -5959,7 +5959,7 @@ discard block |
||
| 5959 | 5959 | * @param string $text Error message |
| 5960 | 5960 | * @param string $file File where the error was detected |
| 5961 | 5961 | * @param string $line Line number within $file |
| 5962 | - * @return boolean |
|
| 5962 | + * @return boolean|null |
|
| 5963 | 5963 | */ |
| 5964 | 5964 | function phpError($nr, $text, $file, $line) |
| 5965 | 5965 | { |
@@ -6011,7 +6011,7 @@ discard block |
||
| 6011 | 6011 | * @param string $text |
| 6012 | 6012 | * @param string $line |
| 6013 | 6013 | * @param string $output |
| 6014 | - * @return bool |
|
| 6014 | + * @return null|boolean |
|
| 6015 | 6015 | */ |
| 6016 | 6016 | function messageQuit($msg = 'unspecified error', $query = '', $is_error = true, $nr = '', $file = '', $source = '', $text = '', $line = '', $output = '') |
| 6017 | 6017 | { |
@@ -6434,7 +6434,7 @@ discard block |
||
| 6434 | 6434 | |
| 6435 | 6435 | /** |
| 6436 | 6436 | * @param string $str |
| 6437 | - * @return bool|mixed|string |
|
| 6437 | + * @return string |
|
| 6438 | 6438 | */ |
| 6439 | 6439 | function atBindInclude($str = '') |
| 6440 | 6440 | { |
@@ -6493,7 +6493,7 @@ discard block |
||
| 6493 | 6493 | } |
| 6494 | 6494 | |
| 6495 | 6495 | /** |
| 6496 | - * @param $string |
|
| 6496 | + * @param string $string |
|
| 6497 | 6497 | * @param bool $returnData |
| 6498 | 6498 | * @return bool|mixed |
| 6499 | 6499 | */ |
@@ -2224,11 +2224,11 @@ discard block |
||
| 2224 | 2224 | if (isset($this->snippetCache[$snip_name])) { |
| 2225 | 2225 | $snippetObject['name'] = $snip_name; |
| 2226 | 2226 | $snippetObject['content'] = $this->snippetCache[$snip_name]; |
| 2227 | - if (isset($this->snippetCache["{$snip_name}Props"])) { |
|
| 2228 | - if (!isset($this->snippetCache["{$snip_name}Props"])) { |
|
| 2229 | - $this->snippetCache["{$snip_name}Props"] = ''; |
|
| 2227 | + if (isset($this->snippetCache["{$snip_name}props"])) { |
|
| 2228 | + if (!isset($this->snippetCache["{$snip_name}props"])) { |
|
| 2229 | + $this->snippetCache["{$snip_name}props"] = ''; |
|
| 2230 | 2230 | } |
| 2231 | - $snippetObject['properties'] = $this->snippetCache["{$snip_name}Props"]; |
|
| 2231 | + $snippetObject['properties'] = $this->snippetCache["{$snip_name}props"]; |
|
| 2232 | 2232 | } |
| 2233 | 2233 | } elseif (substr($snip_name, 0, 1) === '@' && isset($this->pluginEvent[trim($snip_name, '@')])) { |
| 2234 | 2234 | $snippetObject['name'] = trim($snip_name, '@'); |
@@ -2253,7 +2253,7 @@ discard block |
||
| 2253 | 2253 | $snippetObject['content'] = $snip_content; |
| 2254 | 2254 | $snippetObject['properties'] = $snip_prop; |
| 2255 | 2255 | $this->snippetCache[$snip_name] = $snip_content; |
| 2256 | - $this->snippetCache["{$snip_name}Props"] = $snip_prop; |
|
| 2256 | + $this->snippetCache["{$snip_name}props"] = $snip_prop; |
|
| 2257 | 2257 | } |
| 2258 | 2258 | return $snippetObject; |
| 2259 | 2259 | } |
@@ -3569,7 +3569,7 @@ discard block |
||
| 3569 | 3569 | } |
| 3570 | 3570 | // build query |
| 3571 | 3571 | $access = ($this->isFrontend() ? "sc.privateweb=0" : "1='" . $_SESSION['mgrRole'] . "' OR sc.privatemgr=0") . (!$docgrp ? "" : " OR dg.document_group IN ($docgrp)"); |
| 3572 | - $result = $this->db->select("DISTINCT {$fields}", "{$tblsc} sc |
|
| 3572 | + $result = $this->db->select("distinct {$fields}", "{$tblsc} sc |
|
| 3573 | 3573 | LEFT JOIN {$tbldg} dg on dg.document = sc.id", "sc.parent = '{$id}' AND ({$access}) GROUP BY sc.id", "{$sort} {$dir}"); |
| 3574 | 3574 | $resourceArray = $this->db->makeArray($result); |
| 3575 | 3575 | $this->tmpCache[__FUNCTION__][$cacheKey] = $resourceArray; |
@@ -3606,7 +3606,7 @@ discard block |
||
| 3606 | 3606 | } |
| 3607 | 3607 | // build query |
| 3608 | 3608 | $access = ($this->isFrontend() ? "sc.privateweb=0" : "1='" . $_SESSION['mgrRole'] . "' OR sc.privatemgr=0") . (!$docgrp ? "" : " OR dg.document_group IN ($docgrp)"); |
| 3609 | - $result = $this->db->select("DISTINCT {$fields}", "{$tblsc} sc |
|
| 3609 | + $result = $this->db->select("distinct {$fields}", "{$tblsc} sc |
|
| 3610 | 3610 | LEFT JOIN {$tbldg} dg on dg.document = sc.id", "sc.parent = '{$id}' AND sc.published=1 AND sc.deleted=0 AND ({$access}) GROUP BY sc.id", "{$sort} {$dir}"); |
| 3611 | 3611 | $resourceArray = $this->db->makeArray($result); |
| 3612 | 3612 | |
@@ -3662,7 +3662,7 @@ discard block |
||
| 3662 | 3662 | $tblsc = $this->getFullTableName('site_content'); |
| 3663 | 3663 | $tbldg = $this->getFullTableName('document_groups'); |
| 3664 | 3664 | |
| 3665 | - $result = $this->db->select("DISTINCT {$fields}", "{$tblsc} sc |
|
| 3665 | + $result = $this->db->select("distinct {$fields}", "{$tblsc} sc |
|
| 3666 | 3666 | LEFT JOIN {$tbldg} dg on dg.document = sc.id", "sc.parent = '{$parentid}' {$published} {$deleted} {$where} AND ({$access}) GROUP BY sc.id", ($sort ? "{$sort} {$dir}" : ""), $limit); |
| 3667 | 3667 | |
| 3668 | 3668 | $resourceArray = $this->db->makeArray($result); |
@@ -3728,7 +3728,7 @@ discard block |
||
| 3728 | 3728 | $tblsc = $this->getFullTableName('site_content'); |
| 3729 | 3729 | $tbldg = $this->getFullTableName('document_groups'); |
| 3730 | 3730 | |
| 3731 | - $result = $this->db->select("DISTINCT {$fields}", "{$tblsc} sc |
|
| 3731 | + $result = $this->db->select("distinct {$fields}", "{$tblsc} sc |
|
| 3732 | 3732 | LEFT JOIN {$tbldg} dg on dg.document = sc.id", "(sc.id IN (" . implode(',', $ids) . ") {$published} {$deleted} {$where}) AND ({$access}) GROUP BY sc.id", ($sort ? "{$sort} {$dir}" : ""), $limit); |
| 3733 | 3733 | |
| 3734 | 3734 | $resourceArray = $this->db->makeArray($result); |
@@ -4320,7 +4320,7 @@ discard block |
||
| 4320 | 4320 | $template = $doc['content']; |
| 4321 | 4321 | break; |
| 4322 | 4322 | case 'SELECT': |
| 4323 | - $this->db->getValue($this->db->query("SELECT {$template}")); |
|
| 4323 | + $this->db->getValue($this->db->query("select {$template}")); |
|
| 4324 | 4324 | break; |
| 4325 | 4325 | default: |
| 4326 | 4326 | if (!($template = $this->getChunk($tpl))) { |
@@ -126,7 +126,7 @@ discard block |
||
| 126 | 126 | */ |
| 127 | 127 | function __call($method_name, $arguments) |
| 128 | 128 | { |
| 129 | - include_once(MODX_MANAGER_PATH . 'includes/extenders/deprecated.functions.inc.php'); |
|
| 129 | + include_once(MODX_MANAGER_PATH.'includes/extenders/deprecated.functions.inc.php'); |
|
| 130 | 130 | if (method_exists($this->old, $method_name)) { |
| 131 | 131 | $error_type = 1; |
| 132 | 132 | } else { |
@@ -144,12 +144,12 @@ discard block |
||
| 144 | 144 | $info = debug_backtrace(); |
| 145 | 145 | $m[] = $msg; |
| 146 | 146 | if (!empty($this->currentSnippet)) { |
| 147 | - $m[] = 'Snippet - ' . $this->currentSnippet; |
|
| 147 | + $m[] = 'Snippet - '.$this->currentSnippet; |
|
| 148 | 148 | } elseif (!empty($this->event->activePlugin)) { |
| 149 | - $m[] = 'Plugin - ' . $this->event->activePlugin; |
|
| 149 | + $m[] = 'Plugin - '.$this->event->activePlugin; |
|
| 150 | 150 | } |
| 151 | 151 | $m[] = $this->decoded_request_uri; |
| 152 | - $m[] = str_replace('\\', '/', $info[0]['file']) . '(line:' . $info[0]['line'] . ')'; |
|
| 152 | + $m[] = str_replace('\\', '/', $info[0]['file']).'(line:'.$info[0]['line'].')'; |
|
| 153 | 153 | $msg = implode('<br />', $m); |
| 154 | 154 | $this->logEvent(0, $error_type, $msg, $title); |
| 155 | 155 | } |
@@ -166,7 +166,7 @@ discard block |
||
| 166 | 166 | { |
| 167 | 167 | $flag = false; |
| 168 | 168 | if (is_scalar($connector) && !empty($connector) && isset($this->{$connector}) && $this->{$connector} instanceof DBAPI) { |
| 169 | - $flag = (bool)$this->{$connector}->conn; |
|
| 169 | + $flag = (bool) $this->{$connector}->conn; |
|
| 170 | 170 | } |
| 171 | 171 | return $flag; |
| 172 | 172 | } |
@@ -193,7 +193,7 @@ discard block |
||
| 193 | 193 | } |
| 194 | 194 | if (!$out && $flag) { |
| 195 | 195 | $extname = trim(str_replace(array('..', '/', '\\'), '', strtolower($extname))); |
| 196 | - $filename = MODX_MANAGER_PATH . "includes/extenders/ex_{$extname}.inc.php"; |
|
| 196 | + $filename = MODX_MANAGER_PATH."includes/extenders/ex_{$extname}.inc.php"; |
|
| 197 | 197 | $out = is_file($filename) ? include $filename : false; |
| 198 | 198 | } |
| 199 | 199 | if ($out && !in_array($extname, $this->extensions)) { |
@@ -210,7 +210,7 @@ discard block |
||
| 210 | 210 | function getMicroTime() |
| 211 | 211 | { |
| 212 | 212 | list ($usec, $sec) = explode(' ', microtime()); |
| 213 | - return ((float)$usec + (float)$sec); |
|
| 213 | + return ((float) $usec + (float) $sec); |
|
| 214 | 214 | } |
| 215 | 215 | |
| 216 | 216 | /** |
@@ -233,7 +233,7 @@ discard block |
||
| 233 | 233 | // append the redirect count string to the url |
| 234 | 234 | $currentNumberOfRedirects = isset ($_REQUEST['err']) ? $_REQUEST['err'] : 0; |
| 235 | 235 | if ($currentNumberOfRedirects > 3) { |
| 236 | - $this->messageQuit('Redirection attempt failed - please ensure the document you\'re trying to redirect to exists. <p>Redirection URL: <i>' . $url . '</i></p>'); |
|
| 236 | + $this->messageQuit('Redirection attempt failed - please ensure the document you\'re trying to redirect to exists. <p>Redirection URL: <i>'.$url.'</i></p>'); |
|
| 237 | 237 | } else { |
| 238 | 238 | $currentNumberOfRedirects += 1; |
| 239 | 239 | if (strpos($url, "?") > 0) { |
@@ -244,9 +244,9 @@ discard block |
||
| 244 | 244 | } |
| 245 | 245 | } |
| 246 | 246 | if ($type == 'REDIRECT_REFRESH') { |
| 247 | - $header = 'Refresh: 0;URL=' . $url; |
|
| 247 | + $header = 'Refresh: 0;URL='.$url; |
|
| 248 | 248 | } elseif ($type == 'REDIRECT_META') { |
| 249 | - $header = '<META HTTP-EQUIV="Refresh" CONTENT="0; URL=' . $url . '" />'; |
|
| 249 | + $header = '<META HTTP-EQUIV="Refresh" CONTENT="0; URL='.$url.'" />'; |
|
| 250 | 250 | echo $header; |
| 251 | 251 | exit; |
| 252 | 252 | } elseif ($type == 'REDIRECT_HEADER' || empty ($type)) { |
@@ -254,10 +254,10 @@ discard block |
||
| 254 | 254 | global $base_url, $site_url; |
| 255 | 255 | if (substr($url, 0, strlen($base_url)) == $base_url) { |
| 256 | 256 | // append $site_url to make it work with Location: |
| 257 | - $url = $site_url . substr($url, strlen($base_url)); |
|
| 257 | + $url = $site_url.substr($url, strlen($base_url)); |
|
| 258 | 258 | } |
| 259 | 259 | if (strpos($url, "\n") === false) { |
| 260 | - $header = 'Location: ' . $url; |
|
| 260 | + $header = 'Location: '.$url; |
|
| 261 | 261 | } else { |
| 262 | 262 | $this->messageQuit('No newline allowed in redirect url.'); |
| 263 | 263 | } |
@@ -366,8 +366,8 @@ discard block |
||
| 366 | 366 | |
| 367 | 367 | private function recoverySiteCache() |
| 368 | 368 | { |
| 369 | - $site_cache_dir = MODX_BASE_PATH . $this->getCacheFolder(); |
|
| 370 | - $site_cache_path = $site_cache_dir . 'siteCache.idx.php'; |
|
| 369 | + $site_cache_dir = MODX_BASE_PATH.$this->getCacheFolder(); |
|
| 370 | + $site_cache_path = $site_cache_dir.'siteCache.idx.php'; |
|
| 371 | 371 | |
| 372 | 372 | if (is_file($site_cache_path)) { |
| 373 | 373 | include($site_cache_path); |
@@ -376,7 +376,7 @@ discard block |
||
| 376 | 376 | return; |
| 377 | 377 | } |
| 378 | 378 | |
| 379 | - include_once(MODX_MANAGER_PATH . 'processors/cache_sync.class.processor.php'); |
|
| 379 | + include_once(MODX_MANAGER_PATH.'processors/cache_sync.class.processor.php'); |
|
| 380 | 380 | $cache = new synccache(); |
| 381 | 381 | $cache->setCachepath($site_cache_dir); |
| 382 | 382 | $cache->setReport(false); |
@@ -427,8 +427,8 @@ discard block |
||
| 427 | 427 | $this->invokeEvent("OnBeforeManagerPageInit"); |
| 428 | 428 | } |
| 429 | 429 | |
| 430 | - if (isset ($_SESSION[$usrType . 'UsrConfigSet'])) { |
|
| 431 | - $usrSettings = &$_SESSION[$usrType . 'UsrConfigSet']; |
|
| 430 | + if (isset ($_SESSION[$usrType.'UsrConfigSet'])) { |
|
| 431 | + $usrSettings = &$_SESSION[$usrType.'UsrConfigSet']; |
|
| 432 | 432 | } else { |
| 433 | 433 | if ($usrType == 'web') { |
| 434 | 434 | $from = $tbl_web_user_settings; |
@@ -448,7 +448,7 @@ discard block |
||
| 448 | 448 | $usrSettings[$row['setting_name']] = $row['setting_value']; |
| 449 | 449 | } |
| 450 | 450 | if (isset ($usrType)) { |
| 451 | - $_SESSION[$usrType . 'UsrConfigSet'] = $usrSettings; |
|
| 451 | + $_SESSION[$usrType.'UsrConfigSet'] = $usrSettings; |
|
| 452 | 452 | } // store user settings in session |
| 453 | 453 | } |
| 454 | 454 | } |
@@ -593,10 +593,10 @@ discard block |
||
| 593 | 593 | $suf = $this->config['friendly_url_suffix']; |
| 594 | 594 | $pre = preg_quote($pre, '/'); |
| 595 | 595 | $suf = preg_quote($suf, '/'); |
| 596 | - if ($pre && preg_match('@^' . $pre . '(.*)$@', $q, $_)) { |
|
| 596 | + if ($pre && preg_match('@^'.$pre.'(.*)$@', $q, $_)) { |
|
| 597 | 597 | $q = $_[1]; |
| 598 | 598 | } |
| 599 | - if ($suf && preg_match('@(.*)' . $suf . '$@', $q, $_)) { |
|
| 599 | + if ($suf && preg_match('@(.*)'.$suf.'$@', $q, $_)) { |
|
| 600 | 600 | $q = $_[1]; |
| 601 | 601 | } |
| 602 | 602 | |
@@ -618,7 +618,7 @@ discard block |
||
| 618 | 618 | if (preg_match('@^[1-9][0-9]*$@', $q) && !isset($this->documentListing[$q])) { /* we got an ID returned, check to make sure it's not an alias */ |
| 619 | 619 | /* FS#476 and FS#308: check that id is valid in terms of virtualDir structure */ |
| 620 | 620 | if ($this->config['use_alias_path'] == 1) { |
| 621 | - if (($this->virtualDir != '' && !isset($this->documentListing[$this->virtualDir . '/' . $q]) || ($this->virtualDir == '' && !isset($this->documentListing[$q]))) && (($this->virtualDir != '' && isset($this->documentListing[$this->virtualDir]) && in_array($q, $this->getChildIds($this->documentListing[$this->virtualDir], 1))) || ($this->virtualDir == '' && in_array($q, $this->getChildIds(0, 1))))) { |
|
| 621 | + if (($this->virtualDir != '' && !isset($this->documentListing[$this->virtualDir.'/'.$q]) || ($this->virtualDir == '' && !isset($this->documentListing[$q]))) && (($this->virtualDir != '' && isset($this->documentListing[$this->virtualDir]) && in_array($q, $this->getChildIds($this->documentListing[$this->virtualDir], 1))) || ($this->virtualDir == '' && in_array($q, $this->getChildIds(0, 1))))) { |
|
| 622 | 622 | $this->documentMethod = 'id'; |
| 623 | 623 | return $q; |
| 624 | 624 | } else { /* not a valid id in terms of virtualDir, treat as alias */ |
@@ -652,7 +652,7 @@ discard block |
||
| 652 | 652 | */ |
| 653 | 653 | public function getHashFile($key) |
| 654 | 654 | { |
| 655 | - return $this->getCacheFolder() . "docid_" . $key . ".pageCache.php"; |
|
| 655 | + return $this->getCacheFolder()."docid_".$key.".pageCache.php"; |
|
| 656 | 656 | } |
| 657 | 657 | |
| 658 | 658 | /** |
@@ -663,9 +663,9 @@ discard block |
||
| 663 | 663 | $hash = $id; |
| 664 | 664 | $tmp = null; |
| 665 | 665 | $params = array(); |
| 666 | - if(!empty($this->systemCacheKey)){ |
|
| 666 | + if (!empty($this->systemCacheKey)) { |
|
| 667 | 667 | $hash = $this->systemCacheKey; |
| 668 | - }else { |
|
| 668 | + } else { |
|
| 669 | 669 | if (!empty($_GET)) { |
| 670 | 670 | // Sort GET parameters so that the order of parameters on the HTTP request don't affect the generated cache ID. |
| 671 | 671 | $params = $_GET; |
@@ -673,8 +673,8 @@ discard block |
||
| 673 | 673 | $hash .= '_'.md5(http_build_query($params)); |
| 674 | 674 | } |
| 675 | 675 | } |
| 676 | - $evtOut = $this->invokeEvent("OnMakePageCacheKey", array ("hash" => $hash, "id" => $id, 'params' => $params)); |
|
| 677 | - if (is_array($evtOut) && count($evtOut) > 0){ |
|
| 676 | + $evtOut = $this->invokeEvent("OnMakePageCacheKey", array("hash" => $hash, "id" => $id, 'params' => $params)); |
|
| 677 | + if (is_array($evtOut) && count($evtOut) > 0) { |
|
| 678 | 678 | $tmp = array_pop($evtOut); |
| 679 | 679 | } |
| 680 | 680 | return empty($tmp) ? $hash : $tmp; |
@@ -816,12 +816,12 @@ discard block |
||
| 816 | 816 | if ($js = $this->getRegisteredClientStartupScripts()) { |
| 817 | 817 | // change to just before closing </head> |
| 818 | 818 | // $this->documentContent = preg_replace("/(<head[^>]*>)/i", "\\1\n".$js, $this->documentContent); |
| 819 | - $this->documentOutput = preg_replace("/(<\/head>)/i", $js . "\n\\1", $this->documentOutput); |
|
| 819 | + $this->documentOutput = preg_replace("/(<\/head>)/i", $js."\n\\1", $this->documentOutput); |
|
| 820 | 820 | } |
| 821 | 821 | |
| 822 | 822 | // Insert jscripts & html block into template - template must have a </body> tag |
| 823 | 823 | if ($js = $this->getRegisteredClientScripts()) { |
| 824 | - $this->documentOutput = preg_replace("/(<\/body>)/i", $js . "\n\\1", $this->documentOutput); |
|
| 824 | + $this->documentOutput = preg_replace("/(<\/body>)/i", $js."\n\\1", $this->documentOutput); |
|
| 825 | 825 | } |
| 826 | 826 | // End fix by sirlancelot |
| 827 | 827 | |
@@ -832,7 +832,7 @@ discard block |
||
| 832 | 832 | // send out content-type and content-disposition headers |
| 833 | 833 | if (IN_PARSER_MODE == "true") { |
| 834 | 834 | $type = !empty ($this->contentTypes[$this->documentIdentifier]) ? $this->contentTypes[$this->documentIdentifier] : "text/html"; |
| 835 | - header('Content-Type: ' . $type . '; charset=' . $this->config['modx_charset']); |
|
| 835 | + header('Content-Type: '.$type.'; charset='.$this->config['modx_charset']); |
|
| 836 | 836 | // if (($this->documentIdentifier == $this->config['error_page']) || $redirect_error) |
| 837 | 837 | // header('HTTP/1.0 404 Not Found'); |
| 838 | 838 | if (!$this->checkPreview() && $this->documentObject['content_dispo'] == 1) { |
@@ -850,7 +850,7 @@ discard block |
||
| 850 | 850 | $name = preg_replace('|-+|', '-', $name); |
| 851 | 851 | $name = trim($name, '-'); |
| 852 | 852 | } |
| 853 | - $header = 'Content-Disposition: attachment; filename=' . $name; |
|
| 853 | + $header = 'Content-Disposition: attachment; filename='.$name; |
|
| 854 | 854 | header($header); |
| 855 | 855 | } |
| 856 | 856 | } |
@@ -858,7 +858,7 @@ discard block |
||
| 858 | 858 | |
| 859 | 859 | $stats = $this->getTimerStats($this->tstart); |
| 860 | 860 | |
| 861 | - $out =& $this->documentOutput; |
|
| 861 | + $out = & $this->documentOutput; |
|
| 862 | 862 | $out = str_replace("[^q^]", $stats['queries'], $out); |
| 863 | 863 | $out = str_replace("[^qt^]", $stats['queryTime'], $out); |
| 864 | 864 | $out = str_replace("[^p^]", $stats['phpTime'], $out); |
@@ -897,17 +897,17 @@ discard block |
||
| 897 | 897 | $sc .= sprintf("%s. %s (%s)<br>", $s, $sname, sprintf("%2.2f ms", $t)); // currentSnippet |
| 898 | 898 | $tt += $t; |
| 899 | 899 | } |
| 900 | - echo "<fieldset><legend><b>Snippets</b> (" . count($this->snippetsTime) . " / " . sprintf("%2.2f ms", $tt) . ")</legend>{$sc}</fieldset><br />"; |
|
| 900 | + echo "<fieldset><legend><b>Snippets</b> (".count($this->snippetsTime)." / ".sprintf("%2.2f ms", $tt).")</legend>{$sc}</fieldset><br />"; |
|
| 901 | 901 | echo $this->snippetsCode; |
| 902 | 902 | } |
| 903 | 903 | if ($this->dumpPlugins) { |
| 904 | 904 | $ps = ""; |
| 905 | 905 | $tt = 0; |
| 906 | 906 | foreach ($this->pluginsTime as $s => $t) { |
| 907 | - $ps .= "$s (" . sprintf("%2.2f ms", $t * 1000) . ")<br>"; |
|
| 907 | + $ps .= "$s (".sprintf("%2.2f ms", $t * 1000).")<br>"; |
|
| 908 | 908 | $tt += $t; |
| 909 | 909 | } |
| 910 | - echo "<fieldset><legend><b>Plugins</b> (" . count($this->pluginsTime) . " / " . sprintf("%2.2f ms", $tt * 1000) . ")</legend>{$ps}</fieldset><br />"; |
|
| 910 | + echo "<fieldset><legend><b>Plugins</b> (".count($this->pluginsTime)." / ".sprintf("%2.2f ms", $tt * 1000).")</legend>{$ps}</fieldset><br />"; |
|
| 911 | 911 | echo $this->pluginsCode; |
| 912 | 912 | } |
| 913 | 913 | |
@@ -933,7 +933,7 @@ discard block |
||
| 933 | 933 | $srcTags = explode(',', $tags); |
| 934 | 934 | $repTags = array(); |
| 935 | 935 | foreach ($srcTags as $tag) { |
| 936 | - $repTags[] = '\\' . $tag[0] . '\\' . $tag[1]; |
|
| 936 | + $repTags[] = '\\'.$tag[0].'\\'.$tag[1]; |
|
| 937 | 937 | } |
| 938 | 938 | return array($srcTags, $repTags); |
| 939 | 939 | } |
@@ -955,7 +955,7 @@ discard block |
||
| 955 | 955 | $stats['phpTime'] = sprintf("%2.4f s", $stats['phpTime']); |
| 956 | 956 | $stats['source'] = $this->documentGenerated == 1 ? "database" : "cache"; |
| 957 | 957 | $stats['queries'] = isset ($this->executedQueries) ? $this->executedQueries : 0; |
| 958 | - $stats['phpMemory'] = (memory_get_peak_usage(true) / 1024 / 1024) . " mb"; |
|
| 958 | + $stats['phpMemory'] = (memory_get_peak_usage(true) / 1024 / 1024)." mb"; |
|
| 959 | 959 | |
| 960 | 960 | return $stats; |
| 961 | 961 | } |
@@ -988,7 +988,7 @@ discard block |
||
| 988 | 988 | { |
| 989 | 989 | $cacheRefreshTime = 0; |
| 990 | 990 | $recent_update = 0; |
| 991 | - @include(MODX_BASE_PATH . $this->getCacheFolder() . 'sitePublishing.idx.php'); |
|
| 991 | + @include(MODX_BASE_PATH.$this->getCacheFolder().'sitePublishing.idx.php'); |
|
| 992 | 992 | $this->recentUpdate = $recent_update; |
| 993 | 993 | |
| 994 | 994 | $timeNow = $_SERVER['REQUEST_TIME'] + $this->config['server_offset_time']; |
@@ -1042,8 +1042,8 @@ discard block |
||
| 1042 | 1042 | } |
| 1043 | 1043 | |
| 1044 | 1044 | $docObjSerial = serialize($this->documentObject); |
| 1045 | - $cacheContent = $docObjSerial . "<!--__MODxCacheSpliter__-->" . $this->documentContent; |
|
| 1046 | - $page_cache_path = MODX_BASE_PATH . $this->getHashFile($this->cacheKey); |
|
| 1045 | + $cacheContent = $docObjSerial."<!--__MODxCacheSpliter__-->".$this->documentContent; |
|
| 1046 | + $page_cache_path = MODX_BASE_PATH.$this->getHashFile($this->cacheKey); |
|
| 1047 | 1047 | file_put_contents($page_cache_path, "<?php die('Unauthorized access.'); ?>$cacheContent"); |
| 1048 | 1048 | } |
| 1049 | 1049 | } |
@@ -1085,16 +1085,16 @@ discard block |
||
| 1085 | 1085 | return array(); |
| 1086 | 1086 | } |
| 1087 | 1087 | $spacer = md5('<<<EVO>>>'); |
| 1088 | - if($left==='{{' && strpos($content,';}}')!==false) $content = str_replace(';}}', sprintf(';}%s}', $spacer),$content); |
|
| 1089 | - if($left==='{{' && strpos($content,'{{}}')!==false) $content = str_replace('{{}}',sprintf('{%$1s{}%$1s}',$spacer),$content); |
|
| 1090 | - if($left==='[[' && strpos($content,']]]]')!==false) $content = str_replace(']]]]',sprintf(']]%s]]', $spacer),$content); |
|
| 1091 | - if($left==='[[' && strpos($content,']]]')!==false) $content = str_replace(']]]', sprintf(']%s]]', $spacer),$content); |
|
| 1088 | + if ($left === '{{' && strpos($content, ';}}') !== false) $content = str_replace(';}}', sprintf(';}%s}', $spacer), $content); |
|
| 1089 | + if ($left === '{{' && strpos($content, '{{}}') !== false) $content = str_replace('{{}}', sprintf('{%$1s{}%$1s}', $spacer), $content); |
|
| 1090 | + if ($left === '[[' && strpos($content, ']]]]') !== false) $content = str_replace(']]]]', sprintf(']]%s]]', $spacer), $content); |
|
| 1091 | + if ($left === '[[' && strpos($content, ']]]') !== false) $content = str_replace(']]]', sprintf(']%s]]', $spacer), $content); |
|
| 1092 | 1092 | |
| 1093 | 1093 | $pos['<![CDATA['] = strpos($content, '<![CDATA['); |
| 1094 | 1094 | $pos[']]>'] = strpos($content, ']]>'); |
| 1095 | 1095 | |
| 1096 | 1096 | if ($pos['<![CDATA['] !== false && $pos[']]>'] !== false) { |
| 1097 | - $content = substr($content, 0, $pos['<![CDATA[']) . substr($content, $pos[']]>'] + 3); |
|
| 1097 | + $content = substr($content, 0, $pos['<![CDATA[']).substr($content, $pos[']]>'] + 3); |
|
| 1098 | 1098 | } |
| 1099 | 1099 | |
| 1100 | 1100 | $lp = explode($left, $content); |
@@ -1158,8 +1158,8 @@ discard block |
||
| 1158 | 1158 | } |
| 1159 | 1159 | } |
| 1160 | 1160 | } |
| 1161 | - foreach($tags as $i=>$tag) { |
|
| 1162 | - if(strpos($tag,$spacer)!==false) $tags[$i] = str_replace($spacer, '', $tag); |
|
| 1161 | + foreach ($tags as $i=>$tag) { |
|
| 1162 | + if (strpos($tag, $spacer) !== false) $tags[$i] = str_replace($spacer, '', $tag); |
|
| 1163 | 1163 | } |
| 1164 | 1164 | return $tags; |
| 1165 | 1165 | } |
@@ -1199,7 +1199,7 @@ discard block |
||
| 1199 | 1199 | } |
| 1200 | 1200 | |
| 1201 | 1201 | foreach ($matches[1] as $i => $key) { |
| 1202 | - if(strpos($key,'[+')!==false) continue; // Allow chunk {{chunk?¶m=`xxx`}} with [*tv_name_[+param+]*] as content |
|
| 1202 | + if (strpos($key, '[+') !== false) continue; // Allow chunk {{chunk?¶m=`xxx`}} with [*tv_name_[+param+]*] as content |
|
| 1203 | 1203 | if (substr($key, 0, 1) == '#') { |
| 1204 | 1204 | $key = substr($key, 1); |
| 1205 | 1205 | } // remove # for QuickEdit format |
@@ -1219,8 +1219,8 @@ discard block |
||
| 1219 | 1219 | } |
| 1220 | 1220 | |
| 1221 | 1221 | if (is_array($value)) { |
| 1222 | - include_once(MODX_MANAGER_PATH . 'includes/tmplvars.format.inc.php'); |
|
| 1223 | - include_once(MODX_MANAGER_PATH . 'includes/tmplvars.commands.inc.php'); |
|
| 1222 | + include_once(MODX_MANAGER_PATH.'includes/tmplvars.format.inc.php'); |
|
| 1223 | + include_once(MODX_MANAGER_PATH.'includes/tmplvars.commands.inc.php'); |
|
| 1224 | 1224 | $value = getTVDisplayFormat($value[0], $value[1], $value[2], $value[3], $value[4]); |
| 1225 | 1225 | } |
| 1226 | 1226 | |
@@ -1231,8 +1231,8 @@ discard block |
||
| 1231 | 1231 | |
| 1232 | 1232 | if (strpos($content, $s) !== false) { |
| 1233 | 1233 | $content = str_replace($s, $value, $content); |
| 1234 | - } elseif($this->debug) { |
|
| 1235 | - $this->addLog('mergeDocumentContent parse error', $_SERVER['REQUEST_URI'] . $s, 2); |
|
| 1234 | + } elseif ($this->debug) { |
|
| 1235 | + $this->addLog('mergeDocumentContent parse error', $_SERVER['REQUEST_URI'].$s, 2); |
|
| 1236 | 1236 | } |
| 1237 | 1237 | } |
| 1238 | 1238 | |
@@ -1399,8 +1399,8 @@ discard block |
||
| 1399 | 1399 | $s = &$matches[0][$i]; |
| 1400 | 1400 | if (strpos($content, $s) !== false) { |
| 1401 | 1401 | $content = str_replace($s, $value, $content); |
| 1402 | - } elseif($this->debug) { |
|
| 1403 | - $this->addLog('mergeSettingsContent parse error', $_SERVER['REQUEST_URI'] . $s, 2); |
|
| 1402 | + } elseif ($this->debug) { |
|
| 1403 | + $this->addLog('mergeSettingsContent parse error', $_SERVER['REQUEST_URI'].$s, 2); |
|
| 1404 | 1404 | } |
| 1405 | 1405 | } |
| 1406 | 1406 | return $content; |
@@ -1453,7 +1453,7 @@ discard block |
||
| 1453 | 1453 | } |
| 1454 | 1454 | |
| 1455 | 1455 | $value = $this->parseText($value, $params); // parse local scope placeholers for ConditionalTags |
| 1456 | - $value = $this->mergePlaceholderContent($value, $params); // parse page global placeholers |
|
| 1456 | + $value = $this->mergePlaceholderContent($value, $params); // parse page global placeholers |
|
| 1457 | 1457 | if ($this->config['enable_at_syntax']) { |
| 1458 | 1458 | $value = $this->mergeConditionalTagsContent($value); |
| 1459 | 1459 | } |
@@ -1468,8 +1468,8 @@ discard block |
||
| 1468 | 1468 | $s = &$matches[0][$i]; |
| 1469 | 1469 | if (strpos($content, $s) !== false) { |
| 1470 | 1470 | $content = str_replace($s, $value, $content); |
| 1471 | - } elseif($this->debug) { |
|
| 1472 | - $this->addLog('mergeChunkContent parse error', $_SERVER['REQUEST_URI'] . $s, 2); |
|
| 1471 | + } elseif ($this->debug) { |
|
| 1472 | + $this->addLog('mergeChunkContent parse error', $_SERVER['REQUEST_URI'].$s, 2); |
|
| 1473 | 1473 | } |
| 1474 | 1474 | } |
| 1475 | 1475 | return $content; |
@@ -1527,8 +1527,8 @@ discard block |
||
| 1527 | 1527 | $s = &$matches[0][$i]; |
| 1528 | 1528 | if (strpos($content, $s) !== false) { |
| 1529 | 1529 | $content = str_replace($s, $value, $content); |
| 1530 | - } elseif($this->debug) { |
|
| 1531 | - $this->addLog('mergePlaceholderContent parse error', $_SERVER['REQUEST_URI'] . $s, 2); |
|
| 1530 | + } elseif ($this->debug) { |
|
| 1531 | + $this->addLog('mergePlaceholderContent parse error', $_SERVER['REQUEST_URI'].$s, 2); |
|
| 1532 | 1532 | } |
| 1533 | 1533 | } |
| 1534 | 1534 | return $content; |
@@ -1552,7 +1552,7 @@ discard block |
||
| 1552 | 1552 | return $content; |
| 1553 | 1553 | } |
| 1554 | 1554 | |
| 1555 | - $sp = '#' . md5('ConditionalTags' . $_SERVER['REQUEST_TIME']) . '#'; |
|
| 1555 | + $sp = '#'.md5('ConditionalTags'.$_SERVER['REQUEST_TIME']).'#'; |
|
| 1556 | 1556 | $content = str_replace(array('<?php', '<?=', '<?', '?>'), array("{$sp}b", "{$sp}p", "{$sp}s", "{$sp}e"), $content); |
| 1557 | 1557 | |
| 1558 | 1558 | $pieces = explode('<@IF:', $content); |
@@ -1563,7 +1563,7 @@ discard block |
||
| 1563 | 1563 | } |
| 1564 | 1564 | list($cmd, $text) = explode('>', $split, 2); |
| 1565 | 1565 | $cmd = str_replace("'", "\'", $cmd); |
| 1566 | - $content .= "<?php if(\$this->_parseCTagCMD('" . $cmd . "')): ?>"; |
|
| 1566 | + $content .= "<?php if(\$this->_parseCTagCMD('".$cmd."')): ?>"; |
|
| 1567 | 1567 | $content .= $text; |
| 1568 | 1568 | } |
| 1569 | 1569 | $pieces = explode('<@ELSEIF:', $content); |
@@ -1574,13 +1574,13 @@ discard block |
||
| 1574 | 1574 | } |
| 1575 | 1575 | list($cmd, $text) = explode('>', $split, 2); |
| 1576 | 1576 | $cmd = str_replace("'", "\'", $cmd); |
| 1577 | - $content .= "<?php elseif(\$this->_parseCTagCMD('" . $cmd . "')): ?>"; |
|
| 1577 | + $content .= "<?php elseif(\$this->_parseCTagCMD('".$cmd."')): ?>"; |
|
| 1578 | 1578 | $content .= $text; |
| 1579 | 1579 | } |
| 1580 | 1580 | |
| 1581 | 1581 | $content = str_replace(array('<@ELSE>', '<@ENDIF>'), array('<?php else:?>', '<?php endif;?>'), $content); |
| 1582 | 1582 | ob_start(); |
| 1583 | - $content = eval('?>' . $content); |
|
| 1583 | + $content = eval('?>'.$content); |
|
| 1584 | 1584 | $content = ob_get_clean(); |
| 1585 | 1585 | $content = str_replace(array("{$sp}b", "{$sp}p", "{$sp}s", "{$sp}e"), array('<?php', '<?=', '<?', '?>'), $content); |
| 1586 | 1586 | |
@@ -1705,7 +1705,7 @@ discard block |
||
| 1705 | 1705 | $matches = $this->getTagsFromContent($content, $left, $right); |
| 1706 | 1706 | if (!empty($matches)) { |
| 1707 | 1707 | foreach ($matches[0] as $i => $v) { |
| 1708 | - $addBreakMatches[$i] = $v . "\n"; |
|
| 1708 | + $addBreakMatches[$i] = $v."\n"; |
|
| 1709 | 1709 | } |
| 1710 | 1710 | $content = str_replace($addBreakMatches, '', $content); |
| 1711 | 1711 | if (strpos($content, $left) !== false) { |
@@ -1738,8 +1738,8 @@ discard block |
||
| 1738 | 1738 | $s = &$matches[0][$i]; |
| 1739 | 1739 | if (strpos($content, $s) !== false) { |
| 1740 | 1740 | $content = str_replace($s, $v, $content); |
| 1741 | - } elseif($this->debug) { |
|
| 1742 | - $this->addLog('ignoreCommentedTagsContent parse error', $_SERVER['REQUEST_URI'] . $s, 2); |
|
| 1741 | + } elseif ($this->debug) { |
|
| 1742 | + $this->addLog('ignoreCommentedTagsContent parse error', $_SERVER['REQUEST_URI'].$s, 2); |
|
| 1743 | 1743 | } |
| 1744 | 1744 | } |
| 1745 | 1745 | return $content; |
@@ -1800,7 +1800,7 @@ discard block |
||
| 1800 | 1800 | $msg = ($msg === false) ? 'ob_get_contents() error' : $msg; |
| 1801 | 1801 | $this->messageQuit('PHP Parse Error', '', true, $error_info['type'], $error_info['file'], 'Plugin', $error_info['message'], $error_info['line'], $msg); |
| 1802 | 1802 | if ($this->isBackend()) { |
| 1803 | - $this->event->alert('An error occurred while loading. Please see the event log for more information.<p>' . $msg . '</p>'); |
|
| 1803 | + $this->event->alert('An error occurred while loading. Please see the event log for more information.<p>'.$msg.'</p>'); |
|
| 1804 | 1804 | } |
| 1805 | 1805 | } |
| 1806 | 1806 | } else { |
@@ -1846,7 +1846,7 @@ discard block |
||
| 1846 | 1846 | $echo = ($echo === false) ? 'ob_get_contents() error' : $echo; |
| 1847 | 1847 | $this->messageQuit('PHP Parse Error', '', true, $error_info['type'], $error_info['file'], 'Snippet', $error_info['message'], $error_info['line'], $echo); |
| 1848 | 1848 | if ($this->isBackend()) { |
| 1849 | - $this->event->alert('An error occurred while loading. Please see the event log for more information<p>' . $echo . $return . '</p>'); |
|
| 1849 | + $this->event->alert('An error occurred while loading. Please see the event log for more information<p>'.$echo.$return.'</p>'); |
|
| 1850 | 1850 | } |
| 1851 | 1851 | } |
| 1852 | 1852 | } |
@@ -1854,7 +1854,7 @@ discard block |
||
| 1854 | 1854 | if (is_array($return) || is_object($return)) { |
| 1855 | 1855 | return $return; |
| 1856 | 1856 | } else { |
| 1857 | - return $echo . $return; |
|
| 1857 | + return $echo.$return; |
|
| 1858 | 1858 | } |
| 1859 | 1859 | } |
| 1860 | 1860 | |
@@ -1892,8 +1892,8 @@ discard block |
||
| 1892 | 1892 | } |
| 1893 | 1893 | if (strpos($content, $s) !== false) { |
| 1894 | 1894 | $content = str_replace($s, $value, $content); |
| 1895 | - } elseif($this->debug) { |
|
| 1896 | - $this->addLog('evalSnippetsSGVar parse error', $_SERVER['REQUEST_URI'] . $s, 2); |
|
| 1895 | + } elseif ($this->debug) { |
|
| 1896 | + $this->addLog('evalSnippetsSGVar parse error', $_SERVER['REQUEST_URI'].$s, 2); |
|
| 1897 | 1897 | } |
| 1898 | 1898 | continue; |
| 1899 | 1899 | } |
@@ -1904,8 +1904,8 @@ discard block |
||
| 1904 | 1904 | |
| 1905 | 1905 | if (strpos($content, $s) !== false) { |
| 1906 | 1906 | $content = str_replace($s, $value, $content); |
| 1907 | - } elseif($this->debug) { |
|
| 1908 | - $this->addLog('evalSnippets parse error', $_SERVER['REQUEST_URI'] . $s, 2); |
|
| 1907 | + } elseif ($this->debug) { |
|
| 1908 | + $this->addLog('evalSnippets parse error', $_SERVER['REQUEST_URI'].$s, 2); |
|
| 1909 | 1909 | } |
| 1910 | 1910 | } |
| 1911 | 1911 | |
@@ -1997,7 +1997,7 @@ discard block |
||
| 1997 | 1997 | $eventtime = sprintf('%2.2f ms', $eventtime * 1000); |
| 1998 | 1998 | $code = str_replace("\t", ' ', $this->htmlspecialchars($value)); |
| 1999 | 1999 | $piece = str_replace("\t", ' ', $this->htmlspecialchars($piece)); |
| 2000 | - $print_r_params = str_replace("\t", ' ', $this->htmlspecialchars('$modx->event->params = ' . print_r($params, true))); |
|
| 2000 | + $print_r_params = str_replace("\t", ' ', $this->htmlspecialchars('$modx->event->params = '.print_r($params, true))); |
|
| 2001 | 2001 | $this->snippetsCode .= sprintf('<fieldset style="margin:1em;"><legend><b>%s</b>(%s)</legend><pre style="white-space: pre-wrap;background-color:#fff;width:90%%;">[[%s]]</pre><pre style="white-space: pre-wrap;background-color:#fff;width:90%%;">%s</pre><pre style="white-space: pre-wrap;background-color:#fff;width:90%%;">%s</pre></fieldset>', $snippetObject['name'], $eventtime, $piece, $print_r_params, $code); |
| 2002 | 2002 | $this->snippetsTime[] = array('sname' => $key, 'time' => $eventtime); |
| 2003 | 2003 | } |
@@ -2241,7 +2241,7 @@ discard block |
||
| 2241 | 2241 | $rs = $this->db->select('name,snippet,properties', '[+prefix+]site_snippets', $where); |
| 2242 | 2242 | $count = $this->db->getRecordCount($rs); |
| 2243 | 2243 | if (1 < $count) { |
| 2244 | - exit('Error $modx->_getSnippetObject()' . $snip_name); |
|
| 2244 | + exit('Error $modx->_getSnippetObject()'.$snip_name); |
|
| 2245 | 2245 | } |
| 2246 | 2246 | if ($count) { |
| 2247 | 2247 | $row = $this->db->getRow($rs); |
@@ -2267,7 +2267,7 @@ discard block |
||
| 2267 | 2267 | function toAlias($text) |
| 2268 | 2268 | { |
| 2269 | 2269 | $suff = $this->config['friendly_url_suffix']; |
| 2270 | - return str_replace(array('.xml' . $suff, '.rss' . $suff, '.js' . $suff, '.css' . $suff, '.txt' . $suff, '.json' . $suff, '.pdf' . $suff), array('.xml', '.rss', '.js', '.css', '.txt', '.json', '.pdf'), $text); |
|
| 2270 | + return str_replace(array('.xml'.$suff, '.rss'.$suff, '.js'.$suff, '.css'.$suff, '.txt'.$suff, '.json'.$suff, '.pdf'.$suff), array('.xml', '.rss', '.js', '.css', '.txt', '.json', '.pdf'), $text); |
|
| 2271 | 2271 | } |
| 2272 | 2272 | |
| 2273 | 2273 | /** |
@@ -2299,7 +2299,7 @@ discard block |
||
| 2299 | 2299 | $suff = '/'; |
| 2300 | 2300 | } |
| 2301 | 2301 | |
| 2302 | - $url = ($dir != '' ? $dir . '/' : '') . $pre . $alias . $suff; |
|
| 2302 | + $url = ($dir != '' ? $dir.'/' : '').$pre.$alias.$suff; |
|
| 2303 | 2303 | } |
| 2304 | 2304 | |
| 2305 | 2305 | $evtOut = $this->invokeEvent('OnMakeDocUrl', array( |
@@ -2336,7 +2336,7 @@ discard block |
||
| 2336 | 2336 | preg_match_all('!\[\~([0-9]+)\~\]!ise', $documentSource, $match); |
| 2337 | 2337 | $ids = implode(',', array_unique($match['1'])); |
| 2338 | 2338 | if ($ids) { |
| 2339 | - $res = $this->db->select("id,alias,isfolder,parent,alias_visible", $this->getFullTableName('site_content'), "id IN (" . $ids . ") AND isfolder = '0'"); |
|
| 2339 | + $res = $this->db->select("id,alias,isfolder,parent,alias_visible", $this->getFullTableName('site_content'), "id IN (".$ids.") AND isfolder = '0'"); |
|
| 2340 | 2340 | while ($row = $this->db->getRow($res)) { |
| 2341 | 2341 | if ($this->config['use_alias_path'] == '1' && $row['parent'] != 0) { |
| 2342 | 2342 | $parent = $row['parent']; |
@@ -2347,7 +2347,7 @@ discard block |
||
| 2347 | 2347 | $parent = $this->aliasListing[$parent]['parent']; |
| 2348 | 2348 | } |
| 2349 | 2349 | |
| 2350 | - $aliases[$row['id']] = $path . '/' . $row['alias']; |
|
| 2350 | + $aliases[$row['id']] = $path.'/'.$row['alias']; |
|
| 2351 | 2351 | } else { |
| 2352 | 2352 | $aliases[$row['id']] = $row['alias']; |
| 2353 | 2353 | } |
@@ -2359,7 +2359,7 @@ discard block |
||
| 2359 | 2359 | $isfriendly = ($this->config['friendly_alias_urls'] == 1 ? 1 : 0); |
| 2360 | 2360 | $pref = $this->config['friendly_url_prefix']; |
| 2361 | 2361 | $suff = $this->config['friendly_url_suffix']; |
| 2362 | - $documentSource = preg_replace_callback($in, function ($m) use ($aliases, $isfolder, $isfriendly, $pref, $suff) { |
|
| 2362 | + $documentSource = preg_replace_callback($in, function($m) use ($aliases, $isfolder, $isfriendly, $pref, $suff) { |
|
| 2363 | 2363 | global $modx; |
| 2364 | 2364 | $thealias = $aliases[$m[1]]; |
| 2365 | 2365 | $thefolder = $isfolder[$m[1]]; |
@@ -2375,7 +2375,7 @@ discard block |
||
| 2375 | 2375 | |
| 2376 | 2376 | } else { |
| 2377 | 2377 | $in = '!\[\~([0-9]+)\~\]!is'; |
| 2378 | - $out = "index.php?id=" . '\1'; |
|
| 2378 | + $out = "index.php?id=".'\1'; |
|
| 2379 | 2379 | $documentSource = preg_replace($in, $out, $documentSource); |
| 2380 | 2380 | } |
| 2381 | 2381 | |
@@ -2396,7 +2396,7 @@ discard block |
||
| 2396 | 2396 | $scheme = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 'https' : 'http'; |
| 2397 | 2397 | $len_base_url = strlen($this->config['base_url']); |
| 2398 | 2398 | |
| 2399 | - $url_path = $q;//LANG |
|
| 2399 | + $url_path = $q; //LANG |
|
| 2400 | 2400 | |
| 2401 | 2401 | if (substr($url_path, 0, $len_base_url) === $this->config['base_url']) { |
| 2402 | 2402 | $url_path = substr($url_path, $len_base_url); |
@@ -2408,7 +2408,7 @@ discard block |
||
| 2408 | 2408 | $strictURL = substr($strictURL, $len_base_url); |
| 2409 | 2409 | } |
| 2410 | 2410 | $http_host = $_SERVER['HTTP_HOST']; |
| 2411 | - $requestedURL = "{$scheme}://{$http_host}" . '/' . $q; //LANG |
|
| 2411 | + $requestedURL = "{$scheme}://{$http_host}".'/'.$q; //LANG |
|
| 2412 | 2412 | |
| 2413 | 2413 | $site_url = $this->config['site_url']; |
| 2414 | 2414 | |
@@ -2424,7 +2424,7 @@ discard block |
||
| 2424 | 2424 | } |
| 2425 | 2425 | if ($this->config['base_url'] != $_SERVER['REQUEST_URI']) { |
| 2426 | 2426 | if (empty($_POST)) { |
| 2427 | - if (($this->config['base_url'] . '?' . $qstring) != $_SERVER['REQUEST_URI']) { |
|
| 2427 | + if (($this->config['base_url'].'?'.$qstring) != $_SERVER['REQUEST_URI']) { |
|
| 2428 | 2428 | $this->sendRedirect($url, 0, 'REDIRECT_HEADER', 'HTTP/1.0 301 Moved Permanently'); |
| 2429 | 2429 | exit(0); |
| 2430 | 2430 | } |
@@ -2487,7 +2487,7 @@ discard block |
||
| 2487 | 2487 | $docgrp = implode(",", $docgrp); |
| 2488 | 2488 | } |
| 2489 | 2489 | // get document |
| 2490 | - $access = ($this->isFrontend() ? "sc.privateweb=0" : "1='" . $_SESSION['mgrRole'] . "' OR sc.privatemgr=0") . (!$docgrp ? "" : " OR dg.document_group IN ($docgrp)"); |
|
| 2490 | + $access = ($this->isFrontend() ? "sc.privateweb=0" : "1='".$_SESSION['mgrRole']."' OR sc.privatemgr=0").(!$docgrp ? "" : " OR dg.document_group IN ($docgrp)"); |
|
| 2491 | 2491 | $rs = $this->db->select('sc.*', "{$tblsc} sc |
| 2492 | 2492 | LEFT JOIN {$tbldg} dg ON dg.document = sc.id", "sc.{$method} = '{$identifier}' AND ({$access})", "", 1); |
| 2493 | 2493 | if ($this->db->getRecordCount($rs) < 1) { |
@@ -2523,9 +2523,9 @@ discard block |
||
| 2523 | 2523 | } |
| 2524 | 2524 | if ($documentObject['template']) { |
| 2525 | 2525 | // load TVs and merge with document - Orig by Apodigm - Docvars |
| 2526 | - $rs = $this->db->select("tv.*, IF(tvc.value!='',tvc.value,tv.default_text) as value", $this->getFullTableName("site_tmplvars") . " tv |
|
| 2527 | - INNER JOIN " . $this->getFullTableName("site_tmplvar_templates") . " tvtpl ON tvtpl.tmplvarid = tv.id |
|
| 2528 | - LEFT JOIN " . $this->getFullTableName("site_tmplvar_contentvalues") . " tvc ON tvc.tmplvarid=tv.id AND tvc.contentid = '{$documentObject['id']}'", "tvtpl.templateid = '{$documentObject['template']}'"); |
|
| 2526 | + $rs = $this->db->select("tv.*, IF(tvc.value!='',tvc.value,tv.default_text) as value", $this->getFullTableName("site_tmplvars")." tv |
|
| 2527 | + INNER JOIN " . $this->getFullTableName("site_tmplvar_templates")." tvtpl ON tvtpl.tmplvarid = tv.id |
|
| 2528 | + LEFT JOIN " . $this->getFullTableName("site_tmplvar_contentvalues")." tvc ON tvc.tmplvarid=tv.id AND tvc.contentid = '{$documentObject['id']}'", "tvtpl.templateid = '{$documentObject['template']}'"); |
|
| 2529 | 2529 | $tmplvars = array(); |
| 2530 | 2530 | while ($row = $this->db->getRow($rs)) { |
| 2531 | 2531 | $tmplvars[$row['name']] = array( |
@@ -2571,7 +2571,7 @@ discard block |
||
| 2571 | 2571 | $st = md5($source); |
| 2572 | 2572 | } |
| 2573 | 2573 | if ($this->dumpSnippets == 1) { |
| 2574 | - $this->snippetsCode .= "<fieldset><legend><b style='color: #821517;'>PARSE PASS " . ($i + 1) . "</b></legend><p>The following snippets (if any) were parsed during this pass.</p>"; |
|
| 2574 | + $this->snippetsCode .= "<fieldset><legend><b style='color: #821517;'>PARSE PASS ".($i + 1)."</b></legend><p>The following snippets (if any) were parsed during this pass.</p>"; |
|
| 2575 | 2575 | } |
| 2576 | 2576 | |
| 2577 | 2577 | // invoke OnParseDocument event |
@@ -2657,7 +2657,7 @@ discard block |
||
| 2657 | 2657 | |
| 2658 | 2658 | // Check use_alias_path and check if $this->virtualDir is set to anything, then parse the path |
| 2659 | 2659 | if ($this->config['use_alias_path'] == 1) { |
| 2660 | - $alias = (strlen($this->virtualDir) > 0 ? $this->virtualDir . '/' : '') . $this->documentIdentifier; |
|
| 2660 | + $alias = (strlen($this->virtualDir) > 0 ? $this->virtualDir.'/' : '').$this->documentIdentifier; |
|
| 2661 | 2661 | if (isset($this->documentListing[$alias])) { |
| 2662 | 2662 | $this->documentIdentifier = $this->documentListing[$alias]; |
| 2663 | 2663 | } else { |
@@ -2718,7 +2718,7 @@ discard block |
||
| 2718 | 2718 | } else { |
| 2719 | 2719 | $docAlias = $this->db->escape($this->documentIdentifier); |
| 2720 | 2720 | $rs = $this->db->select('id', $this->getFullTableName('site_content'), "deleted=0 and alias='{$docAlias}'"); |
| 2721 | - $this->documentIdentifier = (int)$this->db->getValue($rs); |
|
| 2721 | + $this->documentIdentifier = (int) $this->db->getValue($rs); |
|
| 2722 | 2722 | } |
| 2723 | 2723 | } |
| 2724 | 2724 | $this->documentMethod = 'id'; |
@@ -2771,7 +2771,7 @@ discard block |
||
| 2771 | 2771 | $_REQUEST[$n] = $_GET[$n] = $v; |
| 2772 | 2772 | } |
| 2773 | 2773 | } |
| 2774 | - $_SERVER['PHP_SELF'] = $this->config['base_url'] . $qp['path']; |
|
| 2774 | + $_SERVER['PHP_SELF'] = $this->config['base_url'].$qp['path']; |
|
| 2775 | 2775 | $this->q = $qp['path']; |
| 2776 | 2776 | return $qp['path']; |
| 2777 | 2777 | } |
@@ -2865,7 +2865,7 @@ discard block |
||
| 2865 | 2865 | $this->sendErrorPage(); |
| 2866 | 2866 | } else { |
| 2867 | 2867 | // Inculde the necessary files to check document permissions |
| 2868 | - include_once(MODX_MANAGER_PATH . 'processors/user_documents_permissions.class.php'); |
|
| 2868 | + include_once(MODX_MANAGER_PATH.'processors/user_documents_permissions.class.php'); |
|
| 2869 | 2869 | $udperms = new udperms(); |
| 2870 | 2870 | $udperms->user = $this->getLoginUserID(); |
| 2871 | 2871 | $udperms->document = $this->documentIdentifier; |
@@ -2919,7 +2919,7 @@ discard block |
||
| 2919 | 2919 | while ($id && $height--) { |
| 2920 | 2920 | $thisid = $id; |
| 2921 | 2921 | if ($this->config['aliaslistingfolder'] == 1) { |
| 2922 | - $id = isset($this->aliasListing[$id]['parent']) ? $this->aliasListing[$id]['parent'] : $this->db->getValue("SELECT `parent` FROM " . $this->getFullTableName("site_content") . " WHERE `id` = '{$id}' LIMIT 0,1"); |
|
| 2922 | + $id = isset($this->aliasListing[$id]['parent']) ? $this->aliasListing[$id]['parent'] : $this->db->getValue("SELECT `parent` FROM ".$this->getFullTableName("site_content")." WHERE `id` = '{$id}' LIMIT 0,1"); |
|
| 2923 | 2923 | if (!$id || $id == '0') { |
| 2924 | 2924 | break; |
| 2925 | 2925 | } |
@@ -2970,15 +2970,15 @@ discard block |
||
| 2970 | 2970 | |
| 2971 | 2971 | if ($this->config['aliaslistingfolder'] == 1) { |
| 2972 | 2972 | |
| 2973 | - $res = $this->db->select("id,alias,isfolder,parent", $this->getFullTableName('site_content'), "parent IN (" . $id . ") AND deleted = '0'"); |
|
| 2973 | + $res = $this->db->select("id,alias,isfolder,parent", $this->getFullTableName('site_content'), "parent IN (".$id.") AND deleted = '0'"); |
|
| 2974 | 2974 | $idx = array(); |
| 2975 | 2975 | while ($row = $this->db->getRow($res)) { |
| 2976 | 2976 | $pAlias = ''; |
| 2977 | 2977 | if (isset($this->aliasListing[$row['parent']])) { |
| 2978 | - $pAlias .= !empty($this->aliasListing[$row['parent']]['path']) ? $this->aliasListing[$row['parent']]['path'] . '/' : ''; |
|
| 2979 | - $pAlias .= !empty($this->aliasListing[$row['parent']]['alias']) ? $this->aliasListing[$row['parent']]['alias'] . '/' : ''; |
|
| 2978 | + $pAlias .= !empty($this->aliasListing[$row['parent']]['path']) ? $this->aliasListing[$row['parent']]['path'].'/' : ''; |
|
| 2979 | + $pAlias .= !empty($this->aliasListing[$row['parent']]['alias']) ? $this->aliasListing[$row['parent']]['alias'].'/' : ''; |
|
| 2980 | 2980 | }; |
| 2981 | - $children[$pAlias . $row['alias']] = $row['id']; |
|
| 2981 | + $children[$pAlias.$row['alias']] = $row['id']; |
|
| 2982 | 2982 | if ($row['isfolder'] == 1) { |
| 2983 | 2983 | $idx[] = $row['id']; |
| 2984 | 2984 | } |
@@ -3010,7 +3010,7 @@ discard block |
||
| 3010 | 3010 | $depth--; |
| 3011 | 3011 | |
| 3012 | 3012 | foreach ($documentMap_cache[$id] as $childId) { |
| 3013 | - $pkey = (strlen($this->aliasListing[$childId]['path']) ? "{$this->aliasListing[$childId]['path']}/" : '') . $this->aliasListing[$childId]['alias']; |
|
| 3013 | + $pkey = (strlen($this->aliasListing[$childId]['path']) ? "{$this->aliasListing[$childId]['path']}/" : '').$this->aliasListing[$childId]['alias']; |
|
| 3014 | 3014 | if (!strlen($pkey)) { |
| 3015 | 3015 | $pkey = "{$childId}"; |
| 3016 | 3016 | } |
@@ -3039,7 +3039,7 @@ discard block |
||
| 3039 | 3039 | if (substr(strtolower($url), 0, 11) == "javascript:") { |
| 3040 | 3040 | $fnc = substr($url, 11); |
| 3041 | 3041 | } elseif ($url) { |
| 3042 | - $fnc = "window.location.href='" . addslashes($url) . "';"; |
|
| 3042 | + $fnc = "window.location.href='".addslashes($url)."';"; |
|
| 3043 | 3043 | } else { |
| 3044 | 3044 | $fnc = "history.back(-1);"; |
| 3045 | 3045 | } |
@@ -3048,7 +3048,7 @@ discard block |
||
| 3048 | 3048 | <meta http-equiv=\"Content-Type\" content=\"text/html; charset={$modx_manager_charset};\"> |
| 3049 | 3049 | <script> |
| 3050 | 3050 | function __alertQuit() { |
| 3051 | - alert('" . addslashes($msg) . "'); |
|
| 3051 | + alert('".addslashes($msg)."'); |
|
| 3052 | 3052 | {$fnc} |
| 3053 | 3053 | } |
| 3054 | 3054 | window.setTimeout('__alertQuit();',100); |
@@ -3072,7 +3072,7 @@ discard block |
||
| 3072 | 3072 | if ($pms) { |
| 3073 | 3073 | $state = ($pms[$pm] == 1); |
| 3074 | 3074 | } |
| 3075 | - return (int)$state; |
|
| 3075 | + return (int) $state; |
|
| 3076 | 3076 | } |
| 3077 | 3077 | |
| 3078 | 3078 | /** |
@@ -3153,7 +3153,7 @@ discard block |
||
| 3153 | 3153 | $this->lockedElements = array(); |
| 3154 | 3154 | $this->cleanupExpiredLocks(); |
| 3155 | 3155 | |
| 3156 | - $rs = $this->db->select('sid,internalKey,elementType,elementId,lasthit,username', $this->getFullTableName('active_user_locks') . " ul |
|
| 3156 | + $rs = $this->db->select('sid,internalKey,elementType,elementId,lasthit,username', $this->getFullTableName('active_user_locks')." ul |
|
| 3157 | 3157 | LEFT JOIN {$this->getFullTableName('manager_users')} mu on ul.internalKey = mu.id"); |
| 3158 | 3158 | while ($row = $this->db->getRow($rs)) { |
| 3159 | 3159 | $this->lockedElements[$row['elementType']][$row['elementId']] = array( |
@@ -3189,7 +3189,7 @@ discard block |
||
| 3189 | 3189 | foreach ($rs as $row) { |
| 3190 | 3190 | $userSids[] = $row['sid']; |
| 3191 | 3191 | } |
| 3192 | - $userSids = "'" . implode("','", $userSids) . "'"; |
|
| 3192 | + $userSids = "'".implode("','", $userSids)."'"; |
|
| 3193 | 3193 | $this->db->delete($this->getFullTableName('active_user_locks'), "sid NOT IN({$userSids})"); |
| 3194 | 3194 | } else { |
| 3195 | 3195 | $this->db->delete($this->getFullTableName('active_user_locks')); |
@@ -3386,8 +3386,8 @@ discard block |
||
| 3386 | 3386 | if (isset($this->config['send_errormail']) && $this->config['send_errormail'] !== '0') { |
| 3387 | 3387 | if ($this->config['send_errormail'] <= $type) { |
| 3388 | 3388 | $this->sendmail(array( |
| 3389 | - 'subject' => 'MODX System Error on ' . $this->config['site_name'], |
|
| 3390 | - 'body' => 'Source: ' . $source . ' - The details of the error could be seen in the MODX system events log.', |
|
| 3389 | + 'subject' => 'MODX System Error on '.$this->config['site_name'], |
|
| 3390 | + 'body' => 'Source: '.$source.' - The details of the error could be seen in the MODX system events log.', |
|
| 3391 | 3391 | 'type' => 'text' |
| 3392 | 3392 | )); |
| 3393 | 3393 | } |
@@ -3435,7 +3435,7 @@ discard block |
||
| 3435 | 3435 | $p['fromname'] = $userinfo['username']; |
| 3436 | 3436 | } |
| 3437 | 3437 | if ($msg === '' && !isset($p['body'])) { |
| 3438 | - $p['body'] = $_SERVER['REQUEST_URI'] . "\n" . $_SERVER['HTTP_USER_AGENT'] . "\n" . $_SERVER['HTTP_REFERER']; |
|
| 3438 | + $p['body'] = $_SERVER['REQUEST_URI']."\n".$_SERVER['HTTP_USER_AGENT']."\n".$_SERVER['HTTP_REFERER']; |
|
| 3439 | 3439 | } elseif (is_string($msg) && 0 < strlen($msg)) { |
| 3440 | 3440 | $p['body'] = $msg; |
| 3441 | 3441 | } |
@@ -3475,8 +3475,8 @@ discard block |
||
| 3475 | 3475 | $files = array(); |
| 3476 | 3476 | } |
| 3477 | 3477 | foreach ($files as $f) { |
| 3478 | - if (file_exists(MODX_BASE_PATH . $f) && is_file(MODX_BASE_PATH . $f) && is_readable(MODX_BASE_PATH . $f)) { |
|
| 3479 | - $this->mail->AddAttachment(MODX_BASE_PATH . $f); |
|
| 3478 | + if (file_exists(MODX_BASE_PATH.$f) && is_file(MODX_BASE_PATH.$f) && is_readable(MODX_BASE_PATH.$f)) { |
|
| 3479 | + $this->mail->AddAttachment(MODX_BASE_PATH.$f); |
|
| 3480 | 3480 | } |
| 3481 | 3481 | } |
| 3482 | 3482 | $rs = $this->mail->send(); |
@@ -3521,7 +3521,7 @@ discard block |
||
| 3521 | 3521 | */ |
| 3522 | 3522 | function isFrontend() |
| 3523 | 3523 | { |
| 3524 | - return ! $this->isBackend(); |
|
| 3524 | + return !$this->isBackend(); |
|
| 3525 | 3525 | } |
| 3526 | 3526 | |
| 3527 | 3527 | /** |
@@ -3546,14 +3546,14 @@ discard block |
||
| 3546 | 3546 | $tblsc = $this->getFullTableName("site_content"); |
| 3547 | 3547 | $tbldg = $this->getFullTableName("document_groups"); |
| 3548 | 3548 | // modify field names to use sc. table reference |
| 3549 | - $fields = 'sc.' . implode(',sc.', array_filter(array_map('trim', explode(',', $fields)))); |
|
| 3550 | - $sort = 'sc.' . implode(',sc.', array_filter(array_map('trim', explode(',', $sort)))); |
|
| 3549 | + $fields = 'sc.'.implode(',sc.', array_filter(array_map('trim', explode(',', $fields)))); |
|
| 3550 | + $sort = 'sc.'.implode(',sc.', array_filter(array_map('trim', explode(',', $sort)))); |
|
| 3551 | 3551 | // get document groups for current user |
| 3552 | 3552 | if ($docgrp = $this->getUserDocGroups()) { |
| 3553 | 3553 | $docgrp = implode(",", $docgrp); |
| 3554 | 3554 | } |
| 3555 | 3555 | // build query |
| 3556 | - $access = ($this->isFrontend() ? "sc.privateweb=0" : "1='" . $_SESSION['mgrRole'] . "' OR sc.privatemgr=0") . (!$docgrp ? "" : " OR dg.document_group IN ($docgrp)"); |
|
| 3556 | + $access = ($this->isFrontend() ? "sc.privateweb=0" : "1='".$_SESSION['mgrRole']."' OR sc.privatemgr=0").(!$docgrp ? "" : " OR dg.document_group IN ($docgrp)"); |
|
| 3557 | 3557 | $result = $this->db->select("DISTINCT {$fields}", "{$tblsc} sc |
| 3558 | 3558 | LEFT JOIN {$tbldg} dg on dg.document = sc.id", "sc.parent = '{$id}' AND ({$access}) GROUP BY sc.id", "{$sort} {$dir}"); |
| 3559 | 3559 | $resourceArray = $this->db->makeArray($result); |
@@ -3583,14 +3583,14 @@ discard block |
||
| 3583 | 3583 | $tbldg = $this->getFullTableName("document_groups"); |
| 3584 | 3584 | |
| 3585 | 3585 | // modify field names to use sc. table reference |
| 3586 | - $fields = 'sc.' . implode(',sc.', array_filter(array_map('trim', explode(',', $fields)))); |
|
| 3587 | - $sort = 'sc.' . implode(',sc.', array_filter(array_map('trim', explode(',', $sort)))); |
|
| 3586 | + $fields = 'sc.'.implode(',sc.', array_filter(array_map('trim', explode(',', $fields)))); |
|
| 3587 | + $sort = 'sc.'.implode(',sc.', array_filter(array_map('trim', explode(',', $sort)))); |
|
| 3588 | 3588 | // get document groups for current user |
| 3589 | 3589 | if ($docgrp = $this->getUserDocGroups()) { |
| 3590 | 3590 | $docgrp = implode(",", $docgrp); |
| 3591 | 3591 | } |
| 3592 | 3592 | // build query |
| 3593 | - $access = ($this->isFrontend() ? "sc.privateweb=0" : "1='" . $_SESSION['mgrRole'] . "' OR sc.privatemgr=0") . (!$docgrp ? "" : " OR dg.document_group IN ($docgrp)"); |
|
| 3593 | + $access = ($this->isFrontend() ? "sc.privateweb=0" : "1='".$_SESSION['mgrRole']."' OR sc.privatemgr=0").(!$docgrp ? "" : " OR dg.document_group IN ($docgrp)"); |
|
| 3594 | 3594 | $result = $this->db->select("DISTINCT {$fields}", "{$tblsc} sc |
| 3595 | 3595 | LEFT JOIN {$tbldg} dg on dg.document = sc.id", "sc.parent = '{$id}' AND sc.published=1 AND sc.deleted=0 AND ({$access}) GROUP BY sc.id", "{$sort} {$dir}"); |
| 3596 | 3596 | $resourceArray = $this->db->makeArray($result); |
@@ -3625,16 +3625,16 @@ discard block |
||
| 3625 | 3625 | return $this->tmpCache[__FUNCTION__][$cacheKey]; |
| 3626 | 3626 | } |
| 3627 | 3627 | |
| 3628 | - $published = ($published !== 'all') ? 'AND sc.published = ' . $published : ''; |
|
| 3629 | - $deleted = ($deleted !== 'all') ? 'AND sc.deleted = ' . $deleted : ''; |
|
| 3628 | + $published = ($published !== 'all') ? 'AND sc.published = '.$published : ''; |
|
| 3629 | + $deleted = ($deleted !== 'all') ? 'AND sc.deleted = '.$deleted : ''; |
|
| 3630 | 3630 | |
| 3631 | 3631 | if ($where != '') { |
| 3632 | - $where = 'AND ' . $where; |
|
| 3632 | + $where = 'AND '.$where; |
|
| 3633 | 3633 | } |
| 3634 | 3634 | |
| 3635 | 3635 | // modify field names to use sc. table reference |
| 3636 | - $fields = 'sc.' . implode(',sc.', array_filter(array_map('trim', explode(',', $fields)))); |
|
| 3637 | - $sort = ($sort == '') ? '' : 'sc.' . implode(',sc.', array_filter(array_map('trim', explode(',', $sort)))); |
|
| 3636 | + $fields = 'sc.'.implode(',sc.', array_filter(array_map('trim', explode(',', $fields)))); |
|
| 3637 | + $sort = ($sort == '') ? '' : 'sc.'.implode(',sc.', array_filter(array_map('trim', explode(',', $sort)))); |
|
| 3638 | 3638 | |
| 3639 | 3639 | // get document groups for current user |
| 3640 | 3640 | if ($docgrp = $this->getUserDocGroups()) { |
@@ -3642,7 +3642,7 @@ discard block |
||
| 3642 | 3642 | } |
| 3643 | 3643 | |
| 3644 | 3644 | // build query |
| 3645 | - $access = ($this->isFrontend() ? 'sc.privateweb=0' : '1="' . $_SESSION['mgrRole'] . '" OR sc.privatemgr=0') . (!$docgrp ? '' : ' OR dg.document_group IN (' . $docgrp . ')'); |
|
| 3645 | + $access = ($this->isFrontend() ? 'sc.privateweb=0' : '1="'.$_SESSION['mgrRole'].'" OR sc.privatemgr=0').(!$docgrp ? '' : ' OR dg.document_group IN ('.$docgrp.')'); |
|
| 3646 | 3646 | |
| 3647 | 3647 | $tblsc = $this->getFullTableName('site_content'); |
| 3648 | 3648 | $tbldg = $this->getFullTableName('document_groups'); |
@@ -3694,10 +3694,10 @@ discard block |
||
| 3694 | 3694 | return false; |
| 3695 | 3695 | } else { |
| 3696 | 3696 | // modify field names to use sc. table reference |
| 3697 | - $fields = 'sc.' . implode(',sc.', array_filter(array_map('trim', explode(',', $fields)))); |
|
| 3698 | - $sort = ($sort == '') ? '' : 'sc.' . implode(',sc.', array_filter(array_map('trim', explode(',', $sort)))); |
|
| 3697 | + $fields = 'sc.'.implode(',sc.', array_filter(array_map('trim', explode(',', $fields)))); |
|
| 3698 | + $sort = ($sort == '') ? '' : 'sc.'.implode(',sc.', array_filter(array_map('trim', explode(',', $sort)))); |
|
| 3699 | 3699 | if ($where != '') { |
| 3700 | - $where = 'AND ' . $where; |
|
| 3700 | + $where = 'AND '.$where; |
|
| 3701 | 3701 | } |
| 3702 | 3702 | |
| 3703 | 3703 | $published = ($published !== 'all') ? "AND sc.published = '{$published}'" : ''; |
@@ -3708,13 +3708,13 @@ discard block |
||
| 3708 | 3708 | $docgrp = implode(',', $docgrp); |
| 3709 | 3709 | } |
| 3710 | 3710 | |
| 3711 | - $access = ($this->isFrontend() ? 'sc.privateweb=0' : '1="' . $_SESSION['mgrRole'] . '" OR sc.privatemgr=0') . (!$docgrp ? '' : ' OR dg.document_group IN (' . $docgrp . ')'); |
|
| 3711 | + $access = ($this->isFrontend() ? 'sc.privateweb=0' : '1="'.$_SESSION['mgrRole'].'" OR sc.privatemgr=0').(!$docgrp ? '' : ' OR dg.document_group IN ('.$docgrp.')'); |
|
| 3712 | 3712 | |
| 3713 | 3713 | $tblsc = $this->getFullTableName('site_content'); |
| 3714 | 3714 | $tbldg = $this->getFullTableName('document_groups'); |
| 3715 | 3715 | |
| 3716 | 3716 | $result = $this->db->select("DISTINCT {$fields}", "{$tblsc} sc |
| 3717 | - LEFT JOIN {$tbldg} dg on dg.document = sc.id", "(sc.id IN (" . implode(',', $ids) . ") {$published} {$deleted} {$where}) AND ({$access}) GROUP BY sc.id", ($sort ? "{$sort} {$dir}" : ""), $limit); |
|
| 3717 | + LEFT JOIN {$tbldg} dg on dg.document = sc.id", "(sc.id IN (".implode(',', $ids).") {$published} {$deleted} {$where}) AND ({$access}) GROUP BY sc.id", ($sort ? "{$sort} {$dir}" : ""), $limit); |
|
| 3718 | 3718 | |
| 3719 | 3719 | $resourceArray = $this->db->makeArray($result); |
| 3720 | 3720 | |
@@ -3819,12 +3819,12 @@ discard block |
||
| 3819 | 3819 | $tbldg = $this->getFullTableName("document_groups"); |
| 3820 | 3820 | $activeSql = $active == 1 ? "AND sc.published=1 AND sc.deleted=0" : ""; |
| 3821 | 3821 | // modify field names to use sc. table reference |
| 3822 | - $fields = 'sc.' . implode(',sc.', array_filter(array_map('trim', explode(',', $fields)))); |
|
| 3822 | + $fields = 'sc.'.implode(',sc.', array_filter(array_map('trim', explode(',', $fields)))); |
|
| 3823 | 3823 | // get document groups for current user |
| 3824 | 3824 | if ($docgrp = $this->getUserDocGroups()) { |
| 3825 | 3825 | $docgrp = implode(",", $docgrp); |
| 3826 | 3826 | } |
| 3827 | - $access = ($this->isFrontend() ? "sc.privateweb=0" : "1='" . $_SESSION['mgrRole'] . "' OR sc.privatemgr=0") . (!$docgrp ? "" : " OR dg.document_group IN ($docgrp)"); |
|
| 3827 | + $access = ($this->isFrontend() ? "sc.privateweb=0" : "1='".$_SESSION['mgrRole']."' OR sc.privatemgr=0").(!$docgrp ? "" : " OR dg.document_group IN ($docgrp)"); |
|
| 3828 | 3828 | $result = $this->db->select($fields, "{$tblsc} sc LEFT JOIN {$tbldg} dg on dg.document = sc.id", "(sc.id='{$pageid}' {$activeSql}) AND ({$access})", "", 1); |
| 3829 | 3829 | $pageInfo = $this->db->getRow($result); |
| 3830 | 3830 | |
@@ -3871,7 +3871,7 @@ discard block |
||
| 3871 | 3871 | { |
| 3872 | 3872 | if ($this->currentSnippet) { |
| 3873 | 3873 | $tbl = $this->getFullTableName("site_snippets"); |
| 3874 | - $rs = $this->db->select('id', $tbl, "name='" . $this->db->escape($this->currentSnippet) . "'", '', 1); |
|
| 3874 | + $rs = $this->db->select('id', $tbl, "name='".$this->db->escape($this->currentSnippet)."'", '', 1); |
|
| 3875 | 3875 | if ($snippetId = $this->db->getValue($rs)) { |
| 3876 | 3876 | return $snippetId; |
| 3877 | 3877 | } |
@@ -3898,23 +3898,23 @@ discard block |
||
| 3898 | 3898 | */ |
| 3899 | 3899 | function clearCache($type = '', $report = false) |
| 3900 | 3900 | { |
| 3901 | - $cache_dir = MODX_BASE_PATH . $this->getCacheFolder(); |
|
| 3901 | + $cache_dir = MODX_BASE_PATH.$this->getCacheFolder(); |
|
| 3902 | 3902 | if (is_array($type)) { |
| 3903 | 3903 | foreach ($type as $_) { |
| 3904 | 3904 | $this->clearCache($_, $report); |
| 3905 | 3905 | } |
| 3906 | 3906 | } elseif ($type == 'full') { |
| 3907 | - include_once(MODX_MANAGER_PATH . 'processors/cache_sync.class.processor.php'); |
|
| 3907 | + include_once(MODX_MANAGER_PATH.'processors/cache_sync.class.processor.php'); |
|
| 3908 | 3908 | $sync = new synccache(); |
| 3909 | 3909 | $sync->setCachepath($cache_dir); |
| 3910 | 3910 | $sync->setReport($report); |
| 3911 | 3911 | $sync->emptyCache(); |
| 3912 | 3912 | } elseif (preg_match('@^[1-9][0-9]*$@', $type)) { |
| 3913 | 3913 | $key = ($this->config['cache_type'] == 2) ? $this->makePageCacheKey($type) : $type; |
| 3914 | - $file_name = "docid_" . $key . "_*.pageCache.php"; |
|
| 3915 | - $cache_path = $cache_dir . $file_name; |
|
| 3914 | + $file_name = "docid_".$key."_*.pageCache.php"; |
|
| 3915 | + $cache_path = $cache_dir.$file_name; |
|
| 3916 | 3916 | $files = glob($cache_path); |
| 3917 | - $files[] = $cache_dir . "docid_" . $key . ".pageCache.php"; |
|
| 3917 | + $files[] = $cache_dir."docid_".$key.".pageCache.php"; |
|
| 3918 | 3918 | foreach ($files as $file) { |
| 3919 | 3919 | if (!is_file($file)) { |
| 3920 | 3920 | continue; |
@@ -3922,7 +3922,7 @@ discard block |
||
| 3922 | 3922 | unlink($file); |
| 3923 | 3923 | } |
| 3924 | 3924 | } else { |
| 3925 | - $files = glob($cache_dir . '*'); |
|
| 3925 | + $files = glob($cache_dir.'*'); |
|
| 3926 | 3926 | foreach ($files as $file) { |
| 3927 | 3927 | $name = basename($file); |
| 3928 | 3928 | if (strpos($name, '.pageCache.php') === false) { |
@@ -3991,7 +3991,7 @@ discard block |
||
| 3991 | 3991 | $f_url_suffix = '/'; |
| 3992 | 3992 | } |
| 3993 | 3993 | |
| 3994 | - $alPath = !empty ($al['path']) ? $al['path'] . '/' : ''; |
|
| 3994 | + $alPath = !empty ($al['path']) ? $al['path'].'/' : ''; |
|
| 3995 | 3995 | |
| 3996 | 3996 | if ($al && $al['alias']) { |
| 3997 | 3997 | $alias = $al['alias']; |
@@ -3999,7 +3999,7 @@ discard block |
||
| 3999 | 3999 | |
| 4000 | 4000 | } |
| 4001 | 4001 | |
| 4002 | - $alias = $alPath . $f_url_prefix . $alias . $f_url_suffix; |
|
| 4002 | + $alias = $alPath.$f_url_prefix.$alias.$f_url_suffix; |
|
| 4003 | 4003 | $url = "{$alias}{$args}"; |
| 4004 | 4004 | } else { |
| 4005 | 4005 | $url = "index.php?id={$id}{$args}"; |
@@ -4018,7 +4018,7 @@ discard block |
||
| 4018 | 4018 | } |
| 4019 | 4019 | |
| 4020 | 4020 | //TODO: check to make sure that $site_url incudes the url :port (e.g. :8080) |
| 4021 | - $host = $scheme == 'full' ? $this->config['site_url'] : $scheme . '://' . $_SERVER['HTTP_HOST'] . $host; |
|
| 4021 | + $host = $scheme == 'full' ? $this->config['site_url'] : $scheme.'://'.$_SERVER['HTTP_HOST'].$host; |
|
| 4022 | 4022 | } |
| 4023 | 4023 | |
| 4024 | 4024 | //fix strictUrl by Bumkaka |
@@ -4027,9 +4027,9 @@ discard block |
||
| 4027 | 4027 | } |
| 4028 | 4028 | |
| 4029 | 4029 | if ($this->config['xhtml_urls']) { |
| 4030 | - $url = preg_replace("/&(?!amp;)/", "&", $host . $virtualDir . $url); |
|
| 4030 | + $url = preg_replace("/&(?!amp;)/", "&", $host.$virtualDir.$url); |
|
| 4031 | 4031 | } else { |
| 4032 | - $url = $host . $virtualDir . $url; |
|
| 4032 | + $url = $host.$virtualDir.$url; |
|
| 4033 | 4033 | } |
| 4034 | 4034 | |
| 4035 | 4035 | $evtOut = $this->invokeEvent('OnMakeDocUrl', array( |
@@ -4053,21 +4053,21 @@ discard block |
||
| 4053 | 4053 | if (isset($this->aliasListing[$id])) { |
| 4054 | 4054 | $out = $this->aliasListing[$id]; |
| 4055 | 4055 | } else { |
| 4056 | - $q = $this->db->query("SELECT id,alias,isfolder,parent FROM " . $this->getFullTableName("site_content") . " WHERE id=" . (int)$id); |
|
| 4056 | + $q = $this->db->query("SELECT id,alias,isfolder,parent FROM ".$this->getFullTableName("site_content")." WHERE id=".(int) $id); |
|
| 4057 | 4057 | if ($this->db->getRecordCount($q) == '1') { |
| 4058 | 4058 | $q = $this->db->getRow($q); |
| 4059 | 4059 | $this->aliasListing[$id] = array( |
| 4060 | - 'id' => (int)$q['id'], |
|
| 4060 | + 'id' => (int) $q['id'], |
|
| 4061 | 4061 | 'alias' => $q['alias'] == '' ? $q['id'] : $q['alias'], |
| 4062 | - 'parent' => (int)$q['parent'], |
|
| 4063 | - 'isfolder' => (int)$q['isfolder'], |
|
| 4062 | + 'parent' => (int) $q['parent'], |
|
| 4063 | + 'isfolder' => (int) $q['isfolder'], |
|
| 4064 | 4064 | ); |
| 4065 | 4065 | if ($this->aliasListing[$id]['parent'] > 0) { |
| 4066 | 4066 | //fix alias_path_usage |
| 4067 | 4067 | if ($this->config['use_alias_path'] == '1') { |
| 4068 | 4068 | //&& $tmp['path'] != '' - fix error slash with epty path |
| 4069 | 4069 | $tmp = $this->getAliasListing($this->aliasListing[$id]['parent']); |
| 4070 | - $this->aliasListing[$id]['path'] = $tmp['path'] . ($tmp['alias_visible'] ? (($tmp['parent'] > 0 && $tmp['path'] != '') ? '/' : '') . $tmp['alias'] : ''); |
|
| 4070 | + $this->aliasListing[$id]['path'] = $tmp['path'].($tmp['alias_visible'] ? (($tmp['parent'] > 0 && $tmp['path'] != '') ? '/' : '').$tmp['alias'] : ''); |
|
| 4071 | 4071 | } else { |
| 4072 | 4072 | $this->aliasListing[$id]['path'] = ''; |
| 4073 | 4073 | } |
@@ -4108,7 +4108,7 @@ discard block |
||
| 4108 | 4108 | $out = array(); |
| 4109 | 4109 | if (empty($this->version) || !is_array($this->version)) { |
| 4110 | 4110 | //include for compatibility modx version < 1.0.10 |
| 4111 | - include MODX_MANAGER_PATH . "includes/version.inc.php"; |
|
| 4111 | + include MODX_MANAGER_PATH."includes/version.inc.php"; |
|
| 4112 | 4112 | $this->version = array(); |
| 4113 | 4113 | $this->version['version'] = isset($modx_version) ? $modx_version : ''; |
| 4114 | 4114 | $this->version['branch'] = isset($modx_branch) ? $modx_branch : ''; |
@@ -4130,18 +4130,18 @@ discard block |
||
| 4130 | 4130 | { |
| 4131 | 4131 | if (isset ($this->snippetCache[$snippetName])) { |
| 4132 | 4132 | $snippet = $this->snippetCache[$snippetName]; |
| 4133 | - $properties = !empty($this->snippetCache[$snippetName . "Props"]) ? $this->snippetCache[$snippetName . "Props"] : ''; |
|
| 4133 | + $properties = !empty($this->snippetCache[$snippetName."Props"]) ? $this->snippetCache[$snippetName."Props"] : ''; |
|
| 4134 | 4134 | } else { // not in cache so let's check the db |
| 4135 | - $sql = "SELECT ss.`name`, ss.`snippet`, ss.`properties`, sm.properties as `sharedproperties` FROM " . $this->getFullTableName("site_snippets") . " as ss LEFT JOIN " . $this->getFullTableName('site_modules') . " as sm on sm.guid=ss.moduleguid WHERE ss.`name`='" . $this->db->escape($snippetName) . "' AND ss.disabled=0;"; |
|
| 4135 | + $sql = "SELECT ss.`name`, ss.`snippet`, ss.`properties`, sm.properties as `sharedproperties` FROM ".$this->getFullTableName("site_snippets")." as ss LEFT JOIN ".$this->getFullTableName('site_modules')." as sm on sm.guid=ss.moduleguid WHERE ss.`name`='".$this->db->escape($snippetName)."' AND ss.disabled=0;"; |
|
| 4136 | 4136 | $result = $this->db->query($sql); |
| 4137 | 4137 | if ($this->db->getRecordCount($result) == 1) { |
| 4138 | 4138 | $row = $this->db->getRow($result); |
| 4139 | 4139 | $snippet = $this->snippetCache[$snippetName] = $row['snippet']; |
| 4140 | 4140 | $mergedProperties = array_merge($this->parseProperties($row['properties']), $this->parseProperties($row['sharedproperties'])); |
| 4141 | - $properties = $this->snippetCache[$snippetName . "Props"] = json_encode($mergedProperties); |
|
| 4141 | + $properties = $this->snippetCache[$snippetName."Props"] = json_encode($mergedProperties); |
|
| 4142 | 4142 | } else { |
| 4143 | 4143 | $snippet = $this->snippetCache[$snippetName] = "return false;"; |
| 4144 | - $properties = $this->snippetCache[$snippetName . "Props"] = ''; |
|
| 4144 | + $properties = $this->snippetCache[$snippetName."Props"] = ''; |
|
| 4145 | 4145 | } |
| 4146 | 4146 | } |
| 4147 | 4147 | // load default params/properties |
@@ -4244,8 +4244,8 @@ discard block |
||
| 4244 | 4244 | } |
| 4245 | 4245 | if (strpos($tpl, $s) !== false) { |
| 4246 | 4246 | $tpl = str_replace($s, $value, $tpl); |
| 4247 | - } elseif($this->debug) { |
|
| 4248 | - $this->addLog('parseText parse error', $_SERVER['REQUEST_URI'] . $s, 2); |
|
| 4247 | + } elseif ($this->debug) { |
|
| 4248 | + $this->addLog('parseText parse error', $_SERVER['REQUEST_URI'].$s, 2); |
|
| 4249 | 4249 | } |
| 4250 | 4250 | } |
| 4251 | 4251 | |
@@ -4294,7 +4294,7 @@ discard block |
||
| 4294 | 4294 | case 'CODE': |
| 4295 | 4295 | break; |
| 4296 | 4296 | case 'FILE': |
| 4297 | - $template = file_get_contents(MODX_BASE_PATH . $template); |
|
| 4297 | + $template = file_get_contents(MODX_BASE_PATH.$template); |
|
| 4298 | 4298 | break; |
| 4299 | 4299 | case 'CHUNK': |
| 4300 | 4300 | $template = $this->getChunk($template); |
@@ -4347,7 +4347,7 @@ discard block |
||
| 4347 | 4347 | } |
| 4348 | 4348 | |
| 4349 | 4349 | if (empty($mode)) { |
| 4350 | - $strTime = strftime($dateFormat . " %H:%M:%S", $timestamp); |
|
| 4350 | + $strTime = strftime($dateFormat." %H:%M:%S", $timestamp); |
|
| 4351 | 4351 | } elseif ($mode == 'dateOnly') { |
| 4352 | 4352 | $strTime = strftime($dateFormat, $timestamp); |
| 4353 | 4353 | } elseif ($mode == 'formatOnly') { |
@@ -4443,7 +4443,7 @@ discard block |
||
| 4443 | 4443 | if ($v === 'value') { |
| 4444 | 4444 | unset($_[$i]); |
| 4445 | 4445 | } else { |
| 4446 | - $_[$i] = 'tv.' . $v; |
|
| 4446 | + $_[$i] = 'tv.'.$v; |
|
| 4447 | 4447 | } |
| 4448 | 4448 | } |
| 4449 | 4449 | $fields = join(',', $_); |
@@ -4452,12 +4452,12 @@ discard block |
||
| 4452 | 4452 | } |
| 4453 | 4453 | |
| 4454 | 4454 | if ($tvsort != '') { |
| 4455 | - $tvsort = 'tv.' . join(',tv.', array_filter(array_map('trim', explode(',', $tvsort)))); |
|
| 4455 | + $tvsort = 'tv.'.join(',tv.', array_filter(array_map('trim', explode(',', $tvsort)))); |
|
| 4456 | 4456 | } |
| 4457 | 4457 | if ($tvidnames == "*") { |
| 4458 | 4458 | $query = "tv.id<>0"; |
| 4459 | 4459 | } else { |
| 4460 | - $query = (is_numeric($tvidnames[0]) ? "tv.id" : "tv.name") . " IN ('" . join("','", $tvidnames) . "')"; |
|
| 4460 | + $query = (is_numeric($tvidnames[0]) ? "tv.id" : "tv.name")." IN ('".join("','", $tvidnames)."')"; |
|
| 4461 | 4461 | } |
| 4462 | 4462 | |
| 4463 | 4463 | $this->getUserDocGroups(); |
@@ -4601,7 +4601,7 @@ discard block |
||
| 4601 | 4601 | return $this->tmpCache[__FUNCTION__][$cacheKey]; |
| 4602 | 4602 | } |
| 4603 | 4603 | |
| 4604 | - if (($idnames != '*' && !is_array($idnames)) || empty($idnames) ) { |
|
| 4604 | + if (($idnames != '*' && !is_array($idnames)) || empty($idnames)) { |
|
| 4605 | 4605 | return false; |
| 4606 | 4606 | } else { |
| 4607 | 4607 | |
@@ -4619,23 +4619,23 @@ discard block |
||
| 4619 | 4619 | } |
| 4620 | 4620 | |
| 4621 | 4621 | // get user defined template variables |
| 4622 | - $fields = ($fields == '') ? 'tv.*' : 'tv.' . implode(',tv.', array_filter(array_map('trim', explode(',', $fields)))); |
|
| 4623 | - $sort = ($sort == '') ? '' : 'tv.' . implode(',tv.', array_filter(array_map('trim', explode(',', $sort)))); |
|
| 4622 | + $fields = ($fields == '') ? 'tv.*' : 'tv.'.implode(',tv.', array_filter(array_map('trim', explode(',', $fields)))); |
|
| 4623 | + $sort = ($sort == '') ? '' : 'tv.'.implode(',tv.', array_filter(array_map('trim', explode(',', $sort)))); |
|
| 4624 | 4624 | |
| 4625 | 4625 | if ($idnames == '*') { |
| 4626 | 4626 | $query = 'tv.id<>0'; |
| 4627 | 4627 | } else { |
| 4628 | - $query = (is_numeric($idnames[0]) ? 'tv.id' : 'tv.name') . " IN ('" . implode("','", $idnames) . "')"; |
|
| 4628 | + $query = (is_numeric($idnames[0]) ? 'tv.id' : 'tv.name')." IN ('".implode("','", $idnames)."')"; |
|
| 4629 | 4629 | } |
| 4630 | 4630 | |
| 4631 | - $rs = $this->db->select("{$fields}, IF(tvc.value != '', tvc.value, tv.default_text) as value", $this->getFullTableName('site_tmplvars') . " tv |
|
| 4632 | - INNER JOIN " . $this->getFullTableName('site_tmplvar_templates') . " tvtpl ON tvtpl.tmplvarid = tv.id |
|
| 4633 | - LEFT JOIN " . $this->getFullTableName('site_tmplvar_contentvalues') . " tvc ON tvc.tmplvarid=tv.id AND tvc.contentid = '{$docid}'", "{$query} AND tvtpl.templateid = '{$docRow['template']}'", ($sort ? "{$sort} {$dir}" : "")); |
|
| 4631 | + $rs = $this->db->select("{$fields}, IF(tvc.value != '', tvc.value, tv.default_text) as value", $this->getFullTableName('site_tmplvars')." tv |
|
| 4632 | + INNER JOIN " . $this->getFullTableName('site_tmplvar_templates')." tvtpl ON tvtpl.tmplvarid = tv.id |
|
| 4633 | + LEFT JOIN " . $this->getFullTableName('site_tmplvar_contentvalues')." tvc ON tvc.tmplvarid=tv.id AND tvc.contentid = '{$docid}'", "{$query} AND tvtpl.templateid = '{$docRow['template']}'", ($sort ? "{$sort} {$dir}" : "")); |
|
| 4634 | 4634 | |
| 4635 | 4635 | $result = $this->db->makeArray($rs); |
| 4636 | 4636 | |
| 4637 | 4637 | // get default/built-in template variables |
| 4638 | - if(is_array($docRow)){ |
|
| 4638 | + if (is_array($docRow)) { |
|
| 4639 | 4639 | ksort($docRow); |
| 4640 | 4640 | |
| 4641 | 4641 | foreach ($docRow as $key => $value) { |
@@ -4673,7 +4673,7 @@ discard block |
||
| 4673 | 4673 | */ |
| 4674 | 4674 | function getTemplateVarOutput($idnames = array(), $docid = '', $published = 1, $sep = '') |
| 4675 | 4675 | { |
| 4676 | - if (is_array($idnames) && empty($idnames) ) { |
|
| 4676 | + if (is_array($idnames) && empty($idnames)) { |
|
| 4677 | 4677 | return false; |
| 4678 | 4678 | } else { |
| 4679 | 4679 | $output = array(); |
@@ -4686,9 +4686,9 @@ discard block |
||
| 4686 | 4686 | if ($result == false) { |
| 4687 | 4687 | return false; |
| 4688 | 4688 | } else { |
| 4689 | - $baspath = MODX_MANAGER_PATH . 'includes'; |
|
| 4690 | - include_once $baspath . '/tmplvars.format.inc.php'; |
|
| 4691 | - include_once $baspath . '/tmplvars.commands.inc.php'; |
|
| 4689 | + $baspath = MODX_MANAGER_PATH.'includes'; |
|
| 4690 | + include_once $baspath.'/tmplvars.format.inc.php'; |
|
| 4691 | + include_once $baspath.'/tmplvars.commands.inc.php'; |
|
| 4692 | 4692 | |
| 4693 | 4693 | for ($i = 0; $i < count($result); $i++) { |
| 4694 | 4694 | $row = $result[$i]; |
@@ -4713,7 +4713,7 @@ discard block |
||
| 4713 | 4713 | */ |
| 4714 | 4714 | function getFullTableName($tbl) |
| 4715 | 4715 | { |
| 4716 | - return $this->db->config['dbase'] . ".`" . $this->db->config['table_prefix'] . $tbl . "`"; |
|
| 4716 | + return $this->db->config['dbase'].".`".$this->db->config['table_prefix'].$tbl."`"; |
|
| 4717 | 4717 | } |
| 4718 | 4718 | |
| 4719 | 4719 | /** |
@@ -4792,7 +4792,7 @@ discard block |
||
| 4792 | 4792 | function getCachePath() |
| 4793 | 4793 | { |
| 4794 | 4794 | global $base_url; |
| 4795 | - $pth = $base_url . $this->getCacheFolder(); |
|
| 4795 | + $pth = $base_url.$this->getCacheFolder(); |
|
| 4796 | 4796 | return $pth; |
| 4797 | 4797 | } |
| 4798 | 4798 | |
@@ -4844,8 +4844,8 @@ discard block |
||
| 4844 | 4844 | $out = false; |
| 4845 | 4845 | |
| 4846 | 4846 | if (!empty($context)) { |
| 4847 | - if (is_scalar($context) && isset($_SESSION[$context . 'Validated'])) { |
|
| 4848 | - $out = $_SESSION[$context . 'InternalKey']; |
|
| 4847 | + if (is_scalar($context) && isset($_SESSION[$context.'Validated'])) { |
|
| 4848 | + $out = $_SESSION[$context.'InternalKey']; |
|
| 4849 | 4849 | } |
| 4850 | 4850 | } else { |
| 4851 | 4851 | switch (true) { |
@@ -4873,8 +4873,8 @@ discard block |
||
| 4873 | 4873 | $out = false; |
| 4874 | 4874 | |
| 4875 | 4875 | if (!empty($context)) { |
| 4876 | - if (is_scalar($context) && isset($_SESSION[$context . 'Validated'])) { |
|
| 4877 | - $out = $_SESSION[$context . 'Shortname']; |
|
| 4876 | + if (is_scalar($context) && isset($_SESSION[$context.'Validated'])) { |
|
| 4877 | + $out = $_SESSION[$context.'Shortname']; |
|
| 4878 | 4878 | } |
| 4879 | 4879 | } else { |
| 4880 | 4880 | switch (true) { |
@@ -4945,8 +4945,8 @@ discard block |
||
| 4945 | 4945 | */ |
| 4946 | 4946 | function getWebUserInfo($uid) |
| 4947 | 4947 | { |
| 4948 | - $rs = $this->db->select('wu.username, wu.password, wua.*', $this->getFullTableName("web_users") . " wu |
|
| 4949 | - INNER JOIN " . $this->getFullTableName("web_user_attributes") . " wua ON wua.internalkey=wu.id", "wu.id='{$uid}'"); |
|
| 4948 | + $rs = $this->db->select('wu.username, wu.password, wua.*', $this->getFullTableName("web_users")." wu |
|
| 4949 | + INNER JOIN " . $this->getFullTableName("web_user_attributes")." wua ON wua.internalkey=wu.id", "wu.id='{$uid}'"); |
|
| 4950 | 4950 | if ($row = $this->db->getRow($rs)) { |
| 4951 | 4951 | if (!isset($row['usertype']) or !$row["usertype"]) { |
| 4952 | 4952 | $row["usertype"] = "web"; |
@@ -4982,7 +4982,7 @@ discard block |
||
| 4982 | 4982 | } else if (is_array($dg)) { |
| 4983 | 4983 | // resolve ids to names |
| 4984 | 4984 | $dgn = array(); |
| 4985 | - $ds = $this->db->select('name', $this->getFullTableName("documentgroup_names"), "id IN (" . implode(",", $dg) . ")"); |
|
| 4985 | + $ds = $this->db->select('name', $this->getFullTableName("documentgroup_names"), "id IN (".implode(",", $dg).")"); |
|
| 4986 | 4986 | while ($row = $this->db->getRow($ds)) { |
| 4987 | 4987 | $dgn[] = $row['name']; |
| 4988 | 4988 | } |
@@ -5010,7 +5010,7 @@ discard block |
||
| 5010 | 5010 | $rt = false; |
| 5011 | 5011 | if ($_SESSION["webValidated"] == 1) { |
| 5012 | 5012 | $tbl = $this->getFullTableName("web_users"); |
| 5013 | - $ds = $this->db->select('id, username, password', $tbl, "id='" . $this->getLoginUserID() . "'"); |
|
| 5013 | + $ds = $this->db->select('id, username, password', $tbl, "id='".$this->getLoginUserID()."'"); |
|
| 5014 | 5014 | if ($row = $this->db->getRow($ds)) { |
| 5015 | 5015 | if ($row["password"] == md5($oldPwd)) { |
| 5016 | 5016 | if (strlen($newPwd) < 6) { |
@@ -5020,7 +5020,7 @@ discard block |
||
| 5020 | 5020 | } else { |
| 5021 | 5021 | $this->db->update(array( |
| 5022 | 5022 | 'password' => $this->db->escape($newPwd), |
| 5023 | - ), $tbl, "id='" . $this->getLoginUserID() . "'"); |
|
| 5023 | + ), $tbl, "id='".$this->getLoginUserID()."'"); |
|
| 5024 | 5024 | // invoke OnWebChangePassword event |
| 5025 | 5025 | $this->invokeEvent("OnWebChangePassword", array( |
| 5026 | 5026 | "userid" => $row["id"], |
@@ -5051,8 +5051,8 @@ discard block |
||
| 5051 | 5051 | // check cache |
| 5052 | 5052 | $grpNames = isset ($_SESSION['webUserGroupNames']) ? $_SESSION['webUserGroupNames'] : false; |
| 5053 | 5053 | if (!is_array($grpNames)) { |
| 5054 | - $rs = $this->db->select('wgn.name', $this->getFullTableName("webgroup_names") . " wgn |
|
| 5055 | - INNER JOIN " . $this->getFullTableName("web_groups") . " wg ON wg.webgroup=wgn.id AND wg.webuser='" . $this->getLoginUserID() . "'"); |
|
| 5054 | + $rs = $this->db->select('wgn.name', $this->getFullTableName("webgroup_names")." wgn |
|
| 5055 | + INNER JOIN " . $this->getFullTableName("web_groups")." wg ON wg.webgroup=wgn.id AND wg.webuser='".$this->getLoginUserID()."'"); |
|
| 5056 | 5056 | $grpNames = $this->db->getColumn("name", $rs); |
| 5057 | 5057 | // save to cache |
| 5058 | 5058 | $_SESSION['webUserGroupNames'] = $grpNames; |
@@ -5085,7 +5085,7 @@ discard block |
||
| 5085 | 5085 | if (strpos(strtolower($src), "<style") !== false || strpos(strtolower($src), "<link") !== false) { |
| 5086 | 5086 | $this->sjscripts[$nextpos] = $src; |
| 5087 | 5087 | } else { |
| 5088 | - $this->sjscripts[$nextpos] = "\t" . '<link rel="stylesheet" type="text/css" href="' . $src . '" ' . ($media ? 'media="' . $media . '" ' : '') . '/>'; |
|
| 5088 | + $this->sjscripts[$nextpos] = "\t".'<link rel="stylesheet" type="text/css" href="'.$src.'" '.($media ? 'media="'.$media.'" ' : '').'/>'; |
|
| 5089 | 5089 | } |
| 5090 | 5090 | } |
| 5091 | 5091 | |
@@ -5164,7 +5164,7 @@ discard block |
||
| 5164 | 5164 | } |
| 5165 | 5165 | |
| 5166 | 5166 | if ($useThisVer && $plaintext != true && (strpos(strtolower($src), "<script") === false)) { |
| 5167 | - $src = "\t" . '<script type="text/javascript" src="' . $src . '"></script>'; |
|
| 5167 | + $src = "\t".'<script type="text/javascript" src="'.$src.'"></script>'; |
|
| 5168 | 5168 | } |
| 5169 | 5169 | if ($startup) { |
| 5170 | 5170 | $pos = isset($overwritepos) ? $overwritepos : max(array_merge(array(0), array_keys($this->sjscripts))) + 1; |
@@ -5310,7 +5310,7 @@ discard block |
||
| 5310 | 5310 | $eventtime = $this->getMicroTime() - $eventtime; |
| 5311 | 5311 | $this->pluginsCode .= sprintf('<fieldset><legend><b>%s / %s</b> (%2.2f ms)</legend>', $evtName, $pluginName, $eventtime * 1000); |
| 5312 | 5312 | foreach ($parameter as $k => $v) { |
| 5313 | - $this->pluginsCode .= "{$k} => " . print_r($v, true) . '<br>'; |
|
| 5313 | + $this->pluginsCode .= "{$k} => ".print_r($v, true).'<br>'; |
|
| 5314 | 5314 | } |
| 5315 | 5315 | $this->pluginsCode .= '</fieldset><br />'; |
| 5316 | 5316 | $this->pluginsTime["{$evtName} / {$pluginName}"] += $eventtime; |
@@ -5338,13 +5338,13 @@ discard block |
||
| 5338 | 5338 | $plugin = array(); |
| 5339 | 5339 | if (isset ($this->pluginCache[$pluginName])) { |
| 5340 | 5340 | $pluginCode = $this->pluginCache[$pluginName]; |
| 5341 | - $pluginProperties = isset($this->pluginCache[$pluginName . "Props"]) ? $this->pluginCache[$pluginName . "Props"] : ''; |
|
| 5341 | + $pluginProperties = isset($this->pluginCache[$pluginName."Props"]) ? $this->pluginCache[$pluginName."Props"] : ''; |
|
| 5342 | 5342 | } else { |
| 5343 | 5343 | $pluginName = $this->db->escape($pluginName); |
| 5344 | 5344 | $result = $this->db->select('name, plugincode, properties', $this->getFullTableName("site_plugins"), "name='{$pluginName}' AND disabled=0"); |
| 5345 | 5345 | if ($row = $this->db->getRow($result)) { |
| 5346 | 5346 | $pluginCode = $this->pluginCache[$row['name']] = $row['plugincode']; |
| 5347 | - $pluginProperties = $this->pluginCache[$row['name'] . "Props"] = $row['properties']; |
|
| 5347 | + $pluginProperties = $this->pluginCache[$row['name']."Props"] = $row['properties']; |
|
| 5348 | 5348 | } else { |
| 5349 | 5349 | $pluginCode = $this->pluginCache[$pluginName] = "return false;"; |
| 5350 | 5350 | $pluginProperties = ''; |
@@ -5451,7 +5451,7 @@ discard block |
||
| 5451 | 5451 | function parseDocBlockFromFile($element_dir, $filename, $escapeValues = false) |
| 5452 | 5452 | { |
| 5453 | 5453 | $params = array(); |
| 5454 | - $fullpath = $element_dir . '/' . $filename; |
|
| 5454 | + $fullpath = $element_dir.'/'.$filename; |
|
| 5455 | 5455 | if (is_readable($fullpath)) { |
| 5456 | 5456 | $tpl = @fopen($fullpath, "r"); |
| 5457 | 5457 | if ($tpl) { |
@@ -5618,8 +5618,8 @@ discard block |
||
| 5618 | 5618 | $ph = array('site_url' => MODX_SITE_URL); |
| 5619 | 5619 | $regexUrl = "/((http|https|ftp|ftps)\:\/\/[^\/]+(\/[^\s]+[^,.?!:;\s])?)/"; |
| 5620 | 5620 | $regexEmail = '#([0-9a-z]([-_.]?[0-9a-z])*@[0-9a-z]([-.]?[0-9a-z])*\\.[a-wyz][a-z](fo|g|l|m|mes|o|op|pa|ro|seum|t|u|v|z)?)#i'; |
| 5621 | - $emailSubject = isset($parsed['name']) ? '?subject=' . $parsed['name'] : ''; |
|
| 5622 | - $emailSubject .= isset($parsed['version']) ? ' v' . $parsed['version'] : ''; |
|
| 5621 | + $emailSubject = isset($parsed['name']) ? '?subject='.$parsed['name'] : ''; |
|
| 5622 | + $emailSubject .= isset($parsed['version']) ? ' v'.$parsed['version'] : ''; |
|
| 5623 | 5623 | foreach ($parsed as $key => $val) { |
| 5624 | 5624 | if (is_array($val)) { |
| 5625 | 5625 | foreach ($val as $key2 => $val2) { |
@@ -5628,7 +5628,7 @@ discard block |
||
| 5628 | 5628 | $val2 = preg_replace($regexUrl, "<a href=\"{$url[0]}\" target=\"_blank\">{$url[0]}</a> ", $val2); |
| 5629 | 5629 | } |
| 5630 | 5630 | if (preg_match($regexEmail, $val2, $url)) { |
| 5631 | - $val2 = preg_replace($regexEmail, '<a href="mailto:\\1' . $emailSubject . '">\\1</a>', $val2); |
|
| 5631 | + $val2 = preg_replace($regexEmail, '<a href="mailto:\\1'.$emailSubject.'">\\1</a>', $val2); |
|
| 5632 | 5632 | } |
| 5633 | 5633 | $parsed[$key][$key2] = $val2; |
| 5634 | 5634 | } |
@@ -5638,7 +5638,7 @@ discard block |
||
| 5638 | 5638 | $val = preg_replace($regexUrl, "<a href=\"{$url[0]}\" target=\"_blank\">{$url[0]}</a> ", $val); |
| 5639 | 5639 | } |
| 5640 | 5640 | if (preg_match($regexEmail, $val, $url)) { |
| 5641 | - $val = preg_replace($regexEmail, '<a href="mailto:\\1' . $emailSubject . '">\\1</a>', $val); |
|
| 5641 | + $val = preg_replace($regexEmail, '<a href="mailto:\\1'.$emailSubject.'">\\1</a>', $val); |
|
| 5642 | 5642 | } |
| 5643 | 5643 | $parsed[$key] = $val; |
| 5644 | 5644 | } |
@@ -5652,32 +5652,32 @@ discard block |
||
| 5652 | 5652 | ); |
| 5653 | 5653 | |
| 5654 | 5654 | $nl = "\n"; |
| 5655 | - $list = isset($parsed['logo']) ? '<img src="' . $this->config['base_url'] . ltrim($parsed['logo'], "/") . '" style="float:right;max-width:100px;height:auto;" />' . $nl : ''; |
|
| 5656 | - $list .= '<p>' . $nl; |
|
| 5657 | - $list .= isset($parsed['name']) ? '<strong>' . $parsed['name'] . '</strong><br/>' . $nl : ''; |
|
| 5658 | - $list .= isset($parsed['description']) ? $parsed['description'] . $nl : ''; |
|
| 5659 | - $list .= '</p><br/>' . $nl; |
|
| 5660 | - $list .= isset($parsed['version']) ? '<p><strong>' . $_lang['version'] . ':</strong> ' . $parsed['version'] . '</p>' . $nl : ''; |
|
| 5661 | - $list .= isset($parsed['license']) ? '<p><strong>' . $_lang['license'] . ':</strong> ' . $parsed['license'] . '</p>' . $nl : ''; |
|
| 5662 | - $list .= isset($parsed['lastupdate']) ? '<p><strong>' . $_lang['last_update'] . ':</strong> ' . $parsed['lastupdate'] . '</p>' . $nl : ''; |
|
| 5663 | - $list .= '<br/>' . $nl; |
|
| 5655 | + $list = isset($parsed['logo']) ? '<img src="'.$this->config['base_url'].ltrim($parsed['logo'], "/").'" style="float:right;max-width:100px;height:auto;" />'.$nl : ''; |
|
| 5656 | + $list .= '<p>'.$nl; |
|
| 5657 | + $list .= isset($parsed['name']) ? '<strong>'.$parsed['name'].'</strong><br/>'.$nl : ''; |
|
| 5658 | + $list .= isset($parsed['description']) ? $parsed['description'].$nl : ''; |
|
| 5659 | + $list .= '</p><br/>'.$nl; |
|
| 5660 | + $list .= isset($parsed['version']) ? '<p><strong>'.$_lang['version'].':</strong> '.$parsed['version'].'</p>'.$nl : ''; |
|
| 5661 | + $list .= isset($parsed['license']) ? '<p><strong>'.$_lang['license'].':</strong> '.$parsed['license'].'</p>'.$nl : ''; |
|
| 5662 | + $list .= isset($parsed['lastupdate']) ? '<p><strong>'.$_lang['last_update'].':</strong> '.$parsed['lastupdate'].'</p>'.$nl : ''; |
|
| 5663 | + $list .= '<br/>'.$nl; |
|
| 5664 | 5664 | $first = true; |
| 5665 | 5665 | foreach ($arrayParams as $param => $label) { |
| 5666 | 5666 | if (isset($parsed[$param])) { |
| 5667 | 5667 | if ($first) { |
| 5668 | - $list .= '<p><strong>' . $_lang['references'] . '</strong></p>' . $nl; |
|
| 5669 | - $list .= '<ul class="docBlockList">' . $nl; |
|
| 5668 | + $list .= '<p><strong>'.$_lang['references'].'</strong></p>'.$nl; |
|
| 5669 | + $list .= '<ul class="docBlockList">'.$nl; |
|
| 5670 | 5670 | $first = false; |
| 5671 | 5671 | } |
| 5672 | - $list .= ' <li><strong>' . $label . '</strong>' . $nl; |
|
| 5673 | - $list .= ' <ul>' . $nl; |
|
| 5672 | + $list .= ' <li><strong>'.$label.'</strong>'.$nl; |
|
| 5673 | + $list .= ' <ul>'.$nl; |
|
| 5674 | 5674 | foreach ($parsed[$param] as $val) { |
| 5675 | - $list .= ' <li>' . $val . '</li>' . $nl; |
|
| 5675 | + $list .= ' <li>'.$val.'</li>'.$nl; |
|
| 5676 | 5676 | } |
| 5677 | - $list .= ' </ul></li>' . $nl; |
|
| 5677 | + $list .= ' </ul></li>'.$nl; |
|
| 5678 | 5678 | } |
| 5679 | 5679 | } |
| 5680 | - $list .= !$first ? '</ul>' . $nl : ''; |
|
| 5680 | + $list .= !$first ? '</ul>'.$nl : ''; |
|
| 5681 | 5681 | |
| 5682 | 5682 | return $list; |
| 5683 | 5683 | } |
@@ -5753,7 +5753,7 @@ discard block |
||
| 5753 | 5753 | */ |
| 5754 | 5754 | function addSnippet($name, $phpCode) |
| 5755 | 5755 | { |
| 5756 | - $this->snippetCache['#' . $name] = $phpCode; |
|
| 5756 | + $this->snippetCache['#'.$name] = $phpCode; |
|
| 5757 | 5757 | } |
| 5758 | 5758 | |
| 5759 | 5759 | /** |
@@ -5762,7 +5762,7 @@ discard block |
||
| 5762 | 5762 | */ |
| 5763 | 5763 | function addChunk($name, $text) |
| 5764 | 5764 | { |
| 5765 | - $this->chunkCache['#' . $name] = $text; |
|
| 5765 | + $this->chunkCache['#'.$name] = $text; |
|
| 5766 | 5766 | } |
| 5767 | 5767 | |
| 5768 | 5768 | /** |
@@ -5798,7 +5798,7 @@ discard block |
||
| 5798 | 5798 | } |
| 5799 | 5799 | |
| 5800 | 5800 | if (!$isSafe) { |
| 5801 | - $msg = $phpcode . "\n" . $this->currentSnippet . "\n" . print_r($_SERVER, true); |
|
| 5801 | + $msg = $phpcode."\n".$this->currentSnippet."\n".print_r($_SERVER, true); |
|
| 5802 | 5802 | $title = sprintf('Unknown eval was executed (%s)', $this->htmlspecialchars(substr(trim($phpcode), 0, 50))); |
| 5803 | 5803 | $this->messageQuit($title, '', true, '', '', 'Parser', $msg); |
| 5804 | 5804 | return; |
@@ -5812,7 +5812,7 @@ discard block |
||
| 5812 | 5812 | return 'array()'; |
| 5813 | 5813 | } |
| 5814 | 5814 | |
| 5815 | - $output = $echo . $return; |
|
| 5815 | + $output = $echo.$return; |
|
| 5816 | 5816 | modx_sanitize_gpc($output); |
| 5817 | 5817 | return $this->htmlspecialchars($output); // Maybe, all html tags are dangerous |
| 5818 | 5818 | } |
@@ -5830,8 +5830,8 @@ discard block |
||
| 5830 | 5830 | |
| 5831 | 5831 | $safe = explode(',', $safe_functions); |
| 5832 | 5832 | |
| 5833 | - $phpcode = rtrim($phpcode, ';') . ';'; |
|
| 5834 | - $tokens = token_get_all('<?php ' . $phpcode); |
|
| 5833 | + $phpcode = rtrim($phpcode, ';').';'; |
|
| 5834 | + $tokens = token_get_all('<?php '.$phpcode); |
|
| 5835 | 5835 | foreach ($tokens as $i => $token) { |
| 5836 | 5836 | if (!is_array($token)) { |
| 5837 | 5837 | continue; |
@@ -5867,7 +5867,7 @@ discard block |
||
| 5867 | 5867 | function atBindFileContent($str = '') |
| 5868 | 5868 | { |
| 5869 | 5869 | |
| 5870 | - $search_path = array('assets/tvs/', 'assets/chunks/', 'assets/templates/', $this->config['rb_base_url'] . 'files/', ''); |
|
| 5870 | + $search_path = array('assets/tvs/', 'assets/chunks/', 'assets/templates/', $this->config['rb_base_url'].'files/', ''); |
|
| 5871 | 5871 | |
| 5872 | 5872 | if (stripos($str, '@FILE') !== 0) { |
| 5873 | 5873 | return $str; |
@@ -5890,7 +5890,7 @@ discard block |
||
| 5890 | 5890 | $errorMsg = sprintf("Could not retrieve string '%s'.", $str); |
| 5891 | 5891 | |
| 5892 | 5892 | foreach ($search_path as $path) { |
| 5893 | - $file_path = MODX_BASE_PATH . $path . $str; |
|
| 5893 | + $file_path = MODX_BASE_PATH.$path.$str; |
|
| 5894 | 5894 | if (strpos($file_path, MODX_MANAGER_PATH) === 0) { |
| 5895 | 5895 | return $errorMsg; |
| 5896 | 5896 | } elseif (is_file($file_path)) { |
@@ -5904,7 +5904,7 @@ discard block |
||
| 5904 | 5904 | return $errorMsg; |
| 5905 | 5905 | } |
| 5906 | 5906 | |
| 5907 | - $content = (string)file_get_contents($file_path); |
|
| 5907 | + $content = (string) file_get_contents($file_path); |
|
| 5908 | 5908 | if ($content === false) { |
| 5909 | 5909 | return $errorMsg; |
| 5910 | 5910 | } |
@@ -6017,22 +6017,22 @@ discard block |
||
| 6017 | 6017 | |
| 6018 | 6018 | $version = isset ($GLOBALS['modx_version']) ? $GLOBALS['modx_version'] : ''; |
| 6019 | 6019 | $release_date = isset ($GLOBALS['release_date']) ? $GLOBALS['release_date'] : ''; |
| 6020 | - $request_uri = "http://" . $_SERVER['HTTP_HOST'] . ($_SERVER["SERVER_PORT"] == 80 ? "" : (":" . $_SERVER["SERVER_PORT"])) . $_SERVER['REQUEST_URI']; |
|
| 6020 | + $request_uri = "http://".$_SERVER['HTTP_HOST'].($_SERVER["SERVER_PORT"] == 80 ? "" : (":".$_SERVER["SERVER_PORT"])).$_SERVER['REQUEST_URI']; |
|
| 6021 | 6021 | $request_uri = $this->htmlspecialchars($request_uri, ENT_QUOTES, $this->config['modx_charset']); |
| 6022 | 6022 | $ua = $this->htmlspecialchars($_SERVER['HTTP_USER_AGENT'], ENT_QUOTES, $this->config['modx_charset']); |
| 6023 | 6023 | $referer = $this->htmlspecialchars($_SERVER['HTTP_REFERER'], ENT_QUOTES, $this->config['modx_charset']); |
| 6024 | 6024 | if ($is_error) { |
| 6025 | 6025 | $str = '<h2 style="color:red">« Evo Parse Error »</h2>'; |
| 6026 | 6026 | if ($msg != 'PHP Parse Error') { |
| 6027 | - $str .= '<h3 style="color:red">' . $msg . '</h3>'; |
|
| 6027 | + $str .= '<h3 style="color:red">'.$msg.'</h3>'; |
|
| 6028 | 6028 | } |
| 6029 | 6029 | } else { |
| 6030 | 6030 | $str = '<h2 style="color:#003399">« Evo Debug/ stop message »</h2>'; |
| 6031 | - $str .= '<h3 style="color:#003399">' . $msg . '</h3>'; |
|
| 6031 | + $str .= '<h3 style="color:#003399">'.$msg.'</h3>'; |
|
| 6032 | 6032 | } |
| 6033 | 6033 | |
| 6034 | 6034 | if (!empty ($query)) { |
| 6035 | - $str .= '<div style="font-weight:bold;border:1px solid #ccc;padding:8px;color:#333;background-color:#ffffcd;margin-bottom:15px;">SQL > <span id="sqlHolder">' . $query . '</span></div>'; |
|
| 6035 | + $str .= '<div style="font-weight:bold;border:1px solid #ccc;padding:8px;color:#333;background-color:#ffffcd;margin-bottom:15px;">SQL > <span id="sqlHolder">'.$query.'</span></div>'; |
|
| 6036 | 6036 | } |
| 6037 | 6037 | |
| 6038 | 6038 | $errortype = array( |
@@ -6055,13 +6055,13 @@ discard block |
||
| 6055 | 6055 | |
| 6056 | 6056 | if (!empty($nr) || !empty($file)) { |
| 6057 | 6057 | if ($text != '') { |
| 6058 | - $str .= '<div style="font-weight:bold;border:1px solid #ccc;padding:8px;color:#333;background-color:#ffffcd;margin-bottom:15px;">Error : ' . $text . '</div>'; |
|
| 6058 | + $str .= '<div style="font-weight:bold;border:1px solid #ccc;padding:8px;color:#333;background-color:#ffffcd;margin-bottom:15px;">Error : '.$text.'</div>'; |
|
| 6059 | 6059 | } |
| 6060 | 6060 | if ($output != '') { |
| 6061 | - $str .= '<div style="font-weight:bold;border:1px solid #ccc;padding:8px;color:#333;background-color:#ffffcd;margin-bottom:15px;">' . $output . '</div>'; |
|
| 6061 | + $str .= '<div style="font-weight:bold;border:1px solid #ccc;padding:8px;color:#333;background-color:#ffffcd;margin-bottom:15px;">'.$output.'</div>'; |
|
| 6062 | 6062 | } |
| 6063 | 6063 | if ($nr !== '') { |
| 6064 | - $table[] = array('ErrorType[num]', $errortype [$nr] . "[" . $nr . "]"); |
|
| 6064 | + $table[] = array('ErrorType[num]', $errortype [$nr]."[".$nr."]"); |
|
| 6065 | 6065 | } |
| 6066 | 6066 | if ($file) { |
| 6067 | 6067 | $table[] = array('File', $file); |
@@ -6081,7 +6081,7 @@ discard block |
||
| 6081 | 6081 | } |
| 6082 | 6082 | |
| 6083 | 6083 | if (!empty($this->event->activePlugin)) { |
| 6084 | - $table[] = array('Current Plugin', $this->event->activePlugin . '(' . $this->event->name . ')'); |
|
| 6084 | + $table[] = array('Current Plugin', $this->event->activePlugin.'('.$this->event->name.')'); |
|
| 6085 | 6085 | } |
| 6086 | 6086 | |
| 6087 | 6087 | $str .= $MakeTable->create($table, array('Error information', '')); |
@@ -6091,17 +6091,17 @@ discard block |
||
| 6091 | 6091 | $table[] = array('REQUEST_URI', $request_uri); |
| 6092 | 6092 | |
| 6093 | 6093 | if ($this->manager->action) { |
| 6094 | - include_once(MODX_MANAGER_PATH . 'includes/actionlist.inc.php'); |
|
| 6094 | + include_once(MODX_MANAGER_PATH.'includes/actionlist.inc.php'); |
|
| 6095 | 6095 | global $action_list; |
| 6096 | 6096 | $actionName = (isset($action_list[$this->manager->action])) ? " - {$action_list[$this->manager->action]}" : ''; |
| 6097 | 6097 | |
| 6098 | - $table[] = array('Manager action', $this->manager->action . $actionName); |
|
| 6098 | + $table[] = array('Manager action', $this->manager->action.$actionName); |
|
| 6099 | 6099 | } |
| 6100 | 6100 | |
| 6101 | 6101 | if (preg_match('@^[0-9]+@', $this->documentIdentifier)) { |
| 6102 | 6102 | $resource = $this->getDocumentObject('id', $this->documentIdentifier); |
| 6103 | 6103 | $url = $this->makeUrl($this->documentIdentifier, '', '', 'full'); |
| 6104 | - $table[] = array('Resource', '[' . $this->documentIdentifier . '] <a href="' . $url . '" target="_blank">' . $resource['pagetitle'] . '</a>'); |
|
| 6104 | + $table[] = array('Resource', '['.$this->documentIdentifier.'] <a href="'.$url.'" target="_blank">'.$resource['pagetitle'].'</a>'); |
|
| 6105 | 6105 | } |
| 6106 | 6106 | $table[] = array('Referer', $referer); |
| 6107 | 6107 | $table[] = array('User Agent', $ua); |
@@ -6122,7 +6122,7 @@ discard block |
||
| 6122 | 6122 | |
| 6123 | 6123 | $mem = memory_get_peak_usage(true); |
| 6124 | 6124 | $total_mem = $mem - $this->mstart; |
| 6125 | - $total_mem = ($total_mem / 1024 / 1024) . ' mb'; |
|
| 6125 | + $total_mem = ($total_mem / 1024 / 1024).' mb'; |
|
| 6126 | 6126 | |
| 6127 | 6127 | $queryTime = $this->queryTime; |
| 6128 | 6128 | $phpTime = $totalTime - $queryTime; |
@@ -6143,18 +6143,18 @@ discard block |
||
| 6143 | 6143 | $str .= $this->get_backtrace(debug_backtrace()); |
| 6144 | 6144 | // Log error |
| 6145 | 6145 | if (!empty($this->currentSnippet)) { |
| 6146 | - $source = 'Snippet - ' . $this->currentSnippet; |
|
| 6146 | + $source = 'Snippet - '.$this->currentSnippet; |
|
| 6147 | 6147 | } elseif (!empty($this->event->activePlugin)) { |
| 6148 | - $source = 'Plugin - ' . $this->event->activePlugin; |
|
| 6148 | + $source = 'Plugin - '.$this->event->activePlugin; |
|
| 6149 | 6149 | } elseif ($source !== '') { |
| 6150 | - $source = 'Parser - ' . $source; |
|
| 6150 | + $source = 'Parser - '.$source; |
|
| 6151 | 6151 | } elseif ($query !== '') { |
| 6152 | 6152 | $source = 'SQL Query'; |
| 6153 | 6153 | } else { |
| 6154 | 6154 | $source = 'Parser'; |
| 6155 | 6155 | } |
| 6156 | 6156 | if ($msg) { |
| 6157 | - $source .= ' / ' . $msg; |
|
| 6157 | + $source .= ' / '.$msg; |
|
| 6158 | 6158 | } |
| 6159 | 6159 | if (isset($actionName) && !empty($actionName)) { |
| 6160 | 6160 | $source .= $actionName; |
@@ -6186,12 +6186,12 @@ discard block |
||
| 6186 | 6186 | |
| 6187 | 6187 | // Display error |
| 6188 | 6188 | if (isset($_SESSION['mgrValidated'])) { |
| 6189 | - echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html><head><title>EVO Content Manager ' . $version . ' » ' . $release_date . '</title> |
|
| 6189 | + echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html><head><title>EVO Content Manager '.$version.' » '.$release_date.'</title> |
|
| 6190 | 6190 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
| 6191 | - <link rel="stylesheet" type="text/css" href="' . $this->config['site_manager_url'] . 'media/style/' . $this->config['manager_theme'] . '/style.css" /> |
|
| 6191 | + <link rel="stylesheet" type="text/css" href="' . $this->config['site_manager_url'].'media/style/'.$this->config['manager_theme'].'/style.css" /> |
|
| 6192 | 6192 | <style type="text/css">body { padding:10px; } td {font:inherit;}</style> |
| 6193 | 6193 | </head><body> |
| 6194 | - ' . $str . '</body></html>'; |
|
| 6194 | + ' . $str.'</body></html>'; |
|
| 6195 | 6195 | |
| 6196 | 6196 | } else { |
| 6197 | 6197 | echo 'Error'; |
@@ -6229,7 +6229,7 @@ discard block |
||
| 6229 | 6229 | switch ($val['type']) { |
| 6230 | 6230 | case '->': |
| 6231 | 6231 | case '::': |
| 6232 | - $functionName = $val['function'] = $val['class'] . $val['type'] . $val['function']; |
|
| 6232 | + $functionName = $val['function'] = $val['class'].$val['type'].$val['function']; |
|
| 6233 | 6233 | break; |
| 6234 | 6234 | default: |
| 6235 | 6235 | $functionName = $val['function']; |
@@ -6239,7 +6239,7 @@ discard block |
||
| 6239 | 6239 | $args = array_pad(array(), $_, '$var'); |
| 6240 | 6240 | $args = implode(", ", $args); |
| 6241 | 6241 | $modx = &$this; |
| 6242 | - $args = preg_replace_callback('/\$var/', function () use ($modx, &$tmp, $val) { |
|
| 6242 | + $args = preg_replace_callback('/\$var/', function() use ($modx, &$tmp, $val) { |
|
| 6243 | 6243 | $arg = $val['args'][$tmp - 1]; |
| 6244 | 6244 | switch (true) { |
| 6245 | 6245 | case is_null($arg): { |
@@ -6251,7 +6251,7 @@ discard block |
||
| 6251 | 6251 | break; |
| 6252 | 6252 | } |
| 6253 | 6253 | case is_scalar($arg): { |
| 6254 | - $out = strlen($arg) > 20 ? 'string $var' . $tmp : ("'" . $this->htmlspecialchars(str_replace("'", "\\'", $arg)) . "'"); |
|
| 6254 | + $out = strlen($arg) > 20 ? 'string $var'.$tmp : ("'".$this->htmlspecialchars(str_replace("'", "\\'", $arg))."'"); |
|
| 6255 | 6255 | break; |
| 6256 | 6256 | } |
| 6257 | 6257 | case is_bool($arg): { |
@@ -6259,23 +6259,23 @@ discard block |
||
| 6259 | 6259 | break; |
| 6260 | 6260 | } |
| 6261 | 6261 | case is_array($arg): { |
| 6262 | - $out = 'array $var' . $tmp; |
|
| 6262 | + $out = 'array $var'.$tmp; |
|
| 6263 | 6263 | break; |
| 6264 | 6264 | } |
| 6265 | 6265 | case is_object($arg): { |
| 6266 | - $out = get_class($arg) . ' $var' . $tmp; |
|
| 6266 | + $out = get_class($arg).' $var'.$tmp; |
|
| 6267 | 6267 | break; |
| 6268 | 6268 | } |
| 6269 | 6269 | default: { |
| 6270 | - $out = '$var' . $tmp; |
|
| 6270 | + $out = '$var'.$tmp; |
|
| 6271 | 6271 | } |
| 6272 | 6272 | } |
| 6273 | 6273 | $tmp++; |
| 6274 | 6274 | return $out; |
| 6275 | 6275 | }, $args); |
| 6276 | 6276 | $line = array( |
| 6277 | - "<strong>" . $functionName . "</strong>(" . $args . ")", |
|
| 6278 | - $path . " on line " . $val['line'] |
|
| 6277 | + "<strong>".$functionName."</strong>(".$args.")", |
|
| 6278 | + $path." on line ".$val['line'] |
|
| 6279 | 6279 | ); |
| 6280 | 6280 | $table[] = array(implode("<br />", $line)); |
| 6281 | 6281 | } |
@@ -6316,7 +6316,7 @@ discard block |
||
| 6316 | 6316 | $alias = strip_tags($alias); // strip HTML |
| 6317 | 6317 | $alias = preg_replace('/[^\.A-Za-z0-9 _-]/', '', $alias); // strip non-alphanumeric characters |
| 6318 | 6318 | $alias = preg_replace('/\s+/', '-', $alias); // convert white-space to dash |
| 6319 | - $alias = preg_replace('/-+/', '-', $alias); // convert multiple dashes to one |
|
| 6319 | + $alias = preg_replace('/-+/', '-', $alias); // convert multiple dashes to one |
|
| 6320 | 6320 | $alias = trim($alias, '-'); // trim excess |
| 6321 | 6321 | return $alias; |
| 6322 | 6322 | } |
@@ -6332,7 +6332,7 @@ discard block |
||
| 6332 | 6332 | $precisions = count($sizes) - 1; |
| 6333 | 6333 | foreach ($sizes as $unit => $bytes) { |
| 6334 | 6334 | if ($size >= $bytes) { |
| 6335 | - return number_format($size / $bytes, $precisions) . ' ' . $unit; |
|
| 6335 | + return number_format($size / $bytes, $precisions).' '.$unit; |
|
| 6336 | 6336 | } |
| 6337 | 6337 | $precisions--; |
| 6338 | 6338 | } |
@@ -6436,10 +6436,10 @@ discard block |
||
| 6436 | 6436 | |
| 6437 | 6437 | if (strpos($str, MODX_MANAGER_PATH) === 0) { |
| 6438 | 6438 | return false; |
| 6439 | - } elseif (is_file(MODX_BASE_PATH . $str)) { |
|
| 6440 | - $file_path = MODX_BASE_PATH . $str; |
|
| 6441 | - } elseif (is_file(MODX_BASE_PATH . "{$tpl_dir}{$str}")) { |
|
| 6442 | - $file_path = MODX_BASE_PATH . $tpl_dir . $str; |
|
| 6439 | + } elseif (is_file(MODX_BASE_PATH.$str)) { |
|
| 6440 | + $file_path = MODX_BASE_PATH.$str; |
|
| 6441 | + } elseif (is_file(MODX_BASE_PATH."{$tpl_dir}{$str}")) { |
|
| 6442 | + $file_path = MODX_BASE_PATH.$tpl_dir.$str; |
|
| 6443 | 6443 | } else { |
| 6444 | 6444 | return false; |
| 6445 | 6445 | } |
@@ -6565,7 +6565,7 @@ discard block |
||
| 6565 | 6565 | $title = 'no title'; |
| 6566 | 6566 | } |
| 6567 | 6567 | if (is_array($msg)) { |
| 6568 | - $msg = '<pre>' . print_r($msg, true) . '</pre>'; |
|
| 6568 | + $msg = '<pre>'.print_r($msg, true).'</pre>'; |
|
| 6569 | 6569 | } elseif ($msg === '') { |
| 6570 | 6570 | $msg = $_SERVER['REQUEST_URI']; |
| 6571 | 6571 | } |
@@ -6610,7 +6610,7 @@ discard block |
||
| 6610 | 6610 | if (is_array($SystemAlertMsgQueque)) { |
| 6611 | 6611 | $title = ''; |
| 6612 | 6612 | if ($this->name && $this->activePlugin) { |
| 6613 | - $title = "<div><b>" . $this->activePlugin . "</b> - <span style='color:maroon;'>" . $this->name . "</span></div>"; |
|
| 6613 | + $title = "<div><b>".$this->activePlugin."</b> - <span style='color:maroon;'>".$this->name."</span></div>"; |
|
| 6614 | 6614 | } |
| 6615 | 6615 | $SystemAlertMsgQueque[] = "$title<div style='margin-left:10px;margin-top:3px;'>$msg</div>"; |
| 6616 | 6616 | } |
@@ -615,13 +615,15 @@ discard block |
||
| 615 | 615 | $this->virtualDir = ''; |
| 616 | 616 | } |
| 617 | 617 | |
| 618 | - if (preg_match('@^[1-9][0-9]*$@', $q) && !isset($this->documentListing[$q])) { /* we got an ID returned, check to make sure it's not an alias */ |
|
| 618 | + if (preg_match('@^[1-9][0-9]*$@', $q) && !isset($this->documentListing[$q])) { |
|
| 619 | +/* we got an ID returned, check to make sure it's not an alias */ |
|
| 619 | 620 | /* FS#476 and FS#308: check that id is valid in terms of virtualDir structure */ |
| 620 | 621 | if ($this->config['use_alias_path'] == 1) { |
| 621 | 622 | if (($this->virtualDir != '' && !isset($this->documentListing[$this->virtualDir . '/' . $q]) || ($this->virtualDir == '' && !isset($this->documentListing[$q]))) && (($this->virtualDir != '' && isset($this->documentListing[$this->virtualDir]) && in_array($q, $this->getChildIds($this->documentListing[$this->virtualDir], 1))) || ($this->virtualDir == '' && in_array($q, $this->getChildIds(0, 1))))) { |
| 622 | 623 | $this->documentMethod = 'id'; |
| 623 | 624 | return $q; |
| 624 | - } else { /* not a valid id in terms of virtualDir, treat as alias */ |
|
| 625 | + } else { |
|
| 626 | +/* not a valid id in terms of virtualDir, treat as alias */ |
|
| 625 | 627 | $this->documentMethod = 'alias'; |
| 626 | 628 | return $q; |
| 627 | 629 | } |
@@ -629,7 +631,8 @@ discard block |
||
| 629 | 631 | $this->documentMethod = 'id'; |
| 630 | 632 | return $q; |
| 631 | 633 | } |
| 632 | - } else { /* we didn't get an ID back, so instead we assume it's an alias */ |
|
| 634 | + } else { |
|
| 635 | +/* we didn't get an ID back, so instead we assume it's an alias */ |
|
| 633 | 636 | if ($this->config['friendly_alias_urls'] != 1) { |
| 634 | 637 | $q = $qOrig; |
| 635 | 638 | } |
@@ -659,13 +662,14 @@ discard block |
||
| 659 | 662 | * @param $id |
| 660 | 663 | * @return array|mixed|null|string |
| 661 | 664 | */ |
| 662 | - public function makePageCacheKey($id){ |
|
| 665 | + public function makePageCacheKey($id) |
|
| 666 | + { |
|
| 663 | 667 | $hash = $id; |
| 664 | 668 | $tmp = null; |
| 665 | 669 | $params = array(); |
| 666 | - if(!empty($this->systemCacheKey)){ |
|
| 670 | + if(!empty($this->systemCacheKey)) { |
|
| 667 | 671 | $hash = $this->systemCacheKey; |
| 668 | - }else { |
|
| 672 | + } else { |
|
| 669 | 673 | if (!empty($_GET)) { |
| 670 | 674 | // Sort GET parameters so that the order of parameters on the HTTP request don't affect the generated cache ID. |
| 671 | 675 | $params = $_GET; |
@@ -674,7 +678,7 @@ discard block |
||
| 674 | 678 | } |
| 675 | 679 | } |
| 676 | 680 | $evtOut = $this->invokeEvent("OnMakePageCacheKey", array ("hash" => $hash, "id" => $id, 'params' => $params)); |
| 677 | - if (is_array($evtOut) && count($evtOut) > 0){ |
|
| 681 | + if (is_array($evtOut) && count($evtOut) > 0) { |
|
| 678 | 682 | $tmp = array_pop($evtOut); |
| 679 | 683 | } |
| 680 | 684 | return empty($tmp) ? $hash : $tmp; |
@@ -1085,10 +1089,18 @@ discard block |
||
| 1085 | 1089 | return array(); |
| 1086 | 1090 | } |
| 1087 | 1091 | $spacer = md5('<<<EVO>>>'); |
| 1088 | - if($left==='{{' && strpos($content,';}}')!==false) $content = str_replace(';}}', sprintf(';}%s}', $spacer),$content); |
|
| 1089 | - if($left==='{{' && strpos($content,'{{}}')!==false) $content = str_replace('{{}}',sprintf('{%$1s{}%$1s}',$spacer),$content); |
|
| 1090 | - if($left==='[[' && strpos($content,']]]]')!==false) $content = str_replace(']]]]',sprintf(']]%s]]', $spacer),$content); |
|
| 1091 | - if($left==='[[' && strpos($content,']]]')!==false) $content = str_replace(']]]', sprintf(']%s]]', $spacer),$content); |
|
| 1092 | + if($left==='{{' && strpos($content,';}}')!==false) { |
|
| 1093 | + $content = str_replace(';}}', sprintf(';}%s}', $spacer),$content); |
|
| 1094 | + } |
|
| 1095 | + if($left==='{{' && strpos($content,'{{}}')!==false) { |
|
| 1096 | + $content = str_replace('{{}}',sprintf('{%$1s{}%$1s}',$spacer),$content); |
|
| 1097 | + } |
|
| 1098 | + if($left==='[[' && strpos($content,']]]]')!==false) { |
|
| 1099 | + $content = str_replace(']]]]',sprintf(']]%s]]', $spacer),$content); |
|
| 1100 | + } |
|
| 1101 | + if($left==='[[' && strpos($content,']]]')!==false) { |
|
| 1102 | + $content = str_replace(']]]', sprintf(']%s]]', $spacer),$content); |
|
| 1103 | + } |
|
| 1092 | 1104 | |
| 1093 | 1105 | $pos['<![CDATA['] = strpos($content, '<![CDATA['); |
| 1094 | 1106 | $pos[']]>'] = strpos($content, ']]>'); |
@@ -1141,7 +1153,8 @@ discard block |
||
| 1141 | 1153 | } |
| 1142 | 1154 | } |
| 1143 | 1155 | |
| 1144 | - if (!in_array($fetch, $tags)) { // Avoid double Matches |
|
| 1156 | + if (!in_array($fetch, $tags)) { |
|
| 1157 | +// Avoid double Matches |
|
| 1145 | 1158 | $tags[] = $fetch; // Fetch |
| 1146 | 1159 | }; |
| 1147 | 1160 | $fetch = ''; // and reset |
@@ -1159,7 +1172,9 @@ discard block |
||
| 1159 | 1172 | } |
| 1160 | 1173 | } |
| 1161 | 1174 | foreach($tags as $i=>$tag) { |
| 1162 | - if(strpos($tag,$spacer)!==false) $tags[$i] = str_replace($spacer, '', $tag); |
|
| 1175 | + if(strpos($tag,$spacer)!==false) { |
|
| 1176 | + $tags[$i] = str_replace($spacer, '', $tag); |
|
| 1177 | + } |
|
| 1163 | 1178 | } |
| 1164 | 1179 | return $tags; |
| 1165 | 1180 | } |
@@ -1199,7 +1214,10 @@ discard block |
||
| 1199 | 1214 | } |
| 1200 | 1215 | |
| 1201 | 1216 | foreach ($matches[1] as $i => $key) { |
| 1202 | - if(strpos($key,'[+')!==false) continue; // Allow chunk {{chunk?¶m=`xxx`}} with [*tv_name_[+param+]*] as content |
|
| 1217 | + if(strpos($key,'[+')!==false) { |
|
| 1218 | + continue; |
|
| 1219 | + } |
|
| 1220 | + // Allow chunk {{chunk?¶m=`xxx`}} with [*tv_name_[+param+]*] as content |
|
| 1203 | 1221 | if (substr($key, 0, 1) == '#') { |
| 1204 | 1222 | $key = substr($key, 1); |
| 1205 | 1223 | } // remove # for QuickEdit format |
@@ -1921,7 +1939,8 @@ discard block |
||
| 1921 | 1939 | * @return mixed|string |
| 1922 | 1940 | */ |
| 1923 | 1941 | function _getSGVar($value) |
| 1924 | - { // Get super globals |
|
| 1942 | + { |
|
| 1943 | +// Get super globals |
|
| 1925 | 1944 | $key = $value; |
| 1926 | 1945 | $_ = $this->config['enable_filter']; |
| 1927 | 1946 | $this->config['enable_filter'] = 1; |
@@ -2326,7 +2345,8 @@ discard block |
||
| 2326 | 2345 | if ($this->config['friendly_urls'] == 1) { |
| 2327 | 2346 | $aliases = array(); |
| 2328 | 2347 | if (is_array($this->documentListing)) { |
| 2329 | - foreach ($this->documentListing as $path => $docid) { // This is big Loop on large site! |
|
| 2348 | + foreach ($this->documentListing as $path => $docid) { |
|
| 2349 | +// This is big Loop on large site! |
|
| 2330 | 2350 | $aliases[$docid] = $path; |
| 2331 | 2351 | $isfolder[$docid] = $this->aliasListing[$docid]['isfolder']; |
| 2332 | 2352 | } |
@@ -2359,7 +2379,7 @@ discard block |
||
| 2359 | 2379 | $isfriendly = ($this->config['friendly_alias_urls'] == 1 ? 1 : 0); |
| 2360 | 2380 | $pref = $this->config['friendly_url_prefix']; |
| 2361 | 2381 | $suff = $this->config['friendly_url_suffix']; |
| 2362 | - $documentSource = preg_replace_callback($in, function ($m) use ($aliases, $isfolder, $isfriendly, $pref, $suff) { |
|
| 2382 | + $documentSource = preg_replace_callback($in, function ($m) use ($aliases, $isfolder, $isfriendly, $pref, $suff){ |
|
| 2363 | 2383 | global $modx; |
| 2364 | 2384 | $thealias = $aliases[$m[1]]; |
| 2365 | 2385 | $thefolder = $isfolder[$m[1]]; |
@@ -4131,7 +4151,8 @@ discard block |
||
| 4131 | 4151 | if (isset ($this->snippetCache[$snippetName])) { |
| 4132 | 4152 | $snippet = $this->snippetCache[$snippetName]; |
| 4133 | 4153 | $properties = !empty($this->snippetCache[$snippetName . "Props"]) ? $this->snippetCache[$snippetName . "Props"] : ''; |
| 4134 | - } else { // not in cache so let's check the db |
|
| 4154 | + } else { |
|
| 4155 | +// not in cache so let's check the db |
|
| 4135 | 4156 | $sql = "SELECT ss.`name`, ss.`snippet`, ss.`properties`, sm.properties as `sharedproperties` FROM " . $this->getFullTableName("site_snippets") . " as ss LEFT JOIN " . $this->getFullTableName('site_modules') . " as sm on sm.guid=ss.moduleguid WHERE ss.`name`='" . $this->db->escape($snippetName) . "' AND ss.disabled=0;"; |
| 4136 | 4157 | $result = $this->db->query($sql); |
| 4137 | 4158 | if ($this->db->getRecordCount($result) == 1) { |
@@ -4635,7 +4656,7 @@ discard block |
||
| 4635 | 4656 | $result = $this->db->makeArray($rs); |
| 4636 | 4657 | |
| 4637 | 4658 | // get default/built-in template variables |
| 4638 | - if(is_array($docRow)){ |
|
| 4659 | + if(is_array($docRow)) { |
|
| 4639 | 4660 | ksort($docRow); |
| 4640 | 4661 | |
| 4641 | 4662 | foreach ($docRow as $key => $value) { |
@@ -5114,12 +5135,16 @@ discard block |
||
| 5114 | 5135 | return ''; |
| 5115 | 5136 | } // nothing to register |
| 5116 | 5137 | if (!is_array($options)) { |
| 5117 | - if (is_bool($options)) // backward compatibility with old plaintext parameter |
|
| 5138 | + if (is_bool($options)) { |
|
| 5139 | + // backward compatibility with old plaintext parameter |
|
| 5118 | 5140 | { |
| 5119 | 5141 | $options = array('plaintext' => $options); |
| 5120 | - } elseif (is_string($options)) // Also allow script name as 2nd param |
|
| 5142 | + } |
|
| 5143 | + } elseif (is_string($options)) { |
|
| 5144 | + // Also allow script name as 2nd param |
|
| 5121 | 5145 | { |
| 5122 | 5146 | $options = array('name' => $options); |
| 5147 | + } |
|
| 5123 | 5148 | } else { |
| 5124 | 5149 | $options = array(); |
| 5125 | 5150 | } |
@@ -5131,7 +5156,8 @@ discard block |
||
| 5131 | 5156 | unset($overwritepos); // probably unnecessary--just making sure |
| 5132 | 5157 | |
| 5133 | 5158 | $useThisVer = true; |
| 5134 | - if (isset($this->loadedjscripts[$key])) { // a matching script was found |
|
| 5159 | + if (isset($this->loadedjscripts[$key])) { |
|
| 5160 | +// a matching script was found |
|
| 5135 | 5161 | // if existing script is a startup script, make sure the candidate is also a startup script |
| 5136 | 5162 | if ($this->loadedjscripts[$key]['startup']) { |
| 5137 | 5163 | $startup = true; |
@@ -5151,7 +5177,8 @@ discard block |
||
| 5151 | 5177 | // overwrite the old script (the position may be important for dependent scripts) |
| 5152 | 5178 | $overwritepos = $this->loadedjscripts[$key]['pos']; |
| 5153 | 5179 | } |
| 5154 | - } else { // Use the original version |
|
| 5180 | + } else { |
|
| 5181 | +// Use the original version |
|
| 5155 | 5182 | if ($startup == true && $this->loadedjscripts[$key]['startup'] == false) { |
| 5156 | 5183 | // need to move the exisiting script to the head |
| 5157 | 5184 | $version = $this->loadedjscripts[$key][$version]; |
@@ -5275,7 +5302,8 @@ discard block |
||
| 5275 | 5302 | } |
| 5276 | 5303 | |
| 5277 | 5304 | $results = null; |
| 5278 | - foreach ($this->pluginEvent[$evtName] as $pluginName) { // start for loop |
|
| 5305 | + foreach ($this->pluginEvent[$evtName] as $pluginName) { |
|
| 5306 | +// start for loop |
|
| 5279 | 5307 | if ($this->dumpPlugins) { |
| 5280 | 5308 | $eventtime = $this->getMicroTime(); |
| 5281 | 5309 | } |
@@ -5823,7 +5851,8 @@ discard block |
||
| 5823 | 5851 | * @return bool |
| 5824 | 5852 | */ |
| 5825 | 5853 | function isSafeCode($phpcode = '', $safe_functions = '') |
| 5826 | - { // return true or false |
|
| 5854 | + { |
|
| 5855 | +// return true or false |
|
| 5827 | 5856 | if ($safe_functions == '') { |
| 5828 | 5857 | return false; |
| 5829 | 5858 | } |
@@ -6239,7 +6268,7 @@ discard block |
||
| 6239 | 6268 | $args = array_pad(array(), $_, '$var'); |
| 6240 | 6269 | $args = implode(", ", $args); |
| 6241 | 6270 | $modx = &$this; |
| 6242 | - $args = preg_replace_callback('/\$var/', function () use ($modx, &$tmp, $val) { |
|
| 6271 | + $args = preg_replace_callback('/\$var/', function () use ($modx, &$tmp, $val){ |
|
| 6243 | 6272 | $arg = $val['args'][$tmp - 1]; |
| 6244 | 6273 | switch (true) { |
| 6245 | 6274 | case is_null($arg): { |
@@ -618,6 +618,9 @@ discard block |
||
| 618 | 618 | return mysql_data_seek($result, $row_number); |
| 619 | 619 | } |
| 620 | 620 | |
| 621 | + /** |
|
| 622 | + * @return string |
|
| 623 | + */ |
|
| 621 | 624 | function _getFieldsStringFromArray($fields=array()) { |
| 622 | 625 | |
| 623 | 626 | if(empty($fields)) return '*'; |
@@ -630,6 +633,9 @@ discard block |
||
| 630 | 633 | return join(',', $_); |
| 631 | 634 | } |
| 632 | 635 | |
| 636 | + /** |
|
| 637 | + * @return string |
|
| 638 | + */ |
|
| 633 | 639 | function _getFromStringFromArray($tables=array()) { |
| 634 | 640 | $_ = array(); |
| 635 | 641 | foreach($tables as $k=>$v) { |
@@ -7,187 +7,187 @@ discard block |
||
| 7 | 7 | |
| 8 | 8 | class DBAPI { |
| 9 | 9 | |
| 10 | - var $conn; |
|
| 11 | - var $config; |
|
| 12 | - var $lastQuery; |
|
| 13 | - var $isConnected; |
|
| 10 | + var $conn; |
|
| 11 | + var $config; |
|
| 12 | + var $lastQuery; |
|
| 13 | + var $isConnected; |
|
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * @name: DBAPI |
|
| 17 | - * |
|
| 18 | - */ |
|
| 19 | - function __construct($host='',$dbase='', $uid='',$pwd='',$pre=NULL,$charset='',$connection_method='SET CHARACTER SET') { |
|
| 20 | - $this->config['host'] = $host ? $host : $GLOBALS['database_server']; |
|
| 21 | - $this->config['dbase'] = $dbase ? $dbase : $GLOBALS['dbase']; |
|
| 22 | - $this->config['user'] = $uid ? $uid : $GLOBALS['database_user']; |
|
| 23 | - $this->config['pass'] = $pwd ? $pwd : $GLOBALS['database_password']; |
|
| 24 | - $this->config['charset'] = $charset ? $charset : $GLOBALS['database_connection_charset']; |
|
| 25 | - $this->config['connection_method'] = $this->_dbconnectionmethod = (isset($GLOBALS['database_connection_method']) ? $GLOBALS['database_connection_method'] : $connection_method); |
|
| 26 | - $this->config['table_prefix'] = ($pre !== NULL) ? $pre : $GLOBALS['table_prefix']; |
|
| 27 | - $this->initDataTypes(); |
|
| 28 | - } |
|
| 15 | + /** |
|
| 16 | + * @name: DBAPI |
|
| 17 | + * |
|
| 18 | + */ |
|
| 19 | + function __construct($host='',$dbase='', $uid='',$pwd='',$pre=NULL,$charset='',$connection_method='SET CHARACTER SET') { |
|
| 20 | + $this->config['host'] = $host ? $host : $GLOBALS['database_server']; |
|
| 21 | + $this->config['dbase'] = $dbase ? $dbase : $GLOBALS['dbase']; |
|
| 22 | + $this->config['user'] = $uid ? $uid : $GLOBALS['database_user']; |
|
| 23 | + $this->config['pass'] = $pwd ? $pwd : $GLOBALS['database_password']; |
|
| 24 | + $this->config['charset'] = $charset ? $charset : $GLOBALS['database_connection_charset']; |
|
| 25 | + $this->config['connection_method'] = $this->_dbconnectionmethod = (isset($GLOBALS['database_connection_method']) ? $GLOBALS['database_connection_method'] : $connection_method); |
|
| 26 | + $this->config['table_prefix'] = ($pre !== NULL) ? $pre : $GLOBALS['table_prefix']; |
|
| 27 | + $this->initDataTypes(); |
|
| 28 | + } |
|
| 29 | 29 | |
| 30 | - /** |
|
| 31 | - * @name: initDataTypes |
|
| 32 | - * @desc: called in the constructor to set up arrays containing the types |
|
| 33 | - * of database fields that can be used with specific PHP types |
|
| 34 | - */ |
|
| 35 | - function initDataTypes() { |
|
| 36 | - $this->dataTypes['numeric'] = array ( |
|
| 37 | - 'INT', |
|
| 38 | - 'INTEGER', |
|
| 39 | - 'TINYINT', |
|
| 40 | - 'BOOLEAN', |
|
| 41 | - 'DECIMAL', |
|
| 42 | - 'DEC', |
|
| 43 | - 'NUMERIC', |
|
| 44 | - 'FLOAT', |
|
| 45 | - 'DOUBLE PRECISION', |
|
| 46 | - 'REAL', |
|
| 47 | - 'SMALLINT', |
|
| 48 | - 'MEDIUMINT', |
|
| 49 | - 'BIGINT', |
|
| 50 | - 'BIT' |
|
| 51 | - ); |
|
| 52 | - $this->dataTypes['string'] = array ( |
|
| 53 | - 'CHAR', |
|
| 54 | - 'VARCHAR', |
|
| 55 | - 'BINARY', |
|
| 56 | - 'VARBINARY', |
|
| 57 | - 'TINYBLOB', |
|
| 58 | - 'BLOB', |
|
| 59 | - 'MEDIUMBLOB', |
|
| 60 | - 'LONGBLOB', |
|
| 61 | - 'TINYTEXT', |
|
| 62 | - 'TEXT', |
|
| 63 | - 'MEDIUMTEXT', |
|
| 64 | - 'LONGTEXT', |
|
| 65 | - 'ENUM', |
|
| 66 | - 'SET' |
|
| 67 | - ); |
|
| 68 | - $this->dataTypes['date'] = array ( |
|
| 69 | - 'DATE', |
|
| 70 | - 'DATETIME', |
|
| 71 | - 'TIMESTAMP', |
|
| 72 | - 'TIME', |
|
| 73 | - 'YEAR' |
|
| 74 | - ); |
|
| 75 | - } |
|
| 30 | + /** |
|
| 31 | + * @name: initDataTypes |
|
| 32 | + * @desc: called in the constructor to set up arrays containing the types |
|
| 33 | + * of database fields that can be used with specific PHP types |
|
| 34 | + */ |
|
| 35 | + function initDataTypes() { |
|
| 36 | + $this->dataTypes['numeric'] = array ( |
|
| 37 | + 'INT', |
|
| 38 | + 'INTEGER', |
|
| 39 | + 'TINYINT', |
|
| 40 | + 'BOOLEAN', |
|
| 41 | + 'DECIMAL', |
|
| 42 | + 'DEC', |
|
| 43 | + 'NUMERIC', |
|
| 44 | + 'FLOAT', |
|
| 45 | + 'DOUBLE PRECISION', |
|
| 46 | + 'REAL', |
|
| 47 | + 'SMALLINT', |
|
| 48 | + 'MEDIUMINT', |
|
| 49 | + 'BIGINT', |
|
| 50 | + 'BIT' |
|
| 51 | + ); |
|
| 52 | + $this->dataTypes['string'] = array ( |
|
| 53 | + 'CHAR', |
|
| 54 | + 'VARCHAR', |
|
| 55 | + 'BINARY', |
|
| 56 | + 'VARBINARY', |
|
| 57 | + 'TINYBLOB', |
|
| 58 | + 'BLOB', |
|
| 59 | + 'MEDIUMBLOB', |
|
| 60 | + 'LONGBLOB', |
|
| 61 | + 'TINYTEXT', |
|
| 62 | + 'TEXT', |
|
| 63 | + 'MEDIUMTEXT', |
|
| 64 | + 'LONGTEXT', |
|
| 65 | + 'ENUM', |
|
| 66 | + 'SET' |
|
| 67 | + ); |
|
| 68 | + $this->dataTypes['date'] = array ( |
|
| 69 | + 'DATE', |
|
| 70 | + 'DATETIME', |
|
| 71 | + 'TIMESTAMP', |
|
| 72 | + 'TIME', |
|
| 73 | + 'YEAR' |
|
| 74 | + ); |
|
| 75 | + } |
|
| 76 | 76 | |
| 77 | - /** |
|
| 78 | - * @name: connect |
|
| 79 | - * |
|
| 80 | - */ |
|
| 81 | - function connect($host = '', $dbase = '', $uid = '', $pwd = '', $persist = 0) { |
|
| 82 | - global $modx; |
|
| 83 | - $uid = $uid ? $uid : $this->config['user']; |
|
| 84 | - $pwd = $pwd ? $pwd : $this->config['pass']; |
|
| 85 | - $host = $host ? $host : $this->config['host']; |
|
| 86 | - $dbase = $dbase ? $dbase : $this->config['dbase']; |
|
| 87 | - $charset = $this->config['charset']; |
|
| 88 | - $connection_method = $this->config['connection_method']; |
|
| 89 | - $tstart = $modx->getMicroTime(); |
|
| 90 | - $safe_count = 0; |
|
| 91 | - while(!$this->conn && $safe_count<3) |
|
| 92 | - { |
|
| 93 | - if($persist!=0) $this->conn = mysql_pconnect($host, $uid, $pwd); |
|
| 94 | - else $this->conn = mysql_connect($host, $uid, $pwd, true); |
|
| 77 | + /** |
|
| 78 | + * @name: connect |
|
| 79 | + * |
|
| 80 | + */ |
|
| 81 | + function connect($host = '', $dbase = '', $uid = '', $pwd = '', $persist = 0) { |
|
| 82 | + global $modx; |
|
| 83 | + $uid = $uid ? $uid : $this->config['user']; |
|
| 84 | + $pwd = $pwd ? $pwd : $this->config['pass']; |
|
| 85 | + $host = $host ? $host : $this->config['host']; |
|
| 86 | + $dbase = $dbase ? $dbase : $this->config['dbase']; |
|
| 87 | + $charset = $this->config['charset']; |
|
| 88 | + $connection_method = $this->config['connection_method']; |
|
| 89 | + $tstart = $modx->getMicroTime(); |
|
| 90 | + $safe_count = 0; |
|
| 91 | + while(!$this->conn && $safe_count<3) |
|
| 92 | + { |
|
| 93 | + if($persist!=0) $this->conn = mysql_pconnect($host, $uid, $pwd); |
|
| 94 | + else $this->conn = mysql_connect($host, $uid, $pwd, true); |
|
| 95 | 95 | |
| 96 | - if(!$this->conn) |
|
| 97 | - { |
|
| 96 | + if(!$this->conn) |
|
| 97 | + { |
|
| 98 | 98 | if(isset($modx->config['send_errormail']) && $modx->config['send_errormail'] !== '0') |
| 99 | 99 | { |
| 100 | - if($modx->config['send_errormail'] <= 2) |
|
| 101 | - { |
|
| 102 | - $logtitle = 'Failed to create the database connection!'; |
|
| 103 | - $request_uri = $modx->htmlspecialchars($_SERVER['REQUEST_URI']); |
|
| 104 | - $ua = $modx->htmlspecialchars($_SERVER['HTTP_USER_AGENT']); |
|
| 105 | - $referer = $modx->htmlspecialchars($_SERVER['HTTP_REFERER']); |
|
| 100 | + if($modx->config['send_errormail'] <= 2) |
|
| 101 | + { |
|
| 102 | + $logtitle = 'Failed to create the database connection!'; |
|
| 103 | + $request_uri = $modx->htmlspecialchars($_SERVER['REQUEST_URI']); |
|
| 104 | + $ua = $modx->htmlspecialchars($_SERVER['HTTP_USER_AGENT']); |
|
| 105 | + $referer = $modx->htmlspecialchars($_SERVER['HTTP_REFERER']); |
|
| 106 | 106 | |
| 107 | - $modx->sendmail(array( |
|
| 108 | - 'subject' => 'Missing to create the database connection! from ' . $modx->config['site_name'], |
|
| 109 | - 'body' => "{$logtitle}\n{$request_uri}\n{$ua}\n{$referer}", |
|
| 110 | - 'type' => 'text') |
|
| 111 | - ); |
|
| 112 | - } |
|
| 107 | + $modx->sendmail(array( |
|
| 108 | + 'subject' => 'Missing to create the database connection! from ' . $modx->config['site_name'], |
|
| 109 | + 'body' => "{$logtitle}\n{$request_uri}\n{$ua}\n{$referer}", |
|
| 110 | + 'type' => 'text') |
|
| 111 | + ); |
|
| 112 | + } |
|
| 113 | 113 | } |
| 114 | 114 | sleep(1); |
| 115 | 115 | $safe_count++; |
| 116 | - } |
|
| 117 | - } |
|
| 118 | - if (!$this->conn) { |
|
| 119 | - $modx->messageQuit("Failed to create the database connection!"); |
|
| 120 | - exit; |
|
| 121 | - } else { |
|
| 122 | - $dbase = trim($dbase,'`'); // remove the `` chars |
|
| 123 | - if (!@ mysql_select_db($dbase, $this->conn)) { |
|
| 116 | + } |
|
| 117 | + } |
|
| 118 | + if (!$this->conn) { |
|
| 119 | + $modx->messageQuit("Failed to create the database connection!"); |
|
| 120 | + exit; |
|
| 121 | + } else { |
|
| 122 | + $dbase = trim($dbase,'`'); // remove the `` chars |
|
| 123 | + if (!@ mysql_select_db($dbase, $this->conn)) { |
|
| 124 | 124 | $modx->messageQuit("Failed to select the database '" . $dbase . "'!"); |
| 125 | 125 | exit; |
| 126 | - } |
|
| 127 | - @mysql_query("{$connection_method} {$charset}", $this->conn); |
|
| 128 | - $tend = $modx->getMicroTime(); |
|
| 129 | - $totaltime = $tend - $tstart; |
|
| 130 | - if ($modx->dumpSQL) { |
|
| 126 | + } |
|
| 127 | + @mysql_query("{$connection_method} {$charset}", $this->conn); |
|
| 128 | + $tend = $modx->getMicroTime(); |
|
| 129 | + $totaltime = $tend - $tstart; |
|
| 130 | + if ($modx->dumpSQL) { |
|
| 131 | 131 | $modx->queryCode .= "<fieldset style='text-align:left'><legend>Database connection</legend>" . sprintf("Database connection was created in %2.4f s", $totaltime) . "</fieldset><br />"; |
| 132 | - } |
|
| 132 | + } |
|
| 133 | 133 | if (function_exists('mysql_set_charset')) { |
| 134 | 134 | mysql_set_charset($this->config['charset']); |
| 135 | 135 | } else { |
| 136 | 136 | @mysql_query("SET NAMES {$this->config['charset']}", $this->conn); |
| 137 | 137 | } |
| 138 | - $this->isConnected = true; |
|
| 139 | - // FIXME (Fixed by line below): |
|
| 140 | - // this->queryTime = this->queryTime + $totaltime; |
|
| 141 | - $modx->queryTime += $totaltime; |
|
| 142 | - } |
|
| 143 | - } |
|
| 138 | + $this->isConnected = true; |
|
| 139 | + // FIXME (Fixed by line below): |
|
| 140 | + // this->queryTime = this->queryTime + $totaltime; |
|
| 141 | + $modx->queryTime += $totaltime; |
|
| 142 | + } |
|
| 143 | + } |
|
| 144 | 144 | |
| 145 | - /** |
|
| 146 | - * @name: disconnect |
|
| 147 | - * |
|
| 148 | - */ |
|
| 149 | - function disconnect() { |
|
| 150 | - @ mysql_close($this->conn); |
|
| 151 | - $this->conn = null; |
|
| 152 | - $this->isConnected = false; |
|
| 153 | - } |
|
| 145 | + /** |
|
| 146 | + * @name: disconnect |
|
| 147 | + * |
|
| 148 | + */ |
|
| 149 | + function disconnect() { |
|
| 150 | + @ mysql_close($this->conn); |
|
| 151 | + $this->conn = null; |
|
| 152 | + $this->isConnected = false; |
|
| 153 | + } |
|
| 154 | 154 | |
| 155 | - function escape($s, $safecount=0) { |
|
| 155 | + function escape($s, $safecount=0) { |
|
| 156 | 156 | |
| 157 | - $safecount++; |
|
| 158 | - if(1000<$safecount) exit("Too many loops '{$safecount}'"); |
|
| 157 | + $safecount++; |
|
| 158 | + if(1000<$safecount) exit("Too many loops '{$safecount}'"); |
|
| 159 | 159 | |
| 160 | - if (empty ($this->conn) || !is_resource($this->conn)) { |
|
| 161 | - $this->connect(); |
|
| 162 | - } |
|
| 160 | + if (empty ($this->conn) || !is_resource($this->conn)) { |
|
| 161 | + $this->connect(); |
|
| 162 | + } |
|
| 163 | 163 | |
| 164 | - if(is_array($s)) { |
|
| 165 | - if(count($s) === 0) $s = ''; |
|
| 166 | - else { |
|
| 167 | - foreach($s as $i=>$v) { |
|
| 168 | - $s[$i] = $this->escape($v,$safecount); |
|
| 169 | - } |
|
| 170 | - } |
|
| 171 | - } |
|
| 172 | - else $s = mysql_real_escape_string($s, $this->conn); |
|
| 173 | - return $s; |
|
| 174 | - } |
|
| 164 | + if(is_array($s)) { |
|
| 165 | + if(count($s) === 0) $s = ''; |
|
| 166 | + else { |
|
| 167 | + foreach($s as $i=>$v) { |
|
| 168 | + $s[$i] = $this->escape($v,$safecount); |
|
| 169 | + } |
|
| 170 | + } |
|
| 171 | + } |
|
| 172 | + else $s = mysql_real_escape_string($s, $this->conn); |
|
| 173 | + return $s; |
|
| 174 | + } |
|
| 175 | 175 | |
| 176 | - /** |
|
| 177 | - * @name: query |
|
| 178 | - * @desc: Mainly for internal use. |
|
| 179 | - * Developers should use select, update, insert, delete where possible |
|
| 180 | - */ |
|
| 181 | - function query($sql,$watchError=true) { |
|
| 182 | - global $modx; |
|
| 183 | - if (empty ($this->conn) || !is_resource($this->conn)) { |
|
| 184 | - $this->connect(); |
|
| 185 | - } |
|
| 186 | - $tstart = $modx->getMicroTime(); |
|
| 187 | - if(is_array($sql)) $sql = join("\n", $sql); |
|
| 188 | - $this->lastQuery = $sql; |
|
| 189 | - if (!$result = @ mysql_query($sql, $this->conn)) { |
|
| 190 | - if(!$watchError) return; |
|
| 176 | + /** |
|
| 177 | + * @name: query |
|
| 178 | + * @desc: Mainly for internal use. |
|
| 179 | + * Developers should use select, update, insert, delete where possible |
|
| 180 | + */ |
|
| 181 | + function query($sql,$watchError=true) { |
|
| 182 | + global $modx; |
|
| 183 | + if (empty ($this->conn) || !is_resource($this->conn)) { |
|
| 184 | + $this->connect(); |
|
| 185 | + } |
|
| 186 | + $tstart = $modx->getMicroTime(); |
|
| 187 | + if(is_array($sql)) $sql = join("\n", $sql); |
|
| 188 | + $this->lastQuery = $sql; |
|
| 189 | + if (!$result = @ mysql_query($sql, $this->conn)) { |
|
| 190 | + if(!$watchError) return; |
|
| 191 | 191 | switch(mysql_errno()) { |
| 192 | 192 | case 1054: |
| 193 | 193 | case 1060: |
@@ -198,11 +198,11 @@ discard block |
||
| 198 | 198 | default: |
| 199 | 199 | $modx->messageQuit('Execution of a query to the database failed - ' . $this->getLastError(), $sql); |
| 200 | 200 | } |
| 201 | - } else { |
|
| 202 | - $tend = $modx->getMicroTime(); |
|
| 203 | - $totaltime = $tend - $tstart; |
|
| 204 | - $modx->queryTime = $modx->queryTime + $totaltime; |
|
| 205 | - if ($modx->dumpSQL) { |
|
| 201 | + } else { |
|
| 202 | + $tend = $modx->getMicroTime(); |
|
| 203 | + $totaltime = $tend - $tstart; |
|
| 204 | + $modx->queryTime = $modx->queryTime + $totaltime; |
|
| 205 | + if ($modx->dumpSQL) { |
|
| 206 | 206 | $debug = debug_backtrace(); |
| 207 | 207 | array_shift($debug); |
| 208 | 208 | $debug_path = array(); |
@@ -217,124 +217,124 @@ discard block |
||
| 217 | 217 | else $modx->queryCode .= 'Affected Rows => ' . $this->getAffectedRows() . '<br>'; |
| 218 | 218 | $modx->queryCode .= 'Functions Path => ' . $debug_path . '<br>'; |
| 219 | 219 | $modx->queryCode .= "</fieldset><br />"; |
| 220 | - } |
|
| 221 | - $modx->executedQueries = $modx->executedQueries + 1; |
|
| 222 | - return $result; |
|
| 223 | - } |
|
| 224 | - } |
|
| 220 | + } |
|
| 221 | + $modx->executedQueries = $modx->executedQueries + 1; |
|
| 222 | + return $result; |
|
| 223 | + } |
|
| 224 | + } |
|
| 225 | 225 | |
| 226 | - /** |
|
| 227 | - * @name: delete |
|
| 228 | - * |
|
| 229 | - */ |
|
| 230 | - function delete($from, $where='', $orderby='', $limit = '') { |
|
| 231 | - global $modx; |
|
| 232 | - if (!$from) |
|
| 233 | - $modx->messageQuit("Empty \$from parameters in DBAPI::delete()."); |
|
| 234 | - else { |
|
| 235 | - $from = $this->replaceFullTableName($from); |
|
| 236 | - $where = trim($where); |
|
| 237 | - $orderby = trim($orderby); |
|
| 238 | - $limit = trim($limit); |
|
| 239 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 240 | - if($orderby!=='' && stripos($orderby, 'ORDER BY')!==0) $orderby = "ORDER BY {$orderby}"; |
|
| 241 | - if($limit!=='' && stripos($limit, 'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
| 242 | - return $this->query("DELETE FROM {$from} {$where} {$orderby} {$limit}"); |
|
| 243 | - } |
|
| 244 | - } |
|
| 226 | + /** |
|
| 227 | + * @name: delete |
|
| 228 | + * |
|
| 229 | + */ |
|
| 230 | + function delete($from, $where='', $orderby='', $limit = '') { |
|
| 231 | + global $modx; |
|
| 232 | + if (!$from) |
|
| 233 | + $modx->messageQuit("Empty \$from parameters in DBAPI::delete()."); |
|
| 234 | + else { |
|
| 235 | + $from = $this->replaceFullTableName($from); |
|
| 236 | + $where = trim($where); |
|
| 237 | + $orderby = trim($orderby); |
|
| 238 | + $limit = trim($limit); |
|
| 239 | + if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 240 | + if($orderby!=='' && stripos($orderby, 'ORDER BY')!==0) $orderby = "ORDER BY {$orderby}"; |
|
| 241 | + if($limit!=='' && stripos($limit, 'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
| 242 | + return $this->query("DELETE FROM {$from} {$where} {$orderby} {$limit}"); |
|
| 243 | + } |
|
| 244 | + } |
|
| 245 | 245 | |
| 246 | - /** |
|
| 247 | - * @name: select |
|
| 248 | - * |
|
| 249 | - */ |
|
| 250 | - function select($fields = "*", $from = "", $where = "", $orderby = "", $limit = "") { |
|
| 251 | - global $modx; |
|
| 246 | + /** |
|
| 247 | + * @name: select |
|
| 248 | + * |
|
| 249 | + */ |
|
| 250 | + function select($fields = "*", $from = "", $where = "", $orderby = "", $limit = "") { |
|
| 251 | + global $modx; |
|
| 252 | 252 | |
| 253 | - if(is_array($fields)) $fields = $this->_getFieldsStringFromArray($fields); |
|
| 254 | - if(is_array($from)) $from = $this->_getFromStringFromArray($from); |
|
| 255 | - if(is_array($where)) $where = join(' ', $where); |
|
| 253 | + if(is_array($fields)) $fields = $this->_getFieldsStringFromArray($fields); |
|
| 254 | + if(is_array($from)) $from = $this->_getFromStringFromArray($from); |
|
| 255 | + if(is_array($where)) $where = join(' ', $where); |
|
| 256 | 256 | |
| 257 | - if (!$from) { |
|
| 258 | - $modx->messageQuit("Empty \$from parameters in DBAPI::select()."); |
|
| 259 | - exit; |
|
| 260 | - } |
|
| 257 | + if (!$from) { |
|
| 258 | + $modx->messageQuit("Empty \$from parameters in DBAPI::select()."); |
|
| 259 | + exit; |
|
| 260 | + } |
|
| 261 | 261 | |
| 262 | - $fields = $this->replaceFullTableName($fields); |
|
| 263 | - $from = $this->replaceFullTableName($from); |
|
| 264 | - $where = trim($where); |
|
| 265 | - $orderby = trim($orderby); |
|
| 266 | - $limit = trim($limit); |
|
| 267 | - if($where!=='' && stripos($where,'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 268 | - if($orderby!=='' && stripos($orderby,'ORDER')!==0) $orderby = "ORDER BY {$orderby}"; |
|
| 269 | - if($limit!=='' && stripos($limit,'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
| 270 | - return $this->query("SELECT {$fields} FROM {$from} {$where} {$orderby} {$limit}"); |
|
| 271 | - } |
|
| 262 | + $fields = $this->replaceFullTableName($fields); |
|
| 263 | + $from = $this->replaceFullTableName($from); |
|
| 264 | + $where = trim($where); |
|
| 265 | + $orderby = trim($orderby); |
|
| 266 | + $limit = trim($limit); |
|
| 267 | + if($where!=='' && stripos($where,'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 268 | + if($orderby!=='' && stripos($orderby,'ORDER')!==0) $orderby = "ORDER BY {$orderby}"; |
|
| 269 | + if($limit!=='' && stripos($limit,'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
| 270 | + return $this->query("SELECT {$fields} FROM {$from} {$where} {$orderby} {$limit}"); |
|
| 271 | + } |
|
| 272 | 272 | |
| 273 | - /** |
|
| 274 | - * @name: update |
|
| 275 | - * |
|
| 276 | - */ |
|
| 277 | - function update($fields, $table, $where = "") { |
|
| 278 | - global $modx; |
|
| 279 | - if (!$table) |
|
| 280 | - $modx->messageQuit("Empty \$table parameter in DBAPI::update()."); |
|
| 281 | - else { |
|
| 282 | - $table = $this->replaceFullTableName($table); |
|
| 283 | - if (is_array($fields)) { |
|
| 284 | - foreach ($fields as $key => $value) { |
|
| 285 | - if(is_null($value) || strtolower($value) === 'null'){ |
|
| 286 | - $flds = 'NULL'; |
|
| 287 | - }else{ |
|
| 288 | - $flds = "'" . $value . "'"; |
|
| 289 | - } |
|
| 290 | - $fields[$key] = "`{$key}` = ".$flds; |
|
| 291 | - } |
|
| 273 | + /** |
|
| 274 | + * @name: update |
|
| 275 | + * |
|
| 276 | + */ |
|
| 277 | + function update($fields, $table, $where = "") { |
|
| 278 | + global $modx; |
|
| 279 | + if (!$table) |
|
| 280 | + $modx->messageQuit("Empty \$table parameter in DBAPI::update()."); |
|
| 281 | + else { |
|
| 282 | + $table = $this->replaceFullTableName($table); |
|
| 283 | + if (is_array($fields)) { |
|
| 284 | + foreach ($fields as $key => $value) { |
|
| 285 | + if(is_null($value) || strtolower($value) === 'null'){ |
|
| 286 | + $flds = 'NULL'; |
|
| 287 | + }else{ |
|
| 288 | + $flds = "'" . $value . "'"; |
|
| 289 | + } |
|
| 290 | + $fields[$key] = "`{$key}` = ".$flds; |
|
| 291 | + } |
|
| 292 | 292 | $fields = implode(",", $fields); |
| 293 | - } |
|
| 294 | - $where = trim($where); |
|
| 295 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 296 | - return $this->query("UPDATE {$table} SET {$fields} {$where}"); |
|
| 297 | - } |
|
| 298 | - } |
|
| 293 | + } |
|
| 294 | + $where = trim($where); |
|
| 295 | + if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 296 | + return $this->query("UPDATE {$table} SET {$fields} {$where}"); |
|
| 297 | + } |
|
| 298 | + } |
|
| 299 | 299 | |
| 300 | - /** |
|
| 301 | - * @name: insert |
|
| 302 | - * @desc: returns either last id inserted or the result from the query |
|
| 303 | - */ |
|
| 304 | - function insert($fields, $intotable, $fromfields = "*", $fromtable = "", $where = "", $limit = "") { |
|
| 305 | - global $modx; |
|
| 306 | - if (!$intotable) |
|
| 307 | - $modx->messageQuit("Empty \$intotable parameters in DBAPI::insert()."); |
|
| 308 | - else { |
|
| 309 | - $intotable = $this->replaceFullTableName($intotable); |
|
| 310 | - if (!is_array($fields)) { |
|
| 300 | + /** |
|
| 301 | + * @name: insert |
|
| 302 | + * @desc: returns either last id inserted or the result from the query |
|
| 303 | + */ |
|
| 304 | + function insert($fields, $intotable, $fromfields = "*", $fromtable = "", $where = "", $limit = "") { |
|
| 305 | + global $modx; |
|
| 306 | + if (!$intotable) |
|
| 307 | + $modx->messageQuit("Empty \$intotable parameters in DBAPI::insert()."); |
|
| 308 | + else { |
|
| 309 | + $intotable = $this->replaceFullTableName($intotable); |
|
| 310 | + if (!is_array($fields)) { |
|
| 311 | 311 | $this->query("INSERT INTO {$intotable} {$fields}"); |
| 312 | - } else { |
|
| 312 | + } else { |
|
| 313 | 313 | if (empty($fromtable)) { |
| 314 | - $fields = "(`".implode("`, `", array_keys($fields))."`) VALUES('".implode("', '", array_values($fields))."')"; |
|
| 315 | - $rt = $this->query("INSERT INTO {$intotable} {$fields}"); |
|
| 314 | + $fields = "(`".implode("`, `", array_keys($fields))."`) VALUES('".implode("', '", array_values($fields))."')"; |
|
| 315 | + $rt = $this->query("INSERT INTO {$intotable} {$fields}"); |
|
| 316 | 316 | } else { |
| 317 | - if (version_compare($this->getVersion(),"4.0.14")>=0) { |
|
| 318 | - $fromtable = $this->replaceFullTableName($fromtable); |
|
| 319 | - $fields = "(".implode(",", array_keys($fields)).")"; |
|
| 320 | - $where = trim($where); |
|
| 321 | - $limit = trim($limit); |
|
| 322 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 323 | - if($limit!=='' && stripos($limit, 'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
| 324 | - $rt = $this->query("INSERT INTO {$intotable} {$fields} SELECT {$fromfields} FROM {$fromtable} {$where} {$limit}"); |
|
| 325 | - } else { |
|
| 326 | - $ds = $this->select($fromfields, $fromtable, $where, '', $limit); |
|
| 327 | - while ($row = $this->getRow($ds)) { |
|
| 328 | - $fields = "(".implode(",", array_keys($fields)).") VALUES('".implode("', '", $row)."')"; |
|
| 329 | - $rt = $this->query("INSERT INTO {$intotable} {$fields}"); |
|
| 330 | - } |
|
| 331 | - } |
|
| 317 | + if (version_compare($this->getVersion(),"4.0.14")>=0) { |
|
| 318 | + $fromtable = $this->replaceFullTableName($fromtable); |
|
| 319 | + $fields = "(".implode(",", array_keys($fields)).")"; |
|
| 320 | + $where = trim($where); |
|
| 321 | + $limit = trim($limit); |
|
| 322 | + if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 323 | + if($limit!=='' && stripos($limit, 'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
| 324 | + $rt = $this->query("INSERT INTO {$intotable} {$fields} SELECT {$fromfields} FROM {$fromtable} {$where} {$limit}"); |
|
| 325 | + } else { |
|
| 326 | + $ds = $this->select($fromfields, $fromtable, $where, '', $limit); |
|
| 327 | + while ($row = $this->getRow($ds)) { |
|
| 328 | + $fields = "(".implode(",", array_keys($fields)).") VALUES('".implode("', '", $row)."')"; |
|
| 329 | + $rt = $this->query("INSERT INTO {$intotable} {$fields}"); |
|
| 330 | + } |
|
| 331 | + } |
|
| 332 | + } |
|
| 332 | 333 | } |
| 333 | - } |
|
| 334 | - if (($lid = $this->getInsertId())===false) $modx->messageQuit("Couldn't get last insert key!"); |
|
| 335 | - return $lid; |
|
| 336 | - } |
|
| 337 | - } |
|
| 334 | + if (($lid = $this->getInsertId())===false) $modx->messageQuit("Couldn't get last insert key!"); |
|
| 335 | + return $lid; |
|
| 336 | + } |
|
| 337 | + } |
|
| 338 | 338 | |
| 339 | 339 | function save($fields, $table, $where='') { |
| 340 | 340 | |
@@ -346,277 +346,277 @@ discard block |
||
| 346 | 346 | else return $this->update($fields, $table, $where); |
| 347 | 347 | } |
| 348 | 348 | |
| 349 | - /** |
|
| 350 | - * @name: isResult |
|
| 351 | - * |
|
| 352 | - */ |
|
| 353 | - function isResult($rs) { |
|
| 354 | - return is_resource($rs); |
|
| 355 | - } |
|
| 349 | + /** |
|
| 350 | + * @name: isResult |
|
| 351 | + * |
|
| 352 | + */ |
|
| 353 | + function isResult($rs) { |
|
| 354 | + return is_resource($rs); |
|
| 355 | + } |
|
| 356 | 356 | |
| 357 | - /** |
|
| 358 | - * @name: freeResult |
|
| 359 | - * |
|
| 360 | - */ |
|
| 361 | - function freeResult($rs) { |
|
| 362 | - mysql_free_result($rs); |
|
| 363 | - } |
|
| 357 | + /** |
|
| 358 | + * @name: freeResult |
|
| 359 | + * |
|
| 360 | + */ |
|
| 361 | + function freeResult($rs) { |
|
| 362 | + mysql_free_result($rs); |
|
| 363 | + } |
|
| 364 | 364 | |
| 365 | - /** |
|
| 366 | - * @name: numFields |
|
| 367 | - * |
|
| 368 | - */ |
|
| 369 | - function numFields($rs) { |
|
| 370 | - return mysql_num_fields($rs); |
|
| 371 | - } |
|
| 365 | + /** |
|
| 366 | + * @name: numFields |
|
| 367 | + * |
|
| 368 | + */ |
|
| 369 | + function numFields($rs) { |
|
| 370 | + return mysql_num_fields($rs); |
|
| 371 | + } |
|
| 372 | 372 | |
| 373 | - /** |
|
| 374 | - * @name: fieldName |
|
| 375 | - * |
|
| 376 | - */ |
|
| 377 | - function fieldName($rs,$col=0) { |
|
| 378 | - return mysql_field_name($rs,$col); |
|
| 379 | - } |
|
| 373 | + /** |
|
| 374 | + * @name: fieldName |
|
| 375 | + * |
|
| 376 | + */ |
|
| 377 | + function fieldName($rs,$col=0) { |
|
| 378 | + return mysql_field_name($rs,$col); |
|
| 379 | + } |
|
| 380 | 380 | |
| 381 | 381 | /** |
| 382 | - * @name: selectDb |
|
| 383 | - * |
|
| 384 | - */ |
|
| 385 | - function selectDb($name) { |
|
| 386 | - mysql_select_db($name); |
|
| 387 | - } |
|
| 382 | + * @name: selectDb |
|
| 383 | + * |
|
| 384 | + */ |
|
| 385 | + function selectDb($name) { |
|
| 386 | + mysql_select_db($name); |
|
| 387 | + } |
|
| 388 | 388 | |
| 389 | 389 | |
| 390 | - /** |
|
| 391 | - * @name: getInsertId |
|
| 392 | - * |
|
| 393 | - */ |
|
| 394 | - function getInsertId($conn=NULL) { |
|
| 395 | - if( !is_resource($conn)) $conn =& $this->conn; |
|
| 396 | - return mysql_insert_id($conn); |
|
| 397 | - } |
|
| 390 | + /** |
|
| 391 | + * @name: getInsertId |
|
| 392 | + * |
|
| 393 | + */ |
|
| 394 | + function getInsertId($conn=NULL) { |
|
| 395 | + if( !is_resource($conn)) $conn =& $this->conn; |
|
| 396 | + return mysql_insert_id($conn); |
|
| 397 | + } |
|
| 398 | 398 | |
| 399 | - /** |
|
| 400 | - * @name: getAffectedRows |
|
| 401 | - * |
|
| 402 | - */ |
|
| 403 | - function getAffectedRows($conn=NULL) { |
|
| 404 | - if (!is_resource($conn)) $conn =& $this->conn; |
|
| 405 | - return mysql_affected_rows($conn); |
|
| 406 | - } |
|
| 399 | + /** |
|
| 400 | + * @name: getAffectedRows |
|
| 401 | + * |
|
| 402 | + */ |
|
| 403 | + function getAffectedRows($conn=NULL) { |
|
| 404 | + if (!is_resource($conn)) $conn =& $this->conn; |
|
| 405 | + return mysql_affected_rows($conn); |
|
| 406 | + } |
|
| 407 | 407 | |
| 408 | - /** |
|
| 409 | - * @name: getLastError |
|
| 410 | - * |
|
| 411 | - */ |
|
| 412 | - function getLastError($conn=NULL) { |
|
| 413 | - if (!is_resource($conn)) $conn =& $this->conn; |
|
| 414 | - return mysql_error($conn); |
|
| 415 | - } |
|
| 408 | + /** |
|
| 409 | + * @name: getLastError |
|
| 410 | + * |
|
| 411 | + */ |
|
| 412 | + function getLastError($conn=NULL) { |
|
| 413 | + if (!is_resource($conn)) $conn =& $this->conn; |
|
| 414 | + return mysql_error($conn); |
|
| 415 | + } |
|
| 416 | 416 | |
| 417 | - /** |
|
| 418 | - * @name: getRecordCount |
|
| 419 | - * |
|
| 420 | - */ |
|
| 421 | - function getRecordCount($ds) { |
|
| 422 | - return (is_resource($ds)) ? mysql_num_rows($ds) : 0; |
|
| 423 | - } |
|
| 417 | + /** |
|
| 418 | + * @name: getRecordCount |
|
| 419 | + * |
|
| 420 | + */ |
|
| 421 | + function getRecordCount($ds) { |
|
| 422 | + return (is_resource($ds)) ? mysql_num_rows($ds) : 0; |
|
| 423 | + } |
|
| 424 | 424 | |
| 425 | - /** |
|
| 426 | - * @name: getRow |
|
| 427 | - * @desc: returns an array of column values |
|
| 428 | - * @param: $dsq - dataset |
|
| 429 | - * |
|
| 430 | - */ |
|
| 431 | - function getRow($ds, $mode = 'assoc') { |
|
| 432 | - if (is_resource($ds)) { |
|
| 433 | - if ($mode == 'assoc') { |
|
| 425 | + /** |
|
| 426 | + * @name: getRow |
|
| 427 | + * @desc: returns an array of column values |
|
| 428 | + * @param: $dsq - dataset |
|
| 429 | + * |
|
| 430 | + */ |
|
| 431 | + function getRow($ds, $mode = 'assoc') { |
|
| 432 | + if (is_resource($ds)) { |
|
| 433 | + if ($mode == 'assoc') { |
|
| 434 | 434 | return mysql_fetch_assoc($ds); |
| 435 | - } |
|
| 436 | - elseif ($mode == 'num') { |
|
| 435 | + } |
|
| 436 | + elseif ($mode == 'num') { |
|
| 437 | 437 | return mysql_fetch_row($ds); |
| 438 | - } |
|
| 439 | - elseif ($mode == 'object') { |
|
| 438 | + } |
|
| 439 | + elseif ($mode == 'object') { |
|
| 440 | 440 | return mysql_fetch_object($ds); |
| 441 | - } |
|
| 442 | - elseif ($mode == 'both') { |
|
| 441 | + } |
|
| 442 | + elseif ($mode == 'both') { |
|
| 443 | 443 | return mysql_fetch_array($ds, MYSQL_BOTH); |
| 444 | - } else { |
|
| 444 | + } else { |
|
| 445 | 445 | global $modx; |
| 446 | 446 | $modx->messageQuit("Unknown get type ($mode) specified for fetchRow - must be empty, 'assoc', 'num' or 'both'."); |
| 447 | - } |
|
| 448 | - } |
|
| 449 | - } |
|
| 447 | + } |
|
| 448 | + } |
|
| 449 | + } |
|
| 450 | 450 | |
| 451 | - /** |
|
| 452 | - * @name: getColumn |
|
| 453 | - * @desc: returns an array of the values found on colun $name |
|
| 454 | - * @param: $dsq - dataset or query string |
|
| 455 | - */ |
|
| 456 | - function getColumn($name, $dsq) { |
|
| 457 | - if (!is_resource($dsq)) |
|
| 458 | - $dsq = $this->query($dsq); |
|
| 459 | - if ($dsq) { |
|
| 460 | - $col = array (); |
|
| 461 | - while ($row = $this->getRow($dsq)) { |
|
| 451 | + /** |
|
| 452 | + * @name: getColumn |
|
| 453 | + * @desc: returns an array of the values found on colun $name |
|
| 454 | + * @param: $dsq - dataset or query string |
|
| 455 | + */ |
|
| 456 | + function getColumn($name, $dsq) { |
|
| 457 | + if (!is_resource($dsq)) |
|
| 458 | + $dsq = $this->query($dsq); |
|
| 459 | + if ($dsq) { |
|
| 460 | + $col = array (); |
|
| 461 | + while ($row = $this->getRow($dsq)) { |
|
| 462 | 462 | $col[] = $row[$name]; |
| 463 | - } |
|
| 464 | - return $col; |
|
| 465 | - } |
|
| 466 | - } |
|
| 463 | + } |
|
| 464 | + return $col; |
|
| 465 | + } |
|
| 466 | + } |
|
| 467 | 467 | |
| 468 | - /** |
|
| 469 | - * @name: getColumnNames |
|
| 470 | - * @desc: returns an array containing the column $name |
|
| 471 | - * @param: $dsq - dataset or query string |
|
| 472 | - */ |
|
| 473 | - function getColumnNames($dsq) { |
|
| 474 | - if (!is_resource($dsq)) |
|
| 475 | - $dsq = $this->query($dsq); |
|
| 476 | - if ($dsq) { |
|
| 477 | - $names = array (); |
|
| 478 | - $limit = mysql_num_fields($dsq); |
|
| 479 | - for ($i = 0; $i < $limit; $i++) { |
|
| 468 | + /** |
|
| 469 | + * @name: getColumnNames |
|
| 470 | + * @desc: returns an array containing the column $name |
|
| 471 | + * @param: $dsq - dataset or query string |
|
| 472 | + */ |
|
| 473 | + function getColumnNames($dsq) { |
|
| 474 | + if (!is_resource($dsq)) |
|
| 475 | + $dsq = $this->query($dsq); |
|
| 476 | + if ($dsq) { |
|
| 477 | + $names = array (); |
|
| 478 | + $limit = mysql_num_fields($dsq); |
|
| 479 | + for ($i = 0; $i < $limit; $i++) { |
|
| 480 | 480 | $names[] = mysql_field_name($dsq, $i); |
| 481 | - } |
|
| 482 | - return $names; |
|
| 483 | - } |
|
| 484 | - } |
|
| 481 | + } |
|
| 482 | + return $names; |
|
| 483 | + } |
|
| 484 | + } |
|
| 485 | 485 | |
| 486 | - /** |
|
| 487 | - * @name: getValue |
|
| 488 | - * @desc: returns the value from the first column in the set |
|
| 489 | - * @param: $dsq - dataset or query string |
|
| 490 | - */ |
|
| 491 | - function getValue($dsq) { |
|
| 492 | - if (!is_resource($dsq)) |
|
| 493 | - $dsq = $this->query($dsq); |
|
| 494 | - if ($dsq) { |
|
| 495 | - $r = $this->getRow($dsq, "num"); |
|
| 496 | - return $r[0]; |
|
| 497 | - } |
|
| 498 | - } |
|
| 486 | + /** |
|
| 487 | + * @name: getValue |
|
| 488 | + * @desc: returns the value from the first column in the set |
|
| 489 | + * @param: $dsq - dataset or query string |
|
| 490 | + */ |
|
| 491 | + function getValue($dsq) { |
|
| 492 | + if (!is_resource($dsq)) |
|
| 493 | + $dsq = $this->query($dsq); |
|
| 494 | + if ($dsq) { |
|
| 495 | + $r = $this->getRow($dsq, "num"); |
|
| 496 | + return $r[0]; |
|
| 497 | + } |
|
| 498 | + } |
|
| 499 | 499 | |
| 500 | - /** |
|
| 501 | - * @name: getTableMetaData |
|
| 502 | - * @desc: returns an array of MySQL structure detail for each column of a |
|
| 503 | - * table |
|
| 504 | - * @param: $table: the full name of the database table |
|
| 505 | - */ |
|
| 506 | - function getTableMetaData($table) { |
|
| 507 | - $metadata = false; |
|
| 508 | - if (!empty ($table)) { |
|
| 509 | - $sql = "SHOW FIELDS FROM $table"; |
|
| 510 | - if ($ds = $this->query($sql)) { |
|
| 500 | + /** |
|
| 501 | + * @name: getTableMetaData |
|
| 502 | + * @desc: returns an array of MySQL structure detail for each column of a |
|
| 503 | + * table |
|
| 504 | + * @param: $table: the full name of the database table |
|
| 505 | + */ |
|
| 506 | + function getTableMetaData($table) { |
|
| 507 | + $metadata = false; |
|
| 508 | + if (!empty ($table)) { |
|
| 509 | + $sql = "SHOW FIELDS FROM $table"; |
|
| 510 | + if ($ds = $this->query($sql)) { |
|
| 511 | 511 | while ($row = $this->getRow($ds)) { |
| 512 | - $fieldName = $row['Field']; |
|
| 513 | - $metadata[$fieldName] = $row; |
|
| 512 | + $fieldName = $row['Field']; |
|
| 513 | + $metadata[$fieldName] = $row; |
|
| 514 | + } |
|
| 514 | 515 | } |
| 515 | - } |
|
| 516 | - } |
|
| 517 | - return $metadata; |
|
| 518 | - } |
|
| 516 | + } |
|
| 517 | + return $metadata; |
|
| 518 | + } |
|
| 519 | 519 | |
| 520 | - /** |
|
| 521 | - * @name: prepareDate |
|
| 522 | - * @desc: prepares a date in the proper format for specific database types |
|
| 523 | - * given a UNIX timestamp |
|
| 524 | - * @param: $timestamp: a UNIX timestamp |
|
| 525 | - * @param: $fieldType: the type of field to format the date for |
|
| 526 | - * (in MySQL, you have DATE, TIME, YEAR, and DATETIME) |
|
| 527 | - */ |
|
| 528 | - function prepareDate($timestamp, $fieldType = 'DATETIME') { |
|
| 529 | - $date = ''; |
|
| 530 | - if (!$timestamp === false && $timestamp > 0) { |
|
| 531 | - switch ($fieldType) { |
|
| 520 | + /** |
|
| 521 | + * @name: prepareDate |
|
| 522 | + * @desc: prepares a date in the proper format for specific database types |
|
| 523 | + * given a UNIX timestamp |
|
| 524 | + * @param: $timestamp: a UNIX timestamp |
|
| 525 | + * @param: $fieldType: the type of field to format the date for |
|
| 526 | + * (in MySQL, you have DATE, TIME, YEAR, and DATETIME) |
|
| 527 | + */ |
|
| 528 | + function prepareDate($timestamp, $fieldType = 'DATETIME') { |
|
| 529 | + $date = ''; |
|
| 530 | + if (!$timestamp === false && $timestamp > 0) { |
|
| 531 | + switch ($fieldType) { |
|
| 532 | 532 | case 'DATE' : |
| 533 | 533 | $date = date('Y-m-d', $timestamp); |
| 534 | - break; |
|
| 534 | + break; |
|
| 535 | 535 | case 'TIME' : |
| 536 | 536 | $date = date('H:i:s', $timestamp); |
| 537 | - break; |
|
| 537 | + break; |
|
| 538 | 538 | case 'YEAR' : |
| 539 | 539 | $date = date('Y', $timestamp); |
| 540 | - break; |
|
| 540 | + break; |
|
| 541 | 541 | default : |
| 542 | 542 | $date = date('Y-m-d H:i:s', $timestamp); |
| 543 | - break; |
|
| 544 | - } |
|
| 545 | - } |
|
| 546 | - return $date; |
|
| 547 | - } |
|
| 543 | + break; |
|
| 544 | + } |
|
| 545 | + } |
|
| 546 | + return $date; |
|
| 547 | + } |
|
| 548 | 548 | |
| 549 | - /** |
|
| 550 | - * @name: makeArray |
|
| 551 | - * @desc: turns a recordset into a multidimensional array |
|
| 552 | - * @return: an array of row arrays from recordset, or empty array |
|
| 553 | - * if the recordset was empty, returns false if no recordset |
|
| 554 | - * was passed |
|
| 555 | - * @param: $rs Recordset to be packaged into an array |
|
| 556 | - */ |
|
| 557 | - function makeArray($rs='',$index=false){ |
|
| 558 | - if (!$rs) return false; |
|
| 559 | - $rsArray = array(); |
|
| 560 | - $iterator = 0; |
|
| 561 | - while ($row = $this->getRow($rs)) { |
|
| 562 | - $returnIndex = $index !== false && isset($row[$index]) ? $row[$index] : $iterator; |
|
| 563 | - $rsArray[$returnIndex] = $row; |
|
| 564 | - $iterator++; |
|
| 565 | - } |
|
| 566 | - return $rsArray; |
|
| 567 | - } |
|
| 549 | + /** |
|
| 550 | + * @name: makeArray |
|
| 551 | + * @desc: turns a recordset into a multidimensional array |
|
| 552 | + * @return: an array of row arrays from recordset, or empty array |
|
| 553 | + * if the recordset was empty, returns false if no recordset |
|
| 554 | + * was passed |
|
| 555 | + * @param: $rs Recordset to be packaged into an array |
|
| 556 | + */ |
|
| 557 | + function makeArray($rs='',$index=false){ |
|
| 558 | + if (!$rs) return false; |
|
| 559 | + $rsArray = array(); |
|
| 560 | + $iterator = 0; |
|
| 561 | + while ($row = $this->getRow($rs)) { |
|
| 562 | + $returnIndex = $index !== false && isset($row[$index]) ? $row[$index] : $iterator; |
|
| 563 | + $rsArray[$returnIndex] = $row; |
|
| 564 | + $iterator++; |
|
| 565 | + } |
|
| 566 | + return $rsArray; |
|
| 567 | + } |
|
| 568 | 568 | |
| 569 | - /** |
|
| 570 | - * @name getVersion |
|
| 571 | - * @desc returns a string containing the database server version |
|
| 572 | - * |
|
| 573 | - * @return string |
|
| 574 | - */ |
|
| 575 | - function getVersion() { |
|
| 576 | - return mysql_get_server_info(); |
|
| 577 | - } |
|
| 569 | + /** |
|
| 570 | + * @name getVersion |
|
| 571 | + * @desc returns a string containing the database server version |
|
| 572 | + * |
|
| 573 | + * @return string |
|
| 574 | + */ |
|
| 575 | + function getVersion() { |
|
| 576 | + return mysql_get_server_info(); |
|
| 577 | + } |
|
| 578 | 578 | |
| 579 | - /** |
|
| 580 | - * @name replaceFullTableName |
|
| 581 | - * @desc Get full table name. Append table name and table prefix. |
|
| 582 | - * |
|
| 583 | - * @param string $str |
|
| 584 | - * @return string |
|
| 585 | - */ |
|
| 586 | - function replaceFullTableName($str,$force=null) { |
|
| 579 | + /** |
|
| 580 | + * @name replaceFullTableName |
|
| 581 | + * @desc Get full table name. Append table name and table prefix. |
|
| 582 | + * |
|
| 583 | + * @param string $str |
|
| 584 | + * @return string |
|
| 585 | + */ |
|
| 586 | + function replaceFullTableName($str,$force=null) { |
|
| 587 | 587 | |
| 588 | - $str = trim($str); |
|
| 589 | - $dbase = trim($this->config['dbase'],'`'); |
|
| 590 | - $prefix = $this->config['table_prefix']; |
|
| 591 | - if(!empty($force)) |
|
| 592 | - { |
|
| 593 | - $result = "`{$dbase}`.`{$prefix}{$str}`"; |
|
| 594 | - } |
|
| 595 | - elseif(strpos($str,'[+prefix+]')!==false) |
|
| 596 | - { |
|
| 597 | - $result = preg_replace('@\[\+prefix\+\]([0-9a-zA-Z_]+)@', "`{$dbase}`.`{$prefix}$1`", $str); |
|
| 598 | - } |
|
| 599 | - else $result = $str; |
|
| 588 | + $str = trim($str); |
|
| 589 | + $dbase = trim($this->config['dbase'],'`'); |
|
| 590 | + $prefix = $this->config['table_prefix']; |
|
| 591 | + if(!empty($force)) |
|
| 592 | + { |
|
| 593 | + $result = "`{$dbase}`.`{$prefix}{$str}`"; |
|
| 594 | + } |
|
| 595 | + elseif(strpos($str,'[+prefix+]')!==false) |
|
| 596 | + { |
|
| 597 | + $result = preg_replace('@\[\+prefix\+\]([0-9a-zA-Z_]+)@', "`{$dbase}`.`{$prefix}$1`", $str); |
|
| 598 | + } |
|
| 599 | + else $result = $str; |
|
| 600 | 600 | |
| 601 | - return $result; |
|
| 602 | - } |
|
| 601 | + return $result; |
|
| 602 | + } |
|
| 603 | 603 | |
| 604 | - function optimize($table_name) |
|
| 605 | - { |
|
| 606 | - $rs = $this->query("OPTIMIZE TABLE {$table_name}"); |
|
| 607 | - if($rs) $rs = $this->query("ALTER TABLE {$table_name}"); |
|
| 608 | - return $rs; |
|
| 609 | - } |
|
| 604 | + function optimize($table_name) |
|
| 605 | + { |
|
| 606 | + $rs = $this->query("OPTIMIZE TABLE {$table_name}"); |
|
| 607 | + if($rs) $rs = $this->query("ALTER TABLE {$table_name}"); |
|
| 608 | + return $rs; |
|
| 609 | + } |
|
| 610 | 610 | |
| 611 | - function truncate($table_name) |
|
| 612 | - { |
|
| 613 | - $rs = $this->query("TRUNCATE {$table_name}"); |
|
| 614 | - return $rs; |
|
| 615 | - } |
|
| 611 | + function truncate($table_name) |
|
| 612 | + { |
|
| 613 | + $rs = $this->query("TRUNCATE {$table_name}"); |
|
| 614 | + return $rs; |
|
| 615 | + } |
|
| 616 | 616 | |
| 617 | - function dataSeek($result, $row_number) { |
|
| 617 | + function dataSeek($result, $row_number) { |
|
| 618 | 618 | return mysql_data_seek($result, $row_number); |
| 619 | - } |
|
| 619 | + } |
|
| 620 | 620 | |
| 621 | 621 | function _getFieldsStringFromArray($fields=array()) { |
| 622 | 622 | |
@@ -5,7 +5,7 @@ discard block |
||
| 5 | 5 | * |
| 6 | 6 | */ |
| 7 | 7 | |
| 8 | -class DBAPI { |
|
| 8 | +class DBAPI{ |
|
| 9 | 9 | |
| 10 | 10 | var $conn; |
| 11 | 11 | var $config; |
@@ -16,13 +16,13 @@ discard block |
||
| 16 | 16 | * @name: DBAPI |
| 17 | 17 | * |
| 18 | 18 | */ |
| 19 | - function __construct($host='',$dbase='', $uid='',$pwd='',$pre=NULL,$charset='',$connection_method='SET CHARACTER SET') { |
|
| 19 | + function __construct($host = '', $dbase = '', $uid = '', $pwd = '', $pre = NULL, $charset = '', $connection_method = 'SET CHARACTER SET'){ |
|
| 20 | 20 | $this->config['host'] = $host ? $host : $GLOBALS['database_server']; |
| 21 | 21 | $this->config['dbase'] = $dbase ? $dbase : $GLOBALS['dbase']; |
| 22 | 22 | $this->config['user'] = $uid ? $uid : $GLOBALS['database_user']; |
| 23 | 23 | $this->config['pass'] = $pwd ? $pwd : $GLOBALS['database_password']; |
| 24 | 24 | $this->config['charset'] = $charset ? $charset : $GLOBALS['database_connection_charset']; |
| 25 | - $this->config['connection_method'] = $this->_dbconnectionmethod = (isset($GLOBALS['database_connection_method']) ? $GLOBALS['database_connection_method'] : $connection_method); |
|
| 25 | + $this->config['connection_method'] = $this->_dbconnectionmethod = (isset($GLOBALS['database_connection_method']) ? $GLOBALS['database_connection_method'] : $connection_method); |
|
| 26 | 26 | $this->config['table_prefix'] = ($pre !== NULL) ? $pre : $GLOBALS['table_prefix']; |
| 27 | 27 | $this->initDataTypes(); |
| 28 | 28 | } |
@@ -32,8 +32,8 @@ discard block |
||
| 32 | 32 | * @desc: called in the constructor to set up arrays containing the types |
| 33 | 33 | * of database fields that can be used with specific PHP types |
| 34 | 34 | */ |
| 35 | - function initDataTypes() { |
|
| 36 | - $this->dataTypes['numeric'] = array ( |
|
| 35 | + function initDataTypes(){ |
|
| 36 | + $this->dataTypes['numeric'] = array( |
|
| 37 | 37 | 'INT', |
| 38 | 38 | 'INTEGER', |
| 39 | 39 | 'TINYINT', |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | 'BIGINT', |
| 50 | 50 | 'BIT' |
| 51 | 51 | ); |
| 52 | - $this->dataTypes['string'] = array ( |
|
| 52 | + $this->dataTypes['string'] = array( |
|
| 53 | 53 | 'CHAR', |
| 54 | 54 | 'VARCHAR', |
| 55 | 55 | 'BINARY', |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | 'ENUM', |
| 66 | 66 | 'SET' |
| 67 | 67 | ); |
| 68 | - $this->dataTypes['date'] = array ( |
|
| 68 | + $this->dataTypes['date'] = array( |
|
| 69 | 69 | 'DATE', |
| 70 | 70 | 'DATETIME', |
| 71 | 71 | 'TIMESTAMP', |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | * @name: connect |
| 79 | 79 | * |
| 80 | 80 | */ |
| 81 | - function connect($host = '', $dbase = '', $uid = '', $pwd = '', $persist = 0) { |
|
| 81 | + function connect($host = '', $dbase = '', $uid = '', $pwd = '', $persist = 0){ |
|
| 82 | 82 | global $modx; |
| 83 | 83 | $uid = $uid ? $uid : $this->config['user']; |
| 84 | 84 | $pwd = $pwd ? $pwd : $this->config['pass']; |
@@ -88,16 +88,16 @@ discard block |
||
| 88 | 88 | $connection_method = $this->config['connection_method']; |
| 89 | 89 | $tstart = $modx->getMicroTime(); |
| 90 | 90 | $safe_count = 0; |
| 91 | - while(!$this->conn && $safe_count<3) |
|
| 91 | + while (!$this->conn && $safe_count < 3) |
|
| 92 | 92 | { |
| 93 | - if($persist!=0) $this->conn = mysql_pconnect($host, $uid, $pwd); |
|
| 93 | + if ($persist != 0) $this->conn = mysql_pconnect($host, $uid, $pwd); |
|
| 94 | 94 | else $this->conn = mysql_connect($host, $uid, $pwd, true); |
| 95 | 95 | |
| 96 | - if(!$this->conn) |
|
| 96 | + if (!$this->conn) |
|
| 97 | 97 | { |
| 98 | - if(isset($modx->config['send_errormail']) && $modx->config['send_errormail'] !== '0') |
|
| 98 | + if (isset($modx->config['send_errormail']) && $modx->config['send_errormail'] !== '0') |
|
| 99 | 99 | { |
| 100 | - if($modx->config['send_errormail'] <= 2) |
|
| 100 | + if ($modx->config['send_errormail'] <= 2) |
|
| 101 | 101 | { |
| 102 | 102 | $logtitle = 'Failed to create the database connection!'; |
| 103 | 103 | $request_uri = $modx->htmlspecialchars($_SERVER['REQUEST_URI']); |
@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | $referer = $modx->htmlspecialchars($_SERVER['HTTP_REFERER']); |
| 106 | 106 | |
| 107 | 107 | $modx->sendmail(array( |
| 108 | - 'subject' => 'Missing to create the database connection! from ' . $modx->config['site_name'], |
|
| 108 | + 'subject' => 'Missing to create the database connection! from '.$modx->config['site_name'], |
|
| 109 | 109 | 'body' => "{$logtitle}\n{$request_uri}\n{$ua}\n{$referer}", |
| 110 | 110 | 'type' => 'text') |
| 111 | 111 | ); |
@@ -119,16 +119,16 @@ discard block |
||
| 119 | 119 | $modx->messageQuit("Failed to create the database connection!"); |
| 120 | 120 | exit; |
| 121 | 121 | } else { |
| 122 | - $dbase = trim($dbase,'`'); // remove the `` chars |
|
| 122 | + $dbase = trim($dbase, '`'); // remove the `` chars |
|
| 123 | 123 | if (!@ mysql_select_db($dbase, $this->conn)) { |
| 124 | - $modx->messageQuit("Failed to select the database '" . $dbase . "'!"); |
|
| 124 | + $modx->messageQuit("Failed to select the database '".$dbase."'!"); |
|
| 125 | 125 | exit; |
| 126 | 126 | } |
| 127 | 127 | @mysql_query("{$connection_method} {$charset}", $this->conn); |
| 128 | 128 | $tend = $modx->getMicroTime(); |
| 129 | 129 | $totaltime = $tend - $tstart; |
| 130 | 130 | if ($modx->dumpSQL) { |
| 131 | - $modx->queryCode .= "<fieldset style='text-align:left'><legend>Database connection</legend>" . sprintf("Database connection was created in %2.4f s", $totaltime) . "</fieldset><br />"; |
|
| 131 | + $modx->queryCode .= "<fieldset style='text-align:left'><legend>Database connection</legend>".sprintf("Database connection was created in %2.4f s", $totaltime)."</fieldset><br />"; |
|
| 132 | 132 | } |
| 133 | 133 | if (function_exists('mysql_set_charset')) { |
| 134 | 134 | mysql_set_charset($this->config['charset']); |
@@ -146,26 +146,26 @@ discard block |
||
| 146 | 146 | * @name: disconnect |
| 147 | 147 | * |
| 148 | 148 | */ |
| 149 | - function disconnect() { |
|
| 149 | + function disconnect(){ |
|
| 150 | 150 | @ mysql_close($this->conn); |
| 151 | 151 | $this->conn = null; |
| 152 | 152 | $this->isConnected = false; |
| 153 | 153 | } |
| 154 | 154 | |
| 155 | - function escape($s, $safecount=0) { |
|
| 155 | + function escape($s, $safecount = 0){ |
|
| 156 | 156 | |
| 157 | 157 | $safecount++; |
| 158 | - if(1000<$safecount) exit("Too many loops '{$safecount}'"); |
|
| 158 | + if (1000 < $safecount) exit("Too many loops '{$safecount}'"); |
|
| 159 | 159 | |
| 160 | 160 | if (empty ($this->conn) || !is_resource($this->conn)) { |
| 161 | 161 | $this->connect(); |
| 162 | 162 | } |
| 163 | 163 | |
| 164 | - if(is_array($s)) { |
|
| 165 | - if(count($s) === 0) $s = ''; |
|
| 164 | + if (is_array($s)) { |
|
| 165 | + if (count($s) === 0) $s = ''; |
|
| 166 | 166 | else { |
| 167 | - foreach($s as $i=>$v) { |
|
| 168 | - $s[$i] = $this->escape($v,$safecount); |
|
| 167 | + foreach ($s as $i=>$v) { |
|
| 168 | + $s[$i] = $this->escape($v, $safecount); |
|
| 169 | 169 | } |
| 170 | 170 | } |
| 171 | 171 | } |
@@ -178,17 +178,17 @@ discard block |
||
| 178 | 178 | * @desc: Mainly for internal use. |
| 179 | 179 | * Developers should use select, update, insert, delete where possible |
| 180 | 180 | */ |
| 181 | - function query($sql,$watchError=true) { |
|
| 181 | + function query($sql, $watchError = true){ |
|
| 182 | 182 | global $modx; |
| 183 | 183 | if (empty ($this->conn) || !is_resource($this->conn)) { |
| 184 | 184 | $this->connect(); |
| 185 | 185 | } |
| 186 | 186 | $tstart = $modx->getMicroTime(); |
| 187 | - if(is_array($sql)) $sql = join("\n", $sql); |
|
| 187 | + if (is_array($sql)) $sql = join("\n", $sql); |
|
| 188 | 188 | $this->lastQuery = $sql; |
| 189 | 189 | if (!$result = @ mysql_query($sql, $this->conn)) { |
| 190 | - if(!$watchError) return; |
|
| 191 | - switch(mysql_errno()) { |
|
| 190 | + if (!$watchError) return; |
|
| 191 | + switch (mysql_errno()) { |
|
| 192 | 192 | case 1054: |
| 193 | 193 | case 1060: |
| 194 | 194 | case 1061: |
@@ -196,7 +196,7 @@ discard block |
||
| 196 | 196 | case 1091: |
| 197 | 197 | break; |
| 198 | 198 | default: |
| 199 | - $modx->messageQuit('Execution of a query to the database failed - ' . $this->getLastError(), $sql); |
|
| 199 | + $modx->messageQuit('Execution of a query to the database failed - '.$this->getLastError(), $sql); |
|
| 200 | 200 | } |
| 201 | 201 | } else { |
| 202 | 202 | $tend = $modx->getMicroTime(); |
@@ -207,15 +207,15 @@ discard block |
||
| 207 | 207 | array_shift($debug); |
| 208 | 208 | $debug_path = array(); |
| 209 | 209 | foreach ($debug as $line) $debug_path[] = $line['function']; |
| 210 | - $debug_path = implode(' > ',array_reverse($debug_path)); |
|
| 211 | - $modx->queryCode .= "<fieldset style='text-align:left'><legend>Query " . ($modx->executedQueries + 1) . " - " . sprintf("%2.2f ms", $totaltime*1000) . "</legend>"; |
|
| 212 | - $modx->queryCode .= $sql . '<br><br>'; |
|
| 213 | - if ($modx->event->name) $modx->queryCode .= 'Current Event => ' . $modx->event->name . '<br>'; |
|
| 214 | - if ($modx->event->activePlugin) $modx->queryCode .= 'Current Plugin => ' . $modx->event->activePlugin . '<br>'; |
|
| 215 | - if ($modx->currentSnippet) $modx->queryCode .= 'Current Snippet => ' . $modx->currentSnippet . '<br>'; |
|
| 216 | - if (stripos($sql, 'select')===0) $modx->queryCode .= 'Record Count => ' . $this->getRecordCount($result) . '<br>'; |
|
| 217 | - else $modx->queryCode .= 'Affected Rows => ' . $this->getAffectedRows() . '<br>'; |
|
| 218 | - $modx->queryCode .= 'Functions Path => ' . $debug_path . '<br>'; |
|
| 210 | + $debug_path = implode(' > ', array_reverse($debug_path)); |
|
| 211 | + $modx->queryCode .= "<fieldset style='text-align:left'><legend>Query ".($modx->executedQueries + 1)." - ".sprintf("%2.2f ms", $totaltime * 1000)."</legend>"; |
|
| 212 | + $modx->queryCode .= $sql.'<br><br>'; |
|
| 213 | + if ($modx->event->name) $modx->queryCode .= 'Current Event => '.$modx->event->name.'<br>'; |
|
| 214 | + if ($modx->event->activePlugin) $modx->queryCode .= 'Current Plugin => '.$modx->event->activePlugin.'<br>'; |
|
| 215 | + if ($modx->currentSnippet) $modx->queryCode .= 'Current Snippet => '.$modx->currentSnippet.'<br>'; |
|
| 216 | + if (stripos($sql, 'select') === 0) $modx->queryCode .= 'Record Count => '.$this->getRecordCount($result).'<br>'; |
|
| 217 | + else $modx->queryCode .= 'Affected Rows => '.$this->getAffectedRows().'<br>'; |
|
| 218 | + $modx->queryCode .= 'Functions Path => '.$debug_path.'<br>'; |
|
| 219 | 219 | $modx->queryCode .= "</fieldset><br />"; |
| 220 | 220 | } |
| 221 | 221 | $modx->executedQueries = $modx->executedQueries + 1; |
@@ -227,7 +227,7 @@ discard block |
||
| 227 | 227 | * @name: delete |
| 228 | 228 | * |
| 229 | 229 | */ |
| 230 | - function delete($from, $where='', $orderby='', $limit = '') { |
|
| 230 | + function delete($from, $where = '', $orderby = '', $limit = ''){ |
|
| 231 | 231 | global $modx; |
| 232 | 232 | if (!$from) |
| 233 | 233 | $modx->messageQuit("Empty \$from parameters in DBAPI::delete()."); |
@@ -236,9 +236,9 @@ discard block |
||
| 236 | 236 | $where = trim($where); |
| 237 | 237 | $orderby = trim($orderby); |
| 238 | 238 | $limit = trim($limit); |
| 239 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 240 | - if($orderby!=='' && stripos($orderby, 'ORDER BY')!==0) $orderby = "ORDER BY {$orderby}"; |
|
| 241 | - if($limit!=='' && stripos($limit, 'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
| 239 | + if ($where !== '' && stripos($where, 'WHERE') !== 0) $where = "WHERE {$where}"; |
|
| 240 | + if ($orderby !== '' && stripos($orderby, 'ORDER BY') !== 0) $orderby = "ORDER BY {$orderby}"; |
|
| 241 | + if ($limit !== '' && stripos($limit, 'LIMIT') !== 0) $limit = "LIMIT {$limit}"; |
|
| 242 | 242 | return $this->query("DELETE FROM {$from} {$where} {$orderby} {$limit}"); |
| 243 | 243 | } |
| 244 | 244 | } |
@@ -247,12 +247,12 @@ discard block |
||
| 247 | 247 | * @name: select |
| 248 | 248 | * |
| 249 | 249 | */ |
| 250 | - function select($fields = "*", $from = "", $where = "", $orderby = "", $limit = "") { |
|
| 250 | + function select($fields = "*", $from = "", $where = "", $orderby = "", $limit = ""){ |
|
| 251 | 251 | global $modx; |
| 252 | 252 | |
| 253 | - if(is_array($fields)) $fields = $this->_getFieldsStringFromArray($fields); |
|
| 254 | - if(is_array($from)) $from = $this->_getFromStringFromArray($from); |
|
| 255 | - if(is_array($where)) $where = join(' ', $where); |
|
| 253 | + if (is_array($fields)) $fields = $this->_getFieldsStringFromArray($fields); |
|
| 254 | + if (is_array($from)) $from = $this->_getFromStringFromArray($from); |
|
| 255 | + if (is_array($where)) $where = join(' ', $where); |
|
| 256 | 256 | |
| 257 | 257 | if (!$from) { |
| 258 | 258 | $modx->messageQuit("Empty \$from parameters in DBAPI::select()."); |
@@ -264,9 +264,9 @@ discard block |
||
| 264 | 264 | $where = trim($where); |
| 265 | 265 | $orderby = trim($orderby); |
| 266 | 266 | $limit = trim($limit); |
| 267 | - if($where!=='' && stripos($where,'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 268 | - if($orderby!=='' && stripos($orderby,'ORDER')!==0) $orderby = "ORDER BY {$orderby}"; |
|
| 269 | - if($limit!=='' && stripos($limit,'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
| 267 | + if ($where !== '' && stripos($where, 'WHERE') !== 0) $where = "WHERE {$where}"; |
|
| 268 | + if ($orderby !== '' && stripos($orderby, 'ORDER') !== 0) $orderby = "ORDER BY {$orderby}"; |
|
| 269 | + if ($limit !== '' && stripos($limit, 'LIMIT') !== 0) $limit = "LIMIT {$limit}"; |
|
| 270 | 270 | return $this->query("SELECT {$fields} FROM {$from} {$where} {$orderby} {$limit}"); |
| 271 | 271 | } |
| 272 | 272 | |
@@ -274,7 +274,7 @@ discard block |
||
| 274 | 274 | * @name: update |
| 275 | 275 | * |
| 276 | 276 | */ |
| 277 | - function update($fields, $table, $where = "") { |
|
| 277 | + function update($fields, $table, $where = ""){ |
|
| 278 | 278 | global $modx; |
| 279 | 279 | if (!$table) |
| 280 | 280 | $modx->messageQuit("Empty \$table parameter in DBAPI::update()."); |
@@ -282,17 +282,17 @@ discard block |
||
| 282 | 282 | $table = $this->replaceFullTableName($table); |
| 283 | 283 | if (is_array($fields)) { |
| 284 | 284 | foreach ($fields as $key => $value) { |
| 285 | - if(is_null($value) || strtolower($value) === 'null'){ |
|
| 285 | + if (is_null($value) || strtolower($value) === 'null') { |
|
| 286 | 286 | $flds = 'NULL'; |
| 287 | - }else{ |
|
| 288 | - $flds = "'" . $value . "'"; |
|
| 287 | + } else { |
|
| 288 | + $flds = "'".$value."'"; |
|
| 289 | 289 | } |
| 290 | 290 | $fields[$key] = "`{$key}` = ".$flds; |
| 291 | 291 | } |
| 292 | 292 | $fields = implode(",", $fields); |
| 293 | 293 | } |
| 294 | 294 | $where = trim($where); |
| 295 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 295 | + if ($where !== '' && stripos($where, 'WHERE') !== 0) $where = "WHERE {$where}"; |
|
| 296 | 296 | return $this->query("UPDATE {$table} SET {$fields} {$where}"); |
| 297 | 297 | } |
| 298 | 298 | } |
@@ -301,7 +301,7 @@ discard block |
||
| 301 | 301 | * @name: insert |
| 302 | 302 | * @desc: returns either last id inserted or the result from the query |
| 303 | 303 | */ |
| 304 | - function insert($fields, $intotable, $fromfields = "*", $fromtable = "", $where = "", $limit = "") { |
|
| 304 | + function insert($fields, $intotable, $fromfields = "*", $fromtable = "", $where = "", $limit = ""){ |
|
| 305 | 305 | global $modx; |
| 306 | 306 | if (!$intotable) |
| 307 | 307 | $modx->messageQuit("Empty \$intotable parameters in DBAPI::insert()."); |
@@ -314,13 +314,13 @@ discard block |
||
| 314 | 314 | $fields = "(`".implode("`, `", array_keys($fields))."`) VALUES('".implode("', '", array_values($fields))."')"; |
| 315 | 315 | $rt = $this->query("INSERT INTO {$intotable} {$fields}"); |
| 316 | 316 | } else { |
| 317 | - if (version_compare($this->getVersion(),"4.0.14")>=0) { |
|
| 317 | + if (version_compare($this->getVersion(), "4.0.14") >= 0) { |
|
| 318 | 318 | $fromtable = $this->replaceFullTableName($fromtable); |
| 319 | 319 | $fields = "(".implode(",", array_keys($fields)).")"; |
| 320 | 320 | $where = trim($where); |
| 321 | 321 | $limit = trim($limit); |
| 322 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 323 | - if($limit!=='' && stripos($limit, 'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
| 322 | + if ($where !== '' && stripos($where, 'WHERE') !== 0) $where = "WHERE {$where}"; |
|
| 323 | + if ($limit !== '' && stripos($limit, 'LIMIT') !== 0) $limit = "LIMIT {$limit}"; |
|
| 324 | 324 | $rt = $this->query("INSERT INTO {$intotable} {$fields} SELECT {$fromfields} FROM {$fromtable} {$where} {$limit}"); |
| 325 | 325 | } else { |
| 326 | 326 | $ds = $this->select($fromfields, $fromtable, $where, '', $limit); |
@@ -331,18 +331,18 @@ discard block |
||
| 331 | 331 | } |
| 332 | 332 | } |
| 333 | 333 | } |
| 334 | - if (($lid = $this->getInsertId())===false) $modx->messageQuit("Couldn't get last insert key!"); |
|
| 334 | + if (($lid = $this->getInsertId()) === false) $modx->messageQuit("Couldn't get last insert key!"); |
|
| 335 | 335 | return $lid; |
| 336 | 336 | } |
| 337 | 337 | } |
| 338 | 338 | |
| 339 | - function save($fields, $table, $where='') { |
|
| 339 | + function save($fields, $table, $where = ''){ |
|
| 340 | 340 | |
| 341 | - if($where === '') $mode = 'insert'; |
|
| 342 | - elseif($this->getRecordCount($this->select('*',$table,$where))==0) $mode = 'insert'; |
|
| 341 | + if ($where === '') $mode = 'insert'; |
|
| 342 | + elseif ($this->getRecordCount($this->select('*', $table, $where)) == 0) $mode = 'insert'; |
|
| 343 | 343 | else $mode = 'update'; |
| 344 | 344 | |
| 345 | - if($mode==='insert') return $this->insert($fields, $table); |
|
| 345 | + if ($mode === 'insert') return $this->insert($fields, $table); |
|
| 346 | 346 | else return $this->update($fields, $table, $where); |
| 347 | 347 | } |
| 348 | 348 | |
@@ -350,7 +350,7 @@ discard block |
||
| 350 | 350 | * @name: isResult |
| 351 | 351 | * |
| 352 | 352 | */ |
| 353 | - function isResult($rs) { |
|
| 353 | + function isResult($rs){ |
|
| 354 | 354 | return is_resource($rs); |
| 355 | 355 | } |
| 356 | 356 | |
@@ -358,7 +358,7 @@ discard block |
||
| 358 | 358 | * @name: freeResult |
| 359 | 359 | * |
| 360 | 360 | */ |
| 361 | - function freeResult($rs) { |
|
| 361 | + function freeResult($rs){ |
|
| 362 | 362 | mysql_free_result($rs); |
| 363 | 363 | } |
| 364 | 364 | |
@@ -366,7 +366,7 @@ discard block |
||
| 366 | 366 | * @name: numFields |
| 367 | 367 | * |
| 368 | 368 | */ |
| 369 | - function numFields($rs) { |
|
| 369 | + function numFields($rs){ |
|
| 370 | 370 | return mysql_num_fields($rs); |
| 371 | 371 | } |
| 372 | 372 | |
@@ -374,15 +374,15 @@ discard block |
||
| 374 | 374 | * @name: fieldName |
| 375 | 375 | * |
| 376 | 376 | */ |
| 377 | - function fieldName($rs,$col=0) { |
|
| 378 | - return mysql_field_name($rs,$col); |
|
| 377 | + function fieldName($rs, $col = 0){ |
|
| 378 | + return mysql_field_name($rs, $col); |
|
| 379 | 379 | } |
| 380 | 380 | |
| 381 | 381 | /** |
| 382 | 382 | * @name: selectDb |
| 383 | 383 | * |
| 384 | 384 | */ |
| 385 | - function selectDb($name) { |
|
| 385 | + function selectDb($name){ |
|
| 386 | 386 | mysql_select_db($name); |
| 387 | 387 | } |
| 388 | 388 | |
@@ -391,8 +391,8 @@ discard block |
||
| 391 | 391 | * @name: getInsertId |
| 392 | 392 | * |
| 393 | 393 | */ |
| 394 | - function getInsertId($conn=NULL) { |
|
| 395 | - if( !is_resource($conn)) $conn =& $this->conn; |
|
| 394 | + function getInsertId($conn = NULL){ |
|
| 395 | + if (!is_resource($conn)) $conn = & $this->conn; |
|
| 396 | 396 | return mysql_insert_id($conn); |
| 397 | 397 | } |
| 398 | 398 | |
@@ -400,8 +400,8 @@ discard block |
||
| 400 | 400 | * @name: getAffectedRows |
| 401 | 401 | * |
| 402 | 402 | */ |
| 403 | - function getAffectedRows($conn=NULL) { |
|
| 404 | - if (!is_resource($conn)) $conn =& $this->conn; |
|
| 403 | + function getAffectedRows($conn = NULL){ |
|
| 404 | + if (!is_resource($conn)) $conn = & $this->conn; |
|
| 405 | 405 | return mysql_affected_rows($conn); |
| 406 | 406 | } |
| 407 | 407 | |
@@ -409,8 +409,8 @@ discard block |
||
| 409 | 409 | * @name: getLastError |
| 410 | 410 | * |
| 411 | 411 | */ |
| 412 | - function getLastError($conn=NULL) { |
|
| 413 | - if (!is_resource($conn)) $conn =& $this->conn; |
|
| 412 | + function getLastError($conn = NULL){ |
|
| 413 | + if (!is_resource($conn)) $conn = & $this->conn; |
|
| 414 | 414 | return mysql_error($conn); |
| 415 | 415 | } |
| 416 | 416 | |
@@ -418,7 +418,7 @@ discard block |
||
| 418 | 418 | * @name: getRecordCount |
| 419 | 419 | * |
| 420 | 420 | */ |
| 421 | - function getRecordCount($ds) { |
|
| 421 | + function getRecordCount($ds){ |
|
| 422 | 422 | return (is_resource($ds)) ? mysql_num_rows($ds) : 0; |
| 423 | 423 | } |
| 424 | 424 | |
@@ -428,7 +428,7 @@ discard block |
||
| 428 | 428 | * @param: $dsq - dataset |
| 429 | 429 | * |
| 430 | 430 | */ |
| 431 | - function getRow($ds, $mode = 'assoc') { |
|
| 431 | + function getRow($ds, $mode = 'assoc'){ |
|
| 432 | 432 | if (is_resource($ds)) { |
| 433 | 433 | if ($mode == 'assoc') { |
| 434 | 434 | return mysql_fetch_assoc($ds); |
@@ -453,11 +453,11 @@ discard block |
||
| 453 | 453 | * @desc: returns an array of the values found on colun $name |
| 454 | 454 | * @param: $dsq - dataset or query string |
| 455 | 455 | */ |
| 456 | - function getColumn($name, $dsq) { |
|
| 456 | + function getColumn($name, $dsq){ |
|
| 457 | 457 | if (!is_resource($dsq)) |
| 458 | 458 | $dsq = $this->query($dsq); |
| 459 | 459 | if ($dsq) { |
| 460 | - $col = array (); |
|
| 460 | + $col = array(); |
|
| 461 | 461 | while ($row = $this->getRow($dsq)) { |
| 462 | 462 | $col[] = $row[$name]; |
| 463 | 463 | } |
@@ -470,11 +470,11 @@ discard block |
||
| 470 | 470 | * @desc: returns an array containing the column $name |
| 471 | 471 | * @param: $dsq - dataset or query string |
| 472 | 472 | */ |
| 473 | - function getColumnNames($dsq) { |
|
| 473 | + function getColumnNames($dsq){ |
|
| 474 | 474 | if (!is_resource($dsq)) |
| 475 | 475 | $dsq = $this->query($dsq); |
| 476 | 476 | if ($dsq) { |
| 477 | - $names = array (); |
|
| 477 | + $names = array(); |
|
| 478 | 478 | $limit = mysql_num_fields($dsq); |
| 479 | 479 | for ($i = 0; $i < $limit; $i++) { |
| 480 | 480 | $names[] = mysql_field_name($dsq, $i); |
@@ -488,7 +488,7 @@ discard block |
||
| 488 | 488 | * @desc: returns the value from the first column in the set |
| 489 | 489 | * @param: $dsq - dataset or query string |
| 490 | 490 | */ |
| 491 | - function getValue($dsq) { |
|
| 491 | + function getValue($dsq){ |
|
| 492 | 492 | if (!is_resource($dsq)) |
| 493 | 493 | $dsq = $this->query($dsq); |
| 494 | 494 | if ($dsq) { |
@@ -503,7 +503,7 @@ discard block |
||
| 503 | 503 | * table |
| 504 | 504 | * @param: $table: the full name of the database table |
| 505 | 505 | */ |
| 506 | - function getTableMetaData($table) { |
|
| 506 | + function getTableMetaData($table){ |
|
| 507 | 507 | $metadata = false; |
| 508 | 508 | if (!empty ($table)) { |
| 509 | 509 | $sql = "SHOW FIELDS FROM $table"; |
@@ -525,7 +525,7 @@ discard block |
||
| 525 | 525 | * @param: $fieldType: the type of field to format the date for |
| 526 | 526 | * (in MySQL, you have DATE, TIME, YEAR, and DATETIME) |
| 527 | 527 | */ |
| 528 | - function prepareDate($timestamp, $fieldType = 'DATETIME') { |
|
| 528 | + function prepareDate($timestamp, $fieldType = 'DATETIME'){ |
|
| 529 | 529 | $date = ''; |
| 530 | 530 | if (!$timestamp === false && $timestamp > 0) { |
| 531 | 531 | switch ($fieldType) { |
@@ -554,7 +554,7 @@ discard block |
||
| 554 | 554 | * was passed |
| 555 | 555 | * @param: $rs Recordset to be packaged into an array |
| 556 | 556 | */ |
| 557 | - function makeArray($rs='',$index=false){ |
|
| 557 | + function makeArray($rs = '', $index = false){ |
|
| 558 | 558 | if (!$rs) return false; |
| 559 | 559 | $rsArray = array(); |
| 560 | 560 | $iterator = 0; |
@@ -572,7 +572,7 @@ discard block |
||
| 572 | 572 | * |
| 573 | 573 | * @return string |
| 574 | 574 | */ |
| 575 | - function getVersion() { |
|
| 575 | + function getVersion(){ |
|
| 576 | 576 | return mysql_get_server_info(); |
| 577 | 577 | } |
| 578 | 578 | |
@@ -583,16 +583,16 @@ discard block |
||
| 583 | 583 | * @param string $str |
| 584 | 584 | * @return string |
| 585 | 585 | */ |
| 586 | - function replaceFullTableName($str,$force=null) { |
|
| 586 | + function replaceFullTableName($str, $force = null){ |
|
| 587 | 587 | |
| 588 | 588 | $str = trim($str); |
| 589 | - $dbase = trim($this->config['dbase'],'`'); |
|
| 589 | + $dbase = trim($this->config['dbase'], '`'); |
|
| 590 | 590 | $prefix = $this->config['table_prefix']; |
| 591 | - if(!empty($force)) |
|
| 591 | + if (!empty($force)) |
|
| 592 | 592 | { |
| 593 | 593 | $result = "`{$dbase}`.`{$prefix}{$str}`"; |
| 594 | 594 | } |
| 595 | - elseif(strpos($str,'[+prefix+]')!==false) |
|
| 595 | + elseif (strpos($str, '[+prefix+]') !== false) |
|
| 596 | 596 | { |
| 597 | 597 | $result = preg_replace('@\[\+prefix\+\]([0-9a-zA-Z_]+)@', "`{$dbase}`.`{$prefix}$1`", $str); |
| 598 | 598 | } |
@@ -604,7 +604,7 @@ discard block |
||
| 604 | 604 | function optimize($table_name) |
| 605 | 605 | { |
| 606 | 606 | $rs = $this->query("OPTIMIZE TABLE {$table_name}"); |
| 607 | - if($rs) $rs = $this->query("ALTER TABLE {$table_name}"); |
|
| 607 | + if ($rs) $rs = $this->query("ALTER TABLE {$table_name}"); |
|
| 608 | 608 | return $rs; |
| 609 | 609 | } |
| 610 | 610 | |
@@ -614,25 +614,25 @@ discard block |
||
| 614 | 614 | return $rs; |
| 615 | 615 | } |
| 616 | 616 | |
| 617 | - function dataSeek($result, $row_number) { |
|
| 617 | + function dataSeek($result, $row_number){ |
|
| 618 | 618 | return mysql_data_seek($result, $row_number); |
| 619 | 619 | } |
| 620 | 620 | |
| 621 | - function _getFieldsStringFromArray($fields=array()) { |
|
| 621 | + function _getFieldsStringFromArray($fields = array()){ |
|
| 622 | 622 | |
| 623 | - if(empty($fields)) return '*'; |
|
| 623 | + if (empty($fields)) return '*'; |
|
| 624 | 624 | |
| 625 | 625 | $_ = array(); |
| 626 | - foreach($fields as $k=>$v) { |
|
| 627 | - if($k!==$v) $_[] = "{$v} as {$k}"; |
|
| 626 | + foreach ($fields as $k=>$v) { |
|
| 627 | + if ($k !== $v) $_[] = "{$v} as {$k}"; |
|
| 628 | 628 | else $_[] = $v; |
| 629 | 629 | } |
| 630 | 630 | return join(',', $_); |
| 631 | 631 | } |
| 632 | 632 | |
| 633 | - function _getFromStringFromArray($tables=array()) { |
|
| 633 | + function _getFromStringFromArray($tables = array()){ |
|
| 634 | 634 | $_ = array(); |
| 635 | - foreach($tables as $k=>$v) { |
|
| 635 | + foreach ($tables as $k=>$v) { |
|
| 636 | 636 | $_[] = $v; |
| 637 | 637 | } |
| 638 | 638 | return join(' ', $_); |
@@ -5,7 +5,8 @@ discard block |
||
| 5 | 5 | * |
| 6 | 6 | */ |
| 7 | 7 | |
| 8 | -class DBAPI { |
|
| 8 | +class DBAPI |
|
| 9 | +{ |
|
| 9 | 10 | |
| 10 | 11 | var $conn; |
| 11 | 12 | var $config; |
@@ -16,7 +17,8 @@ discard block |
||
| 16 | 17 | * @name: DBAPI |
| 17 | 18 | * |
| 18 | 19 | */ |
| 19 | - function __construct($host='',$dbase='', $uid='',$pwd='',$pre=NULL,$charset='',$connection_method='SET CHARACTER SET') { |
|
| 20 | + function __construct($host='',$dbase='', $uid='',$pwd='',$pre=NULL,$charset='',$connection_method='SET CHARACTER SET') |
|
| 21 | + { |
|
| 20 | 22 | $this->config['host'] = $host ? $host : $GLOBALS['database_server']; |
| 21 | 23 | $this->config['dbase'] = $dbase ? $dbase : $GLOBALS['dbase']; |
| 22 | 24 | $this->config['user'] = $uid ? $uid : $GLOBALS['database_user']; |
@@ -32,7 +34,8 @@ discard block |
||
| 32 | 34 | * @desc: called in the constructor to set up arrays containing the types |
| 33 | 35 | * of database fields that can be used with specific PHP types |
| 34 | 36 | */ |
| 35 | - function initDataTypes() { |
|
| 37 | + function initDataTypes() |
|
| 38 | + { |
|
| 36 | 39 | $this->dataTypes['numeric'] = array ( |
| 37 | 40 | 'INT', |
| 38 | 41 | 'INTEGER', |
@@ -78,7 +81,8 @@ discard block |
||
| 78 | 81 | * @name: connect |
| 79 | 82 | * |
| 80 | 83 | */ |
| 81 | - function connect($host = '', $dbase = '', $uid = '', $pwd = '', $persist = 0) { |
|
| 84 | + function connect($host = '', $dbase = '', $uid = '', $pwd = '', $persist = 0) |
|
| 85 | + { |
|
| 82 | 86 | global $modx; |
| 83 | 87 | $uid = $uid ? $uid : $this->config['user']; |
| 84 | 88 | $pwd = $pwd ? $pwd : $this->config['pass']; |
@@ -88,17 +92,16 @@ discard block |
||
| 88 | 92 | $connection_method = $this->config['connection_method']; |
| 89 | 93 | $tstart = $modx->getMicroTime(); |
| 90 | 94 | $safe_count = 0; |
| 91 | - while(!$this->conn && $safe_count<3) |
|
| 92 | - { |
|
| 93 | - if($persist!=0) $this->conn = mysql_pconnect($host, $uid, $pwd); |
|
| 94 | - else $this->conn = mysql_connect($host, $uid, $pwd, true); |
|
| 95 | + while(!$this->conn && $safe_count<3) { |
|
| 96 | + if($persist!=0) { |
|
| 97 | + $this->conn = mysql_pconnect($host, $uid, $pwd); |
|
| 98 | + } else { |
|
| 99 | + $this->conn = mysql_connect($host, $uid, $pwd, true); |
|
| 100 | + } |
|
| 95 | 101 | |
| 96 | - if(!$this->conn) |
|
| 97 | - { |
|
| 98 | - if(isset($modx->config['send_errormail']) && $modx->config['send_errormail'] !== '0') |
|
| 99 | - { |
|
| 100 | - if($modx->config['send_errormail'] <= 2) |
|
| 101 | - { |
|
| 102 | + if(!$this->conn) { |
|
| 103 | + if(isset($modx->config['send_errormail']) && $modx->config['send_errormail'] !== '0') { |
|
| 104 | + if($modx->config['send_errormail'] <= 2) { |
|
| 102 | 105 | $logtitle = 'Failed to create the database connection!'; |
| 103 | 106 | $request_uri = $modx->htmlspecialchars($_SERVER['REQUEST_URI']); |
| 104 | 107 | $ua = $modx->htmlspecialchars($_SERVER['HTTP_USER_AGENT']); |
@@ -146,30 +149,36 @@ discard block |
||
| 146 | 149 | * @name: disconnect |
| 147 | 150 | * |
| 148 | 151 | */ |
| 149 | - function disconnect() { |
|
| 152 | + function disconnect() |
|
| 153 | + { |
|
| 150 | 154 | @ mysql_close($this->conn); |
| 151 | 155 | $this->conn = null; |
| 152 | 156 | $this->isConnected = false; |
| 153 | 157 | } |
| 154 | 158 | |
| 155 | - function escape($s, $safecount=0) { |
|
| 159 | + function escape($s, $safecount=0) |
|
| 160 | + { |
|
| 156 | 161 | |
| 157 | 162 | $safecount++; |
| 158 | - if(1000<$safecount) exit("Too many loops '{$safecount}'"); |
|
| 163 | + if(1000<$safecount) { |
|
| 164 | + exit("Too many loops '{$safecount}'"); |
|
| 165 | + } |
|
| 159 | 166 | |
| 160 | 167 | if (empty ($this->conn) || !is_resource($this->conn)) { |
| 161 | 168 | $this->connect(); |
| 162 | 169 | } |
| 163 | 170 | |
| 164 | 171 | if(is_array($s)) { |
| 165 | - if(count($s) === 0) $s = ''; |
|
| 166 | - else { |
|
| 172 | + if(count($s) === 0) { |
|
| 173 | + $s = ''; |
|
| 174 | + } else { |
|
| 167 | 175 | foreach($s as $i=>$v) { |
| 168 | 176 | $s[$i] = $this->escape($v,$safecount); |
| 169 | 177 | } |
| 170 | 178 | } |
| 179 | + } else { |
|
| 180 | + $s = mysql_real_escape_string($s, $this->conn); |
|
| 171 | 181 | } |
| 172 | - else $s = mysql_real_escape_string($s, $this->conn); |
|
| 173 | 182 | return $s; |
| 174 | 183 | } |
| 175 | 184 | |
@@ -178,16 +187,21 @@ discard block |
||
| 178 | 187 | * @desc: Mainly for internal use. |
| 179 | 188 | * Developers should use select, update, insert, delete where possible |
| 180 | 189 | */ |
| 181 | - function query($sql,$watchError=true) { |
|
| 190 | + function query($sql,$watchError=true) |
|
| 191 | + { |
|
| 182 | 192 | global $modx; |
| 183 | 193 | if (empty ($this->conn) || !is_resource($this->conn)) { |
| 184 | 194 | $this->connect(); |
| 185 | 195 | } |
| 186 | 196 | $tstart = $modx->getMicroTime(); |
| 187 | - if(is_array($sql)) $sql = join("\n", $sql); |
|
| 197 | + if(is_array($sql)) { |
|
| 198 | + $sql = join("\n", $sql); |
|
| 199 | + } |
|
| 188 | 200 | $this->lastQuery = $sql; |
| 189 | 201 | if (!$result = @ mysql_query($sql, $this->conn)) { |
| 190 | - if(!$watchError) return; |
|
| 202 | + if(!$watchError) { |
|
| 203 | + return; |
|
| 204 | + } |
|
| 191 | 205 | switch(mysql_errno()) { |
| 192 | 206 | case 1054: |
| 193 | 207 | case 1060: |
@@ -206,15 +220,26 @@ discard block |
||
| 206 | 220 | $debug = debug_backtrace(); |
| 207 | 221 | array_shift($debug); |
| 208 | 222 | $debug_path = array(); |
| 209 | - foreach ($debug as $line) $debug_path[] = $line['function']; |
|
| 223 | + foreach ($debug as $line) { |
|
| 224 | + $debug_path[] = $line['function']; |
|
| 225 | + } |
|
| 210 | 226 | $debug_path = implode(' > ',array_reverse($debug_path)); |
| 211 | 227 | $modx->queryCode .= "<fieldset style='text-align:left'><legend>Query " . ($modx->executedQueries + 1) . " - " . sprintf("%2.2f ms", $totaltime*1000) . "</legend>"; |
| 212 | 228 | $modx->queryCode .= $sql . '<br><br>'; |
| 213 | - if ($modx->event->name) $modx->queryCode .= 'Current Event => ' . $modx->event->name . '<br>'; |
|
| 214 | - if ($modx->event->activePlugin) $modx->queryCode .= 'Current Plugin => ' . $modx->event->activePlugin . '<br>'; |
|
| 215 | - if ($modx->currentSnippet) $modx->queryCode .= 'Current Snippet => ' . $modx->currentSnippet . '<br>'; |
|
| 216 | - if (stripos($sql, 'select')===0) $modx->queryCode .= 'Record Count => ' . $this->getRecordCount($result) . '<br>'; |
|
| 217 | - else $modx->queryCode .= 'Affected Rows => ' . $this->getAffectedRows() . '<br>'; |
|
| 229 | + if ($modx->event->name) { |
|
| 230 | + $modx->queryCode .= 'Current Event => ' . $modx->event->name . '<br>'; |
|
| 231 | + } |
|
| 232 | + if ($modx->event->activePlugin) { |
|
| 233 | + $modx->queryCode .= 'Current Plugin => ' . $modx->event->activePlugin . '<br>'; |
|
| 234 | + } |
|
| 235 | + if ($modx->currentSnippet) { |
|
| 236 | + $modx->queryCode .= 'Current Snippet => ' . $modx->currentSnippet . '<br>'; |
|
| 237 | + } |
|
| 238 | + if (stripos($sql, 'select')===0) { |
|
| 239 | + $modx->queryCode .= 'Record Count => ' . $this->getRecordCount($result) . '<br>'; |
|
| 240 | + } else { |
|
| 241 | + $modx->queryCode .= 'Affected Rows => ' . $this->getAffectedRows() . '<br>'; |
|
| 242 | + } |
|
| 218 | 243 | $modx->queryCode .= 'Functions Path => ' . $debug_path . '<br>'; |
| 219 | 244 | $modx->queryCode .= "</fieldset><br />"; |
| 220 | 245 | } |
@@ -227,18 +252,25 @@ discard block |
||
| 227 | 252 | * @name: delete |
| 228 | 253 | * |
| 229 | 254 | */ |
| 230 | - function delete($from, $where='', $orderby='', $limit = '') { |
|
| 255 | + function delete($from, $where='', $orderby='', $limit = '') |
|
| 256 | + { |
|
| 231 | 257 | global $modx; |
| 232 | - if (!$from) |
|
| 233 | - $modx->messageQuit("Empty \$from parameters in DBAPI::delete()."); |
|
| 234 | - else { |
|
| 258 | + if (!$from) { |
|
| 259 | + $modx->messageQuit("Empty \$from parameters in DBAPI::delete()."); |
|
| 260 | + } else { |
|
| 235 | 261 | $from = $this->replaceFullTableName($from); |
| 236 | 262 | $where = trim($where); |
| 237 | 263 | $orderby = trim($orderby); |
| 238 | 264 | $limit = trim($limit); |
| 239 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 240 | - if($orderby!=='' && stripos($orderby, 'ORDER BY')!==0) $orderby = "ORDER BY {$orderby}"; |
|
| 241 | - if($limit!=='' && stripos($limit, 'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
| 265 | + if($where!=='' && stripos($where, 'WHERE')!==0) { |
|
| 266 | + $where = "WHERE {$where}"; |
|
| 267 | + } |
|
| 268 | + if($orderby!=='' && stripos($orderby, 'ORDER BY')!==0) { |
|
| 269 | + $orderby = "ORDER BY {$orderby}"; |
|
| 270 | + } |
|
| 271 | + if($limit!=='' && stripos($limit, 'LIMIT')!==0) { |
|
| 272 | + $limit = "LIMIT {$limit}"; |
|
| 273 | + } |
|
| 242 | 274 | return $this->query("DELETE FROM {$from} {$where} {$orderby} {$limit}"); |
| 243 | 275 | } |
| 244 | 276 | } |
@@ -247,12 +279,19 @@ discard block |
||
| 247 | 279 | * @name: select |
| 248 | 280 | * |
| 249 | 281 | */ |
| 250 | - function select($fields = "*", $from = "", $where = "", $orderby = "", $limit = "") { |
|
| 282 | + function select($fields = "*", $from = "", $where = "", $orderby = "", $limit = "") |
|
| 283 | + { |
|
| 251 | 284 | global $modx; |
| 252 | 285 | |
| 253 | - if(is_array($fields)) $fields = $this->_getFieldsStringFromArray($fields); |
|
| 254 | - if(is_array($from)) $from = $this->_getFromStringFromArray($from); |
|
| 255 | - if(is_array($where)) $where = join(' ', $where); |
|
| 286 | + if(is_array($fields)) { |
|
| 287 | + $fields = $this->_getFieldsStringFromArray($fields); |
|
| 288 | + } |
|
| 289 | + if(is_array($from)) { |
|
| 290 | + $from = $this->_getFromStringFromArray($from); |
|
| 291 | + } |
|
| 292 | + if(is_array($where)) { |
|
| 293 | + $where = join(' ', $where); |
|
| 294 | + } |
|
| 256 | 295 | |
| 257 | 296 | if (!$from) { |
| 258 | 297 | $modx->messageQuit("Empty \$from parameters in DBAPI::select()."); |
@@ -264,9 +303,15 @@ discard block |
||
| 264 | 303 | $where = trim($where); |
| 265 | 304 | $orderby = trim($orderby); |
| 266 | 305 | $limit = trim($limit); |
| 267 | - if($where!=='' && stripos($where,'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 268 | - if($orderby!=='' && stripos($orderby,'ORDER')!==0) $orderby = "ORDER BY {$orderby}"; |
|
| 269 | - if($limit!=='' && stripos($limit,'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
| 306 | + if($where!=='' && stripos($where,'WHERE')!==0) { |
|
| 307 | + $where = "WHERE {$where}"; |
|
| 308 | + } |
|
| 309 | + if($orderby!=='' && stripos($orderby,'ORDER')!==0) { |
|
| 310 | + $orderby = "ORDER BY {$orderby}"; |
|
| 311 | + } |
|
| 312 | + if($limit!=='' && stripos($limit,'LIMIT')!==0) { |
|
| 313 | + $limit = "LIMIT {$limit}"; |
|
| 314 | + } |
|
| 270 | 315 | return $this->query("SELECT {$fields} FROM {$from} {$where} {$orderby} {$limit}"); |
| 271 | 316 | } |
| 272 | 317 | |
@@ -274,17 +319,18 @@ discard block |
||
| 274 | 319 | * @name: update |
| 275 | 320 | * |
| 276 | 321 | */ |
| 277 | - function update($fields, $table, $where = "") { |
|
| 322 | + function update($fields, $table, $where = "") |
|
| 323 | + { |
|
| 278 | 324 | global $modx; |
| 279 | - if (!$table) |
|
| 280 | - $modx->messageQuit("Empty \$table parameter in DBAPI::update()."); |
|
| 281 | - else { |
|
| 325 | + if (!$table) { |
|
| 326 | + $modx->messageQuit("Empty \$table parameter in DBAPI::update()."); |
|
| 327 | + } else { |
|
| 282 | 328 | $table = $this->replaceFullTableName($table); |
| 283 | 329 | if (is_array($fields)) { |
| 284 | 330 | foreach ($fields as $key => $value) { |
| 285 | - if(is_null($value) || strtolower($value) === 'null'){ |
|
| 331 | + if(is_null($value) || strtolower($value) === 'null') { |
|
| 286 | 332 | $flds = 'NULL'; |
| 287 | - }else{ |
|
| 333 | + } else { |
|
| 288 | 334 | $flds = "'" . $value . "'"; |
| 289 | 335 | } |
| 290 | 336 | $fields[$key] = "`{$key}` = ".$flds; |
@@ -292,7 +338,9 @@ discard block |
||
| 292 | 338 | $fields = implode(",", $fields); |
| 293 | 339 | } |
| 294 | 340 | $where = trim($where); |
| 295 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 341 | + if($where!=='' && stripos($where, 'WHERE')!==0) { |
|
| 342 | + $where = "WHERE {$where}"; |
|
| 343 | + } |
|
| 296 | 344 | return $this->query("UPDATE {$table} SET {$fields} {$where}"); |
| 297 | 345 | } |
| 298 | 346 | } |
@@ -301,11 +349,12 @@ discard block |
||
| 301 | 349 | * @name: insert |
| 302 | 350 | * @desc: returns either last id inserted or the result from the query |
| 303 | 351 | */ |
| 304 | - function insert($fields, $intotable, $fromfields = "*", $fromtable = "", $where = "", $limit = "") { |
|
| 352 | + function insert($fields, $intotable, $fromfields = "*", $fromtable = "", $where = "", $limit = "") |
|
| 353 | + { |
|
| 305 | 354 | global $modx; |
| 306 | - if (!$intotable) |
|
| 307 | - $modx->messageQuit("Empty \$intotable parameters in DBAPI::insert()."); |
|
| 308 | - else { |
|
| 355 | + if (!$intotable) { |
|
| 356 | + $modx->messageQuit("Empty \$intotable parameters in DBAPI::insert()."); |
|
| 357 | + } else { |
|
| 309 | 358 | $intotable = $this->replaceFullTableName($intotable); |
| 310 | 359 | if (!is_array($fields)) { |
| 311 | 360 | $this->query("INSERT INTO {$intotable} {$fields}"); |
@@ -319,8 +368,12 @@ discard block |
||
| 319 | 368 | $fields = "(".implode(",", array_keys($fields)).")"; |
| 320 | 369 | $where = trim($where); |
| 321 | 370 | $limit = trim($limit); |
| 322 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 323 | - if($limit!=='' && stripos($limit, 'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
| 371 | + if($where!=='' && stripos($where, 'WHERE')!==0) { |
|
| 372 | + $where = "WHERE {$where}"; |
|
| 373 | + } |
|
| 374 | + if($limit!=='' && stripos($limit, 'LIMIT')!==0) { |
|
| 375 | + $limit = "LIMIT {$limit}"; |
|
| 376 | + } |
|
| 324 | 377 | $rt = $this->query("INSERT INTO {$intotable} {$fields} SELECT {$fromfields} FROM {$fromtable} {$where} {$limit}"); |
| 325 | 378 | } else { |
| 326 | 379 | $ds = $this->select($fromfields, $fromtable, $where, '', $limit); |
@@ -331,26 +384,37 @@ discard block |
||
| 331 | 384 | } |
| 332 | 385 | } |
| 333 | 386 | } |
| 334 | - if (($lid = $this->getInsertId())===false) $modx->messageQuit("Couldn't get last insert key!"); |
|
| 387 | + if (($lid = $this->getInsertId())===false) { |
|
| 388 | + $modx->messageQuit("Couldn't get last insert key!"); |
|
| 389 | + } |
|
| 335 | 390 | return $lid; |
| 336 | 391 | } |
| 337 | 392 | } |
| 338 | 393 | |
| 339 | - function save($fields, $table, $where='') { |
|
| 394 | + function save($fields, $table, $where='') |
|
| 395 | + { |
|
| 340 | 396 | |
| 341 | - if($where === '') $mode = 'insert'; |
|
| 342 | - elseif($this->getRecordCount($this->select('*',$table,$where))==0) $mode = 'insert'; |
|
| 343 | - else $mode = 'update'; |
|
| 397 | + if($where === '') { |
|
| 398 | + $mode = 'insert'; |
|
| 399 | + } elseif($this->getRecordCount($this->select('*',$table,$where))==0) { |
|
| 400 | + $mode = 'insert'; |
|
| 401 | + } else { |
|
| 402 | + $mode = 'update'; |
|
| 403 | + } |
|
| 344 | 404 | |
| 345 | - if($mode==='insert') return $this->insert($fields, $table); |
|
| 346 | - else return $this->update($fields, $table, $where); |
|
| 405 | + if($mode==='insert') { |
|
| 406 | + return $this->insert($fields, $table); |
|
| 407 | + } else { |
|
| 408 | + return $this->update($fields, $table, $where); |
|
| 409 | + } |
|
| 347 | 410 | } |
| 348 | 411 | |
| 349 | 412 | /** |
| 350 | 413 | * @name: isResult |
| 351 | 414 | * |
| 352 | 415 | */ |
| 353 | - function isResult($rs) { |
|
| 416 | + function isResult($rs) |
|
| 417 | + { |
|
| 354 | 418 | return is_resource($rs); |
| 355 | 419 | } |
| 356 | 420 | |
@@ -358,7 +422,8 @@ discard block |
||
| 358 | 422 | * @name: freeResult |
| 359 | 423 | * |
| 360 | 424 | */ |
| 361 | - function freeResult($rs) { |
|
| 425 | + function freeResult($rs) |
|
| 426 | + { |
|
| 362 | 427 | mysql_free_result($rs); |
| 363 | 428 | } |
| 364 | 429 | |
@@ -366,7 +431,8 @@ discard block |
||
| 366 | 431 | * @name: numFields |
| 367 | 432 | * |
| 368 | 433 | */ |
| 369 | - function numFields($rs) { |
|
| 434 | + function numFields($rs) |
|
| 435 | + { |
|
| 370 | 436 | return mysql_num_fields($rs); |
| 371 | 437 | } |
| 372 | 438 | |
@@ -374,7 +440,8 @@ discard block |
||
| 374 | 440 | * @name: fieldName |
| 375 | 441 | * |
| 376 | 442 | */ |
| 377 | - function fieldName($rs,$col=0) { |
|
| 443 | + function fieldName($rs,$col=0) |
|
| 444 | + { |
|
| 378 | 445 | return mysql_field_name($rs,$col); |
| 379 | 446 | } |
| 380 | 447 | |
@@ -382,7 +449,8 @@ discard block |
||
| 382 | 449 | * @name: selectDb |
| 383 | 450 | * |
| 384 | 451 | */ |
| 385 | - function selectDb($name) { |
|
| 452 | + function selectDb($name) |
|
| 453 | + { |
|
| 386 | 454 | mysql_select_db($name); |
| 387 | 455 | } |
| 388 | 456 | |
@@ -391,8 +459,11 @@ discard block |
||
| 391 | 459 | * @name: getInsertId |
| 392 | 460 | * |
| 393 | 461 | */ |
| 394 | - function getInsertId($conn=NULL) { |
|
| 395 | - if( !is_resource($conn)) $conn =& $this->conn; |
|
| 462 | + function getInsertId($conn=NULL) |
|
| 463 | + { |
|
| 464 | + if( !is_resource($conn)) { |
|
| 465 | + $conn =& $this->conn; |
|
| 466 | + } |
|
| 396 | 467 | return mysql_insert_id($conn); |
| 397 | 468 | } |
| 398 | 469 | |
@@ -400,8 +471,11 @@ discard block |
||
| 400 | 471 | * @name: getAffectedRows |
| 401 | 472 | * |
| 402 | 473 | */ |
| 403 | - function getAffectedRows($conn=NULL) { |
|
| 404 | - if (!is_resource($conn)) $conn =& $this->conn; |
|
| 474 | + function getAffectedRows($conn=NULL) |
|
| 475 | + { |
|
| 476 | + if (!is_resource($conn)) { |
|
| 477 | + $conn =& $this->conn; |
|
| 478 | + } |
|
| 405 | 479 | return mysql_affected_rows($conn); |
| 406 | 480 | } |
| 407 | 481 | |
@@ -409,8 +483,11 @@ discard block |
||
| 409 | 483 | * @name: getLastError |
| 410 | 484 | * |
| 411 | 485 | */ |
| 412 | - function getLastError($conn=NULL) { |
|
| 413 | - if (!is_resource($conn)) $conn =& $this->conn; |
|
| 486 | + function getLastError($conn=NULL) |
|
| 487 | + { |
|
| 488 | + if (!is_resource($conn)) { |
|
| 489 | + $conn =& $this->conn; |
|
| 490 | + } |
|
| 414 | 491 | return mysql_error($conn); |
| 415 | 492 | } |
| 416 | 493 | |
@@ -418,7 +495,8 @@ discard block |
||
| 418 | 495 | * @name: getRecordCount |
| 419 | 496 | * |
| 420 | 497 | */ |
| 421 | - function getRecordCount($ds) { |
|
| 498 | + function getRecordCount($ds) |
|
| 499 | + { |
|
| 422 | 500 | return (is_resource($ds)) ? mysql_num_rows($ds) : 0; |
| 423 | 501 | } |
| 424 | 502 | |
@@ -428,18 +506,16 @@ discard block |
||
| 428 | 506 | * @param: $dsq - dataset |
| 429 | 507 | * |
| 430 | 508 | */ |
| 431 | - function getRow($ds, $mode = 'assoc') { |
|
| 509 | + function getRow($ds, $mode = 'assoc') |
|
| 510 | + { |
|
| 432 | 511 | if (is_resource($ds)) { |
| 433 | 512 | if ($mode == 'assoc') { |
| 434 | 513 | return mysql_fetch_assoc($ds); |
| 435 | - } |
|
| 436 | - elseif ($mode == 'num') { |
|
| 514 | + } elseif ($mode == 'num') { |
|
| 437 | 515 | return mysql_fetch_row($ds); |
| 438 | - } |
|
| 439 | - elseif ($mode == 'object') { |
|
| 516 | + } elseif ($mode == 'object') { |
|
| 440 | 517 | return mysql_fetch_object($ds); |
| 441 | - } |
|
| 442 | - elseif ($mode == 'both') { |
|
| 518 | + } elseif ($mode == 'both') { |
|
| 443 | 519 | return mysql_fetch_array($ds, MYSQL_BOTH); |
| 444 | 520 | } else { |
| 445 | 521 | global $modx; |
@@ -453,9 +529,11 @@ discard block |
||
| 453 | 529 | * @desc: returns an array of the values found on colun $name |
| 454 | 530 | * @param: $dsq - dataset or query string |
| 455 | 531 | */ |
| 456 | - function getColumn($name, $dsq) { |
|
| 457 | - if (!is_resource($dsq)) |
|
| 458 | - $dsq = $this->query($dsq); |
|
| 532 | + function getColumn($name, $dsq) |
|
| 533 | + { |
|
| 534 | + if (!is_resource($dsq)) { |
|
| 535 | + $dsq = $this->query($dsq); |
|
| 536 | + } |
|
| 459 | 537 | if ($dsq) { |
| 460 | 538 | $col = array (); |
| 461 | 539 | while ($row = $this->getRow($dsq)) { |
@@ -470,9 +548,11 @@ discard block |
||
| 470 | 548 | * @desc: returns an array containing the column $name |
| 471 | 549 | * @param: $dsq - dataset or query string |
| 472 | 550 | */ |
| 473 | - function getColumnNames($dsq) { |
|
| 474 | - if (!is_resource($dsq)) |
|
| 475 | - $dsq = $this->query($dsq); |
|
| 551 | + function getColumnNames($dsq) |
|
| 552 | + { |
|
| 553 | + if (!is_resource($dsq)) { |
|
| 554 | + $dsq = $this->query($dsq); |
|
| 555 | + } |
|
| 476 | 556 | if ($dsq) { |
| 477 | 557 | $names = array (); |
| 478 | 558 | $limit = mysql_num_fields($dsq); |
@@ -488,9 +568,11 @@ discard block |
||
| 488 | 568 | * @desc: returns the value from the first column in the set |
| 489 | 569 | * @param: $dsq - dataset or query string |
| 490 | 570 | */ |
| 491 | - function getValue($dsq) { |
|
| 492 | - if (!is_resource($dsq)) |
|
| 493 | - $dsq = $this->query($dsq); |
|
| 571 | + function getValue($dsq) |
|
| 572 | + { |
|
| 573 | + if (!is_resource($dsq)) { |
|
| 574 | + $dsq = $this->query($dsq); |
|
| 575 | + } |
|
| 494 | 576 | if ($dsq) { |
| 495 | 577 | $r = $this->getRow($dsq, "num"); |
| 496 | 578 | return $r[0]; |
@@ -503,7 +585,8 @@ discard block |
||
| 503 | 585 | * table |
| 504 | 586 | * @param: $table: the full name of the database table |
| 505 | 587 | */ |
| 506 | - function getTableMetaData($table) { |
|
| 588 | + function getTableMetaData($table) |
|
| 589 | + { |
|
| 507 | 590 | $metadata = false; |
| 508 | 591 | if (!empty ($table)) { |
| 509 | 592 | $sql = "SHOW FIELDS FROM $table"; |
@@ -525,7 +608,8 @@ discard block |
||
| 525 | 608 | * @param: $fieldType: the type of field to format the date for |
| 526 | 609 | * (in MySQL, you have DATE, TIME, YEAR, and DATETIME) |
| 527 | 610 | */ |
| 528 | - function prepareDate($timestamp, $fieldType = 'DATETIME') { |
|
| 611 | + function prepareDate($timestamp, $fieldType = 'DATETIME') |
|
| 612 | + { |
|
| 529 | 613 | $date = ''; |
| 530 | 614 | if (!$timestamp === false && $timestamp > 0) { |
| 531 | 615 | switch ($fieldType) { |
@@ -554,8 +638,11 @@ discard block |
||
| 554 | 638 | * was passed |
| 555 | 639 | * @param: $rs Recordset to be packaged into an array |
| 556 | 640 | */ |
| 557 | - function makeArray($rs='',$index=false){ |
|
| 558 | - if (!$rs) return false; |
|
| 641 | + function makeArray($rs='',$index=false) |
|
| 642 | + { |
|
| 643 | + if (!$rs) { |
|
| 644 | + return false; |
|
| 645 | + } |
|
| 559 | 646 | $rsArray = array(); |
| 560 | 647 | $iterator = 0; |
| 561 | 648 | while ($row = $this->getRow($rs)) { |
@@ -572,7 +659,8 @@ discard block |
||
| 572 | 659 | * |
| 573 | 660 | * @return string |
| 574 | 661 | */ |
| 575 | - function getVersion() { |
|
| 662 | + function getVersion() |
|
| 663 | + { |
|
| 576 | 664 | return mysql_get_server_info(); |
| 577 | 665 | } |
| 578 | 666 | |
@@ -583,20 +671,19 @@ discard block |
||
| 583 | 671 | * @param string $str |
| 584 | 672 | * @return string |
| 585 | 673 | */ |
| 586 | - function replaceFullTableName($str,$force=null) { |
|
| 674 | + function replaceFullTableName($str,$force=null) |
|
| 675 | + { |
|
| 587 | 676 | |
| 588 | 677 | $str = trim($str); |
| 589 | 678 | $dbase = trim($this->config['dbase'],'`'); |
| 590 | 679 | $prefix = $this->config['table_prefix']; |
| 591 | - if(!empty($force)) |
|
| 592 | - { |
|
| 680 | + if(!empty($force)) { |
|
| 593 | 681 | $result = "`{$dbase}`.`{$prefix}{$str}`"; |
| 594 | - } |
|
| 595 | - elseif(strpos($str,'[+prefix+]')!==false) |
|
| 596 | - { |
|
| 682 | + } elseif(strpos($str,'[+prefix+]')!==false) { |
|
| 597 | 683 | $result = preg_replace('@\[\+prefix\+\]([0-9a-zA-Z_]+)@', "`{$dbase}`.`{$prefix}$1`", $str); |
| 684 | + } else { |
|
| 685 | + $result = $str; |
|
| 598 | 686 | } |
| 599 | - else $result = $str; |
|
| 600 | 687 | |
| 601 | 688 | return $result; |
| 602 | 689 | } |
@@ -604,7 +691,9 @@ discard block |
||
| 604 | 691 | function optimize($table_name) |
| 605 | 692 | { |
| 606 | 693 | $rs = $this->query("OPTIMIZE TABLE {$table_name}"); |
| 607 | - if($rs) $rs = $this->query("ALTER TABLE {$table_name}"); |
|
| 694 | + if($rs) { |
|
| 695 | + $rs = $this->query("ALTER TABLE {$table_name}"); |
|
| 696 | + } |
|
| 608 | 697 | return $rs; |
| 609 | 698 | } |
| 610 | 699 | |
@@ -614,23 +703,31 @@ discard block |
||
| 614 | 703 | return $rs; |
| 615 | 704 | } |
| 616 | 705 | |
| 617 | - function dataSeek($result, $row_number) { |
|
| 706 | + function dataSeek($result, $row_number) |
|
| 707 | + { |
|
| 618 | 708 | return mysql_data_seek($result, $row_number); |
| 619 | 709 | } |
| 620 | 710 | |
| 621 | - function _getFieldsStringFromArray($fields=array()) { |
|
| 711 | + function _getFieldsStringFromArray($fields=array()) |
|
| 712 | + { |
|
| 622 | 713 | |
| 623 | - if(empty($fields)) return '*'; |
|
| 714 | + if(empty($fields)) { |
|
| 715 | + return '*'; |
|
| 716 | + } |
|
| 624 | 717 | |
| 625 | 718 | $_ = array(); |
| 626 | 719 | foreach($fields as $k=>$v) { |
| 627 | - if($k!==$v) $_[] = "{$v} as {$k}"; |
|
| 628 | - else $_[] = $v; |
|
| 720 | + if($k!==$v) { |
|
| 721 | + $_[] = "{$v} as {$k}"; |
|
| 722 | + } else { |
|
| 723 | + $_[] = $v; |
|
| 724 | + } |
|
| 629 | 725 | } |
| 630 | 726 | return join(',', $_); |
| 631 | 727 | } |
| 632 | 728 | |
| 633 | - function _getFromStringFromArray($tables=array()) { |
|
| 729 | + function _getFromStringFromArray($tables=array()) |
|
| 730 | + { |
|
| 634 | 731 | $_ = array(); |
| 635 | 732 | foreach($tables as $k=>$v) { |
| 636 | 733 | $_[] = $v; |
@@ -16,14 +16,14 @@ discard block |
||
| 16 | 16 | * @name: DBAPI |
| 17 | 17 | * |
| 18 | 18 | */ |
| 19 | - function __construct($host='',$dbase='', $uid='',$pwd='',$pre=NULL,$charset='',$connection_method='SET CHARACTER SET') { |
|
| 19 | + function __construct($host='',$dbase='', $uid='',$pwd='',$pre=null,$charset='',$connection_method='SET CHARACTER SET') { |
|
| 20 | 20 | $this->config['host'] = $host ? $host : $GLOBALS['database_server']; |
| 21 | 21 | $this->config['dbase'] = $dbase ? $dbase : $GLOBALS['dbase']; |
| 22 | 22 | $this->config['user'] = $uid ? $uid : $GLOBALS['database_user']; |
| 23 | 23 | $this->config['pass'] = $pwd ? $pwd : $GLOBALS['database_password']; |
| 24 | 24 | $this->config['charset'] = $charset ? $charset : $GLOBALS['database_connection_charset']; |
| 25 | 25 | $this->config['connection_method'] = $this->_dbconnectionmethod = (isset($GLOBALS['database_connection_method']) ? $GLOBALS['database_connection_method'] : $connection_method); |
| 26 | - $this->config['table_prefix'] = ($pre !== NULL) ? $pre : $GLOBALS['table_prefix']; |
|
| 26 | + $this->config['table_prefix'] = ($pre !== null) ? $pre : $GLOBALS['table_prefix']; |
|
| 27 | 27 | $this->initDataTypes(); |
| 28 | 28 | } |
| 29 | 29 | |
@@ -236,9 +236,9 @@ discard block |
||
| 236 | 236 | $where = trim($where); |
| 237 | 237 | $orderby = trim($orderby); |
| 238 | 238 | $limit = trim($limit); |
| 239 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 239 | + if($where!=='' && stripos($where, 'WHERE')!==0) $where = "where {$where}"; |
|
| 240 | 240 | if($orderby!=='' && stripos($orderby, 'ORDER BY')!==0) $orderby = "ORDER BY {$orderby}"; |
| 241 | - if($limit!=='' && stripos($limit, 'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
| 241 | + if($limit!=='' && stripos($limit, 'LIMIT')!==0) $limit = "limit {$limit}"; |
|
| 242 | 242 | return $this->query("DELETE FROM {$from} {$where} {$orderby} {$limit}"); |
| 243 | 243 | } |
| 244 | 244 | } |
@@ -264,10 +264,10 @@ discard block |
||
| 264 | 264 | $where = trim($where); |
| 265 | 265 | $orderby = trim($orderby); |
| 266 | 266 | $limit = trim($limit); |
| 267 | - if($where!=='' && stripos($where,'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 267 | + if($where!=='' && stripos($where,'WHERE')!==0) $where = "where {$where}"; |
|
| 268 | 268 | if($orderby!=='' && stripos($orderby,'ORDER')!==0) $orderby = "ORDER BY {$orderby}"; |
| 269 | - if($limit!=='' && stripos($limit,'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
| 270 | - return $this->query("SELECT {$fields} FROM {$from} {$where} {$orderby} {$limit}"); |
|
| 269 | + if($limit!=='' && stripos($limit,'LIMIT')!==0) $limit = "limit {$limit}"; |
|
| 270 | + return $this->query("select {$fields} FROM {$from} {$where} {$orderby} {$limit}"); |
|
| 271 | 271 | } |
| 272 | 272 | |
| 273 | 273 | /** |
@@ -292,8 +292,8 @@ discard block |
||
| 292 | 292 | $fields = implode(",", $fields); |
| 293 | 293 | } |
| 294 | 294 | $where = trim($where); |
| 295 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 296 | - return $this->query("UPDATE {$table} SET {$fields} {$where}"); |
|
| 295 | + if($where!=='' && stripos($where, 'WHERE')!==0) $where = "where {$where}"; |
|
| 296 | + return $this->query("update {$table} SET {$fields} {$where}"); |
|
| 297 | 297 | } |
| 298 | 298 | } |
| 299 | 299 | |
@@ -319,8 +319,8 @@ discard block |
||
| 319 | 319 | $fields = "(".implode(",", array_keys($fields)).")"; |
| 320 | 320 | $where = trim($where); |
| 321 | 321 | $limit = trim($limit); |
| 322 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 323 | - if($limit!=='' && stripos($limit, 'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
| 322 | + if($where!=='' && stripos($where, 'WHERE')!==0) $where = "where {$where}"; |
|
| 323 | + if($limit!=='' && stripos($limit, 'LIMIT')!==0) $limit = "limit {$limit}"; |
|
| 324 | 324 | $rt = $this->query("INSERT INTO {$intotable} {$fields} SELECT {$fromfields} FROM {$fromtable} {$where} {$limit}"); |
| 325 | 325 | } else { |
| 326 | 326 | $ds = $this->select($fromfields, $fromtable, $where, '', $limit); |
@@ -391,7 +391,7 @@ discard block |
||
| 391 | 391 | * @name: getInsertId |
| 392 | 392 | * |
| 393 | 393 | */ |
| 394 | - function getInsertId($conn=NULL) { |
|
| 394 | + function getInsertId($conn=null) { |
|
| 395 | 395 | if( !is_resource($conn)) $conn =& $this->conn; |
| 396 | 396 | return mysql_insert_id($conn); |
| 397 | 397 | } |
@@ -400,7 +400,7 @@ discard block |
||
| 400 | 400 | * @name: getAffectedRows |
| 401 | 401 | * |
| 402 | 402 | */ |
| 403 | - function getAffectedRows($conn=NULL) { |
|
| 403 | + function getAffectedRows($conn=null) { |
|
| 404 | 404 | if (!is_resource($conn)) $conn =& $this->conn; |
| 405 | 405 | return mysql_affected_rows($conn); |
| 406 | 406 | } |
@@ -409,7 +409,7 @@ discard block |
||
| 409 | 409 | * @name: getLastError |
| 410 | 410 | * |
| 411 | 411 | */ |
| 412 | - function getLastError($conn=NULL) { |
|
| 412 | + function getLastError($conn=null) { |
|
| 413 | 413 | if (!is_resource($conn)) $conn =& $this->conn; |
| 414 | 414 | return mysql_error($conn); |
| 415 | 415 | } |
@@ -610,7 +610,7 @@ discard block |
||
| 610 | 610 | |
| 611 | 611 | function truncate($table_name) |
| 612 | 612 | { |
| 613 | - $rs = $this->query("TRUNCATE {$table_name}"); |
|
| 613 | + $rs = $this->query("truncate {$table_name}"); |
|
| 614 | 614 | return $rs; |
| 615 | 615 | } |
| 616 | 616 | |
@@ -375,6 +375,9 @@ discard block |
||
| 375 | 375 | return $rsArray; |
| 376 | 376 | } |
| 377 | 377 | |
| 378 | + /** |
|
| 379 | + * @return string |
|
| 380 | + */ |
|
| 378 | 381 | function getVersion() { |
| 379 | 382 | return $this->conn->server_info; |
| 380 | 383 | } |
@@ -410,6 +413,9 @@ discard block |
||
| 410 | 413 | return $result->data_seek($row_number); |
| 411 | 414 | } |
| 412 | 415 | |
| 416 | + /** |
|
| 417 | + * @return string |
|
| 418 | + */ |
|
| 413 | 419 | function _getFieldsStringFromArray($fields=array()) { |
| 414 | 420 | |
| 415 | 421 | if(empty($fields)) return '*'; |
@@ -422,6 +428,9 @@ discard block |
||
| 422 | 428 | return join(',', $_); |
| 423 | 429 | } |
| 424 | 430 | |
| 431 | + /** |
|
| 432 | + * @return string |
|
| 433 | + */ |
|
| 425 | 434 | function _getFromStringFromArray($tables=array()) { |
| 426 | 435 | $_ = array(); |
| 427 | 436 | foreach($tables as $k=>$v) { |
@@ -1,104 +1,104 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | class DBAPI { |
| 3 | - var $conn; |
|
| 4 | - var $config; |
|
| 5 | - var $lastQuery; |
|
| 6 | - var $isConnected; |
|
| 3 | + var $conn; |
|
| 4 | + var $config; |
|
| 5 | + var $lastQuery; |
|
| 6 | + var $isConnected; |
|
| 7 | 7 | |
| 8 | - function __construct($host='', $dbase='', $uid='', $pwd='', $pre=NULL, $charset='', $connection_method='SET CHARACTER SET') { |
|
| 9 | - $this->config['host'] = $host ? $host : $GLOBALS['database_server']; |
|
| 10 | - $this->config['dbase'] = $dbase ? $dbase : $GLOBALS['dbase']; |
|
| 11 | - $this->config['user'] = $uid ? $uid : $GLOBALS['database_user']; |
|
| 12 | - $this->config['pass'] = $pwd ? $pwd : $GLOBALS['database_password']; |
|
| 13 | - $this->config['charset'] = $charset ? $charset : $GLOBALS['database_connection_charset']; |
|
| 14 | - $this->config['connection_method'] = $this->_dbconnectionmethod = (isset($GLOBALS['database_connection_method']) ? $GLOBALS['database_connection_method'] : $connection_method); |
|
| 15 | - $this->config['table_prefix'] = ($pre !== NULL) ? $pre : $GLOBALS['table_prefix']; |
|
| 16 | - } |
|
| 8 | + function __construct($host='', $dbase='', $uid='', $pwd='', $pre=NULL, $charset='', $connection_method='SET CHARACTER SET') { |
|
| 9 | + $this->config['host'] = $host ? $host : $GLOBALS['database_server']; |
|
| 10 | + $this->config['dbase'] = $dbase ? $dbase : $GLOBALS['dbase']; |
|
| 11 | + $this->config['user'] = $uid ? $uid : $GLOBALS['database_user']; |
|
| 12 | + $this->config['pass'] = $pwd ? $pwd : $GLOBALS['database_password']; |
|
| 13 | + $this->config['charset'] = $charset ? $charset : $GLOBALS['database_connection_charset']; |
|
| 14 | + $this->config['connection_method'] = $this->_dbconnectionmethod = (isset($GLOBALS['database_connection_method']) ? $GLOBALS['database_connection_method'] : $connection_method); |
|
| 15 | + $this->config['table_prefix'] = ($pre !== NULL) ? $pre : $GLOBALS['table_prefix']; |
|
| 16 | + } |
|
| 17 | 17 | |
| 18 | - function connect($host = '', $dbase = '', $uid = '', $pwd = '', $tmp = 0) { |
|
| 19 | - global $modx; |
|
| 20 | - $uid = $uid ? $uid : $this->config['user']; |
|
| 21 | - $pwd = $pwd ? $pwd : $this->config['pass']; |
|
| 22 | - $host = $host ? $host : $this->config['host']; |
|
| 23 | - $dbase = $dbase ? $dbase : $this->config['dbase']; |
|
| 24 | - $dbase = trim($dbase, '`'); // remove the `` chars |
|
| 25 | - $charset = $this->config['charset']; |
|
| 26 | - $connection_method = $this->config['connection_method']; |
|
| 27 | - $tstart = $modx->getMicroTime(); |
|
| 28 | - $safe_count = 0; |
|
| 29 | - do { |
|
| 30 | - $this->conn = new mysqli($host, $uid, $pwd, $dbase); |
|
| 31 | - if ($this->conn->connect_error) { |
|
| 32 | - $this->conn = null; |
|
| 33 | - if (isset($modx->config['send_errormail']) && $modx->config['send_errormail'] !== '0') { |
|
| 34 | - if ($modx->config['send_errormail'] <= 2) { |
|
| 35 | - $logtitle = 'Failed to create the database connection!'; |
|
| 36 | - $request_uri = $modx->htmlspecialchars($_SERVER['REQUEST_URI']); |
|
| 37 | - $ua = $modx->htmlspecialchars($_SERVER['HTTP_USER_AGENT']); |
|
| 38 | - $referer = $modx->htmlspecialchars($_SERVER['HTTP_REFERER']); |
|
| 39 | - $modx->sendmail(array( |
|
| 40 | - 'subject' => 'Missing to create the database connection! from ' . $modx->config['site_name'], |
|
| 41 | - 'body' => "{$logtitle}\n{$request_uri}\n{$ua}\n{$referer}", |
|
| 42 | - 'type' => 'text' |
|
| 43 | - )); |
|
| 44 | - } |
|
| 45 | - } |
|
| 46 | - sleep(1); |
|
| 47 | - $safe_count++; |
|
| 48 | - } |
|
| 49 | - } while (!$this->conn && $safe_count<3); |
|
| 50 | - if (!$this->conn) { |
|
| 51 | - $modx->messageQuit("Failed to create the database connection!"); |
|
| 52 | - exit; |
|
| 53 | - } else { |
|
| 54 | - $this->conn->query("{$connection_method} {$charset}"); |
|
| 55 | - $tend = $modx->getMicroTime(); |
|
| 56 | - $totaltime = $tend - $tstart; |
|
| 57 | - if ($modx->dumpSQL) { |
|
| 58 | - $modx->queryCode .= "<fieldset style='text-align:left'><legend>Database connection</legend>" . sprintf("Database connection was created in %2.4f s", $totaltime) . "</fieldset><br />"; |
|
| 59 | - } |
|
| 60 | - $this->conn->set_charset($this->config['charset']); |
|
| 61 | - $this->isConnected = true; |
|
| 62 | - $modx->queryTime += $totaltime; |
|
| 63 | - } |
|
| 64 | - } |
|
| 18 | + function connect($host = '', $dbase = '', $uid = '', $pwd = '', $tmp = 0) { |
|
| 19 | + global $modx; |
|
| 20 | + $uid = $uid ? $uid : $this->config['user']; |
|
| 21 | + $pwd = $pwd ? $pwd : $this->config['pass']; |
|
| 22 | + $host = $host ? $host : $this->config['host']; |
|
| 23 | + $dbase = $dbase ? $dbase : $this->config['dbase']; |
|
| 24 | + $dbase = trim($dbase, '`'); // remove the `` chars |
|
| 25 | + $charset = $this->config['charset']; |
|
| 26 | + $connection_method = $this->config['connection_method']; |
|
| 27 | + $tstart = $modx->getMicroTime(); |
|
| 28 | + $safe_count = 0; |
|
| 29 | + do { |
|
| 30 | + $this->conn = new mysqli($host, $uid, $pwd, $dbase); |
|
| 31 | + if ($this->conn->connect_error) { |
|
| 32 | + $this->conn = null; |
|
| 33 | + if (isset($modx->config['send_errormail']) && $modx->config['send_errormail'] !== '0') { |
|
| 34 | + if ($modx->config['send_errormail'] <= 2) { |
|
| 35 | + $logtitle = 'Failed to create the database connection!'; |
|
| 36 | + $request_uri = $modx->htmlspecialchars($_SERVER['REQUEST_URI']); |
|
| 37 | + $ua = $modx->htmlspecialchars($_SERVER['HTTP_USER_AGENT']); |
|
| 38 | + $referer = $modx->htmlspecialchars($_SERVER['HTTP_REFERER']); |
|
| 39 | + $modx->sendmail(array( |
|
| 40 | + 'subject' => 'Missing to create the database connection! from ' . $modx->config['site_name'], |
|
| 41 | + 'body' => "{$logtitle}\n{$request_uri}\n{$ua}\n{$referer}", |
|
| 42 | + 'type' => 'text' |
|
| 43 | + )); |
|
| 44 | + } |
|
| 45 | + } |
|
| 46 | + sleep(1); |
|
| 47 | + $safe_count++; |
|
| 48 | + } |
|
| 49 | + } while (!$this->conn && $safe_count<3); |
|
| 50 | + if (!$this->conn) { |
|
| 51 | + $modx->messageQuit("Failed to create the database connection!"); |
|
| 52 | + exit; |
|
| 53 | + } else { |
|
| 54 | + $this->conn->query("{$connection_method} {$charset}"); |
|
| 55 | + $tend = $modx->getMicroTime(); |
|
| 56 | + $totaltime = $tend - $tstart; |
|
| 57 | + if ($modx->dumpSQL) { |
|
| 58 | + $modx->queryCode .= "<fieldset style='text-align:left'><legend>Database connection</legend>" . sprintf("Database connection was created in %2.4f s", $totaltime) . "</fieldset><br />"; |
|
| 59 | + } |
|
| 60 | + $this->conn->set_charset($this->config['charset']); |
|
| 61 | + $this->isConnected = true; |
|
| 62 | + $modx->queryTime += $totaltime; |
|
| 63 | + } |
|
| 64 | + } |
|
| 65 | 65 | |
| 66 | - function disconnect() { |
|
| 67 | - $this->conn->close(); |
|
| 68 | - $this->conn = null; |
|
| 69 | - $this->isConnected = false; |
|
| 70 | - } |
|
| 66 | + function disconnect() { |
|
| 67 | + $this->conn->close(); |
|
| 68 | + $this->conn = null; |
|
| 69 | + $this->isConnected = false; |
|
| 70 | + } |
|
| 71 | 71 | |
| 72 | - function escape($s, $safecount=0) { |
|
| 73 | - $safecount++; |
|
| 74 | - if (1000<$safecount) exit("Too many loops '{$safecount}'"); |
|
| 75 | - if (empty ($this->conn) || !is_object($this->conn)) { |
|
| 76 | - $this->connect(); |
|
| 77 | - } |
|
| 78 | - if (is_array($s)) { |
|
| 79 | - if (count($s) === 0) { |
|
| 80 | - $s = ''; |
|
| 81 | - } else { |
|
| 82 | - foreach ($s as $i=>$v) { |
|
| 83 | - $s[$i] = $this->escape($v, $safecount); |
|
| 84 | - } |
|
| 85 | - } |
|
| 86 | - } else { |
|
| 87 | - $s = $this->conn->escape_string($s); |
|
| 88 | - } |
|
| 89 | - return $s; |
|
| 90 | - } |
|
| 72 | + function escape($s, $safecount=0) { |
|
| 73 | + $safecount++; |
|
| 74 | + if (1000<$safecount) exit("Too many loops '{$safecount}'"); |
|
| 75 | + if (empty ($this->conn) || !is_object($this->conn)) { |
|
| 76 | + $this->connect(); |
|
| 77 | + } |
|
| 78 | + if (is_array($s)) { |
|
| 79 | + if (count($s) === 0) { |
|
| 80 | + $s = ''; |
|
| 81 | + } else { |
|
| 82 | + foreach ($s as $i=>$v) { |
|
| 83 | + $s[$i] = $this->escape($v, $safecount); |
|
| 84 | + } |
|
| 85 | + } |
|
| 86 | + } else { |
|
| 87 | + $s = $this->conn->escape_string($s); |
|
| 88 | + } |
|
| 89 | + return $s; |
|
| 90 | + } |
|
| 91 | 91 | |
| 92 | - function query($sql,$watchError=true) { |
|
| 93 | - global $modx; |
|
| 94 | - if (empty ($this->conn) || !is_object($this->conn)) { |
|
| 95 | - $this->connect(); |
|
| 96 | - } |
|
| 97 | - $tstart = $modx->getMicroTime(); |
|
| 98 | - if(is_array($sql)) $sql = join("\n", $sql); |
|
| 99 | - $this->lastQuery = $sql; |
|
| 100 | - if (!($result = $this->conn->query($sql))) { |
|
| 101 | - if(!$watchError) return; |
|
| 92 | + function query($sql,$watchError=true) { |
|
| 93 | + global $modx; |
|
| 94 | + if (empty ($this->conn) || !is_object($this->conn)) { |
|
| 95 | + $this->connect(); |
|
| 96 | + } |
|
| 97 | + $tstart = $modx->getMicroTime(); |
|
| 98 | + if(is_array($sql)) $sql = join("\n", $sql); |
|
| 99 | + $this->lastQuery = $sql; |
|
| 100 | + if (!($result = $this->conn->query($sql))) { |
|
| 101 | + if(!$watchError) return; |
|
| 102 | 102 | switch(mysqli_errno($this->conn)) { |
| 103 | 103 | case 1054: |
| 104 | 104 | case 1060: |
@@ -109,119 +109,119 @@ discard block |
||
| 109 | 109 | default: |
| 110 | 110 | $modx->messageQuit('Execution of a query to the database failed - ' . $this->getLastError(), $sql); |
| 111 | 111 | } |
| 112 | - } else { |
|
| 113 | - $tend = $modx->getMicroTime(); |
|
| 114 | - $totaltime = $tend - $tstart; |
|
| 115 | - $modx->queryTime = $modx->queryTime + $totaltime; |
|
| 116 | - if ($modx->dumpSQL) { |
|
| 117 | - $debug = debug_backtrace(); |
|
| 118 | - array_shift($debug); |
|
| 119 | - $debug_path = array(); |
|
| 120 | - foreach ($debug as $line) $debug_path[] = $line['function']; |
|
| 121 | - $debug_path = implode(' > ', array_reverse($debug_path)); |
|
| 122 | - $modx->queryCode .= "<fieldset style='text-align:left'><legend>Query " . ($modx->executedQueries + 1) . " - " . sprintf("%2.2f ms", $totaltime*1000) . "</legend>"; |
|
| 123 | - $modx->queryCode .= $sql . '<br><br>'; |
|
| 124 | - if ($modx->event->name) $modx->queryCode .= 'Current Event => ' . $modx->event->name . '<br>'; |
|
| 125 | - if ($modx->event->activePlugin) $modx->queryCode .= 'Current Plugin => ' . $modx->event->activePlugin . '<br>'; |
|
| 126 | - if ($modx->currentSnippet) $modx->queryCode .= 'Current Snippet => ' . $modx->currentSnippet . '<br>'; |
|
| 127 | - if (stripos($sql, 'select')===0) $modx->queryCode .= 'Record Count => ' . $this->getRecordCount($result) . '<br>'; |
|
| 128 | - else $modx->queryCode .= 'Affected Rows => ' . $this->getAffectedRows() . '<br>'; |
|
| 129 | - $modx->queryCode .= 'Functions Path => ' . $debug_path . '<br>'; |
|
| 130 | - $modx->queryCode .= "</fieldset><br />"; |
|
| 131 | - } |
|
| 132 | - $modx->executedQueries = $modx->executedQueries + 1; |
|
| 133 | - return $result; |
|
| 134 | - } |
|
| 135 | - } |
|
| 112 | + } else { |
|
| 113 | + $tend = $modx->getMicroTime(); |
|
| 114 | + $totaltime = $tend - $tstart; |
|
| 115 | + $modx->queryTime = $modx->queryTime + $totaltime; |
|
| 116 | + if ($modx->dumpSQL) { |
|
| 117 | + $debug = debug_backtrace(); |
|
| 118 | + array_shift($debug); |
|
| 119 | + $debug_path = array(); |
|
| 120 | + foreach ($debug as $line) $debug_path[] = $line['function']; |
|
| 121 | + $debug_path = implode(' > ', array_reverse($debug_path)); |
|
| 122 | + $modx->queryCode .= "<fieldset style='text-align:left'><legend>Query " . ($modx->executedQueries + 1) . " - " . sprintf("%2.2f ms", $totaltime*1000) . "</legend>"; |
|
| 123 | + $modx->queryCode .= $sql . '<br><br>'; |
|
| 124 | + if ($modx->event->name) $modx->queryCode .= 'Current Event => ' . $modx->event->name . '<br>'; |
|
| 125 | + if ($modx->event->activePlugin) $modx->queryCode .= 'Current Plugin => ' . $modx->event->activePlugin . '<br>'; |
|
| 126 | + if ($modx->currentSnippet) $modx->queryCode .= 'Current Snippet => ' . $modx->currentSnippet . '<br>'; |
|
| 127 | + if (stripos($sql, 'select')===0) $modx->queryCode .= 'Record Count => ' . $this->getRecordCount($result) . '<br>'; |
|
| 128 | + else $modx->queryCode .= 'Affected Rows => ' . $this->getAffectedRows() . '<br>'; |
|
| 129 | + $modx->queryCode .= 'Functions Path => ' . $debug_path . '<br>'; |
|
| 130 | + $modx->queryCode .= "</fieldset><br />"; |
|
| 131 | + } |
|
| 132 | + $modx->executedQueries = $modx->executedQueries + 1; |
|
| 133 | + return $result; |
|
| 134 | + } |
|
| 135 | + } |
|
| 136 | 136 | |
| 137 | - function delete($from, $where='', $orderby='', $limit = '') { |
|
| 138 | - global $modx; |
|
| 139 | - if (!$from) { |
|
| 140 | - $modx->messageQuit("Empty \$from parameters in DBAPI::delete()."); |
|
| 141 | - } else { |
|
| 142 | - $from = $this->replaceFullTableName($from); |
|
| 143 | - $where = trim($where); |
|
| 144 | - $orderby = trim($orderby); |
|
| 145 | - $limit = trim($limit); |
|
| 146 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 147 | - if($orderby!== '' && stripos($orderby,'ORDER BY')!==0) $orderby = "ORDER BY {$orderby}"; |
|
| 148 | - if($limit!== '' && stripos($limit, 'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
| 149 | - return $this->query("DELETE FROM {$from} {$where} {$orderby} {$limit}"); |
|
| 150 | - } |
|
| 151 | - } |
|
| 137 | + function delete($from, $where='', $orderby='', $limit = '') { |
|
| 138 | + global $modx; |
|
| 139 | + if (!$from) { |
|
| 140 | + $modx->messageQuit("Empty \$from parameters in DBAPI::delete()."); |
|
| 141 | + } else { |
|
| 142 | + $from = $this->replaceFullTableName($from); |
|
| 143 | + $where = trim($where); |
|
| 144 | + $orderby = trim($orderby); |
|
| 145 | + $limit = trim($limit); |
|
| 146 | + if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 147 | + if($orderby!== '' && stripos($orderby,'ORDER BY')!==0) $orderby = "ORDER BY {$orderby}"; |
|
| 148 | + if($limit!== '' && stripos($limit, 'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
| 149 | + return $this->query("DELETE FROM {$from} {$where} {$orderby} {$limit}"); |
|
| 150 | + } |
|
| 151 | + } |
|
| 152 | 152 | |
| 153 | - function select($fields = "*", $from = "", $where = "", $orderby = "", $limit = "") { |
|
| 154 | - global $modx; |
|
| 153 | + function select($fields = "*", $from = "", $where = "", $orderby = "", $limit = "") { |
|
| 154 | + global $modx; |
|
| 155 | 155 | |
| 156 | - if(is_array($fields)) $fields = $this->_getFieldsStringFromArray($fields); |
|
| 157 | - if(is_array($from)) $from = $this->_getFromStringFromArray($from); |
|
| 158 | - if(is_array($where)) $where = join(' ', $where); |
|
| 156 | + if(is_array($fields)) $fields = $this->_getFieldsStringFromArray($fields); |
|
| 157 | + if(is_array($from)) $from = $this->_getFromStringFromArray($from); |
|
| 158 | + if(is_array($where)) $where = join(' ', $where); |
|
| 159 | 159 | |
| 160 | - if (!$from) { |
|
| 161 | - $modx->messageQuit("Empty \$from parameters in DBAPI::select()."); |
|
| 162 | - exit; |
|
| 163 | - } |
|
| 160 | + if (!$from) { |
|
| 161 | + $modx->messageQuit("Empty \$from parameters in DBAPI::select()."); |
|
| 162 | + exit; |
|
| 163 | + } |
|
| 164 | 164 | |
| 165 | - $fields = $this->replaceFullTableName($fields); |
|
| 166 | - $from = $this->replaceFullTableName($from); |
|
| 165 | + $fields = $this->replaceFullTableName($fields); |
|
| 166 | + $from = $this->replaceFullTableName($from); |
|
| 167 | 167 | $where = trim($where); |
| 168 | 168 | $orderby = trim($orderby); |
| 169 | 169 | $limit = trim($limit); |
| 170 | 170 | if($where!=='' && stripos($where,'WHERE')!==0) $where = "WHERE {$where}"; |
| 171 | 171 | if($orderby!=='' && stripos($orderby,'ORDER')!==0) $orderby = "ORDER BY {$orderby}"; |
| 172 | 172 | if($limit!=='' && stripos($limit,'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
| 173 | - return $this->query("SELECT {$fields} FROM {$from} {$where} {$orderby} {$limit}"); |
|
| 174 | - } |
|
| 173 | + return $this->query("SELECT {$fields} FROM {$from} {$where} {$orderby} {$limit}"); |
|
| 174 | + } |
|
| 175 | 175 | |
| 176 | - function update($fields, $table, $where = "") { |
|
| 177 | - global $modx; |
|
| 178 | - if (!$table) { |
|
| 179 | - $modx->messageQuit("Empty \$table parameter in DBAPI::update()."); |
|
| 180 | - } else { |
|
| 181 | - $table = $this->replaceFullTableName($table); |
|
| 182 | - if (is_array($fields)) { |
|
| 183 | - foreach ($fields as $key => $value) { |
|
| 184 | - if(is_null($value) || strtolower($value) === 'null'){ |
|
| 185 | - $flds = 'NULL'; |
|
| 186 | - }else{ |
|
| 187 | - $flds = "'" . $value . "'"; |
|
| 188 | - } |
|
| 189 | - $fields[$key] = "`{$key}` = ".$flds; |
|
| 190 | - } |
|
| 191 | - $fields = implode(",", $fields); |
|
| 192 | - } |
|
| 193 | - $where = trim($where); |
|
| 194 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 195 | - return $this->query("UPDATE {$table} SET {$fields} {$where}"); |
|
| 196 | - } |
|
| 197 | - } |
|
| 176 | + function update($fields, $table, $where = "") { |
|
| 177 | + global $modx; |
|
| 178 | + if (!$table) { |
|
| 179 | + $modx->messageQuit("Empty \$table parameter in DBAPI::update()."); |
|
| 180 | + } else { |
|
| 181 | + $table = $this->replaceFullTableName($table); |
|
| 182 | + if (is_array($fields)) { |
|
| 183 | + foreach ($fields as $key => $value) { |
|
| 184 | + if(is_null($value) || strtolower($value) === 'null'){ |
|
| 185 | + $flds = 'NULL'; |
|
| 186 | + }else{ |
|
| 187 | + $flds = "'" . $value . "'"; |
|
| 188 | + } |
|
| 189 | + $fields[$key] = "`{$key}` = ".$flds; |
|
| 190 | + } |
|
| 191 | + $fields = implode(",", $fields); |
|
| 192 | + } |
|
| 193 | + $where = trim($where); |
|
| 194 | + if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 195 | + return $this->query("UPDATE {$table} SET {$fields} {$where}"); |
|
| 196 | + } |
|
| 197 | + } |
|
| 198 | 198 | |
| 199 | - function insert($fields, $intotable, $fromfields = "*", $fromtable = "", $where = "", $limit = "") { |
|
| 200 | - global $modx; |
|
| 201 | - if (!$intotable) { |
|
| 202 | - $modx->messageQuit("Empty \$intotable parameters in DBAPI::insert()."); |
|
| 203 | - } else { |
|
| 204 | - $intotable = $this->replaceFullTableName($intotable); |
|
| 205 | - if (!is_array($fields)) { |
|
| 206 | - $this->query("INSERT INTO {$intotable} {$fields}"); |
|
| 207 | - } else { |
|
| 208 | - if (empty($fromtable)) { |
|
| 209 | - $fields = "(`".implode("`, `", array_keys($fields))."`) VALUES('".implode("', '", array_values($fields))."')"; |
|
| 210 | - $rt = $this->query("INSERT INTO {$intotable} {$fields}"); |
|
| 211 | - } else { |
|
| 212 | - $fromtable = $this->replaceFullTableName($fromtable); |
|
| 213 | - $fields = "(".implode(",", array_keys($fields)).")"; |
|
| 214 | - $where = trim($where); |
|
| 215 | - $limit = trim($limit); |
|
| 216 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 217 | - if($limit!=='' && stripos($limit, 'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
| 218 | - $rt = $this->query("INSERT INTO {$intotable} {$fields} SELECT {$fromfields} FROM {$fromtable} {$where} {$limit}"); |
|
| 219 | - } |
|
| 220 | - } |
|
| 221 | - if (($lid = $this->getInsertId())===false) $modx->messageQuit("Couldn't get last insert key!"); |
|
| 222 | - return $lid; |
|
| 223 | - } |
|
| 224 | - } |
|
| 199 | + function insert($fields, $intotable, $fromfields = "*", $fromtable = "", $where = "", $limit = "") { |
|
| 200 | + global $modx; |
|
| 201 | + if (!$intotable) { |
|
| 202 | + $modx->messageQuit("Empty \$intotable parameters in DBAPI::insert()."); |
|
| 203 | + } else { |
|
| 204 | + $intotable = $this->replaceFullTableName($intotable); |
|
| 205 | + if (!is_array($fields)) { |
|
| 206 | + $this->query("INSERT INTO {$intotable} {$fields}"); |
|
| 207 | + } else { |
|
| 208 | + if (empty($fromtable)) { |
|
| 209 | + $fields = "(`".implode("`, `", array_keys($fields))."`) VALUES('".implode("', '", array_values($fields))."')"; |
|
| 210 | + $rt = $this->query("INSERT INTO {$intotable} {$fields}"); |
|
| 211 | + } else { |
|
| 212 | + $fromtable = $this->replaceFullTableName($fromtable); |
|
| 213 | + $fields = "(".implode(",", array_keys($fields)).")"; |
|
| 214 | + $where = trim($where); |
|
| 215 | + $limit = trim($limit); |
|
| 216 | + if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 217 | + if($limit!=='' && stripos($limit, 'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
| 218 | + $rt = $this->query("INSERT INTO {$intotable} {$fields} SELECT {$fromfields} FROM {$fromtable} {$where} {$limit}"); |
|
| 219 | + } |
|
| 220 | + } |
|
| 221 | + if (($lid = $this->getInsertId())===false) $modx->messageQuit("Couldn't get last insert key!"); |
|
| 222 | + return $lid; |
|
| 223 | + } |
|
| 224 | + } |
|
| 225 | 225 | |
| 226 | 226 | function save($fields, $table, $where='') { // This is similar to "replace into table". |
| 227 | 227 | |
@@ -233,182 +233,182 @@ discard block |
||
| 233 | 233 | else return $this->update($fields, $table, $where); |
| 234 | 234 | } |
| 235 | 235 | |
| 236 | - function isResult($rs) { |
|
| 237 | - return is_object($rs); |
|
| 238 | - } |
|
| 236 | + function isResult($rs) { |
|
| 237 | + return is_object($rs); |
|
| 238 | + } |
|
| 239 | 239 | |
| 240 | - function freeResult($rs) { |
|
| 241 | - $rs->free_result(); |
|
| 242 | - } |
|
| 240 | + function freeResult($rs) { |
|
| 241 | + $rs->free_result(); |
|
| 242 | + } |
|
| 243 | 243 | |
| 244 | - function numFields($rs) { |
|
| 245 | - return $rs->field_count; |
|
| 246 | - } |
|
| 244 | + function numFields($rs) { |
|
| 245 | + return $rs->field_count; |
|
| 246 | + } |
|
| 247 | 247 | |
| 248 | - function fieldName($rs,$col=0) { |
|
| 249 | - $field = $rs->fetch_field_direct($col); |
|
| 250 | - return $field->name; |
|
| 251 | - } |
|
| 248 | + function fieldName($rs,$col=0) { |
|
| 249 | + $field = $rs->fetch_field_direct($col); |
|
| 250 | + return $field->name; |
|
| 251 | + } |
|
| 252 | 252 | |
| 253 | - function selectDb($name) { |
|
| 254 | - $this->conn->select_db($name); |
|
| 255 | - } |
|
| 253 | + function selectDb($name) { |
|
| 254 | + $this->conn->select_db($name); |
|
| 255 | + } |
|
| 256 | 256 | |
| 257 | 257 | |
| 258 | - function getInsertId($conn=NULL) { |
|
| 259 | - if (!is_object($conn)) $conn =& $this->conn; |
|
| 260 | - return $conn->insert_id; |
|
| 261 | - } |
|
| 258 | + function getInsertId($conn=NULL) { |
|
| 259 | + if (!is_object($conn)) $conn =& $this->conn; |
|
| 260 | + return $conn->insert_id; |
|
| 261 | + } |
|
| 262 | 262 | |
| 263 | - function getAffectedRows($conn=NULL) { |
|
| 264 | - if (!is_object($conn)) $conn =& $this->conn; |
|
| 265 | - return $conn->affected_rows; |
|
| 266 | - } |
|
| 263 | + function getAffectedRows($conn=NULL) { |
|
| 264 | + if (!is_object($conn)) $conn =& $this->conn; |
|
| 265 | + return $conn->affected_rows; |
|
| 266 | + } |
|
| 267 | 267 | |
| 268 | - function getLastError($conn=NULL) { |
|
| 269 | - if (!is_object($conn)) $conn =& $this->conn; |
|
| 270 | - return $conn->error; |
|
| 271 | - } |
|
| 268 | + function getLastError($conn=NULL) { |
|
| 269 | + if (!is_object($conn)) $conn =& $this->conn; |
|
| 270 | + return $conn->error; |
|
| 271 | + } |
|
| 272 | 272 | |
| 273 | - function getRecordCount($ds) { |
|
| 274 | - return (is_object($ds)) ? $ds->num_rows : 0; |
|
| 275 | - } |
|
| 273 | + function getRecordCount($ds) { |
|
| 274 | + return (is_object($ds)) ? $ds->num_rows : 0; |
|
| 275 | + } |
|
| 276 | 276 | |
| 277 | - function getRow($ds, $mode = 'assoc') { |
|
| 278 | - if (is_object($ds)) { |
|
| 279 | - if ($mode == 'assoc') { |
|
| 280 | - return $ds->fetch_assoc(); |
|
| 281 | - } elseif ($mode == 'num') { |
|
| 282 | - return $ds->fetch_row(); |
|
| 283 | - } elseif ($mode == 'object') { |
|
| 284 | - return $ds->fetch_object(); |
|
| 285 | - } elseif ($mode == 'both') { |
|
| 286 | - return $ds->fetch_array(MYSQLI_BOTH); |
|
| 287 | - } else { |
|
| 288 | - global $modx; |
|
| 289 | - $modx->messageQuit("Unknown get type ($mode) specified for fetchRow - must be empty, 'assoc', 'num' or 'both'."); |
|
| 290 | - } |
|
| 291 | - } |
|
| 292 | - } |
|
| 277 | + function getRow($ds, $mode = 'assoc') { |
|
| 278 | + if (is_object($ds)) { |
|
| 279 | + if ($mode == 'assoc') { |
|
| 280 | + return $ds->fetch_assoc(); |
|
| 281 | + } elseif ($mode == 'num') { |
|
| 282 | + return $ds->fetch_row(); |
|
| 283 | + } elseif ($mode == 'object') { |
|
| 284 | + return $ds->fetch_object(); |
|
| 285 | + } elseif ($mode == 'both') { |
|
| 286 | + return $ds->fetch_array(MYSQLI_BOTH); |
|
| 287 | + } else { |
|
| 288 | + global $modx; |
|
| 289 | + $modx->messageQuit("Unknown get type ($mode) specified for fetchRow - must be empty, 'assoc', 'num' or 'both'."); |
|
| 290 | + } |
|
| 291 | + } |
|
| 292 | + } |
|
| 293 | 293 | |
| 294 | - function getColumn($name, $dsq) { |
|
| 295 | - if (!is_object($dsq)) { |
|
| 296 | - $dsq = $this->query($dsq); |
|
| 297 | - } |
|
| 298 | - if ($dsq) { |
|
| 299 | - $col = array (); |
|
| 300 | - while ($row = $this->getRow($dsq)) { |
|
| 301 | - $col[] = $row[$name]; |
|
| 302 | - } |
|
| 303 | - return $col; |
|
| 304 | - } |
|
| 305 | - } |
|
| 294 | + function getColumn($name, $dsq) { |
|
| 295 | + if (!is_object($dsq)) { |
|
| 296 | + $dsq = $this->query($dsq); |
|
| 297 | + } |
|
| 298 | + if ($dsq) { |
|
| 299 | + $col = array (); |
|
| 300 | + while ($row = $this->getRow($dsq)) { |
|
| 301 | + $col[] = $row[$name]; |
|
| 302 | + } |
|
| 303 | + return $col; |
|
| 304 | + } |
|
| 305 | + } |
|
| 306 | 306 | |
| 307 | - function getColumnNames($dsq) { |
|
| 308 | - if (!is_object($dsq)) { |
|
| 309 | - $dsq = $this->query($dsq); |
|
| 310 | - } |
|
| 311 | - if ($dsq) { |
|
| 312 | - $names = array (); |
|
| 313 | - $limit = $this->numFields($dsq); |
|
| 314 | - for ($i = 0; $i < $limit; $i++) { |
|
| 315 | - $names[] = $this->fieldName($dsq, $i); |
|
| 316 | - } |
|
| 317 | - return $names; |
|
| 318 | - } |
|
| 319 | - } |
|
| 307 | + function getColumnNames($dsq) { |
|
| 308 | + if (!is_object($dsq)) { |
|
| 309 | + $dsq = $this->query($dsq); |
|
| 310 | + } |
|
| 311 | + if ($dsq) { |
|
| 312 | + $names = array (); |
|
| 313 | + $limit = $this->numFields($dsq); |
|
| 314 | + for ($i = 0; $i < $limit; $i++) { |
|
| 315 | + $names[] = $this->fieldName($dsq, $i); |
|
| 316 | + } |
|
| 317 | + return $names; |
|
| 318 | + } |
|
| 319 | + } |
|
| 320 | 320 | |
| 321 | - function getValue($dsq) { |
|
| 322 | - if (!is_object($dsq)) { |
|
| 323 | - $dsq = $this->query($dsq); |
|
| 324 | - } |
|
| 325 | - if ($dsq) { |
|
| 326 | - $r = $this->getRow($dsq, "num"); |
|
| 327 | - return $r[0]; |
|
| 328 | - } |
|
| 329 | - } |
|
| 321 | + function getValue($dsq) { |
|
| 322 | + if (!is_object($dsq)) { |
|
| 323 | + $dsq = $this->query($dsq); |
|
| 324 | + } |
|
| 325 | + if ($dsq) { |
|
| 326 | + $r = $this->getRow($dsq, "num"); |
|
| 327 | + return $r[0]; |
|
| 328 | + } |
|
| 329 | + } |
|
| 330 | 330 | |
| 331 | - function getTableMetaData($table) { |
|
| 332 | - $metadata = false; |
|
| 333 | - if (!empty ($table)) { |
|
| 334 | - $sql = "SHOW FIELDS FROM $table"; |
|
| 335 | - if ($ds = $this->query($sql)) { |
|
| 336 | - while ($row = $this->getRow($ds)) { |
|
| 337 | - $fieldName = $row['Field']; |
|
| 338 | - $metadata[$fieldName] = $row; |
|
| 339 | - } |
|
| 340 | - } |
|
| 341 | - } |
|
| 342 | - return $metadata; |
|
| 343 | - } |
|
| 331 | + function getTableMetaData($table) { |
|
| 332 | + $metadata = false; |
|
| 333 | + if (!empty ($table)) { |
|
| 334 | + $sql = "SHOW FIELDS FROM $table"; |
|
| 335 | + if ($ds = $this->query($sql)) { |
|
| 336 | + while ($row = $this->getRow($ds)) { |
|
| 337 | + $fieldName = $row['Field']; |
|
| 338 | + $metadata[$fieldName] = $row; |
|
| 339 | + } |
|
| 340 | + } |
|
| 341 | + } |
|
| 342 | + return $metadata; |
|
| 343 | + } |
|
| 344 | 344 | |
| 345 | - function prepareDate($timestamp, $fieldType = 'DATETIME') { |
|
| 346 | - $date = ''; |
|
| 347 | - if (!$timestamp === false && $timestamp > 0) { |
|
| 348 | - switch ($fieldType) { |
|
| 349 | - case 'DATE' : |
|
| 350 | - $date = date('Y-m-d', $timestamp); |
|
| 351 | - break; |
|
| 352 | - case 'TIME' : |
|
| 353 | - $date = date('H:i:s', $timestamp); |
|
| 354 | - break; |
|
| 355 | - case 'YEAR' : |
|
| 356 | - $date = date('Y', $timestamp); |
|
| 357 | - break; |
|
| 358 | - default : |
|
| 359 | - $date = date('Y-m-d H:i:s', $timestamp); |
|
| 360 | - break; |
|
| 361 | - } |
|
| 362 | - } |
|
| 363 | - return $date; |
|
| 364 | - } |
|
| 345 | + function prepareDate($timestamp, $fieldType = 'DATETIME') { |
|
| 346 | + $date = ''; |
|
| 347 | + if (!$timestamp === false && $timestamp > 0) { |
|
| 348 | + switch ($fieldType) { |
|
| 349 | + case 'DATE' : |
|
| 350 | + $date = date('Y-m-d', $timestamp); |
|
| 351 | + break; |
|
| 352 | + case 'TIME' : |
|
| 353 | + $date = date('H:i:s', $timestamp); |
|
| 354 | + break; |
|
| 355 | + case 'YEAR' : |
|
| 356 | + $date = date('Y', $timestamp); |
|
| 357 | + break; |
|
| 358 | + default : |
|
| 359 | + $date = date('Y-m-d H:i:s', $timestamp); |
|
| 360 | + break; |
|
| 361 | + } |
|
| 362 | + } |
|
| 363 | + return $date; |
|
| 364 | + } |
|
| 365 | 365 | |
| 366 | - function makeArray($rs='',$index=false){ |
|
| 367 | - if (!$rs) return false; |
|
| 368 | - $rsArray = array(); |
|
| 369 | - $iterator = 0; |
|
| 370 | - while ($row = $this->getRow($rs)) { |
|
| 371 | - $returnIndex = $index !== false && isset($row[$index]) ? $row[$index] : $iterator; |
|
| 372 | - $rsArray[$returnIndex] = $row; |
|
| 373 | - $iterator++; |
|
| 374 | - } |
|
| 375 | - return $rsArray; |
|
| 376 | - } |
|
| 366 | + function makeArray($rs='',$index=false){ |
|
| 367 | + if (!$rs) return false; |
|
| 368 | + $rsArray = array(); |
|
| 369 | + $iterator = 0; |
|
| 370 | + while ($row = $this->getRow($rs)) { |
|
| 371 | + $returnIndex = $index !== false && isset($row[$index]) ? $row[$index] : $iterator; |
|
| 372 | + $rsArray[$returnIndex] = $row; |
|
| 373 | + $iterator++; |
|
| 374 | + } |
|
| 375 | + return $rsArray; |
|
| 376 | + } |
|
| 377 | 377 | |
| 378 | - function getVersion() { |
|
| 379 | - return $this->conn->server_info; |
|
| 380 | - } |
|
| 378 | + function getVersion() { |
|
| 379 | + return $this->conn->server_info; |
|
| 380 | + } |
|
| 381 | 381 | |
| 382 | - function replaceFullTableName($str,$force=null) { |
|
| 383 | - $str = trim($str); |
|
| 384 | - $dbase = trim($this->config['dbase'],'`'); |
|
| 385 | - $prefix = $this->config['table_prefix']; |
|
| 386 | - if (!empty($force)) { |
|
| 387 | - $result = "`{$dbase}`.`{$prefix}{$str}`"; |
|
| 388 | - } elseif (strpos($str,'[+prefix+]')!==false) { |
|
| 389 | - $result = preg_replace('@\[\+prefix\+\]([0-9a-zA-Z_]+)@', "`{$dbase}`.`{$prefix}$1`", $str); |
|
| 390 | - } else { |
|
| 391 | - $result = $str; |
|
| 392 | - } |
|
| 393 | - return $result; |
|
| 394 | - } |
|
| 382 | + function replaceFullTableName($str,$force=null) { |
|
| 383 | + $str = trim($str); |
|
| 384 | + $dbase = trim($this->config['dbase'],'`'); |
|
| 385 | + $prefix = $this->config['table_prefix']; |
|
| 386 | + if (!empty($force)) { |
|
| 387 | + $result = "`{$dbase}`.`{$prefix}{$str}`"; |
|
| 388 | + } elseif (strpos($str,'[+prefix+]')!==false) { |
|
| 389 | + $result = preg_replace('@\[\+prefix\+\]([0-9a-zA-Z_]+)@', "`{$dbase}`.`{$prefix}$1`", $str); |
|
| 390 | + } else { |
|
| 391 | + $result = $str; |
|
| 392 | + } |
|
| 393 | + return $result; |
|
| 394 | + } |
|
| 395 | 395 | |
| 396 | - function optimize($table_name) { |
|
| 397 | - $rs = $this->query("OPTIMIZE TABLE {$table_name}"); |
|
| 398 | - if ($rs) { |
|
| 399 | - $rs = $this->query("ALTER TABLE {$table_name}"); |
|
| 400 | - } |
|
| 401 | - return $rs; |
|
| 402 | - } |
|
| 396 | + function optimize($table_name) { |
|
| 397 | + $rs = $this->query("OPTIMIZE TABLE {$table_name}"); |
|
| 398 | + if ($rs) { |
|
| 399 | + $rs = $this->query("ALTER TABLE {$table_name}"); |
|
| 400 | + } |
|
| 401 | + return $rs; |
|
| 402 | + } |
|
| 403 | 403 | |
| 404 | - function truncate($table_name) { |
|
| 405 | - $rs = $this->query("TRUNCATE {$table_name}"); |
|
| 406 | - return $rs; |
|
| 407 | - } |
|
| 404 | + function truncate($table_name) { |
|
| 405 | + $rs = $this->query("TRUNCATE {$table_name}"); |
|
| 406 | + return $rs; |
|
| 407 | + } |
|
| 408 | 408 | |
| 409 | - function dataSeek($result, $row_number) { |
|
| 410 | - return $result->data_seek($row_number); |
|
| 411 | - } |
|
| 409 | + function dataSeek($result, $row_number) { |
|
| 410 | + return $result->data_seek($row_number); |
|
| 411 | + } |
|
| 412 | 412 | |
| 413 | 413 | function _getFieldsStringFromArray($fields=array()) { |
| 414 | 414 | |
@@ -1,25 +1,25 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -class DBAPI { |
|
| 2 | +class DBAPI{ |
|
| 3 | 3 | var $conn; |
| 4 | 4 | var $config; |
| 5 | 5 | var $lastQuery; |
| 6 | 6 | var $isConnected; |
| 7 | 7 | |
| 8 | - function __construct($host='', $dbase='', $uid='', $pwd='', $pre=NULL, $charset='', $connection_method='SET CHARACTER SET') { |
|
| 8 | + function __construct($host = '', $dbase = '', $uid = '', $pwd = '', $pre = NULL, $charset = '', $connection_method = 'SET CHARACTER SET'){ |
|
| 9 | 9 | $this->config['host'] = $host ? $host : $GLOBALS['database_server']; |
| 10 | 10 | $this->config['dbase'] = $dbase ? $dbase : $GLOBALS['dbase']; |
| 11 | 11 | $this->config['user'] = $uid ? $uid : $GLOBALS['database_user']; |
| 12 | 12 | $this->config['pass'] = $pwd ? $pwd : $GLOBALS['database_password']; |
| 13 | 13 | $this->config['charset'] = $charset ? $charset : $GLOBALS['database_connection_charset']; |
| 14 | - $this->config['connection_method'] = $this->_dbconnectionmethod = (isset($GLOBALS['database_connection_method']) ? $GLOBALS['database_connection_method'] : $connection_method); |
|
| 14 | + $this->config['connection_method'] = $this->_dbconnectionmethod = (isset($GLOBALS['database_connection_method']) ? $GLOBALS['database_connection_method'] : $connection_method); |
|
| 15 | 15 | $this->config['table_prefix'] = ($pre !== NULL) ? $pre : $GLOBALS['table_prefix']; |
| 16 | 16 | } |
| 17 | 17 | |
| 18 | - function connect($host = '', $dbase = '', $uid = '', $pwd = '', $tmp = 0) { |
|
| 18 | + function connect($host = '', $dbase = '', $uid = '', $pwd = '', $tmp = 0){ |
|
| 19 | 19 | global $modx; |
| 20 | - $uid = $uid ? $uid : $this->config['user']; |
|
| 21 | - $pwd = $pwd ? $pwd : $this->config['pass']; |
|
| 22 | - $host = $host ? $host : $this->config['host']; |
|
| 20 | + $uid = $uid ? $uid : $this->config['user']; |
|
| 21 | + $pwd = $pwd ? $pwd : $this->config['pass']; |
|
| 22 | + $host = $host ? $host : $this->config['host']; |
|
| 23 | 23 | $dbase = $dbase ? $dbase : $this->config['dbase']; |
| 24 | 24 | $dbase = trim($dbase, '`'); // remove the `` chars |
| 25 | 25 | $charset = $this->config['charset']; |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | $ua = $modx->htmlspecialchars($_SERVER['HTTP_USER_AGENT']); |
| 38 | 38 | $referer = $modx->htmlspecialchars($_SERVER['HTTP_REFERER']); |
| 39 | 39 | $modx->sendmail(array( |
| 40 | - 'subject' => 'Missing to create the database connection! from ' . $modx->config['site_name'], |
|
| 40 | + 'subject' => 'Missing to create the database connection! from '.$modx->config['site_name'], |
|
| 41 | 41 | 'body' => "{$logtitle}\n{$request_uri}\n{$ua}\n{$referer}", |
| 42 | 42 | 'type' => 'text' |
| 43 | 43 | )); |
@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | sleep(1); |
| 47 | 47 | $safe_count++; |
| 48 | 48 | } |
| 49 | - } while (!$this->conn && $safe_count<3); |
|
| 49 | + } while (!$this->conn && $safe_count < 3); |
|
| 50 | 50 | if (!$this->conn) { |
| 51 | 51 | $modx->messageQuit("Failed to create the database connection!"); |
| 52 | 52 | exit; |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | $tend = $modx->getMicroTime(); |
| 56 | 56 | $totaltime = $tend - $tstart; |
| 57 | 57 | if ($modx->dumpSQL) { |
| 58 | - $modx->queryCode .= "<fieldset style='text-align:left'><legend>Database connection</legend>" . sprintf("Database connection was created in %2.4f s", $totaltime) . "</fieldset><br />"; |
|
| 58 | + $modx->queryCode .= "<fieldset style='text-align:left'><legend>Database connection</legend>".sprintf("Database connection was created in %2.4f s", $totaltime)."</fieldset><br />"; |
|
| 59 | 59 | } |
| 60 | 60 | $this->conn->set_charset($this->config['charset']); |
| 61 | 61 | $this->isConnected = true; |
@@ -63,15 +63,15 @@ discard block |
||
| 63 | 63 | } |
| 64 | 64 | } |
| 65 | 65 | |
| 66 | - function disconnect() { |
|
| 66 | + function disconnect(){ |
|
| 67 | 67 | $this->conn->close(); |
| 68 | 68 | $this->conn = null; |
| 69 | 69 | $this->isConnected = false; |
| 70 | 70 | } |
| 71 | 71 | |
| 72 | - function escape($s, $safecount=0) { |
|
| 72 | + function escape($s, $safecount = 0){ |
|
| 73 | 73 | $safecount++; |
| 74 | - if (1000<$safecount) exit("Too many loops '{$safecount}'"); |
|
| 74 | + if (1000 < $safecount) exit("Too many loops '{$safecount}'"); |
|
| 75 | 75 | if (empty ($this->conn) || !is_object($this->conn)) { |
| 76 | 76 | $this->connect(); |
| 77 | 77 | } |
@@ -89,17 +89,17 @@ discard block |
||
| 89 | 89 | return $s; |
| 90 | 90 | } |
| 91 | 91 | |
| 92 | - function query($sql,$watchError=true) { |
|
| 92 | + function query($sql, $watchError = true){ |
|
| 93 | 93 | global $modx; |
| 94 | 94 | if (empty ($this->conn) || !is_object($this->conn)) { |
| 95 | 95 | $this->connect(); |
| 96 | 96 | } |
| 97 | 97 | $tstart = $modx->getMicroTime(); |
| 98 | - if(is_array($sql)) $sql = join("\n", $sql); |
|
| 98 | + if (is_array($sql)) $sql = join("\n", $sql); |
|
| 99 | 99 | $this->lastQuery = $sql; |
| 100 | 100 | if (!($result = $this->conn->query($sql))) { |
| 101 | - if(!$watchError) return; |
|
| 102 | - switch(mysqli_errno($this->conn)) { |
|
| 101 | + if (!$watchError) return; |
|
| 102 | + switch (mysqli_errno($this->conn)) { |
|
| 103 | 103 | case 1054: |
| 104 | 104 | case 1060: |
| 105 | 105 | case 1061: |
@@ -107,7 +107,7 @@ discard block |
||
| 107 | 107 | case 1091: |
| 108 | 108 | break; |
| 109 | 109 | default: |
| 110 | - $modx->messageQuit('Execution of a query to the database failed - ' . $this->getLastError(), $sql); |
|
| 110 | + $modx->messageQuit('Execution of a query to the database failed - '.$this->getLastError(), $sql); |
|
| 111 | 111 | } |
| 112 | 112 | } else { |
| 113 | 113 | $tend = $modx->getMicroTime(); |
@@ -119,14 +119,14 @@ discard block |
||
| 119 | 119 | $debug_path = array(); |
| 120 | 120 | foreach ($debug as $line) $debug_path[] = $line['function']; |
| 121 | 121 | $debug_path = implode(' > ', array_reverse($debug_path)); |
| 122 | - $modx->queryCode .= "<fieldset style='text-align:left'><legend>Query " . ($modx->executedQueries + 1) . " - " . sprintf("%2.2f ms", $totaltime*1000) . "</legend>"; |
|
| 123 | - $modx->queryCode .= $sql . '<br><br>'; |
|
| 124 | - if ($modx->event->name) $modx->queryCode .= 'Current Event => ' . $modx->event->name . '<br>'; |
|
| 125 | - if ($modx->event->activePlugin) $modx->queryCode .= 'Current Plugin => ' . $modx->event->activePlugin . '<br>'; |
|
| 126 | - if ($modx->currentSnippet) $modx->queryCode .= 'Current Snippet => ' . $modx->currentSnippet . '<br>'; |
|
| 127 | - if (stripos($sql, 'select')===0) $modx->queryCode .= 'Record Count => ' . $this->getRecordCount($result) . '<br>'; |
|
| 128 | - else $modx->queryCode .= 'Affected Rows => ' . $this->getAffectedRows() . '<br>'; |
|
| 129 | - $modx->queryCode .= 'Functions Path => ' . $debug_path . '<br>'; |
|
| 122 | + $modx->queryCode .= "<fieldset style='text-align:left'><legend>Query ".($modx->executedQueries + 1)." - ".sprintf("%2.2f ms", $totaltime * 1000)."</legend>"; |
|
| 123 | + $modx->queryCode .= $sql.'<br><br>'; |
|
| 124 | + if ($modx->event->name) $modx->queryCode .= 'Current Event => '.$modx->event->name.'<br>'; |
|
| 125 | + if ($modx->event->activePlugin) $modx->queryCode .= 'Current Plugin => '.$modx->event->activePlugin.'<br>'; |
|
| 126 | + if ($modx->currentSnippet) $modx->queryCode .= 'Current Snippet => '.$modx->currentSnippet.'<br>'; |
|
| 127 | + if (stripos($sql, 'select') === 0) $modx->queryCode .= 'Record Count => '.$this->getRecordCount($result).'<br>'; |
|
| 128 | + else $modx->queryCode .= 'Affected Rows => '.$this->getAffectedRows().'<br>'; |
|
| 129 | + $modx->queryCode .= 'Functions Path => '.$debug_path.'<br>'; |
|
| 130 | 130 | $modx->queryCode .= "</fieldset><br />"; |
| 131 | 131 | } |
| 132 | 132 | $modx->executedQueries = $modx->executedQueries + 1; |
@@ -134,7 +134,7 @@ discard block |
||
| 134 | 134 | } |
| 135 | 135 | } |
| 136 | 136 | |
| 137 | - function delete($from, $where='', $orderby='', $limit = '') { |
|
| 137 | + function delete($from, $where = '', $orderby = '', $limit = ''){ |
|
| 138 | 138 | global $modx; |
| 139 | 139 | if (!$from) { |
| 140 | 140 | $modx->messageQuit("Empty \$from parameters in DBAPI::delete()."); |
@@ -143,19 +143,19 @@ discard block |
||
| 143 | 143 | $where = trim($where); |
| 144 | 144 | $orderby = trim($orderby); |
| 145 | 145 | $limit = trim($limit); |
| 146 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 147 | - if($orderby!== '' && stripos($orderby,'ORDER BY')!==0) $orderby = "ORDER BY {$orderby}"; |
|
| 148 | - if($limit!== '' && stripos($limit, 'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
| 146 | + if ($where !== '' && stripos($where, 'WHERE') !== 0) $where = "WHERE {$where}"; |
|
| 147 | + if ($orderby !== '' && stripos($orderby, 'ORDER BY') !== 0) $orderby = "ORDER BY {$orderby}"; |
|
| 148 | + if ($limit !== '' && stripos($limit, 'LIMIT') !== 0) $limit = "LIMIT {$limit}"; |
|
| 149 | 149 | return $this->query("DELETE FROM {$from} {$where} {$orderby} {$limit}"); |
| 150 | 150 | } |
| 151 | 151 | } |
| 152 | 152 | |
| 153 | - function select($fields = "*", $from = "", $where = "", $orderby = "", $limit = "") { |
|
| 153 | + function select($fields = "*", $from = "", $where = "", $orderby = "", $limit = ""){ |
|
| 154 | 154 | global $modx; |
| 155 | 155 | |
| 156 | - if(is_array($fields)) $fields = $this->_getFieldsStringFromArray($fields); |
|
| 157 | - if(is_array($from)) $from = $this->_getFromStringFromArray($from); |
|
| 158 | - if(is_array($where)) $where = join(' ', $where); |
|
| 156 | + if (is_array($fields)) $fields = $this->_getFieldsStringFromArray($fields); |
|
| 157 | + if (is_array($from)) $from = $this->_getFromStringFromArray($from); |
|
| 158 | + if (is_array($where)) $where = join(' ', $where); |
|
| 159 | 159 | |
| 160 | 160 | if (!$from) { |
| 161 | 161 | $modx->messageQuit("Empty \$from parameters in DBAPI::select()."); |
@@ -167,13 +167,13 @@ discard block |
||
| 167 | 167 | $where = trim($where); |
| 168 | 168 | $orderby = trim($orderby); |
| 169 | 169 | $limit = trim($limit); |
| 170 | - if($where!=='' && stripos($where,'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 171 | - if($orderby!=='' && stripos($orderby,'ORDER')!==0) $orderby = "ORDER BY {$orderby}"; |
|
| 172 | - if($limit!=='' && stripos($limit,'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
| 170 | + if ($where !== '' && stripos($where, 'WHERE') !== 0) $where = "WHERE {$where}"; |
|
| 171 | + if ($orderby !== '' && stripos($orderby, 'ORDER') !== 0) $orderby = "ORDER BY {$orderby}"; |
|
| 172 | + if ($limit !== '' && stripos($limit, 'LIMIT') !== 0) $limit = "LIMIT {$limit}"; |
|
| 173 | 173 | return $this->query("SELECT {$fields} FROM {$from} {$where} {$orderby} {$limit}"); |
| 174 | 174 | } |
| 175 | 175 | |
| 176 | - function update($fields, $table, $where = "") { |
|
| 176 | + function update($fields, $table, $where = ""){ |
|
| 177 | 177 | global $modx; |
| 178 | 178 | if (!$table) { |
| 179 | 179 | $modx->messageQuit("Empty \$table parameter in DBAPI::update()."); |
@@ -181,22 +181,22 @@ discard block |
||
| 181 | 181 | $table = $this->replaceFullTableName($table); |
| 182 | 182 | if (is_array($fields)) { |
| 183 | 183 | foreach ($fields as $key => $value) { |
| 184 | - if(is_null($value) || strtolower($value) === 'null'){ |
|
| 184 | + if (is_null($value) || strtolower($value) === 'null') { |
|
| 185 | 185 | $flds = 'NULL'; |
| 186 | - }else{ |
|
| 187 | - $flds = "'" . $value . "'"; |
|
| 186 | + } else { |
|
| 187 | + $flds = "'".$value."'"; |
|
| 188 | 188 | } |
| 189 | 189 | $fields[$key] = "`{$key}` = ".$flds; |
| 190 | 190 | } |
| 191 | 191 | $fields = implode(",", $fields); |
| 192 | 192 | } |
| 193 | 193 | $where = trim($where); |
| 194 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 194 | + if ($where !== '' && stripos($where, 'WHERE') !== 0) $where = "WHERE {$where}"; |
|
| 195 | 195 | return $this->query("UPDATE {$table} SET {$fields} {$where}"); |
| 196 | 196 | } |
| 197 | 197 | } |
| 198 | 198 | |
| 199 | - function insert($fields, $intotable, $fromfields = "*", $fromtable = "", $where = "", $limit = "") { |
|
| 199 | + function insert($fields, $intotable, $fromfields = "*", $fromtable = "", $where = "", $limit = ""){ |
|
| 200 | 200 | global $modx; |
| 201 | 201 | if (!$intotable) { |
| 202 | 202 | $modx->messageQuit("Empty \$intotable parameters in DBAPI::insert()."); |
@@ -213,68 +213,68 @@ discard block |
||
| 213 | 213 | $fields = "(".implode(",", array_keys($fields)).")"; |
| 214 | 214 | $where = trim($where); |
| 215 | 215 | $limit = trim($limit); |
| 216 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 217 | - if($limit!=='' && stripos($limit, 'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
| 216 | + if ($where !== '' && stripos($where, 'WHERE') !== 0) $where = "WHERE {$where}"; |
|
| 217 | + if ($limit !== '' && stripos($limit, 'LIMIT') !== 0) $limit = "LIMIT {$limit}"; |
|
| 218 | 218 | $rt = $this->query("INSERT INTO {$intotable} {$fields} SELECT {$fromfields} FROM {$fromtable} {$where} {$limit}"); |
| 219 | 219 | } |
| 220 | 220 | } |
| 221 | - if (($lid = $this->getInsertId())===false) $modx->messageQuit("Couldn't get last insert key!"); |
|
| 221 | + if (($lid = $this->getInsertId()) === false) $modx->messageQuit("Couldn't get last insert key!"); |
|
| 222 | 222 | return $lid; |
| 223 | 223 | } |
| 224 | 224 | } |
| 225 | 225 | |
| 226 | - function save($fields, $table, $where='') { // This is similar to "replace into table". |
|
| 226 | + function save($fields, $table, $where = ''){ // This is similar to "replace into table". |
|
| 227 | 227 | |
| 228 | - if($where === '') $mode = 'insert'; |
|
| 229 | - elseif($this->getRecordCount($this->select('*',$table,$where))==0) $mode = 'insert'; |
|
| 228 | + if ($where === '') $mode = 'insert'; |
|
| 229 | + elseif ($this->getRecordCount($this->select('*', $table, $where)) == 0) $mode = 'insert'; |
|
| 230 | 230 | else $mode = 'update'; |
| 231 | 231 | |
| 232 | - if($mode==='insert') return $this->insert($fields, $table); |
|
| 232 | + if ($mode === 'insert') return $this->insert($fields, $table); |
|
| 233 | 233 | else return $this->update($fields, $table, $where); |
| 234 | 234 | } |
| 235 | 235 | |
| 236 | - function isResult($rs) { |
|
| 236 | + function isResult($rs){ |
|
| 237 | 237 | return is_object($rs); |
| 238 | 238 | } |
| 239 | 239 | |
| 240 | - function freeResult($rs) { |
|
| 240 | + function freeResult($rs){ |
|
| 241 | 241 | $rs->free_result(); |
| 242 | 242 | } |
| 243 | 243 | |
| 244 | - function numFields($rs) { |
|
| 244 | + function numFields($rs){ |
|
| 245 | 245 | return $rs->field_count; |
| 246 | 246 | } |
| 247 | 247 | |
| 248 | - function fieldName($rs,$col=0) { |
|
| 248 | + function fieldName($rs, $col = 0){ |
|
| 249 | 249 | $field = $rs->fetch_field_direct($col); |
| 250 | 250 | return $field->name; |
| 251 | 251 | } |
| 252 | 252 | |
| 253 | - function selectDb($name) { |
|
| 253 | + function selectDb($name){ |
|
| 254 | 254 | $this->conn->select_db($name); |
| 255 | 255 | } |
| 256 | 256 | |
| 257 | 257 | |
| 258 | - function getInsertId($conn=NULL) { |
|
| 259 | - if (!is_object($conn)) $conn =& $this->conn; |
|
| 258 | + function getInsertId($conn = NULL){ |
|
| 259 | + if (!is_object($conn)) $conn = & $this->conn; |
|
| 260 | 260 | return $conn->insert_id; |
| 261 | 261 | } |
| 262 | 262 | |
| 263 | - function getAffectedRows($conn=NULL) { |
|
| 264 | - if (!is_object($conn)) $conn =& $this->conn; |
|
| 263 | + function getAffectedRows($conn = NULL){ |
|
| 264 | + if (!is_object($conn)) $conn = & $this->conn; |
|
| 265 | 265 | return $conn->affected_rows; |
| 266 | 266 | } |
| 267 | 267 | |
| 268 | - function getLastError($conn=NULL) { |
|
| 269 | - if (!is_object($conn)) $conn =& $this->conn; |
|
| 268 | + function getLastError($conn = NULL){ |
|
| 269 | + if (!is_object($conn)) $conn = & $this->conn; |
|
| 270 | 270 | return $conn->error; |
| 271 | 271 | } |
| 272 | 272 | |
| 273 | - function getRecordCount($ds) { |
|
| 273 | + function getRecordCount($ds){ |
|
| 274 | 274 | return (is_object($ds)) ? $ds->num_rows : 0; |
| 275 | 275 | } |
| 276 | 276 | |
| 277 | - function getRow($ds, $mode = 'assoc') { |
|
| 277 | + function getRow($ds, $mode = 'assoc'){ |
|
| 278 | 278 | if (is_object($ds)) { |
| 279 | 279 | if ($mode == 'assoc') { |
| 280 | 280 | return $ds->fetch_assoc(); |
@@ -291,12 +291,12 @@ discard block |
||
| 291 | 291 | } |
| 292 | 292 | } |
| 293 | 293 | |
| 294 | - function getColumn($name, $dsq) { |
|
| 294 | + function getColumn($name, $dsq){ |
|
| 295 | 295 | if (!is_object($dsq)) { |
| 296 | 296 | $dsq = $this->query($dsq); |
| 297 | 297 | } |
| 298 | 298 | if ($dsq) { |
| 299 | - $col = array (); |
|
| 299 | + $col = array(); |
|
| 300 | 300 | while ($row = $this->getRow($dsq)) { |
| 301 | 301 | $col[] = $row[$name]; |
| 302 | 302 | } |
@@ -304,12 +304,12 @@ discard block |
||
| 304 | 304 | } |
| 305 | 305 | } |
| 306 | 306 | |
| 307 | - function getColumnNames($dsq) { |
|
| 307 | + function getColumnNames($dsq){ |
|
| 308 | 308 | if (!is_object($dsq)) { |
| 309 | 309 | $dsq = $this->query($dsq); |
| 310 | 310 | } |
| 311 | 311 | if ($dsq) { |
| 312 | - $names = array (); |
|
| 312 | + $names = array(); |
|
| 313 | 313 | $limit = $this->numFields($dsq); |
| 314 | 314 | for ($i = 0; $i < $limit; $i++) { |
| 315 | 315 | $names[] = $this->fieldName($dsq, $i); |
@@ -318,7 +318,7 @@ discard block |
||
| 318 | 318 | } |
| 319 | 319 | } |
| 320 | 320 | |
| 321 | - function getValue($dsq) { |
|
| 321 | + function getValue($dsq){ |
|
| 322 | 322 | if (!is_object($dsq)) { |
| 323 | 323 | $dsq = $this->query($dsq); |
| 324 | 324 | } |
@@ -328,7 +328,7 @@ discard block |
||
| 328 | 328 | } |
| 329 | 329 | } |
| 330 | 330 | |
| 331 | - function getTableMetaData($table) { |
|
| 331 | + function getTableMetaData($table){ |
|
| 332 | 332 | $metadata = false; |
| 333 | 333 | if (!empty ($table)) { |
| 334 | 334 | $sql = "SHOW FIELDS FROM $table"; |
@@ -342,7 +342,7 @@ discard block |
||
| 342 | 342 | return $metadata; |
| 343 | 343 | } |
| 344 | 344 | |
| 345 | - function prepareDate($timestamp, $fieldType = 'DATETIME') { |
|
| 345 | + function prepareDate($timestamp, $fieldType = 'DATETIME'){ |
|
| 346 | 346 | $date = ''; |
| 347 | 347 | if (!$timestamp === false && $timestamp > 0) { |
| 348 | 348 | switch ($fieldType) { |
@@ -363,7 +363,7 @@ discard block |
||
| 363 | 363 | return $date; |
| 364 | 364 | } |
| 365 | 365 | |
| 366 | - function makeArray($rs='',$index=false){ |
|
| 366 | + function makeArray($rs = '', $index = false){ |
|
| 367 | 367 | if (!$rs) return false; |
| 368 | 368 | $rsArray = array(); |
| 369 | 369 | $iterator = 0; |
@@ -375,17 +375,17 @@ discard block |
||
| 375 | 375 | return $rsArray; |
| 376 | 376 | } |
| 377 | 377 | |
| 378 | - function getVersion() { |
|
| 378 | + function getVersion(){ |
|
| 379 | 379 | return $this->conn->server_info; |
| 380 | 380 | } |
| 381 | 381 | |
| 382 | - function replaceFullTableName($str,$force=null) { |
|
| 382 | + function replaceFullTableName($str, $force = null){ |
|
| 383 | 383 | $str = trim($str); |
| 384 | - $dbase = trim($this->config['dbase'],'`'); |
|
| 384 | + $dbase = trim($this->config['dbase'], '`'); |
|
| 385 | 385 | $prefix = $this->config['table_prefix']; |
| 386 | 386 | if (!empty($force)) { |
| 387 | 387 | $result = "`{$dbase}`.`{$prefix}{$str}`"; |
| 388 | - } elseif (strpos($str,'[+prefix+]')!==false) { |
|
| 388 | + } elseif (strpos($str, '[+prefix+]') !== false) { |
|
| 389 | 389 | $result = preg_replace('@\[\+prefix\+\]([0-9a-zA-Z_]+)@', "`{$dbase}`.`{$prefix}$1`", $str); |
| 390 | 390 | } else { |
| 391 | 391 | $result = $str; |
@@ -393,7 +393,7 @@ discard block |
||
| 393 | 393 | return $result; |
| 394 | 394 | } |
| 395 | 395 | |
| 396 | - function optimize($table_name) { |
|
| 396 | + function optimize($table_name){ |
|
| 397 | 397 | $rs = $this->query("OPTIMIZE TABLE {$table_name}"); |
| 398 | 398 | if ($rs) { |
| 399 | 399 | $rs = $this->query("ALTER TABLE {$table_name}"); |
@@ -401,30 +401,30 @@ discard block |
||
| 401 | 401 | return $rs; |
| 402 | 402 | } |
| 403 | 403 | |
| 404 | - function truncate($table_name) { |
|
| 404 | + function truncate($table_name){ |
|
| 405 | 405 | $rs = $this->query("TRUNCATE {$table_name}"); |
| 406 | 406 | return $rs; |
| 407 | 407 | } |
| 408 | 408 | |
| 409 | - function dataSeek($result, $row_number) { |
|
| 409 | + function dataSeek($result, $row_number){ |
|
| 410 | 410 | return $result->data_seek($row_number); |
| 411 | 411 | } |
| 412 | 412 | |
| 413 | - function _getFieldsStringFromArray($fields=array()) { |
|
| 413 | + function _getFieldsStringFromArray($fields = array()){ |
|
| 414 | 414 | |
| 415 | - if(empty($fields)) return '*'; |
|
| 415 | + if (empty($fields)) return '*'; |
|
| 416 | 416 | |
| 417 | 417 | $_ = array(); |
| 418 | - foreach($fields as $k=>$v) { |
|
| 419 | - if($k!==$v) $_[] = "{$v} as {$k}"; |
|
| 418 | + foreach ($fields as $k=>$v) { |
|
| 419 | + if ($k !== $v) $_[] = "{$v} as {$k}"; |
|
| 420 | 420 | else $_[] = $v; |
| 421 | 421 | } |
| 422 | 422 | return join(',', $_); |
| 423 | 423 | } |
| 424 | 424 | |
| 425 | - function _getFromStringFromArray($tables=array()) { |
|
| 425 | + function _getFromStringFromArray($tables = array()){ |
|
| 426 | 426 | $_ = array(); |
| 427 | - foreach($tables as $k=>$v) { |
|
| 427 | + foreach ($tables as $k=>$v) { |
|
| 428 | 428 | $_[] = $v; |
| 429 | 429 | } |
| 430 | 430 | return join(' ', $_); |
@@ -1,11 +1,13 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -class DBAPI { |
|
| 2 | +class DBAPI |
|
| 3 | +{ |
|
| 3 | 4 | var $conn; |
| 4 | 5 | var $config; |
| 5 | 6 | var $lastQuery; |
| 6 | 7 | var $isConnected; |
| 7 | 8 | |
| 8 | - function __construct($host='', $dbase='', $uid='', $pwd='', $pre=NULL, $charset='', $connection_method='SET CHARACTER SET') { |
|
| 9 | + function __construct($host='', $dbase='', $uid='', $pwd='', $pre=NULL, $charset='', $connection_method='SET CHARACTER SET') |
|
| 10 | + { |
|
| 9 | 11 | $this->config['host'] = $host ? $host : $GLOBALS['database_server']; |
| 10 | 12 | $this->config['dbase'] = $dbase ? $dbase : $GLOBALS['dbase']; |
| 11 | 13 | $this->config['user'] = $uid ? $uid : $GLOBALS['database_user']; |
@@ -15,7 +17,8 @@ discard block |
||
| 15 | 17 | $this->config['table_prefix'] = ($pre !== NULL) ? $pre : $GLOBALS['table_prefix']; |
| 16 | 18 | } |
| 17 | 19 | |
| 18 | - function connect($host = '', $dbase = '', $uid = '', $pwd = '', $tmp = 0) { |
|
| 20 | + function connect($host = '', $dbase = '', $uid = '', $pwd = '', $tmp = 0) |
|
| 21 | + { |
|
| 19 | 22 | global $modx; |
| 20 | 23 | $uid = $uid ? $uid : $this->config['user']; |
| 21 | 24 | $pwd = $pwd ? $pwd : $this->config['pass']; |
@@ -63,15 +66,19 @@ discard block |
||
| 63 | 66 | } |
| 64 | 67 | } |
| 65 | 68 | |
| 66 | - function disconnect() { |
|
| 69 | + function disconnect() |
|
| 70 | + { |
|
| 67 | 71 | $this->conn->close(); |
| 68 | 72 | $this->conn = null; |
| 69 | 73 | $this->isConnected = false; |
| 70 | 74 | } |
| 71 | 75 | |
| 72 | - function escape($s, $safecount=0) { |
|
| 76 | + function escape($s, $safecount=0) |
|
| 77 | + { |
|
| 73 | 78 | $safecount++; |
| 74 | - if (1000<$safecount) exit("Too many loops '{$safecount}'"); |
|
| 79 | + if (1000<$safecount) { |
|
| 80 | + exit("Too many loops '{$safecount}'"); |
|
| 81 | + } |
|
| 75 | 82 | if (empty ($this->conn) || !is_object($this->conn)) { |
| 76 | 83 | $this->connect(); |
| 77 | 84 | } |
@@ -89,16 +96,21 @@ discard block |
||
| 89 | 96 | return $s; |
| 90 | 97 | } |
| 91 | 98 | |
| 92 | - function query($sql,$watchError=true) { |
|
| 99 | + function query($sql,$watchError=true) |
|
| 100 | + { |
|
| 93 | 101 | global $modx; |
| 94 | 102 | if (empty ($this->conn) || !is_object($this->conn)) { |
| 95 | 103 | $this->connect(); |
| 96 | 104 | } |
| 97 | 105 | $tstart = $modx->getMicroTime(); |
| 98 | - if(is_array($sql)) $sql = join("\n", $sql); |
|
| 106 | + if(is_array($sql)) { |
|
| 107 | + $sql = join("\n", $sql); |
|
| 108 | + } |
|
| 99 | 109 | $this->lastQuery = $sql; |
| 100 | 110 | if (!($result = $this->conn->query($sql))) { |
| 101 | - if(!$watchError) return; |
|
| 111 | + if(!$watchError) { |
|
| 112 | + return; |
|
| 113 | + } |
|
| 102 | 114 | switch(mysqli_errno($this->conn)) { |
| 103 | 115 | case 1054: |
| 104 | 116 | case 1060: |
@@ -117,15 +129,26 @@ discard block |
||
| 117 | 129 | $debug = debug_backtrace(); |
| 118 | 130 | array_shift($debug); |
| 119 | 131 | $debug_path = array(); |
| 120 | - foreach ($debug as $line) $debug_path[] = $line['function']; |
|
| 132 | + foreach ($debug as $line) { |
|
| 133 | + $debug_path[] = $line['function']; |
|
| 134 | + } |
|
| 121 | 135 | $debug_path = implode(' > ', array_reverse($debug_path)); |
| 122 | 136 | $modx->queryCode .= "<fieldset style='text-align:left'><legend>Query " . ($modx->executedQueries + 1) . " - " . sprintf("%2.2f ms", $totaltime*1000) . "</legend>"; |
| 123 | 137 | $modx->queryCode .= $sql . '<br><br>'; |
| 124 | - if ($modx->event->name) $modx->queryCode .= 'Current Event => ' . $modx->event->name . '<br>'; |
|
| 125 | - if ($modx->event->activePlugin) $modx->queryCode .= 'Current Plugin => ' . $modx->event->activePlugin . '<br>'; |
|
| 126 | - if ($modx->currentSnippet) $modx->queryCode .= 'Current Snippet => ' . $modx->currentSnippet . '<br>'; |
|
| 127 | - if (stripos($sql, 'select')===0) $modx->queryCode .= 'Record Count => ' . $this->getRecordCount($result) . '<br>'; |
|
| 128 | - else $modx->queryCode .= 'Affected Rows => ' . $this->getAffectedRows() . '<br>'; |
|
| 138 | + if ($modx->event->name) { |
|
| 139 | + $modx->queryCode .= 'Current Event => ' . $modx->event->name . '<br>'; |
|
| 140 | + } |
|
| 141 | + if ($modx->event->activePlugin) { |
|
| 142 | + $modx->queryCode .= 'Current Plugin => ' . $modx->event->activePlugin . '<br>'; |
|
| 143 | + } |
|
| 144 | + if ($modx->currentSnippet) { |
|
| 145 | + $modx->queryCode .= 'Current Snippet => ' . $modx->currentSnippet . '<br>'; |
|
| 146 | + } |
|
| 147 | + if (stripos($sql, 'select')===0) { |
|
| 148 | + $modx->queryCode .= 'Record Count => ' . $this->getRecordCount($result) . '<br>'; |
|
| 149 | + } else { |
|
| 150 | + $modx->queryCode .= 'Affected Rows => ' . $this->getAffectedRows() . '<br>'; |
|
| 151 | + } |
|
| 129 | 152 | $modx->queryCode .= 'Functions Path => ' . $debug_path . '<br>'; |
| 130 | 153 | $modx->queryCode .= "</fieldset><br />"; |
| 131 | 154 | } |
@@ -134,7 +157,8 @@ discard block |
||
| 134 | 157 | } |
| 135 | 158 | } |
| 136 | 159 | |
| 137 | - function delete($from, $where='', $orderby='', $limit = '') { |
|
| 160 | + function delete($from, $where='', $orderby='', $limit = '') |
|
| 161 | + { |
|
| 138 | 162 | global $modx; |
| 139 | 163 | if (!$from) { |
| 140 | 164 | $modx->messageQuit("Empty \$from parameters in DBAPI::delete()."); |
@@ -143,19 +167,32 @@ discard block |
||
| 143 | 167 | $where = trim($where); |
| 144 | 168 | $orderby = trim($orderby); |
| 145 | 169 | $limit = trim($limit); |
| 146 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 147 | - if($orderby!== '' && stripos($orderby,'ORDER BY')!==0) $orderby = "ORDER BY {$orderby}"; |
|
| 148 | - if($limit!== '' && stripos($limit, 'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
| 170 | + if($where!=='' && stripos($where, 'WHERE')!==0) { |
|
| 171 | + $where = "WHERE {$where}"; |
|
| 172 | + } |
|
| 173 | + if($orderby!== '' && stripos($orderby,'ORDER BY')!==0) { |
|
| 174 | + $orderby = "ORDER BY {$orderby}"; |
|
| 175 | + } |
|
| 176 | + if($limit!== '' && stripos($limit, 'LIMIT')!==0) { |
|
| 177 | + $limit = "LIMIT {$limit}"; |
|
| 178 | + } |
|
| 149 | 179 | return $this->query("DELETE FROM {$from} {$where} {$orderby} {$limit}"); |
| 150 | 180 | } |
| 151 | 181 | } |
| 152 | 182 | |
| 153 | - function select($fields = "*", $from = "", $where = "", $orderby = "", $limit = "") { |
|
| 183 | + function select($fields = "*", $from = "", $where = "", $orderby = "", $limit = "") |
|
| 184 | + { |
|
| 154 | 185 | global $modx; |
| 155 | 186 | |
| 156 | - if(is_array($fields)) $fields = $this->_getFieldsStringFromArray($fields); |
|
| 157 | - if(is_array($from)) $from = $this->_getFromStringFromArray($from); |
|
| 158 | - if(is_array($where)) $where = join(' ', $where); |
|
| 187 | + if(is_array($fields)) { |
|
| 188 | + $fields = $this->_getFieldsStringFromArray($fields); |
|
| 189 | + } |
|
| 190 | + if(is_array($from)) { |
|
| 191 | + $from = $this->_getFromStringFromArray($from); |
|
| 192 | + } |
|
| 193 | + if(is_array($where)) { |
|
| 194 | + $where = join(' ', $where); |
|
| 195 | + } |
|
| 159 | 196 | |
| 160 | 197 | if (!$from) { |
| 161 | 198 | $modx->messageQuit("Empty \$from parameters in DBAPI::select()."); |
@@ -167,13 +204,20 @@ discard block |
||
| 167 | 204 | $where = trim($where); |
| 168 | 205 | $orderby = trim($orderby); |
| 169 | 206 | $limit = trim($limit); |
| 170 | - if($where!=='' && stripos($where,'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 171 | - if($orderby!=='' && stripos($orderby,'ORDER')!==0) $orderby = "ORDER BY {$orderby}"; |
|
| 172 | - if($limit!=='' && stripos($limit,'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
| 207 | + if($where!=='' && stripos($where,'WHERE')!==0) { |
|
| 208 | + $where = "WHERE {$where}"; |
|
| 209 | + } |
|
| 210 | + if($orderby!=='' && stripos($orderby,'ORDER')!==0) { |
|
| 211 | + $orderby = "ORDER BY {$orderby}"; |
|
| 212 | + } |
|
| 213 | + if($limit!=='' && stripos($limit,'LIMIT')!==0) { |
|
| 214 | + $limit = "LIMIT {$limit}"; |
|
| 215 | + } |
|
| 173 | 216 | return $this->query("SELECT {$fields} FROM {$from} {$where} {$orderby} {$limit}"); |
| 174 | 217 | } |
| 175 | 218 | |
| 176 | - function update($fields, $table, $where = "") { |
|
| 219 | + function update($fields, $table, $where = "") |
|
| 220 | + { |
|
| 177 | 221 | global $modx; |
| 178 | 222 | if (!$table) { |
| 179 | 223 | $modx->messageQuit("Empty \$table parameter in DBAPI::update()."); |
@@ -181,9 +225,9 @@ discard block |
||
| 181 | 225 | $table = $this->replaceFullTableName($table); |
| 182 | 226 | if (is_array($fields)) { |
| 183 | 227 | foreach ($fields as $key => $value) { |
| 184 | - if(is_null($value) || strtolower($value) === 'null'){ |
|
| 228 | + if(is_null($value) || strtolower($value) === 'null') { |
|
| 185 | 229 | $flds = 'NULL'; |
| 186 | - }else{ |
|
| 230 | + } else { |
|
| 187 | 231 | $flds = "'" . $value . "'"; |
| 188 | 232 | } |
| 189 | 233 | $fields[$key] = "`{$key}` = ".$flds; |
@@ -191,12 +235,15 @@ discard block |
||
| 191 | 235 | $fields = implode(",", $fields); |
| 192 | 236 | } |
| 193 | 237 | $where = trim($where); |
| 194 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 238 | + if($where!=='' && stripos($where, 'WHERE')!==0) { |
|
| 239 | + $where = "WHERE {$where}"; |
|
| 240 | + } |
|
| 195 | 241 | return $this->query("UPDATE {$table} SET {$fields} {$where}"); |
| 196 | 242 | } |
| 197 | 243 | } |
| 198 | 244 | |
| 199 | - function insert($fields, $intotable, $fromfields = "*", $fromtable = "", $where = "", $limit = "") { |
|
| 245 | + function insert($fields, $intotable, $fromfields = "*", $fromtable = "", $where = "", $limit = "") |
|
| 246 | + { |
|
| 200 | 247 | global $modx; |
| 201 | 248 | if (!$intotable) { |
| 202 | 249 | $modx->messageQuit("Empty \$intotable parameters in DBAPI::insert()."); |
@@ -213,68 +260,99 @@ discard block |
||
| 213 | 260 | $fields = "(".implode(",", array_keys($fields)).")"; |
| 214 | 261 | $where = trim($where); |
| 215 | 262 | $limit = trim($limit); |
| 216 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 217 | - if($limit!=='' && stripos($limit, 'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
| 263 | + if($where!=='' && stripos($where, 'WHERE')!==0) { |
|
| 264 | + $where = "WHERE {$where}"; |
|
| 265 | + } |
|
| 266 | + if($limit!=='' && stripos($limit, 'LIMIT')!==0) { |
|
| 267 | + $limit = "LIMIT {$limit}"; |
|
| 268 | + } |
|
| 218 | 269 | $rt = $this->query("INSERT INTO {$intotable} {$fields} SELECT {$fromfields} FROM {$fromtable} {$where} {$limit}"); |
| 219 | 270 | } |
| 220 | 271 | } |
| 221 | - if (($lid = $this->getInsertId())===false) $modx->messageQuit("Couldn't get last insert key!"); |
|
| 272 | + if (($lid = $this->getInsertId())===false) { |
|
| 273 | + $modx->messageQuit("Couldn't get last insert key!"); |
|
| 274 | + } |
|
| 222 | 275 | return $lid; |
| 223 | 276 | } |
| 224 | 277 | } |
| 225 | 278 | |
| 226 | - function save($fields, $table, $where='') { // This is similar to "replace into table". |
|
| 279 | + function save($fields, $table, $where='') |
|
| 280 | + { |
|
| 281 | +// This is similar to "replace into table". |
|
| 227 | 282 | |
| 228 | - if($where === '') $mode = 'insert'; |
|
| 229 | - elseif($this->getRecordCount($this->select('*',$table,$where))==0) $mode = 'insert'; |
|
| 230 | - else $mode = 'update'; |
|
| 283 | + if($where === '') { |
|
| 284 | + $mode = 'insert'; |
|
| 285 | + } elseif($this->getRecordCount($this->select('*',$table,$where))==0) { |
|
| 286 | + $mode = 'insert'; |
|
| 287 | + } else { |
|
| 288 | + $mode = 'update'; |
|
| 289 | + } |
|
| 231 | 290 | |
| 232 | - if($mode==='insert') return $this->insert($fields, $table); |
|
| 233 | - else return $this->update($fields, $table, $where); |
|
| 291 | + if($mode==='insert') { |
|
| 292 | + return $this->insert($fields, $table); |
|
| 293 | + } else { |
|
| 294 | + return $this->update($fields, $table, $where); |
|
| 295 | + } |
|
| 234 | 296 | } |
| 235 | 297 | |
| 236 | - function isResult($rs) { |
|
| 298 | + function isResult($rs) |
|
| 299 | + { |
|
| 237 | 300 | return is_object($rs); |
| 238 | 301 | } |
| 239 | 302 | |
| 240 | - function freeResult($rs) { |
|
| 303 | + function freeResult($rs) |
|
| 304 | + { |
|
| 241 | 305 | $rs->free_result(); |
| 242 | 306 | } |
| 243 | 307 | |
| 244 | - function numFields($rs) { |
|
| 308 | + function numFields($rs) |
|
| 309 | + { |
|
| 245 | 310 | return $rs->field_count; |
| 246 | 311 | } |
| 247 | 312 | |
| 248 | - function fieldName($rs,$col=0) { |
|
| 313 | + function fieldName($rs,$col=0) |
|
| 314 | + { |
|
| 249 | 315 | $field = $rs->fetch_field_direct($col); |
| 250 | 316 | return $field->name; |
| 251 | 317 | } |
| 252 | 318 | |
| 253 | - function selectDb($name) { |
|
| 319 | + function selectDb($name) |
|
| 320 | + { |
|
| 254 | 321 | $this->conn->select_db($name); |
| 255 | 322 | } |
| 256 | 323 | |
| 257 | 324 | |
| 258 | - function getInsertId($conn=NULL) { |
|
| 259 | - if (!is_object($conn)) $conn =& $this->conn; |
|
| 325 | + function getInsertId($conn=NULL) |
|
| 326 | + { |
|
| 327 | + if (!is_object($conn)) { |
|
| 328 | + $conn =& $this->conn; |
|
| 329 | + } |
|
| 260 | 330 | return $conn->insert_id; |
| 261 | 331 | } |
| 262 | 332 | |
| 263 | - function getAffectedRows($conn=NULL) { |
|
| 264 | - if (!is_object($conn)) $conn =& $this->conn; |
|
| 333 | + function getAffectedRows($conn=NULL) |
|
| 334 | + { |
|
| 335 | + if (!is_object($conn)) { |
|
| 336 | + $conn =& $this->conn; |
|
| 337 | + } |
|
| 265 | 338 | return $conn->affected_rows; |
| 266 | 339 | } |
| 267 | 340 | |
| 268 | - function getLastError($conn=NULL) { |
|
| 269 | - if (!is_object($conn)) $conn =& $this->conn; |
|
| 341 | + function getLastError($conn=NULL) |
|
| 342 | + { |
|
| 343 | + if (!is_object($conn)) { |
|
| 344 | + $conn =& $this->conn; |
|
| 345 | + } |
|
| 270 | 346 | return $conn->error; |
| 271 | 347 | } |
| 272 | 348 | |
| 273 | - function getRecordCount($ds) { |
|
| 349 | + function getRecordCount($ds) |
|
| 350 | + { |
|
| 274 | 351 | return (is_object($ds)) ? $ds->num_rows : 0; |
| 275 | 352 | } |
| 276 | 353 | |
| 277 | - function getRow($ds, $mode = 'assoc') { |
|
| 354 | + function getRow($ds, $mode = 'assoc') |
|
| 355 | + { |
|
| 278 | 356 | if (is_object($ds)) { |
| 279 | 357 | if ($mode == 'assoc') { |
| 280 | 358 | return $ds->fetch_assoc(); |
@@ -291,7 +369,8 @@ discard block |
||
| 291 | 369 | } |
| 292 | 370 | } |
| 293 | 371 | |
| 294 | - function getColumn($name, $dsq) { |
|
| 372 | + function getColumn($name, $dsq) |
|
| 373 | + { |
|
| 295 | 374 | if (!is_object($dsq)) { |
| 296 | 375 | $dsq = $this->query($dsq); |
| 297 | 376 | } |
@@ -304,7 +383,8 @@ discard block |
||
| 304 | 383 | } |
| 305 | 384 | } |
| 306 | 385 | |
| 307 | - function getColumnNames($dsq) { |
|
| 386 | + function getColumnNames($dsq) |
|
| 387 | + { |
|
| 308 | 388 | if (!is_object($dsq)) { |
| 309 | 389 | $dsq = $this->query($dsq); |
| 310 | 390 | } |
@@ -318,7 +398,8 @@ discard block |
||
| 318 | 398 | } |
| 319 | 399 | } |
| 320 | 400 | |
| 321 | - function getValue($dsq) { |
|
| 401 | + function getValue($dsq) |
|
| 402 | + { |
|
| 322 | 403 | if (!is_object($dsq)) { |
| 323 | 404 | $dsq = $this->query($dsq); |
| 324 | 405 | } |
@@ -328,7 +409,8 @@ discard block |
||
| 328 | 409 | } |
| 329 | 410 | } |
| 330 | 411 | |
| 331 | - function getTableMetaData($table) { |
|
| 412 | + function getTableMetaData($table) |
|
| 413 | + { |
|
| 332 | 414 | $metadata = false; |
| 333 | 415 | if (!empty ($table)) { |
| 334 | 416 | $sql = "SHOW FIELDS FROM $table"; |
@@ -342,7 +424,8 @@ discard block |
||
| 342 | 424 | return $metadata; |
| 343 | 425 | } |
| 344 | 426 | |
| 345 | - function prepareDate($timestamp, $fieldType = 'DATETIME') { |
|
| 427 | + function prepareDate($timestamp, $fieldType = 'DATETIME') |
|
| 428 | + { |
|
| 346 | 429 | $date = ''; |
| 347 | 430 | if (!$timestamp === false && $timestamp > 0) { |
| 348 | 431 | switch ($fieldType) { |
@@ -363,8 +446,11 @@ discard block |
||
| 363 | 446 | return $date; |
| 364 | 447 | } |
| 365 | 448 | |
| 366 | - function makeArray($rs='',$index=false){ |
|
| 367 | - if (!$rs) return false; |
|
| 449 | + function makeArray($rs='',$index=false) |
|
| 450 | + { |
|
| 451 | + if (!$rs) { |
|
| 452 | + return false; |
|
| 453 | + } |
|
| 368 | 454 | $rsArray = array(); |
| 369 | 455 | $iterator = 0; |
| 370 | 456 | while ($row = $this->getRow($rs)) { |
@@ -375,11 +461,13 @@ discard block |
||
| 375 | 461 | return $rsArray; |
| 376 | 462 | } |
| 377 | 463 | |
| 378 | - function getVersion() { |
|
| 464 | + function getVersion() |
|
| 465 | + { |
|
| 379 | 466 | return $this->conn->server_info; |
| 380 | 467 | } |
| 381 | 468 | |
| 382 | - function replaceFullTableName($str,$force=null) { |
|
| 469 | + function replaceFullTableName($str,$force=null) |
|
| 470 | + { |
|
| 383 | 471 | $str = trim($str); |
| 384 | 472 | $dbase = trim($this->config['dbase'],'`'); |
| 385 | 473 | $prefix = $this->config['table_prefix']; |
@@ -393,7 +481,8 @@ discard block |
||
| 393 | 481 | return $result; |
| 394 | 482 | } |
| 395 | 483 | |
| 396 | - function optimize($table_name) { |
|
| 484 | + function optimize($table_name) |
|
| 485 | + { |
|
| 397 | 486 | $rs = $this->query("OPTIMIZE TABLE {$table_name}"); |
| 398 | 487 | if ($rs) { |
| 399 | 488 | $rs = $this->query("ALTER TABLE {$table_name}"); |
@@ -401,28 +490,37 @@ discard block |
||
| 401 | 490 | return $rs; |
| 402 | 491 | } |
| 403 | 492 | |
| 404 | - function truncate($table_name) { |
|
| 493 | + function truncate($table_name) |
|
| 494 | + { |
|
| 405 | 495 | $rs = $this->query("TRUNCATE {$table_name}"); |
| 406 | 496 | return $rs; |
| 407 | 497 | } |
| 408 | 498 | |
| 409 | - function dataSeek($result, $row_number) { |
|
| 499 | + function dataSeek($result, $row_number) |
|
| 500 | + { |
|
| 410 | 501 | return $result->data_seek($row_number); |
| 411 | 502 | } |
| 412 | 503 | |
| 413 | - function _getFieldsStringFromArray($fields=array()) { |
|
| 504 | + function _getFieldsStringFromArray($fields=array()) |
|
| 505 | + { |
|
| 414 | 506 | |
| 415 | - if(empty($fields)) return '*'; |
|
| 507 | + if(empty($fields)) { |
|
| 508 | + return '*'; |
|
| 509 | + } |
|
| 416 | 510 | |
| 417 | 511 | $_ = array(); |
| 418 | 512 | foreach($fields as $k=>$v) { |
| 419 | - if($k!==$v) $_[] = "{$v} as {$k}"; |
|
| 420 | - else $_[] = $v; |
|
| 513 | + if($k!==$v) { |
|
| 514 | + $_[] = "{$v} as {$k}"; |
|
| 515 | + } else { |
|
| 516 | + $_[] = $v; |
|
| 517 | + } |
|
| 421 | 518 | } |
| 422 | 519 | return join(',', $_); |
| 423 | 520 | } |
| 424 | 521 | |
| 425 | - function _getFromStringFromArray($tables=array()) { |
|
| 522 | + function _getFromStringFromArray($tables=array()) |
|
| 523 | + { |
|
| 426 | 524 | $_ = array(); |
| 427 | 525 | foreach($tables as $k=>$v) { |
| 428 | 526 | $_[] = $v; |
@@ -5,14 +5,14 @@ discard block |
||
| 5 | 5 | var $lastQuery; |
| 6 | 6 | var $isConnected; |
| 7 | 7 | |
| 8 | - function __construct($host='', $dbase='', $uid='', $pwd='', $pre=NULL, $charset='', $connection_method='SET CHARACTER SET') { |
|
| 8 | + function __construct($host='', $dbase='', $uid='', $pwd='', $pre=null, $charset='', $connection_method='SET CHARACTER SET') { |
|
| 9 | 9 | $this->config['host'] = $host ? $host : $GLOBALS['database_server']; |
| 10 | 10 | $this->config['dbase'] = $dbase ? $dbase : $GLOBALS['dbase']; |
| 11 | 11 | $this->config['user'] = $uid ? $uid : $GLOBALS['database_user']; |
| 12 | 12 | $this->config['pass'] = $pwd ? $pwd : $GLOBALS['database_password']; |
| 13 | 13 | $this->config['charset'] = $charset ? $charset : $GLOBALS['database_connection_charset']; |
| 14 | 14 | $this->config['connection_method'] = $this->_dbconnectionmethod = (isset($GLOBALS['database_connection_method']) ? $GLOBALS['database_connection_method'] : $connection_method); |
| 15 | - $this->config['table_prefix'] = ($pre !== NULL) ? $pre : $GLOBALS['table_prefix']; |
|
| 15 | + $this->config['table_prefix'] = ($pre !== null) ? $pre : $GLOBALS['table_prefix']; |
|
| 16 | 16 | } |
| 17 | 17 | |
| 18 | 18 | function connect($host = '', $dbase = '', $uid = '', $pwd = '', $tmp = 0) { |
@@ -143,9 +143,9 @@ discard block |
||
| 143 | 143 | $where = trim($where); |
| 144 | 144 | $orderby = trim($orderby); |
| 145 | 145 | $limit = trim($limit); |
| 146 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 146 | + if($where!=='' && stripos($where, 'WHERE')!==0) $where = "where {$where}"; |
|
| 147 | 147 | if($orderby!== '' && stripos($orderby,'ORDER BY')!==0) $orderby = "ORDER BY {$orderby}"; |
| 148 | - if($limit!== '' && stripos($limit, 'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
| 148 | + if($limit!== '' && stripos($limit, 'LIMIT')!==0) $limit = "limit {$limit}"; |
|
| 149 | 149 | return $this->query("DELETE FROM {$from} {$where} {$orderby} {$limit}"); |
| 150 | 150 | } |
| 151 | 151 | } |
@@ -167,10 +167,10 @@ discard block |
||
| 167 | 167 | $where = trim($where); |
| 168 | 168 | $orderby = trim($orderby); |
| 169 | 169 | $limit = trim($limit); |
| 170 | - if($where!=='' && stripos($where,'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 170 | + if($where!=='' && stripos($where,'WHERE')!==0) $where = "where {$where}"; |
|
| 171 | 171 | if($orderby!=='' && stripos($orderby,'ORDER')!==0) $orderby = "ORDER BY {$orderby}"; |
| 172 | - if($limit!=='' && stripos($limit,'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
| 173 | - return $this->query("SELECT {$fields} FROM {$from} {$where} {$orderby} {$limit}"); |
|
| 172 | + if($limit!=='' && stripos($limit,'LIMIT')!==0) $limit = "limit {$limit}"; |
|
| 173 | + return $this->query("select {$fields} FROM {$from} {$where} {$orderby} {$limit}"); |
|
| 174 | 174 | } |
| 175 | 175 | |
| 176 | 176 | function update($fields, $table, $where = "") { |
@@ -191,8 +191,8 @@ discard block |
||
| 191 | 191 | $fields = implode(",", $fields); |
| 192 | 192 | } |
| 193 | 193 | $where = trim($where); |
| 194 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 195 | - return $this->query("UPDATE {$table} SET {$fields} {$where}"); |
|
| 194 | + if($where!=='' && stripos($where, 'WHERE')!==0) $where = "where {$where}"; |
|
| 195 | + return $this->query("update {$table} SET {$fields} {$where}"); |
|
| 196 | 196 | } |
| 197 | 197 | } |
| 198 | 198 | |
@@ -213,8 +213,8 @@ discard block |
||
| 213 | 213 | $fields = "(".implode(",", array_keys($fields)).")"; |
| 214 | 214 | $where = trim($where); |
| 215 | 215 | $limit = trim($limit); |
| 216 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
| 217 | - if($limit!=='' && stripos($limit, 'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
| 216 | + if($where!=='' && stripos($where, 'WHERE')!==0) $where = "where {$where}"; |
|
| 217 | + if($limit!=='' && stripos($limit, 'LIMIT')!==0) $limit = "limit {$limit}"; |
|
| 218 | 218 | $rt = $this->query("INSERT INTO {$intotable} {$fields} SELECT {$fromfields} FROM {$fromtable} {$where} {$limit}"); |
| 219 | 219 | } |
| 220 | 220 | } |
@@ -255,17 +255,17 @@ discard block |
||
| 255 | 255 | } |
| 256 | 256 | |
| 257 | 257 | |
| 258 | - function getInsertId($conn=NULL) { |
|
| 258 | + function getInsertId($conn=null) { |
|
| 259 | 259 | if (!is_object($conn)) $conn =& $this->conn; |
| 260 | 260 | return $conn->insert_id; |
| 261 | 261 | } |
| 262 | 262 | |
| 263 | - function getAffectedRows($conn=NULL) { |
|
| 263 | + function getAffectedRows($conn=null) { |
|
| 264 | 264 | if (!is_object($conn)) $conn =& $this->conn; |
| 265 | 265 | return $conn->affected_rows; |
| 266 | 266 | } |
| 267 | 267 | |
| 268 | - function getLastError($conn=NULL) { |
|
| 268 | + function getLastError($conn=null) { |
|
| 269 | 269 | if (!is_object($conn)) $conn =& $this->conn; |
| 270 | 270 | return $conn->error; |
| 271 | 271 | } |
@@ -402,7 +402,7 @@ discard block |
||
| 402 | 402 | } |
| 403 | 403 | |
| 404 | 404 | function truncate($table_name) { |
| 405 | - $rs = $this->query("TRUNCATE {$table_name}"); |
|
| 405 | + $rs = $this->query("truncate {$table_name}"); |
|
| 406 | 406 | return $rs; |
| 407 | 407 | } |
| 408 | 408 | |
@@ -102,6 +102,9 @@ discard block |
||
| 102 | 102 | return $rs; |
| 103 | 103 | } |
| 104 | 104 | |
| 105 | + /** |
|
| 106 | + * @param string $filepath |
|
| 107 | + */ |
|
| 105 | 108 | function makeFile($docid, $filepath) |
| 106 | 109 | { |
| 107 | 110 | global $modx,$_lang; |
@@ -250,6 +253,9 @@ discard block |
||
| 250 | 253 | return implode("\n", $this->output); |
| 251 | 254 | } |
| 252 | 255 | |
| 256 | + /** |
|
| 257 | + * @param string $url |
|
| 258 | + */ |
|
| 253 | 259 | function curl_get_contents($url, $timeout = 30 ) |
| 254 | 260 | { |
| 255 | 261 | if(!function_exists('curl_init')) return @file_get_contents($url); |
@@ -1,258 +1,258 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | class EXPORT_SITE |
| 3 | 3 | { |
| 4 | - var $targetDir; |
|
| 5 | - var $generate_mode; |
|
| 6 | - var $total; |
|
| 7 | - var $count; |
|
| 8 | - var $ignore_ids; |
|
| 9 | - var $exportstart; |
|
| 10 | - var $repl_before; |
|
| 11 | - var $repl_after; |
|
| 12 | - var $output = array(); |
|
| 4 | + var $targetDir; |
|
| 5 | + var $generate_mode; |
|
| 6 | + var $total; |
|
| 7 | + var $count; |
|
| 8 | + var $ignore_ids; |
|
| 9 | + var $exportstart; |
|
| 10 | + var $repl_before; |
|
| 11 | + var $repl_after; |
|
| 12 | + var $output = array(); |
|
| 13 | 13 | |
| 14 | - function __construct() |
|
| 15 | - { |
|
| 16 | - global $modx; |
|
| 14 | + function __construct() |
|
| 15 | + { |
|
| 16 | + global $modx; |
|
| 17 | 17 | |
| 18 | - if(!defined('MODX_BASE_PATH')) return false; |
|
| 19 | - $this->exportstart = $this->get_mtime(); |
|
| 20 | - $this->count = 0; |
|
| 21 | - $this->setUrlMode(); |
|
| 22 | - $this->dirCheckCount = 0; |
|
| 23 | - $this->generate_mode = 'crawl'; |
|
| 24 | - $this->targetDir = $modx->config['base_path'] . 'temp/export'; |
|
| 25 | - if(!isset($this->total)) $this->getTotal(); |
|
| 26 | - } |
|
| 18 | + if(!defined('MODX_BASE_PATH')) return false; |
|
| 19 | + $this->exportstart = $this->get_mtime(); |
|
| 20 | + $this->count = 0; |
|
| 21 | + $this->setUrlMode(); |
|
| 22 | + $this->dirCheckCount = 0; |
|
| 23 | + $this->generate_mode = 'crawl'; |
|
| 24 | + $this->targetDir = $modx->config['base_path'] . 'temp/export'; |
|
| 25 | + if(!isset($this->total)) $this->getTotal(); |
|
| 26 | + } |
|
| 27 | 27 | |
| 28 | - function setExportDir($dir) |
|
| 29 | - { |
|
| 30 | - $dir = str_replace('\\','/',$dir); |
|
| 31 | - $dir = rtrim($dir, '/'); |
|
| 32 | - $this->targetDir = $dir; |
|
| 33 | - } |
|
| 28 | + function setExportDir($dir) |
|
| 29 | + { |
|
| 30 | + $dir = str_replace('\\','/',$dir); |
|
| 31 | + $dir = rtrim($dir, '/'); |
|
| 32 | + $this->targetDir = $dir; |
|
| 33 | + } |
|
| 34 | 34 | |
| 35 | - function get_mtime() |
|
| 36 | - { |
|
| 37 | - $mtime = microtime(); |
|
| 38 | - $mtime = explode(' ', $mtime); |
|
| 39 | - $mtime = $mtime[1] + $mtime[0]; |
|
| 40 | - return $mtime; |
|
| 41 | - } |
|
| 35 | + function get_mtime() |
|
| 36 | + { |
|
| 37 | + $mtime = microtime(); |
|
| 38 | + $mtime = explode(' ', $mtime); |
|
| 39 | + $mtime = $mtime[1] + $mtime[0]; |
|
| 40 | + return $mtime; |
|
| 41 | + } |
|
| 42 | 42 | |
| 43 | - function setUrlMode() |
|
| 44 | - { |
|
| 45 | - global $modx; |
|
| 43 | + function setUrlMode() |
|
| 44 | + { |
|
| 45 | + global $modx; |
|
| 46 | 46 | |
| 47 | - if($modx->config['friendly_urls']==0) |
|
| 48 | - { |
|
| 49 | - $modx->config['friendly_urls'] = 1; |
|
| 50 | - $modx->config['use_alias_path'] = 1; |
|
| 51 | - $modx->clearCache('full'); |
|
| 52 | - } |
|
| 53 | - $modx->config['make_folders'] = '1'; |
|
| 54 | - } |
|
| 47 | + if($modx->config['friendly_urls']==0) |
|
| 48 | + { |
|
| 49 | + $modx->config['friendly_urls'] = 1; |
|
| 50 | + $modx->config['use_alias_path'] = 1; |
|
| 51 | + $modx->clearCache('full'); |
|
| 52 | + } |
|
| 53 | + $modx->config['make_folders'] = '1'; |
|
| 54 | + } |
|
| 55 | 55 | |
| 56 | - function getTotal($ignore_ids='', $noncache='0') |
|
| 57 | - { |
|
| 58 | - global $modx; |
|
| 59 | - $tbl_site_content = $modx->getFullTableName('site_content'); |
|
| 56 | + function getTotal($ignore_ids='', $noncache='0') |
|
| 57 | + { |
|
| 58 | + global $modx; |
|
| 59 | + $tbl_site_content = $modx->getFullTableName('site_content'); |
|
| 60 | 60 | |
| 61 | - $ignore_ids = array_filter(array_map('intval', explode(',', $ignore_ids))); |
|
| 62 | - if(count($ignore_ids)>0) |
|
| 63 | - { |
|
| 64 | - $ignore_ids = "AND NOT id IN ('".implode("','", $ignore_ids)."')"; |
|
| 65 | - } else { |
|
| 66 | - $ignore_ids = ''; |
|
| 67 | - } |
|
| 61 | + $ignore_ids = array_filter(array_map('intval', explode(',', $ignore_ids))); |
|
| 62 | + if(count($ignore_ids)>0) |
|
| 63 | + { |
|
| 64 | + $ignore_ids = "AND NOT id IN ('".implode("','", $ignore_ids)."')"; |
|
| 65 | + } else { |
|
| 66 | + $ignore_ids = ''; |
|
| 67 | + } |
|
| 68 | 68 | |
| 69 | - $this->ignore_ids = $ignore_ids; |
|
| 69 | + $this->ignore_ids = $ignore_ids; |
|
| 70 | 70 | |
| 71 | - $noncache = ($noncache == 1) ? '' : 'AND cacheable=1'; |
|
| 72 | - $where = "deleted=0 AND ((published=1 AND type='document') OR (isfolder=1)) {$noncache} {$ignore_ids}"; |
|
| 73 | - $rs = $modx->db->select('count(id)',$tbl_site_content,$where); |
|
| 74 | - $this->total = $modx->db->getValue($rs); |
|
| 75 | - return $this->total; |
|
| 76 | - } |
|
| 71 | + $noncache = ($noncache == 1) ? '' : 'AND cacheable=1'; |
|
| 72 | + $where = "deleted=0 AND ((published=1 AND type='document') OR (isfolder=1)) {$noncache} {$ignore_ids}"; |
|
| 73 | + $rs = $modx->db->select('count(id)',$tbl_site_content,$where); |
|
| 74 | + $this->total = $modx->db->getValue($rs); |
|
| 75 | + return $this->total; |
|
| 76 | + } |
|
| 77 | 77 | |
| 78 | - function removeDirectoryAll($directory='') |
|
| 79 | - { |
|
| 80 | - if(empty($directory)) $directory = $this->targetDir; |
|
| 81 | - $directory = rtrim($directory,'/'); |
|
| 82 | - // if the path is not valid or is not a directory ... |
|
| 83 | - if(empty($directory)) return false; |
|
| 84 | - if(strpos($directory,MODX_BASE_PATH)===false) return FALSE; |
|
| 78 | + function removeDirectoryAll($directory='') |
|
| 79 | + { |
|
| 80 | + if(empty($directory)) $directory = $this->targetDir; |
|
| 81 | + $directory = rtrim($directory,'/'); |
|
| 82 | + // if the path is not valid or is not a directory ... |
|
| 83 | + if(empty($directory)) return false; |
|
| 84 | + if(strpos($directory,MODX_BASE_PATH)===false) return FALSE; |
|
| 85 | 85 | |
| 86 | - if(!is_dir($directory)) return FALSE; |
|
| 87 | - elseif(!is_readable($directory)) return FALSE; |
|
| 88 | - else |
|
| 89 | - { |
|
| 90 | - $files = glob($directory . '/*'); |
|
| 91 | - if(!empty($files)) |
|
| 92 | - { |
|
| 93 | - foreach($files as $path) |
|
| 94 | - { |
|
| 95 | - if(is_dir($path)) $this->removeDirectoryAll($path); |
|
| 96 | - else $rs = unlink($path); |
|
| 97 | - } |
|
| 98 | - } |
|
| 99 | - } |
|
| 100 | - if($directory !== $this->targetDir) $rs = rmdir($directory); |
|
| 86 | + if(!is_dir($directory)) return FALSE; |
|
| 87 | + elseif(!is_readable($directory)) return FALSE; |
|
| 88 | + else |
|
| 89 | + { |
|
| 90 | + $files = glob($directory . '/*'); |
|
| 91 | + if(!empty($files)) |
|
| 92 | + { |
|
| 93 | + foreach($files as $path) |
|
| 94 | + { |
|
| 95 | + if(is_dir($path)) $this->removeDirectoryAll($path); |
|
| 96 | + else $rs = unlink($path); |
|
| 97 | + } |
|
| 98 | + } |
|
| 99 | + } |
|
| 100 | + if($directory !== $this->targetDir) $rs = rmdir($directory); |
|
| 101 | 101 | |
| 102 | - return $rs; |
|
| 103 | - } |
|
| 102 | + return $rs; |
|
| 103 | + } |
|
| 104 | 104 | |
| 105 | - function makeFile($docid, $filepath) |
|
| 106 | - { |
|
| 107 | - global $modx,$_lang; |
|
| 108 | - $file_permission = octdec($modx->config['new_file_permissions']); |
|
| 109 | - if($this->generate_mode==='direct') |
|
| 110 | - { |
|
| 111 | - $back_lang = $_lang; |
|
| 112 | - $src = $modx->executeParser($docid); |
|
| 105 | + function makeFile($docid, $filepath) |
|
| 106 | + { |
|
| 107 | + global $modx,$_lang; |
|
| 108 | + $file_permission = octdec($modx->config['new_file_permissions']); |
|
| 109 | + if($this->generate_mode==='direct') |
|
| 110 | + { |
|
| 111 | + $back_lang = $_lang; |
|
| 112 | + $src = $modx->executeParser($docid); |
|
| 113 | 113 | |
| 114 | - $_lang = $back_lang; |
|
| 115 | - } |
|
| 116 | - else $src = $this->curl_get_contents(MODX_SITE_URL . "index.php?id={$docid}"); |
|
| 114 | + $_lang = $back_lang; |
|
| 115 | + } |
|
| 116 | + else $src = $this->curl_get_contents(MODX_SITE_URL . "index.php?id={$docid}"); |
|
| 117 | 117 | |
| 118 | 118 | |
| 119 | - if($src !== false) |
|
| 120 | - { |
|
| 121 | - if($this->repl_before!==$this->repl_after) $src = str_replace($this->repl_before,$this->repl_after,$src); |
|
| 122 | - $result = file_put_contents($filepath,$src); |
|
| 123 | - if($result!==false) @chmod($filepath, $file_permission); |
|
| 119 | + if($src !== false) |
|
| 120 | + { |
|
| 121 | + if($this->repl_before!==$this->repl_after) $src = str_replace($this->repl_before,$this->repl_after,$src); |
|
| 122 | + $result = file_put_contents($filepath,$src); |
|
| 123 | + if($result!==false) @chmod($filepath, $file_permission); |
|
| 124 | 124 | |
| 125 | - if($result !== false) return 'success'; |
|
| 126 | - else return 'failed_no_write'; |
|
| 127 | - } |
|
| 128 | - else return 'failed_no_retrieve'; |
|
| 129 | - } |
|
| 125 | + if($result !== false) return 'success'; |
|
| 126 | + else return 'failed_no_write'; |
|
| 127 | + } |
|
| 128 | + else return 'failed_no_retrieve'; |
|
| 129 | + } |
|
| 130 | 130 | |
| 131 | - function getFileName($docid, $alias='', $prefix, $suffix) |
|
| 132 | - { |
|
| 133 | - global $modx; |
|
| 131 | + function getFileName($docid, $alias='', $prefix, $suffix) |
|
| 132 | + { |
|
| 133 | + global $modx; |
|
| 134 | 134 | |
| 135 | - if($alias==='') $filename = $prefix.$docid.$suffix; |
|
| 136 | - else |
|
| 137 | - { |
|
| 138 | - if($modx->config['suffix_mode']==='1' && strpos($alias, '.')!==false) |
|
| 139 | - { |
|
| 140 | - $suffix = ''; |
|
| 141 | - } |
|
| 142 | - $filename = $prefix.$alias.$suffix; |
|
| 143 | - } |
|
| 144 | - return $filename; |
|
| 145 | - } |
|
| 135 | + if($alias==='') $filename = $prefix.$docid.$suffix; |
|
| 136 | + else |
|
| 137 | + { |
|
| 138 | + if($modx->config['suffix_mode']==='1' && strpos($alias, '.')!==false) |
|
| 139 | + { |
|
| 140 | + $suffix = ''; |
|
| 141 | + } |
|
| 142 | + $filename = $prefix.$alias.$suffix; |
|
| 143 | + } |
|
| 144 | + return $filename; |
|
| 145 | + } |
|
| 146 | 146 | |
| 147 | - function run($parent=0) |
|
| 148 | - { |
|
| 149 | - global $_lang; |
|
| 150 | - global $modx; |
|
| 147 | + function run($parent=0) |
|
| 148 | + { |
|
| 149 | + global $_lang; |
|
| 150 | + global $modx; |
|
| 151 | 151 | |
| 152 | - $tbl_site_content = $modx->getFullTableName('site_content'); |
|
| 152 | + $tbl_site_content = $modx->getFullTableName('site_content'); |
|
| 153 | 153 | |
| 154 | - $ignore_ids = $this->ignore_ids; |
|
| 155 | - $dirpath = $this->targetDir . '/'; |
|
| 154 | + $ignore_ids = $this->ignore_ids; |
|
| 155 | + $dirpath = $this->targetDir . '/'; |
|
| 156 | 156 | |
| 157 | - $prefix = $modx->config['friendly_url_prefix']; |
|
| 158 | - $suffix = $modx->config['friendly_url_suffix']; |
|
| 157 | + $prefix = $modx->config['friendly_url_prefix']; |
|
| 158 | + $suffix = $modx->config['friendly_url_suffix']; |
|
| 159 | 159 | |
| 160 | - $tpl = ' <span class="[+status+]">[+msg1+]</span> [+msg2+]</span>'; |
|
| 161 | - $ph = array(); |
|
| 160 | + $tpl = ' <span class="[+status+]">[+msg1+]</span> [+msg2+]</span>'; |
|
| 161 | + $ph = array(); |
|
| 162 | 162 | |
| 163 | - $ph['status'] = 'fail'; |
|
| 164 | - $ph['msg1'] = $_lang['export_site_failed']; |
|
| 165 | - $ph['msg2'] = $_lang["export_site_failed_no_write"] . ' - ' . $dirpath; |
|
| 166 | - $msg_failed_no_write = $this->parsePlaceholder($tpl,$ph); |
|
| 163 | + $ph['status'] = 'fail'; |
|
| 164 | + $ph['msg1'] = $_lang['export_site_failed']; |
|
| 165 | + $ph['msg2'] = $_lang["export_site_failed_no_write"] . ' - ' . $dirpath; |
|
| 166 | + $msg_failed_no_write = $this->parsePlaceholder($tpl,$ph); |
|
| 167 | 167 | |
| 168 | - $ph['msg2'] = $_lang["export_site_failed_no_retrieve"]; |
|
| 169 | - $msg_failed_no_retrieve = $this->parsePlaceholder($tpl,$ph); |
|
| 168 | + $ph['msg2'] = $_lang["export_site_failed_no_retrieve"]; |
|
| 169 | + $msg_failed_no_retrieve = $this->parsePlaceholder($tpl,$ph); |
|
| 170 | 170 | |
| 171 | - $ph['status'] = 'success'; |
|
| 172 | - $ph['msg1'] = $_lang['export_site_success']; |
|
| 173 | - $ph['msg2'] = ''; |
|
| 174 | - $msg_success = $this->parsePlaceholder($tpl,$ph); |
|
| 171 | + $ph['status'] = 'success'; |
|
| 172 | + $ph['msg1'] = $_lang['export_site_success']; |
|
| 173 | + $ph['msg2'] = ''; |
|
| 174 | + $msg_success = $this->parsePlaceholder($tpl,$ph); |
|
| 175 | 175 | |
| 176 | - $ph['msg2'] = $_lang['export_site_success_skip_doc']; |
|
| 177 | - $msg_success_skip_doc = $this->parsePlaceholder($tpl,$ph); |
|
| 176 | + $ph['msg2'] = $_lang['export_site_success_skip_doc']; |
|
| 177 | + $msg_success_skip_doc = $this->parsePlaceholder($tpl,$ph); |
|
| 178 | 178 | |
| 179 | - $ph['msg2'] = $_lang['export_site_success_skip_dir']; |
|
| 180 | - $msg_success_skip_dir = $this->parsePlaceholder($tpl,$ph); |
|
| 179 | + $ph['msg2'] = $_lang['export_site_success_skip_dir']; |
|
| 180 | + $msg_success_skip_dir = $this->parsePlaceholder($tpl,$ph); |
|
| 181 | 181 | |
| 182 | - $fields = "id, alias, pagetitle, isfolder, (content = '' AND template = 0) AS wasNull, published"; |
|
| 183 | - $noncache = $_POST['includenoncache']==1 ? '' : 'AND cacheable=1'; |
|
| 184 | - $where = "parent = '{$parent}' AND deleted=0 AND ((published=1 AND type='document') OR (isfolder=1)) {$noncache} {$ignore_ids}"; |
|
| 185 | - $rs = $modx->db->select($fields,$tbl_site_content,$where); |
|
| 182 | + $fields = "id, alias, pagetitle, isfolder, (content = '' AND template = 0) AS wasNull, published"; |
|
| 183 | + $noncache = $_POST['includenoncache']==1 ? '' : 'AND cacheable=1'; |
|
| 184 | + $where = "parent = '{$parent}' AND deleted=0 AND ((published=1 AND type='document') OR (isfolder=1)) {$noncache} {$ignore_ids}"; |
|
| 185 | + $rs = $modx->db->select($fields,$tbl_site_content,$where); |
|
| 186 | 186 | |
| 187 | - $ph = array(); |
|
| 188 | - $ph['total'] = $this->total; |
|
| 189 | - $folder_permission = octdec($modx->config['new_folder_permissions']); |
|
| 190 | - while($row = $modx->db->getRow($rs)) |
|
| 191 | - { |
|
| 192 | - $this->count++; |
|
| 187 | + $ph = array(); |
|
| 188 | + $ph['total'] = $this->total; |
|
| 189 | + $folder_permission = octdec($modx->config['new_folder_permissions']); |
|
| 190 | + while($row = $modx->db->getRow($rs)) |
|
| 191 | + { |
|
| 192 | + $this->count++; |
|
| 193 | 193 | |
| 194 | - $row['count'] = $this->count; |
|
| 195 | - $row['url'] = $modx->makeUrl($row['id']); |
|
| 194 | + $row['count'] = $this->count; |
|
| 195 | + $row['url'] = $modx->makeUrl($row['id']); |
|
| 196 | 196 | |
| 197 | - if (!$row['wasNull']) |
|
| 198 | - { // needs writing a document |
|
| 199 | - $docname = $this->getFileName($row['id'], $row['alias'], $prefix, $suffix); |
|
| 200 | - $filename = $dirpath.$docname; |
|
| 201 | - if (!is_file($filename)) |
|
| 202 | - { |
|
| 203 | - if($row['published']==='1') |
|
| 204 | - { |
|
| 205 | - $status = $this->makeFile($row['id'], $filename); |
|
| 206 | - switch($status) |
|
| 207 | - { |
|
| 208 | - case 'failed_no_write' : |
|
| 197 | + if (!$row['wasNull']) |
|
| 198 | + { // needs writing a document |
|
| 199 | + $docname = $this->getFileName($row['id'], $row['alias'], $prefix, $suffix); |
|
| 200 | + $filename = $dirpath.$docname; |
|
| 201 | + if (!is_file($filename)) |
|
| 202 | + { |
|
| 203 | + if($row['published']==='1') |
|
| 204 | + { |
|
| 205 | + $status = $this->makeFile($row['id'], $filename); |
|
| 206 | + switch($status) |
|
| 207 | + { |
|
| 208 | + case 'failed_no_write' : |
|
| 209 | 209 | $row['status'] = $msg_failed_no_write; |
| 210 | 210 | break; |
| 211 | - case 'failed_no_retrieve': |
|
| 211 | + case 'failed_no_retrieve': |
|
| 212 | 212 | $row['status'] = $msg_failed_no_retrieve; |
| 213 | 213 | break; |
| 214 | - default: |
|
| 214 | + default: |
|
| 215 | 215 | $row['status'] = $msg_success; |
| 216 | - } |
|
| 217 | - } |
|
| 218 | - else $row['status'] = $msg_failed_no_retrieve; |
|
| 219 | - } |
|
| 220 | - else $row['status'] = $msg_success_skip_doc; |
|
| 221 | - $this->output[] = $this->parsePlaceholder($_lang['export_site_exporting_document'], $row); |
|
| 222 | - } |
|
| 223 | - else |
|
| 224 | - { |
|
| 225 | - $row['status'] = $msg_success_skip_dir; |
|
| 226 | - $this->output[] = $this->parsePlaceholder($_lang['export_site_exporting_document'], $row); |
|
| 227 | - } |
|
| 228 | - if ($row['isfolder']==='1' && ($modx->config['suffix_mode']!=='1' || strpos($row['alias'],'.')===false)) |
|
| 229 | - { // needs making a folder |
|
| 230 | - $end_dir = ($row['alias']!=='') ? $row['alias'] : $row['id']; |
|
| 231 | - $dir_path = $dirpath . $end_dir; |
|
| 232 | - if(strpos($dir_path,MODX_BASE_PATH)===false) return FALSE; |
|
| 233 | - if (!is_dir($dir_path)) |
|
| 234 | - { |
|
| 235 | - if (is_file($dir_path)) @unlink($dir_path); |
|
| 236 | - mkdir($dir_path); |
|
| 237 | - @chmod($dir_path, $folder_permission); |
|
| 216 | + } |
|
| 217 | + } |
|
| 218 | + else $row['status'] = $msg_failed_no_retrieve; |
|
| 219 | + } |
|
| 220 | + else $row['status'] = $msg_success_skip_doc; |
|
| 221 | + $this->output[] = $this->parsePlaceholder($_lang['export_site_exporting_document'], $row); |
|
| 222 | + } |
|
| 223 | + else |
|
| 224 | + { |
|
| 225 | + $row['status'] = $msg_success_skip_dir; |
|
| 226 | + $this->output[] = $this->parsePlaceholder($_lang['export_site_exporting_document'], $row); |
|
| 227 | + } |
|
| 228 | + if ($row['isfolder']==='1' && ($modx->config['suffix_mode']!=='1' || strpos($row['alias'],'.')===false)) |
|
| 229 | + { // needs making a folder |
|
| 230 | + $end_dir = ($row['alias']!=='') ? $row['alias'] : $row['id']; |
|
| 231 | + $dir_path = $dirpath . $end_dir; |
|
| 232 | + if(strpos($dir_path,MODX_BASE_PATH)===false) return FALSE; |
|
| 233 | + if (!is_dir($dir_path)) |
|
| 234 | + { |
|
| 235 | + if (is_file($dir_path)) @unlink($dir_path); |
|
| 236 | + mkdir($dir_path); |
|
| 237 | + @chmod($dir_path, $folder_permission); |
|
| 238 | 238 | |
| 239 | - } |
|
| 239 | + } |
|
| 240 | 240 | |
| 241 | 241 | |
| 242 | - if($modx->config['make_folders']==='1' && $row['published']==='1') |
|
| 243 | - { |
|
| 244 | - if(is_file($filename)) rename($filename,$dir_path . '/index.html'); |
|
| 245 | - } |
|
| 246 | - $this->targetDir = $dir_path; |
|
| 247 | - $this->run($row['id']); |
|
| 248 | - } |
|
| 249 | - } |
|
| 250 | - return implode("\n", $this->output); |
|
| 251 | - } |
|
| 242 | + if($modx->config['make_folders']==='1' && $row['published']==='1') |
|
| 243 | + { |
|
| 244 | + if(is_file($filename)) rename($filename,$dir_path . '/index.html'); |
|
| 245 | + } |
|
| 246 | + $this->targetDir = $dir_path; |
|
| 247 | + $this->run($row['id']); |
|
| 248 | + } |
|
| 249 | + } |
|
| 250 | + return implode("\n", $this->output); |
|
| 251 | + } |
|
| 252 | 252 | |
| 253 | 253 | function curl_get_contents($url, $timeout = 30 ) |
| 254 | 254 | { |
| 255 | - if(!function_exists('curl_init')) return @file_get_contents($url); |
|
| 255 | + if(!function_exists('curl_init')) return @file_get_contents($url); |
|
| 256 | 256 | |
| 257 | 257 | $ch = curl_init(); |
| 258 | 258 | curl_setopt($ch, CURLOPT_URL, $url); |
@@ -269,12 +269,12 @@ discard block |
||
| 269 | 269 | |
| 270 | 270 | function parsePlaceholder($tpl,$ph=array()) |
| 271 | 271 | { |
| 272 | - foreach($ph as $k=>$v) |
|
| 273 | - { |
|
| 274 | - $k = "[+{$k}+]"; |
|
| 275 | - $tpl = str_replace($k,$v,$tpl); |
|
| 276 | - } |
|
| 277 | - return $tpl; |
|
| 272 | + foreach($ph as $k=>$v) |
|
| 273 | + { |
|
| 274 | + $k = "[+{$k}+]"; |
|
| 275 | + $tpl = str_replace($k,$v,$tpl); |
|
| 276 | + } |
|
| 277 | + return $tpl; |
|
| 278 | 278 | } |
| 279 | 279 | |
| 280 | 280 | } |
@@ -15,19 +15,19 @@ discard block |
||
| 15 | 15 | { |
| 16 | 16 | global $modx; |
| 17 | 17 | |
| 18 | - if(!defined('MODX_BASE_PATH')) return false; |
|
| 18 | + if (!defined('MODX_BASE_PATH')) return false; |
|
| 19 | 19 | $this->exportstart = $this->get_mtime(); |
| 20 | 20 | $this->count = 0; |
| 21 | 21 | $this->setUrlMode(); |
| 22 | 22 | $this->dirCheckCount = 0; |
| 23 | 23 | $this->generate_mode = 'crawl'; |
| 24 | - $this->targetDir = $modx->config['base_path'] . 'temp/export'; |
|
| 25 | - if(!isset($this->total)) $this->getTotal(); |
|
| 24 | + $this->targetDir = $modx->config['base_path'].'temp/export'; |
|
| 25 | + if (!isset($this->total)) $this->getTotal(); |
|
| 26 | 26 | } |
| 27 | 27 | |
| 28 | 28 | function setExportDir($dir) |
| 29 | 29 | { |
| 30 | - $dir = str_replace('\\','/',$dir); |
|
| 30 | + $dir = str_replace('\\', '/', $dir); |
|
| 31 | 31 | $dir = rtrim($dir, '/'); |
| 32 | 32 | $this->targetDir = $dir; |
| 33 | 33 | } |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | { |
| 45 | 45 | global $modx; |
| 46 | 46 | |
| 47 | - if($modx->config['friendly_urls']==0) |
|
| 47 | + if ($modx->config['friendly_urls'] == 0) |
|
| 48 | 48 | { |
| 49 | 49 | $modx->config['friendly_urls'] = 1; |
| 50 | 50 | $modx->config['use_alias_path'] = 1; |
@@ -53,13 +53,13 @@ discard block |
||
| 53 | 53 | $modx->config['make_folders'] = '1'; |
| 54 | 54 | } |
| 55 | 55 | |
| 56 | - function getTotal($ignore_ids='', $noncache='0') |
|
| 56 | + function getTotal($ignore_ids = '', $noncache = '0') |
|
| 57 | 57 | { |
| 58 | 58 | global $modx; |
| 59 | 59 | $tbl_site_content = $modx->getFullTableName('site_content'); |
| 60 | 60 | |
| 61 | 61 | $ignore_ids = array_filter(array_map('intval', explode(',', $ignore_ids))); |
| 62 | - if(count($ignore_ids)>0) |
|
| 62 | + if (count($ignore_ids) > 0) |
|
| 63 | 63 | { |
| 64 | 64 | $ignore_ids = "AND NOT id IN ('".implode("','", $ignore_ids)."')"; |
| 65 | 65 | } else { |
@@ -70,72 +70,72 @@ discard block |
||
| 70 | 70 | |
| 71 | 71 | $noncache = ($noncache == 1) ? '' : 'AND cacheable=1'; |
| 72 | 72 | $where = "deleted=0 AND ((published=1 AND type='document') OR (isfolder=1)) {$noncache} {$ignore_ids}"; |
| 73 | - $rs = $modx->db->select('count(id)',$tbl_site_content,$where); |
|
| 73 | + $rs = $modx->db->select('count(id)', $tbl_site_content, $where); |
|
| 74 | 74 | $this->total = $modx->db->getValue($rs); |
| 75 | 75 | return $this->total; |
| 76 | 76 | } |
| 77 | 77 | |
| 78 | - function removeDirectoryAll($directory='') |
|
| 78 | + function removeDirectoryAll($directory = '') |
|
| 79 | 79 | { |
| 80 | - if(empty($directory)) $directory = $this->targetDir; |
|
| 81 | - $directory = rtrim($directory,'/'); |
|
| 80 | + if (empty($directory)) $directory = $this->targetDir; |
|
| 81 | + $directory = rtrim($directory, '/'); |
|
| 82 | 82 | // if the path is not valid or is not a directory ... |
| 83 | - if(empty($directory)) return false; |
|
| 84 | - if(strpos($directory,MODX_BASE_PATH)===false) return FALSE; |
|
| 83 | + if (empty($directory)) return false; |
|
| 84 | + if (strpos($directory, MODX_BASE_PATH) === false) return FALSE; |
|
| 85 | 85 | |
| 86 | - if(!is_dir($directory)) return FALSE; |
|
| 87 | - elseif(!is_readable($directory)) return FALSE; |
|
| 86 | + if (!is_dir($directory)) return FALSE; |
|
| 87 | + elseif (!is_readable($directory)) return FALSE; |
|
| 88 | 88 | else |
| 89 | 89 | { |
| 90 | - $files = glob($directory . '/*'); |
|
| 91 | - if(!empty($files)) |
|
| 90 | + $files = glob($directory.'/*'); |
|
| 91 | + if (!empty($files)) |
|
| 92 | 92 | { |
| 93 | - foreach($files as $path) |
|
| 93 | + foreach ($files as $path) |
|
| 94 | 94 | { |
| 95 | - if(is_dir($path)) $this->removeDirectoryAll($path); |
|
| 95 | + if (is_dir($path)) $this->removeDirectoryAll($path); |
|
| 96 | 96 | else $rs = unlink($path); |
| 97 | 97 | } |
| 98 | 98 | } |
| 99 | 99 | } |
| 100 | - if($directory !== $this->targetDir) $rs = rmdir($directory); |
|
| 100 | + if ($directory !== $this->targetDir) $rs = rmdir($directory); |
|
| 101 | 101 | |
| 102 | 102 | return $rs; |
| 103 | 103 | } |
| 104 | 104 | |
| 105 | 105 | function makeFile($docid, $filepath) |
| 106 | 106 | { |
| 107 | - global $modx,$_lang; |
|
| 107 | + global $modx, $_lang; |
|
| 108 | 108 | $file_permission = octdec($modx->config['new_file_permissions']); |
| 109 | - if($this->generate_mode==='direct') |
|
| 109 | + if ($this->generate_mode === 'direct') |
|
| 110 | 110 | { |
| 111 | 111 | $back_lang = $_lang; |
| 112 | 112 | $src = $modx->executeParser($docid); |
| 113 | 113 | |
| 114 | 114 | $_lang = $back_lang; |
| 115 | 115 | } |
| 116 | - else $src = $this->curl_get_contents(MODX_SITE_URL . "index.php?id={$docid}"); |
|
| 116 | + else $src = $this->curl_get_contents(MODX_SITE_URL."index.php?id={$docid}"); |
|
| 117 | 117 | |
| 118 | 118 | |
| 119 | - if($src !== false) |
|
| 119 | + if ($src !== false) |
|
| 120 | 120 | { |
| 121 | - if($this->repl_before!==$this->repl_after) $src = str_replace($this->repl_before,$this->repl_after,$src); |
|
| 122 | - $result = file_put_contents($filepath,$src); |
|
| 123 | - if($result!==false) @chmod($filepath, $file_permission); |
|
| 121 | + if ($this->repl_before !== $this->repl_after) $src = str_replace($this->repl_before, $this->repl_after, $src); |
|
| 122 | + $result = file_put_contents($filepath, $src); |
|
| 123 | + if ($result !== false) @chmod($filepath, $file_permission); |
|
| 124 | 124 | |
| 125 | - if($result !== false) return 'success'; |
|
| 125 | + if ($result !== false) return 'success'; |
|
| 126 | 126 | else return 'failed_no_write'; |
| 127 | 127 | } |
| 128 | 128 | else return 'failed_no_retrieve'; |
| 129 | 129 | } |
| 130 | 130 | |
| 131 | - function getFileName($docid, $alias='', $prefix, $suffix) |
|
| 131 | + function getFileName($docid, $alias = '', $prefix, $suffix) |
|
| 132 | 132 | { |
| 133 | 133 | global $modx; |
| 134 | 134 | |
| 135 | - if($alias==='') $filename = $prefix.$docid.$suffix; |
|
| 135 | + if ($alias === '') $filename = $prefix.$docid.$suffix; |
|
| 136 | 136 | else |
| 137 | 137 | { |
| 138 | - if($modx->config['suffix_mode']==='1' && strpos($alias, '.')!==false) |
|
| 138 | + if ($modx->config['suffix_mode'] === '1' && strpos($alias, '.') !== false) |
|
| 139 | 139 | { |
| 140 | 140 | $suffix = ''; |
| 141 | 141 | } |
@@ -144,7 +144,7 @@ discard block |
||
| 144 | 144 | return $filename; |
| 145 | 145 | } |
| 146 | 146 | |
| 147 | - function run($parent=0) |
|
| 147 | + function run($parent = 0) |
|
| 148 | 148 | { |
| 149 | 149 | global $_lang; |
| 150 | 150 | global $modx; |
@@ -152,7 +152,7 @@ discard block |
||
| 152 | 152 | $tbl_site_content = $modx->getFullTableName('site_content'); |
| 153 | 153 | |
| 154 | 154 | $ignore_ids = $this->ignore_ids; |
| 155 | - $dirpath = $this->targetDir . '/'; |
|
| 155 | + $dirpath = $this->targetDir.'/'; |
|
| 156 | 156 | |
| 157 | 157 | $prefix = $modx->config['friendly_url_prefix']; |
| 158 | 158 | $suffix = $modx->config['friendly_url_suffix']; |
@@ -162,36 +162,36 @@ discard block |
||
| 162 | 162 | |
| 163 | 163 | $ph['status'] = 'fail'; |
| 164 | 164 | $ph['msg1'] = $_lang['export_site_failed']; |
| 165 | - $ph['msg2'] = $_lang["export_site_failed_no_write"] . ' - ' . $dirpath; |
|
| 166 | - $msg_failed_no_write = $this->parsePlaceholder($tpl,$ph); |
|
| 165 | + $ph['msg2'] = $_lang["export_site_failed_no_write"].' - '.$dirpath; |
|
| 166 | + $msg_failed_no_write = $this->parsePlaceholder($tpl, $ph); |
|
| 167 | 167 | |
| 168 | 168 | $ph['msg2'] = $_lang["export_site_failed_no_retrieve"]; |
| 169 | - $msg_failed_no_retrieve = $this->parsePlaceholder($tpl,$ph); |
|
| 169 | + $msg_failed_no_retrieve = $this->parsePlaceholder($tpl, $ph); |
|
| 170 | 170 | |
| 171 | 171 | $ph['status'] = 'success'; |
| 172 | 172 | $ph['msg1'] = $_lang['export_site_success']; |
| 173 | 173 | $ph['msg2'] = ''; |
| 174 | - $msg_success = $this->parsePlaceholder($tpl,$ph); |
|
| 174 | + $msg_success = $this->parsePlaceholder($tpl, $ph); |
|
| 175 | 175 | |
| 176 | 176 | $ph['msg2'] = $_lang['export_site_success_skip_doc']; |
| 177 | - $msg_success_skip_doc = $this->parsePlaceholder($tpl,$ph); |
|
| 177 | + $msg_success_skip_doc = $this->parsePlaceholder($tpl, $ph); |
|
| 178 | 178 | |
| 179 | 179 | $ph['msg2'] = $_lang['export_site_success_skip_dir']; |
| 180 | - $msg_success_skip_dir = $this->parsePlaceholder($tpl,$ph); |
|
| 180 | + $msg_success_skip_dir = $this->parsePlaceholder($tpl, $ph); |
|
| 181 | 181 | |
| 182 | 182 | $fields = "id, alias, pagetitle, isfolder, (content = '' AND template = 0) AS wasNull, published"; |
| 183 | - $noncache = $_POST['includenoncache']==1 ? '' : 'AND cacheable=1'; |
|
| 183 | + $noncache = $_POST['includenoncache'] == 1 ? '' : 'AND cacheable=1'; |
|
| 184 | 184 | $where = "parent = '{$parent}' AND deleted=0 AND ((published=1 AND type='document') OR (isfolder=1)) {$noncache} {$ignore_ids}"; |
| 185 | - $rs = $modx->db->select($fields,$tbl_site_content,$where); |
|
| 185 | + $rs = $modx->db->select($fields, $tbl_site_content, $where); |
|
| 186 | 186 | |
| 187 | 187 | $ph = array(); |
| 188 | - $ph['total'] = $this->total; |
|
| 188 | + $ph['total'] = $this->total; |
|
| 189 | 189 | $folder_permission = octdec($modx->config['new_folder_permissions']); |
| 190 | - while($row = $modx->db->getRow($rs)) |
|
| 190 | + while ($row = $modx->db->getRow($rs)) |
|
| 191 | 191 | { |
| 192 | 192 | $this->count++; |
| 193 | 193 | |
| 194 | - $row['count'] = $this->count; |
|
| 194 | + $row['count'] = $this->count; |
|
| 195 | 195 | $row['url'] = $modx->makeUrl($row['id']); |
| 196 | 196 | |
| 197 | 197 | if (!$row['wasNull']) |
@@ -200,10 +200,10 @@ discard block |
||
| 200 | 200 | $filename = $dirpath.$docname; |
| 201 | 201 | if (!is_file($filename)) |
| 202 | 202 | { |
| 203 | - if($row['published']==='1') |
|
| 203 | + if ($row['published'] === '1') |
|
| 204 | 204 | { |
| 205 | 205 | $status = $this->makeFile($row['id'], $filename); |
| 206 | - switch($status) |
|
| 206 | + switch ($status) |
|
| 207 | 207 | { |
| 208 | 208 | case 'failed_no_write' : |
| 209 | 209 | $row['status'] = $msg_failed_no_write; |
@@ -225,11 +225,11 @@ discard block |
||
| 225 | 225 | $row['status'] = $msg_success_skip_dir; |
| 226 | 226 | $this->output[] = $this->parsePlaceholder($_lang['export_site_exporting_document'], $row); |
| 227 | 227 | } |
| 228 | - if ($row['isfolder']==='1' && ($modx->config['suffix_mode']!=='1' || strpos($row['alias'],'.')===false)) |
|
| 228 | + if ($row['isfolder'] === '1' && ($modx->config['suffix_mode'] !== '1' || strpos($row['alias'], '.') === false)) |
|
| 229 | 229 | { // needs making a folder |
| 230 | - $end_dir = ($row['alias']!=='') ? $row['alias'] : $row['id']; |
|
| 231 | - $dir_path = $dirpath . $end_dir; |
|
| 232 | - if(strpos($dir_path,MODX_BASE_PATH)===false) return FALSE; |
|
| 230 | + $end_dir = ($row['alias'] !== '') ? $row['alias'] : $row['id']; |
|
| 231 | + $dir_path = $dirpath.$end_dir; |
|
| 232 | + if (strpos($dir_path, MODX_BASE_PATH) === false) return FALSE; |
|
| 233 | 233 | if (!is_dir($dir_path)) |
| 234 | 234 | { |
| 235 | 235 | if (is_file($dir_path)) @unlink($dir_path); |
@@ -239,9 +239,9 @@ discard block |
||
| 239 | 239 | } |
| 240 | 240 | |
| 241 | 241 | |
| 242 | - if($modx->config['make_folders']==='1' && $row['published']==='1') |
|
| 242 | + if ($modx->config['make_folders'] === '1' && $row['published'] === '1') |
|
| 243 | 243 | { |
| 244 | - if(is_file($filename)) rename($filename,$dir_path . '/index.html'); |
|
| 244 | + if (is_file($filename)) rename($filename, $dir_path.'/index.html'); |
|
| 245 | 245 | } |
| 246 | 246 | $this->targetDir = $dir_path; |
| 247 | 247 | $this->run($row['id']); |
@@ -250,16 +250,16 @@ discard block |
||
| 250 | 250 | return implode("\n", $this->output); |
| 251 | 251 | } |
| 252 | 252 | |
| 253 | - function curl_get_contents($url, $timeout = 30 ) |
|
| 253 | + function curl_get_contents($url, $timeout = 30) |
|
| 254 | 254 | { |
| 255 | - if(!function_exists('curl_init')) return @file_get_contents($url); |
|
| 255 | + if (!function_exists('curl_init')) return @file_get_contents($url); |
|
| 256 | 256 | |
| 257 | 257 | $ch = curl_init(); |
| 258 | 258 | curl_setopt($ch, CURLOPT_URL, $url); |
| 259 | - curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); // 0 = DO NOT VERIFY AUTHENTICITY OF SSL-CERT |
|
| 260 | - curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2); // 2 = CERT MUST INDICATE BEING CONNECTED TO RIGHT SERVER |
|
| 259 | + curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); // 0 = DO NOT VERIFY AUTHENTICITY OF SSL-CERT |
|
| 260 | + curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2); // 2 = CERT MUST INDICATE BEING CONNECTED TO RIGHT SERVER |
|
| 261 | 261 | curl_setopt($ch, CURLOPT_HEADER, false); |
| 262 | - curl_setopt($ch, CURLOPT_RETURNTRANSFER, true ); |
|
| 262 | + curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); |
|
| 263 | 263 | curl_setopt($ch, CURLOPT_TIMEOUT, $timeout); |
| 264 | 264 | curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); |
| 265 | 265 | $result = curl_exec($ch); |
@@ -267,12 +267,12 @@ discard block |
||
| 267 | 267 | return $result; |
| 268 | 268 | } |
| 269 | 269 | |
| 270 | - function parsePlaceholder($tpl,$ph=array()) |
|
| 270 | + function parsePlaceholder($tpl, $ph = array()) |
|
| 271 | 271 | { |
| 272 | - foreach($ph as $k=>$v) |
|
| 272 | + foreach ($ph as $k=>$v) |
|
| 273 | 273 | { |
| 274 | 274 | $k = "[+{$k}+]"; |
| 275 | - $tpl = str_replace($k,$v,$tpl); |
|
| 275 | + $tpl = str_replace($k, $v, $tpl); |
|
| 276 | 276 | } |
| 277 | 277 | return $tpl; |
| 278 | 278 | } |
@@ -15,14 +15,18 @@ discard block |
||
| 15 | 15 | { |
| 16 | 16 | global $modx; |
| 17 | 17 | |
| 18 | - if(!defined('MODX_BASE_PATH')) return false; |
|
| 18 | + if(!defined('MODX_BASE_PATH')) { |
|
| 19 | + return false; |
|
| 20 | + } |
|
| 19 | 21 | $this->exportstart = $this->get_mtime(); |
| 20 | 22 | $this->count = 0; |
| 21 | 23 | $this->setUrlMode(); |
| 22 | 24 | $this->dirCheckCount = 0; |
| 23 | 25 | $this->generate_mode = 'crawl'; |
| 24 | 26 | $this->targetDir = $modx->config['base_path'] . 'temp/export'; |
| 25 | - if(!isset($this->total)) $this->getTotal(); |
|
| 27 | + if(!isset($this->total)) { |
|
| 28 | + $this->getTotal(); |
|
| 29 | + } |
|
| 26 | 30 | } |
| 27 | 31 | |
| 28 | 32 | function setExportDir($dir) |
@@ -44,8 +48,7 @@ discard block |
||
| 44 | 48 | { |
| 45 | 49 | global $modx; |
| 46 | 50 | |
| 47 | - if($modx->config['friendly_urls']==0) |
|
| 48 | - { |
|
| 51 | + if($modx->config['friendly_urls']==0) { |
|
| 49 | 52 | $modx->config['friendly_urls'] = 1; |
| 50 | 53 | $modx->config['use_alias_path'] = 1; |
| 51 | 54 | $modx->clearCache('full'); |
@@ -59,8 +62,7 @@ discard block |
||
| 59 | 62 | $tbl_site_content = $modx->getFullTableName('site_content'); |
| 60 | 63 | |
| 61 | 64 | $ignore_ids = array_filter(array_map('intval', explode(',', $ignore_ids))); |
| 62 | - if(count($ignore_ids)>0) |
|
| 63 | - { |
|
| 65 | + if(count($ignore_ids)>0) { |
|
| 64 | 66 | $ignore_ids = "AND NOT id IN ('".implode("','", $ignore_ids)."')"; |
| 65 | 67 | } else { |
| 66 | 68 | $ignore_ids = ''; |
@@ -77,27 +79,37 @@ discard block |
||
| 77 | 79 | |
| 78 | 80 | function removeDirectoryAll($directory='') |
| 79 | 81 | { |
| 80 | - if(empty($directory)) $directory = $this->targetDir; |
|
| 82 | + if(empty($directory)) { |
|
| 83 | + $directory = $this->targetDir; |
|
| 84 | + } |
|
| 81 | 85 | $directory = rtrim($directory,'/'); |
| 82 | 86 | // if the path is not valid or is not a directory ... |
| 83 | - if(empty($directory)) return false; |
|
| 84 | - if(strpos($directory,MODX_BASE_PATH)===false) return FALSE; |
|
| 87 | + if(empty($directory)) { |
|
| 88 | + return false; |
|
| 89 | + } |
|
| 90 | + if(strpos($directory,MODX_BASE_PATH)===false) { |
|
| 91 | + return FALSE; |
|
| 92 | + } |
|
| 85 | 93 | |
| 86 | - if(!is_dir($directory)) return FALSE; |
|
| 87 | - elseif(!is_readable($directory)) return FALSE; |
|
| 88 | - else |
|
| 89 | - { |
|
| 94 | + if(!is_dir($directory)) { |
|
| 95 | + return FALSE; |
|
| 96 | + } elseif(!is_readable($directory)) { |
|
| 97 | + return FALSE; |
|
| 98 | + } else { |
|
| 90 | 99 | $files = glob($directory . '/*'); |
| 91 | - if(!empty($files)) |
|
| 92 | - { |
|
| 93 | - foreach($files as $path) |
|
| 94 | - { |
|
| 95 | - if(is_dir($path)) $this->removeDirectoryAll($path); |
|
| 96 | - else $rs = unlink($path); |
|
| 100 | + if(!empty($files)) { |
|
| 101 | + foreach($files as $path) { |
|
| 102 | + if(is_dir($path)) { |
|
| 103 | + $this->removeDirectoryAll($path); |
|
| 104 | + } else { |
|
| 105 | + $rs = unlink($path); |
|
| 106 | + } |
|
| 97 | 107 | } |
| 98 | 108 | } |
| 99 | 109 | } |
| 100 | - if($directory !== $this->targetDir) $rs = rmdir($directory); |
|
| 110 | + if($directory !== $this->targetDir) { |
|
| 111 | + $rs = rmdir($directory); |
|
| 112 | + } |
|
| 101 | 113 | |
| 102 | 114 | return $rs; |
| 103 | 115 | } |
@@ -106,37 +118,43 @@ discard block |
||
| 106 | 118 | { |
| 107 | 119 | global $modx,$_lang; |
| 108 | 120 | $file_permission = octdec($modx->config['new_file_permissions']); |
| 109 | - if($this->generate_mode==='direct') |
|
| 110 | - { |
|
| 121 | + if($this->generate_mode==='direct') { |
|
| 111 | 122 | $back_lang = $_lang; |
| 112 | 123 | $src = $modx->executeParser($docid); |
| 113 | 124 | |
| 114 | 125 | $_lang = $back_lang; |
| 126 | + } else { |
|
| 127 | + $src = $this->curl_get_contents(MODX_SITE_URL . "index.php?id={$docid}"); |
|
| 115 | 128 | } |
| 116 | - else $src = $this->curl_get_contents(MODX_SITE_URL . "index.php?id={$docid}"); |
|
| 117 | 129 | |
| 118 | 130 | |
| 119 | - if($src !== false) |
|
| 120 | - { |
|
| 121 | - if($this->repl_before!==$this->repl_after) $src = str_replace($this->repl_before,$this->repl_after,$src); |
|
| 131 | + if($src !== false) { |
|
| 132 | + if($this->repl_before!==$this->repl_after) { |
|
| 133 | + $src = str_replace($this->repl_before,$this->repl_after,$src); |
|
| 134 | + } |
|
| 122 | 135 | $result = file_put_contents($filepath,$src); |
| 123 | - if($result!==false) @chmod($filepath, $file_permission); |
|
| 136 | + if($result!==false) { |
|
| 137 | + @chmod($filepath, $file_permission); |
|
| 138 | + } |
|
| 124 | 139 | |
| 125 | - if($result !== false) return 'success'; |
|
| 126 | - else return 'failed_no_write'; |
|
| 140 | + if($result !== false) { |
|
| 141 | + return 'success'; |
|
| 142 | + } else { |
|
| 143 | + return 'failed_no_write'; |
|
| 144 | + } |
|
| 145 | + } else { |
|
| 146 | + return 'failed_no_retrieve'; |
|
| 127 | 147 | } |
| 128 | - else return 'failed_no_retrieve'; |
|
| 129 | 148 | } |
| 130 | 149 | |
| 131 | 150 | function getFileName($docid, $alias='', $prefix, $suffix) |
| 132 | 151 | { |
| 133 | 152 | global $modx; |
| 134 | 153 | |
| 135 | - if($alias==='') $filename = $prefix.$docid.$suffix; |
|
| 136 | - else |
|
| 137 | - { |
|
| 138 | - if($modx->config['suffix_mode']==='1' && strpos($alias, '.')!==false) |
|
| 139 | - { |
|
| 154 | + if($alias==='') { |
|
| 155 | + $filename = $prefix.$docid.$suffix; |
|
| 156 | + } else { |
|
| 157 | + if($modx->config['suffix_mode']==='1' && strpos($alias, '.')!==false) { |
|
| 140 | 158 | $suffix = ''; |
| 141 | 159 | } |
| 142 | 160 | $filename = $prefix.$alias.$suffix; |
@@ -187,24 +205,20 @@ discard block |
||
| 187 | 205 | $ph = array(); |
| 188 | 206 | $ph['total'] = $this->total; |
| 189 | 207 | $folder_permission = octdec($modx->config['new_folder_permissions']); |
| 190 | - while($row = $modx->db->getRow($rs)) |
|
| 191 | - { |
|
| 208 | + while($row = $modx->db->getRow($rs)) { |
|
| 192 | 209 | $this->count++; |
| 193 | 210 | |
| 194 | 211 | $row['count'] = $this->count; |
| 195 | 212 | $row['url'] = $modx->makeUrl($row['id']); |
| 196 | 213 | |
| 197 | - if (!$row['wasNull']) |
|
| 198 | - { // needs writing a document |
|
| 214 | + if (!$row['wasNull']) { |
|
| 215 | +// needs writing a document |
|
| 199 | 216 | $docname = $this->getFileName($row['id'], $row['alias'], $prefix, $suffix); |
| 200 | 217 | $filename = $dirpath.$docname; |
| 201 | - if (!is_file($filename)) |
|
| 202 | - { |
|
| 203 | - if($row['published']==='1') |
|
| 204 | - { |
|
| 218 | + if (!is_file($filename)) { |
|
| 219 | + if($row['published']==='1') { |
|
| 205 | 220 | $status = $this->makeFile($row['id'], $filename); |
| 206 | - switch($status) |
|
| 207 | - { |
|
| 221 | + switch($status) { |
|
| 208 | 222 | case 'failed_no_write' : |
| 209 | 223 | $row['status'] = $msg_failed_no_write; |
| 210 | 224 | break; |
@@ -214,34 +228,38 @@ discard block |
||
| 214 | 228 | default: |
| 215 | 229 | $row['status'] = $msg_success; |
| 216 | 230 | } |
| 231 | + } else { |
|
| 232 | + $row['status'] = $msg_failed_no_retrieve; |
|
| 217 | 233 | } |
| 218 | - else $row['status'] = $msg_failed_no_retrieve; |
|
| 234 | + } else { |
|
| 235 | + $row['status'] = $msg_success_skip_doc; |
|
| 219 | 236 | } |
| 220 | - else $row['status'] = $msg_success_skip_doc; |
|
| 221 | 237 | $this->output[] = $this->parsePlaceholder($_lang['export_site_exporting_document'], $row); |
| 222 | - } |
|
| 223 | - else |
|
| 224 | - { |
|
| 238 | + } else { |
|
| 225 | 239 | $row['status'] = $msg_success_skip_dir; |
| 226 | 240 | $this->output[] = $this->parsePlaceholder($_lang['export_site_exporting_document'], $row); |
| 227 | 241 | } |
| 228 | - if ($row['isfolder']==='1' && ($modx->config['suffix_mode']!=='1' || strpos($row['alias'],'.')===false)) |
|
| 229 | - { // needs making a folder |
|
| 242 | + if ($row['isfolder']==='1' && ($modx->config['suffix_mode']!=='1' || strpos($row['alias'],'.')===false)) { |
|
| 243 | +// needs making a folder |
|
| 230 | 244 | $end_dir = ($row['alias']!=='') ? $row['alias'] : $row['id']; |
| 231 | 245 | $dir_path = $dirpath . $end_dir; |
| 232 | - if(strpos($dir_path,MODX_BASE_PATH)===false) return FALSE; |
|
| 233 | - if (!is_dir($dir_path)) |
|
| 234 | - { |
|
| 235 | - if (is_file($dir_path)) @unlink($dir_path); |
|
| 246 | + if(strpos($dir_path,MODX_BASE_PATH)===false) { |
|
| 247 | + return FALSE; |
|
| 248 | + } |
|
| 249 | + if (!is_dir($dir_path)) { |
|
| 250 | + if (is_file($dir_path)) { |
|
| 251 | + @unlink($dir_path); |
|
| 252 | + } |
|
| 236 | 253 | mkdir($dir_path); |
| 237 | 254 | @chmod($dir_path, $folder_permission); |
| 238 | 255 | |
| 239 | 256 | } |
| 240 | 257 | |
| 241 | 258 | |
| 242 | - if($modx->config['make_folders']==='1' && $row['published']==='1') |
|
| 243 | - { |
|
| 244 | - if(is_file($filename)) rename($filename,$dir_path . '/index.html'); |
|
| 259 | + if($modx->config['make_folders']==='1' && $row['published']==='1') { |
|
| 260 | + if(is_file($filename)) { |
|
| 261 | + rename($filename,$dir_path . '/index.html'); |
|
| 262 | + } |
|
| 245 | 263 | } |
| 246 | 264 | $this->targetDir = $dir_path; |
| 247 | 265 | $this->run($row['id']); |
@@ -252,7 +270,9 @@ discard block |
||
| 252 | 270 | |
| 253 | 271 | function curl_get_contents($url, $timeout = 30 ) |
| 254 | 272 | { |
| 255 | - if(!function_exists('curl_init')) return @file_get_contents($url); |
|
| 273 | + if(!function_exists('curl_init')) { |
|
| 274 | + return @file_get_contents($url); |
|
| 275 | + } |
|
| 256 | 276 | |
| 257 | 277 | $ch = curl_init(); |
| 258 | 278 | curl_setopt($ch, CURLOPT_URL, $url); |
@@ -269,8 +289,7 @@ discard block |
||
| 269 | 289 | |
| 270 | 290 | function parsePlaceholder($tpl,$ph=array()) |
| 271 | 291 | { |
| 272 | - foreach($ph as $k=>$v) |
|
| 273 | - { |
|
| 292 | + foreach($ph as $k=>$v) { |
|
| 274 | 293 | $k = "[+{$k}+]"; |
| 275 | 294 | $tpl = str_replace($k,$v,$tpl); |
| 276 | 295 | } |
@@ -81,10 +81,10 @@ discard block |
||
| 81 | 81 | $directory = rtrim($directory,'/'); |
| 82 | 82 | // if the path is not valid or is not a directory ... |
| 83 | 83 | if(empty($directory)) return false; |
| 84 | - if(strpos($directory,MODX_BASE_PATH)===false) return FALSE; |
|
| 84 | + if(strpos($directory,MODX_BASE_PATH)===false) return false; |
|
| 85 | 85 | |
| 86 | - if(!is_dir($directory)) return FALSE; |
|
| 87 | - elseif(!is_readable($directory)) return FALSE; |
|
| 86 | + if(!is_dir($directory)) return false; |
|
| 87 | + elseif(!is_readable($directory)) return false; |
|
| 88 | 88 | else |
| 89 | 89 | { |
| 90 | 90 | $files = glob($directory . '/*'); |
@@ -229,7 +229,7 @@ discard block |
||
| 229 | 229 | { // needs making a folder |
| 230 | 230 | $end_dir = ($row['alias']!=='') ? $row['alias'] : $row['id']; |
| 231 | 231 | $dir_path = $dirpath . $end_dir; |
| 232 | - if(strpos($dir_path,MODX_BASE_PATH)===false) return FALSE; |
|
| 232 | + if(strpos($dir_path,MODX_BASE_PATH)===false) return false; |
|
| 233 | 233 | if (!is_dir($dir_path)) |
| 234 | 234 | { |
| 235 | 235 | if (is_file($dir_path)) @unlink($dir_path); |
@@ -192,6 +192,9 @@ |
||
| 192 | 192 | return $_; |
| 193 | 193 | } |
| 194 | 194 | |
| 195 | + /** |
|
| 196 | + * @param string $checksum |
|
| 197 | + */ |
|
| 195 | 198 | function setSystemChecksum($checksum) { |
| 196 | 199 | global $modx; |
| 197 | 200 | $tbl_system_settings = $modx->getFullTableName('system_settings'); |
@@ -10,215 +10,215 @@ |
||
| 10 | 10 | // Content manager wrapper class |
| 11 | 11 | class ManagerAPI { |
| 12 | 12 | |
| 13 | - var $action; // action directive |
|
| 13 | + var $action; // action directive |
|
| 14 | 14 | |
| 15 | - function __construct(){ |
|
| 16 | - global $action; |
|
| 17 | - $this->action = $action; // set action directive |
|
| 18 | - } |
|
| 15 | + function __construct(){ |
|
| 16 | + global $action; |
|
| 17 | + $this->action = $action; // set action directive |
|
| 18 | + } |
|
| 19 | 19 | |
| 20 | - function initPageViewState($id=0){ |
|
| 21 | - global $_PAGE; |
|
| 22 | - $vsid = isset($_SESSION["mgrPageViewSID"]) ? $_SESSION["mgrPageViewSID"] : ''; |
|
| 23 | - if($vsid!=$this->action) { |
|
| 24 | - $_SESSION["mgrPageViewSDATA"] = array(); // new view state |
|
| 25 | - $_SESSION["mgrPageViewSID"] = $id>0 ? $id:$this->action; // set id |
|
| 26 | - } |
|
| 27 | - $_PAGE['vs'] = &$_SESSION["mgrPageViewSDATA"]; // restore viewstate |
|
| 28 | - } |
|
| 20 | + function initPageViewState($id=0){ |
|
| 21 | + global $_PAGE; |
|
| 22 | + $vsid = isset($_SESSION["mgrPageViewSID"]) ? $_SESSION["mgrPageViewSID"] : ''; |
|
| 23 | + if($vsid!=$this->action) { |
|
| 24 | + $_SESSION["mgrPageViewSDATA"] = array(); // new view state |
|
| 25 | + $_SESSION["mgrPageViewSID"] = $id>0 ? $id:$this->action; // set id |
|
| 26 | + } |
|
| 27 | + $_PAGE['vs'] = &$_SESSION["mgrPageViewSDATA"]; // restore viewstate |
|
| 28 | + } |
|
| 29 | 29 | |
| 30 | - // save page view state - not really necessary, |
|
| 31 | - function savePageViewState($id=0){ |
|
| 32 | - global $_PAGE; |
|
| 33 | - $_SESSION["mgrPageViewSDATA"] = $_PAGE['vs']; |
|
| 34 | - $_SESSION["mgrPageViewSID"] = $id>0 ? $id:$this->action; |
|
| 35 | - } |
|
| 30 | + // save page view state - not really necessary, |
|
| 31 | + function savePageViewState($id=0){ |
|
| 32 | + global $_PAGE; |
|
| 33 | + $_SESSION["mgrPageViewSDATA"] = $_PAGE['vs']; |
|
| 34 | + $_SESSION["mgrPageViewSID"] = $id>0 ? $id:$this->action; |
|
| 35 | + } |
|
| 36 | 36 | |
| 37 | - // check for saved form |
|
| 38 | - function hasFormValues() { |
|
| 39 | - if(isset($_SESSION["mgrFormValueId"])) { |
|
| 40 | - if($this->action==$_SESSION["mgrFormValueId"]) { |
|
| 41 | - return true; |
|
| 42 | - } |
|
| 43 | - else { |
|
| 44 | - $this->clearSavedFormValues(); |
|
| 45 | - } |
|
| 46 | - } |
|
| 47 | - return false; |
|
| 48 | - } |
|
| 49 | - // saved form post from $_POST |
|
| 50 | - function saveFormValues($id=0){ |
|
| 51 | - $_SESSION["mgrFormValues"] = $_POST; |
|
| 52 | - $_SESSION["mgrFormValueId"] = $id>0 ? $id:$this->action; |
|
| 53 | - } |
|
| 54 | - // load saved form values into $_POST |
|
| 55 | - function loadFormValues(){ |
|
| 37 | + // check for saved form |
|
| 38 | + function hasFormValues() { |
|
| 39 | + if(isset($_SESSION["mgrFormValueId"])) { |
|
| 40 | + if($this->action==$_SESSION["mgrFormValueId"]) { |
|
| 41 | + return true; |
|
| 42 | + } |
|
| 43 | + else { |
|
| 44 | + $this->clearSavedFormValues(); |
|
| 45 | + } |
|
| 46 | + } |
|
| 47 | + return false; |
|
| 48 | + } |
|
| 49 | + // saved form post from $_POST |
|
| 50 | + function saveFormValues($id=0){ |
|
| 51 | + $_SESSION["mgrFormValues"] = $_POST; |
|
| 52 | + $_SESSION["mgrFormValueId"] = $id>0 ? $id:$this->action; |
|
| 53 | + } |
|
| 54 | + // load saved form values into $_POST |
|
| 55 | + function loadFormValues(){ |
|
| 56 | 56 | |
| 57 | - if(!$this->hasFormValues()) return false; |
|
| 57 | + if(!$this->hasFormValues()) return false; |
|
| 58 | 58 | |
| 59 | - $p = $_SESSION["mgrFormValues"]; |
|
| 60 | - $this->clearSavedFormValues(); |
|
| 61 | - foreach($p as $k=>$v) { |
|
| 62 | - $_POST[$k]=$v; |
|
| 63 | - } |
|
| 64 | - return true; |
|
| 65 | - } |
|
| 66 | - // clear form post |
|
| 67 | - function clearSavedFormValues(){ |
|
| 68 | - unset($_SESSION["mgrFormValues"]); |
|
| 69 | - unset($_SESSION["mgrFormValueId"]); |
|
| 70 | - } |
|
| 59 | + $p = $_SESSION["mgrFormValues"]; |
|
| 60 | + $this->clearSavedFormValues(); |
|
| 61 | + foreach($p as $k=>$v) { |
|
| 62 | + $_POST[$k]=$v; |
|
| 63 | + } |
|
| 64 | + return true; |
|
| 65 | + } |
|
| 66 | + // clear form post |
|
| 67 | + function clearSavedFormValues(){ |
|
| 68 | + unset($_SESSION["mgrFormValues"]); |
|
| 69 | + unset($_SESSION["mgrFormValueId"]); |
|
| 70 | + } |
|
| 71 | 71 | |
| 72 | - function getHashType($db_value='') { // md5 | v1 | phpass |
|
| 73 | - $c = substr($db_value,0,1); |
|
| 74 | - if($c==='$') return 'phpass'; |
|
| 75 | - elseif(strlen($db_value)===32) return 'md5'; |
|
| 76 | - elseif($c!=='$' && strpos($db_value,'>')!==false) return 'v1'; |
|
| 77 | - else return 'unknown'; |
|
| 78 | - } |
|
| 72 | + function getHashType($db_value='') { // md5 | v1 | phpass |
|
| 73 | + $c = substr($db_value,0,1); |
|
| 74 | + if($c==='$') return 'phpass'; |
|
| 75 | + elseif(strlen($db_value)===32) return 'md5'; |
|
| 76 | + elseif($c!=='$' && strpos($db_value,'>')!==false) return 'v1'; |
|
| 77 | + else return 'unknown'; |
|
| 78 | + } |
|
| 79 | 79 | |
| 80 | - function genV1Hash($password, $seed='1') |
|
| 81 | - { // $seed is user_id basically |
|
| 82 | - global $modx; |
|
| 80 | + function genV1Hash($password, $seed='1') |
|
| 81 | + { // $seed is user_id basically |
|
| 82 | + global $modx; |
|
| 83 | 83 | |
| 84 | - if(isset($modx->config['pwd_hash_algo']) && !empty($modx->config['pwd_hash_algo'])) |
|
| 85 | - $algorithm = $modx->config['pwd_hash_algo']; |
|
| 86 | - else $algorithm = 'UNCRYPT'; |
|
| 84 | + if(isset($modx->config['pwd_hash_algo']) && !empty($modx->config['pwd_hash_algo'])) |
|
| 85 | + $algorithm = $modx->config['pwd_hash_algo']; |
|
| 86 | + else $algorithm = 'UNCRYPT'; |
|
| 87 | 87 | |
| 88 | - $salt = md5($password . $seed); |
|
| 88 | + $salt = md5($password . $seed); |
|
| 89 | 89 | |
| 90 | - switch($algorithm) |
|
| 91 | - { |
|
| 92 | - case 'BLOWFISH_Y': |
|
| 93 | - $salt = '$2y$07$' . substr($salt,0,22); |
|
| 94 | - break; |
|
| 95 | - case 'BLOWFISH_A': |
|
| 96 | - $salt = '$2a$07$' . substr($salt,0,22); |
|
| 97 | - break; |
|
| 98 | - case 'SHA512': |
|
| 99 | - $salt = '$6$' . substr($salt,0,16); |
|
| 100 | - break; |
|
| 101 | - case 'SHA256': |
|
| 102 | - $salt = '$5$' . substr($salt,0,16); |
|
| 103 | - break; |
|
| 104 | - case 'MD5': |
|
| 105 | - $salt = '$1$' . substr($salt,0,8); |
|
| 106 | - break; |
|
| 107 | - } |
|
| 90 | + switch($algorithm) |
|
| 91 | + { |
|
| 92 | + case 'BLOWFISH_Y': |
|
| 93 | + $salt = '$2y$07$' . substr($salt,0,22); |
|
| 94 | + break; |
|
| 95 | + case 'BLOWFISH_A': |
|
| 96 | + $salt = '$2a$07$' . substr($salt,0,22); |
|
| 97 | + break; |
|
| 98 | + case 'SHA512': |
|
| 99 | + $salt = '$6$' . substr($salt,0,16); |
|
| 100 | + break; |
|
| 101 | + case 'SHA256': |
|
| 102 | + $salt = '$5$' . substr($salt,0,16); |
|
| 103 | + break; |
|
| 104 | + case 'MD5': |
|
| 105 | + $salt = '$1$' . substr($salt,0,8); |
|
| 106 | + break; |
|
| 107 | + } |
|
| 108 | 108 | |
| 109 | - if($algorithm!=='UNCRYPT') |
|
| 110 | - { |
|
| 111 | - $password = sha1($password) . crypt($password,$salt); |
|
| 112 | - } |
|
| 113 | - else $password = sha1($salt.$password); |
|
| 109 | + if($algorithm!=='UNCRYPT') |
|
| 110 | + { |
|
| 111 | + $password = sha1($password) . crypt($password,$salt); |
|
| 112 | + } |
|
| 113 | + else $password = sha1($salt.$password); |
|
| 114 | 114 | |
| 115 | - $result = strtolower($algorithm) . '>' . md5($salt.$password) . substr(md5($salt),0,8); |
|
| 115 | + $result = strtolower($algorithm) . '>' . md5($salt.$password) . substr(md5($salt),0,8); |
|
| 116 | 116 | |
| 117 | - return $result; |
|
| 118 | - } |
|
| 117 | + return $result; |
|
| 118 | + } |
|
| 119 | 119 | |
| 120 | - function getV1UserHashAlgorithm($uid) |
|
| 121 | - { |
|
| 122 | - global $modx; |
|
| 123 | - $tbl_manager_users = $modx->getFullTableName('manager_users'); |
|
| 124 | - $rs = $modx->db->select('password',$tbl_manager_users,"id='{$uid}'"); |
|
| 125 | - $password = $modx->db->getValue($rs); |
|
| 120 | + function getV1UserHashAlgorithm($uid) |
|
| 121 | + { |
|
| 122 | + global $modx; |
|
| 123 | + $tbl_manager_users = $modx->getFullTableName('manager_users'); |
|
| 124 | + $rs = $modx->db->select('password',$tbl_manager_users,"id='{$uid}'"); |
|
| 125 | + $password = $modx->db->getValue($rs); |
|
| 126 | 126 | |
| 127 | - if(strpos($password,'>')===false) $algo = 'NOSALT'; |
|
| 128 | - else |
|
| 129 | - { |
|
| 130 | - $algo = substr($password,0,strpos($password,'>')); |
|
| 131 | - } |
|
| 132 | - return strtoupper($algo); |
|
| 133 | - } |
|
| 127 | + if(strpos($password,'>')===false) $algo = 'NOSALT'; |
|
| 128 | + else |
|
| 129 | + { |
|
| 130 | + $algo = substr($password,0,strpos($password,'>')); |
|
| 131 | + } |
|
| 132 | + return strtoupper($algo); |
|
| 133 | + } |
|
| 134 | 134 | |
| 135 | - function checkHashAlgorithm($algorithm='') |
|
| 136 | - { |
|
| 137 | - $result = false; |
|
| 138 | - if (!empty($algorithm)) |
|
| 139 | - { |
|
| 140 | - switch ($algorithm) |
|
| 141 | - { |
|
| 142 | - case 'BLOWFISH_Y': |
|
| 143 | - if (defined('CRYPT_BLOWFISH') && CRYPT_BLOWFISH == 1) |
|
| 144 | - { |
|
| 145 | - if (version_compare('5.3.7', PHP_VERSION) <= 0) $result = true; |
|
| 146 | - } |
|
| 147 | - break; |
|
| 148 | - case 'BLOWFISH_A': |
|
| 149 | - if (defined('CRYPT_BLOWFISH') && CRYPT_BLOWFISH == 1) $result = true; |
|
| 150 | - break; |
|
| 151 | - case 'SHA512': |
|
| 152 | - if (defined('CRYPT_SHA512') && CRYPT_SHA512 == 1) $result = true; |
|
| 153 | - break; |
|
| 154 | - case 'SHA256': |
|
| 155 | - if (defined('CRYPT_SHA256') && CRYPT_SHA256 == 1) $result = true; |
|
| 156 | - break; |
|
| 157 | - case 'MD5': |
|
| 158 | - if (defined('CRYPT_MD5') && CRYPT_MD5 == 1 && PHP_VERSION != '5.3.7') $result = true; |
|
| 159 | - break; |
|
| 160 | - case 'UNCRYPT': |
|
| 161 | - $result = true; |
|
| 162 | - break; |
|
| 163 | - } |
|
| 164 | - } |
|
| 165 | - return $result; |
|
| 166 | - } |
|
| 135 | + function checkHashAlgorithm($algorithm='') |
|
| 136 | + { |
|
| 137 | + $result = false; |
|
| 138 | + if (!empty($algorithm)) |
|
| 139 | + { |
|
| 140 | + switch ($algorithm) |
|
| 141 | + { |
|
| 142 | + case 'BLOWFISH_Y': |
|
| 143 | + if (defined('CRYPT_BLOWFISH') && CRYPT_BLOWFISH == 1) |
|
| 144 | + { |
|
| 145 | + if (version_compare('5.3.7', PHP_VERSION) <= 0) $result = true; |
|
| 146 | + } |
|
| 147 | + break; |
|
| 148 | + case 'BLOWFISH_A': |
|
| 149 | + if (defined('CRYPT_BLOWFISH') && CRYPT_BLOWFISH == 1) $result = true; |
|
| 150 | + break; |
|
| 151 | + case 'SHA512': |
|
| 152 | + if (defined('CRYPT_SHA512') && CRYPT_SHA512 == 1) $result = true; |
|
| 153 | + break; |
|
| 154 | + case 'SHA256': |
|
| 155 | + if (defined('CRYPT_SHA256') && CRYPT_SHA256 == 1) $result = true; |
|
| 156 | + break; |
|
| 157 | + case 'MD5': |
|
| 158 | + if (defined('CRYPT_MD5') && CRYPT_MD5 == 1 && PHP_VERSION != '5.3.7') $result = true; |
|
| 159 | + break; |
|
| 160 | + case 'UNCRYPT': |
|
| 161 | + $result = true; |
|
| 162 | + break; |
|
| 163 | + } |
|
| 164 | + } |
|
| 165 | + return $result; |
|
| 166 | + } |
|
| 167 | 167 | |
| 168 | - function getSystemChecksum($check_files) { |
|
| 169 | - $_ = array(); |
|
| 170 | - $check_files = trim($check_files); |
|
| 171 | - $check_files = explode("\n", $check_files); |
|
| 172 | - foreach($check_files as $file) { |
|
| 173 | - $file = trim($file); |
|
| 174 | - $file = MODX_BASE_PATH . $file; |
|
| 175 | - if(!is_file($file)) continue; |
|
| 176 | - $_[$file]= md5_file($file); |
|
| 177 | - } |
|
| 178 | - return serialize($_); |
|
| 179 | - } |
|
| 168 | + function getSystemChecksum($check_files) { |
|
| 169 | + $_ = array(); |
|
| 170 | + $check_files = trim($check_files); |
|
| 171 | + $check_files = explode("\n", $check_files); |
|
| 172 | + foreach($check_files as $file) { |
|
| 173 | + $file = trim($file); |
|
| 174 | + $file = MODX_BASE_PATH . $file; |
|
| 175 | + if(!is_file($file)) continue; |
|
| 176 | + $_[$file]= md5_file($file); |
|
| 177 | + } |
|
| 178 | + return serialize($_); |
|
| 179 | + } |
|
| 180 | 180 | |
| 181 | - function getModifiedSystemFilesList($check_files, $checksum) { |
|
| 182 | - $_ = array(); |
|
| 183 | - $check_files = trim($check_files); |
|
| 184 | - $check_files = explode("\n", $check_files); |
|
| 185 | - $checksum = unserialize($checksum); |
|
| 186 | - foreach($check_files as $file) { |
|
| 187 | - $file = trim($file); |
|
| 188 | - $filePath = MODX_BASE_PATH . $file; |
|
| 189 | - if(!is_file($filePath)) continue; |
|
| 190 | - if(md5_file($filePath) != $checksum[$filePath]) $_[] = $file; |
|
| 191 | - } |
|
| 192 | - return $_; |
|
| 193 | - } |
|
| 181 | + function getModifiedSystemFilesList($check_files, $checksum) { |
|
| 182 | + $_ = array(); |
|
| 183 | + $check_files = trim($check_files); |
|
| 184 | + $check_files = explode("\n", $check_files); |
|
| 185 | + $checksum = unserialize($checksum); |
|
| 186 | + foreach($check_files as $file) { |
|
| 187 | + $file = trim($file); |
|
| 188 | + $filePath = MODX_BASE_PATH . $file; |
|
| 189 | + if(!is_file($filePath)) continue; |
|
| 190 | + if(md5_file($filePath) != $checksum[$filePath]) $_[] = $file; |
|
| 191 | + } |
|
| 192 | + return $_; |
|
| 193 | + } |
|
| 194 | 194 | |
| 195 | - function setSystemChecksum($checksum) { |
|
| 196 | - global $modx; |
|
| 197 | - $tbl_system_settings = $modx->getFullTableName('system_settings'); |
|
| 198 | - $sql = "REPLACE INTO {$tbl_system_settings} (setting_name, setting_value) VALUES ('sys_files_checksum','" . $modx->db->escape($checksum) . "')"; |
|
| 195 | + function setSystemChecksum($checksum) { |
|
| 196 | + global $modx; |
|
| 197 | + $tbl_system_settings = $modx->getFullTableName('system_settings'); |
|
| 198 | + $sql = "REPLACE INTO {$tbl_system_settings} (setting_name, setting_value) VALUES ('sys_files_checksum','" . $modx->db->escape($checksum) . "')"; |
|
| 199 | 199 | $modx->db->query($sql); |
| 200 | - } |
|
| 200 | + } |
|
| 201 | 201 | |
| 202 | - function checkSystemChecksum() { |
|
| 203 | - global $modx; |
|
| 202 | + function checkSystemChecksum() { |
|
| 203 | + global $modx; |
|
| 204 | 204 | |
| 205 | - if(!isset($modx->config['check_files_onlogin']) || empty($modx->config['check_files_onlogin'])) return '0'; |
|
| 205 | + if(!isset($modx->config['check_files_onlogin']) || empty($modx->config['check_files_onlogin'])) return '0'; |
|
| 206 | 206 | |
| 207 | - $current = $this->getSystemChecksum($modx->config['check_files_onlogin']); |
|
| 208 | - if(empty($current)) return '0'; |
|
| 207 | + $current = $this->getSystemChecksum($modx->config['check_files_onlogin']); |
|
| 208 | + if(empty($current)) return '0'; |
|
| 209 | 209 | |
| 210 | - if(!isset($modx->config['sys_files_checksum']) || empty($modx->config['sys_files_checksum'])) |
|
| 211 | - { |
|
| 212 | - $this->setSystemChecksum($current); |
|
| 213 | - return '0'; |
|
| 214 | - } |
|
| 215 | - if($current===$modx->config['sys_files_checksum']) $result = '0'; |
|
| 216 | - else { |
|
| 217 | - $result = $this->getModifiedSystemFilesList($modx->config['check_files_onlogin'], $modx->config['sys_files_checksum']); |
|
| 218 | - } |
|
| 210 | + if(!isset($modx->config['sys_files_checksum']) || empty($modx->config['sys_files_checksum'])) |
|
| 211 | + { |
|
| 212 | + $this->setSystemChecksum($current); |
|
| 213 | + return '0'; |
|
| 214 | + } |
|
| 215 | + if($current===$modx->config['sys_files_checksum']) $result = '0'; |
|
| 216 | + else { |
|
| 217 | + $result = $this->getModifiedSystemFilesList($modx->config['check_files_onlogin'], $modx->config['sys_files_checksum']); |
|
| 218 | + } |
|
| 219 | 219 | |
| 220 | - return $result; |
|
| 221 | - } |
|
| 220 | + return $result; |
|
| 221 | + } |
|
| 222 | 222 | |
| 223 | 223 | function getLastUserSetting($key=false) { |
| 224 | 224 | global $modx; |
@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | global $_PAGE; // page view state object. Usage $_PAGE['vs']['propertyname'] = $value; |
| 9 | 9 | |
| 10 | 10 | // Content manager wrapper class |
| 11 | -class ManagerAPI { |
|
| 11 | +class ManagerAPI{ |
|
| 12 | 12 | |
| 13 | 13 | var $action; // action directive |
| 14 | 14 | |
@@ -17,27 +17,27 @@ discard block |
||
| 17 | 17 | $this->action = $action; // set action directive |
| 18 | 18 | } |
| 19 | 19 | |
| 20 | - function initPageViewState($id=0){ |
|
| 20 | + function initPageViewState($id = 0){ |
|
| 21 | 21 | global $_PAGE; |
| 22 | 22 | $vsid = isset($_SESSION["mgrPageViewSID"]) ? $_SESSION["mgrPageViewSID"] : ''; |
| 23 | - if($vsid!=$this->action) { |
|
| 23 | + if ($vsid != $this->action) { |
|
| 24 | 24 | $_SESSION["mgrPageViewSDATA"] = array(); // new view state |
| 25 | - $_SESSION["mgrPageViewSID"] = $id>0 ? $id:$this->action; // set id |
|
| 25 | + $_SESSION["mgrPageViewSID"] = $id > 0 ? $id : $this->action; // set id |
|
| 26 | 26 | } |
| 27 | 27 | $_PAGE['vs'] = &$_SESSION["mgrPageViewSDATA"]; // restore viewstate |
| 28 | 28 | } |
| 29 | 29 | |
| 30 | 30 | // save page view state - not really necessary, |
| 31 | - function savePageViewState($id=0){ |
|
| 31 | + function savePageViewState($id = 0){ |
|
| 32 | 32 | global $_PAGE; |
| 33 | 33 | $_SESSION["mgrPageViewSDATA"] = $_PAGE['vs']; |
| 34 | - $_SESSION["mgrPageViewSID"] = $id>0 ? $id:$this->action; |
|
| 34 | + $_SESSION["mgrPageViewSID"] = $id > 0 ? $id : $this->action; |
|
| 35 | 35 | } |
| 36 | 36 | |
| 37 | 37 | // check for saved form |
| 38 | - function hasFormValues() { |
|
| 39 | - if(isset($_SESSION["mgrFormValueId"])) { |
|
| 40 | - if($this->action==$_SESSION["mgrFormValueId"]) { |
|
| 38 | + function hasFormValues(){ |
|
| 39 | + if (isset($_SESSION["mgrFormValueId"])) { |
|
| 40 | + if ($this->action == $_SESSION["mgrFormValueId"]) { |
|
| 41 | 41 | return true; |
| 42 | 42 | } |
| 43 | 43 | else { |
@@ -47,19 +47,19 @@ discard block |
||
| 47 | 47 | return false; |
| 48 | 48 | } |
| 49 | 49 | // saved form post from $_POST |
| 50 | - function saveFormValues($id=0){ |
|
| 50 | + function saveFormValues($id = 0){ |
|
| 51 | 51 | $_SESSION["mgrFormValues"] = $_POST; |
| 52 | - $_SESSION["mgrFormValueId"] = $id>0 ? $id:$this->action; |
|
| 52 | + $_SESSION["mgrFormValueId"] = $id > 0 ? $id : $this->action; |
|
| 53 | 53 | } |
| 54 | 54 | // load saved form values into $_POST |
| 55 | 55 | function loadFormValues(){ |
| 56 | 56 | |
| 57 | - if(!$this->hasFormValues()) return false; |
|
| 57 | + if (!$this->hasFormValues()) return false; |
|
| 58 | 58 | |
| 59 | 59 | $p = $_SESSION["mgrFormValues"]; |
| 60 | 60 | $this->clearSavedFormValues(); |
| 61 | - foreach($p as $k=>$v) { |
|
| 62 | - $_POST[$k]=$v; |
|
| 61 | + foreach ($p as $k=>$v) { |
|
| 62 | + $_POST[$k] = $v; |
|
| 63 | 63 | } |
| 64 | 64 | return true; |
| 65 | 65 | } |
@@ -69,50 +69,50 @@ discard block |
||
| 69 | 69 | unset($_SESSION["mgrFormValueId"]); |
| 70 | 70 | } |
| 71 | 71 | |
| 72 | - function getHashType($db_value='') { // md5 | v1 | phpass |
|
| 73 | - $c = substr($db_value,0,1); |
|
| 74 | - if($c==='$') return 'phpass'; |
|
| 75 | - elseif(strlen($db_value)===32) return 'md5'; |
|
| 76 | - elseif($c!=='$' && strpos($db_value,'>')!==false) return 'v1'; |
|
| 72 | + function getHashType($db_value = ''){ // md5 | v1 | phpass |
|
| 73 | + $c = substr($db_value, 0, 1); |
|
| 74 | + if ($c === '$') return 'phpass'; |
|
| 75 | + elseif (strlen($db_value) === 32) return 'md5'; |
|
| 76 | + elseif ($c !== '$' && strpos($db_value, '>') !== false) return 'v1'; |
|
| 77 | 77 | else return 'unknown'; |
| 78 | 78 | } |
| 79 | 79 | |
| 80 | - function genV1Hash($password, $seed='1') |
|
| 80 | + function genV1Hash($password, $seed = '1') |
|
| 81 | 81 | { // $seed is user_id basically |
| 82 | 82 | global $modx; |
| 83 | 83 | |
| 84 | - if(isset($modx->config['pwd_hash_algo']) && !empty($modx->config['pwd_hash_algo'])) |
|
| 84 | + if (isset($modx->config['pwd_hash_algo']) && !empty($modx->config['pwd_hash_algo'])) |
|
| 85 | 85 | $algorithm = $modx->config['pwd_hash_algo']; |
| 86 | 86 | else $algorithm = 'UNCRYPT'; |
| 87 | 87 | |
| 88 | - $salt = md5($password . $seed); |
|
| 88 | + $salt = md5($password.$seed); |
|
| 89 | 89 | |
| 90 | - switch($algorithm) |
|
| 90 | + switch ($algorithm) |
|
| 91 | 91 | { |
| 92 | 92 | case 'BLOWFISH_Y': |
| 93 | - $salt = '$2y$07$' . substr($salt,0,22); |
|
| 93 | + $salt = '$2y$07$'.substr($salt, 0, 22); |
|
| 94 | 94 | break; |
| 95 | 95 | case 'BLOWFISH_A': |
| 96 | - $salt = '$2a$07$' . substr($salt,0,22); |
|
| 96 | + $salt = '$2a$07$'.substr($salt, 0, 22); |
|
| 97 | 97 | break; |
| 98 | 98 | case 'SHA512': |
| 99 | - $salt = '$6$' . substr($salt,0,16); |
|
| 99 | + $salt = '$6$'.substr($salt, 0, 16); |
|
| 100 | 100 | break; |
| 101 | 101 | case 'SHA256': |
| 102 | - $salt = '$5$' . substr($salt,0,16); |
|
| 102 | + $salt = '$5$'.substr($salt, 0, 16); |
|
| 103 | 103 | break; |
| 104 | 104 | case 'MD5': |
| 105 | - $salt = '$1$' . substr($salt,0,8); |
|
| 105 | + $salt = '$1$'.substr($salt, 0, 8); |
|
| 106 | 106 | break; |
| 107 | 107 | } |
| 108 | 108 | |
| 109 | - if($algorithm!=='UNCRYPT') |
|
| 109 | + if ($algorithm !== 'UNCRYPT') |
|
| 110 | 110 | { |
| 111 | - $password = sha1($password) . crypt($password,$salt); |
|
| 111 | + $password = sha1($password).crypt($password, $salt); |
|
| 112 | 112 | } |
| 113 | 113 | else $password = sha1($salt.$password); |
| 114 | 114 | |
| 115 | - $result = strtolower($algorithm) . '>' . md5($salt.$password) . substr(md5($salt),0,8); |
|
| 115 | + $result = strtolower($algorithm).'>'.md5($salt.$password).substr(md5($salt), 0, 8); |
|
| 116 | 116 | |
| 117 | 117 | return $result; |
| 118 | 118 | } |
@@ -121,18 +121,18 @@ discard block |
||
| 121 | 121 | { |
| 122 | 122 | global $modx; |
| 123 | 123 | $tbl_manager_users = $modx->getFullTableName('manager_users'); |
| 124 | - $rs = $modx->db->select('password',$tbl_manager_users,"id='{$uid}'"); |
|
| 124 | + $rs = $modx->db->select('password', $tbl_manager_users, "id='{$uid}'"); |
|
| 125 | 125 | $password = $modx->db->getValue($rs); |
| 126 | 126 | |
| 127 | - if(strpos($password,'>')===false) $algo = 'NOSALT'; |
|
| 127 | + if (strpos($password, '>') === false) $algo = 'NOSALT'; |
|
| 128 | 128 | else |
| 129 | 129 | { |
| 130 | - $algo = substr($password,0,strpos($password,'>')); |
|
| 130 | + $algo = substr($password, 0, strpos($password, '>')); |
|
| 131 | 131 | } |
| 132 | 132 | return strtoupper($algo); |
| 133 | 133 | } |
| 134 | 134 | |
| 135 | - function checkHashAlgorithm($algorithm='') |
|
| 135 | + function checkHashAlgorithm($algorithm = '') |
|
| 136 | 136 | { |
| 137 | 137 | $result = false; |
| 138 | 138 | if (!empty($algorithm)) |
@@ -165,54 +165,54 @@ discard block |
||
| 165 | 165 | return $result; |
| 166 | 166 | } |
| 167 | 167 | |
| 168 | - function getSystemChecksum($check_files) { |
|
| 168 | + function getSystemChecksum($check_files){ |
|
| 169 | 169 | $_ = array(); |
| 170 | 170 | $check_files = trim($check_files); |
| 171 | 171 | $check_files = explode("\n", $check_files); |
| 172 | - foreach($check_files as $file) { |
|
| 172 | + foreach ($check_files as $file) { |
|
| 173 | 173 | $file = trim($file); |
| 174 | - $file = MODX_BASE_PATH . $file; |
|
| 175 | - if(!is_file($file)) continue; |
|
| 176 | - $_[$file]= md5_file($file); |
|
| 174 | + $file = MODX_BASE_PATH.$file; |
|
| 175 | + if (!is_file($file)) continue; |
|
| 176 | + $_[$file] = md5_file($file); |
|
| 177 | 177 | } |
| 178 | 178 | return serialize($_); |
| 179 | 179 | } |
| 180 | 180 | |
| 181 | - function getModifiedSystemFilesList($check_files, $checksum) { |
|
| 181 | + function getModifiedSystemFilesList($check_files, $checksum){ |
|
| 182 | 182 | $_ = array(); |
| 183 | 183 | $check_files = trim($check_files); |
| 184 | 184 | $check_files = explode("\n", $check_files); |
| 185 | 185 | $checksum = unserialize($checksum); |
| 186 | - foreach($check_files as $file) { |
|
| 186 | + foreach ($check_files as $file) { |
|
| 187 | 187 | $file = trim($file); |
| 188 | - $filePath = MODX_BASE_PATH . $file; |
|
| 189 | - if(!is_file($filePath)) continue; |
|
| 190 | - if(md5_file($filePath) != $checksum[$filePath]) $_[] = $file; |
|
| 188 | + $filePath = MODX_BASE_PATH.$file; |
|
| 189 | + if (!is_file($filePath)) continue; |
|
| 190 | + if (md5_file($filePath) != $checksum[$filePath]) $_[] = $file; |
|
| 191 | 191 | } |
| 192 | 192 | return $_; |
| 193 | 193 | } |
| 194 | 194 | |
| 195 | - function setSystemChecksum($checksum) { |
|
| 195 | + function setSystemChecksum($checksum){ |
|
| 196 | 196 | global $modx; |
| 197 | 197 | $tbl_system_settings = $modx->getFullTableName('system_settings'); |
| 198 | - $sql = "REPLACE INTO {$tbl_system_settings} (setting_name, setting_value) VALUES ('sys_files_checksum','" . $modx->db->escape($checksum) . "')"; |
|
| 198 | + $sql = "REPLACE INTO {$tbl_system_settings} (setting_name, setting_value) VALUES ('sys_files_checksum','".$modx->db->escape($checksum)."')"; |
|
| 199 | 199 | $modx->db->query($sql); |
| 200 | 200 | } |
| 201 | 201 | |
| 202 | - function checkSystemChecksum() { |
|
| 202 | + function checkSystemChecksum(){ |
|
| 203 | 203 | global $modx; |
| 204 | 204 | |
| 205 | - if(!isset($modx->config['check_files_onlogin']) || empty($modx->config['check_files_onlogin'])) return '0'; |
|
| 205 | + if (!isset($modx->config['check_files_onlogin']) || empty($modx->config['check_files_onlogin'])) return '0'; |
|
| 206 | 206 | |
| 207 | 207 | $current = $this->getSystemChecksum($modx->config['check_files_onlogin']); |
| 208 | - if(empty($current)) return '0'; |
|
| 208 | + if (empty($current)) return '0'; |
|
| 209 | 209 | |
| 210 | - if(!isset($modx->config['sys_files_checksum']) || empty($modx->config['sys_files_checksum'])) |
|
| 210 | + if (!isset($modx->config['sys_files_checksum']) || empty($modx->config['sys_files_checksum'])) |
|
| 211 | 211 | { |
| 212 | 212 | $this->setSystemChecksum($current); |
| 213 | 213 | return '0'; |
| 214 | 214 | } |
| 215 | - if($current===$modx->config['sys_files_checksum']) $result = '0'; |
|
| 215 | + if ($current === $modx->config['sys_files_checksum']) $result = '0'; |
|
| 216 | 216 | else { |
| 217 | 217 | $result = $this->getModifiedSystemFilesList($modx->config['check_files_onlogin'], $modx->config['sys_files_checksum']); |
| 218 | 218 | } |
@@ -220,28 +220,28 @@ discard block |
||
| 220 | 220 | return $result; |
| 221 | 221 | } |
| 222 | 222 | |
| 223 | - function getLastUserSetting($key=false) { |
|
| 223 | + function getLastUserSetting($key = false){ |
|
| 224 | 224 | global $modx; |
| 225 | 225 | |
| 226 | 226 | $rs = $modx->db->select('*', $modx->getFullTableName('user_settings'), "user = '{$_SESSION['mgrInternalKey']}'"); |
| 227 | 227 | |
| 228 | - $usersettings = array (); |
|
| 228 | + $usersettings = array(); |
|
| 229 | 229 | while ($row = $modx->db->getRow($rs)) { |
| 230 | - if(substr($row['setting_name'], 0, 6) == '_LAST_') { |
|
| 230 | + if (substr($row['setting_name'], 0, 6) == '_LAST_') { |
|
| 231 | 231 | $name = substr($row['setting_name'], 6); |
| 232 | 232 | $usersettings[$name] = $row['setting_value']; |
| 233 | 233 | } |
| 234 | 234 | } |
| 235 | 235 | |
| 236 | - if(!$key) return $usersettings; |
|
| 236 | + if (!$key) return $usersettings; |
|
| 237 | 237 | else return isset($usersettings[$key]) ? $usersettings[$key] : NULL; |
| 238 | 238 | } |
| 239 | 239 | |
| 240 | - function saveLastUserSetting($settings, $val='') { |
|
| 240 | + function saveLastUserSetting($settings, $val = ''){ |
|
| 241 | 241 | global $modx; |
| 242 | 242 | |
| 243 | - if(!empty($settings)) { |
|
| 244 | - if(!is_array($settings)) $settings = array($settings=>$val); |
|
| 243 | + if (!empty($settings)) { |
|
| 244 | + if (!is_array($settings)) $settings = array($settings=>$val); |
|
| 245 | 245 | |
| 246 | 246 | foreach ($settings as $key => $val) { |
| 247 | 247 | $f = array(); |
@@ -256,7 +256,7 @@ discard block |
||
| 256 | 256 | } |
| 257 | 257 | } |
| 258 | 258 | |
| 259 | - function loadDatePicker($path) { |
|
| 259 | + function loadDatePicker($path){ |
|
| 260 | 260 | global $modx; |
| 261 | 261 | include_once($path); |
| 262 | 262 | $dp = new DATEPICKER(); |
@@ -8,16 +8,19 @@ discard block |
||
| 8 | 8 | global $_PAGE; // page view state object. Usage $_PAGE['vs']['propertyname'] = $value; |
| 9 | 9 | |
| 10 | 10 | // Content manager wrapper class |
| 11 | -class ManagerAPI { |
|
| 11 | +class ManagerAPI |
|
| 12 | +{ |
|
| 12 | 13 | |
| 13 | 14 | var $action; // action directive |
| 14 | 15 | |
| 15 | - function __construct(){ |
|
| 16 | + function __construct() |
|
| 17 | + { |
|
| 16 | 18 | global $action; |
| 17 | 19 | $this->action = $action; // set action directive |
| 18 | 20 | } |
| 19 | 21 | |
| 20 | - function initPageViewState($id=0){ |
|
| 22 | + function initPageViewState($id=0) |
|
| 23 | + { |
|
| 21 | 24 | global $_PAGE; |
| 22 | 25 | $vsid = isset($_SESSION["mgrPageViewSID"]) ? $_SESSION["mgrPageViewSID"] : ''; |
| 23 | 26 | if($vsid!=$this->action) { |
@@ -28,33 +31,38 @@ discard block |
||
| 28 | 31 | } |
| 29 | 32 | |
| 30 | 33 | // save page view state - not really necessary, |
| 31 | - function savePageViewState($id=0){ |
|
| 34 | + function savePageViewState($id=0) |
|
| 35 | + { |
|
| 32 | 36 | global $_PAGE; |
| 33 | 37 | $_SESSION["mgrPageViewSDATA"] = $_PAGE['vs']; |
| 34 | 38 | $_SESSION["mgrPageViewSID"] = $id>0 ? $id:$this->action; |
| 35 | 39 | } |
| 36 | 40 | |
| 37 | 41 | // check for saved form |
| 38 | - function hasFormValues() { |
|
| 39 | - if(isset($_SESSION["mgrFormValueId"])) { |
|
| 42 | + function hasFormValues() |
|
| 43 | + { |
|
| 44 | + if(isset($_SESSION["mgrFormValueId"])) { |
|
| 40 | 45 | if($this->action==$_SESSION["mgrFormValueId"]) { |
| 41 | 46 | return true; |
| 42 | - } |
|
| 43 | - else { |
|
| 47 | + } else { |
|
| 44 | 48 | $this->clearSavedFormValues(); |
| 45 | 49 | } |
| 46 | 50 | } |
| 47 | 51 | return false; |
| 48 | 52 | } |
| 49 | 53 | // saved form post from $_POST |
| 50 | - function saveFormValues($id=0){ |
|
| 54 | + function saveFormValues($id=0) |
|
| 55 | + { |
|
| 51 | 56 | $_SESSION["mgrFormValues"] = $_POST; |
| 52 | 57 | $_SESSION["mgrFormValueId"] = $id>0 ? $id:$this->action; |
| 53 | 58 | } |
| 54 | 59 | // load saved form values into $_POST |
| 55 | - function loadFormValues(){ |
|
| 60 | + function loadFormValues() |
|
| 61 | + { |
|
| 56 | 62 | |
| 57 | - if(!$this->hasFormValues()) return false; |
|
| 63 | + if(!$this->hasFormValues()) { |
|
| 64 | + return false; |
|
| 65 | + } |
|
| 58 | 66 | |
| 59 | 67 | $p = $_SESSION["mgrFormValues"]; |
| 60 | 68 | $this->clearSavedFormValues(); |
@@ -64,31 +72,41 @@ discard block |
||
| 64 | 72 | return true; |
| 65 | 73 | } |
| 66 | 74 | // clear form post |
| 67 | - function clearSavedFormValues(){ |
|
| 75 | + function clearSavedFormValues() |
|
| 76 | + { |
|
| 68 | 77 | unset($_SESSION["mgrFormValues"]); |
| 69 | 78 | unset($_SESSION["mgrFormValueId"]); |
| 70 | 79 | } |
| 71 | 80 | |
| 72 | - function getHashType($db_value='') { // md5 | v1 | phpass |
|
| 81 | + function getHashType($db_value='') |
|
| 82 | + { |
|
| 83 | +// md5 | v1 | phpass |
|
| 73 | 84 | $c = substr($db_value,0,1); |
| 74 | - if($c==='$') return 'phpass'; |
|
| 75 | - elseif(strlen($db_value)===32) return 'md5'; |
|
| 76 | - elseif($c!=='$' && strpos($db_value,'>')!==false) return 'v1'; |
|
| 77 | - else return 'unknown'; |
|
| 85 | + if($c==='$') { |
|
| 86 | + return 'phpass'; |
|
| 87 | + } elseif(strlen($db_value)===32) { |
|
| 88 | + return 'md5'; |
|
| 89 | + } elseif($c!=='$' && strpos($db_value,'>')!==false) { |
|
| 90 | + return 'v1'; |
|
| 91 | + } else { |
|
| 92 | + return 'unknown'; |
|
| 93 | + } |
|
| 78 | 94 | } |
| 79 | 95 | |
| 80 | 96 | function genV1Hash($password, $seed='1') |
| 81 | - { // $seed is user_id basically |
|
| 97 | + { |
|
| 98 | +// $seed is user_id basically |
|
| 82 | 99 | global $modx; |
| 83 | 100 | |
| 84 | - if(isset($modx->config['pwd_hash_algo']) && !empty($modx->config['pwd_hash_algo'])) |
|
| 85 | - $algorithm = $modx->config['pwd_hash_algo']; |
|
| 86 | - else $algorithm = 'UNCRYPT'; |
|
| 101 | + if(isset($modx->config['pwd_hash_algo']) && !empty($modx->config['pwd_hash_algo'])) { |
|
| 102 | + $algorithm = $modx->config['pwd_hash_algo']; |
|
| 103 | + } else { |
|
| 104 | + $algorithm = 'UNCRYPT'; |
|
| 105 | + } |
|
| 87 | 106 | |
| 88 | 107 | $salt = md5($password . $seed); |
| 89 | 108 | |
| 90 | - switch($algorithm) |
|
| 91 | - { |
|
| 109 | + switch($algorithm) { |
|
| 92 | 110 | case 'BLOWFISH_Y': |
| 93 | 111 | $salt = '$2y$07$' . substr($salt,0,22); |
| 94 | 112 | break; |
@@ -106,11 +124,11 @@ discard block |
||
| 106 | 124 | break; |
| 107 | 125 | } |
| 108 | 126 | |
| 109 | - if($algorithm!=='UNCRYPT') |
|
| 110 | - { |
|
| 127 | + if($algorithm!=='UNCRYPT') { |
|
| 111 | 128 | $password = sha1($password) . crypt($password,$salt); |
| 129 | + } else { |
|
| 130 | + $password = sha1($salt.$password); |
|
| 112 | 131 | } |
| 113 | - else $password = sha1($salt.$password); |
|
| 114 | 132 | |
| 115 | 133 | $result = strtolower($algorithm) . '>' . md5($salt.$password) . substr(md5($salt),0,8); |
| 116 | 134 | |
@@ -124,9 +142,9 @@ discard block |
||
| 124 | 142 | $rs = $modx->db->select('password',$tbl_manager_users,"id='{$uid}'"); |
| 125 | 143 | $password = $modx->db->getValue($rs); |
| 126 | 144 | |
| 127 | - if(strpos($password,'>')===false) $algo = 'NOSALT'; |
|
| 128 | - else |
|
| 129 | - { |
|
| 145 | + if(strpos($password,'>')===false) { |
|
| 146 | + $algo = 'NOSALT'; |
|
| 147 | + } else { |
|
| 130 | 148 | $algo = substr($password,0,strpos($password,'>')); |
| 131 | 149 | } |
| 132 | 150 | return strtoupper($algo); |
@@ -135,27 +153,34 @@ discard block |
||
| 135 | 153 | function checkHashAlgorithm($algorithm='') |
| 136 | 154 | { |
| 137 | 155 | $result = false; |
| 138 | - if (!empty($algorithm)) |
|
| 139 | - { |
|
| 140 | - switch ($algorithm) |
|
| 141 | - { |
|
| 156 | + if (!empty($algorithm)) { |
|
| 157 | + switch ($algorithm) { |
|
| 142 | 158 | case 'BLOWFISH_Y': |
| 143 | - if (defined('CRYPT_BLOWFISH') && CRYPT_BLOWFISH == 1) |
|
| 144 | - { |
|
| 145 | - if (version_compare('5.3.7', PHP_VERSION) <= 0) $result = true; |
|
| 159 | + if (defined('CRYPT_BLOWFISH') && CRYPT_BLOWFISH == 1) { |
|
| 160 | + if (version_compare('5.3.7', PHP_VERSION) <= 0) { |
|
| 161 | + $result = true; |
|
| 162 | + } |
|
| 146 | 163 | } |
| 147 | 164 | break; |
| 148 | 165 | case 'BLOWFISH_A': |
| 149 | - if (defined('CRYPT_BLOWFISH') && CRYPT_BLOWFISH == 1) $result = true; |
|
| 166 | + if (defined('CRYPT_BLOWFISH') && CRYPT_BLOWFISH == 1) { |
|
| 167 | + $result = true; |
|
| 168 | + } |
|
| 150 | 169 | break; |
| 151 | 170 | case 'SHA512': |
| 152 | - if (defined('CRYPT_SHA512') && CRYPT_SHA512 == 1) $result = true; |
|
| 171 | + if (defined('CRYPT_SHA512') && CRYPT_SHA512 == 1) { |
|
| 172 | + $result = true; |
|
| 173 | + } |
|
| 153 | 174 | break; |
| 154 | 175 | case 'SHA256': |
| 155 | - if (defined('CRYPT_SHA256') && CRYPT_SHA256 == 1) $result = true; |
|
| 176 | + if (defined('CRYPT_SHA256') && CRYPT_SHA256 == 1) { |
|
| 177 | + $result = true; |
|
| 178 | + } |
|
| 156 | 179 | break; |
| 157 | 180 | case 'MD5': |
| 158 | - if (defined('CRYPT_MD5') && CRYPT_MD5 == 1 && PHP_VERSION != '5.3.7') $result = true; |
|
| 181 | + if (defined('CRYPT_MD5') && CRYPT_MD5 == 1 && PHP_VERSION != '5.3.7') { |
|
| 182 | + $result = true; |
|
| 183 | + } |
|
| 159 | 184 | break; |
| 160 | 185 | case 'UNCRYPT': |
| 161 | 186 | $result = true; |
@@ -165,20 +190,24 @@ discard block |
||
| 165 | 190 | return $result; |
| 166 | 191 | } |
| 167 | 192 | |
| 168 | - function getSystemChecksum($check_files) { |
|
| 193 | + function getSystemChecksum($check_files) |
|
| 194 | + { |
|
| 169 | 195 | $_ = array(); |
| 170 | 196 | $check_files = trim($check_files); |
| 171 | 197 | $check_files = explode("\n", $check_files); |
| 172 | 198 | foreach($check_files as $file) { |
| 173 | 199 | $file = trim($file); |
| 174 | 200 | $file = MODX_BASE_PATH . $file; |
| 175 | - if(!is_file($file)) continue; |
|
| 201 | + if(!is_file($file)) { |
|
| 202 | + continue; |
|
| 203 | + } |
|
| 176 | 204 | $_[$file]= md5_file($file); |
| 177 | 205 | } |
| 178 | 206 | return serialize($_); |
| 179 | 207 | } |
| 180 | 208 | |
| 181 | - function getModifiedSystemFilesList($check_files, $checksum) { |
|
| 209 | + function getModifiedSystemFilesList($check_files, $checksum) |
|
| 210 | + { |
|
| 182 | 211 | $_ = array(); |
| 183 | 212 | $check_files = trim($check_files); |
| 184 | 213 | $check_files = explode("\n", $check_files); |
@@ -186,41 +215,52 @@ discard block |
||
| 186 | 215 | foreach($check_files as $file) { |
| 187 | 216 | $file = trim($file); |
| 188 | 217 | $filePath = MODX_BASE_PATH . $file; |
| 189 | - if(!is_file($filePath)) continue; |
|
| 190 | - if(md5_file($filePath) != $checksum[$filePath]) $_[] = $file; |
|
| 218 | + if(!is_file($filePath)) { |
|
| 219 | + continue; |
|
| 220 | + } |
|
| 221 | + if(md5_file($filePath) != $checksum[$filePath]) { |
|
| 222 | + $_[] = $file; |
|
| 223 | + } |
|
| 191 | 224 | } |
| 192 | 225 | return $_; |
| 193 | 226 | } |
| 194 | 227 | |
| 195 | - function setSystemChecksum($checksum) { |
|
| 228 | + function setSystemChecksum($checksum) |
|
| 229 | + { |
|
| 196 | 230 | global $modx; |
| 197 | 231 | $tbl_system_settings = $modx->getFullTableName('system_settings'); |
| 198 | 232 | $sql = "REPLACE INTO {$tbl_system_settings} (setting_name, setting_value) VALUES ('sys_files_checksum','" . $modx->db->escape($checksum) . "')"; |
| 199 | 233 | $modx->db->query($sql); |
| 200 | 234 | } |
| 201 | 235 | |
| 202 | - function checkSystemChecksum() { |
|
| 236 | + function checkSystemChecksum() |
|
| 237 | + { |
|
| 203 | 238 | global $modx; |
| 204 | 239 | |
| 205 | - if(!isset($modx->config['check_files_onlogin']) || empty($modx->config['check_files_onlogin'])) return '0'; |
|
| 240 | + if(!isset($modx->config['check_files_onlogin']) || empty($modx->config['check_files_onlogin'])) { |
|
| 241 | + return '0'; |
|
| 242 | + } |
|
| 206 | 243 | |
| 207 | 244 | $current = $this->getSystemChecksum($modx->config['check_files_onlogin']); |
| 208 | - if(empty($current)) return '0'; |
|
| 245 | + if(empty($current)) { |
|
| 246 | + return '0'; |
|
| 247 | + } |
|
| 209 | 248 | |
| 210 | - if(!isset($modx->config['sys_files_checksum']) || empty($modx->config['sys_files_checksum'])) |
|
| 211 | - { |
|
| 249 | + if(!isset($modx->config['sys_files_checksum']) || empty($modx->config['sys_files_checksum'])) { |
|
| 212 | 250 | $this->setSystemChecksum($current); |
| 213 | 251 | return '0'; |
| 214 | 252 | } |
| 215 | - if($current===$modx->config['sys_files_checksum']) $result = '0'; |
|
| 216 | - else { |
|
| 253 | + if($current===$modx->config['sys_files_checksum']) { |
|
| 254 | + $result = '0'; |
|
| 255 | + } else { |
|
| 217 | 256 | $result = $this->getModifiedSystemFilesList($modx->config['check_files_onlogin'], $modx->config['sys_files_checksum']); |
| 218 | 257 | } |
| 219 | 258 | |
| 220 | 259 | return $result; |
| 221 | 260 | } |
| 222 | 261 | |
| 223 | - function getLastUserSetting($key=false) { |
|
| 262 | + function getLastUserSetting($key=false) |
|
| 263 | + { |
|
| 224 | 264 | global $modx; |
| 225 | 265 | |
| 226 | 266 | $rs = $modx->db->select('*', $modx->getFullTableName('user_settings'), "user = '{$_SESSION['mgrInternalKey']}'"); |
@@ -233,15 +273,21 @@ discard block |
||
| 233 | 273 | } |
| 234 | 274 | } |
| 235 | 275 | |
| 236 | - if(!$key) return $usersettings; |
|
| 237 | - else return isset($usersettings[$key]) ? $usersettings[$key] : NULL; |
|
| 276 | + if(!$key) { |
|
| 277 | + return $usersettings; |
|
| 278 | + } else { |
|
| 279 | + return isset($usersettings[$key]) ? $usersettings[$key] : NULL; |
|
| 280 | + } |
|
| 238 | 281 | } |
| 239 | 282 | |
| 240 | - function saveLastUserSetting($settings, $val='') { |
|
| 283 | + function saveLastUserSetting($settings, $val='') |
|
| 284 | + { |
|
| 241 | 285 | global $modx; |
| 242 | 286 | |
| 243 | 287 | if(!empty($settings)) { |
| 244 | - if(!is_array($settings)) $settings = array($settings=>$val); |
|
| 288 | + if(!is_array($settings)) { |
|
| 289 | + $settings = array($settings=>$val); |
|
| 290 | + } |
|
| 245 | 291 | |
| 246 | 292 | foreach ($settings as $key => $val) { |
| 247 | 293 | $f = array(); |
@@ -256,7 +302,8 @@ discard block |
||
| 256 | 302 | } |
| 257 | 303 | } |
| 258 | 304 | |
| 259 | - function loadDatePicker($path) { |
|
| 305 | + function loadDatePicker($path) |
|
| 306 | + { |
|
| 260 | 307 | global $modx; |
| 261 | 308 | include_once($path); |
| 262 | 309 | $dp = new DATEPICKER(); |
@@ -234,7 +234,7 @@ |
||
| 234 | 234 | } |
| 235 | 235 | |
| 236 | 236 | if(!$key) return $usersettings; |
| 237 | - else return isset($usersettings[$key]) ? $usersettings[$key] : NULL; |
|
| 237 | + else return isset($usersettings[$key]) ? $usersettings[$key] : null; |
|
| 238 | 238 | } |
| 239 | 239 | |
| 240 | 240 | function saveLastUserSetting($settings, $val='') { |
@@ -45,6 +45,10 @@ discard block |
||
| 45 | 45 | return $value; |
| 46 | 46 | } |
| 47 | 47 | |
| 48 | + /** |
|
| 49 | + * @param string $mode |
|
| 50 | + * @param string $modifiers |
|
| 51 | + */ |
|
| 48 | 52 | function _getDelim($mode,$modifiers) { |
| 49 | 53 | $c = substr($modifiers,0,1); |
| 50 | 54 | if(!in_array($c, array('"', "'", '`')) ) return false; |
@@ -56,6 +60,11 @@ discard block |
||
| 56 | 60 | return $c; |
| 57 | 61 | } |
| 58 | 62 | |
| 63 | + /** |
|
| 64 | + * @param string $mode |
|
| 65 | + * @param false|string $delim |
|
| 66 | + * @param string $modifiers |
|
| 67 | + */ |
|
| 59 | 68 | function _getOpt($mode,$delim,$modifiers) { |
| 60 | 69 | if($delim) { |
| 61 | 70 | if($mode=='(') return substr($modifiers,1,strpos($modifiers, $delim . ')' )-1); |
@@ -74,6 +83,14 @@ discard block |
||
| 74 | 83 | return $opt; |
| 75 | 84 | } |
| 76 | 85 | } |
| 86 | + |
|
| 87 | + /** |
|
| 88 | + * @param string $mode |
|
| 89 | + * @param false|string $delim |
|
| 90 | + * @param string $modifiers |
|
| 91 | + * |
|
| 92 | + * @return string |
|
| 93 | + */ |
|
| 77 | 94 | function _getRemainModifiers($mode,$delim,$modifiers) { |
| 78 | 95 | if($delim) { |
| 79 | 96 | if($mode=='(') |
@@ -101,6 +118,9 @@ discard block |
||
| 101 | 118 | return substr($string,strpos($string, $delim)+$len); |
| 102 | 119 | } |
| 103 | 120 | |
| 121 | + /** |
|
| 122 | + * @param string $modifiers |
|
| 123 | + */ |
|
| 104 | 124 | function splitEachModifiers($modifiers) { |
| 105 | 125 | global $modx; |
| 106 | 126 | |
@@ -234,6 +254,9 @@ discard block |
||
| 234 | 254 | else return true; |
| 235 | 255 | } |
| 236 | 256 | |
| 257 | + /** |
|
| 258 | + * @param string $cmd |
|
| 259 | + */ |
|
| 237 | 260 | function getValueFromPreset($key, $value, $cmd, $opt) |
| 238 | 261 | { |
| 239 | 262 | global $modx; |
@@ -920,6 +943,9 @@ discard block |
||
| 920 | 943 | return $value; |
| 921 | 944 | } |
| 922 | 945 | |
| 946 | + /** |
|
| 947 | + * @param string $cmd |
|
| 948 | + */ |
|
| 923 | 949 | function includeMdfFile($cmd) { |
| 924 | 950 | global $modx; |
| 925 | 951 | $key = $this->key; |
@@ -1075,6 +1101,10 @@ discard block |
||
| 1075 | 1101 | } |
| 1076 | 1102 | |
| 1077 | 1103 | // Sets a placeholder variable which can only be access by Modifiers |
| 1104 | + |
|
| 1105 | + /** |
|
| 1106 | + * @param string $value |
|
| 1107 | + */ |
|
| 1078 | 1108 | function setModifiersVariable($key, $value) { |
| 1079 | 1109 | if ($key != 'phx' && $key != 'dummy') $this->placeholders[$key] = $value; |
| 1080 | 1110 | } |
@@ -598,7 +598,7 @@ discard block |
||
| 598 | 598 | else $opt = true; |
| 599 | 599 | } |
| 600 | 600 | elseif(isset($modx->config['mce_element_format'])&&$modx->config['mce_element_format']==='html') |
| 601 | - $opt = false; |
|
| 601 | + $opt = false; |
|
| 602 | 602 | else $opt = true; |
| 603 | 603 | return nl2br($value,$opt); |
| 604 | 604 | case 'ltrim': |
@@ -1022,7 +1022,7 @@ discard block |
||
| 1022 | 1022 | { |
| 1023 | 1023 | $bt = $content; |
| 1024 | 1024 | if(strpos($content,'[*')!==false && $modx->documentIdentifier) |
| 1025 | - $content = $modx->mergeDocumentContent($content); |
|
| 1025 | + $content = $modx->mergeDocumentContent($content); |
|
| 1026 | 1026 | if(strpos($content,'[(')!==false) $content = $modx->mergeSettingsContent($content); |
| 1027 | 1027 | if(strpos($content,'{{')!==false) $content = $modx->mergeChunkContent($content); |
| 1028 | 1028 | if(strpos($content,'[!')!==false) $content = str_replace(array('[!','!]'),array('[[',']]'),$content); |
@@ -1,8 +1,8 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -if(!defined('MODX_CORE_PATH')) define('MODX_CORE_PATH', MODX_MANAGER_PATH.'includes/'); |
|
| 3 | +if (!defined('MODX_CORE_PATH')) define('MODX_CORE_PATH', MODX_MANAGER_PATH.'includes/'); |
|
| 4 | 4 | |
| 5 | -class MODIFIERS { |
|
| 5 | +class MODIFIERS{ |
|
| 6 | 6 | |
| 7 | 7 | var $placeholders = array(); |
| 8 | 8 | var $vars = array(); |
@@ -24,14 +24,14 @@ discard block |
||
| 24 | 24 | $this->condModifiers = '=,is,eq,equals,ne,neq,notequals,isnot,isnt,not,%,isempty,isnotempty,isntempty,>=,gte,eg,gte,greaterthan,>,gt,isgreaterthan,isgt,lowerthan,<,lt,<=,lte,islte,islowerthan,islt,el,find,in,inarray,in_array,fnmatch,wcard,wcard_match,wildcard,wildcard_match,is_file,is_dir,file_exists,is_readable,is_writable,is_image,regex,preg,preg_match,memberof,mo,isinrole,ir'; |
| 25 | 25 | } |
| 26 | 26 | |
| 27 | - function phxFilter($key,$value,$modifiers) |
|
| 27 | + function phxFilter($key, $value, $modifiers) |
|
| 28 | 28 | { |
| 29 | 29 | global $modx; |
| 30 | - if(substr($modifiers,0,3)!=='id(') $value = $this->parseDocumentSource($value); |
|
| 30 | + if (substr($modifiers, 0, 3) !== 'id(') $value = $this->parseDocumentSource($value); |
|
| 31 | 31 | $this->srcValue = $value; |
| 32 | 32 | $modifiers = trim($modifiers); |
| 33 | - $modifiers = ':'.trim($modifiers,':'); |
|
| 34 | - $modifiers = str_replace(array("\r\n","\r"), "\n", $modifiers); |
|
| 33 | + $modifiers = ':'.trim($modifiers, ':'); |
|
| 34 | + $modifiers = str_replace(array("\r\n", "\r"), "\n", $modifiers); |
|
| 35 | 35 | $modifiers = $this->splitEachModifiers($modifiers); |
| 36 | 36 | |
| 37 | 37 | $this->placeholders = array(); |
@@ -39,117 +39,117 @@ discard block |
||
| 39 | 39 | $this->placeholders['dummy'] = ''; |
| 40 | 40 | $this->condition = array(); |
| 41 | 41 | $this->vars = array(); |
| 42 | - $this->vars['name'] = & $key; |
|
| 43 | - $value = $this->parsePhx($key,$value,$modifiers); |
|
| 42 | + $this->vars['name'] = & $key; |
|
| 43 | + $value = $this->parsePhx($key, $value, $modifiers); |
|
| 44 | 44 | $this->vars = array(); |
| 45 | 45 | return $value; |
| 46 | 46 | } |
| 47 | 47 | |
| 48 | - function _getDelim($mode,$modifiers) { |
|
| 49 | - $c = substr($modifiers,0,1); |
|
| 50 | - if(!in_array($c, array('"', "'", '`')) ) return false; |
|
| 48 | + function _getDelim($mode, $modifiers){ |
|
| 49 | + $c = substr($modifiers, 0, 1); |
|
| 50 | + if (!in_array($c, array('"', "'", '`'))) return false; |
|
| 51 | 51 | |
| 52 | - $modifiers = substr($modifiers,1); |
|
| 53 | - $closure = $mode=='(' ? "{$c})" : $c; |
|
| 54 | - if(strpos($modifiers, $closure)===false) return false; |
|
| 52 | + $modifiers = substr($modifiers, 1); |
|
| 53 | + $closure = $mode == '(' ? "{$c})" : $c; |
|
| 54 | + if (strpos($modifiers, $closure) === false) return false; |
|
| 55 | 55 | |
| 56 | 56 | return $c; |
| 57 | 57 | } |
| 58 | 58 | |
| 59 | - function _getOpt($mode,$delim,$modifiers) { |
|
| 60 | - if($delim) { |
|
| 61 | - if($mode=='(') return substr($modifiers,1,strpos($modifiers, $delim . ')' )-1); |
|
| 59 | + function _getOpt($mode, $delim, $modifiers){ |
|
| 60 | + if ($delim) { |
|
| 61 | + if ($mode == '(') return substr($modifiers, 1, strpos($modifiers, $delim.')') - 1); |
|
| 62 | 62 | |
| 63 | - return substr($modifiers,1,strpos($modifiers,$delim,1)-1); |
|
| 63 | + return substr($modifiers, 1, strpos($modifiers, $delim, 1) - 1); |
|
| 64 | 64 | } |
| 65 | 65 | else { |
| 66 | - if($mode=='(') return substr($modifiers,0,strpos($modifiers, ')') ); |
|
| 66 | + if ($mode == '(') return substr($modifiers, 0, strpos($modifiers, ')')); |
|
| 67 | 67 | |
| 68 | 68 | $chars = str_split($modifiers); |
| 69 | - $opt=''; |
|
| 70 | - foreach($chars as $c) { |
|
| 71 | - if($c==':' || $c==')') break; |
|
| 72 | - $opt .=$c; |
|
| 69 | + $opt = ''; |
|
| 70 | + foreach ($chars as $c) { |
|
| 71 | + if ($c == ':' || $c == ')') break; |
|
| 72 | + $opt .= $c; |
|
| 73 | 73 | } |
| 74 | 74 | return $opt; |
| 75 | 75 | } |
| 76 | 76 | } |
| 77 | - function _getRemainModifiers($mode,$delim,$modifiers) { |
|
| 78 | - if($delim) { |
|
| 79 | - if($mode=='(') |
|
| 80 | - return $this->_fetchContent($modifiers, $delim . ')'); |
|
| 77 | + function _getRemainModifiers($mode, $delim, $modifiers){ |
|
| 78 | + if ($delim) { |
|
| 79 | + if ($mode == '(') |
|
| 80 | + return $this->_fetchContent($modifiers, $delim.')'); |
|
| 81 | 81 | else { |
| 82 | 82 | $modifiers = trim($modifiers); |
| 83 | - $modifiers = substr($modifiers,1); |
|
| 83 | + $modifiers = substr($modifiers, 1); |
|
| 84 | 84 | return $this->_fetchContent($modifiers, $delim); |
| 85 | 85 | } |
| 86 | 86 | } |
| 87 | 87 | else { |
| 88 | - if($mode=='(') return $this->_fetchContent($modifiers, ')'); |
|
| 88 | + if ($mode == '(') return $this->_fetchContent($modifiers, ')'); |
|
| 89 | 89 | $chars = str_split($modifiers); |
| 90 | - foreach($chars as $c) { |
|
| 91 | - if($c==':') return $modifiers; |
|
| 92 | - else $modifiers = substr($modifiers,1); |
|
| 90 | + foreach ($chars as $c) { |
|
| 91 | + if ($c == ':') return $modifiers; |
|
| 92 | + else $modifiers = substr($modifiers, 1); |
|
| 93 | 93 | } |
| 94 | 94 | return $modifiers; |
| 95 | 95 | } |
| 96 | 96 | } |
| 97 | 97 | |
| 98 | - function _fetchContent($string,$delim) { |
|
| 98 | + function _fetchContent($string, $delim){ |
|
| 99 | 99 | $len = strlen($delim); |
| 100 | 100 | $string = $this->parseDocumentSource($string); |
| 101 | - return substr($string,strpos($string, $delim)+$len); |
|
| 101 | + return substr($string, strpos($string, $delim) + $len); |
|
| 102 | 102 | } |
| 103 | 103 | |
| 104 | - function splitEachModifiers($modifiers) { |
|
| 104 | + function splitEachModifiers($modifiers){ |
|
| 105 | 105 | global $modx; |
| 106 | 106 | |
| 107 | 107 | $cmd = ''; |
| 108 | 108 | $bt = ''; |
| 109 | - while($bt!==$modifiers) { |
|
| 109 | + while ($bt !== $modifiers) { |
|
| 110 | 110 | $bt = $modifiers; |
| 111 | - $c = substr($modifiers,0,1); |
|
| 112 | - $modifiers = substr($modifiers,1); |
|
| 111 | + $c = substr($modifiers, 0, 1); |
|
| 112 | + $modifiers = substr($modifiers, 1); |
|
| 113 | 113 | |
| 114 | - if($c===':' && preg_match('@^(!?[<>=]{1,2})@', $modifiers, $match)) { // :=, :!=, :<=, :>=, :!<=, :!>= |
|
| 115 | - $c = substr($modifiers,strlen($match[1]),1); |
|
| 114 | + if ($c === ':' && preg_match('@^(!?[<>=]{1,2})@', $modifiers, $match)) { // :=, :!=, :<=, :>=, :!<=, :!>= |
|
| 115 | + $c = substr($modifiers, strlen($match[1]), 1); |
|
| 116 | 116 | $debuginfo = "#i=0 #c=[{$c}] #m=[{$modifiers}]"; |
| 117 | - if($c==='(') $modifiers = substr($modifiers,strlen($match[1])+1); |
|
| 118 | - else $modifiers = substr($modifiers,strlen($match[1])); |
|
| 117 | + if ($c === '(') $modifiers = substr($modifiers, strlen($match[1]) + 1); |
|
| 118 | + else $modifiers = substr($modifiers, strlen($match[1])); |
|
| 119 | 119 | |
| 120 | - $delim = $this->_getDelim($c,$modifiers); |
|
| 121 | - $opt = $this->_getOpt($c,$delim,$modifiers); |
|
| 122 | - $modifiers = trim($this->_getRemainModifiers($c,$delim,$modifiers)); |
|
| 120 | + $delim = $this->_getDelim($c, $modifiers); |
|
| 121 | + $opt = $this->_getOpt($c, $delim, $modifiers); |
|
| 122 | + $modifiers = trim($this->_getRemainModifiers($c, $delim, $modifiers)); |
|
| 123 | 123 | |
| 124 | - $result[]=array('cmd'=>trim($match[1]),'opt'=>$opt,'debuginfo'=>$debuginfo); |
|
| 124 | + $result[] = array('cmd'=>trim($match[1]), 'opt'=>$opt, 'debuginfo'=>$debuginfo); |
|
| 125 | 125 | $cmd = ''; |
| 126 | 126 | } |
| 127 | - elseif(in_array($c,array('+','-','*','/')) && preg_match('@^[0-9]+@', $modifiers, $match)) { // :+3, :-3, :*3 ... |
|
| 128 | - $modifiers = substr($modifiers,strlen($match[0])); |
|
| 129 | - $result[]=array('cmd'=>'math','opt'=>'%s'.$c.$match[0]); |
|
| 127 | + elseif (in_array($c, array('+', '-', '*', '/')) && preg_match('@^[0-9]+@', $modifiers, $match)) { // :+3, :-3, :*3 ... |
|
| 128 | + $modifiers = substr($modifiers, strlen($match[0])); |
|
| 129 | + $result[] = array('cmd'=>'math', 'opt'=>'%s'.$c.$match[0]); |
|
| 130 | 130 | $cmd = ''; |
| 131 | 131 | } |
| 132 | - elseif($c==='(' || $c==='=') { |
|
| 132 | + elseif ($c === '(' || $c === '=') { |
|
| 133 | 133 | $modifiers = $m1 = trim($modifiers); |
| 134 | - $delim = $this->_getDelim($c,$modifiers); |
|
| 135 | - $opt = $this->_getOpt($c,$delim,$modifiers); |
|
| 136 | - $modifiers = trim($this->_getRemainModifiers($c,$delim,$modifiers)); |
|
| 134 | + $delim = $this->_getDelim($c, $modifiers); |
|
| 135 | + $opt = $this->_getOpt($c, $delim, $modifiers); |
|
| 136 | + $modifiers = trim($this->_getRemainModifiers($c, $delim, $modifiers)); |
|
| 137 | 137 | $debuginfo = "#i=1 #c=[{$c}] #delim=[{$delim}] #m1=[{$m1}] remainMdf=[{$modifiers}]"; |
| 138 | 138 | |
| 139 | - $result[]=array('cmd'=>trim($cmd),'opt'=>$opt,'debuginfo'=>$debuginfo); |
|
| 139 | + $result[] = array('cmd'=>trim($cmd), 'opt'=>$opt, 'debuginfo'=>$debuginfo); |
|
| 140 | 140 | |
| 141 | 141 | $cmd = ''; |
| 142 | 142 | } |
| 143 | - elseif($c==':') { |
|
| 143 | + elseif ($c == ':') { |
|
| 144 | 144 | $debuginfo = "#i=2 #c=[{$c}] #m=[{$modifiers}]"; |
| 145 | - if($cmd!=='') $result[]=array('cmd'=>trim($cmd),'opt'=>'','debuginfo'=>$debuginfo); |
|
| 145 | + if ($cmd !== '') $result[] = array('cmd'=>trim($cmd), 'opt'=>'', 'debuginfo'=>$debuginfo); |
|
| 146 | 146 | |
| 147 | 147 | $cmd = ''; |
| 148 | 148 | } |
| 149 | - elseif(trim($modifiers)=='' && trim($cmd)!=='') { |
|
| 149 | + elseif (trim($modifiers) == '' && trim($cmd) !== '') { |
|
| 150 | 150 | $debuginfo = "#i=3 #c=[{$c}] #m=[{$modifiers}]"; |
| 151 | 151 | $cmd .= $c; |
| 152 | - $result[]=array('cmd'=>trim($cmd),'opt'=>'','debuginfo'=>$debuginfo); |
|
| 152 | + $result[] = array('cmd'=>trim($cmd), 'opt'=>'', 'debuginfo'=>$debuginfo); |
|
| 153 | 153 | |
| 154 | 154 | break; |
| 155 | 155 | } |
@@ -158,64 +158,64 @@ discard block |
||
| 158 | 158 | } |
| 159 | 159 | } |
| 160 | 160 | |
| 161 | - if(empty($result)) return array(); |
|
| 161 | + if (empty($result)) return array(); |
|
| 162 | 162 | |
| 163 | - foreach($result as $i=>$a) |
|
| 163 | + foreach ($result as $i=>$a) |
|
| 164 | 164 | { |
| 165 | 165 | $a['opt'] = $this->parseDocumentSource($a['opt']); |
| 166 | - $result[$i]['opt'] = $modx->mergePlaceholderContent($a['opt'],$this->placeholders); |
|
| 166 | + $result[$i]['opt'] = $modx->mergePlaceholderContent($a['opt'], $this->placeholders); |
|
| 167 | 167 | } |
| 168 | 168 | |
| 169 | 169 | return $result; |
| 170 | 170 | } |
| 171 | 171 | |
| 172 | - function parsePhx($key,$value,$modifiers) |
|
| 172 | + function parsePhx($key, $value, $modifiers) |
|
| 173 | 173 | { |
| 174 | 174 | global $modx; |
| 175 | - $cacheKey = md5(sprintf('parsePhx#%s#%s#%s',$key,$value,print_r($modifiers,true))); |
|
| 176 | - if(isset($this->tmpCache[$cacheKey])) return $this->tmpCache[$cacheKey]; |
|
| 177 | - if(empty($modifiers)) return ''; |
|
| 175 | + $cacheKey = md5(sprintf('parsePhx#%s#%s#%s', $key, $value, print_r($modifiers, true))); |
|
| 176 | + if (isset($this->tmpCache[$cacheKey])) return $this->tmpCache[$cacheKey]; |
|
| 177 | + if (empty($modifiers)) return ''; |
|
| 178 | 178 | |
| 179 | - foreach($modifiers as $m) |
|
| 179 | + foreach ($modifiers as $m) |
|
| 180 | 180 | { |
| 181 | 181 | $lastKey = strtolower($m['cmd']); |
| 182 | 182 | } |
| 183 | - $_ = explode(',',$this->condModifiers); |
|
| 184 | - if(in_array($lastKey,$_)) |
|
| 183 | + $_ = explode(',', $this->condModifiers); |
|
| 184 | + if (in_array($lastKey, $_)) |
|
| 185 | 185 | { |
| 186 | - $modifiers[] = array('cmd'=>'then','opt'=>'1'); |
|
| 187 | - $modifiers[] = array('cmd'=>'else','opt'=>'0'); |
|
| 186 | + $modifiers[] = array('cmd'=>'then', 'opt'=>'1'); |
|
| 187 | + $modifiers[] = array('cmd'=>'else', 'opt'=>'0'); |
|
| 188 | 188 | } |
| 189 | 189 | |
| 190 | - foreach($modifiers as $i=>$a) |
|
| 190 | + foreach ($modifiers as $i=>$a) |
|
| 191 | 191 | { |
| 192 | - $value = $this->Filter($key,$value, $a['cmd'], $a['opt']); |
|
| 192 | + $value = $this->Filter($key, $value, $a['cmd'], $a['opt']); |
|
| 193 | 193 | } |
| 194 | 194 | $this->tmpCache[$cacheKey] = $value; |
| 195 | 195 | return $value; |
| 196 | 196 | } |
| 197 | 197 | |
| 198 | 198 | // Parser: modifier detection and eXtended processing if needed |
| 199 | - function Filter($key, $value, $cmd, $opt='') |
|
| 199 | + function Filter($key, $value, $cmd, $opt = '') |
|
| 200 | 200 | { |
| 201 | 201 | global $modx; |
| 202 | 202 | |
| 203 | - if($key==='documentObject') $value = $modx->documentIdentifier; |
|
| 203 | + if ($key === 'documentObject') $value = $modx->documentIdentifier; |
|
| 204 | 204 | $cmd = $this->parseDocumentSource($cmd); |
| 205 | - if(preg_match('@^[1-9][/0-9]*$@',$cmd)) |
|
| 205 | + if (preg_match('@^[1-9][/0-9]*$@', $cmd)) |
|
| 206 | 206 | { |
| 207 | - if(strpos($cmd,'/')!==false) |
|
| 208 | - $cmd = $this->substr($cmd,strrpos($cmd,'/')+1); |
|
| 207 | + if (strpos($cmd, '/') !== false) |
|
| 208 | + $cmd = $this->substr($cmd, strrpos($cmd, '/') + 1); |
|
| 209 | 209 | $opt = $cmd; |
| 210 | 210 | $cmd = 'id'; |
| 211 | 211 | } |
| 212 | 212 | |
| 213 | - if(isset($modx->snippetCache["phx:{$cmd}"])) $this->elmName = "phx:{$cmd}"; |
|
| 214 | - elseif(isset($modx->chunkCache["phx:{$cmd}"])) $this->elmName = "phx:{$cmd}"; |
|
| 213 | + if (isset($modx->snippetCache["phx:{$cmd}"])) $this->elmName = "phx:{$cmd}"; |
|
| 214 | + elseif (isset($modx->chunkCache["phx:{$cmd}"])) $this->elmName = "phx:{$cmd}"; |
|
| 215 | 215 | else $this->elmName = ''; |
| 216 | 216 | |
| 217 | 217 | $cmd = strtolower($cmd); |
| 218 | - if($this->elmName!=='') |
|
| 218 | + if ($this->elmName !== '') |
|
| 219 | 219 | $value = $this->getValueFromElement($key, $value, $cmd, $opt); |
| 220 | 220 | else |
| 221 | 221 | $value = $this->getValueFromPreset($key, $value, $cmd, $opt); |
@@ -225,12 +225,12 @@ discard block |
||
| 225 | 225 | return $value; |
| 226 | 226 | } |
| 227 | 227 | |
| 228 | - function isEmpty($cmd,$value) |
|
| 228 | + function isEmpty($cmd, $value) |
|
| 229 | 229 | { |
| 230 | - if($value!=='') return false; |
|
| 230 | + if ($value !== '') return false; |
|
| 231 | 231 | |
| 232 | - $_ = explode(',', $this->condModifiers . ',_default,default,if,input,or,and,show,this,select,switch,then,else,id,ifempty,smart_desc,smart_description,summary'); |
|
| 233 | - if(in_array($cmd,$_)) return false; |
|
| 232 | + $_ = explode(',', $this->condModifiers.',_default,default,if,input,or,and,show,this,select,switch,then,else,id,ifempty,smart_desc,smart_description,summary'); |
|
| 233 | + if (in_array($cmd, $_)) return false; |
|
| 234 | 234 | else return true; |
| 235 | 235 | } |
| 236 | 236 | |
@@ -238,7 +238,7 @@ discard block |
||
| 238 | 238 | { |
| 239 | 239 | global $modx; |
| 240 | 240 | |
| 241 | - if($this->isEmpty($cmd,$value)) return ''; |
|
| 241 | + if ($this->isEmpty($cmd, $value)) return ''; |
|
| 242 | 242 | |
| 243 | 243 | $this->key = $key; |
| 244 | 244 | $this->value = $value; |
@@ -249,7 +249,7 @@ discard block |
||
| 249 | 249 | ##### Conditional Modifiers |
| 250 | 250 | case 'input': |
| 251 | 251 | case 'if': |
| 252 | - if(!$opt) return $value; |
|
| 252 | + if (!$opt) return $value; |
|
| 253 | 253 | return $opt; |
| 254 | 254 | case '=': |
| 255 | 255 | case 'eq': |
@@ -262,9 +262,9 @@ discard block |
||
| 262 | 262 | case 'isnot': |
| 263 | 263 | case 'isnt': |
| 264 | 264 | case 'not': |
| 265 | - $this->condition[] = intval($value != $opt);break; |
|
| 265 | + $this->condition[] = intval($value != $opt); break; |
|
| 266 | 266 | case '%': |
| 267 | - $this->condition[] = intval($value%$opt==0);break; |
|
| 267 | + $this->condition[] = intval($value % $opt == 0); break; |
|
| 268 | 268 | case 'isempty': |
| 269 | 269 | $this->condition[] = intval(empty($value)); break; |
| 270 | 270 | case 'isntempty': |
@@ -274,57 +274,57 @@ discard block |
||
| 274 | 274 | case 'gte': |
| 275 | 275 | case 'eg': |
| 276 | 276 | case 'isgte': |
| 277 | - $this->condition[] = intval($value >= $opt);break; |
|
| 277 | + $this->condition[] = intval($value >= $opt); break; |
|
| 278 | 278 | case '<=': |
| 279 | 279 | case 'lte': |
| 280 | 280 | case 'el': |
| 281 | 281 | case 'islte': |
| 282 | - $this->condition[] = intval($value <= $opt);break; |
|
| 282 | + $this->condition[] = intval($value <= $opt); break; |
|
| 283 | 283 | case '>': |
| 284 | 284 | case 'gt': |
| 285 | 285 | case 'greaterthan': |
| 286 | 286 | case 'isgreaterthan': |
| 287 | 287 | case 'isgt': |
| 288 | - $this->condition[] = intval($value > $opt);break; |
|
| 288 | + $this->condition[] = intval($value > $opt); break; |
|
| 289 | 289 | case '<': |
| 290 | 290 | case 'lt': |
| 291 | 291 | case 'lowerthan': |
| 292 | 292 | case 'islowerthan': |
| 293 | 293 | case 'islt': |
| 294 | - $this->condition[] = intval($value < $opt);break; |
|
| 294 | + $this->condition[] = intval($value < $opt); break; |
|
| 295 | 295 | case 'find': |
| 296 | - $this->condition[] = intval(strpos($value, $opt)!==false);break; |
|
| 296 | + $this->condition[] = intval(strpos($value, $opt) !== false); break; |
|
| 297 | 297 | case 'inarray': |
| 298 | 298 | case 'in_array': |
| 299 | 299 | case 'in': |
| 300 | 300 | $opt = explode(',', $opt); |
| 301 | - $this->condition[] = intval(in_array($value, $opt)!==false);break; |
|
| 301 | + $this->condition[] = intval(in_array($value, $opt) !== false); break; |
|
| 302 | 302 | case 'wildcard_match': |
| 303 | 303 | case 'wcard_match': |
| 304 | 304 | case 'wildcard': |
| 305 | 305 | case 'wcard': |
| 306 | 306 | case 'fnmatch': |
| 307 | - $this->condition[] = intval(fnmatch($opt, $value)!==false);break; |
|
| 307 | + $this->condition[] = intval(fnmatch($opt, $value) !== false); break; |
|
| 308 | 308 | case 'is_file': |
| 309 | 309 | case 'is_dir': |
| 310 | 310 | case 'file_exists': |
| 311 | 311 | case 'is_readable': |
| 312 | 312 | case 'is_writable': |
| 313 | - if(!$opt) $path = $value; |
|
| 313 | + if (!$opt) $path = $value; |
|
| 314 | 314 | else $path = $opt; |
| 315 | - if(strpos($path,MODX_MANAGER_PATH)!==false) exit('Can not read core path'); |
|
| 316 | - if(strpos($path,$modx->config['base_path'])===false) $path = ltrim($path,'/'); |
|
| 317 | - $this->condition[] = intval($cmd($path)!==false);break; |
|
| 315 | + if (strpos($path, MODX_MANAGER_PATH) !== false) exit('Can not read core path'); |
|
| 316 | + if (strpos($path, $modx->config['base_path']) === false) $path = ltrim($path, '/'); |
|
| 317 | + $this->condition[] = intval($cmd($path) !== false); break; |
|
| 318 | 318 | case 'is_image': |
| 319 | - if(!$opt) $path = $value; |
|
| 319 | + if (!$opt) $path = $value; |
|
| 320 | 320 | else $path = $opt; |
| 321 | - if(!is_file($path)) {$this->condition[]='0';break;} |
|
| 321 | + if (!is_file($path)) {$this->condition[] = '0'; break; } |
|
| 322 | 322 | $_ = getimagesize($path); |
| 323 | - $this->condition[] = intval($_[0]);break; |
|
| 323 | + $this->condition[] = intval($_[0]); break; |
|
| 324 | 324 | case 'regex': |
| 325 | 325 | case 'preg': |
| 326 | 326 | case 'preg_match': |
| 327 | - $this->condition[] = intval(preg_match($opt,$value));break; |
|
| 327 | + $this->condition[] = intval(preg_match($opt, $value)); break; |
|
| 328 | 328 | case 'isinrole': |
| 329 | 329 | case 'ir': |
| 330 | 330 | case 'memberof': |
@@ -333,50 +333,50 @@ discard block |
||
| 333 | 333 | $this->condition[] = $this->includeMdfFile('memberof'); |
| 334 | 334 | break; |
| 335 | 335 | case 'or': |
| 336 | - $this->condition[] = '||';break; |
|
| 336 | + $this->condition[] = '||'; break; |
|
| 337 | 337 | case 'and': |
| 338 | - $this->condition[] = '&&';break; |
|
| 338 | + $this->condition[] = '&&'; break; |
|
| 339 | 339 | case 'show': |
| 340 | 340 | case 'this': |
| 341 | - $conditional = join(' ',$this->condition); |
|
| 341 | + $conditional = join(' ', $this->condition); |
|
| 342 | 342 | $isvalid = intval(eval("return ({$conditional});")); |
| 343 | 343 | if ($isvalid) return $this->srcValue; |
| 344 | 344 | return NULL; |
| 345 | 345 | case 'then': |
| 346 | - $conditional = join(' ',$this->condition); |
|
| 346 | + $conditional = join(' ', $this->condition); |
|
| 347 | 347 | $isvalid = intval(eval("return ({$conditional});")); |
| 348 | 348 | if ($isvalid) return $opt; |
| 349 | 349 | return null; |
| 350 | 350 | case 'else': |
| 351 | - $conditional = join(' ',$this->condition); |
|
| 351 | + $conditional = join(' ', $this->condition); |
|
| 352 | 352 | $isvalid = intval(eval("return ({$conditional});")); |
| 353 | 353 | if (!$isvalid) return $opt; |
| 354 | 354 | break; |
| 355 | 355 | case 'select': |
| 356 | 356 | case 'switch': |
| 357 | - $raw = explode('&',$opt); |
|
| 357 | + $raw = explode('&', $opt); |
|
| 358 | 358 | $map = array(); |
| 359 | 359 | $c = count($raw); |
| 360 | - for($m=0; $m<$c; $m++) { |
|
| 361 | - $mi = explode('=',$raw[$m],2); |
|
| 360 | + for ($m = 0; $m < $c; $m++) { |
|
| 361 | + $mi = explode('=', $raw[$m], 2); |
|
| 362 | 362 | $map[$mi[0]] = $mi[1]; |
| 363 | 363 | } |
| 364 | - if(isset($map[$value])) return $map[$value]; |
|
| 364 | + if (isset($map[$value])) return $map[$value]; |
|
| 365 | 365 | else return ''; |
| 366 | 366 | ##### End of Conditional Modifiers |
| 367 | 367 | |
| 368 | 368 | ##### Encode / Decode / Hash / Escape |
| 369 | 369 | case 'htmlent': |
| 370 | 370 | case 'htmlentities': |
| 371 | - return htmlentities($value,ENT_QUOTES,$modx->config['modx_charset']); |
|
| 371 | + return htmlentities($value, ENT_QUOTES, $modx->config['modx_charset']); |
|
| 372 | 372 | case 'html_entity_decode': |
| 373 | 373 | case 'decode_html': |
| 374 | 374 | case 'html_decode': |
| 375 | - return html_entity_decode($value,ENT_QUOTES,$modx->config['modx_charset']); |
|
| 375 | + return html_entity_decode($value, ENT_QUOTES, $modx->config['modx_charset']); |
|
| 376 | 376 | case 'esc': |
| 377 | 377 | case 'escape': |
| 378 | 378 | $value = preg_replace('/&(#[0-9]+|[a-z]+);/i', '&$1;', htmlspecialchars($value, ENT_QUOTES, $modx->config['modx_charset'])); |
| 379 | - return str_replace(array('[', ']', '`'),array('[', ']', '`'),$value); |
|
| 379 | + return str_replace(array('[', ']', '`'), array('[', ']', '`'), $value); |
|
| 380 | 380 | case 'sql_escape': |
| 381 | 381 | case 'encode_js': |
| 382 | 382 | return $modx->db->escape($value); |
@@ -386,39 +386,39 @@ discard block |
||
| 386 | 386 | case 'html_encode': |
| 387 | 387 | return preg_replace('/&(#[0-9]+|[a-z]+);/i', '&$1;', htmlspecialchars($value, ENT_QUOTES, $modx->config['modx_charset'])); |
| 388 | 388 | case 'spam_protect': |
| 389 | - return str_replace(array('@','.'),array('@','.'),$value); |
|
| 389 | + return str_replace(array('@', '.'), array('@', '.'), $value); |
|
| 390 | 390 | case 'strip': |
| 391 | - if($opt==='') $opt = ' '; |
|
| 391 | + if ($opt === '') $opt = ' '; |
|
| 392 | 392 | return preg_replace('/[\n\r\t\s]+/', $opt, $value); |
| 393 | 393 | case 'strip_linefeeds': |
| 394 | - return str_replace(array("\n","\r"), '', $value); |
|
| 394 | + return str_replace(array("\n", "\r"), '', $value); |
|
| 395 | 395 | case 'notags': |
| 396 | 396 | case 'strip_tags': |
| 397 | 397 | case 'remove_html': |
| 398 | - if($opt!=='') |
|
| 398 | + if ($opt !== '') |
|
| 399 | 399 | { |
| 400 | 400 | $param = array(); |
| 401 | - foreach(explode(',',$opt) as $v) |
|
| 401 | + foreach (explode(',', $opt) as $v) |
|
| 402 | 402 | { |
| 403 | - $v = trim($v,'</> '); |
|
| 403 | + $v = trim($v, '</> '); |
|
| 404 | 404 | $param[] = "<{$v}>"; |
| 405 | 405 | } |
| 406 | - $params = join(',',$param); |
|
| 406 | + $params = join(',', $param); |
|
| 407 | 407 | } |
| 408 | 408 | else $params = ''; |
| 409 | - if(!strpos($params,'<br>')===false) { |
|
| 410 | - $value = preg_replace('@(<br[ /]*>)\n@','$1',$value); |
|
| 411 | - $value = preg_replace('@<br[ /]*>@',"\n",$value); |
|
| 409 | + if (!strpos($params, '<br>') === false) { |
|
| 410 | + $value = preg_replace('@(<br[ /]*>)\n@', '$1', $value); |
|
| 411 | + $value = preg_replace('@<br[ /]*>@', "\n", $value); |
|
| 412 | 412 | } |
| 413 | - return $this->strip_tags($value,$params); |
|
| 413 | + return $this->strip_tags($value, $params); |
|
| 414 | 414 | case 'urlencode': |
| 415 | 415 | case 'url_encode': |
| 416 | 416 | case 'encode_url': |
| 417 | 417 | return urlencode($value); |
| 418 | 418 | case 'base64_decode': |
| 419 | - if($opt!=='false') $opt = true; |
|
| 419 | + if ($opt !== 'false') $opt = true; |
|
| 420 | 420 | else $opt = false; |
| 421 | - return base64_decode($value,$opt); |
|
| 421 | + return base64_decode($value, $opt); |
|
| 422 | 422 | case 'encode_sha1': $cmd = 'sha1'; |
| 423 | 423 | case 'addslashes': |
| 424 | 424 | case 'urldecode': |
@@ -442,18 +442,18 @@ discard block |
||
| 442 | 442 | case 'upper_case': |
| 443 | 443 | return $this->strtoupper($value); |
| 444 | 444 | case 'capitalize': |
| 445 | - $_ = explode(' ',$value); |
|
| 446 | - foreach($_ as $i=>$v) |
|
| 445 | + $_ = explode(' ', $value); |
|
| 446 | + foreach ($_ as $i=>$v) |
|
| 447 | 447 | { |
| 448 | 448 | $_[$i] = ucfirst($v); |
| 449 | 449 | } |
| 450 | - return join(' ',$_); |
|
| 450 | + return join(' ', $_); |
|
| 451 | 451 | case 'zenhan': |
| 452 | - if(empty($opt)) $opt='VKas'; |
|
| 453 | - return mb_convert_kana($value,$opt,$modx->config['modx_charset']); |
|
| 452 | + if (empty($opt)) $opt = 'VKas'; |
|
| 453 | + return mb_convert_kana($value, $opt, $modx->config['modx_charset']); |
|
| 454 | 454 | case 'hanzen': |
| 455 | - if(empty($opt)) $opt='VKAS'; |
|
| 456 | - return mb_convert_kana($value,$opt,$modx->config['modx_charset']); |
|
| 455 | + if (empty($opt)) $opt = 'VKAS'; |
|
| 456 | + return mb_convert_kana($value, $opt, $modx->config['modx_charset']); |
|
| 457 | 457 | case 'str_shuffle': |
| 458 | 458 | case 'shuffle': |
| 459 | 459 | return $this->str_shuffle($value); |
@@ -467,7 +467,7 @@ discard block |
||
| 467 | 467 | return $this->strlen($value); |
| 468 | 468 | case 'count_words': |
| 469 | 469 | $value = trim($value); |
| 470 | - return count(preg_split('/\s+/',$value)); |
|
| 470 | + return count(preg_split('/\s+/', $value)); |
|
| 471 | 471 | case 'str_word_count': |
| 472 | 472 | case 'word_count': |
| 473 | 473 | case 'wordcount': |
@@ -475,55 +475,55 @@ discard block |
||
| 475 | 475 | case 'count_paragraphs': |
| 476 | 476 | $value = trim($value); |
| 477 | 477 | $value = preg_replace('/\r/', '', $value); |
| 478 | - return count(preg_split('/\n+/',$value)); |
|
| 478 | + return count(preg_split('/\n+/', $value)); |
|
| 479 | 479 | case 'strpos': |
| 480 | - if($opt!=0&&empty($opt)) return $value; |
|
| 481 | - return $this->strpos($value,$opt); |
|
| 480 | + if ($opt != 0 && empty($opt)) return $value; |
|
| 481 | + return $this->strpos($value, $opt); |
|
| 482 | 482 | case 'wordwrap': |
| 483 | 483 | // default: 70 |
| 484 | 484 | $wrapat = intval($opt) ? intval($opt) : 70; |
| 485 | 485 | if (version_compare(PHP_VERSION, '5.3.0') >= 0) return $this->includeMdfFile('wordwrap'); |
| 486 | - else return preg_replace("@(\b\w+\b)@e","wordwrap('\\1',\$wrapat,' ',1)",$value); |
|
| 486 | + else return preg_replace("@(\b\w+\b)@e", "wordwrap('\\1',\$wrapat,' ',1)", $value); |
|
| 487 | 487 | case 'wrap_text': |
| 488 | - $width = preg_match('/^[1-9][0-9]*$/',$opt) ? $opt : 70; |
|
| 489 | - if($modx->config['manager_language']==='japanese-utf8') { |
|
| 488 | + $width = preg_match('/^[1-9][0-9]*$/', $opt) ? $opt : 70; |
|
| 489 | + if ($modx->config['manager_language'] === 'japanese-utf8') { |
|
| 490 | 490 | $chunk = array(); |
| 491 | - $bt=''; |
|
| 492 | - while($bt!=$value) { |
|
| 491 | + $bt = ''; |
|
| 492 | + while ($bt != $value) { |
|
| 493 | 493 | $bt = $value; |
| 494 | - if($this->strlen($value)<$width) { |
|
| 494 | + if ($this->strlen($value) < $width) { |
|
| 495 | 495 | $chunk[] = $value; |
| 496 | 496 | break; |
| 497 | 497 | } |
| 498 | - $chunk[] = $this->substr($value,0,$width); |
|
| 499 | - $value = $this->substr($value,$width); |
|
| 498 | + $chunk[] = $this->substr($value, 0, $width); |
|
| 499 | + $value = $this->substr($value, $width); |
|
| 500 | 500 | } |
| 501 | - return join("\n",$chunk); |
|
| 501 | + return join("\n", $chunk); |
|
| 502 | 502 | } |
| 503 | 503 | else |
| 504 | - return wordwrap($value,$width,"\n",true); |
|
| 504 | + return wordwrap($value, $width, "\n", true); |
|
| 505 | 505 | case 'substr': |
| 506 | - if(empty($opt)) break; |
|
| 507 | - if(strpos($opt,',')!==false) { |
|
| 508 | - list($b,$e) = explode(',',$opt,2); |
|
| 509 | - return $this->substr($value,$b,(int)$e); |
|
| 506 | + if (empty($opt)) break; |
|
| 507 | + if (strpos($opt, ',') !== false) { |
|
| 508 | + list($b, $e) = explode(',', $opt, 2); |
|
| 509 | + return $this->substr($value, $b, (int) $e); |
|
| 510 | 510 | } |
| 511 | - else return $this->substr($value,$opt); |
|
| 511 | + else return $this->substr($value, $opt); |
|
| 512 | 512 | case 'limit': |
| 513 | 513 | case 'trim_to': // http://www.movabletype.jp/documentation/appendices/modifiers/trim_to.html |
| 514 | - if(strpos($opt,'+')!==false) |
|
| 515 | - list($len,$str) = explode('+',$opt,2); |
|
| 514 | + if (strpos($opt, '+') !== false) |
|
| 515 | + list($len, $str) = explode('+', $opt, 2); |
|
| 516 | 516 | else { |
| 517 | 517 | $len = $opt; |
| 518 | 518 | $str = ''; |
| 519 | 519 | } |
| 520 | - if($len==='') $len = 100; |
|
| 521 | - if(abs($len) > $this->strlen($value)) $str =''; |
|
| 522 | - if(preg_match('/^[1-9][0-9]*$/',$len)) { |
|
| 523 | - return $this->substr($value,0,$len) . $str; |
|
| 520 | + if ($len === '') $len = 100; |
|
| 521 | + if (abs($len) > $this->strlen($value)) $str = ''; |
|
| 522 | + if (preg_match('/^[1-9][0-9]*$/', $len)) { |
|
| 523 | + return $this->substr($value, 0, $len).$str; |
|
| 524 | 524 | } |
| 525 | - elseif(preg_match('/^\-[1-9][0-9]*$/',$len)) { |
|
| 526 | - return $str . $this->substr($value,$len); |
|
| 525 | + elseif (preg_match('/^\-[1-9][0-9]*$/', $len)) { |
|
| 526 | + return $str.$this->substr($value, $len); |
|
| 527 | 527 | } |
| 528 | 528 | break; |
| 529 | 529 | case 'summary': |
@@ -532,81 +532,81 @@ discard block |
||
| 532 | 532 | return $this->includeMdfFile('summary'); |
| 533 | 533 | case 'replace': |
| 534 | 534 | case 'str_replace': |
| 535 | - if(empty($opt) || strpos($opt,',')===false) break; |
|
| 536 | - if (substr_count($opt, ',') ==1) $delim = ','; |
|
| 537 | - elseif(substr_count($opt, '|') ==1) $delim = '|'; |
|
| 538 | - elseif(substr_count($opt, '=>')==1) $delim = '=>'; |
|
| 539 | - elseif(substr_count($opt, '/') ==1) $delim = '/'; |
|
| 535 | + if (empty($opt) || strpos($opt, ',') === false) break; |
|
| 536 | + if (substr_count($opt, ',') == 1) $delim = ','; |
|
| 537 | + elseif (substr_count($opt, '|') == 1) $delim = '|'; |
|
| 538 | + elseif (substr_count($opt, '=>') == 1) $delim = '=>'; |
|
| 539 | + elseif (substr_count($opt, '/') == 1) $delim = '/'; |
|
| 540 | 540 | else break; |
| 541 | - list($s,$r) = explode($delim,$opt); |
|
| 542 | - if($value!=='') return str_replace($s,$r,$value); |
|
| 541 | + list($s, $r) = explode($delim, $opt); |
|
| 542 | + if ($value !== '') return str_replace($s, $r, $value); |
|
| 543 | 543 | break; |
| 544 | 544 | case 'replace_to': |
| 545 | 545 | case 'tpl': |
| 546 | - if($value!=='') return str_replace(array('[+value+]','[+output+]','{value}','%s'),$value,$opt); |
|
| 546 | + if ($value !== '') return str_replace(array('[+value+]', '[+output+]', '{value}', '%s'), $value, $opt); |
|
| 547 | 547 | break; |
| 548 | 548 | case 'eachtpl': |
| 549 | - $value = explode('||',$value); |
|
| 549 | + $value = explode('||', $value); |
|
| 550 | 550 | $_ = array(); |
| 551 | - foreach($value as $v) { |
|
| 552 | - $_[] = str_replace(array('[+value+]','[+output+]','{value}','%s'),$v,$opt); |
|
| 551 | + foreach ($value as $v) { |
|
| 552 | + $_[] = str_replace(array('[+value+]', '[+output+]', '{value}', '%s'), $v, $opt); |
|
| 553 | 553 | } |
| 554 | 554 | return join("\n", $_); |
| 555 | 555 | case 'array_pop': |
| 556 | 556 | case 'array_shift': |
| 557 | - if(strpos($value,'||')!==false) $delim = '||'; |
|
| 557 | + if (strpos($value, '||') !== false) $delim = '||'; |
|
| 558 | 558 | else $delim = ','; |
| 559 | - return $cmd(explode($delim,$value)); |
|
| 559 | + return $cmd(explode($delim, $value)); |
|
| 560 | 560 | case 'preg_replace': |
| 561 | 561 | case 'regex_replace': |
| 562 | - if(empty($opt) || strpos($opt,',')===false) break; |
|
| 563 | - list($s,$r) = explode(',',$opt,2); |
|
| 564 | - if($value!=='') return preg_replace($s,$r,$value); |
|
| 562 | + if (empty($opt) || strpos($opt, ',') === false) break; |
|
| 563 | + list($s, $r) = explode(',', $opt, 2); |
|
| 564 | + if ($value !== '') return preg_replace($s, $r, $value); |
|
| 565 | 565 | break; |
| 566 | 566 | case 'cat': |
| 567 | 567 | case 'concatenate': |
| 568 | 568 | case '.': |
| 569 | - if($value!=='') return $value . $opt; |
|
| 569 | + if ($value !== '') return $value.$opt; |
|
| 570 | 570 | break; |
| 571 | 571 | case 'sprintf': |
| 572 | 572 | case 'string_format': |
| 573 | - if($value!=='') return sprintf($opt,$value); |
|
| 573 | + if ($value !== '') return sprintf($opt, $value); |
|
| 574 | 574 | break; |
| 575 | 575 | case 'number_format': |
| 576 | - if($opt=='') $opt = 0; |
|
| 577 | - return number_format($value,$opt); |
|
| 576 | + if ($opt == '') $opt = 0; |
|
| 577 | + return number_format($value, $opt); |
|
| 578 | 578 | case 'money_format': |
| 579 | - setlocale(LC_MONETARY,setlocale(LC_TIME,0)); |
|
| 580 | - if($value!=='') return money_format($opt,(double)$value); |
|
| 579 | + setlocale(LC_MONETARY, setlocale(LC_TIME, 0)); |
|
| 580 | + if ($value !== '') return money_format($opt, (double) $value); |
|
| 581 | 581 | break; |
| 582 | 582 | case 'tobool': |
| 583 | 583 | return boolval($value); |
| 584 | 584 | case 'nl2lf': |
| 585 | - if($value!=='') return str_replace(array("\r\n","\n", "\r"), '\n', $value); |
|
| 585 | + if ($value !== '') return str_replace(array("\r\n", "\n", "\r"), '\n', $value); |
|
| 586 | 586 | break; |
| 587 | 587 | case 'br2nl': |
| 588 | 588 | return preg_replace('@<br[\s/]*>@i', "\n", $value); |
| 589 | 589 | case 'nl2br': |
| 590 | 590 | if (version_compare(PHP_VERSION, '5.3.0', '<')) |
| 591 | 591 | return nl2br($value); |
| 592 | - if($opt!=='') |
|
| 592 | + if ($opt !== '') |
|
| 593 | 593 | { |
| 594 | 594 | $opt = trim($opt); |
| 595 | 595 | $opt = strtolower($opt); |
| 596 | - if($opt==='false') $opt = false; |
|
| 597 | - elseif($opt==='0') $opt = false; |
|
| 596 | + if ($opt === 'false') $opt = false; |
|
| 597 | + elseif ($opt === '0') $opt = false; |
|
| 598 | 598 | else $opt = true; |
| 599 | 599 | } |
| 600 | - elseif(isset($modx->config['mce_element_format'])&&$modx->config['mce_element_format']==='html') |
|
| 600 | + elseif (isset($modx->config['mce_element_format']) && $modx->config['mce_element_format'] === 'html') |
|
| 601 | 601 | $opt = false; |
| 602 | 602 | else $opt = true; |
| 603 | - return nl2br($value,$opt); |
|
| 603 | + return nl2br($value, $opt); |
|
| 604 | 604 | case 'ltrim': |
| 605 | 605 | case 'rtrim': |
| 606 | 606 | case 'trim': // ref http://mblo.info/modifiers/custom-modifiers/rtrim_opt.html |
| 607 | - if($opt==='') |
|
| 607 | + if ($opt === '') |
|
| 608 | 608 | return $cmd($value); |
| 609 | - else return $cmd($value,$opt); |
|
| 609 | + else return $cmd($value, $opt); |
|
| 610 | 610 | // These are all straight wrappers for PHP functions |
| 611 | 611 | case 'ucfirst': |
| 612 | 612 | case 'lcfirst': |
@@ -617,16 +617,16 @@ discard block |
||
| 617 | 617 | case 'strftime': |
| 618 | 618 | case 'date': |
| 619 | 619 | case 'dateformat': |
| 620 | - if(empty($opt)) $opt = $modx->toDateFormat(null, 'formatOnly'); |
|
| 621 | - if(!preg_match('@^[0-9]+$@',$value)) $value = strtotime($value); |
|
| 622 | - if(strpos($opt,'%')!==false) |
|
| 623 | - return strftime($opt,0+$value); |
|
| 620 | + if (empty($opt)) $opt = $modx->toDateFormat(null, 'formatOnly'); |
|
| 621 | + if (!preg_match('@^[0-9]+$@', $value)) $value = strtotime($value); |
|
| 622 | + if (strpos($opt, '%') !== false) |
|
| 623 | + return strftime($opt, 0 + $value); |
|
| 624 | 624 | else |
| 625 | - return date($opt,0+$value); |
|
| 625 | + return date($opt, 0 + $value); |
|
| 626 | 626 | case 'time': |
| 627 | - if(empty($opt)) $opt = '%H:%M'; |
|
| 628 | - if(!preg_match('@^[0-9]+$@',$value)) $value = strtotime($value); |
|
| 629 | - return strftime($opt,0+$value); |
|
| 627 | + if (empty($opt)) $opt = '%H:%M'; |
|
| 628 | + if (!preg_match('@^[0-9]+$@', $value)) $value = strtotime($value); |
|
| 629 | + return strftime($opt, 0 + $value); |
|
| 630 | 630 | case 'strtotime': |
| 631 | 631 | return strtotime($value); |
| 632 | 632 | ##### mathematical function |
@@ -635,40 +635,40 @@ discard block |
||
| 635 | 635 | case 'tofloat': |
| 636 | 636 | return floatval($value); |
| 637 | 637 | case 'round': |
| 638 | - if(!$opt) $opt = 0; |
|
| 639 | - return $cmd($value,$opt); |
|
| 638 | + if (!$opt) $opt = 0; |
|
| 639 | + return $cmd($value, $opt); |
|
| 640 | 640 | case 'max': |
| 641 | 641 | case 'min': |
| 642 | - return $cmd(explode(',',$value)); |
|
| 642 | + return $cmd(explode(',', $value)); |
|
| 643 | 643 | case 'floor': |
| 644 | 644 | case 'ceil': |
| 645 | 645 | case 'abs': |
| 646 | 646 | return $cmd($value); |
| 647 | 647 | case 'math': |
| 648 | 648 | case 'calc': |
| 649 | - $value = (int)$value; |
|
| 650 | - if(empty($value)) $value = '0'; |
|
| 651 | - $filter = str_replace(array('[+value+]','[+output+]','{value}','%s'),'?',$opt); |
|
| 652 | - $filter = preg_replace('@([a-zA-Z\n\r\t\s])@','',$filter); |
|
| 653 | - if(strpos($filter,'?')===false) $filter = "?{$filter}"; |
|
| 654 | - $filter = str_replace('?',$value,$filter); |
|
| 649 | + $value = (int) $value; |
|
| 650 | + if (empty($value)) $value = '0'; |
|
| 651 | + $filter = str_replace(array('[+value+]', '[+output+]', '{value}', '%s'), '?', $opt); |
|
| 652 | + $filter = preg_replace('@([a-zA-Z\n\r\t\s])@', '', $filter); |
|
| 653 | + if (strpos($filter, '?') === false) $filter = "?{$filter}"; |
|
| 654 | + $filter = str_replace('?', $value, $filter); |
|
| 655 | 655 | return eval("return {$filter};"); |
| 656 | 656 | case 'count': |
| 657 | - if($value=='') return 0; |
|
| 658 | - $value = explode(',',$value); |
|
| 657 | + if ($value == '') return 0; |
|
| 658 | + $value = explode(',', $value); |
|
| 659 | 659 | return count($value); |
| 660 | 660 | case 'sort': |
| 661 | 661 | case 'rsort': |
| 662 | - if(strpos($value,"\n")!==false) $delim="\n"; |
|
| 662 | + if (strpos($value, "\n") !== false) $delim = "\n"; |
|
| 663 | 663 | else $delim = ','; |
| 664 | - $swap = explode($delim,$value); |
|
| 665 | - if(!$opt) $opt = SORT_REGULAR; |
|
| 664 | + $swap = explode($delim, $value); |
|
| 665 | + if (!$opt) $opt = SORT_REGULAR; |
|
| 666 | 666 | else $opt = constant($opt); |
| 667 | - $cmd($swap,$opt); |
|
| 668 | - return join($delim,$swap); |
|
| 667 | + $cmd($swap, $opt); |
|
| 668 | + return join($delim, $swap); |
|
| 669 | 669 | ##### Resource fields |
| 670 | 670 | case 'id': |
| 671 | - if($opt) return $this->getDocumentObject($opt,$key); |
|
| 671 | + if ($opt) return $this->getDocumentObject($opt, $key); |
|
| 672 | 672 | break; |
| 673 | 673 | case 'type': |
| 674 | 674 | case 'contenttype': |
@@ -705,36 +705,36 @@ discard block |
||
| 705 | 705 | case 'privatemgr': |
| 706 | 706 | case 'content_dispo': |
| 707 | 707 | case 'hidemenu': |
| 708 | - if($cmd==='contenttype') $cmd = 'contentType'; |
|
| 709 | - return $this->getDocumentObject($value,$cmd); |
|
| 708 | + if ($cmd === 'contenttype') $cmd = 'contentType'; |
|
| 709 | + return $this->getDocumentObject($value, $cmd); |
|
| 710 | 710 | case 'title': |
| 711 | - $pagetitle = $this->getDocumentObject($value,'pagetitle'); |
|
| 712 | - $longtitle = $this->getDocumentObject($value,'longtitle'); |
|
| 711 | + $pagetitle = $this->getDocumentObject($value, 'pagetitle'); |
|
| 712 | + $longtitle = $this->getDocumentObject($value, 'longtitle'); |
|
| 713 | 713 | return $longtitle ? $longtitle : $pagetitle; |
| 714 | 714 | case 'shorttitle': |
| 715 | - $pagetitle = $this->getDocumentObject($value,'pagetitle'); |
|
| 716 | - $menutitle = $this->getDocumentObject($value,'menutitle'); |
|
| 715 | + $pagetitle = $this->getDocumentObject($value, 'pagetitle'); |
|
| 716 | + $menutitle = $this->getDocumentObject($value, 'menutitle'); |
|
| 717 | 717 | return $menutitle ? $menutitle : $pagetitle; |
| 718 | 718 | case 'templatename': |
| 719 | - $rs = $modx->db->select('templatename','[+prefix+]site_templates',"id='{$value}'"); |
|
| 719 | + $rs = $modx->db->select('templatename', '[+prefix+]site_templates', "id='{$value}'"); |
|
| 720 | 720 | $templateName = $modx->db->getValue($rs); |
| 721 | 721 | return !$templateName ? '(blank)' : $templateName; |
| 722 | 722 | case 'getfield': |
| 723 | - if(!$opt) $opt = 'content'; |
|
| 724 | - return $modx->getField($opt,$value); |
|
| 723 | + if (!$opt) $opt = 'content'; |
|
| 724 | + return $modx->getField($opt, $value); |
|
| 725 | 725 | case 'children': |
| 726 | 726 | case 'childids': |
| 727 | - if($value=='') $value = 0; // 値がない場合はルートと見なす |
|
| 727 | + if ($value == '') $value = 0; // 値がない場合はルートと見なす |
|
| 728 | 728 | $published = 1; |
| 729 | - if($opt=='') $opt = 'page'; |
|
| 730 | - $_ = explode(',',$opt); |
|
| 729 | + if ($opt == '') $opt = 'page'; |
|
| 730 | + $_ = explode(',', $opt); |
|
| 731 | 731 | $where = array(); |
| 732 | - foreach($_ as $opt) { |
|
| 733 | - switch(trim($opt)) { |
|
| 732 | + foreach ($_ as $opt) { |
|
| 733 | + switch (trim($opt)) { |
|
| 734 | 734 | case 'page'; case '!folder'; case '!isfolder': $where[] = 'sc.isfolder=0'; break; |
| 735 | 735 | case 'folder'; case 'isfolder': $where[] = 'sc.isfolder=1'; break; |
| 736 | - case 'menu'; case 'show_menu': $where[] = 'sc.hidemenu=0'; break; |
|
| 737 | - case '!menu'; case '!show_menu': $where[] = 'sc.hidemenu=1'; break; |
|
| 736 | + case 'menu'; case 'show_menu': $where[] = 'sc.hidemenu=0'; break; |
|
| 737 | + case '!menu'; case '!show_menu': $where[] = 'sc.hidemenu=1'; break; |
|
| 738 | 738 | case 'published': $published = 1; break; |
| 739 | 739 | case '!published': $published = 0; break; |
| 740 | 740 | } |
@@ -742,69 +742,69 @@ discard block |
||
| 742 | 742 | $where = join(' AND ', $where); |
| 743 | 743 | $children = $modx->getDocumentChildren($value, $published, '0', 'id', $where); |
| 744 | 744 | $result = array(); |
| 745 | - foreach((array)$children as $child){ |
|
| 745 | + foreach ((array) $children as $child) { |
|
| 746 | 746 | $result[] = $child['id']; |
| 747 | 747 | } |
| 748 | 748 | return join(',', $result); |
| 749 | 749 | case 'fullurl': |
| 750 | - if(!is_numeric($value)) return $value; |
|
| 750 | + if (!is_numeric($value)) return $value; |
|
| 751 | 751 | return $modx->makeUrl($value); |
| 752 | 752 | case 'makeurl': |
| 753 | - if(!is_numeric($value)) return $value; |
|
| 754 | - if(!$opt) $opt = 'full'; |
|
| 755 | - return $modx->makeUrl($value,'','',$opt); |
|
| 753 | + if (!is_numeric($value)) return $value; |
|
| 754 | + if (!$opt) $opt = 'full'; |
|
| 755 | + return $modx->makeUrl($value, '', '', $opt); |
|
| 756 | 756 | |
| 757 | 757 | ##### File system |
| 758 | 758 | case 'getimageinfo': |
| 759 | 759 | case 'imageinfo': |
| 760 | - if(!is_file($value)) return ''; |
|
| 760 | + if (!is_file($value)) return ''; |
|
| 761 | 761 | $_ = getimagesize($value); |
| 762 | - if(!$_[0]) return ''; |
|
| 762 | + if (!$_[0]) return ''; |
|
| 763 | 763 | $info['width'] = $_[0]; |
| 764 | 764 | $info['height'] = $_[1]; |
| 765 | - if ($_[0] > $_[1]) $info['aspect'] = 'landscape'; |
|
| 766 | - elseif($_[0] < $_[1]) $info['aspect'] = 'portrait'; |
|
| 765 | + if ($_[0] > $_[1]) $info['aspect'] = 'landscape'; |
|
| 766 | + elseif ($_[0] < $_[1]) $info['aspect'] = 'portrait'; |
|
| 767 | 767 | else $info['aspect'] = 'square'; |
| 768 | - switch($_[2]) { |
|
| 768 | + switch ($_[2]) { |
|
| 769 | 769 | case IMAGETYPE_GIF : $info['type'] = 'gif'; break; |
| 770 | 770 | case IMAGETYPE_JPEG : $info['type'] = 'jpg'; break; |
| 771 | 771 | case IMAGETYPE_PNG : $info['type'] = 'png'; break; |
| 772 | 772 | default : $info['type'] = 'unknown'; |
| 773 | 773 | } |
| 774 | 774 | $info['attrib'] = $_[3]; |
| 775 | - switch($opt) { |
|
| 775 | + switch ($opt) { |
|
| 776 | 776 | case 'width' : return $info['width']; |
| 777 | 777 | case 'height': return $info['height']; |
| 778 | 778 | case 'aspect': return $info['aspect']; |
| 779 | 779 | case 'type' : return $info['type']; |
| 780 | 780 | case 'attrib': return $info['attrib']; |
| 781 | - default : return print_r($info,true); |
|
| 781 | + default : return print_r($info, true); |
|
| 782 | 782 | } |
| 783 | 783 | |
| 784 | 784 | case 'file_get_contents': |
| 785 | 785 | case 'readfile': |
| 786 | - if(!is_file($value)) return $value; |
|
| 786 | + if (!is_file($value)) return $value; |
|
| 787 | 787 | $value = realpath($value); |
| 788 | - if(strpos($value,MODX_MANAGER_PATH)!==false) exit('Can not read core file'); |
|
| 789 | - $ext = strtolower(substr($value,-4)); |
|
| 790 | - if($ext==='.php') exit('Can not read php file'); |
|
| 791 | - if($ext==='.cgi') exit('Can not read cgi file'); |
|
| 788 | + if (strpos($value, MODX_MANAGER_PATH) !== false) exit('Can not read core file'); |
|
| 789 | + $ext = strtolower(substr($value, -4)); |
|
| 790 | + if ($ext === '.php') exit('Can not read php file'); |
|
| 791 | + if ($ext === '.cgi') exit('Can not read cgi file'); |
|
| 792 | 792 | return file_get_contents($value); |
| 793 | 793 | case 'filesize': |
| 794 | - if($value == '') return ''; |
|
| 794 | + if ($value == '') return ''; |
|
| 795 | 795 | $filename = $value; |
| 796 | 796 | |
| 797 | 797 | $site_url = $modx->config['site_url']; |
| 798 | - if(strpos($filename,$site_url) === 0) |
|
| 799 | - $filename = substr($filename,0,strlen($site_url)); |
|
| 800 | - $filename = trim($filename,'/'); |
|
| 798 | + if (strpos($filename, $site_url) === 0) |
|
| 799 | + $filename = substr($filename, 0, strlen($site_url)); |
|
| 800 | + $filename = trim($filename, '/'); |
|
| 801 | 801 | |
| 802 | - $opt = trim($opt,'/'); |
|
| 803 | - if($opt!=='') $opt .= '/'; |
|
| 802 | + $opt = trim($opt, '/'); |
|
| 803 | + if ($opt !== '') $opt .= '/'; |
|
| 804 | 804 | |
| 805 | 805 | $filename = MODX_BASE_PATH.$opt.$filename; |
| 806 | 806 | |
| 807 | - if(is_file($filename)){ |
|
| 807 | + if (is_file($filename)) { |
|
| 808 | 808 | clearstatcache(); |
| 809 | 809 | $size = filesize($filename); |
| 810 | 810 | return $size; |
@@ -837,10 +837,10 @@ discard block |
||
| 837 | 837 | $this->opt = $cmd; |
| 838 | 838 | return $this->includeMdfFile('moduser'); |
| 839 | 839 | case 'userinfo': |
| 840 | - if(empty($opt)) $this->opt = 'username'; |
|
| 840 | + if (empty($opt)) $this->opt = 'username'; |
|
| 841 | 841 | return $this->includeMdfFile('moduser'); |
| 842 | 842 | case 'webuserinfo': |
| 843 | - if(empty($opt)) $this->opt = 'username'; |
|
| 843 | + if (empty($opt)) $this->opt = 'username'; |
|
| 844 | 844 | $this->value = -$value; |
| 845 | 845 | return $this->includeMdfFile('moduser'); |
| 846 | 846 | ##### Special functions |
@@ -851,28 +851,28 @@ discard block |
||
| 851 | 851 | case 'ifnotempty': |
| 852 | 852 | if (!empty($value)) return $opt; break; |
| 853 | 853 | case 'datagrid': |
| 854 | - include_once(MODX_CORE_PATH . 'controls/datagrid.class.php'); |
|
| 854 | + include_once(MODX_CORE_PATH.'controls/datagrid.class.php'); |
|
| 855 | 855 | $grd = new DataGrid(); |
| 856 | 856 | $grd->ds = trim($value); |
| 857 | 857 | $grd->itemStyle = ''; |
| 858 | 858 | $grd->altItemStyle = ''; |
| 859 | - $pos = strpos($value,"\n"); |
|
| 860 | - if($pos) $_ = substr($value,0,$pos); |
|
| 859 | + $pos = strpos($value, "\n"); |
|
| 860 | + if ($pos) $_ = substr($value, 0, $pos); |
|
| 861 | 861 | else $_ = $pos; |
| 862 | - $grd->cdelim = strpos($_,"\t")!==false ? 'tab' : ','; |
|
| 862 | + $grd->cdelim = strpos($_, "\t") !== false ? 'tab' : ','; |
|
| 863 | 863 | return $grd->render(); |
| 864 | 864 | case 'rotate': |
| 865 | 865 | case 'evenodd': |
| 866 | - if(strpos($opt,',')===false) $opt = 'odd,even'; |
|
| 866 | + if (strpos($opt, ',') === false) $opt = 'odd,even'; |
|
| 867 | 867 | $_ = explode(',', $opt); |
| 868 | 868 | $c = count($_); |
| 869 | 869 | $i = $value + $c; |
| 870 | 870 | $i = $i % $c; |
| 871 | 871 | return $_[$i]; |
| 872 | 872 | case 'takeval': |
| 873 | - $arr = explode(",",$opt); |
|
| 873 | + $arr = explode(",", $opt); |
|
| 874 | 874 | $idx = $value; |
| 875 | - if(!is_numeric($idx)) return $value; |
|
| 875 | + if (!is_numeric($idx)) return $value; |
|
| 876 | 876 | return $arr[$idx]; |
| 877 | 877 | case 'getimage': |
| 878 | 878 | return $this->includeMdfFile('getimage'); |
@@ -880,17 +880,17 @@ discard block |
||
| 880 | 880 | return $modx->nicesize($value); |
| 881 | 881 | case 'googlemap': |
| 882 | 882 | case 'googlemaps': |
| 883 | - if(empty($opt)) $opt = 'border:none;width:500px;height:350px;'; |
|
| 883 | + if (empty($opt)) $opt = 'border:none;width:500px;height:350px;'; |
|
| 884 | 884 | $tpl = '<iframe style="[+style+]" src="https://maps.google.co.jp/maps?ll=[+value+]&output=embed&z=15"></iframe>'; |
| 885 | 885 | $ph['style'] = $opt; |
| 886 | 886 | $ph['value'] = $value; |
| 887 | - return $modx->parseText($tpl,$ph); |
|
| 887 | + return $modx->parseText($tpl, $ph); |
|
| 888 | 888 | case 'youtube': |
| 889 | 889 | case 'youtube16x9': |
| 890 | - if(empty($opt)) $opt = 560; |
|
| 891 | - $h = round($opt*0.5625); |
|
| 890 | + if (empty($opt)) $opt = 560; |
|
| 891 | + $h = round($opt * 0.5625); |
|
| 892 | 892 | $tpl = '<iframe width="%s" height="%s" src="https://www.youtube.com/embed/%s" frameborder="0" allowfullscreen></iframe>'; |
| 893 | - return sprintf($tpl,$opt,$h,$value); |
|
| 893 | + return sprintf($tpl, $opt, $h, $value); |
|
| 894 | 894 | //case 'youtube4x3':%s*0.75+25 |
| 895 | 895 | case 'setvar': |
| 896 | 896 | $modx->placeholders[$opt] = $value; |
@@ -920,7 +920,7 @@ discard block |
||
| 920 | 920 | return $value; |
| 921 | 921 | } |
| 922 | 922 | |
| 923 | - function includeMdfFile($cmd) { |
|
| 923 | + function includeMdfFile($cmd){ |
|
| 924 | 924 | global $modx; |
| 925 | 925 | $key = $this->key; |
| 926 | 926 | $value = $this->value; |
@@ -931,54 +931,54 @@ discard block |
||
| 931 | 931 | function getValueFromElement($key, $value, $cmd, $opt) |
| 932 | 932 | { |
| 933 | 933 | global $modx; |
| 934 | - if( isset($modx->snippetCache[$this->elmName]) ) |
|
| 934 | + if (isset($modx->snippetCache[$this->elmName])) |
|
| 935 | 935 | { |
| 936 | 936 | $php = $modx->snippetCache[$this->elmName]; |
| 937 | 937 | } |
| 938 | 938 | else |
| 939 | 939 | { |
| 940 | 940 | $esc_elmName = $modx->db->escape($this->elmName); |
| 941 | - $result = $modx->db->select('snippet','[+prefix+]site_snippets',"name='{$esc_elmName}'"); |
|
| 941 | + $result = $modx->db->select('snippet', '[+prefix+]site_snippets', "name='{$esc_elmName}'"); |
|
| 942 | 942 | $total = $modx->db->getRecordCount($result); |
| 943 | - if($total == 1) |
|
| 943 | + if ($total == 1) |
|
| 944 | 944 | { |
| 945 | 945 | $row = $modx->db->getRow($result); |
| 946 | 946 | $php = $row['snippet']; |
| 947 | 947 | } |
| 948 | - elseif($total == 0) |
|
| 948 | + elseif ($total == 0) |
|
| 949 | 949 | { |
| 950 | 950 | $assets_path = MODX_BASE_PATH.'assets/'; |
| 951 | - if(is_file($assets_path."modifiers/mdf_{$cmd}.inc.php")) |
|
| 951 | + if (is_file($assets_path."modifiers/mdf_{$cmd}.inc.php")) |
|
| 952 | 952 | $modifiers_path = $assets_path."modifiers/mdf_{$cmd}.inc.php"; |
| 953 | - elseif(is_file($assets_path."plugins/phx/modifiers/{$cmd}.phx.php")) |
|
| 953 | + elseif (is_file($assets_path."plugins/phx/modifiers/{$cmd}.phx.php")) |
|
| 954 | 954 | $modifiers_path = $assets_path."plugins/phx/modifiers/{$cmd}.phx.php"; |
| 955 | - elseif(is_file(MODX_CORE_PATH."extenders/modifiers/mdf_{$cmd}.inc.php")) |
|
| 955 | + elseif (is_file(MODX_CORE_PATH."extenders/modifiers/mdf_{$cmd}.inc.php")) |
|
| 956 | 956 | $modifiers_path = MODX_CORE_PATH."extenders/modifiers/mdf_{$cmd}.inc.php"; |
| 957 | 957 | else $modifiers_path = false; |
| 958 | 958 | |
| 959 | - if($modifiers_path) { |
|
| 959 | + if ($modifiers_path) { |
|
| 960 | 960 | $php = @file_get_contents($modifiers_path); |
| 961 | 961 | $php = trim($php); |
| 962 | - if(substr($php,0,5)==='<?php') $php = substr($php,6); |
|
| 963 | - if(substr($php,0,2)==='<?') $php = substr($php,3); |
|
| 964 | - if(substr($php,-2)==='?>') $php = substr($php,0,-2); |
|
| 965 | - if($this->elmName!=='') |
|
| 962 | + if (substr($php, 0, 5) === '<?php') $php = substr($php, 6); |
|
| 963 | + if (substr($php, 0, 2) === '<?') $php = substr($php, 3); |
|
| 964 | + if (substr($php, -2) === '?>') $php = substr($php, 0, -2); |
|
| 965 | + if ($this->elmName !== '') |
|
| 966 | 966 | $modx->snippetCache[$this->elmName.'Props'] = ''; |
| 967 | 967 | } |
| 968 | 968 | else |
| 969 | 969 | $php = false; |
| 970 | 970 | } |
| 971 | 971 | else $php = false; |
| 972 | - if($this->elmName!=='') $modx->snippetCache[$this->elmName]= $php; |
|
| 972 | + if ($this->elmName !== '') $modx->snippetCache[$this->elmName] = $php; |
|
| 973 | 973 | } |
| 974 | - if($php==='') $php=false; |
|
| 974 | + if ($php === '') $php = false; |
|
| 975 | 975 | |
| 976 | - if($php===false) $html = $modx->getChunk($this->elmName); |
|
| 976 | + if ($php === false) $html = $modx->getChunk($this->elmName); |
|
| 977 | 977 | else $html = false; |
| 978 | 978 | |
| 979 | 979 | $self = '[+output+]'; |
| 980 | 980 | |
| 981 | - if($php !== false) |
|
| 981 | + if ($php !== false) |
|
| 982 | 982 | { |
| 983 | 983 | ob_start(); |
| 984 | 984 | $options = $opt; |
@@ -991,71 +991,71 @@ discard block |
||
| 991 | 991 | $this->vars['options'] = & $opt; |
| 992 | 992 | $custom = eval($php); |
| 993 | 993 | $msg = ob_get_contents(); |
| 994 | - if($value===$this->bt) $value = $msg . $custom; |
|
| 994 | + if ($value === $this->bt) $value = $msg.$custom; |
|
| 995 | 995 | ob_end_clean(); |
| 996 | 996 | } |
| 997 | - elseif($html!==false && isset($value) && $value!=='') |
|
| 997 | + elseif ($html !== false && isset($value) && $value !== '') |
|
| 998 | 998 | { |
| 999 | - $html = str_replace(array($self,'[+value+]'), $value, $html); |
|
| 1000 | - $value = str_replace(array('[+options+]','[+param+]'), $opt, $html); |
|
| 999 | + $html = str_replace(array($self, '[+value+]'), $value, $html); |
|
| 1000 | + $value = str_replace(array('[+options+]', '[+param+]'), $opt, $html); |
|
| 1001 | 1001 | } |
| 1002 | 1002 | else return false; |
| 1003 | 1003 | |
| 1004 | - if($php===false && $html===false && $value!=='' |
|
| 1005 | - && (strpos($cmd,'[+value+]')!==false || strpos($cmd,$self)!==false)) |
|
| 1004 | + if ($php === false && $html === false && $value !== '' |
|
| 1005 | + && (strpos($cmd, '[+value+]') !== false || strpos($cmd, $self) !== false)) |
|
| 1006 | 1006 | { |
| 1007 | - $value = str_replace(array('[+value+]',$self),$value,$cmd); |
|
| 1007 | + $value = str_replace(array('[+value+]', $self), $value, $cmd); |
|
| 1008 | 1008 | } |
| 1009 | 1009 | return $value; |
| 1010 | 1010 | } |
| 1011 | 1011 | |
| 1012 | - function parseDocumentSource($content='') |
|
| 1012 | + function parseDocumentSource($content = '') |
|
| 1013 | 1013 | { |
| 1014 | 1014 | global $modx; |
| 1015 | 1015 | |
| 1016 | - if(strpos($content,'[')===false && strpos($content,'{')===false) return $content; |
|
| 1016 | + if (strpos($content, '[') === false && strpos($content, '{') === false) return $content; |
|
| 1017 | 1017 | |
| 1018 | - if(!$modx->maxParserPasses) $modx->maxParserPasses = 10; |
|
| 1019 | - $bt=''; |
|
| 1020 | - $i=0; |
|
| 1021 | - while($bt!==$content) |
|
| 1018 | + if (!$modx->maxParserPasses) $modx->maxParserPasses = 10; |
|
| 1019 | + $bt = ''; |
|
| 1020 | + $i = 0; |
|
| 1021 | + while ($bt !== $content) |
|
| 1022 | 1022 | { |
| 1023 | 1023 | $bt = $content; |
| 1024 | - if(strpos($content,'[*')!==false && $modx->documentIdentifier) |
|
| 1024 | + if (strpos($content, '[*') !== false && $modx->documentIdentifier) |
|
| 1025 | 1025 | $content = $modx->mergeDocumentContent($content); |
| 1026 | - if(strpos($content,'[(')!==false) $content = $modx->mergeSettingsContent($content); |
|
| 1027 | - if(strpos($content,'{{')!==false) $content = $modx->mergeChunkContent($content); |
|
| 1028 | - if(strpos($content,'[!')!==false) $content = str_replace(array('[!','!]'),array('[[',']]'),$content); |
|
| 1029 | - if(strpos($content,'[[')!==false) $content = $modx->evalSnippets($content); |
|
| 1026 | + if (strpos($content, '[(') !== false) $content = $modx->mergeSettingsContent($content); |
|
| 1027 | + if (strpos($content, '{{') !== false) $content = $modx->mergeChunkContent($content); |
|
| 1028 | + if (strpos($content, '[!') !== false) $content = str_replace(array('[!', '!]'), array('[[', ']]'), $content); |
|
| 1029 | + if (strpos($content, '[[') !== false) $content = $modx->evalSnippets($content); |
|
| 1030 | 1030 | |
| 1031 | - if($content===$bt) break; |
|
| 1032 | - if($modx->maxParserPasses < $i) break; |
|
| 1031 | + if ($content === $bt) break; |
|
| 1032 | + if ($modx->maxParserPasses < $i) break; |
|
| 1033 | 1033 | $i++; |
| 1034 | 1034 | } |
| 1035 | 1035 | return $content; |
| 1036 | 1036 | } |
| 1037 | 1037 | |
| 1038 | - function getDocumentObject($target='',$field='pagetitle') |
|
| 1038 | + function getDocumentObject($target = '', $field = 'pagetitle') |
|
| 1039 | 1039 | { |
| 1040 | 1040 | global $modx; |
| 1041 | 1041 | |
| 1042 | 1042 | $target = trim($target); |
| 1043 | - if(empty($target)) $target = $modx->config['site_start']; |
|
| 1044 | - if(preg_match('@^[1-9][0-9]*$@',$target)) $method='id'; |
|
| 1043 | + if (empty($target)) $target = $modx->config['site_start']; |
|
| 1044 | + if (preg_match('@^[1-9][0-9]*$@', $target)) $method = 'id'; |
|
| 1045 | 1045 | else $method = 'alias'; |
| 1046 | 1046 | |
| 1047 | - if(!isset($this->documentObject[$target])) |
|
| 1047 | + if (!isset($this->documentObject[$target])) |
|
| 1048 | 1048 | { |
| 1049 | - $this->documentObject[$target] = $modx->getDocumentObject($method,$target,'direct'); |
|
| 1049 | + $this->documentObject[$target] = $modx->getDocumentObject($method, $target, 'direct'); |
|
| 1050 | 1050 | } |
| 1051 | 1051 | |
| 1052 | - if($this->documentObject[$target]['publishedon']==='0') |
|
| 1052 | + if ($this->documentObject[$target]['publishedon'] === '0') |
|
| 1053 | 1053 | return ''; |
| 1054 | - elseif(isset($this->documentObject[$target][$field])) |
|
| 1054 | + elseif (isset($this->documentObject[$target][$field])) |
|
| 1055 | 1055 | { |
| 1056 | - if(is_array($this->documentObject[$target][$field])) |
|
| 1056 | + if (is_array($this->documentObject[$target][$field])) |
|
| 1057 | 1057 | { |
| 1058 | - $a = $modx->getTemplateVarOutput($field,$target); |
|
| 1058 | + $a = $modx->getTemplateVarOutput($field, $target); |
|
| 1059 | 1059 | $this->documentObject[$target][$field] = $a[$field]; |
| 1060 | 1060 | } |
| 1061 | 1061 | } |
@@ -1064,8 +1064,8 @@ discard block |
||
| 1064 | 1064 | return $this->documentObject[$target][$field]; |
| 1065 | 1065 | } |
| 1066 | 1066 | |
| 1067 | - function setPlaceholders($value = '', $key = '', $path = '') { |
|
| 1068 | - if($path!=='') $key = "{$path}.{$key}"; |
|
| 1067 | + function setPlaceholders($value = '', $key = '', $path = ''){ |
|
| 1068 | + if ($path !== '') $key = "{$path}.{$key}"; |
|
| 1069 | 1069 | if (is_array($value)) { |
| 1070 | 1070 | foreach ($value as $subkey => $subval) { |
| 1071 | 1071 | $this->setPlaceholders($subval, $subkey, $key); |
@@ -1075,77 +1075,77 @@ discard block |
||
| 1075 | 1075 | } |
| 1076 | 1076 | |
| 1077 | 1077 | // Sets a placeholder variable which can only be access by Modifiers |
| 1078 | - function setModifiersVariable($key, $value) { |
|
| 1078 | + function setModifiersVariable($key, $value){ |
|
| 1079 | 1079 | if ($key != 'phx' && $key != 'dummy') $this->placeholders[$key] = $value; |
| 1080 | 1080 | } |
| 1081 | 1081 | |
| 1082 | 1082 | //mbstring |
| 1083 | - function substr($str, $s, $l = null) { |
|
| 1083 | + function substr($str, $s, $l = null){ |
|
| 1084 | 1084 | global $modx; |
| 1085 | - if(is_null($l)) $l = $this->strlen($str); |
|
| 1085 | + if (is_null($l)) $l = $this->strlen($str); |
|
| 1086 | 1086 | if (function_exists('mb_substr')) |
| 1087 | 1087 | { |
| 1088 | - if(strpos($str,"\r")!==false) |
|
| 1089 | - $str = str_replace(array("\r\n","\r"), "\n", $str); |
|
| 1088 | + if (strpos($str, "\r") !== false) |
|
| 1089 | + $str = str_replace(array("\r\n", "\r"), "\n", $str); |
|
| 1090 | 1090 | return mb_substr($str, $s, $l, $modx->config['modx_charset']); |
| 1091 | 1091 | } |
| 1092 | 1092 | return substr($str, $s, $l); |
| 1093 | 1093 | } |
| 1094 | - function strpos($haystack,$needle,$offset=0) { |
|
| 1094 | + function strpos($haystack, $needle, $offset = 0){ |
|
| 1095 | 1095 | global $modx; |
| 1096 | - if (function_exists('mb_strpos')) return mb_strpos($haystack,$needle,$offset,$modx->config['modx_charset']); |
|
| 1097 | - return strpos($haystack,$needle,$offset); |
|
| 1096 | + if (function_exists('mb_strpos')) return mb_strpos($haystack, $needle, $offset, $modx->config['modx_charset']); |
|
| 1097 | + return strpos($haystack, $needle, $offset); |
|
| 1098 | 1098 | } |
| 1099 | - function strlen($str) { |
|
| 1099 | + function strlen($str){ |
|
| 1100 | 1100 | global $modx; |
| 1101 | - if (function_exists('mb_strlen')) return mb_strlen(str_replace("\r\n", "\n", $str),$modx->config['modx_charset']); |
|
| 1101 | + if (function_exists('mb_strlen')) return mb_strlen(str_replace("\r\n", "\n", $str), $modx->config['modx_charset']); |
|
| 1102 | 1102 | return strlen($str); |
| 1103 | 1103 | } |
| 1104 | - function strtolower($str) { |
|
| 1104 | + function strtolower($str){ |
|
| 1105 | 1105 | if (function_exists('mb_strtolower')) return mb_strtolower($str); |
| 1106 | 1106 | return strtolower($str); |
| 1107 | 1107 | } |
| 1108 | - function strtoupper($str) { |
|
| 1108 | + function strtoupper($str){ |
|
| 1109 | 1109 | if (function_exists('mb_strtoupper')) return mb_strtoupper($str); |
| 1110 | 1110 | return strtoupper($str); |
| 1111 | 1111 | } |
| 1112 | - function ucfirst($str) { |
|
| 1112 | + function ucfirst($str){ |
|
| 1113 | 1113 | if (function_exists('mb_strtoupper')) |
| 1114 | 1114 | return mb_strtoupper($this->substr($str, 0, 1)).$this->substr($str, 1, $this->strlen($str)); |
| 1115 | 1115 | return ucfirst($str); |
| 1116 | 1116 | } |
| 1117 | - function lcfirst($str) { |
|
| 1117 | + function lcfirst($str){ |
|
| 1118 | 1118 | if (function_exists('mb_strtolower')) |
| 1119 | 1119 | return mb_strtolower($this->substr($str, 0, 1)).$this->substr($str, 1, $this->strlen($str)); |
| 1120 | 1120 | return lcfirst($str); |
| 1121 | 1121 | } |
| 1122 | - function ucwords($str) { |
|
| 1122 | + function ucwords($str){ |
|
| 1123 | 1123 | if (function_exists('mb_convert_case')) |
| 1124 | 1124 | return mb_convert_case($str, MB_CASE_TITLE); |
| 1125 | 1125 | return ucwords($str); |
| 1126 | 1126 | } |
| 1127 | - function strrev($str) { |
|
| 1127 | + function strrev($str){ |
|
| 1128 | 1128 | preg_match_all('/./us', $str, $ar); |
| 1129 | 1129 | return join(array_reverse($ar[0])); |
| 1130 | 1130 | } |
| 1131 | - function str_shuffle($str) { |
|
| 1131 | + function str_shuffle($str){ |
|
| 1132 | 1132 | preg_match_all('/./us', $str, $ar); |
| 1133 | 1133 | shuffle($ar[0]); |
| 1134 | 1134 | return join($ar[0]); |
| 1135 | 1135 | } |
| 1136 | - function str_word_count($str) { |
|
| 1137 | - return count(preg_split('~[^\p{L}\p{N}\']+~u',$str)); |
|
| 1136 | + function str_word_count($str){ |
|
| 1137 | + return count(preg_split('~[^\p{L}\p{N}\']+~u', $str)); |
|
| 1138 | 1138 | } |
| 1139 | - function strip_tags($value,$params='') { |
|
| 1139 | + function strip_tags($value, $params = ''){ |
|
| 1140 | 1140 | global $modx; |
| 1141 | 1141 | |
| 1142 | - if(stripos($params,'style')===false && stripos($value,'</style>')!==false) { |
|
| 1142 | + if (stripos($params, 'style') === false && stripos($value, '</style>') !== false) { |
|
| 1143 | 1143 | $value = preg_replace('@<style.*?>.*?</style>@is', '', $value); |
| 1144 | 1144 | } |
| 1145 | - if(stripos($params,'script')===false && stripos($value,'</script>')!==false) { |
|
| 1145 | + if (stripos($params, 'script') === false && stripos($value, '</script>') !== false) { |
|
| 1146 | 1146 | $value = preg_replace('@<script.*?>.*?</script>@is', '', $value); |
| 1147 | 1147 | } |
| 1148 | 1148 | |
| 1149 | - return trim(strip_tags($value,$params)); |
|
| 1149 | + return trim(strip_tags($value, $params)); |
|
| 1150 | 1150 | } |
| 1151 | 1151 | } |
@@ -1,8 +1,11 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -if(!defined('MODX_CORE_PATH')) define('MODX_CORE_PATH', MODX_MANAGER_PATH.'includes/'); |
|
| 3 | +if(!defined('MODX_CORE_PATH')) { |
|
| 4 | + define('MODX_CORE_PATH', MODX_MANAGER_PATH.'includes/'); |
|
| 5 | +} |
|
| 4 | 6 | |
| 5 | -class MODIFIERS { |
|
| 7 | +class MODIFIERS |
|
| 8 | +{ |
|
| 6 | 9 | |
| 7 | 10 | var $placeholders = array(); |
| 8 | 11 | var $vars = array(); |
@@ -20,14 +23,18 @@ discard block |
||
| 20 | 23 | { |
| 21 | 24 | global $modx; |
| 22 | 25 | |
| 23 | - if (function_exists('mb_internal_encoding')) mb_internal_encoding($modx->config['modx_charset']); |
|
| 26 | + if (function_exists('mb_internal_encoding')) { |
|
| 27 | + mb_internal_encoding($modx->config['modx_charset']); |
|
| 28 | + } |
|
| 24 | 29 | $this->condModifiers = '=,is,eq,equals,ne,neq,notequals,isnot,isnt,not,%,isempty,isnotempty,isntempty,>=,gte,eg,gte,greaterthan,>,gt,isgreaterthan,isgt,lowerthan,<,lt,<=,lte,islte,islowerthan,islt,el,find,in,inarray,in_array,fnmatch,wcard,wcard_match,wildcard,wildcard_match,is_file,is_dir,file_exists,is_readable,is_writable,is_image,regex,preg,preg_match,memberof,mo,isinrole,ir'; |
| 25 | 30 | } |
| 26 | 31 | |
| 27 | 32 | function phxFilter($key,$value,$modifiers) |
| 28 | 33 | { |
| 29 | 34 | global $modx; |
| 30 | - if(substr($modifiers,0,3)!=='id(') $value = $this->parseDocumentSource($value); |
|
| 35 | + if(substr($modifiers,0,3)!=='id(') { |
|
| 36 | + $value = $this->parseDocumentSource($value); |
|
| 37 | + } |
|
| 31 | 38 | $this->srcValue = $value; |
| 32 | 39 | $modifiers = trim($modifiers); |
| 33 | 40 | $modifiers = ':'.trim($modifiers,':'); |
@@ -45,63 +52,81 @@ discard block |
||
| 45 | 52 | return $value; |
| 46 | 53 | } |
| 47 | 54 | |
| 48 | - function _getDelim($mode,$modifiers) { |
|
| 55 | + function _getDelim($mode,$modifiers) |
|
| 56 | + { |
|
| 49 | 57 | $c = substr($modifiers,0,1); |
| 50 | - if(!in_array($c, array('"', "'", '`')) ) return false; |
|
| 58 | + if(!in_array($c, array('"', "'", '`')) ) { |
|
| 59 | + return false; |
|
| 60 | + } |
|
| 51 | 61 | |
| 52 | 62 | $modifiers = substr($modifiers,1); |
| 53 | 63 | $closure = $mode=='(' ? "{$c})" : $c; |
| 54 | - if(strpos($modifiers, $closure)===false) return false; |
|
| 64 | + if(strpos($modifiers, $closure)===false) { |
|
| 65 | + return false; |
|
| 66 | + } |
|
| 55 | 67 | |
| 56 | 68 | return $c; |
| 57 | 69 | } |
| 58 | 70 | |
| 59 | - function _getOpt($mode,$delim,$modifiers) { |
|
| 71 | + function _getOpt($mode,$delim,$modifiers) |
|
| 72 | + { |
|
| 60 | 73 | if($delim) { |
| 61 | - if($mode=='(') return substr($modifiers,1,strpos($modifiers, $delim . ')' )-1); |
|
| 74 | + if($mode=='(') { |
|
| 75 | + return substr($modifiers,1,strpos($modifiers, $delim . ')' )-1); |
|
| 76 | + } |
|
| 62 | 77 | |
| 63 | 78 | return substr($modifiers,1,strpos($modifiers,$delim,1)-1); |
| 64 | - } |
|
| 65 | - else { |
|
| 66 | - if($mode=='(') return substr($modifiers,0,strpos($modifiers, ')') ); |
|
| 79 | + } else { |
|
| 80 | + if($mode=='(') { |
|
| 81 | + return substr($modifiers,0,strpos($modifiers, ')') ); |
|
| 82 | + } |
|
| 67 | 83 | |
| 68 | 84 | $chars = str_split($modifiers); |
| 69 | 85 | $opt=''; |
| 70 | 86 | foreach($chars as $c) { |
| 71 | - if($c==':' || $c==')') break; |
|
| 87 | + if($c==':' || $c==')') { |
|
| 88 | + break; |
|
| 89 | + } |
|
| 72 | 90 | $opt .=$c; |
| 73 | 91 | } |
| 74 | 92 | return $opt; |
| 75 | 93 | } |
| 76 | 94 | } |
| 77 | - function _getRemainModifiers($mode,$delim,$modifiers) { |
|
| 95 | + function _getRemainModifiers($mode,$delim,$modifiers) |
|
| 96 | + { |
|
| 78 | 97 | if($delim) { |
| 79 | - if($mode=='(') |
|
| 80 | - return $this->_fetchContent($modifiers, $delim . ')'); |
|
| 81 | - else { |
|
| 98 | + if($mode=='(') { |
|
| 99 | + return $this->_fetchContent($modifiers, $delim . ')'); |
|
| 100 | + } else { |
|
| 82 | 101 | $modifiers = trim($modifiers); |
| 83 | 102 | $modifiers = substr($modifiers,1); |
| 84 | 103 | return $this->_fetchContent($modifiers, $delim); |
| 85 | 104 | } |
| 86 | - } |
|
| 87 | - else { |
|
| 88 | - if($mode=='(') return $this->_fetchContent($modifiers, ')'); |
|
| 105 | + } else { |
|
| 106 | + if($mode=='(') { |
|
| 107 | + return $this->_fetchContent($modifiers, ')'); |
|
| 108 | + } |
|
| 89 | 109 | $chars = str_split($modifiers); |
| 90 | 110 | foreach($chars as $c) { |
| 91 | - if($c==':') return $modifiers; |
|
| 92 | - else $modifiers = substr($modifiers,1); |
|
| 111 | + if($c==':') { |
|
| 112 | + return $modifiers; |
|
| 113 | + } else { |
|
| 114 | + $modifiers = substr($modifiers,1); |
|
| 115 | + } |
|
| 93 | 116 | } |
| 94 | 117 | return $modifiers; |
| 95 | 118 | } |
| 96 | 119 | } |
| 97 | 120 | |
| 98 | - function _fetchContent($string,$delim) { |
|
| 121 | + function _fetchContent($string,$delim) |
|
| 122 | + { |
|
| 99 | 123 | $len = strlen($delim); |
| 100 | 124 | $string = $this->parseDocumentSource($string); |
| 101 | 125 | return substr($string,strpos($string, $delim)+$len); |
| 102 | 126 | } |
| 103 | 127 | |
| 104 | - function splitEachModifiers($modifiers) { |
|
| 128 | + function splitEachModifiers($modifiers) |
|
| 129 | + { |
|
| 105 | 130 | global $modx; |
| 106 | 131 | |
| 107 | 132 | $cmd = ''; |
@@ -111,11 +136,15 @@ discard block |
||
| 111 | 136 | $c = substr($modifiers,0,1); |
| 112 | 137 | $modifiers = substr($modifiers,1); |
| 113 | 138 | |
| 114 | - if($c===':' && preg_match('@^(!?[<>=]{1,2})@', $modifiers, $match)) { // :=, :!=, :<=, :>=, :!<=, :!>= |
|
| 139 | + if($c===':' && preg_match('@^(!?[<>=]{1,2})@', $modifiers, $match)) { |
|
| 140 | +// :=, :!=, :<=, :>=, :!<=, :!>= |
|
| 115 | 141 | $c = substr($modifiers,strlen($match[1]),1); |
| 116 | 142 | $debuginfo = "#i=0 #c=[{$c}] #m=[{$modifiers}]"; |
| 117 | - if($c==='(') $modifiers = substr($modifiers,strlen($match[1])+1); |
|
| 118 | - else $modifiers = substr($modifiers,strlen($match[1])); |
|
| 143 | + if($c==='(') { |
|
| 144 | + $modifiers = substr($modifiers,strlen($match[1])+1); |
|
| 145 | + } else { |
|
| 146 | + $modifiers = substr($modifiers,strlen($match[1])); |
|
| 147 | + } |
|
| 119 | 148 | |
| 120 | 149 | $delim = $this->_getDelim($c,$modifiers); |
| 121 | 150 | $opt = $this->_getOpt($c,$delim,$modifiers); |
@@ -123,13 +152,12 @@ discard block |
||
| 123 | 152 | |
| 124 | 153 | $result[]=array('cmd'=>trim($match[1]),'opt'=>$opt,'debuginfo'=>$debuginfo); |
| 125 | 154 | $cmd = ''; |
| 126 | - } |
|
| 127 | - elseif(in_array($c,array('+','-','*','/')) && preg_match('@^[0-9]+@', $modifiers, $match)) { // :+3, :-3, :*3 ... |
|
| 155 | + } elseif(in_array($c,array('+','-','*','/')) && preg_match('@^[0-9]+@', $modifiers, $match)) { |
|
| 156 | +// :+3, :-3, :*3 ... |
|
| 128 | 157 | $modifiers = substr($modifiers,strlen($match[0])); |
| 129 | 158 | $result[]=array('cmd'=>'math','opt'=>'%s'.$c.$match[0]); |
| 130 | 159 | $cmd = ''; |
| 131 | - } |
|
| 132 | - elseif($c==='(' || $c==='=') { |
|
| 160 | + } elseif($c==='(' || $c==='=') { |
|
| 133 | 161 | $modifiers = $m1 = trim($modifiers); |
| 134 | 162 | $delim = $this->_getDelim($c,$modifiers); |
| 135 | 163 | $opt = $this->_getOpt($c,$delim,$modifiers); |
@@ -139,29 +167,29 @@ discard block |
||
| 139 | 167 | $result[]=array('cmd'=>trim($cmd),'opt'=>$opt,'debuginfo'=>$debuginfo); |
| 140 | 168 | |
| 141 | 169 | $cmd = ''; |
| 142 | - } |
|
| 143 | - elseif($c==':') { |
|
| 170 | + } elseif($c==':') { |
|
| 144 | 171 | $debuginfo = "#i=2 #c=[{$c}] #m=[{$modifiers}]"; |
| 145 | - if($cmd!=='') $result[]=array('cmd'=>trim($cmd),'opt'=>'','debuginfo'=>$debuginfo); |
|
| 172 | + if($cmd!=='') { |
|
| 173 | + $result[]=array('cmd'=>trim($cmd),'opt'=>'','debuginfo'=>$debuginfo); |
|
| 174 | + } |
|
| 146 | 175 | |
| 147 | 176 | $cmd = ''; |
| 148 | - } |
|
| 149 | - elseif(trim($modifiers)=='' && trim($cmd)!=='') { |
|
| 177 | + } elseif(trim($modifiers)=='' && trim($cmd)!=='') { |
|
| 150 | 178 | $debuginfo = "#i=3 #c=[{$c}] #m=[{$modifiers}]"; |
| 151 | 179 | $cmd .= $c; |
| 152 | 180 | $result[]=array('cmd'=>trim($cmd),'opt'=>'','debuginfo'=>$debuginfo); |
| 153 | 181 | |
| 154 | 182 | break; |
| 155 | - } |
|
| 156 | - else { |
|
| 183 | + } else { |
|
| 157 | 184 | $cmd .= $c; |
| 158 | 185 | } |
| 159 | 186 | } |
| 160 | 187 | |
| 161 | - if(empty($result)) return array(); |
|
| 188 | + if(empty($result)) { |
|
| 189 | + return array(); |
|
| 190 | + } |
|
| 162 | 191 | |
| 163 | - foreach($result as $i=>$a) |
|
| 164 | - { |
|
| 192 | + foreach($result as $i=>$a) { |
|
| 165 | 193 | $a['opt'] = $this->parseDocumentSource($a['opt']); |
| 166 | 194 | $result[$i]['opt'] = $modx->mergePlaceholderContent($a['opt'],$this->placeholders); |
| 167 | 195 | } |
@@ -173,22 +201,23 @@ discard block |
||
| 173 | 201 | { |
| 174 | 202 | global $modx; |
| 175 | 203 | $cacheKey = md5(sprintf('parsePhx#%s#%s#%s',$key,$value,print_r($modifiers,true))); |
| 176 | - if(isset($this->tmpCache[$cacheKey])) return $this->tmpCache[$cacheKey]; |
|
| 177 | - if(empty($modifiers)) return ''; |
|
| 204 | + if(isset($this->tmpCache[$cacheKey])) { |
|
| 205 | + return $this->tmpCache[$cacheKey]; |
|
| 206 | + } |
|
| 207 | + if(empty($modifiers)) { |
|
| 208 | + return ''; |
|
| 209 | + } |
|
| 178 | 210 | |
| 179 | - foreach($modifiers as $m) |
|
| 180 | - { |
|
| 211 | + foreach($modifiers as $m) { |
|
| 181 | 212 | $lastKey = strtolower($m['cmd']); |
| 182 | 213 | } |
| 183 | 214 | $_ = explode(',',$this->condModifiers); |
| 184 | - if(in_array($lastKey,$_)) |
|
| 185 | - { |
|
| 215 | + if(in_array($lastKey,$_)) { |
|
| 186 | 216 | $modifiers[] = array('cmd'=>'then','opt'=>'1'); |
| 187 | 217 | $modifiers[] = array('cmd'=>'else','opt'=>'0'); |
| 188 | 218 | } |
| 189 | 219 | |
| 190 | - foreach($modifiers as $i=>$a) |
|
| 191 | - { |
|
| 220 | + foreach($modifiers as $i=>$a) { |
|
| 192 | 221 | $value = $this->Filter($key,$value, $a['cmd'], $a['opt']); |
| 193 | 222 | } |
| 194 | 223 | $this->tmpCache[$cacheKey] = $value; |
@@ -200,25 +229,32 @@ discard block |
||
| 200 | 229 | { |
| 201 | 230 | global $modx; |
| 202 | 231 | |
| 203 | - if($key==='documentObject') $value = $modx->documentIdentifier; |
|
| 232 | + if($key==='documentObject') { |
|
| 233 | + $value = $modx->documentIdentifier; |
|
| 234 | + } |
|
| 204 | 235 | $cmd = $this->parseDocumentSource($cmd); |
| 205 | - if(preg_match('@^[1-9][/0-9]*$@',$cmd)) |
|
| 206 | - { |
|
| 207 | - if(strpos($cmd,'/')!==false) |
|
| 208 | - $cmd = $this->substr($cmd,strrpos($cmd,'/')+1); |
|
| 236 | + if(preg_match('@^[1-9][/0-9]*$@',$cmd)) { |
|
| 237 | + if(strpos($cmd,'/')!==false) { |
|
| 238 | + $cmd = $this->substr($cmd,strrpos($cmd,'/')+1); |
|
| 239 | + } |
|
| 209 | 240 | $opt = $cmd; |
| 210 | 241 | $cmd = 'id'; |
| 211 | 242 | } |
| 212 | 243 | |
| 213 | - if(isset($modx->snippetCache["phx:{$cmd}"])) $this->elmName = "phx:{$cmd}"; |
|
| 214 | - elseif(isset($modx->chunkCache["phx:{$cmd}"])) $this->elmName = "phx:{$cmd}"; |
|
| 215 | - else $this->elmName = ''; |
|
| 244 | + if(isset($modx->snippetCache["phx:{$cmd}"])) { |
|
| 245 | + $this->elmName = "phx:{$cmd}"; |
|
| 246 | + } elseif(isset($modx->chunkCache["phx:{$cmd}"])) { |
|
| 247 | + $this->elmName = "phx:{$cmd}"; |
|
| 248 | + } else { |
|
| 249 | + $this->elmName = ''; |
|
| 250 | + } |
|
| 216 | 251 | |
| 217 | 252 | $cmd = strtolower($cmd); |
| 218 | - if($this->elmName!=='') |
|
| 219 | - $value = $this->getValueFromElement($key, $value, $cmd, $opt); |
|
| 220 | - else |
|
| 221 | - $value = $this->getValueFromPreset($key, $value, $cmd, $opt); |
|
| 253 | + if($this->elmName!=='') { |
|
| 254 | + $value = $this->getValueFromElement($key, $value, $cmd, $opt); |
|
| 255 | + } else { |
|
| 256 | + $value = $this->getValueFromPreset($key, $value, $cmd, $opt); |
|
| 257 | + } |
|
| 222 | 258 | |
| 223 | 259 | $value = str_replace('[+key+]', $key, $value); |
| 224 | 260 | |
@@ -227,29 +263,37 @@ discard block |
||
| 227 | 263 | |
| 228 | 264 | function isEmpty($cmd,$value) |
| 229 | 265 | { |
| 230 | - if($value!=='') return false; |
|
| 266 | + if($value!=='') { |
|
| 267 | + return false; |
|
| 268 | + } |
|
| 231 | 269 | |
| 232 | 270 | $_ = explode(',', $this->condModifiers . ',_default,default,if,input,or,and,show,this,select,switch,then,else,id,ifempty,smart_desc,smart_description,summary'); |
| 233 | - if(in_array($cmd,$_)) return false; |
|
| 234 | - else return true; |
|
| 271 | + if(in_array($cmd,$_)) { |
|
| 272 | + return false; |
|
| 273 | + } else { |
|
| 274 | + return true; |
|
| 275 | + } |
|
| 235 | 276 | } |
| 236 | 277 | |
| 237 | 278 | function getValueFromPreset($key, $value, $cmd, $opt) |
| 238 | 279 | { |
| 239 | 280 | global $modx; |
| 240 | 281 | |
| 241 | - if($this->isEmpty($cmd,$value)) return ''; |
|
| 282 | + if($this->isEmpty($cmd,$value)) { |
|
| 283 | + return ''; |
|
| 284 | + } |
|
| 242 | 285 | |
| 243 | 286 | $this->key = $key; |
| 244 | 287 | $this->value = $value; |
| 245 | 288 | $this->opt = $opt; |
| 246 | 289 | |
| 247 | - switch ($cmd) |
|
| 248 | - { |
|
| 290 | + switch ($cmd) { |
|
| 249 | 291 | ##### Conditional Modifiers |
| 250 | 292 | case 'input': |
| 251 | 293 | case 'if': |
| 252 | - if(!$opt) return $value; |
|
| 294 | + if(!$opt) { |
|
| 295 | + return $value; |
|
| 296 | + } |
|
| 253 | 297 | return $opt; |
| 254 | 298 | case '=': |
| 255 | 299 | case 'eq': |
@@ -310,14 +354,24 @@ discard block |
||
| 310 | 354 | case 'file_exists': |
| 311 | 355 | case 'is_readable': |
| 312 | 356 | case 'is_writable': |
| 313 | - if(!$opt) $path = $value; |
|
| 314 | - else $path = $opt; |
|
| 315 | - if(strpos($path,MODX_MANAGER_PATH)!==false) exit('Can not read core path'); |
|
| 316 | - if(strpos($path,$modx->config['base_path'])===false) $path = ltrim($path,'/'); |
|
| 357 | + if(!$opt) { |
|
| 358 | + $path = $value; |
|
| 359 | + } else { |
|
| 360 | + $path = $opt; |
|
| 361 | + } |
|
| 362 | + if(strpos($path,MODX_MANAGER_PATH)!==false) { |
|
| 363 | + exit('Can not read core path'); |
|
| 364 | + } |
|
| 365 | + if(strpos($path,$modx->config['base_path'])===false) { |
|
| 366 | + $path = ltrim($path,'/'); |
|
| 367 | + } |
|
| 317 | 368 | $this->condition[] = intval($cmd($path)!==false);break; |
| 318 | 369 | case 'is_image': |
| 319 | - if(!$opt) $path = $value; |
|
| 320 | - else $path = $opt; |
|
| 370 | + if(!$opt) { |
|
| 371 | + $path = $value; |
|
| 372 | + } else { |
|
| 373 | + $path = $opt; |
|
| 374 | + } |
|
| 321 | 375 | if(!is_file($path)) {$this->condition[]='0';break;} |
| 322 | 376 | $_ = getimagesize($path); |
| 323 | 377 | $this->condition[] = intval($_[0]);break; |
@@ -340,17 +394,23 @@ discard block |
||
| 340 | 394 | case 'this': |
| 341 | 395 | $conditional = join(' ',$this->condition); |
| 342 | 396 | $isvalid = intval(eval("return ({$conditional});")); |
| 343 | - if ($isvalid) return $this->srcValue; |
|
| 397 | + if ($isvalid) { |
|
| 398 | + return $this->srcValue; |
|
| 399 | + } |
|
| 344 | 400 | return NULL; |
| 345 | 401 | case 'then': |
| 346 | 402 | $conditional = join(' ',$this->condition); |
| 347 | 403 | $isvalid = intval(eval("return ({$conditional});")); |
| 348 | - if ($isvalid) return $opt; |
|
| 404 | + if ($isvalid) { |
|
| 405 | + return $opt; |
|
| 406 | + } |
|
| 349 | 407 | return null; |
| 350 | 408 | case 'else': |
| 351 | 409 | $conditional = join(' ',$this->condition); |
| 352 | 410 | $isvalid = intval(eval("return ({$conditional});")); |
| 353 | - if (!$isvalid) return $opt; |
|
| 411 | + if (!$isvalid) { |
|
| 412 | + return $opt; |
|
| 413 | + } |
|
| 354 | 414 | break; |
| 355 | 415 | case 'select': |
| 356 | 416 | case 'switch': |
@@ -361,8 +421,11 @@ discard block |
||
| 361 | 421 | $mi = explode('=',$raw[$m],2); |
| 362 | 422 | $map[$mi[0]] = $mi[1]; |
| 363 | 423 | } |
| 364 | - if(isset($map[$value])) return $map[$value]; |
|
| 365 | - else return ''; |
|
| 424 | + if(isset($map[$value])) { |
|
| 425 | + return $map[$value]; |
|
| 426 | + } else { |
|
| 427 | + return ''; |
|
| 428 | + } |
|
| 366 | 429 | ##### End of Conditional Modifiers |
| 367 | 430 | |
| 368 | 431 | ##### Encode / Decode / Hash / Escape |
@@ -388,24 +451,25 @@ discard block |
||
| 388 | 451 | case 'spam_protect': |
| 389 | 452 | return str_replace(array('@','.'),array('@','.'),$value); |
| 390 | 453 | case 'strip': |
| 391 | - if($opt==='') $opt = ' '; |
|
| 454 | + if($opt==='') { |
|
| 455 | + $opt = ' '; |
|
| 456 | + } |
|
| 392 | 457 | return preg_replace('/[\n\r\t\s]+/', $opt, $value); |
| 393 | 458 | case 'strip_linefeeds': |
| 394 | 459 | return str_replace(array("\n","\r"), '', $value); |
| 395 | 460 | case 'notags': |
| 396 | 461 | case 'strip_tags': |
| 397 | 462 | case 'remove_html': |
| 398 | - if($opt!=='') |
|
| 399 | - { |
|
| 463 | + if($opt!=='') { |
|
| 400 | 464 | $param = array(); |
| 401 | - foreach(explode(',',$opt) as $v) |
|
| 402 | - { |
|
| 465 | + foreach(explode(',',$opt) as $v) { |
|
| 403 | 466 | $v = trim($v,'</> '); |
| 404 | 467 | $param[] = "<{$v}>"; |
| 405 | 468 | } |
| 406 | 469 | $params = join(',',$param); |
| 470 | + } else { |
|
| 471 | + $params = ''; |
|
| 407 | 472 | } |
| 408 | - else $params = ''; |
|
| 409 | 473 | if(!strpos($params,'<br>')===false) { |
| 410 | 474 | $value = preg_replace('@(<br[ /]*>)\n@','$1',$value); |
| 411 | 475 | $value = preg_replace('@<br[ /]*>@',"\n",$value); |
@@ -416,8 +480,11 @@ discard block |
||
| 416 | 480 | case 'encode_url': |
| 417 | 481 | return urlencode($value); |
| 418 | 482 | case 'base64_decode': |
| 419 | - if($opt!=='false') $opt = true; |
|
| 420 | - else $opt = false; |
|
| 483 | + if($opt!=='false') { |
|
| 484 | + $opt = true; |
|
| 485 | + } else { |
|
| 486 | + $opt = false; |
|
| 487 | + } |
|
| 421 | 488 | return base64_decode($value,$opt); |
| 422 | 489 | case 'encode_sha1': $cmd = 'sha1'; |
| 423 | 490 | case 'addslashes': |
@@ -443,16 +510,19 @@ discard block |
||
| 443 | 510 | return $this->strtoupper($value); |
| 444 | 511 | case 'capitalize': |
| 445 | 512 | $_ = explode(' ',$value); |
| 446 | - foreach($_ as $i=>$v) |
|
| 447 | - { |
|
| 513 | + foreach($_ as $i=>$v) { |
|
| 448 | 514 | $_[$i] = ucfirst($v); |
| 449 | 515 | } |
| 450 | 516 | return join(' ',$_); |
| 451 | 517 | case 'zenhan': |
| 452 | - if(empty($opt)) $opt='VKas'; |
|
| 518 | + if(empty($opt)) { |
|
| 519 | + $opt='VKas'; |
|
| 520 | + } |
|
| 453 | 521 | return mb_convert_kana($value,$opt,$modx->config['modx_charset']); |
| 454 | 522 | case 'hanzen': |
| 455 | - if(empty($opt)) $opt='VKAS'; |
|
| 523 | + if(empty($opt)) { |
|
| 524 | + $opt='VKAS'; |
|
| 525 | + } |
|
| 456 | 526 | return mb_convert_kana($value,$opt,$modx->config['modx_charset']); |
| 457 | 527 | case 'str_shuffle': |
| 458 | 528 | case 'shuffle': |
@@ -477,13 +547,18 @@ discard block |
||
| 477 | 547 | $value = preg_replace('/\r/', '', $value); |
| 478 | 548 | return count(preg_split('/\n+/',$value)); |
| 479 | 549 | case 'strpos': |
| 480 | - if($opt!=0&&empty($opt)) return $value; |
|
| 550 | + if($opt!=0&&empty($opt)) { |
|
| 551 | + return $value; |
|
| 552 | + } |
|
| 481 | 553 | return $this->strpos($value,$opt); |
| 482 | 554 | case 'wordwrap': |
| 483 | 555 | // default: 70 |
| 484 | 556 | $wrapat = intval($opt) ? intval($opt) : 70; |
| 485 | - if (version_compare(PHP_VERSION, '5.3.0') >= 0) return $this->includeMdfFile('wordwrap'); |
|
| 486 | - else return preg_replace("@(\b\w+\b)@e","wordwrap('\\1',\$wrapat,' ',1)",$value); |
|
| 557 | + if (version_compare(PHP_VERSION, '5.3.0') >= 0) { |
|
| 558 | + return $this->includeMdfFile('wordwrap'); |
|
| 559 | + } else { |
|
| 560 | + return preg_replace("@(\b\w+\b)@e","wordwrap('\\1',\$wrapat,' ',1)",$value); |
|
| 561 | + } |
|
| 487 | 562 | case 'wrap_text': |
| 488 | 563 | $width = preg_match('/^[1-9][0-9]*$/',$opt) ? $opt : 70; |
| 489 | 564 | if($modx->config['manager_language']==='japanese-utf8') { |
@@ -499,30 +574,36 @@ discard block |
||
| 499 | 574 | $value = $this->substr($value,$width); |
| 500 | 575 | } |
| 501 | 576 | return join("\n",$chunk); |
| 577 | + } else { |
|
| 578 | + return wordwrap($value,$width,"\n",true); |
|
| 502 | 579 | } |
| 503 | - else |
|
| 504 | - return wordwrap($value,$width,"\n",true); |
|
| 505 | 580 | case 'substr': |
| 506 | - if(empty($opt)) break; |
|
| 581 | + if(empty($opt)) { |
|
| 582 | + break; |
|
| 583 | + } |
|
| 507 | 584 | if(strpos($opt,',')!==false) { |
| 508 | 585 | list($b,$e) = explode(',',$opt,2); |
| 509 | 586 | return $this->substr($value,$b,(int)$e); |
| 587 | + } else { |
|
| 588 | + return $this->substr($value,$opt); |
|
| 510 | 589 | } |
| 511 | - else return $this->substr($value,$opt); |
|
| 512 | 590 | case 'limit': |
| 513 | 591 | case 'trim_to': // http://www.movabletype.jp/documentation/appendices/modifiers/trim_to.html |
| 514 | - if(strpos($opt,'+')!==false) |
|
| 515 | - list($len,$str) = explode('+',$opt,2); |
|
| 516 | - else { |
|
| 592 | + if(strpos($opt,'+')!==false) { |
|
| 593 | + list($len,$str) = explode('+',$opt,2); |
|
| 594 | + } else { |
|
| 517 | 595 | $len = $opt; |
| 518 | 596 | $str = ''; |
| 519 | 597 | } |
| 520 | - if($len==='') $len = 100; |
|
| 521 | - if(abs($len) > $this->strlen($value)) $str =''; |
|
| 598 | + if($len==='') { |
|
| 599 | + $len = 100; |
|
| 600 | + } |
|
| 601 | + if(abs($len) > $this->strlen($value)) { |
|
| 602 | + $str =''; |
|
| 603 | + } |
|
| 522 | 604 | if(preg_match('/^[1-9][0-9]*$/',$len)) { |
| 523 | 605 | return $this->substr($value,0,$len) . $str; |
| 524 | - } |
|
| 525 | - elseif(preg_match('/^\-[1-9][0-9]*$/',$len)) { |
|
| 606 | + } elseif(preg_match('/^\-[1-9][0-9]*$/',$len)) { |
|
| 526 | 607 | return $str . $this->substr($value,$len); |
| 527 | 608 | } |
| 528 | 609 | break; |
@@ -532,18 +613,30 @@ discard block |
||
| 532 | 613 | return $this->includeMdfFile('summary'); |
| 533 | 614 | case 'replace': |
| 534 | 615 | case 'str_replace': |
| 535 | - if(empty($opt) || strpos($opt,',')===false) break; |
|
| 536 | - if (substr_count($opt, ',') ==1) $delim = ','; |
|
| 537 | - elseif(substr_count($opt, '|') ==1) $delim = '|'; |
|
| 538 | - elseif(substr_count($opt, '=>')==1) $delim = '=>'; |
|
| 539 | - elseif(substr_count($opt, '/') ==1) $delim = '/'; |
|
| 540 | - else break; |
|
| 616 | + if(empty($opt) || strpos($opt,',')===false) { |
|
| 617 | + break; |
|
| 618 | + } |
|
| 619 | + if (substr_count($opt, ',') ==1) { |
|
| 620 | + $delim = ','; |
|
| 621 | + } elseif(substr_count($opt, '|') ==1) { |
|
| 622 | + $delim = '|'; |
|
| 623 | + } elseif(substr_count($opt, '=>')==1) { |
|
| 624 | + $delim = '=>'; |
|
| 625 | + } elseif(substr_count($opt, '/') ==1) { |
|
| 626 | + $delim = '/'; |
|
| 627 | + } else { |
|
| 628 | + break; |
|
| 629 | + } |
|
| 541 | 630 | list($s,$r) = explode($delim,$opt); |
| 542 | - if($value!=='') return str_replace($s,$r,$value); |
|
| 631 | + if($value!=='') { |
|
| 632 | + return str_replace($s,$r,$value); |
|
| 633 | + } |
|
| 543 | 634 | break; |
| 544 | 635 | case 'replace_to': |
| 545 | 636 | case 'tpl': |
| 546 | - if($value!=='') return str_replace(array('[+value+]','[+output+]','{value}','%s'),$value,$opt); |
|
| 637 | + if($value!=='') { |
|
| 638 | + return str_replace(array('[+value+]','[+output+]','{value}','%s'),$value,$opt); |
|
| 639 | + } |
|
| 547 | 640 | break; |
| 548 | 641 | case 'eachtpl': |
| 549 | 642 | $value = explode('||',$value); |
@@ -554,59 +647,83 @@ discard block |
||
| 554 | 647 | return join("\n", $_); |
| 555 | 648 | case 'array_pop': |
| 556 | 649 | case 'array_shift': |
| 557 | - if(strpos($value,'||')!==false) $delim = '||'; |
|
| 558 | - else $delim = ','; |
|
| 650 | + if(strpos($value,'||')!==false) { |
|
| 651 | + $delim = '||'; |
|
| 652 | + } else { |
|
| 653 | + $delim = ','; |
|
| 654 | + } |
|
| 559 | 655 | return $cmd(explode($delim,$value)); |
| 560 | 656 | case 'preg_replace': |
| 561 | 657 | case 'regex_replace': |
| 562 | - if(empty($opt) || strpos($opt,',')===false) break; |
|
| 658 | + if(empty($opt) || strpos($opt,',')===false) { |
|
| 659 | + break; |
|
| 660 | + } |
|
| 563 | 661 | list($s,$r) = explode(',',$opt,2); |
| 564 | - if($value!=='') return preg_replace($s,$r,$value); |
|
| 662 | + if($value!=='') { |
|
| 663 | + return preg_replace($s,$r,$value); |
|
| 664 | + } |
|
| 565 | 665 | break; |
| 566 | 666 | case 'cat': |
| 567 | 667 | case 'concatenate': |
| 568 | 668 | case '.': |
| 569 | - if($value!=='') return $value . $opt; |
|
| 669 | + if($value!=='') { |
|
| 670 | + return $value . $opt; |
|
| 671 | + } |
|
| 570 | 672 | break; |
| 571 | 673 | case 'sprintf': |
| 572 | 674 | case 'string_format': |
| 573 | - if($value!=='') return sprintf($opt,$value); |
|
| 675 | + if($value!=='') { |
|
| 676 | + return sprintf($opt,$value); |
|
| 677 | + } |
|
| 574 | 678 | break; |
| 575 | 679 | case 'number_format': |
| 576 | - if($opt=='') $opt = 0; |
|
| 680 | + if($opt=='') { |
|
| 681 | + $opt = 0; |
|
| 682 | + } |
|
| 577 | 683 | return number_format($value,$opt); |
| 578 | 684 | case 'money_format': |
| 579 | 685 | setlocale(LC_MONETARY,setlocale(LC_TIME,0)); |
| 580 | - if($value!=='') return money_format($opt,(double)$value); |
|
| 686 | + if($value!=='') { |
|
| 687 | + return money_format($opt,(double)$value); |
|
| 688 | + } |
|
| 581 | 689 | break; |
| 582 | 690 | case 'tobool': |
| 583 | 691 | return boolval($value); |
| 584 | 692 | case 'nl2lf': |
| 585 | - if($value!=='') return str_replace(array("\r\n","\n", "\r"), '\n', $value); |
|
| 693 | + if($value!=='') { |
|
| 694 | + return str_replace(array("\r\n","\n", "\r"), '\n', $value); |
|
| 695 | + } |
|
| 586 | 696 | break; |
| 587 | 697 | case 'br2nl': |
| 588 | 698 | return preg_replace('@<br[\s/]*>@i', "\n", $value); |
| 589 | 699 | case 'nl2br': |
| 590 | - if (version_compare(PHP_VERSION, '5.3.0', '<')) |
|
| 591 | - return nl2br($value); |
|
| 592 | - if($opt!=='') |
|
| 593 | - { |
|
| 700 | + if (version_compare(PHP_VERSION, '5.3.0', '<')) { |
|
| 701 | + return nl2br($value); |
|
| 702 | + } |
|
| 703 | + if($opt!=='') { |
|
| 594 | 704 | $opt = trim($opt); |
| 595 | 705 | $opt = strtolower($opt); |
| 596 | - if($opt==='false') $opt = false; |
|
| 597 | - elseif($opt==='0') $opt = false; |
|
| 598 | - else $opt = true; |
|
| 706 | + if($opt==='false') { |
|
| 707 | + $opt = false; |
|
| 708 | + } elseif($opt==='0') { |
|
| 709 | + $opt = false; |
|
| 710 | + } else { |
|
| 711 | + $opt = true; |
|
| 712 | + } |
|
| 713 | + } elseif(isset($modx->config['mce_element_format'])&&$modx->config['mce_element_format']==='html') { |
|
| 714 | + $opt = false; |
|
| 715 | + } else { |
|
| 716 | + $opt = true; |
|
| 599 | 717 | } |
| 600 | - elseif(isset($modx->config['mce_element_format'])&&$modx->config['mce_element_format']==='html') |
|
| 601 | - $opt = false; |
|
| 602 | - else $opt = true; |
|
| 603 | 718 | return nl2br($value,$opt); |
| 604 | 719 | case 'ltrim': |
| 605 | 720 | case 'rtrim': |
| 606 | 721 | case 'trim': // ref http://mblo.info/modifiers/custom-modifiers/rtrim_opt.html |
| 607 | - if($opt==='') |
|
| 608 | - return $cmd($value); |
|
| 609 | - else return $cmd($value,$opt); |
|
| 722 | + if($opt==='') { |
|
| 723 | + return $cmd($value); |
|
| 724 | + } else { |
|
| 725 | + return $cmd($value,$opt); |
|
| 726 | + } |
|
| 610 | 727 | // These are all straight wrappers for PHP functions |
| 611 | 728 | case 'ucfirst': |
| 612 | 729 | case 'lcfirst': |
@@ -617,15 +734,24 @@ discard block |
||
| 617 | 734 | case 'strftime': |
| 618 | 735 | case 'date': |
| 619 | 736 | case 'dateformat': |
| 620 | - if(empty($opt)) $opt = $modx->toDateFormat(null, 'formatOnly'); |
|
| 621 | - if(!preg_match('@^[0-9]+$@',$value)) $value = strtotime($value); |
|
| 622 | - if(strpos($opt,'%')!==false) |
|
| 623 | - return strftime($opt,0+$value); |
|
| 624 | - else |
|
| 625 | - return date($opt,0+$value); |
|
| 737 | + if(empty($opt)) { |
|
| 738 | + $opt = $modx->toDateFormat(null, 'formatOnly'); |
|
| 739 | + } |
|
| 740 | + if(!preg_match('@^[0-9]+$@',$value)) { |
|
| 741 | + $value = strtotime($value); |
|
| 742 | + } |
|
| 743 | + if(strpos($opt,'%')!==false) { |
|
| 744 | + return strftime($opt,0+$value); |
|
| 745 | + } else { |
|
| 746 | + return date($opt,0+$value); |
|
| 747 | + } |
|
| 626 | 748 | case 'time': |
| 627 | - if(empty($opt)) $opt = '%H:%M'; |
|
| 628 | - if(!preg_match('@^[0-9]+$@',$value)) $value = strtotime($value); |
|
| 749 | + if(empty($opt)) { |
|
| 750 | + $opt = '%H:%M'; |
|
| 751 | + } |
|
| 752 | + if(!preg_match('@^[0-9]+$@',$value)) { |
|
| 753 | + $value = strtotime($value); |
|
| 754 | + } |
|
| 629 | 755 | return strftime($opt,0+$value); |
| 630 | 756 | case 'strtotime': |
| 631 | 757 | return strtotime($value); |
@@ -635,7 +761,9 @@ discard block |
||
| 635 | 761 | case 'tofloat': |
| 636 | 762 | return floatval($value); |
| 637 | 763 | case 'round': |
| 638 | - if(!$opt) $opt = 0; |
|
| 764 | + if(!$opt) { |
|
| 765 | + $opt = 0; |
|
| 766 | + } |
|
| 639 | 767 | return $cmd($value,$opt); |
| 640 | 768 | case 'max': |
| 641 | 769 | case 'min': |
@@ -647,28 +775,42 @@ discard block |
||
| 647 | 775 | case 'math': |
| 648 | 776 | case 'calc': |
| 649 | 777 | $value = (int)$value; |
| 650 | - if(empty($value)) $value = '0'; |
|
| 778 | + if(empty($value)) { |
|
| 779 | + $value = '0'; |
|
| 780 | + } |
|
| 651 | 781 | $filter = str_replace(array('[+value+]','[+output+]','{value}','%s'),'?',$opt); |
| 652 | 782 | $filter = preg_replace('@([a-zA-Z\n\r\t\s])@','',$filter); |
| 653 | - if(strpos($filter,'?')===false) $filter = "?{$filter}"; |
|
| 783 | + if(strpos($filter,'?')===false) { |
|
| 784 | + $filter = "?{$filter}"; |
|
| 785 | + } |
|
| 654 | 786 | $filter = str_replace('?',$value,$filter); |
| 655 | 787 | return eval("return {$filter};"); |
| 656 | 788 | case 'count': |
| 657 | - if($value=='') return 0; |
|
| 789 | + if($value=='') { |
|
| 790 | + return 0; |
|
| 791 | + } |
|
| 658 | 792 | $value = explode(',',$value); |
| 659 | 793 | return count($value); |
| 660 | 794 | case 'sort': |
| 661 | 795 | case 'rsort': |
| 662 | - if(strpos($value,"\n")!==false) $delim="\n"; |
|
| 663 | - else $delim = ','; |
|
| 796 | + if(strpos($value,"\n")!==false) { |
|
| 797 | + $delim="\n"; |
|
| 798 | + } else { |
|
| 799 | + $delim = ','; |
|
| 800 | + } |
|
| 664 | 801 | $swap = explode($delim,$value); |
| 665 | - if(!$opt) $opt = SORT_REGULAR; |
|
| 666 | - else $opt = constant($opt); |
|
| 802 | + if(!$opt) { |
|
| 803 | + $opt = SORT_REGULAR; |
|
| 804 | + } else { |
|
| 805 | + $opt = constant($opt); |
|
| 806 | + } |
|
| 667 | 807 | $cmd($swap,$opt); |
| 668 | 808 | return join($delim,$swap); |
| 669 | 809 | ##### Resource fields |
| 670 | 810 | case 'id': |
| 671 | - if($opt) return $this->getDocumentObject($opt,$key); |
|
| 811 | + if($opt) { |
|
| 812 | + return $this->getDocumentObject($opt,$key); |
|
| 813 | + } |
|
| 672 | 814 | break; |
| 673 | 815 | case 'type': |
| 674 | 816 | case 'contenttype': |
@@ -705,7 +847,9 @@ discard block |
||
| 705 | 847 | case 'privatemgr': |
| 706 | 848 | case 'content_dispo': |
| 707 | 849 | case 'hidemenu': |
| 708 | - if($cmd==='contenttype') $cmd = 'contentType'; |
|
| 850 | + if($cmd==='contenttype') { |
|
| 851 | + $cmd = 'contentType'; |
|
| 852 | + } |
|
| 709 | 853 | return $this->getDocumentObject($value,$cmd); |
| 710 | 854 | case 'title': |
| 711 | 855 | $pagetitle = $this->getDocumentObject($value,'pagetitle'); |
@@ -720,13 +864,20 @@ discard block |
||
| 720 | 864 | $templateName = $modx->db->getValue($rs); |
| 721 | 865 | return !$templateName ? '(blank)' : $templateName; |
| 722 | 866 | case 'getfield': |
| 723 | - if(!$opt) $opt = 'content'; |
|
| 867 | + if(!$opt) { |
|
| 868 | + $opt = 'content'; |
|
| 869 | + } |
|
| 724 | 870 | return $modx->getField($opt,$value); |
| 725 | 871 | case 'children': |
| 726 | 872 | case 'childids': |
| 727 | - if($value=='') $value = 0; // 値がない場合はルートと見なす |
|
| 873 | + if($value=='') { |
|
| 874 | + $value = 0; |
|
| 875 | + } |
|
| 876 | + // 値がない場合はルートと見なす |
|
| 728 | 877 | $published = 1; |
| 729 | - if($opt=='') $opt = 'page'; |
|
| 878 | + if($opt=='') { |
|
| 879 | + $opt = 'page'; |
|
| 880 | + } |
|
| 730 | 881 | $_ = explode(',',$opt); |
| 731 | 882 | $where = array(); |
| 732 | 883 | foreach($_ as $opt) { |
@@ -742,29 +893,43 @@ discard block |
||
| 742 | 893 | $where = join(' AND ', $where); |
| 743 | 894 | $children = $modx->getDocumentChildren($value, $published, '0', 'id', $where); |
| 744 | 895 | $result = array(); |
| 745 | - foreach((array)$children as $child){ |
|
| 896 | + foreach((array)$children as $child) { |
|
| 746 | 897 | $result[] = $child['id']; |
| 747 | 898 | } |
| 748 | 899 | return join(',', $result); |
| 749 | 900 | case 'fullurl': |
| 750 | - if(!is_numeric($value)) return $value; |
|
| 901 | + if(!is_numeric($value)) { |
|
| 902 | + return $value; |
|
| 903 | + } |
|
| 751 | 904 | return $modx->makeUrl($value); |
| 752 | 905 | case 'makeurl': |
| 753 | - if(!is_numeric($value)) return $value; |
|
| 754 | - if(!$opt) $opt = 'full'; |
|
| 906 | + if(!is_numeric($value)) { |
|
| 907 | + return $value; |
|
| 908 | + } |
|
| 909 | + if(!$opt) { |
|
| 910 | + $opt = 'full'; |
|
| 911 | + } |
|
| 755 | 912 | return $modx->makeUrl($value,'','',$opt); |
| 756 | 913 | |
| 757 | 914 | ##### File system |
| 758 | 915 | case 'getimageinfo': |
| 759 | 916 | case 'imageinfo': |
| 760 | - if(!is_file($value)) return ''; |
|
| 917 | + if(!is_file($value)) { |
|
| 918 | + return ''; |
|
| 919 | + } |
|
| 761 | 920 | $_ = getimagesize($value); |
| 762 | - if(!$_[0]) return ''; |
|
| 921 | + if(!$_[0]) { |
|
| 922 | + return ''; |
|
| 923 | + } |
|
| 763 | 924 | $info['width'] = $_[0]; |
| 764 | 925 | $info['height'] = $_[1]; |
| 765 | - if ($_[0] > $_[1]) $info['aspect'] = 'landscape'; |
|
| 766 | - elseif($_[0] < $_[1]) $info['aspect'] = 'portrait'; |
|
| 767 | - else $info['aspect'] = 'square'; |
|
| 926 | + if ($_[0] > $_[1]) { |
|
| 927 | + $info['aspect'] = 'landscape'; |
|
| 928 | + } elseif($_[0] < $_[1]) { |
|
| 929 | + $info['aspect'] = 'portrait'; |
|
| 930 | + } else { |
|
| 931 | + $info['aspect'] = 'square'; |
|
| 932 | + } |
|
| 768 | 933 | switch($_[2]) { |
| 769 | 934 | case IMAGETYPE_GIF : $info['type'] = 'gif'; break; |
| 770 | 935 | case IMAGETYPE_JPEG : $info['type'] = 'jpg'; break; |
@@ -783,33 +948,47 @@ discard block |
||
| 783 | 948 | |
| 784 | 949 | case 'file_get_contents': |
| 785 | 950 | case 'readfile': |
| 786 | - if(!is_file($value)) return $value; |
|
| 951 | + if(!is_file($value)) { |
|
| 952 | + return $value; |
|
| 953 | + } |
|
| 787 | 954 | $value = realpath($value); |
| 788 | - if(strpos($value,MODX_MANAGER_PATH)!==false) exit('Can not read core file'); |
|
| 955 | + if(strpos($value,MODX_MANAGER_PATH)!==false) { |
|
| 956 | + exit('Can not read core file'); |
|
| 957 | + } |
|
| 789 | 958 | $ext = strtolower(substr($value,-4)); |
| 790 | - if($ext==='.php') exit('Can not read php file'); |
|
| 791 | - if($ext==='.cgi') exit('Can not read cgi file'); |
|
| 959 | + if($ext==='.php') { |
|
| 960 | + exit('Can not read php file'); |
|
| 961 | + } |
|
| 962 | + if($ext==='.cgi') { |
|
| 963 | + exit('Can not read cgi file'); |
|
| 964 | + } |
|
| 792 | 965 | return file_get_contents($value); |
| 793 | 966 | case 'filesize': |
| 794 | - if($value == '') return ''; |
|
| 967 | + if($value == '') { |
|
| 968 | + return ''; |
|
| 969 | + } |
|
| 795 | 970 | $filename = $value; |
| 796 | 971 | |
| 797 | 972 | $site_url = $modx->config['site_url']; |
| 798 | - if(strpos($filename,$site_url) === 0) |
|
| 799 | - $filename = substr($filename,0,strlen($site_url)); |
|
| 973 | + if(strpos($filename,$site_url) === 0) { |
|
| 974 | + $filename = substr($filename,0,strlen($site_url)); |
|
| 975 | + } |
|
| 800 | 976 | $filename = trim($filename,'/'); |
| 801 | 977 | |
| 802 | 978 | $opt = trim($opt,'/'); |
| 803 | - if($opt!=='') $opt .= '/'; |
|
| 979 | + if($opt!=='') { |
|
| 980 | + $opt .= '/'; |
|
| 981 | + } |
|
| 804 | 982 | |
| 805 | 983 | $filename = MODX_BASE_PATH.$opt.$filename; |
| 806 | 984 | |
| 807 | - if(is_file($filename)){ |
|
| 985 | + if(is_file($filename)) { |
|
| 808 | 986 | clearstatcache(); |
| 809 | 987 | $size = filesize($filename); |
| 810 | 988 | return $size; |
| 989 | + } else { |
|
| 990 | + return ''; |
|
| 811 | 991 | } |
| 812 | - else return ''; |
|
| 813 | 992 | ##### User info |
| 814 | 993 | case 'username': |
| 815 | 994 | case 'fullname': |
@@ -837,19 +1016,29 @@ discard block |
||
| 837 | 1016 | $this->opt = $cmd; |
| 838 | 1017 | return $this->includeMdfFile('moduser'); |
| 839 | 1018 | case 'userinfo': |
| 840 | - if(empty($opt)) $this->opt = 'username'; |
|
| 1019 | + if(empty($opt)) { |
|
| 1020 | + $this->opt = 'username'; |
|
| 1021 | + } |
|
| 841 | 1022 | return $this->includeMdfFile('moduser'); |
| 842 | 1023 | case 'webuserinfo': |
| 843 | - if(empty($opt)) $this->opt = 'username'; |
|
| 1024 | + if(empty($opt)) { |
|
| 1025 | + $this->opt = 'username'; |
|
| 1026 | + } |
|
| 844 | 1027 | $this->value = -$value; |
| 845 | 1028 | return $this->includeMdfFile('moduser'); |
| 846 | 1029 | ##### Special functions |
| 847 | 1030 | case 'ifempty': |
| 848 | 1031 | case '_default': |
| 849 | 1032 | case 'default': |
| 850 | - if (empty($value)) return $opt; break; |
|
| 1033 | + if (empty($value)) { |
|
| 1034 | + return $opt; |
|
| 1035 | + } |
|
| 1036 | + break; |
|
| 851 | 1037 | case 'ifnotempty': |
| 852 | - if (!empty($value)) return $opt; break; |
|
| 1038 | + if (!empty($value)) { |
|
| 1039 | + return $opt; |
|
| 1040 | + } |
|
| 1041 | + break; |
|
| 853 | 1042 | case 'datagrid': |
| 854 | 1043 | include_once(MODX_CORE_PATH . 'controls/datagrid.class.php'); |
| 855 | 1044 | $grd = new DataGrid(); |
@@ -857,13 +1046,18 @@ discard block |
||
| 857 | 1046 | $grd->itemStyle = ''; |
| 858 | 1047 | $grd->altItemStyle = ''; |
| 859 | 1048 | $pos = strpos($value,"\n"); |
| 860 | - if($pos) $_ = substr($value,0,$pos); |
|
| 861 | - else $_ = $pos; |
|
| 1049 | + if($pos) { |
|
| 1050 | + $_ = substr($value,0,$pos); |
|
| 1051 | + } else { |
|
| 1052 | + $_ = $pos; |
|
| 1053 | + } |
|
| 862 | 1054 | $grd->cdelim = strpos($_,"\t")!==false ? 'tab' : ','; |
| 863 | 1055 | return $grd->render(); |
| 864 | 1056 | case 'rotate': |
| 865 | 1057 | case 'evenodd': |
| 866 | - if(strpos($opt,',')===false) $opt = 'odd,even'; |
|
| 1058 | + if(strpos($opt,',')===false) { |
|
| 1059 | + $opt = 'odd,even'; |
|
| 1060 | + } |
|
| 867 | 1061 | $_ = explode(',', $opt); |
| 868 | 1062 | $c = count($_); |
| 869 | 1063 | $i = $value + $c; |
@@ -872,7 +1066,9 @@ discard block |
||
| 872 | 1066 | case 'takeval': |
| 873 | 1067 | $arr = explode(",",$opt); |
| 874 | 1068 | $idx = $value; |
| 875 | - if(!is_numeric($idx)) return $value; |
|
| 1069 | + if(!is_numeric($idx)) { |
|
| 1070 | + return $value; |
|
| 1071 | + } |
|
| 876 | 1072 | return $arr[$idx]; |
| 877 | 1073 | case 'getimage': |
| 878 | 1074 | return $this->includeMdfFile('getimage'); |
@@ -880,14 +1076,18 @@ discard block |
||
| 880 | 1076 | return $modx->nicesize($value); |
| 881 | 1077 | case 'googlemap': |
| 882 | 1078 | case 'googlemaps': |
| 883 | - if(empty($opt)) $opt = 'border:none;width:500px;height:350px;'; |
|
| 1079 | + if(empty($opt)) { |
|
| 1080 | + $opt = 'border:none;width:500px;height:350px;'; |
|
| 1081 | + } |
|
| 884 | 1082 | $tpl = '<iframe style="[+style+]" src="https://maps.google.co.jp/maps?ll=[+value+]&output=embed&z=15"></iframe>'; |
| 885 | 1083 | $ph['style'] = $opt; |
| 886 | 1084 | $ph['value'] = $value; |
| 887 | 1085 | return $modx->parseText($tpl,$ph); |
| 888 | 1086 | case 'youtube': |
| 889 | 1087 | case 'youtube16x9': |
| 890 | - if(empty($opt)) $opt = 560; |
|
| 1088 | + if(empty($opt)) { |
|
| 1089 | + $opt = 560; |
|
| 1090 | + } |
|
| 891 | 1091 | $h = round($opt*0.5625); |
| 892 | 1092 | $tpl = '<iframe width="%s" height="%s" src="https://www.youtube.com/embed/%s" frameborder="0" allowfullscreen></iframe>'; |
| 893 | 1093 | return sprintf($tpl,$opt,$h,$value); |
@@ -920,7 +1120,8 @@ discard block |
||
| 920 | 1120 | return $value; |
| 921 | 1121 | } |
| 922 | 1122 | |
| 923 | - function includeMdfFile($cmd) { |
|
| 1123 | + function includeMdfFile($cmd) |
|
| 1124 | + { |
|
| 924 | 1125 | global $modx; |
| 925 | 1126 | $key = $this->key; |
| 926 | 1127 | $value = $this->value; |
@@ -931,55 +1132,65 @@ discard block |
||
| 931 | 1132 | function getValueFromElement($key, $value, $cmd, $opt) |
| 932 | 1133 | { |
| 933 | 1134 | global $modx; |
| 934 | - if( isset($modx->snippetCache[$this->elmName]) ) |
|
| 935 | - { |
|
| 1135 | + if( isset($modx->snippetCache[$this->elmName]) ) { |
|
| 936 | 1136 | $php = $modx->snippetCache[$this->elmName]; |
| 937 | - } |
|
| 938 | - else |
|
| 939 | - { |
|
| 1137 | + } else { |
|
| 940 | 1138 | $esc_elmName = $modx->db->escape($this->elmName); |
| 941 | 1139 | $result = $modx->db->select('snippet','[+prefix+]site_snippets',"name='{$esc_elmName}'"); |
| 942 | 1140 | $total = $modx->db->getRecordCount($result); |
| 943 | - if($total == 1) |
|
| 944 | - { |
|
| 1141 | + if($total == 1) { |
|
| 945 | 1142 | $row = $modx->db->getRow($result); |
| 946 | 1143 | $php = $row['snippet']; |
| 947 | - } |
|
| 948 | - elseif($total == 0) |
|
| 949 | - { |
|
| 1144 | + } elseif($total == 0) { |
|
| 950 | 1145 | $assets_path = MODX_BASE_PATH.'assets/'; |
| 951 | - if(is_file($assets_path."modifiers/mdf_{$cmd}.inc.php")) |
|
| 952 | - $modifiers_path = $assets_path."modifiers/mdf_{$cmd}.inc.php"; |
|
| 953 | - elseif(is_file($assets_path."plugins/phx/modifiers/{$cmd}.phx.php")) |
|
| 954 | - $modifiers_path = $assets_path."plugins/phx/modifiers/{$cmd}.phx.php"; |
|
| 955 | - elseif(is_file(MODX_CORE_PATH."extenders/modifiers/mdf_{$cmd}.inc.php")) |
|
| 956 | - $modifiers_path = MODX_CORE_PATH."extenders/modifiers/mdf_{$cmd}.inc.php"; |
|
| 957 | - else $modifiers_path = false; |
|
| 1146 | + if(is_file($assets_path."modifiers/mdf_{$cmd}.inc.php")) { |
|
| 1147 | + $modifiers_path = $assets_path."modifiers/mdf_{$cmd}.inc.php"; |
|
| 1148 | + } elseif(is_file($assets_path."plugins/phx/modifiers/{$cmd}.phx.php")) { |
|
| 1149 | + $modifiers_path = $assets_path."plugins/phx/modifiers/{$cmd}.phx.php"; |
|
| 1150 | + } elseif(is_file(MODX_CORE_PATH."extenders/modifiers/mdf_{$cmd}.inc.php")) { |
|
| 1151 | + $modifiers_path = MODX_CORE_PATH."extenders/modifiers/mdf_{$cmd}.inc.php"; |
|
| 1152 | + } else { |
|
| 1153 | + $modifiers_path = false; |
|
| 1154 | + } |
|
| 958 | 1155 | |
| 959 | 1156 | if($modifiers_path) { |
| 960 | 1157 | $php = @file_get_contents($modifiers_path); |
| 961 | 1158 | $php = trim($php); |
| 962 | - if(substr($php,0,5)==='<?php') $php = substr($php,6); |
|
| 963 | - if(substr($php,0,2)==='<?') $php = substr($php,3); |
|
| 964 | - if(substr($php,-2)==='?>') $php = substr($php,0,-2); |
|
| 965 | - if($this->elmName!=='') |
|
| 966 | - $modx->snippetCache[$this->elmName.'Props'] = ''; |
|
| 967 | - } |
|
| 968 | - else |
|
| 969 | - $php = false; |
|
| 1159 | + if(substr($php,0,5)==='<?php') { |
|
| 1160 | + $php = substr($php,6); |
|
| 1161 | + } |
|
| 1162 | + if(substr($php,0,2)==='<?') { |
|
| 1163 | + $php = substr($php,3); |
|
| 1164 | + } |
|
| 1165 | + if(substr($php,-2)==='?>') { |
|
| 1166 | + $php = substr($php,0,-2); |
|
| 1167 | + } |
|
| 1168 | + if($this->elmName!=='') { |
|
| 1169 | + $modx->snippetCache[$this->elmName.'Props'] = ''; |
|
| 1170 | + } |
|
| 1171 | + } else { |
|
| 1172 | + $php = false; |
|
| 1173 | + } |
|
| 1174 | + } else { |
|
| 1175 | + $php = false; |
|
| 970 | 1176 | } |
| 971 | - else $php = false; |
|
| 972 | - if($this->elmName!=='') $modx->snippetCache[$this->elmName]= $php; |
|
| 1177 | + if($this->elmName!=='') { |
|
| 1178 | + $modx->snippetCache[$this->elmName]= $php; |
|
| 1179 | + } |
|
| 1180 | + } |
|
| 1181 | + if($php==='') { |
|
| 1182 | + $php=false; |
|
| 973 | 1183 | } |
| 974 | - if($php==='') $php=false; |
|
| 975 | 1184 | |
| 976 | - if($php===false) $html = $modx->getChunk($this->elmName); |
|
| 977 | - else $html = false; |
|
| 1185 | + if($php===false) { |
|
| 1186 | + $html = $modx->getChunk($this->elmName); |
|
| 1187 | + } else { |
|
| 1188 | + $html = false; |
|
| 1189 | + } |
|
| 978 | 1190 | |
| 979 | 1191 | $self = '[+output+]'; |
| 980 | 1192 | |
| 981 | - if($php !== false) |
|
| 982 | - { |
|
| 1193 | + if($php !== false) { |
|
| 983 | 1194 | ob_start(); |
| 984 | 1195 | $options = $opt; |
| 985 | 1196 | $output = $value; |
@@ -991,19 +1202,19 @@ discard block |
||
| 991 | 1202 | $this->vars['options'] = & $opt; |
| 992 | 1203 | $custom = eval($php); |
| 993 | 1204 | $msg = ob_get_contents(); |
| 994 | - if($value===$this->bt) $value = $msg . $custom; |
|
| 1205 | + if($value===$this->bt) { |
|
| 1206 | + $value = $msg . $custom; |
|
| 1207 | + } |
|
| 995 | 1208 | ob_end_clean(); |
| 996 | - } |
|
| 997 | - elseif($html!==false && isset($value) && $value!=='') |
|
| 998 | - { |
|
| 1209 | + } elseif($html!==false && isset($value) && $value!=='') { |
|
| 999 | 1210 | $html = str_replace(array($self,'[+value+]'), $value, $html); |
| 1000 | 1211 | $value = str_replace(array('[+options+]','[+param+]'), $opt, $html); |
| 1212 | + } else { |
|
| 1213 | + return false; |
|
| 1001 | 1214 | } |
| 1002 | - else return false; |
|
| 1003 | 1215 | |
| 1004 | 1216 | if($php===false && $html===false && $value!=='' |
| 1005 | - && (strpos($cmd,'[+value+]')!==false || strpos($cmd,$self)!==false)) |
|
| 1006 | - { |
|
| 1217 | + && (strpos($cmd,'[+value+]')!==false || strpos($cmd,$self)!==false)) { |
|
| 1007 | 1218 | $value = str_replace(array('[+value+]',$self),$value,$cmd); |
| 1008 | 1219 | } |
| 1009 | 1220 | return $value; |
@@ -1013,23 +1224,39 @@ discard block |
||
| 1013 | 1224 | { |
| 1014 | 1225 | global $modx; |
| 1015 | 1226 | |
| 1016 | - if(strpos($content,'[')===false && strpos($content,'{')===false) return $content; |
|
| 1227 | + if(strpos($content,'[')===false && strpos($content,'{')===false) { |
|
| 1228 | + return $content; |
|
| 1229 | + } |
|
| 1017 | 1230 | |
| 1018 | - if(!$modx->maxParserPasses) $modx->maxParserPasses = 10; |
|
| 1231 | + if(!$modx->maxParserPasses) { |
|
| 1232 | + $modx->maxParserPasses = 10; |
|
| 1233 | + } |
|
| 1019 | 1234 | $bt=''; |
| 1020 | 1235 | $i=0; |
| 1021 | - while($bt!==$content) |
|
| 1022 | - { |
|
| 1236 | + while($bt!==$content) { |
|
| 1023 | 1237 | $bt = $content; |
| 1024 | - if(strpos($content,'[*')!==false && $modx->documentIdentifier) |
|
| 1025 | - $content = $modx->mergeDocumentContent($content); |
|
| 1026 | - if(strpos($content,'[(')!==false) $content = $modx->mergeSettingsContent($content); |
|
| 1027 | - if(strpos($content,'{{')!==false) $content = $modx->mergeChunkContent($content); |
|
| 1028 | - if(strpos($content,'[!')!==false) $content = str_replace(array('[!','!]'),array('[[',']]'),$content); |
|
| 1029 | - if(strpos($content,'[[')!==false) $content = $modx->evalSnippets($content); |
|
| 1238 | + if(strpos($content,'[*')!==false && $modx->documentIdentifier) { |
|
| 1239 | + $content = $modx->mergeDocumentContent($content); |
|
| 1240 | + } |
|
| 1241 | + if(strpos($content,'[(')!==false) { |
|
| 1242 | + $content = $modx->mergeSettingsContent($content); |
|
| 1243 | + } |
|
| 1244 | + if(strpos($content,'{{')!==false) { |
|
| 1245 | + $content = $modx->mergeChunkContent($content); |
|
| 1246 | + } |
|
| 1247 | + if(strpos($content,'[!')!==false) { |
|
| 1248 | + $content = str_replace(array('[!','!]'),array('[[',']]'),$content); |
|
| 1249 | + } |
|
| 1250 | + if(strpos($content,'[[')!==false) { |
|
| 1251 | + $content = $modx->evalSnippets($content); |
|
| 1252 | + } |
|
| 1030 | 1253 | |
| 1031 | - if($content===$bt) break; |
|
| 1032 | - if($modx->maxParserPasses < $i) break; |
|
| 1254 | + if($content===$bt) { |
|
| 1255 | + break; |
|
| 1256 | + } |
|
| 1257 | + if($modx->maxParserPasses < $i) { |
|
| 1258 | + break; |
|
| 1259 | + } |
|
| 1033 | 1260 | $i++; |
| 1034 | 1261 | } |
| 1035 | 1262 | return $content; |
@@ -1040,103 +1267,138 @@ discard block |
||
| 1040 | 1267 | global $modx; |
| 1041 | 1268 | |
| 1042 | 1269 | $target = trim($target); |
| 1043 | - if(empty($target)) $target = $modx->config['site_start']; |
|
| 1044 | - if(preg_match('@^[1-9][0-9]*$@',$target)) $method='id'; |
|
| 1045 | - else $method = 'alias'; |
|
| 1270 | + if(empty($target)) { |
|
| 1271 | + $target = $modx->config['site_start']; |
|
| 1272 | + } |
|
| 1273 | + if(preg_match('@^[1-9][0-9]*$@',$target)) { |
|
| 1274 | + $method='id'; |
|
| 1275 | + } else { |
|
| 1276 | + $method = 'alias'; |
|
| 1277 | + } |
|
| 1046 | 1278 | |
| 1047 | - if(!isset($this->documentObject[$target])) |
|
| 1048 | - { |
|
| 1279 | + if(!isset($this->documentObject[$target])) { |
|
| 1049 | 1280 | $this->documentObject[$target] = $modx->getDocumentObject($method,$target,'direct'); |
| 1050 | 1281 | } |
| 1051 | 1282 | |
| 1052 | - if($this->documentObject[$target]['publishedon']==='0') |
|
| 1053 | - return ''; |
|
| 1054 | - elseif(isset($this->documentObject[$target][$field])) |
|
| 1055 | - { |
|
| 1056 | - if(is_array($this->documentObject[$target][$field])) |
|
| 1057 | - { |
|
| 1283 | + if($this->documentObject[$target]['publishedon']==='0') { |
|
| 1284 | + return ''; |
|
| 1285 | + } elseif(isset($this->documentObject[$target][$field])) { |
|
| 1286 | + if(is_array($this->documentObject[$target][$field])) { |
|
| 1058 | 1287 | $a = $modx->getTemplateVarOutput($field,$target); |
| 1059 | 1288 | $this->documentObject[$target][$field] = $a[$field]; |
| 1060 | 1289 | } |
| 1290 | + } else { |
|
| 1291 | + $this->documentObject[$target][$field] = false; |
|
| 1061 | 1292 | } |
| 1062 | - else $this->documentObject[$target][$field] = false; |
|
| 1063 | 1293 | |
| 1064 | 1294 | return $this->documentObject[$target][$field]; |
| 1065 | 1295 | } |
| 1066 | 1296 | |
| 1067 | - function setPlaceholders($value = '', $key = '', $path = '') { |
|
| 1068 | - if($path!=='') $key = "{$path}.{$key}"; |
|
| 1297 | + function setPlaceholders($value = '', $key = '', $path = '') |
|
| 1298 | + { |
|
| 1299 | + if($path!=='') { |
|
| 1300 | + $key = "{$path}.{$key}"; |
|
| 1301 | + } |
|
| 1069 | 1302 | if (is_array($value)) { |
| 1070 | 1303 | foreach ($value as $subkey => $subval) { |
| 1071 | 1304 | $this->setPlaceholders($subval, $subkey, $key); |
| 1072 | 1305 | } |
| 1306 | + } else { |
|
| 1307 | + $this->setModifiersVariable($key, $value); |
|
| 1073 | 1308 | } |
| 1074 | - else $this->setModifiersVariable($key, $value); |
|
| 1075 | 1309 | } |
| 1076 | 1310 | |
| 1077 | 1311 | // Sets a placeholder variable which can only be access by Modifiers |
| 1078 | - function setModifiersVariable($key, $value) { |
|
| 1079 | - if ($key != 'phx' && $key != 'dummy') $this->placeholders[$key] = $value; |
|
| 1312 | + function setModifiersVariable($key, $value) |
|
| 1313 | + { |
|
| 1314 | + if ($key != 'phx' && $key != 'dummy') { |
|
| 1315 | + $this->placeholders[$key] = $value; |
|
| 1316 | + } |
|
| 1080 | 1317 | } |
| 1081 | 1318 | |
| 1082 | 1319 | //mbstring |
| 1083 | - function substr($str, $s, $l = null) { |
|
| 1320 | + function substr($str, $s, $l = null) |
|
| 1321 | + { |
|
| 1084 | 1322 | global $modx; |
| 1085 | - if(is_null($l)) $l = $this->strlen($str); |
|
| 1086 | - if (function_exists('mb_substr')) |
|
| 1087 | - { |
|
| 1088 | - if(strpos($str,"\r")!==false) |
|
| 1089 | - $str = str_replace(array("\r\n","\r"), "\n", $str); |
|
| 1323 | + if(is_null($l)) { |
|
| 1324 | + $l = $this->strlen($str); |
|
| 1325 | + } |
|
| 1326 | + if (function_exists('mb_substr')) { |
|
| 1327 | + if(strpos($str,"\r")!==false) { |
|
| 1328 | + $str = str_replace(array("\r\n","\r"), "\n", $str); |
|
| 1329 | + } |
|
| 1090 | 1330 | return mb_substr($str, $s, $l, $modx->config['modx_charset']); |
| 1091 | 1331 | } |
| 1092 | 1332 | return substr($str, $s, $l); |
| 1093 | 1333 | } |
| 1094 | - function strpos($haystack,$needle,$offset=0) { |
|
| 1334 | + function strpos($haystack,$needle,$offset=0) |
|
| 1335 | + { |
|
| 1095 | 1336 | global $modx; |
| 1096 | - if (function_exists('mb_strpos')) return mb_strpos($haystack,$needle,$offset,$modx->config['modx_charset']); |
|
| 1337 | + if (function_exists('mb_strpos')) { |
|
| 1338 | + return mb_strpos($haystack,$needle,$offset,$modx->config['modx_charset']); |
|
| 1339 | + } |
|
| 1097 | 1340 | return strpos($haystack,$needle,$offset); |
| 1098 | 1341 | } |
| 1099 | - function strlen($str) { |
|
| 1342 | + function strlen($str) |
|
| 1343 | + { |
|
| 1100 | 1344 | global $modx; |
| 1101 | - if (function_exists('mb_strlen')) return mb_strlen(str_replace("\r\n", "\n", $str),$modx->config['modx_charset']); |
|
| 1345 | + if (function_exists('mb_strlen')) { |
|
| 1346 | + return mb_strlen(str_replace("\r\n", "\n", $str),$modx->config['modx_charset']); |
|
| 1347 | + } |
|
| 1102 | 1348 | return strlen($str); |
| 1103 | 1349 | } |
| 1104 | - function strtolower($str) { |
|
| 1105 | - if (function_exists('mb_strtolower')) return mb_strtolower($str); |
|
| 1350 | + function strtolower($str) |
|
| 1351 | + { |
|
| 1352 | + if (function_exists('mb_strtolower')) { |
|
| 1353 | + return mb_strtolower($str); |
|
| 1354 | + } |
|
| 1106 | 1355 | return strtolower($str); |
| 1107 | 1356 | } |
| 1108 | - function strtoupper($str) { |
|
| 1109 | - if (function_exists('mb_strtoupper')) return mb_strtoupper($str); |
|
| 1357 | + function strtoupper($str) |
|
| 1358 | + { |
|
| 1359 | + if (function_exists('mb_strtoupper')) { |
|
| 1360 | + return mb_strtoupper($str); |
|
| 1361 | + } |
|
| 1110 | 1362 | return strtoupper($str); |
| 1111 | 1363 | } |
| 1112 | - function ucfirst($str) { |
|
| 1113 | - if (function_exists('mb_strtoupper')) |
|
| 1114 | - return mb_strtoupper($this->substr($str, 0, 1)).$this->substr($str, 1, $this->strlen($str)); |
|
| 1364 | + function ucfirst($str) |
|
| 1365 | + { |
|
| 1366 | + if (function_exists('mb_strtoupper')) { |
|
| 1367 | + return mb_strtoupper($this->substr($str, 0, 1)).$this->substr($str, 1, $this->strlen($str)); |
|
| 1368 | + } |
|
| 1115 | 1369 | return ucfirst($str); |
| 1116 | 1370 | } |
| 1117 | - function lcfirst($str) { |
|
| 1118 | - if (function_exists('mb_strtolower')) |
|
| 1119 | - return mb_strtolower($this->substr($str, 0, 1)).$this->substr($str, 1, $this->strlen($str)); |
|
| 1371 | + function lcfirst($str) |
|
| 1372 | + { |
|
| 1373 | + if (function_exists('mb_strtolower')) { |
|
| 1374 | + return mb_strtolower($this->substr($str, 0, 1)).$this->substr($str, 1, $this->strlen($str)); |
|
| 1375 | + } |
|
| 1120 | 1376 | return lcfirst($str); |
| 1121 | 1377 | } |
| 1122 | - function ucwords($str) { |
|
| 1123 | - if (function_exists('mb_convert_case')) |
|
| 1124 | - return mb_convert_case($str, MB_CASE_TITLE); |
|
| 1378 | + function ucwords($str) |
|
| 1379 | + { |
|
| 1380 | + if (function_exists('mb_convert_case')) { |
|
| 1381 | + return mb_convert_case($str, MB_CASE_TITLE); |
|
| 1382 | + } |
|
| 1125 | 1383 | return ucwords($str); |
| 1126 | 1384 | } |
| 1127 | - function strrev($str) { |
|
| 1385 | + function strrev($str) |
|
| 1386 | + { |
|
| 1128 | 1387 | preg_match_all('/./us', $str, $ar); |
| 1129 | 1388 | return join(array_reverse($ar[0])); |
| 1130 | 1389 | } |
| 1131 | - function str_shuffle($str) { |
|
| 1390 | + function str_shuffle($str) |
|
| 1391 | + { |
|
| 1132 | 1392 | preg_match_all('/./us', $str, $ar); |
| 1133 | 1393 | shuffle($ar[0]); |
| 1134 | 1394 | return join($ar[0]); |
| 1135 | 1395 | } |
| 1136 | - function str_word_count($str) { |
|
| 1396 | + function str_word_count($str) |
|
| 1397 | + { |
|
| 1137 | 1398 | return count(preg_split('~[^\p{L}\p{N}\']+~u',$str)); |
| 1138 | 1399 | } |
| 1139 | - function strip_tags($value,$params='') { |
|
| 1400 | + function strip_tags($value,$params='') |
|
| 1401 | + { |
|
| 1140 | 1402 | global $modx; |
| 1141 | 1403 | |
| 1142 | 1404 | if(stripos($params,'style')===false && stripos($value,'</style>')!==false) { |
@@ -341,7 +341,7 @@ |
||
| 341 | 341 | $conditional = join(' ',$this->condition); |
| 342 | 342 | $isvalid = intval(eval("return ({$conditional});")); |
| 343 | 343 | if ($isvalid) return $this->srcValue; |
| 344 | - return NULL; |
|
| 344 | + return null; |
|
| 345 | 345 | case 'then': |
| 346 | 346 | $conditional = join(' ',$this->condition); |
| 347 | 347 | $isvalid = intval(eval("return ({$conditional});")); |
@@ -8,8 +8,8 @@ |
||
| 8 | 8 | ******************************************************* |
| 9 | 9 | */ |
| 10 | 10 | |
| 11 | -use PHPMailer\PHPMailer\PHPMailer; |
|
| 12 | 11 | use PHPMailer\PHPMailer\Exception; |
| 12 | +use PHPMailer\PHPMailer\PHPMailer; |
|
| 13 | 13 | |
| 14 | 14 | require MODX_MANAGER_PATH . 'includes/controls/phpmailer/Exception.php'; |
| 15 | 15 | require MODX_MANAGER_PATH . 'includes/controls/phpmailer/PHPMailer.php'; |
@@ -11,9 +11,9 @@ discard block |
||
| 11 | 11 | use PHPMailer\PHPMailer\PHPMailer; |
| 12 | 12 | use PHPMailer\PHPMailer\Exception; |
| 13 | 13 | |
| 14 | -require MODX_MANAGER_PATH . 'includes/controls/phpmailer/Exception.php'; |
|
| 15 | -require MODX_MANAGER_PATH . 'includes/controls/phpmailer/PHPMailer.php'; |
|
| 16 | -require MODX_MANAGER_PATH . 'includes/controls/phpmailer/SMTP.php'; |
|
| 14 | +require MODX_MANAGER_PATH.'includes/controls/phpmailer/Exception.php'; |
|
| 15 | +require MODX_MANAGER_PATH.'includes/controls/phpmailer/PHPMailer.php'; |
|
| 16 | +require MODX_MANAGER_PATH.'includes/controls/phpmailer/SMTP.php'; |
|
| 17 | 17 | |
| 18 | 18 | /** |
| 19 | 19 | * Class MODxMailer |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | public function init(\DocumentParser $modx) |
| 32 | 32 | { |
| 33 | 33 | $this->modx = $modx; |
| 34 | - $this->PluginDir = MODX_MANAGER_PATH . 'includes/controls/phpmailer/'; |
|
| 34 | + $this->PluginDir = MODX_MANAGER_PATH.'includes/controls/phpmailer/'; |
|
| 35 | 35 | |
| 36 | 36 | switch ($modx->config['email_method']) { |
| 37 | 37 | case 'smtp': |
@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | mb_language($this->mb_language); |
| 96 | 96 | mb_internal_encoding($modx->config['modx_charset']); |
| 97 | 97 | } |
| 98 | - $exconf = MODX_MANAGER_PATH . 'includes/controls/phpmailer/config.inc.php'; |
|
| 98 | + $exconf = MODX_MANAGER_PATH.'includes/controls/phpmailer/config.inc.php'; |
|
| 99 | 99 | if (is_file($exconf)) { |
| 100 | 100 | include($exconf); |
| 101 | 101 | } |
@@ -163,12 +163,12 @@ discard block |
||
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | if ($this->modx->debug) { |
| 166 | - $debug_info = 'CharSet = ' . $this->CharSet . "\n"; |
|
| 167 | - $debug_info .= 'Encoding = ' . $this->Encoding . "\n"; |
|
| 168 | - $debug_info .= 'mb_language = ' . $this->mb_language . "\n"; |
|
| 169 | - $debug_info .= 'encode_header_method = ' . $this->encode_header_method . "\n"; |
|
| 166 | + $debug_info = 'CharSet = '.$this->CharSet."\n"; |
|
| 167 | + $debug_info .= 'Encoding = '.$this->Encoding."\n"; |
|
| 168 | + $debug_info .= 'mb_language = '.$this->mb_language."\n"; |
|
| 169 | + $debug_info .= 'encode_header_method = '.$this->encode_header_method."\n"; |
|
| 170 | 170 | $debug_info .= "send_mode = {$mode}\n"; |
| 171 | - $debug_info .= 'Subject = ' . $this->Subject . "\n"; |
|
| 171 | + $debug_info .= 'Subject = '.$this->Subject."\n"; |
|
| 172 | 172 | $log = "<pre>{$debug_info}\n{$header}\n{$org_body}</pre>"; |
| 173 | 173 | $this->modx->logEvent(1, 1, $log, 'MODxMailer debug information'); |
| 174 | 174 | |
@@ -232,7 +232,7 @@ discard block |
||
| 232 | 232 | ini_set('sendmail_from', $old_from); |
| 233 | 233 | } |
| 234 | 234 | if (!$rt) { |
| 235 | - $msg = $this->Lang('instantiate') . "<br />\n"; |
|
| 235 | + $msg = $this->Lang('instantiate')."<br />\n"; |
|
| 236 | 236 | $msg .= "{$this->Subject}<br />\n"; |
| 237 | 237 | $msg .= "{$this->FromName}<{$this->From}><br />\n"; |
| 238 | 238 | $msg .= mb_convert_encoding($body, $this->modx->config['modx_charset'], $this->CharSet); |
@@ -251,7 +251,7 @@ discard block |
||
| 251 | 251 | */ |
| 252 | 252 | public function SetError($msg) |
| 253 | 253 | { |
| 254 | - $msg .= '<pre>' . print_r(get_object_vars($this), true) . '</pre>'; |
|
| 254 | + $msg .= '<pre>'.print_r(get_object_vars($this), true).'</pre>'; |
|
| 255 | 255 | $this->modx->config['send_errormail'] = '0'; |
| 256 | 256 | $this->modx->logEvent(0, 3, $msg, 'phpmailer'); |
| 257 | 257 | |
@@ -280,14 +280,14 @@ discard block |
||
| 280 | 280 | /** |
| 281 | 281 | * @return string |
| 282 | 282 | */ |
| 283 | - public function getMIMEHeader() { |
|
| 283 | + public function getMIMEHeader(){ |
|
| 284 | 284 | return $this->MIMEHeader; |
| 285 | 285 | } |
| 286 | 286 | |
| 287 | 287 | /** |
| 288 | 288 | * @return string |
| 289 | 289 | */ |
| 290 | - public function getMIMEBody() { |
|
| 290 | + public function getMIMEBody(){ |
|
| 291 | 291 | return $this->MIMEBody; |
| 292 | 292 | } |
| 293 | 293 | |
@@ -296,7 +296,7 @@ discard block |
||
| 296 | 296 | * |
| 297 | 297 | * @return $this |
| 298 | 298 | */ |
| 299 | - public function setMIMEHeader($header = '') { |
|
| 299 | + public function setMIMEHeader($header = ''){ |
|
| 300 | 300 | $this->MIMEHeader = $header; |
| 301 | 301 | |
| 302 | 302 | return $this; |
@@ -307,7 +307,7 @@ discard block |
||
| 307 | 307 | * |
| 308 | 308 | * @return $this |
| 309 | 309 | */ |
| 310 | - public function setMIMEBody($body = '') { |
|
| 310 | + public function setMIMEBody($body = ''){ |
|
| 311 | 311 | $this->MIMEBody = $body; |
| 312 | 312 | |
| 313 | 313 | return $this; |
@@ -318,7 +318,7 @@ discard block |
||
| 318 | 318 | * |
| 319 | 319 | * @return $this |
| 320 | 320 | */ |
| 321 | - public function setMailHeader($header = '') { |
|
| 321 | + public function setMailHeader($header = ''){ |
|
| 322 | 322 | $this->mailHeader = $header; |
| 323 | 323 | |
| 324 | 324 | return $this; |
@@ -327,7 +327,7 @@ discard block |
||
| 327 | 327 | /** |
| 328 | 328 | * @return string |
| 329 | 329 | */ |
| 330 | - public function getMessageID() { |
|
| 331 | - return trim($this->lastMessageID,'<>'); |
|
| 330 | + public function getMessageID(){ |
|
| 331 | + return trim($this->lastMessageID, '<>'); |
|
| 332 | 332 | } |
| 333 | 333 | } |
@@ -280,14 +280,16 @@ discard block |
||
| 280 | 280 | /** |
| 281 | 281 | * @return string |
| 282 | 282 | */ |
| 283 | - public function getMIMEHeader() { |
|
| 283 | + public function getMIMEHeader() |
|
| 284 | + { |
|
| 284 | 285 | return $this->MIMEHeader; |
| 285 | 286 | } |
| 286 | 287 | |
| 287 | 288 | /** |
| 288 | 289 | * @return string |
| 289 | 290 | */ |
| 290 | - public function getMIMEBody() { |
|
| 291 | + public function getMIMEBody() |
|
| 292 | + { |
|
| 291 | 293 | return $this->MIMEBody; |
| 292 | 294 | } |
| 293 | 295 | |
@@ -296,7 +298,8 @@ discard block |
||
| 296 | 298 | * |
| 297 | 299 | * @return $this |
| 298 | 300 | */ |
| 299 | - public function setMIMEHeader($header = '') { |
|
| 301 | + public function setMIMEHeader($header = '') |
|
| 302 | + { |
|
| 300 | 303 | $this->MIMEHeader = $header; |
| 301 | 304 | |
| 302 | 305 | return $this; |
@@ -307,7 +310,8 @@ discard block |
||
| 307 | 310 | * |
| 308 | 311 | * @return $this |
| 309 | 312 | */ |
| 310 | - public function setMIMEBody($body = '') { |
|
| 313 | + public function setMIMEBody($body = '') |
|
| 314 | + { |
|
| 311 | 315 | $this->MIMEBody = $body; |
| 312 | 316 | |
| 313 | 317 | return $this; |
@@ -318,7 +322,8 @@ discard block |
||
| 318 | 322 | * |
| 319 | 323 | * @return $this |
| 320 | 324 | */ |
| 321 | - public function setMailHeader($header = '') { |
|
| 325 | + public function setMailHeader($header = '') |
|
| 326 | + { |
|
| 322 | 327 | $this->mailHeader = $header; |
| 323 | 328 | |
| 324 | 329 | return $this; |
@@ -327,7 +332,8 @@ discard block |
||
| 327 | 332 | /** |
| 328 | 333 | * @return string |
| 329 | 334 | */ |
| 330 | - public function getMessageID() { |
|
| 335 | + public function getMessageID() |
|
| 336 | + { |
|
| 331 | 337 | return trim($this->lastMessageID,'<>'); |
| 332 | 338 | } |
| 333 | 339 | } |
@@ -43,6 +43,9 @@ discard block |
||
| 43 | 43 | $this->random_state = microtime() . uniqid(mt_rand(), TRUE); |
| 44 | 44 | } |
| 45 | 45 | |
| 46 | + /** |
|
| 47 | + * @param integer $count |
|
| 48 | + */ |
|
| 46 | 49 | function get_random_bytes($count) |
| 47 | 50 | { |
| 48 | 51 | $output = ''; |
@@ -66,6 +69,9 @@ discard block |
||
| 66 | 69 | return $output; |
| 67 | 70 | } |
| 68 | 71 | |
| 72 | + /** |
|
| 73 | + * @param integer $count |
|
| 74 | + */ |
|
| 69 | 75 | function encode64($input, $count) |
| 70 | 76 | { |
| 71 | 77 | $output = ''; |
@@ -89,6 +95,9 @@ discard block |
||
| 89 | 95 | return $output; |
| 90 | 96 | } |
| 91 | 97 | |
| 98 | + /** |
|
| 99 | + * @param string $input |
|
| 100 | + */ |
|
| 92 | 101 | function gensalt_private($input) |
| 93 | 102 | { |
| 94 | 103 | $output = '$P$'; |
@@ -137,6 +146,9 @@ discard block |
||
| 137 | 146 | return $output; |
| 138 | 147 | } |
| 139 | 148 | |
| 149 | + /** |
|
| 150 | + * @param string $input |
|
| 151 | + */ |
|
| 140 | 152 | function gensalt_extended($input) |
| 141 | 153 | { |
| 142 | 154 | $count_log2 = min($this->iteration_count_log2 + 8, 24); |
@@ -155,6 +167,9 @@ discard block |
||
| 155 | 167 | return $output; |
| 156 | 168 | } |
| 157 | 169 | |
| 170 | + /** |
|
| 171 | + * @param string $input |
|
| 172 | + */ |
|
| 158 | 173 | function gensalt_blowfish($input) |
| 159 | 174 | { |
| 160 | 175 | // This one needs to use a different order of characters and a |
@@ -24,13 +24,13 @@ discard block |
||
| 24 | 24 | // Obviously, since this code is in the public domain, the above are not |
| 25 | 25 | // requirements (there can be none), but merely suggestions. |
| 26 | 26 | // |
| 27 | -class PasswordHash { |
|
| 27 | +class PasswordHash{ |
|
| 28 | 28 | var $itoa64; |
| 29 | 29 | var $iteration_count_log2; |
| 30 | 30 | var $portable_hashes; |
| 31 | 31 | var $random_state; |
| 32 | 32 | |
| 33 | - function __construct($iteration_count_log2=8, $portable_hashes=true) |
|
| 33 | + function __construct($iteration_count_log2 = 8, $portable_hashes = true) |
|
| 34 | 34 | { |
| 35 | 35 | $this->itoa64 = './0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'; |
| 36 | 36 | |
@@ -40,7 +40,7 @@ discard block |
||
| 40 | 40 | |
| 41 | 41 | $this->portable_hashes = $portable_hashes; |
| 42 | 42 | |
| 43 | - $this->random_state = microtime() . uniqid(mt_rand(), TRUE); |
|
| 43 | + $this->random_state = microtime().uniqid(mt_rand(), TRUE); |
|
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | function get_random_bytes($count) |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | $output = ''; |
| 57 | 57 | for ($i = 0; $i < $count; $i += 16) { |
| 58 | 58 | $this->random_state = |
| 59 | - md5(microtime() . $this->random_state); |
|
| 59 | + md5(microtime().$this->random_state); |
|
| 60 | 60 | $output .= |
| 61 | 61 | pack('H*', md5($this->random_state)); |
| 62 | 62 | } |
@@ -126,9 +126,9 @@ discard block |
||
| 126 | 126 | // consequently in lower iteration counts and hashes that are |
| 127 | 127 | // quicker to crack (by non-PHP code). |
| 128 | 128 | |
| 129 | - $hash = md5($salt . $password, TRUE); |
|
| 129 | + $hash = md5($salt.$password, TRUE); |
|
| 130 | 130 | do { |
| 131 | - $hash = md5($hash . $password, TRUE); |
|
| 131 | + $hash = md5($hash.$password, TRUE); |
|
| 132 | 132 | } while (--$count); |
| 133 | 133 | |
| 134 | 134 | $output = substr($setting, 0, 12); |
@@ -198,7 +198,7 @@ discard block |
||
| 198 | 198 | |
| 199 | 199 | function HashPassword($password) |
| 200 | 200 | { |
| 201 | - if ( strlen( $password ) > 4096 ) { |
|
| 201 | + if (strlen($password) > 4096) { |
|
| 202 | 202 | return '*'; |
| 203 | 203 | } |
| 204 | 204 | |
@@ -237,14 +237,14 @@ discard block |
||
| 237 | 237 | |
| 238 | 238 | function CheckPassword($password, $stored_hash) |
| 239 | 239 | { |
| 240 | - if ( strlen( $password ) > 4096 ) { |
|
| 240 | + if (strlen($password) > 4096) { |
|
| 241 | 241 | return false; |
| 242 | 242 | } |
| 243 | 243 | |
| 244 | 244 | $hash = $this->crypt_private($password, $stored_hash); |
| 245 | - if (substr($hash,0,1) === '*') |
|
| 245 | + if (substr($hash, 0, 1) === '*') |
|
| 246 | 246 | $hash = crypt($password, $stored_hash); |
| 247 | 247 | |
| 248 | - return ($hash===$stored_hash) ? true : false; |
|
| 248 | + return ($hash === $stored_hash) ? true : false; |
|
| 249 | 249 | } |
| 250 | 250 | } |
@@ -24,7 +24,8 @@ discard block |
||
| 24 | 24 | // Obviously, since this code is in the public domain, the above are not |
| 25 | 25 | // requirements (there can be none), but merely suggestions. |
| 26 | 26 | // |
| 27 | -class PasswordHash { |
|
| 27 | +class PasswordHash |
|
| 28 | +{ |
|
| 28 | 29 | var $itoa64; |
| 29 | 30 | var $iteration_count_log2; |
| 30 | 31 | var $portable_hashes; |
@@ -34,8 +35,9 @@ discard block |
||
| 34 | 35 | { |
| 35 | 36 | $this->itoa64 = './0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'; |
| 36 | 37 | |
| 37 | - if ($iteration_count_log2 < 4 || $iteration_count_log2 > 31) |
|
| 38 | - $iteration_count_log2 = 8; |
|
| 38 | + if ($iteration_count_log2 < 4 || $iteration_count_log2 > 31) { |
|
| 39 | + $iteration_count_log2 = 8; |
|
| 40 | + } |
|
| 39 | 41 | $this->iteration_count_log2 = $iteration_count_log2; |
| 40 | 42 | |
| 41 | 43 | $this->portable_hashes = $portable_hashes; |
@@ -73,16 +75,20 @@ discard block |
||
| 73 | 75 | do { |
| 74 | 76 | $value = ord($input[$i++]); |
| 75 | 77 | $output .= $this->itoa64[$value & 0x3f]; |
| 76 | - if ($i < $count) |
|
| 77 | - $value |= ord($input[$i]) << 8; |
|
| 78 | + if ($i < $count) { |
|
| 79 | + $value |= ord($input[$i]) << 8; |
|
| 80 | + } |
|
| 78 | 81 | $output .= $this->itoa64[($value >> 6) & 0x3f]; |
| 79 | - if ($i++ >= $count) |
|
| 80 | - break; |
|
| 81 | - if ($i < $count) |
|
| 82 | - $value |= ord($input[$i]) << 16; |
|
| 82 | + if ($i++ >= $count) { |
|
| 83 | + break; |
|
| 84 | + } |
|
| 85 | + if ($i < $count) { |
|
| 86 | + $value |= ord($input[$i]) << 16; |
|
| 87 | + } |
|
| 83 | 88 | $output .= $this->itoa64[($value >> 12) & 0x3f]; |
| 84 | - if ($i++ >= $count) |
|
| 85 | - break; |
|
| 89 | + if ($i++ >= $count) { |
|
| 90 | + break; |
|
| 91 | + } |
|
| 86 | 92 | $output .= $this->itoa64[($value >> 18) & 0x3f]; |
| 87 | 93 | } while ($i < $count); |
| 88 | 94 | |
@@ -101,23 +107,27 @@ discard block |
||
| 101 | 107 | function crypt_private($password, $setting) |
| 102 | 108 | { |
| 103 | 109 | $output = '*0'; |
| 104 | - if (substr($setting, 0, 2) == $output) |
|
| 105 | - $output = '*1'; |
|
| 110 | + if (substr($setting, 0, 2) == $output) { |
|
| 111 | + $output = '*1'; |
|
| 112 | + } |
|
| 106 | 113 | |
| 107 | 114 | $id = substr($setting, 0, 3); |
| 108 | 115 | // We use "$P$", phpBB3 uses "$H$" for the same thing |
| 109 | - if ($id != '$P$' && $id != '$H$') |
|
| 110 | - return $output; |
|
| 116 | + if ($id != '$P$' && $id != '$H$') { |
|
| 117 | + return $output; |
|
| 118 | + } |
|
| 111 | 119 | |
| 112 | 120 | $count_log2 = strpos($this->itoa64, $setting[3]); |
| 113 | - if ($count_log2 < 7 || $count_log2 > 30) |
|
| 114 | - return $output; |
|
| 121 | + if ($count_log2 < 7 || $count_log2 > 30) { |
|
| 122 | + return $output; |
|
| 123 | + } |
|
| 115 | 124 | |
| 116 | 125 | $count = 1 << $count_log2; |
| 117 | 126 | |
| 118 | 127 | $salt = substr($setting, 4, 8); |
| 119 | - if (strlen($salt) != 8) |
|
| 120 | - return $output; |
|
| 128 | + if (strlen($salt) != 8) { |
|
| 129 | + return $output; |
|
| 130 | + } |
|
| 121 | 131 | |
| 122 | 132 | // We're kind of forced to use MD5 here since it's the only |
| 123 | 133 | // cryptographic primitive available in all versions of PHP |
@@ -208,26 +218,31 @@ discard block |
||
| 208 | 218 | $random = $this->get_random_bytes(16); |
| 209 | 219 | $hash = |
| 210 | 220 | crypt($password, $this->gensalt_blowfish($random)); |
| 211 | - if (strlen($hash) == 60) |
|
| 212 | - return $hash; |
|
| 221 | + if (strlen($hash) == 60) { |
|
| 222 | + return $hash; |
|
| 223 | + } |
|
| 213 | 224 | } |
| 214 | 225 | |
| 215 | 226 | if (CRYPT_EXT_DES == 1 && !$this->portable_hashes) { |
| 216 | - if (strlen($random) < 3) |
|
| 217 | - $random = $this->get_random_bytes(3); |
|
| 227 | + if (strlen($random) < 3) { |
|
| 228 | + $random = $this->get_random_bytes(3); |
|
| 229 | + } |
|
| 218 | 230 | $hash = |
| 219 | 231 | crypt($password, $this->gensalt_extended($random)); |
| 220 | - if (strlen($hash) == 20) |
|
| 221 | - return $hash; |
|
| 232 | + if (strlen($hash) == 20) { |
|
| 233 | + return $hash; |
|
| 234 | + } |
|
| 222 | 235 | } |
| 223 | 236 | |
| 224 | - if (strlen($random) < 6) |
|
| 225 | - $random = $this->get_random_bytes(6); |
|
| 237 | + if (strlen($random) < 6) { |
|
| 238 | + $random = $this->get_random_bytes(6); |
|
| 239 | + } |
|
| 226 | 240 | $hash = |
| 227 | 241 | $this->crypt_private($password, |
| 228 | 242 | $this->gensalt_private($random)); |
| 229 | - if (strlen($hash) == 34) |
|
| 230 | - return $hash; |
|
| 243 | + if (strlen($hash) == 34) { |
|
| 244 | + return $hash; |
|
| 245 | + } |
|
| 231 | 246 | |
| 232 | 247 | // Returning '*' on error is safe here, but would _not_ be safe |
| 233 | 248 | // in a crypt(3)-like function used _both_ for generating new |
@@ -242,8 +257,9 @@ discard block |
||
| 242 | 257 | } |
| 243 | 258 | |
| 244 | 259 | $hash = $this->crypt_private($password, $stored_hash); |
| 245 | - if (substr($hash,0,1) === '*') |
|
| 246 | - $hash = crypt($password, $stored_hash); |
|
| 260 | + if (substr($hash,0,1) === '*') { |
|
| 261 | + $hash = crypt($password, $stored_hash); |
|
| 262 | + } |
|
| 247 | 263 | |
| 248 | 264 | return ($hash===$stored_hash) ? true : false; |
| 249 | 265 | } |
@@ -40,7 +40,7 @@ discard block |
||
| 40 | 40 | |
| 41 | 41 | $this->portable_hashes = $portable_hashes; |
| 42 | 42 | |
| 43 | - $this->random_state = microtime() . uniqid(mt_rand(), TRUE); |
|
| 43 | + $this->random_state = microtime() . uniqid(mt_rand(), true); |
|
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | function get_random_bytes($count) |
@@ -126,9 +126,9 @@ discard block |
||
| 126 | 126 | // consequently in lower iteration counts and hashes that are |
| 127 | 127 | // quicker to crack (by non-PHP code). |
| 128 | 128 | |
| 129 | - $hash = md5($salt . $password, TRUE); |
|
| 129 | + $hash = md5($salt . $password, true); |
|
| 130 | 130 | do { |
| 131 | - $hash = md5($hash . $password, TRUE); |
|
| 131 | + $hash = md5($hash . $password, true); |
|
| 132 | 132 | } while (--$count); |
| 133 | 133 | |
| 134 | 134 | $output = substr($setting, 0, 12); |