@@ -6,13 +6,13 @@ discard block |
||
| 6 | 6 | * |
| 7 | 7 | * @author NAVER ([email protected]) |
| 8 | 8 | */ |
| 9 | -if(!defined('__XE__')) |
|
| 9 | +if (!defined('__XE__')) |
|
| 10 | 10 | { |
| 11 | 11 | exit(); |
| 12 | 12 | } |
| 13 | 13 | |
| 14 | 14 | // define an empty function to avoid errors when iconv function doesn't exist |
| 15 | -if(!function_exists('iconv')) |
|
| 15 | +if (!function_exists('iconv')) |
|
| 16 | 16 | { |
| 17 | 17 | eval(' |
| 18 | 18 | function iconv($in_charset, $out_charset, $str) |
@@ -220,7 +220,7 @@ discard block |
||
| 220 | 220 | { |
| 221 | 221 | $oDB = DB::getInstance(); |
| 222 | 222 | $output = $oDB->executeQuery($query_id, $args, $arg_columns); |
| 223 | - if(!is_array($output->data) && count($output->data) > 0) |
|
| 223 | + if (!is_array($output->data) && count($output->data) > 0) |
|
| 224 | 224 | { |
| 225 | 225 | $output->data = array($output->data); |
| 226 | 226 | } |
@@ -250,7 +250,7 @@ discard block |
||
| 250 | 250 | function setUserSequence($seq) |
| 251 | 251 | { |
| 252 | 252 | $arr_seq = array(); |
| 253 | - if(isset($_SESSION['seq'])) |
|
| 253 | + if (isset($_SESSION['seq'])) |
|
| 254 | 254 | { |
| 255 | 255 | $arr_seq = $_SESSION['seq']; |
| 256 | 256 | } |
@@ -266,11 +266,11 @@ discard block |
||
| 266 | 266 | */ |
| 267 | 267 | function checkUserSequence($seq) |
| 268 | 268 | { |
| 269 | - if(!isset($_SESSION['seq'])) |
|
| 269 | + if (!isset($_SESSION['seq'])) |
|
| 270 | 270 | { |
| 271 | 271 | return false; |
| 272 | 272 | } |
| 273 | - if(!in_array($seq, $_SESSION['seq'])) |
|
| 273 | + if (!in_array($seq, $_SESSION['seq'])) |
|
| 274 | 274 | { |
| 275 | 275 | return false; |
| 276 | 276 | } |
@@ -296,7 +296,7 @@ discard block |
||
| 296 | 296 | $num_args = func_num_args(); |
| 297 | 297 | $args_list = func_get_args(); |
| 298 | 298 | |
| 299 | - if($num_args) |
|
| 299 | + if ($num_args) |
|
| 300 | 300 | $url = Context::getUrl($num_args, $args_list); |
| 301 | 301 | else |
| 302 | 302 | $url = Context::getRequestUri(); |
@@ -315,7 +315,7 @@ discard block |
||
| 315 | 315 | $num_args = func_num_args(); |
| 316 | 316 | $args_list = func_get_args(); |
| 317 | 317 | |
| 318 | - if($num_args) |
|
| 318 | + if ($num_args) |
|
| 319 | 319 | { |
| 320 | 320 | $url = Context::getUrl($num_args, $args_list, NULL, FALSE); |
| 321 | 321 | } |
@@ -338,7 +338,7 @@ discard block |
||
| 338 | 338 | $num_args = func_num_args(); |
| 339 | 339 | $args_list = func_get_args(); |
| 340 | 340 | |
| 341 | - if($num_args) |
|
| 341 | + if ($num_args) |
|
| 342 | 342 | { |
| 343 | 343 | $url = Context::getUrl($num_args, $args_list, NULL, TRUE, TRUE); |
| 344 | 344 | } |
@@ -360,16 +360,16 @@ discard block |
||
| 360 | 360 | $num_args = func_num_args(); |
| 361 | 361 | $args_list = func_get_args(); |
| 362 | 362 | $request_uri = Context::getRequestUri(); |
| 363 | - if(!$num_args) |
|
| 363 | + if (!$num_args) |
|
| 364 | 364 | { |
| 365 | 365 | return $request_uri; |
| 366 | 366 | } |
| 367 | 367 | |
| 368 | 368 | $url = Context::getUrl($num_args, $args_list); |
| 369 | - if(strncasecmp('http', $url, 4) !== 0) |
|
| 369 | + if (strncasecmp('http', $url, 4) !== 0) |
|
| 370 | 370 | { |
| 371 | 371 | preg_match('/^(http|https):\/\/([^\/]+)\//', $request_uri, $match); |
| 372 | - return substr($match[0], 0, -1) . $url; |
|
| 372 | + return substr($match[0], 0, -1).$url; |
|
| 373 | 373 | } |
| 374 | 374 | return $url; |
| 375 | 375 | } |
@@ -384,17 +384,17 @@ discard block |
||
| 384 | 384 | $num_args = func_num_args(); |
| 385 | 385 | $args_list = func_get_args(); |
| 386 | 386 | $request_uri = Context::getRequestUri(); |
| 387 | - if(!$num_args) |
|
| 387 | + if (!$num_args) |
|
| 388 | 388 | { |
| 389 | 389 | return $request_uri; |
| 390 | 390 | } |
| 391 | 391 | |
| 392 | 392 | $url = Context::getUrl($num_args, $args_list, NULL, FALSE); |
| 393 | - if(strncasecmp('http', $url, 4) !== 0) |
|
| 393 | + if (strncasecmp('http', $url, 4) !== 0) |
|
| 394 | 394 | { |
| 395 | 395 | preg_match('/^(http|https):\/\/([^\/]+)\//', $request_uri, $match); |
| 396 | 396 | $url = Context::getUrl($num_args, $args_list, NULL, FALSE); |
| 397 | - return substr($match[0], 0, -1) . $url; |
|
| 397 | + return substr($match[0], 0, -1).$url; |
|
| 398 | 398 | } |
| 399 | 399 | return $url; |
| 400 | 400 | } |
@@ -410,7 +410,7 @@ discard block |
||
| 410 | 410 | $num_args = func_num_args(); |
| 411 | 411 | $args_list = func_get_args(); |
| 412 | 412 | |
| 413 | - if(!$num_args) |
|
| 413 | + if (!$num_args) |
|
| 414 | 414 | { |
| 415 | 415 | return Context::getRequestUri(); |
| 416 | 416 | } |
@@ -432,7 +432,7 @@ discard block |
||
| 432 | 432 | $num_args = func_num_args(); |
| 433 | 433 | $args_list = func_get_args(); |
| 434 | 434 | |
| 435 | - if(!$num_args) |
|
| 435 | + if (!$num_args) |
|
| 436 | 436 | { |
| 437 | 437 | return Context::getRequestUri(); |
| 438 | 438 | } |
@@ -454,7 +454,7 @@ discard block |
||
| 454 | 454 | $args_list = func_get_args(); |
| 455 | 455 | |
| 456 | 456 | $request_uri = Context::getRequestUri(); |
| 457 | - if(!$num_args) |
|
| 457 | + if (!$num_args) |
|
| 458 | 458 | { |
| 459 | 459 | return $request_uri; |
| 460 | 460 | } |
@@ -463,10 +463,10 @@ discard block |
||
| 463 | 463 | $num_args = count($args_list); |
| 464 | 464 | |
| 465 | 465 | $url = Context::getUrl($num_args, $args_list, $domain); |
| 466 | - if(strncasecmp('http', $url, 4) !== 0) |
|
| 466 | + if (strncasecmp('http', $url, 4) !== 0) |
|
| 467 | 467 | { |
| 468 | 468 | preg_match('/^(http|https):\/\/([^\/]+)\//', $request_uri, $match); |
| 469 | - return substr($match[0], 0, -1) . $url; |
|
| 469 | + return substr($match[0], 0, -1).$url; |
|
| 470 | 470 | } |
| 471 | 471 | return $url; |
| 472 | 472 | } |
@@ -479,7 +479,7 @@ discard block |
||
| 479 | 479 | function getCurrentPageUrl() |
| 480 | 480 | { |
| 481 | 481 | $protocol = $_SERVER['HTTPS'] == 'on' ? 'https://' : 'http://'; |
| 482 | - $url = $protocol . $_SERVER['HTTP_HOST'] . preg_replace('/[<>"]/', '', $_SERVER['REQUEST_URI']); |
|
| 482 | + $url = $protocol.$_SERVER['HTTP_HOST'].preg_replace('/[<>"]/', '', $_SERVER['REQUEST_URI']); |
|
| 483 | 483 | return htmlspecialchars($url, ENT_COMPAT, 'UTF-8', FALSE); |
| 484 | 484 | } |
| 485 | 485 | |
@@ -504,12 +504,12 @@ discard block |
||
| 504 | 504 | */ |
| 505 | 505 | function cut_str($string, $cut_size = 0, $tail = '...') |
| 506 | 506 | { |
| 507 | - if($cut_size < 1 || !$string) |
|
| 507 | + if ($cut_size < 1 || !$string) |
|
| 508 | 508 | { |
| 509 | 509 | return $string; |
| 510 | 510 | } |
| 511 | 511 | |
| 512 | - if($GLOBALS['use_mb_strimwidth'] || function_exists('mb_strimwidth')) |
|
| 512 | + if ($GLOBALS['use_mb_strimwidth'] || function_exists('mb_strimwidth')) |
|
| 513 | 513 | { |
| 514 | 514 | $GLOBALS['use_mb_strimwidth'] = TRUE; |
| 515 | 515 | return mb_strimwidth($string, 0, $cut_size + 4, $tail, 'utf-8'); |
@@ -523,16 +523,16 @@ discard block |
||
| 523 | 523 | $char_count = 0; |
| 524 | 524 | |
| 525 | 525 | $idx = 0; |
| 526 | - while($idx < $string_length && $char_count < $cut_size && $char_width <= $max_width) |
|
| 526 | + while ($idx < $string_length && $char_count < $cut_size && $char_width <= $max_width) |
|
| 527 | 527 | { |
| 528 | 528 | $c = ord(substr($string, $idx, 1)); |
| 529 | 529 | $char_count++; |
| 530 | - if($c < 128) |
|
| 530 | + if ($c < 128) |
|
| 531 | 531 | { |
| 532 | 532 | $char_width += (int) $chars[$c - 32]; |
| 533 | 533 | $idx++; |
| 534 | 534 | } |
| 535 | - else if(191 < $c && $c < 224) |
|
| 535 | + else if (191 < $c && $c < 224) |
|
| 536 | 536 | { |
| 537 | 537 | $char_width += $chars[4]; |
| 538 | 538 | $idx += 2; |
@@ -545,7 +545,7 @@ discard block |
||
| 545 | 545 | } |
| 546 | 546 | |
| 547 | 547 | $output = substr($string, 0, $idx); |
| 548 | - if(strlen($output) < $string_length) |
|
| 548 | + if (strlen($output) < $string_length) |
|
| 549 | 549 | { |
| 550 | 550 | $output .= $tail; |
| 551 | 551 | } |
@@ -561,7 +561,7 @@ discard block |
||
| 561 | 561 | function zgap() |
| 562 | 562 | { |
| 563 | 563 | $time_zone = $GLOBALS['_time_zone']; |
| 564 | - if($time_zone < 0) |
|
| 564 | + if ($time_zone < 0) |
|
| 565 | 565 | { |
| 566 | 566 | $to = -1; |
| 567 | 567 | } |
@@ -574,7 +574,7 @@ discard block |
||
| 574 | 574 | $t_min = substr($time_zone, 3, 2) * $to; |
| 575 | 575 | |
| 576 | 576 | $server_time_zone = date("O"); |
| 577 | - if($server_time_zone < 0) |
|
| 577 | + if ($server_time_zone < 0) |
|
| 578 | 578 | { |
| 579 | 579 | $so = -1; |
| 580 | 580 | } |
@@ -601,7 +601,7 @@ discard block |
||
| 601 | 601 | */ |
| 602 | 602 | function ztime($str) |
| 603 | 603 | { |
| 604 | - if(!$str) |
|
| 604 | + if (!$str) |
|
| 605 | 605 | { |
| 606 | 606 | return; |
| 607 | 607 | } |
@@ -612,7 +612,7 @@ discard block |
||
| 612 | 612 | $year = (int) substr($str, 0, 4); |
| 613 | 613 | $month = (int) substr($str, 4, 2); |
| 614 | 614 | $day = (int) substr($str, 6, 2); |
| 615 | - if(strlen($str) <= 8) |
|
| 615 | + if (strlen($str) <= 8) |
|
| 616 | 616 | { |
| 617 | 617 | $gap = 0; |
| 618 | 618 | } |
@@ -636,19 +636,19 @@ discard block |
||
| 636 | 636 | $gap = $_SERVER['REQUEST_TIME'] + zgap() - ztime($date); |
| 637 | 637 | |
| 638 | 638 | $lang_time_gap = Context::getLang('time_gap'); |
| 639 | - if($gap < 60) |
|
| 639 | + if ($gap < 60) |
|
| 640 | 640 | { |
| 641 | 641 | $buff = sprintf($lang_time_gap['min'], (int) ($gap / 60) + 1); |
| 642 | 642 | } |
| 643 | - elseif($gap < 60 * 60) |
|
| 643 | + elseif ($gap < 60 * 60) |
|
| 644 | 644 | { |
| 645 | 645 | $buff = sprintf($lang_time_gap['mins'], (int) ($gap / 60) + 1); |
| 646 | 646 | } |
| 647 | - elseif($gap < 60 * 60 * 2) |
|
| 647 | + elseif ($gap < 60 * 60 * 2) |
|
| 648 | 648 | { |
| 649 | 649 | $buff = sprintf($lang_time_gap['hour'], (int) ($gap / 60 / 60) + 1); |
| 650 | 650 | } |
| 651 | - elseif($gap < 60 * 60 * 24) |
|
| 651 | + elseif ($gap < 60 * 60 * 24) |
|
| 652 | 652 | { |
| 653 | 653 | $buff = sprintf($lang_time_gap['hours'], (int) ($gap / 60 / 60) + 1); |
| 654 | 654 | } |
@@ -685,40 +685,40 @@ discard block |
||
| 685 | 685 | function zdate($str, $format = 'Y-m-d H:i:s', $conversion = TRUE) |
| 686 | 686 | { |
| 687 | 687 | // return null if no target time is specified |
| 688 | - if(!$str) |
|
| 688 | + if (!$str) |
|
| 689 | 689 | { |
| 690 | 690 | return; |
| 691 | 691 | } |
| 692 | 692 | // convert the date format according to the language |
| 693 | - if($conversion == TRUE) |
|
| 693 | + if ($conversion == TRUE) |
|
| 694 | 694 | { |
| 695 | - switch(Context::getLangType()) |
|
| 695 | + switch (Context::getLangType()) |
|
| 696 | 696 | { |
| 697 | 697 | case 'en' : |
| 698 | 698 | case 'es' : |
| 699 | - if($format == 'Y-m-d') |
|
| 699 | + if ($format == 'Y-m-d') |
|
| 700 | 700 | { |
| 701 | 701 | $format = 'M d, Y'; |
| 702 | 702 | } |
| 703 | - elseif($format == 'Y-m-d H:i:s') |
|
| 703 | + elseif ($format == 'Y-m-d H:i:s') |
|
| 704 | 704 | { |
| 705 | 705 | $format = 'M d, Y H:i:s'; |
| 706 | 706 | } |
| 707 | - elseif($format == 'Y-m-d H:i') |
|
| 707 | + elseif ($format == 'Y-m-d H:i') |
|
| 708 | 708 | { |
| 709 | 709 | $format = 'M d, Y H:i'; |
| 710 | 710 | } |
| 711 | 711 | break; |
| 712 | 712 | case 'vi' : |
| 713 | - if($format == 'Y-m-d') |
|
| 713 | + if ($format == 'Y-m-d') |
|
| 714 | 714 | { |
| 715 | 715 | $format = 'd-m-Y'; |
| 716 | 716 | } |
| 717 | - elseif($format == 'Y-m-d H:i:s') |
|
| 717 | + elseif ($format == 'Y-m-d H:i:s') |
|
| 718 | 718 | { |
| 719 | 719 | $format = 'H:i:s d-m-Y'; |
| 720 | 720 | } |
| 721 | - elseif($format == 'Y-m-d H:i') |
|
| 721 | + elseif ($format == 'Y-m-d H:i') |
|
| 722 | 722 | { |
| 723 | 723 | $format = 'H:i d-m-Y'; |
| 724 | 724 | } |
@@ -727,7 +727,7 @@ discard block |
||
| 727 | 727 | } |
| 728 | 728 | |
| 729 | 729 | // If year value is less than 1970, handle it separately. |
| 730 | - if((int) substr($str, 0, 4) < 1970) |
|
| 730 | + if ((int) substr($str, 0, 4) < 1970) |
|
| 731 | 731 | { |
| 732 | 732 | $hour = (int) substr($str, 8, 2); |
| 733 | 733 | $min = (int) substr($str, 10, 2); |
@@ -777,9 +777,9 @@ discard block |
||
| 777 | 777 | function getEncodeEmailAddress($email) |
| 778 | 778 | { |
| 779 | 779 | $return = ''; |
| 780 | - for($i = 0, $c = strlen($email); $i < $c; $i++) |
|
| 780 | + for ($i = 0, $c = strlen($email); $i < $c; $i++) |
|
| 781 | 781 | { |
| 782 | - $return .= '&#' . (rand(0, 1) == 0 ? ord($email[$i]) : 'X' . dechex(ord($email[$i]))) . ';'; |
|
| 782 | + $return .= '&#'.(rand(0, 1) == 0 ? ord($email[$i]) : 'X'.dechex(ord($email[$i]))).';'; |
|
| 783 | 783 | } |
| 784 | 784 | return $return; |
| 785 | 785 | } |
@@ -799,25 +799,25 @@ discard block |
||
| 799 | 799 | { |
| 800 | 800 | static $debug_file; |
| 801 | 801 | |
| 802 | - if(!(__DEBUG__ & 1)) |
|
| 802 | + if (!(__DEBUG__ & 1)) |
|
| 803 | 803 | { |
| 804 | 804 | return; |
| 805 | 805 | } |
| 806 | 806 | |
| 807 | 807 | static $firephp; |
| 808 | 808 | $bt = debug_backtrace(); |
| 809 | - if(is_array($bt)) |
|
| 809 | + if (is_array($bt)) |
|
| 810 | 810 | { |
| 811 | 811 | $bt_debug_print = array_shift($bt); |
| 812 | 812 | $bt_called_function = array_shift($bt); |
| 813 | 813 | } |
| 814 | 814 | $file_name = str_replace(_XE_PATH_, '', $bt_debug_print['file']); |
| 815 | 815 | $line_num = $bt_debug_print['line']; |
| 816 | - $function = $bt_called_function['class'] . $bt_called_function['type'] . $bt_called_function['function']; |
|
| 816 | + $function = $bt_called_function['class'].$bt_called_function['type'].$bt_called_function['function']; |
|
| 817 | 817 | |
| 818 | - if(__DEBUG_OUTPUT__ == 2 && version_compare(PHP_VERSION, '6.0.0') === -1) |
|
| 818 | + if (__DEBUG_OUTPUT__ == 2 && version_compare(PHP_VERSION, '6.0.0') === -1) |
|
| 819 | 819 | { |
| 820 | - if(!isset($firephp)) |
|
| 820 | + if (!isset($firephp)) |
|
| 821 | 821 | { |
| 822 | 822 | $firephp = FirePHP::getInstance(TRUE); |
| 823 | 823 | } |
@@ -826,16 +826,16 @@ discard block |
||
| 826 | 826 | $label = sprintf('[%s:%d] %s() (Memory usage: current=%s, peak=%s)', $file_name, $line_num, $function, FileHandler::filesize(memory_get_usage()), FileHandler::filesize(memory_get_peak_usage())); |
| 827 | 827 | |
| 828 | 828 | // Check a FirePHP option |
| 829 | - if($display_option === 'TABLE') |
|
| 829 | + if ($display_option === 'TABLE') |
|
| 830 | 830 | { |
| 831 | 831 | $label = $display_option; |
| 832 | 832 | } |
| 833 | - if($display_option === 'ERROR') |
|
| 833 | + if ($display_option === 'ERROR') |
|
| 834 | 834 | { |
| 835 | 835 | $type = $display_option; |
| 836 | 836 | } |
| 837 | 837 | // Check if the IP specified by __DEBUG_PROTECT__ option is same as the access IP. |
| 838 | - if(__DEBUG_PROTECT__ === 1 && __DEBUG_PROTECT_IP__ != $_SERVER['REMOTE_ADDR']) |
|
| 838 | + if (__DEBUG_PROTECT__ === 1 && __DEBUG_PROTECT_IP__ != $_SERVER['REMOTE_ADDR']) |
|
| 839 | 839 | { |
| 840 | 840 | $debug_output = 'The IP address is not allowed. Change the value of __DEBUG_PROTECT_IP__ into your IP address in config/config.user.inc.php or config/config.inc.php'; |
| 841 | 841 | $label = NULL; |
@@ -845,52 +845,52 @@ discard block |
||
| 845 | 845 | } |
| 846 | 846 | else |
| 847 | 847 | { |
| 848 | - if(__DEBUG_PROTECT__ === 1 && __DEBUG_PROTECT_IP__ != $_SERVER['REMOTE_ADDR']) |
|
| 848 | + if (__DEBUG_PROTECT__ === 1 && __DEBUG_PROTECT_IP__ != $_SERVER['REMOTE_ADDR']) |
|
| 849 | 849 | { |
| 850 | 850 | return; |
| 851 | 851 | } |
| 852 | 852 | |
| 853 | 853 | $print = array(); |
| 854 | - if(!$debug_file) |
|
| 854 | + if (!$debug_file) |
|
| 855 | 855 | { |
| 856 | - $debug_file = _XE_PATH_ . 'files/' . $file; |
|
| 856 | + $debug_file = _XE_PATH_.'files/'.$file; |
|
| 857 | 857 | } |
| 858 | - if(!file_exists($debug_file)) $print[] = '<?php exit() ?>'; |
|
| 858 | + if (!file_exists($debug_file)) $print[] = '<?php exit() ?>'; |
|
| 859 | 859 | |
| 860 | - if($display_option === TRUE || $display_option === 'ERROR') |
|
| 860 | + if ($display_option === TRUE || $display_option === 'ERROR') |
|
| 861 | 861 | { |
| 862 | - $print[] = sprintf("[%s %s:%d] %s() - mem(%s)", date('Y-m-d H:i:s'), $file_name, $line_num, $function, FileHandler::filesize(memory_get_usage()));; |
|
| 862 | + $print[] = sprintf("[%s %s:%d] %s() - mem(%s)", date('Y-m-d H:i:s'), $file_name, $line_num, $function, FileHandler::filesize(memory_get_usage())); ; |
|
| 863 | 863 | $print[] = str_repeat('=', 80); |
| 864 | 864 | } |
| 865 | 865 | $type = gettype($debug_output); |
| 866 | - if(!in_array($type, array('array', 'object', 'resource'))) |
|
| 866 | + if (!in_array($type, array('array', 'object', 'resource'))) |
|
| 867 | 867 | { |
| 868 | - if($display_option === 'ERROR') |
|
| 868 | + if ($display_option === 'ERROR') |
|
| 869 | 869 | { |
| 870 | - $print[] = 'ERROR : ' . var_export($debug_output, TRUE); |
|
| 870 | + $print[] = 'ERROR : '.var_export($debug_output, TRUE); |
|
| 871 | 871 | } |
| 872 | 872 | else |
| 873 | 873 | { |
| 874 | - $print[] = 'DEBUG : ' . $type . '(' . var_export($debug_output, TRUE) . ')'; |
|
| 874 | + $print[] = 'DEBUG : '.$type.'('.var_export($debug_output, TRUE).')'; |
|
| 875 | 875 | } |
| 876 | 876 | } |
| 877 | 877 | else |
| 878 | 878 | { |
| 879 | - $print[] = 'DEBUG : ' . trim(preg_replace('/\r?\n/', "\n" . ' ', print_r($debug_output, true))); |
|
| 879 | + $print[] = 'DEBUG : '.trim(preg_replace('/\r?\n/', "\n".' ', print_r($debug_output, true))); |
|
| 880 | 880 | } |
| 881 | 881 | $backtrace_args = defined('\DEBUG_BACKTRACE_IGNORE_ARGS') ? \DEBUG_BACKTRACE_IGNORE_ARGS : 0; |
| 882 | 882 | $backtrace = debug_backtrace($backtrace_args); |
| 883 | 883 | |
| 884 | - if(count($backtrace) > 1 && $backtrace[1]['function'] === 'debugPrint' && !$backtrace[1]['class']) |
|
| 884 | + if (count($backtrace) > 1 && $backtrace[1]['function'] === 'debugPrint' && !$backtrace[1]['class']) |
|
| 885 | 885 | { |
| 886 | 886 | array_shift($backtrace); |
| 887 | 887 | } |
| 888 | - foreach($backtrace as $val) |
|
| 888 | + foreach ($backtrace as $val) |
|
| 889 | 889 | { |
| 890 | - $print[] = ' - ' . $val['file'] . ' : ' . $val['line']; |
|
| 890 | + $print[] = ' - '.$val['file'].' : '.$val['line']; |
|
| 891 | 891 | } |
| 892 | 892 | $print[] = PHP_EOL; |
| 893 | - @file_put_contents($debug_file, implode(PHP_EOL, $print), FILE_APPEND|LOCK_EX); |
|
| 893 | + @file_put_contents($debug_file, implode(PHP_EOL, $print), FILE_APPEND | LOCK_EX); |
|
| 894 | 894 | } |
| 895 | 895 | } |
| 896 | 896 | |
@@ -901,7 +901,7 @@ discard block |
||
| 901 | 901 | */ |
| 902 | 902 | function writeSlowlog($type, $elapsed_time, $obj) |
| 903 | 903 | { |
| 904 | - if(!__LOG_SLOW_TRIGGER__ && !__LOG_SLOW_ADDON__ && !__LOG_SLOW_WIDGET__ && !__LOG_SLOW_QUERY__) return; |
|
| 904 | + if (!__LOG_SLOW_TRIGGER__ && !__LOG_SLOW_ADDON__ && !__LOG_SLOW_WIDGET__ && !__LOG_SLOW_QUERY__) return; |
|
| 905 | 905 | |
| 906 | 906 | static $log_filename = array( |
| 907 | 907 | 'query' => 'files/_slowlog_query.php', |
@@ -911,47 +911,47 @@ discard block |
||
| 911 | 911 | ); |
| 912 | 912 | $write_file = true; |
| 913 | 913 | |
| 914 | - $log_file = _XE_PATH_ . $log_filename[$type]; |
|
| 914 | + $log_file = _XE_PATH_.$log_filename[$type]; |
|
| 915 | 915 | |
| 916 | 916 | $buff = array(); |
| 917 | 917 | $buff[] = '<?php exit(); ?>'; |
| 918 | 918 | $buff[] = date('c'); |
| 919 | 919 | |
| 920 | - if($type == 'trigger' && __LOG_SLOW_TRIGGER__ > 0 && $elapsed_time > __LOG_SLOW_TRIGGER__) |
|
| 920 | + if ($type == 'trigger' && __LOG_SLOW_TRIGGER__ > 0 && $elapsed_time > __LOG_SLOW_TRIGGER__) |
|
| 921 | 921 | { |
| 922 | - $buff[] = "\tCaller : " . $obj->caller; |
|
| 923 | - $buff[] = "\tCalled : " . $obj->called; |
|
| 922 | + $buff[] = "\tCaller : ".$obj->caller; |
|
| 923 | + $buff[] = "\tCalled : ".$obj->called; |
|
| 924 | 924 | } |
| 925 | - else if($type == 'addon' && __LOG_SLOW_ADDON__ > 0 && $elapsed_time > __LOG_SLOW_ADDON__) |
|
| 925 | + else if ($type == 'addon' && __LOG_SLOW_ADDON__ > 0 && $elapsed_time > __LOG_SLOW_ADDON__) |
|
| 926 | 926 | { |
| 927 | - $buff[] = "\tAddon : " . $obj->called; |
|
| 928 | - $buff[] = "\tCalled position : " . $obj->caller; |
|
| 927 | + $buff[] = "\tAddon : ".$obj->called; |
|
| 928 | + $buff[] = "\tCalled position : ".$obj->caller; |
|
| 929 | 929 | } |
| 930 | - else if($type == 'widget' && __LOG_SLOW_WIDGET__ > 0 && $elapsed_time > __LOG_SLOW_WIDGET__) |
|
| 930 | + else if ($type == 'widget' && __LOG_SLOW_WIDGET__ > 0 && $elapsed_time > __LOG_SLOW_WIDGET__) |
|
| 931 | 931 | { |
| 932 | - $buff[] = "\tWidget : " . $obj->called; |
|
| 932 | + $buff[] = "\tWidget : ".$obj->called; |
|
| 933 | 933 | } |
| 934 | - else if($type == 'query' && __LOG_SLOW_QUERY__ > 0 && $elapsed_time > __LOG_SLOW_QUERY__) |
|
| 934 | + else if ($type == 'query' && __LOG_SLOW_QUERY__ > 0 && $elapsed_time > __LOG_SLOW_QUERY__) |
|
| 935 | 935 | { |
| 936 | 936 | |
| 937 | 937 | $buff[] = $obj->query; |
| 938 | - $buff[] = "\tQuery ID : " . $obj->query_id; |
|
| 939 | - $buff[] = "\tCaller : " . $obj->caller; |
|
| 940 | - $buff[] = "\tConnection : " . $obj->connection; |
|
| 938 | + $buff[] = "\tQuery ID : ".$obj->query_id; |
|
| 939 | + $buff[] = "\tCaller : ".$obj->caller; |
|
| 940 | + $buff[] = "\tConnection : ".$obj->connection; |
|
| 941 | 941 | } |
| 942 | 942 | else |
| 943 | 943 | { |
| 944 | 944 | $write_file = false; |
| 945 | 945 | } |
| 946 | 946 | |
| 947 | - if($write_file) |
|
| 947 | + if ($write_file) |
|
| 948 | 948 | { |
| 949 | 949 | $buff[] = sprintf("\t%0.6f sec", $elapsed_time); |
| 950 | - $buff[] = PHP_EOL . PHP_EOL; |
|
| 950 | + $buff[] = PHP_EOL.PHP_EOL; |
|
| 951 | 951 | file_put_contents($log_file, implode(PHP_EOL, $buff), FILE_APPEND); |
| 952 | 952 | } |
| 953 | 953 | |
| 954 | - if($type != 'query') |
|
| 954 | + if ($type != 'query') |
|
| 955 | 955 | { |
| 956 | 956 | $trigger_args = $obj; |
| 957 | 957 | $trigger_args->_log_type = $type; |
@@ -991,11 +991,11 @@ discard block |
||
| 991 | 991 | */ |
| 992 | 992 | function delObjectVars($target_obj, $del_obj) |
| 993 | 993 | { |
| 994 | - if(!is_object($target_obj)) |
|
| 994 | + if (!is_object($target_obj)) |
|
| 995 | 995 | { |
| 996 | 996 | return; |
| 997 | 997 | } |
| 998 | - if(!is_object($del_obj)) |
|
| 998 | + if (!is_object($del_obj)) |
|
| 999 | 999 | { |
| 1000 | 1000 | return; |
| 1001 | 1001 | } |
@@ -1005,7 +1005,7 @@ discard block |
||
| 1005 | 1005 | |
| 1006 | 1006 | $target = array_keys($target_vars); |
| 1007 | 1007 | $del = array_keys($del_vars); |
| 1008 | - if(!count($target) || !count($del)) |
|
| 1008 | + if (!count($target) || !count($del)) |
|
| 1009 | 1009 | { |
| 1010 | 1010 | return $target_obj; |
| 1011 | 1011 | } |
@@ -1013,10 +1013,10 @@ discard block |
||
| 1013 | 1013 | $return_obj = new stdClass(); |
| 1014 | 1014 | |
| 1015 | 1015 | $target_count = count($target); |
| 1016 | - for($i = 0; $i < $target_count; $i++) |
|
| 1016 | + for ($i = 0; $i < $target_count; $i++) |
|
| 1017 | 1017 | { |
| 1018 | 1018 | $target_key = $target[$i]; |
| 1019 | - if(!in_array($target_key, $del)) |
|
| 1019 | + if (!in_array($target_key, $del)) |
|
| 1020 | 1020 | { |
| 1021 | 1021 | $return_obj->{$target_key} = $target_obj->{$target_key}; |
| 1022 | 1022 | } |
@@ -1029,10 +1029,10 @@ discard block |
||
| 1029 | 1029 | { |
| 1030 | 1030 | $del_vars = array('error_return_url', 'success_return_url', 'ruleset', 'xe_validator_id'); |
| 1031 | 1031 | |
| 1032 | - foreach($del_vars as $var) |
|
| 1032 | + foreach ($del_vars as $var) |
|
| 1033 | 1033 | { |
| 1034 | - if(is_array($vars)) unset($vars[$var]); |
|
| 1035 | - else if(is_object($vars)) unset($vars->$var); |
|
| 1034 | + if (is_array($vars)) unset($vars[$var]); |
|
| 1035 | + else if (is_object($vars)) unset($vars->$var); |
|
| 1036 | 1036 | } |
| 1037 | 1037 | |
| 1038 | 1038 | return $vars; |
@@ -1049,12 +1049,12 @@ discard block |
||
| 1049 | 1049 | */ |
| 1050 | 1050 | function handleError($errno, $errstr, $file, $line) |
| 1051 | 1051 | { |
| 1052 | - if(!__DEBUG__) |
|
| 1052 | + if (!__DEBUG__) |
|
| 1053 | 1053 | { |
| 1054 | 1054 | return; |
| 1055 | 1055 | } |
| 1056 | 1056 | $errors = array(E_USER_ERROR, E_ERROR, E_PARSE); |
| 1057 | - if(!in_array($errno, $errors)) |
|
| 1057 | + if (!in_array($errno, $errors)) |
|
| 1058 | 1058 | { |
| 1059 | 1059 | return; |
| 1060 | 1060 | } |
@@ -1074,8 +1074,8 @@ discard block |
||
| 1074 | 1074 | function getNumberingPath($no, $size = 3) |
| 1075 | 1075 | { |
| 1076 | 1076 | $mod = pow(10, $size); |
| 1077 | - $output = sprintf('%0' . $size . 'd/', $no % $mod); |
|
| 1078 | - if($no >= $mod) |
|
| 1077 | + $output = sprintf('%0'.$size.'d/', $no % $mod); |
|
| 1078 | + if ($no >= $mod) |
|
| 1079 | 1079 | { |
| 1080 | 1080 | $output .= getNumberingPath((int) $no / $mod, $size); |
| 1081 | 1081 | } |
@@ -1095,7 +1095,7 @@ discard block |
||
| 1095 | 1095 | |
| 1096 | 1096 | function purifierHtml(&$content) |
| 1097 | 1097 | { |
| 1098 | - require_once(_XE_PATH_ . 'classes/security/Purifier.class.php'); |
|
| 1098 | + require_once(_XE_PATH_.'classes/security/Purifier.class.php'); |
|
| 1099 | 1099 | $oPurifier = Purifier::getInstance(); |
| 1100 | 1100 | $oPurifier->purify($content); |
| 1101 | 1101 | } |
@@ -1108,7 +1108,7 @@ discard block |
||
| 1108 | 1108 | */ |
| 1109 | 1109 | function removeHackTag($content) |
| 1110 | 1110 | { |
| 1111 | - require_once(_XE_PATH_ . 'classes/security/EmbedFilter.class.php'); |
|
| 1111 | + require_once(_XE_PATH_.'classes/security/EmbedFilter.class.php'); |
|
| 1112 | 1112 | $oEmbedFilter = EmbedFilter::getInstance(); |
| 1113 | 1113 | $oEmbedFilter->check($content); |
| 1114 | 1114 | |
@@ -1150,7 +1150,7 @@ discard block |
||
| 1150 | 1150 | */ |
| 1151 | 1151 | function checkUploadedFile($file) |
| 1152 | 1152 | { |
| 1153 | - require_once(_XE_PATH_ . 'classes/security/UploadFileFilter.class.php'); |
|
| 1153 | + require_once(_XE_PATH_.'classes/security/UploadFileFilter.class.php'); |
|
| 1154 | 1154 | return UploadFileFilter::check($file); |
| 1155 | 1155 | } |
| 1156 | 1156 | |
@@ -1164,13 +1164,13 @@ discard block |
||
| 1164 | 1164 | { |
| 1165 | 1165 | $content = preg_replace('@<(/?)xmp.*?>@i', '<\1xmp>', $content); |
| 1166 | 1166 | |
| 1167 | - if(($start_xmp = strrpos($content, '<xmp>')) !== FALSE) |
|
| 1167 | + if (($start_xmp = strrpos($content, '<xmp>')) !== FALSE) |
|
| 1168 | 1168 | { |
| 1169 | - if(($close_xmp = strrpos($content, '</xmp>')) === FALSE) |
|
| 1169 | + if (($close_xmp = strrpos($content, '</xmp>')) === FALSE) |
|
| 1170 | 1170 | { |
| 1171 | 1171 | $content .= '</xmp>'; |
| 1172 | 1172 | } |
| 1173 | - else if($close_xmp < $start_xmp) |
|
| 1173 | + else if ($close_xmp < $start_xmp) |
|
| 1174 | 1174 | { |
| 1175 | 1175 | $content .= '</xmp>'; |
| 1176 | 1176 | } |
@@ -1190,33 +1190,33 @@ discard block |
||
| 1190 | 1190 | $tag = strtolower($match[2]); |
| 1191 | 1191 | |
| 1192 | 1192 | // xmp tag ?뺣━ |
| 1193 | - if($tag == 'xmp') |
|
| 1193 | + if ($tag == 'xmp') |
|
| 1194 | 1194 | { |
| 1195 | 1195 | return "<{$match[1]}xmp>"; |
| 1196 | 1196 | } |
| 1197 | - if($match[1]) |
|
| 1197 | + if ($match[1]) |
|
| 1198 | 1198 | { |
| 1199 | 1199 | return $match[0]; |
| 1200 | 1200 | } |
| 1201 | - if($match[4]) |
|
| 1201 | + if ($match[4]) |
|
| 1202 | 1202 | { |
| 1203 | - $match[4] = ' ' . $match[4]; |
|
| 1203 | + $match[4] = ' '.$match[4]; |
|
| 1204 | 1204 | } |
| 1205 | 1205 | |
| 1206 | 1206 | $attrs = array(); |
| 1207 | - if(preg_match_all('/([\w:-]+)\s*=(?:\s*(["\']))?(?(2)(.*?)\2|([^ ]+))/s', $match[3], $m)) |
|
| 1207 | + if (preg_match_all('/([\w:-]+)\s*=(?:\s*(["\']))?(?(2)(.*?)\2|([^ ]+))/s', $match[3], $m)) |
|
| 1208 | 1208 | { |
| 1209 | - foreach($m[1] as $idx => $name) |
|
| 1209 | + foreach ($m[1] as $idx => $name) |
|
| 1210 | 1210 | { |
| 1211 | - if(strlen($name) >= 2 && substr_compare($name, 'on', 0, 2) === 0) |
|
| 1211 | + if (strlen($name) >= 2 && substr_compare($name, 'on', 0, 2) === 0) |
|
| 1212 | 1212 | { |
| 1213 | 1213 | continue; |
| 1214 | 1214 | } |
| 1215 | 1215 | |
| 1216 | - $val = preg_replace_callback('/&#(?:x([a-fA-F0-9]+)|0*(\d+));/', function($n) {return chr($n[1] ? ('0x00' . $n[1]) : ($n[2] + 0)); }, $m[3][$idx] . $m[4][$idx]); |
|
| 1216 | + $val = preg_replace_callback('/&#(?:x([a-fA-F0-9]+)|0*(\d+));/', function($n) {return chr($n[1] ? ('0x00'.$n[1]) : ($n[2] + 0)); }, $m[3][$idx].$m[4][$idx]); |
|
| 1217 | 1217 | $val = preg_replace('/^\s+|[\t\n\r]+/', '', $val); |
| 1218 | 1218 | |
| 1219 | - if(preg_match('/^[a-z]+script:/i', $val)) |
|
| 1219 | + if (preg_match('/^[a-z]+script:/i', $val)) |
|
| 1220 | 1220 | { |
| 1221 | 1221 | continue; |
| 1222 | 1222 | } |
@@ -1227,60 +1227,60 @@ discard block |
||
| 1227 | 1227 | |
| 1228 | 1228 | $filter_arrts = array('style', 'src', 'href'); |
| 1229 | 1229 | |
| 1230 | - if($tag === 'object') array_push($filter_arrts, 'data'); |
|
| 1231 | - if($tag === 'param') array_push($filter_arrts, 'value'); |
|
| 1230 | + if ($tag === 'object') array_push($filter_arrts, 'data'); |
|
| 1231 | + if ($tag === 'param') array_push($filter_arrts, 'value'); |
|
| 1232 | 1232 | |
| 1233 | - foreach($filter_arrts as $attr) |
|
| 1233 | + foreach ($filter_arrts as $attr) |
|
| 1234 | 1234 | { |
| 1235 | - if(!isset($attrs[$attr])) continue; |
|
| 1235 | + if (!isset($attrs[$attr])) continue; |
|
| 1236 | 1236 | |
| 1237 | 1237 | $attr_value = rawurldecode($attrs[$attr]); |
| 1238 | 1238 | $attr_value = htmlspecialchars_decode($attr_value, ENT_COMPAT); |
| 1239 | 1239 | $attr_value = preg_replace('/\s+|[\t\n\r]+/', '', $attr_value); |
| 1240 | - if(preg_match('@(\?|&|;)(act=(\w+))@i', $attr_value, $m) && $m[3] !== 'procFileDownload') |
|
| 1240 | + if (preg_match('@(\?|&|;)(act=(\w+))@i', $attr_value, $m) && $m[3] !== 'procFileDownload') |
|
| 1241 | 1241 | { |
| 1242 | 1242 | unset($attrs[$attr]); |
| 1243 | 1243 | } |
| 1244 | 1244 | } |
| 1245 | 1245 | |
| 1246 | - if(isset($attrs['style']) && preg_match('@(?:/\*|\*/|\n|:\s*expression\s*\()@i', $attrs['style'])) |
|
| 1246 | + if (isset($attrs['style']) && preg_match('@(?:/\*|\*/|\n|:\s*expression\s*\()@i', $attrs['style'])) |
|
| 1247 | 1247 | { |
| 1248 | 1248 | unset($attrs['style']); |
| 1249 | 1249 | } |
| 1250 | 1250 | |
| 1251 | 1251 | $attr = array(); |
| 1252 | - foreach($attrs as $name => $val) |
|
| 1252 | + foreach ($attrs as $name => $val) |
|
| 1253 | 1253 | { |
| 1254 | - if($tag == 'object' || $tag == 'embed' || $tag == 'a') |
|
| 1254 | + if ($tag == 'object' || $tag == 'embed' || $tag == 'a') |
|
| 1255 | 1255 | { |
| 1256 | 1256 | $attribute = strtolower(trim($name)); |
| 1257 | - if($attribute == 'data' || $attribute == 'src' || $attribute == 'href') |
|
| 1257 | + if ($attribute == 'data' || $attribute == 'src' || $attribute == 'href') |
|
| 1258 | 1258 | { |
| 1259 | - if(stripos($val, 'data:') === 0) |
|
| 1259 | + if (stripos($val, 'data:') === 0) |
|
| 1260 | 1260 | { |
| 1261 | 1261 | continue; |
| 1262 | 1262 | } |
| 1263 | 1263 | } |
| 1264 | 1264 | } |
| 1265 | 1265 | |
| 1266 | - if($tag == 'img') |
|
| 1266 | + if ($tag == 'img') |
|
| 1267 | 1267 | { |
| 1268 | 1268 | $attribute = strtolower(trim($name)); |
| 1269 | - if(stripos($val, 'data:') === 0) |
|
| 1269 | + if (stripos($val, 'data:') === 0) |
|
| 1270 | 1270 | { |
| 1271 | 1271 | continue; |
| 1272 | 1272 | } |
| 1273 | 1273 | } |
| 1274 | 1274 | $val = str_replace('"', '"', $val); |
| 1275 | - $attr[] = $name . "=\"{$val}\""; |
|
| 1275 | + $attr[] = $name."=\"{$val}\""; |
|
| 1276 | 1276 | } |
| 1277 | - $attr = count($attr) ? ' ' . implode(' ', $attr) : ''; |
|
| 1277 | + $attr = count($attr) ? ' '.implode(' ', $attr) : ''; |
|
| 1278 | 1278 | |
| 1279 | 1279 | return "<{$match[1]}{$tag}{$attr}{$match[4]}>"; |
| 1280 | 1280 | } |
| 1281 | 1281 | |
| 1282 | 1282 | // convert hexa value to RGB |
| 1283 | -if(!function_exists('hexrgb')) |
|
| 1283 | +if (!function_exists('hexrgb')) |
|
| 1284 | 1284 | { |
| 1285 | 1285 | |
| 1286 | 1286 | /** |
@@ -1316,9 +1316,9 @@ discard block |
||
| 1316 | 1316 | |
| 1317 | 1317 | settype($password, "string"); |
| 1318 | 1318 | |
| 1319 | - for($i = 0; $i < strlen($password); $i++) |
|
| 1319 | + for ($i = 0; $i < strlen($password); $i++) |
|
| 1320 | 1320 | { |
| 1321 | - if($password[$i] == ' ' || $password[$i] == '\t') |
|
| 1321 | + if ($password[$i] == ' ' || $password[$i] == '\t') |
|
| 1322 | 1322 | { |
| 1323 | 1323 | continue; |
| 1324 | 1324 | } |
@@ -1330,11 +1330,11 @@ discard block |
||
| 1330 | 1330 | $result1 = sprintf("%08lx", $nr & ((1 << 31) - 1)); |
| 1331 | 1331 | $result2 = sprintf("%08lx", $nr2 & ((1 << 31) - 1)); |
| 1332 | 1332 | |
| 1333 | - if($result1 == '80000000') |
|
| 1333 | + if ($result1 == '80000000') |
|
| 1334 | 1334 | { |
| 1335 | 1335 | $nr += 0x80000000; |
| 1336 | 1336 | } |
| 1337 | - if($result2 == '80000000') |
|
| 1337 | + if ($result2 == '80000000') |
|
| 1338 | 1338 | { |
| 1339 | 1339 | $nr2 += 0x80000000; |
| 1340 | 1340 | } |
@@ -1350,7 +1350,7 @@ discard block |
||
| 1350 | 1350 | function getScriptPath() |
| 1351 | 1351 | { |
| 1352 | 1352 | static $url = NULL; |
| 1353 | - if($url == NULL) |
|
| 1353 | + if ($url == NULL) |
|
| 1354 | 1354 | { |
| 1355 | 1355 | $script_path = filter_var($_SERVER['SCRIPT_NAME'], FILTER_SANITIZE_STRING); |
| 1356 | 1356 | $url = str_ireplace('/tools/', '/', preg_replace('/index.php.*/i', '', str_replace('\\', '/', $script_path))); |
@@ -1381,14 +1381,14 @@ discard block |
||
| 1381 | 1381 | $decodedStr = ''; |
| 1382 | 1382 | $pos = 0; |
| 1383 | 1383 | $len = strlen($source); |
| 1384 | - while($pos < $len) |
|
| 1384 | + while ($pos < $len) |
|
| 1385 | 1385 | { |
| 1386 | 1386 | $charAt = substr($source, $pos, 1); |
| 1387 | - if($charAt == '%') |
|
| 1387 | + if ($charAt == '%') |
|
| 1388 | 1388 | { |
| 1389 | 1389 | $pos++; |
| 1390 | 1390 | $charAt = substr($source, $pos, 1); |
| 1391 | - if($charAt == 'u') |
|
| 1391 | + if ($charAt == 'u') |
|
| 1392 | 1392 | { |
| 1393 | 1393 | // we got a unicode character |
| 1394 | 1394 | $pos++; |
@@ -1422,21 +1422,21 @@ discard block |
||
| 1422 | 1422 | */ |
| 1423 | 1423 | function _code2utf($num) |
| 1424 | 1424 | { |
| 1425 | - if($num < 128) |
|
| 1425 | + if ($num < 128) |
|
| 1426 | 1426 | { |
| 1427 | 1427 | return chr($num); |
| 1428 | 1428 | } |
| 1429 | - if($num < 2048) |
|
| 1429 | + if ($num < 2048) |
|
| 1430 | 1430 | { |
| 1431 | - return chr(($num >> 6) + 192) . chr(($num & 63) + 128); |
|
| 1431 | + return chr(($num >> 6) + 192).chr(($num & 63) + 128); |
|
| 1432 | 1432 | } |
| 1433 | - if($num < 65536) |
|
| 1433 | + if ($num < 65536) |
|
| 1434 | 1434 | { |
| 1435 | - return chr(($num >> 12) + 224) . chr((($num >> 6) & 63) + 128) . chr(($num & 63) + 128); |
|
| 1435 | + return chr(($num >> 12) + 224).chr((($num >> 6) & 63) + 128).chr(($num & 63) + 128); |
|
| 1436 | 1436 | } |
| 1437 | - if($num < 2097152) |
|
| 1437 | + if ($num < 2097152) |
|
| 1438 | 1438 | { |
| 1439 | - return chr(($num >> 18) + 240) . chr((($num >> 12) & 63) + 128) . chr((($num >> 6) & 63) + 128) . chr(($num & 63) + 128); |
|
| 1439 | + return chr(($num >> 18) + 240).chr((($num >> 12) & 63) + 128).chr((($num >> 6) & 63) + 128).chr(($num & 63) + 128); |
|
| 1440 | 1440 | } |
| 1441 | 1441 | return ''; |
| 1442 | 1442 | } |
@@ -1451,7 +1451,7 @@ discard block |
||
| 1451 | 1451 | */ |
| 1452 | 1452 | function detectUTF8($string, $return_convert = FALSE, $urldecode = TRUE) |
| 1453 | 1453 | { |
| 1454 | - if($urldecode) |
|
| 1454 | + if ($urldecode) |
|
| 1455 | 1455 | { |
| 1456 | 1456 | $string = urldecode($string); |
| 1457 | 1457 | } |
@@ -1459,12 +1459,12 @@ discard block |
||
| 1459 | 1459 | $sample = iconv('utf-8', 'utf-8', $string); |
| 1460 | 1460 | $is_utf8 = (md5($sample) === md5($string)); |
| 1461 | 1461 | |
| 1462 | - if(!$urldecode) |
|
| 1462 | + if (!$urldecode) |
|
| 1463 | 1463 | { |
| 1464 | 1464 | $string = urldecode($string); |
| 1465 | 1465 | } |
| 1466 | 1466 | |
| 1467 | - if($return_convert) |
|
| 1467 | + if ($return_convert) |
|
| 1468 | 1468 | { |
| 1469 | 1469 | return ($is_utf8) ? $string : iconv('euc-kr', 'utf-8', $string); |
| 1470 | 1470 | } |
@@ -1480,7 +1480,7 @@ discard block |
||
| 1480 | 1480 | */ |
| 1481 | 1481 | function json_encode2($data) |
| 1482 | 1482 | { |
| 1483 | - switch(gettype($data)) |
|
| 1483 | + switch (gettype($data)) |
|
| 1484 | 1484 | { |
| 1485 | 1485 | case 'boolean': |
| 1486 | 1486 | return $data ? 'true' : 'false'; |
@@ -1488,15 +1488,15 @@ discard block |
||
| 1488 | 1488 | case 'double': |
| 1489 | 1489 | return $data; |
| 1490 | 1490 | case 'string': |
| 1491 | - return '"' . strtr($data, array('\\' => '\\\\', '"' => '\\"')) . '"'; |
|
| 1491 | + return '"'.strtr($data, array('\\' => '\\\\', '"' => '\\"')).'"'; |
|
| 1492 | 1492 | case 'object': |
| 1493 | 1493 | $data = get_object_vars($data); |
| 1494 | 1494 | case 'array': |
| 1495 | 1495 | $rel = FALSE; // relative array? |
| 1496 | 1496 | $key = array_keys($data); |
| 1497 | - foreach($key as $v) |
|
| 1497 | + foreach ($key as $v) |
|
| 1498 | 1498 | { |
| 1499 | - if(!is_int($v)) |
|
| 1499 | + if (!is_int($v)) |
|
| 1500 | 1500 | { |
| 1501 | 1501 | $rel = TRUE; |
| 1502 | 1502 | break; |
@@ -1504,12 +1504,12 @@ discard block |
||
| 1504 | 1504 | } |
| 1505 | 1505 | |
| 1506 | 1506 | $arr = array(); |
| 1507 | - foreach($data as $k => $v) |
|
| 1507 | + foreach ($data as $k => $v) |
|
| 1508 | 1508 | { |
| 1509 | - $arr[] = ($rel ? '"' . strtr($k, array('\\' => '\\\\', '"' => '\\"')) . '":' : '') . json_encode2($v); |
|
| 1509 | + $arr[] = ($rel ? '"'.strtr($k, array('\\' => '\\\\', '"' => '\\"')).'":' : '').json_encode2($v); |
|
| 1510 | 1510 | } |
| 1511 | 1511 | |
| 1512 | - return $rel ? '{' . join(',', $arr) . '}' : '[' . join(',', $arr) . ']'; |
|
| 1512 | + return $rel ? '{'.join(',', $arr).'}' : '['.join(',', $arr).']'; |
|
| 1513 | 1513 | default: |
| 1514 | 1514 | return '""'; |
| 1515 | 1515 | } |
@@ -1523,7 +1523,7 @@ discard block |
||
| 1523 | 1523 | */ |
| 1524 | 1524 | function isCrawler($agent = NULL) |
| 1525 | 1525 | { |
| 1526 | - if(!$agent) |
|
| 1526 | + if (!$agent) |
|
| 1527 | 1527 | { |
| 1528 | 1528 | $agent = $_SERVER['HTTP_USER_AGENT']; |
| 1529 | 1529 | } |
@@ -1533,9 +1533,9 @@ discard block |
||
| 1533 | 1533 | /*'211.245.21.110-211.245.21.119' mixsh is closed */ |
| 1534 | 1534 | ); |
| 1535 | 1535 | |
| 1536 | - foreach($check_agent as $str) |
|
| 1536 | + foreach ($check_agent as $str) |
|
| 1537 | 1537 | { |
| 1538 | - if(stristr($agent, $str) != FALSE) |
|
| 1538 | + if (stristr($agent, $str) != FALSE) |
|
| 1539 | 1539 | { |
| 1540 | 1540 | return TRUE; |
| 1541 | 1541 | } |
@@ -1553,7 +1553,7 @@ discard block |
||
| 1553 | 1553 | */ |
| 1554 | 1554 | function stripEmbedTagForAdmin(&$content, $writer_member_srl) |
| 1555 | 1555 | { |
| 1556 | - if(!Context::get('is_logged')) |
|
| 1556 | + if (!Context::get('is_logged')) |
|
| 1557 | 1557 | { |
| 1558 | 1558 | return; |
| 1559 | 1559 | } |
@@ -1561,18 +1561,18 @@ discard block |
||
| 1561 | 1561 | $oModuleModel = getModel('module'); |
| 1562 | 1562 | $logged_info = Context::get('logged_info'); |
| 1563 | 1563 | |
| 1564 | - if($writer_member_srl != $logged_info->member_srl && ($logged_info->is_admin == "Y" || $oModuleModel->isSiteAdmin($logged_info))) |
|
| 1564 | + if ($writer_member_srl != $logged_info->member_srl && ($logged_info->is_admin == "Y" || $oModuleModel->isSiteAdmin($logged_info))) |
|
| 1565 | 1565 | { |
| 1566 | - if($writer_member_srl) |
|
| 1566 | + if ($writer_member_srl) |
|
| 1567 | 1567 | { |
| 1568 | 1568 | $oMemberModel = getModel('member'); |
| 1569 | 1569 | $member_info = $oMemberModel->getMemberInfoByMemberSrl($writer_member_srl); |
| 1570 | - if($member_info->is_admin == "Y") |
|
| 1570 | + if ($member_info->is_admin == "Y") |
|
| 1571 | 1571 | { |
| 1572 | 1572 | return; |
| 1573 | 1573 | } |
| 1574 | 1574 | } |
| 1575 | - $security_msg = "<div style='border: 1px solid #DDD; background: #FAFAFA; text-align:center; margin: 1em 0;'><p style='margin: 1em;'>" . Context::getLang('security_warning_embed') . "</p></div>"; |
|
| 1575 | + $security_msg = "<div style='border: 1px solid #DDD; background: #FAFAFA; text-align:center; margin: 1em 0;'><p style='margin: 1em;'>".Context::getLang('security_warning_embed')."</p></div>"; |
|
| 1576 | 1576 | $content = preg_replace('/<object[^>]+>(.*?<\/object>)?/is', $security_msg, $content); |
| 1577 | 1577 | $content = preg_replace('/<embed[^>]+>(\s*<\/embed>)?/is', $security_msg, $content); |
| 1578 | 1578 | $content = preg_replace('/<img[^>]+editor_component="multimedia_link"[^>]*>(\s*<\/img>)?/is', $security_msg, $content); |
@@ -1589,18 +1589,18 @@ discard block |
||
| 1589 | 1589 | function requirePear() |
| 1590 | 1590 | { |
| 1591 | 1591 | static $required = false; |
| 1592 | - if($required) |
|
| 1592 | + if ($required) |
|
| 1593 | 1593 | { |
| 1594 | 1594 | return; |
| 1595 | 1595 | } |
| 1596 | 1596 | |
| 1597 | - if(version_compare(PHP_VERSION, "5.3.0") < 0) |
|
| 1597 | + if (version_compare(PHP_VERSION, "5.3.0") < 0) |
|
| 1598 | 1598 | { |
| 1599 | - set_include_path(_XE_PATH_ . "libs/PEAR" . PATH_SEPARATOR . get_include_path()); |
|
| 1599 | + set_include_path(_XE_PATH_."libs/PEAR".PATH_SEPARATOR.get_include_path()); |
|
| 1600 | 1600 | } |
| 1601 | 1601 | else |
| 1602 | 1602 | { |
| 1603 | - set_include_path(_XE_PATH_ . "libs/PEAR.1.9.5" . PATH_SEPARATOR . get_include_path()); |
|
| 1603 | + set_include_path(_XE_PATH_."libs/PEAR.1.9.5".PATH_SEPARATOR.get_include_path()); |
|
| 1604 | 1604 | } |
| 1605 | 1605 | |
| 1606 | 1606 | $required = true; |
@@ -1608,7 +1608,7 @@ discard block |
||
| 1608 | 1608 | |
| 1609 | 1609 | function checkCSRF() |
| 1610 | 1610 | { |
| 1611 | - if($_SERVER['REQUEST_METHOD'] != 'POST') |
|
| 1611 | + if ($_SERVER['REQUEST_METHOD'] != 'POST') |
|
| 1612 | 1612 | { |
| 1613 | 1613 | return FALSE; |
| 1614 | 1614 | } |
@@ -1616,9 +1616,9 @@ discard block |
||
| 1616 | 1616 | $default_url = Context::getDefaultUrl(); |
| 1617 | 1617 | $referer = $_SERVER["HTTP_REFERER"]; |
| 1618 | 1618 | |
| 1619 | - if(strpos($default_url, 'xn--') !== FALSE && strpos($referer, 'xn--') === FALSE) |
|
| 1619 | + if (strpos($default_url, 'xn--') !== FALSE && strpos($referer, 'xn--') === FALSE) |
|
| 1620 | 1620 | { |
| 1621 | - require_once(_XE_PATH_ . 'libs/idna_convert/idna_convert.class.php'); |
|
| 1621 | + require_once(_XE_PATH_.'libs/idna_convert/idna_convert.class.php'); |
|
| 1622 | 1622 | $IDN = new idna_convert(array('idn_version' => 2008)); |
| 1623 | 1623 | $referer = $IDN->encode($referer); |
| 1624 | 1624 | } |
@@ -1629,9 +1629,9 @@ discard block |
||
| 1629 | 1629 | $oModuleModel = getModel('module'); |
| 1630 | 1630 | $siteModuleInfo = $oModuleModel->getDefaultMid(); |
| 1631 | 1631 | |
| 1632 | - if($siteModuleInfo->site_srl == 0) |
|
| 1632 | + if ($siteModuleInfo->site_srl == 0) |
|
| 1633 | 1633 | { |
| 1634 | - if($default_url['host'] !== $referer['host']) |
|
| 1634 | + if ($default_url['host'] !== $referer['host']) |
|
| 1635 | 1635 | { |
| 1636 | 1636 | return FALSE; |
| 1637 | 1637 | } |
@@ -1639,7 +1639,7 @@ discard block |
||
| 1639 | 1639 | else |
| 1640 | 1640 | { |
| 1641 | 1641 | $virtualSiteInfo = $oModuleModel->getSiteInfo($siteModuleInfo->site_srl); |
| 1642 | - if(strtolower($virtualSiteInfo->domain) != strtolower(Context::get('vid')) && !strstr(strtolower($virtualSiteInfo->domain), strtolower($referer['host']))) |
|
| 1642 | + if (strtolower($virtualSiteInfo->domain) != strtolower(Context::get('vid')) && !strstr(strtolower($virtualSiteInfo->domain), strtolower($referer['host']))) |
|
| 1643 | 1643 | { |
| 1644 | 1644 | return FALSE; |
| 1645 | 1645 | } |
@@ -1655,15 +1655,15 @@ discard block |
||
| 1655 | 1655 | */ |
| 1656 | 1656 | function recurciveExposureCheck(&$menu) |
| 1657 | 1657 | { |
| 1658 | - if(is_array($menu)) |
|
| 1658 | + if (is_array($menu)) |
|
| 1659 | 1659 | { |
| 1660 | - foreach($menu AS $key=>$value) |
|
| 1660 | + foreach ($menu AS $key=>$value) |
|
| 1661 | 1661 | { |
| 1662 | - if(!$value['isShow']) |
|
| 1662 | + if (!$value['isShow']) |
|
| 1663 | 1663 | { |
| 1664 | 1664 | unset($menu[$key]); |
| 1665 | 1665 | } |
| 1666 | - if(is_array($value['list']) && count($value['list']) > 0) |
|
| 1666 | + if (is_array($value['list']) && count($value['list']) > 0) |
|
| 1667 | 1667 | { |
| 1668 | 1668 | recurciveExposureCheck($menu[$key]['list']); |
| 1669 | 1669 | } |
@@ -1673,14 +1673,14 @@ discard block |
||
| 1673 | 1673 | |
| 1674 | 1674 | function changeValueInUrl($key, $requestKey, $dbKey, $urlName = 'success_return_url') |
| 1675 | 1675 | { |
| 1676 | - if($requestKey != $dbKey) |
|
| 1676 | + if ($requestKey != $dbKey) |
|
| 1677 | 1677 | { |
| 1678 | 1678 | $arrayUrl = parse_url(Context::get('success_return_url')); |
| 1679 | - if($arrayUrl['query']) |
|
| 1679 | + if ($arrayUrl['query']) |
|
| 1680 | 1680 | { |
| 1681 | 1681 | parse_str($arrayUrl['query'], $parsedStr); |
| 1682 | 1682 | |
| 1683 | - if(isset($parsedStr[$key])) |
|
| 1683 | + if (isset($parsedStr[$key])) |
|
| 1684 | 1684 | { |
| 1685 | 1685 | $parsedStr[$key] = $requestKey; |
| 1686 | 1686 | $successReturnUrl .= $arrayUrl['path'].'?'.http_build_query($parsedStr); |
@@ -1723,14 +1723,14 @@ discard block |
||
| 1723 | 1723 | */ |
| 1724 | 1724 | function alertScript($msg) |
| 1725 | 1725 | { |
| 1726 | - if(!$msg) |
|
| 1726 | + if (!$msg) |
|
| 1727 | 1727 | { |
| 1728 | 1728 | return; |
| 1729 | 1729 | } |
| 1730 | 1730 | |
| 1731 | 1731 | echo '<script type="text/javascript"> |
| 1732 | 1732 | //<![CDATA[ |
| 1733 | -alert("' . $msg . '"); |
|
| 1733 | +alert("' . $msg.'"); |
|
| 1734 | 1734 | //]]> |
| 1735 | 1735 | </script>'; |
| 1736 | 1736 | } |
@@ -1761,7 +1761,7 @@ discard block |
||
| 1761 | 1761 | |
| 1762 | 1762 | echo '<script type="text/javascript"> |
| 1763 | 1763 | //<![CDATA[ |
| 1764 | -' . $reloadScript . ' |
|
| 1764 | +' . $reloadScript.' |
|
| 1765 | 1765 | //]]> |
| 1766 | 1766 | </script>'; |
| 1767 | 1767 | } |