@@ -18,52 +18,52 @@ discard block |
||
18 | 18 | |
19 | 19 | |
20 | 20 | /** |
21 | - * name of the file to log exceptions to |
|
22 | - * @access private |
|
23 | - * @var string |
|
24 | - */ |
|
21 | + * name of the file to log exceptions to |
|
22 | + * @access private |
|
23 | + * @var string |
|
24 | + */ |
|
25 | 25 | private static $_exception_log_file = 'espresso_error_log.txt'; |
26 | 26 | |
27 | 27 | /** |
28 | - * the exception |
|
29 | - * @access private |
|
30 | - * @var object |
|
31 | - */ |
|
28 | + * the exception |
|
29 | + * @access private |
|
30 | + * @var object |
|
31 | + */ |
|
32 | 32 | private $_exception; |
33 | 33 | |
34 | 34 | /** |
35 | - * stores details for all exception |
|
36 | - * @access private |
|
37 | - * @var array |
|
38 | - */ |
|
35 | + * stores details for all exception |
|
36 | + * @access private |
|
37 | + * @var array |
|
38 | + */ |
|
39 | 39 | private static $_all_exceptions = array(); |
40 | 40 | |
41 | 41 | /** |
42 | - * tracks number of errors |
|
43 | - * @access private |
|
44 | - * @var int |
|
45 | - */ |
|
42 | + * tracks number of errors |
|
43 | + * @access private |
|
44 | + * @var int |
|
45 | + */ |
|
46 | 46 | private static $_error_count = 0; |
47 | 47 | |
48 | 48 | /** |
49 | - * has JS been loaded ? |
|
50 | - * @access private |
|
51 | - * @var boolean |
|
52 | - */ |
|
49 | + * has JS been loaded ? |
|
50 | + * @access private |
|
51 | + * @var boolean |
|
52 | + */ |
|
53 | 53 | private static $_js_loaded = FALSE; |
54 | 54 | |
55 | 55 | /** |
56 | - * has shutdown action been added ? |
|
57 | - * @access private |
|
58 | - * @var boolean |
|
59 | - */ |
|
56 | + * has shutdown action been added ? |
|
57 | + * @access private |
|
58 | + * @var boolean |
|
59 | + */ |
|
60 | 60 | private static $_action_added = FALSE; |
61 | 61 | |
62 | 62 | /** |
63 | - * has shutdown action been added ? |
|
64 | - * @access private |
|
65 | - * @var boolean |
|
66 | - */ |
|
63 | + * has shutdown action been added ? |
|
64 | + * @access private |
|
65 | + * @var boolean |
|
66 | + */ |
|
67 | 67 | private static $_espresso_notices = array( 'success' => FALSE, 'errors' => FALSE, 'attention' => FALSE ); |
68 | 68 | |
69 | 69 | |
@@ -71,10 +71,10 @@ discard block |
||
71 | 71 | |
72 | 72 | |
73 | 73 | /** |
74 | - * @override default exception handling |
|
75 | - * @access public |
|
76 | - * @echo string |
|
77 | - */ |
|
74 | + * @override default exception handling |
|
75 | + * @access public |
|
76 | + * @echo string |
|
77 | + */ |
|
78 | 78 | function __construct( $message, $code = 0, Exception $previous = NULL ) { |
79 | 79 | if ( version_compare( phpversion(), '5.3.0', '<' )) { |
80 | 80 | parent::__construct( $message, $code ); |
@@ -173,10 +173,10 @@ discard block |
||
173 | 173 | |
174 | 174 | |
175 | 175 | /** |
176 | - * fatal_error_handler |
|
177 | - * @access public |
|
178 | - * @return void |
|
179 | - */ |
|
176 | + * fatal_error_handler |
|
177 | + * @access public |
|
178 | + * @return void |
|
179 | + */ |
|
180 | 180 | public static function fatal_error_handler() { |
181 | 181 | $last_error = error_get_last(); |
182 | 182 | if ( $last_error['type'] === E_ERROR ) { |
@@ -221,11 +221,11 @@ discard block |
||
221 | 221 | |
222 | 222 | |
223 | 223 | /** |
224 | - * _add_actions |
|
225 | - * @access public |
|
226 | - * @return void |
|
227 | - */ |
|
228 | - public function get_error() { |
|
224 | + * _add_actions |
|
225 | + * @access public |
|
226 | + * @return void |
|
227 | + */ |
|
228 | + public function get_error() { |
|
229 | 229 | |
230 | 230 | if( apply_filters( 'FHEE__EE_Error__get_error__show_normal_exceptions', FALSE ) ){ |
231 | 231 | throw $this; |
@@ -261,27 +261,27 @@ discard block |
||
261 | 261 | * @param bool $check_stored |
262 | 262 | * @return bool |
263 | 263 | */ |
264 | - public static function has_error( $check_stored = false ){ |
|
265 | - $has_error = self::$_error_count ? true : false; |
|
266 | - if ( $check_stored && ! $has_error ) { |
|
267 | - $notices = (array) get_option( 'ee_notices', array() ); |
|
268 | - foreach ( $notices as $type => $notice ) { |
|
269 | - if ( $type === 'errors' && $notice ) { |
|
270 | - return true; |
|
271 | - } |
|
272 | - } |
|
273 | - } |
|
274 | - return $has_error; |
|
275 | - } |
|
264 | + public static function has_error( $check_stored = false ){ |
|
265 | + $has_error = self::$_error_count ? true : false; |
|
266 | + if ( $check_stored && ! $has_error ) { |
|
267 | + $notices = (array) get_option( 'ee_notices', array() ); |
|
268 | + foreach ( $notices as $type => $notice ) { |
|
269 | + if ( $type === 'errors' && $notice ) { |
|
270 | + return true; |
|
271 | + } |
|
272 | + } |
|
273 | + } |
|
274 | + return $has_error; |
|
275 | + } |
|
276 | 276 | |
277 | 277 | |
278 | 278 | |
279 | 279 | /** |
280 | - * display_errors |
|
281 | - * @access public |
|
282 | - * @echo string |
|
283 | - */ |
|
284 | - public function display_errors(){ |
|
280 | + * display_errors |
|
281 | + * @access public |
|
282 | + * @echo string |
|
283 | + */ |
|
284 | + public function display_errors(){ |
|
285 | 285 | |
286 | 286 | $trace_details = ''; |
287 | 287 | |
@@ -353,7 +353,7 @@ discard block |
||
353 | 353 | // process trace info |
354 | 354 | if ( empty( $ex['trace'] )) { |
355 | 355 | |
356 | - $trace_details .= __( 'Sorry, but no trace information was available for this exception.', 'event_espresso' ); |
|
356 | + $trace_details .= __( 'Sorry, but no trace information was available for this exception.', 'event_espresso' ); |
|
357 | 357 | |
358 | 358 | } else { |
359 | 359 | |
@@ -405,7 +405,7 @@ discard block |
||
405 | 405 | $function_dsply = ! empty( $function ) ? $function : ' '; |
406 | 406 | $args_dsply = ! empty( $args ) ? '( ' . $args . ' )' : ''; |
407 | 407 | |
408 | - $trace_details .= ' |
|
408 | + $trace_details .= ' |
|
409 | 409 | <tr> |
410 | 410 | <td align="right" class="' . $zebra . '">' . $nmbr_dsply . '</td> |
411 | 411 | <td align="right" class="' . $zebra . '">' . $line_dsply . '</td> |
@@ -417,7 +417,7 @@ discard block |
||
417 | 417 | |
418 | 418 | } |
419 | 419 | |
420 | - $trace_details .= ' |
|
420 | + $trace_details .= ' |
|
421 | 421 | </table> |
422 | 422 | </div>'; |
423 | 423 | |
@@ -497,12 +497,12 @@ discard block |
||
497 | 497 | |
498 | 498 | |
499 | 499 | /** |
500 | - * generate string from exception trace args |
|
501 | - * |
|
502 | - * @access private |
|
503 | - * @ param array $arguments |
|
504 | - * @ return string |
|
505 | - */ |
|
500 | + * generate string from exception trace args |
|
501 | + * |
|
502 | + * @access private |
|
503 | + * @ param array $arguments |
|
504 | + * @ return string |
|
505 | + */ |
|
506 | 506 | private function _convert_args_to_string ( $arguments = array(), $array = FALSE ) { |
507 | 507 | |
508 | 508 | $arg_string = ''; |
@@ -546,15 +546,15 @@ discard block |
||
546 | 546 | |
547 | 547 | |
548 | 548 | /** |
549 | - * add error message |
|
550 | - * |
|
551 | - * @access public |
|
552 | - * @param string $msg the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev |
|
553 | - * @param string $file the file that the error occurred in - just use __FILE__ |
|
554 | - * @param string $func the function/method that the error occurred in - just use __FUNCTION__ |
|
555 | - * @param string $line the line number where the error occurred - just use __LINE__ |
|
556 | - * @return void |
|
557 | - */ |
|
549 | + * add error message |
|
550 | + * |
|
551 | + * @access public |
|
552 | + * @param string $msg the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev |
|
553 | + * @param string $file the file that the error occurred in - just use __FILE__ |
|
554 | + * @param string $func the function/method that the error occurred in - just use __FUNCTION__ |
|
555 | + * @param string $line the line number where the error occurred - just use __LINE__ |
|
556 | + * @return void |
|
557 | + */ |
|
558 | 558 | public static function add_error( $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) { |
559 | 559 | self::_add_notice ( 'errors', $msg, $file, $func, $line ); |
560 | 560 | self::$_error_count++; |
@@ -582,15 +582,15 @@ discard block |
||
582 | 582 | |
583 | 583 | |
584 | 584 | /** |
585 | - * add success message |
|
586 | - * |
|
587 | - * @access public |
|
588 | - * @param string $msg the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev |
|
589 | - * @param string $file the file that the error occurred in - just use __FILE__ |
|
590 | - * @param string $func the function/method that the error occurred in - just use __FUNCTION__ |
|
591 | - * @param string $line the line number where the error occurred - just use __LINE__ |
|
592 | - * @return void |
|
593 | - */ |
|
585 | + * add success message |
|
586 | + * |
|
587 | + * @access public |
|
588 | + * @param string $msg the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev |
|
589 | + * @param string $file the file that the error occurred in - just use __FILE__ |
|
590 | + * @param string $func the function/method that the error occurred in - just use __FUNCTION__ |
|
591 | + * @param string $line the line number where the error occurred - just use __LINE__ |
|
592 | + * @return void |
|
593 | + */ |
|
594 | 594 | public static function add_success( $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) { |
595 | 595 | self::_add_notice ( 'success', $msg, $file, $func, $line ); |
596 | 596 | } |
@@ -600,15 +600,15 @@ discard block |
||
600 | 600 | |
601 | 601 | |
602 | 602 | /** |
603 | - * add attention message |
|
604 | - * |
|
605 | - * @access public |
|
606 | - * @param string $msg the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev |
|
607 | - * @param string $file the file that the error occurred in - just use __FILE__ |
|
608 | - * @param string $func the function/method that the error occurred in - just use __FUNCTION__ |
|
609 | - * @param string $line the line number where the error occurred - just use __LINE__ |
|
610 | - * @return void |
|
611 | - */ |
|
603 | + * add attention message |
|
604 | + * |
|
605 | + * @access public |
|
606 | + * @param string $msg the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev |
|
607 | + * @param string $file the file that the error occurred in - just use __FILE__ |
|
608 | + * @param string $func the function/method that the error occurred in - just use __FUNCTION__ |
|
609 | + * @param string $line the line number where the error occurred - just use __LINE__ |
|
610 | + * @return void |
|
611 | + */ |
|
612 | 612 | public static function add_attention( $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) { |
613 | 613 | self::_add_notice ( 'attention', $msg, $file, $func, $line ); |
614 | 614 | } |
@@ -618,16 +618,16 @@ discard block |
||
618 | 618 | |
619 | 619 | |
620 | 620 | /** |
621 | - * add success message |
|
622 | - * |
|
623 | - * @access public |
|
624 | - * @param string $type whether the message is for a success or error notification |
|
625 | - * @param string $msg the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev |
|
626 | - * @param string $file the file that the error occurred in - just use __FILE__ |
|
627 | - * @param string $func the function/method that the error occurred in - just use __FUNCTION__ |
|
628 | - * @param string $line the line number where the error occurred - just use __LINE__ |
|
629 | - * @return void |
|
630 | - */ |
|
621 | + * add success message |
|
622 | + * |
|
623 | + * @access public |
|
624 | + * @param string $type whether the message is for a success or error notification |
|
625 | + * @param string $msg the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev |
|
626 | + * @param string $file the file that the error occurred in - just use __FILE__ |
|
627 | + * @param string $func the function/method that the error occurred in - just use __FUNCTION__ |
|
628 | + * @param string $line the line number where the error occurred - just use __LINE__ |
|
629 | + * @return void |
|
630 | + */ |
|
631 | 631 | private static function _add_notice( $type = 'success', $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) { |
632 | 632 | if ( empty( $msg )) { |
633 | 633 | EE_Error::doing_it_wrong( |
@@ -686,11 +686,11 @@ discard block |
||
686 | 686 | |
687 | 687 | |
688 | 688 | /** |
689 | - * in some case it may be necessary to overwrite the existing success messages |
|
690 | - * |
|
691 | - * @access public |
|
692 | - * @return void |
|
693 | - */ |
|
689 | + * in some case it may be necessary to overwrite the existing success messages |
|
690 | + * |
|
691 | + * @access public |
|
692 | + * @return void |
|
693 | + */ |
|
694 | 694 | public static function overwrite_success() { |
695 | 695 | self::$_espresso_notices['success'] = FALSE; |
696 | 696 | } |
@@ -700,11 +700,11 @@ discard block |
||
700 | 700 | |
701 | 701 | |
702 | 702 | /** |
703 | - * in some case it may be necessary to overwrite the existing attention messages |
|
704 | - * |
|
705 | - * @access public |
|
706 | - * @return void |
|
707 | - */ |
|
703 | + * in some case it may be necessary to overwrite the existing attention messages |
|
704 | + * |
|
705 | + * @access public |
|
706 | + * @return void |
|
707 | + */ |
|
708 | 708 | public static function overwrite_attention() { |
709 | 709 | self::$_espresso_notices['attention'] = FALSE; |
710 | 710 | } |
@@ -714,11 +714,11 @@ discard block |
||
714 | 714 | |
715 | 715 | |
716 | 716 | /** |
717 | - * in some case it may be necessary to overwrite the existing error messages |
|
718 | - * |
|
719 | - * @access public |
|
720 | - * @return void |
|
721 | - */ |
|
717 | + * in some case it may be necessary to overwrite the existing error messages |
|
718 | + * |
|
719 | + * @access public |
|
720 | + * @return void |
|
721 | + */ |
|
722 | 722 | public static function overwrite_errors() { |
723 | 723 | self::$_espresso_notices['errors'] = FALSE; |
724 | 724 | } |
@@ -726,24 +726,24 @@ discard block |
||
726 | 726 | |
727 | 727 | |
728 | 728 | /** |
729 | - * reset_notices |
|
730 | - * @access private |
|
731 | - * @return void |
|
732 | - */ |
|
729 | + * reset_notices |
|
730 | + * @access private |
|
731 | + * @return void |
|
732 | + */ |
|
733 | 733 | public static function reset_notices(){ |
734 | - self::$_espresso_notices['success'] = FALSE; |
|
735 | - self::$_espresso_notices['attention'] = FALSE; |
|
736 | - self::$_espresso_notices['errors'] = FALSE; |
|
737 | - } |
|
734 | + self::$_espresso_notices['success'] = FALSE; |
|
735 | + self::$_espresso_notices['attention'] = FALSE; |
|
736 | + self::$_espresso_notices['errors'] = FALSE; |
|
737 | + } |
|
738 | 738 | |
739 | 739 | |
740 | 740 | |
741 | 741 | /** |
742 | - * has_errors |
|
743 | - * @access public |
|
744 | - * @return int |
|
745 | - */ |
|
746 | - public static function has_notices(){ |
|
742 | + * has_errors |
|
743 | + * @access public |
|
744 | + * @return int |
|
745 | + */ |
|
746 | + public static function has_notices(){ |
|
747 | 747 | $has_notices = 0; |
748 | 748 | // check for success messages |
749 | 749 | $has_notices = self::$_espresso_notices['success'] && ! empty( self::$_espresso_notices['success'] ) ? 3 : $has_notices; |
@@ -774,15 +774,15 @@ discard block |
||
774 | 774 | |
775 | 775 | |
776 | 776 | /** |
777 | - * compile all error or success messages into one string |
|
778 | - * @see EE_Error::get_raw_notices if you want the raw notices without any preparations made to them |
|
779 | - * |
|
780 | - * @access public |
|
781 | - * @param boolean $format_output whether or not to format the messages for display in the WP admin |
|
782 | - * @param boolean $save_to_transient whether or not to save notices to the db for retrieval on next request - ONLY do this just before redirecting |
|
783 | - * @param boolean $remove_empty whether or not to unset empty messages |
|
784 | - * @return array |
|
785 | - */ |
|
777 | + * compile all error or success messages into one string |
|
778 | + * @see EE_Error::get_raw_notices if you want the raw notices without any preparations made to them |
|
779 | + * |
|
780 | + * @access public |
|
781 | + * @param boolean $format_output whether or not to format the messages for display in the WP admin |
|
782 | + * @param boolean $save_to_transient whether or not to save notices to the db for retrieval on next request - ONLY do this just before redirecting |
|
783 | + * @param boolean $remove_empty whether or not to unset empty messages |
|
784 | + * @return array |
|
785 | + */ |
|
786 | 786 | public static function get_notices( $format_output = TRUE, $save_to_transient = FALSE, $remove_empty = TRUE ) { |
787 | 787 | do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' ); |
788 | 788 | |
@@ -894,14 +894,14 @@ discard block |
||
894 | 894 | |
895 | 895 | |
896 | 896 | /** |
897 | - * add_persistent_admin_notice |
|
898 | - * |
|
899 | - * @access public |
|
900 | - * @param string $pan_name the name, or key of the Persistent Admin Notice to be stored |
|
901 | - * @param string $pan_message the message to be stored persistently until dismissed |
|
902 | - * @param bool $force_update allows one to enforce the reappearance of a persistent message. |
|
903 | - * @return void |
|
904 | - */ |
|
897 | + * add_persistent_admin_notice |
|
898 | + * |
|
899 | + * @access public |
|
900 | + * @param string $pan_name the name, or key of the Persistent Admin Notice to be stored |
|
901 | + * @param string $pan_message the message to be stored persistently until dismissed |
|
902 | + * @param bool $force_update allows one to enforce the reappearance of a persistent message. |
|
903 | + * @return void |
|
904 | + */ |
|
905 | 905 | public static function add_persistent_admin_notice( $pan_name = '', $pan_message, $force_update = FALSE ) { |
906 | 906 | if ( ! empty( $pan_name ) && ! empty( $pan_message )) { |
907 | 907 | $persistent_admin_notices = get_option( 'ee_pers_admin_notices', array() ); |
@@ -1064,11 +1064,11 @@ discard block |
||
1064 | 1064 | |
1065 | 1065 | |
1066 | 1066 | /** |
1067 | - * enqueue_error_scripts |
|
1068 | - * |
|
1069 | - * @access public |
|
1070 | - * @return void |
|
1071 | - */ |
|
1067 | + * enqueue_error_scripts |
|
1068 | + * |
|
1069 | + * @access public |
|
1070 | + * @return void |
|
1071 | + */ |
|
1072 | 1072 | public static function enqueue_error_scripts() { |
1073 | 1073 | self::_print_scripts(); |
1074 | 1074 | } |
@@ -1076,15 +1076,15 @@ discard block |
||
1076 | 1076 | |
1077 | 1077 | |
1078 | 1078 | /** |
1079 | - * create error code from filepath, function name, |
|
1080 | - * and line number where exception or error was thrown |
|
1081 | - * |
|
1082 | - * @access public |
|
1083 | - * @param string $file |
|
1084 | - * @param string $func |
|
1085 | - * @param string $line |
|
1086 | - * @return string |
|
1087 | - */ |
|
1079 | + * create error code from filepath, function name, |
|
1080 | + * and line number where exception or error was thrown |
|
1081 | + * |
|
1082 | + * @access public |
|
1083 | + * @param string $file |
|
1084 | + * @param string $func |
|
1085 | + * @param string $line |
|
1086 | + * @return string |
|
1087 | + */ |
|
1088 | 1088 | public static function generate_error_code ( $file = '', $func = '', $line = '' ) { |
1089 | 1089 | $file = explode( '.', basename( $file )); |
1090 | 1090 | $error_code = ! empty( $file[0] ) ? $file[0] : ''; |
@@ -1098,13 +1098,13 @@ discard block |
||
1098 | 1098 | |
1099 | 1099 | |
1100 | 1100 | /** |
1101 | - * write exception details to log file |
|
1102 | - * |
|
1103 | - * @access public |
|
1104 | - * @ param timestamp $time |
|
1105 | - * @ param object $ex |
|
1106 | - * @ return void |
|
1107 | - */ |
|
1101 | + * write exception details to log file |
|
1102 | + * |
|
1103 | + * @access public |
|
1104 | + * @ param timestamp $time |
|
1105 | + * @ param object $ex |
|
1106 | + * @ return void |
|
1107 | + */ |
|
1108 | 1108 | public function write_to_error_log ( $time = FALSE, $ex = FALSE, $clear = FALSE ) { |
1109 | 1109 | |
1110 | 1110 | if ( ! $ex ) { |
@@ -1,8 +1,8 @@ discard block |
||
1 | 1 | <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed'); |
2 | 2 | // if you're a dev and want to receive all errors via email add this to your wp-config.php: define( 'EE_ERROR_EMAILS', TRUE ); |
3 | -if ( defined( 'WP_DEBUG' ) && WP_DEBUG === TRUE && defined( 'EE_ERROR_EMAILS' ) && EE_ERROR_EMAILS === TRUE ) { |
|
4 | - set_error_handler( array( 'EE_Error', 'error_handler' )); |
|
5 | - register_shutdown_function( array( 'EE_Error', 'fatal_error_handler' )); |
|
3 | +if (defined('WP_DEBUG') && WP_DEBUG === TRUE && defined('EE_ERROR_EMAILS') && EE_ERROR_EMAILS === TRUE) { |
|
4 | + set_error_handler(array('EE_Error', 'error_handler')); |
|
5 | + register_shutdown_function(array('EE_Error', 'fatal_error_handler')); |
|
6 | 6 | } |
7 | 7 | /** |
8 | 8 | * |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | * @access private |
65 | 65 | * @var boolean |
66 | 66 | */ |
67 | - private static $_espresso_notices = array( 'success' => FALSE, 'errors' => FALSE, 'attention' => FALSE ); |
|
67 | + private static $_espresso_notices = array('success' => FALSE, 'errors' => FALSE, 'attention' => FALSE); |
|
68 | 68 | |
69 | 69 | |
70 | 70 | |
@@ -75,11 +75,11 @@ discard block |
||
75 | 75 | * @access public |
76 | 76 | * @echo string |
77 | 77 | */ |
78 | - function __construct( $message, $code = 0, Exception $previous = NULL ) { |
|
79 | - if ( version_compare( phpversion(), '5.3.0', '<' )) { |
|
80 | - parent::__construct( $message, $code ); |
|
78 | + function __construct($message, $code = 0, Exception $previous = NULL) { |
|
79 | + if (version_compare(phpversion(), '5.3.0', '<')) { |
|
80 | + parent::__construct($message, $code); |
|
81 | 81 | } else { |
82 | - parent::__construct( $message, $code, $previous ); |
|
82 | + parent::__construct($message, $code, $previous); |
|
83 | 83 | } |
84 | 84 | } |
85 | 85 | |
@@ -94,10 +94,10 @@ discard block |
||
94 | 94 | * @param $line |
95 | 95 | * @return void |
96 | 96 | */ |
97 | - public static function error_handler( $code, $message, $file, $line ) { |
|
98 | - $type = EE_Error::error_type( $code ); |
|
97 | + public static function error_handler($code, $message, $file, $line) { |
|
98 | + $type = EE_Error::error_type($code); |
|
99 | 99 | $site = site_url(); |
100 | - switch ( $site ) { |
|
100 | + switch ($site) { |
|
101 | 101 | case 'http://ee4.eventespresso.com/' : |
102 | 102 | case 'http://ee4decaf.eventespresso.com/' : |
103 | 103 | case 'http://ee4hf.eventespresso.com/' : |
@@ -110,16 +110,16 @@ discard block |
||
110 | 110 | $to = '[email protected]'; |
111 | 111 | break; |
112 | 112 | default : |
113 | - $to = get_option( 'admin_email' ); |
|
113 | + $to = get_option('admin_email'); |
|
114 | 114 | } |
115 | - $subject = $type . ' ' . $message . ' in ' . EVENT_ESPRESSO_VERSION . ' on ' . site_url(); |
|
116 | - $msg = EE_Error::_format_error( $type, $message, $file, $line ); |
|
117 | - if ( function_exists( 'wp_mail' )) { |
|
118 | - add_filter( 'wp_mail_content_type', array( 'EE_Error', 'set_content_type' )); |
|
119 | - wp_mail( $to, $subject, $msg ); |
|
115 | + $subject = $type.' '.$message.' in '.EVENT_ESPRESSO_VERSION.' on '.site_url(); |
|
116 | + $msg = EE_Error::_format_error($type, $message, $file, $line); |
|
117 | + if (function_exists('wp_mail')) { |
|
118 | + add_filter('wp_mail_content_type', array('EE_Error', 'set_content_type')); |
|
119 | + wp_mail($to, $subject, $msg); |
|
120 | 120 | } |
121 | 121 | echo '<div id="message" class="espresso-notices error"><p>'; |
122 | - echo $type . ': ' . $message . '<br />' . $file . ' line ' . $line; |
|
122 | + echo $type.': '.$message.'<br />'.$file.' line '.$line; |
|
123 | 123 | echo '<br /></p></div>'; |
124 | 124 | } |
125 | 125 | |
@@ -132,8 +132,8 @@ discard block |
||
132 | 132 | * @param $code |
133 | 133 | * @return string |
134 | 134 | */ |
135 | - public static function error_type( $code ) { |
|
136 | - switch( $code ) { |
|
135 | + public static function error_type($code) { |
|
136 | + switch ($code) { |
|
137 | 137 | case E_ERROR: // 1 // |
138 | 138 | return 'E_ERROR'; |
139 | 139 | case E_WARNING: // 2 // |
@@ -179,8 +179,8 @@ discard block |
||
179 | 179 | */ |
180 | 180 | public static function fatal_error_handler() { |
181 | 181 | $last_error = error_get_last(); |
182 | - if ( $last_error['type'] === E_ERROR ) { |
|
183 | - EE_Error::error_handler( E_ERROR, $last_error['message'], $last_error['file'], $last_error['line'] ); |
|
182 | + if ($last_error['type'] === E_ERROR) { |
|
183 | + EE_Error::error_handler(E_ERROR, $last_error['message'], $last_error['file'], $last_error['line']); |
|
184 | 184 | } |
185 | 185 | } |
186 | 186 | |
@@ -195,7 +195,7 @@ discard block |
||
195 | 195 | * @param $line |
196 | 196 | * @return string |
197 | 197 | */ |
198 | - private static function _format_error( $code, $message, $file, $line ) { |
|
198 | + private static function _format_error($code, $message, $file, $line) { |
|
199 | 199 | $html = "<table cellpadding='5'><thead bgcolor='#f8f8f8'><th>Item</th><th align='left'>Details</th></thead><tbody>"; |
200 | 200 | $html .= "<tr valign='top'><td><b>Code</b></td><td>$code</td></tr>"; |
201 | 201 | $html .= "<tr valign='top'><td><b>Error</b></td><td>$message</td></tr>"; |
@@ -213,7 +213,7 @@ discard block |
||
213 | 213 | * @param $content_type |
214 | 214 | * @return string |
215 | 215 | */ |
216 | - public static function set_content_type( $content_type ) { |
|
216 | + public static function set_content_type($content_type) { |
|
217 | 217 | return 'text/html'; |
218 | 218 | } |
219 | 219 | |
@@ -227,24 +227,24 @@ discard block |
||
227 | 227 | */ |
228 | 228 | public function get_error() { |
229 | 229 | |
230 | - if( apply_filters( 'FHEE__EE_Error__get_error__show_normal_exceptions', FALSE ) ){ |
|
230 | + if (apply_filters('FHEE__EE_Error__get_error__show_normal_exceptions', FALSE)) { |
|
231 | 231 | throw $this; |
232 | 232 | } |
233 | 233 | // get separate user and developer messages if they exist |
234 | - $msg = explode( '||', $this->getMessage() ); |
|
234 | + $msg = explode('||', $this->getMessage()); |
|
235 | 235 | $user_msg = $msg[0]; |
236 | - $dev_msg = isset( $msg[1] ) ? $msg[1] : $msg[0]; |
|
236 | + $dev_msg = isset($msg[1]) ? $msg[1] : $msg[0]; |
|
237 | 237 | $msg = WP_DEBUG ? $dev_msg : $user_msg; |
238 | 238 | |
239 | 239 | // add details to _all_exceptions array |
240 | 240 | $x_time = time(); |
241 | - self::$_all_exceptions[ $x_time ]['name'] = get_class( $this ); |
|
242 | - self::$_all_exceptions[ $x_time ]['file'] = $this->getFile(); |
|
243 | - self::$_all_exceptions[ $x_time ]['line'] = $this->getLine(); |
|
244 | - self::$_all_exceptions[ $x_time ]['msg'] = $msg; |
|
245 | - self::$_all_exceptions[ $x_time ]['code'] = $this->getCode(); |
|
246 | - self::$_all_exceptions[ $x_time ]['trace'] = $this->getTrace(); |
|
247 | - self::$_all_exceptions[ $x_time ]['string'] = $this->getTraceAsString(); |
|
241 | + self::$_all_exceptions[$x_time]['name'] = get_class($this); |
|
242 | + self::$_all_exceptions[$x_time]['file'] = $this->getFile(); |
|
243 | + self::$_all_exceptions[$x_time]['line'] = $this->getLine(); |
|
244 | + self::$_all_exceptions[$x_time]['msg'] = $msg; |
|
245 | + self::$_all_exceptions[$x_time]['code'] = $this->getCode(); |
|
246 | + self::$_all_exceptions[$x_time]['trace'] = $this->getTrace(); |
|
247 | + self::$_all_exceptions[$x_time]['string'] = $this->getTraceAsString(); |
|
248 | 248 | self::$_error_count++; |
249 | 249 | |
250 | 250 | //add_action( 'shutdown', array( $this, 'display_errors' )); |
@@ -261,12 +261,12 @@ discard block |
||
261 | 261 | * @param bool $check_stored |
262 | 262 | * @return bool |
263 | 263 | */ |
264 | - public static function has_error( $check_stored = false ){ |
|
264 | + public static function has_error($check_stored = false) { |
|
265 | 265 | $has_error = self::$_error_count ? true : false; |
266 | - if ( $check_stored && ! $has_error ) { |
|
267 | - $notices = (array) get_option( 'ee_notices', array() ); |
|
268 | - foreach ( $notices as $type => $notice ) { |
|
269 | - if ( $type === 'errors' && $notice ) { |
|
266 | + if ($check_stored && ! $has_error) { |
|
267 | + $notices = (array) get_option('ee_notices', array()); |
|
268 | + foreach ($notices as $type => $notice) { |
|
269 | + if ($type === 'errors' && $notice) { |
|
270 | 270 | return true; |
271 | 271 | } |
272 | 272 | } |
@@ -281,7 +281,7 @@ discard block |
||
281 | 281 | * @access public |
282 | 282 | * @echo string |
283 | 283 | */ |
284 | - public function display_errors(){ |
|
284 | + public function display_errors() { |
|
285 | 285 | |
286 | 286 | $trace_details = ''; |
287 | 287 | |
@@ -342,18 +342,18 @@ discard block |
||
342 | 342 | </style> |
343 | 343 | <div id="ee-error-message" class="error">'; |
344 | 344 | |
345 | - if ( ! WP_DEBUG ) { |
|
345 | + if ( ! WP_DEBUG) { |
|
346 | 346 | $output .= ' |
347 | 347 | <p>'; |
348 | 348 | } |
349 | 349 | |
350 | 350 | // cycle thru errors |
351 | - foreach ( self::$_all_exceptions as $time => $ex ) { |
|
351 | + foreach (self::$_all_exceptions as $time => $ex) { |
|
352 | 352 | |
353 | 353 | // process trace info |
354 | - if ( empty( $ex['trace'] )) { |
|
354 | + if (empty($ex['trace'])) { |
|
355 | 355 | |
356 | - $trace_details .= __( 'Sorry, but no trace information was available for this exception.', 'event_espresso' ); |
|
356 | + $trace_details .= __('Sorry, but no trace information was available for this exception.', 'event_espresso'); |
|
357 | 357 | |
358 | 358 | } else { |
359 | 359 | |
@@ -368,50 +368,50 @@ discard block |
||
368 | 368 | <th scope="col" align="left">Method( arguments )</th> |
369 | 369 | </tr>'; |
370 | 370 | |
371 | - $last_on_stack = count( $ex['trace'] ) - 1; |
|
371 | + $last_on_stack = count($ex['trace']) - 1; |
|
372 | 372 | // reverse array so that stack is in proper chronological order |
373 | - $sorted_trace = array_reverse( $ex['trace'] ); |
|
373 | + $sorted_trace = array_reverse($ex['trace']); |
|
374 | 374 | |
375 | - foreach ( $sorted_trace as $nmbr => $trace ) { |
|
375 | + foreach ($sorted_trace as $nmbr => $trace) { |
|
376 | 376 | |
377 | - $file = isset( $trace['file'] ) ? $trace['file'] : '' ; |
|
378 | - $class = isset( $trace['class'] ) ? $trace['class'] : ''; |
|
379 | - $type = isset( $trace['type'] ) ? $trace['type'] : ''; |
|
380 | - $function = isset( $trace['function'] ) ? $trace['function'] : ''; |
|
381 | - $args = isset( $trace['args'] ) ? $this->_convert_args_to_string( $trace['args'] ) : ''; |
|
382 | - $line = isset( $trace['line'] ) ? $trace['line'] : ''; |
|
377 | + $file = isset($trace['file']) ? $trace['file'] : ''; |
|
378 | + $class = isset($trace['class']) ? $trace['class'] : ''; |
|
379 | + $type = isset($trace['type']) ? $trace['type'] : ''; |
|
380 | + $function = isset($trace['function']) ? $trace['function'] : ''; |
|
381 | + $args = isset($trace['args']) ? $this->_convert_args_to_string($trace['args']) : ''; |
|
382 | + $line = isset($trace['line']) ? $trace['line'] : ''; |
|
383 | 383 | $zebra = $nmbr % 2 ? ' odd' : ''; |
384 | 384 | |
385 | - if ( empty( $file ) && ! empty( $class )) { |
|
386 | - $a = new ReflectionClass( $class ); |
|
385 | + if (empty($file) && ! empty($class)) { |
|
386 | + $a = new ReflectionClass($class); |
|
387 | 387 | $file = $a->getFileName(); |
388 | - if ( empty( $line ) && ! empty( $function )) { |
|
389 | - $b = new ReflectionMethod( $class, $function ); |
|
388 | + if (empty($line) && ! empty($function)) { |
|
389 | + $b = new ReflectionMethod($class, $function); |
|
390 | 390 | $line = $b->getStartLine(); |
391 | 391 | } |
392 | 392 | } |
393 | 393 | |
394 | - if ( $nmbr == $last_on_stack ) { |
|
394 | + if ($nmbr == $last_on_stack) { |
|
395 | 395 | $file = $ex['file'] != '' ? $ex['file'] : $file; |
396 | 396 | $line = $ex['line'] != '' ? $ex['line'] : $line; |
397 | - $error_code = self::generate_error_code ( $file, $trace['function'], $line ); |
|
397 | + $error_code = self::generate_error_code($file, $trace['function'], $line); |
|
398 | 398 | } |
399 | 399 | |
400 | - $nmbr_dsply = ! empty( $nmbr ) ? $nmbr : ' '; |
|
401 | - $line_dsply = ! empty( $line ) ? $line : ' '; |
|
402 | - $file_dsply = ! empty( $file ) ? $file : ' '; |
|
403 | - $class_dsply = ! empty( $class ) ? $class : ' '; |
|
404 | - $type_dsply = ! empty( $type ) ? $type : ' '; |
|
405 | - $function_dsply = ! empty( $function ) ? $function : ' '; |
|
406 | - $args_dsply = ! empty( $args ) ? '( ' . $args . ' )' : ''; |
|
400 | + $nmbr_dsply = ! empty($nmbr) ? $nmbr : ' '; |
|
401 | + $line_dsply = ! empty($line) ? $line : ' '; |
|
402 | + $file_dsply = ! empty($file) ? $file : ' '; |
|
403 | + $class_dsply = ! empty($class) ? $class : ' '; |
|
404 | + $type_dsply = ! empty($type) ? $type : ' '; |
|
405 | + $function_dsply = ! empty($function) ? $function : ' '; |
|
406 | + $args_dsply = ! empty($args) ? '( '.$args.' )' : ''; |
|
407 | 407 | |
408 | 408 | $trace_details .= ' |
409 | 409 | <tr> |
410 | - <td align="right" class="' . $zebra . '">' . $nmbr_dsply . '</td> |
|
411 | - <td align="right" class="' . $zebra . '">' . $line_dsply . '</td> |
|
412 | - <td align="left" class="' . $zebra . '">' . $file_dsply . '</td> |
|
413 | - <td align="left" class="' . $zebra . '">' . $class_dsply . '</td> |
|
414 | - <td align="left" class="' . $zebra . '">' . $type_dsply . $function_dsply . $args_dsply . '</td> |
|
410 | + <td align="right" class="' . $zebra.'">'.$nmbr_dsply.'</td> |
|
411 | + <td align="right" class="' . $zebra.'">'.$line_dsply.'</td> |
|
412 | + <td align="left" class="' . $zebra.'">'.$file_dsply.'</td> |
|
413 | + <td align="left" class="' . $zebra.'">'.$class_dsply.'</td> |
|
414 | + <td align="left" class="' . $zebra.'">'.$type_dsply.$function_dsply.$args_dsply.'</td> |
|
415 | 415 | </tr>'; |
416 | 416 | |
417 | 417 | |
@@ -426,9 +426,9 @@ discard block |
||
426 | 426 | $ex['code'] = $ex['code'] ? $ex['code'] : $error_code; |
427 | 427 | |
428 | 428 | // add generic non-identifying messages for non-privileged uesrs |
429 | - if ( ! WP_DEBUG ) { |
|
429 | + if ( ! WP_DEBUG) { |
|
430 | 430 | |
431 | - $output .= '<span class="ee-error-user-msg-spn">' . trim( $ex['msg'] ) . '</span> <sup>' . $ex['code'] . '</sup><br />'; |
|
431 | + $output .= '<span class="ee-error-user-msg-spn">'.trim($ex['msg']).'</span> <sup>'.$ex['code'].'</sup><br />'; |
|
432 | 432 | |
433 | 433 | } else { |
434 | 434 | |
@@ -436,24 +436,24 @@ discard block |
||
436 | 436 | $output .= ' |
437 | 437 | <div class="ee-error-dev-msg-dv"> |
438 | 438 | <p class="ee-error-dev-msg-pg"> |
439 | - <strong class="ee-error-dev-msg-str">An ' . $ex['name'] . ' exception was thrown!</strong> <span>code: ' . $ex['code'] . '</span><br /> |
|
440 | - <span class="big-text">"' . trim( $ex['msg'] ) . '"</span><br/> |
|
441 | - <a id="display-ee-error-trace-' . self::$_error_count . $time . '" class="display-ee-error-trace-lnk small-text" rel="ee-error-trace-' . self::$_error_count . $time . '"> |
|
442 | - ' . __( 'click to view backtrace and class/method details', 'event_espresso' ) . ' |
|
439 | + <strong class="ee-error-dev-msg-str">An ' . $ex['name'].' exception was thrown!</strong> <span>code: '.$ex['code'].'</span><br /> |
|
440 | + <span class="big-text">"' . trim($ex['msg']).'"</span><br/> |
|
441 | + <a id="display-ee-error-trace-' . self::$_error_count.$time.'" class="display-ee-error-trace-lnk small-text" rel="ee-error-trace-'.self::$_error_count.$time.'"> |
|
442 | + ' . __('click to view backtrace and class/method details', 'event_espresso').' |
|
443 | 443 | </a><br /> |
444 | 444 | <span class="small-text lt-grey-text">'.$ex['file'].' ( line no: '.$ex['line'].' )</span> |
445 | 445 | </p> |
446 | - <div id="ee-error-trace-' . self::$_error_count . $time . '-dv" class="ee-error-trace-dv" style="display: none;"> |
|
446 | + <div id="ee-error-trace-' . self::$_error_count.$time.'-dv" class="ee-error-trace-dv" style="display: none;"> |
|
447 | 447 | ' . $trace_details; |
448 | 448 | |
449 | - if ( ! empty( $class )) { |
|
449 | + if ( ! empty($class)) { |
|
450 | 450 | $output .= ' |
451 | 451 | <div style="padding:3px; margin:0 0 1em; border:1px solid #666; background:#fff; border-radius:3px;"> |
452 | 452 | <div style="padding:1em 2em; border:1px solid #666; background:#f9f9f9;"> |
453 | 453 | <h3>Class Details</h3>'; |
454 | - $a = new ReflectionClass( $class ); |
|
454 | + $a = new ReflectionClass($class); |
|
455 | 455 | $output .= ' |
456 | - <pre>' . $a . '</pre> |
|
456 | + <pre>' . $a.'</pre> |
|
457 | 457 | </div> |
458 | 458 | </div>'; |
459 | 459 | } |
@@ -465,14 +465,14 @@ discard block |
||
465 | 465 | |
466 | 466 | } |
467 | 467 | |
468 | - $this->write_to_error_log( $time, $ex ); |
|
468 | + $this->write_to_error_log($time, $ex); |
|
469 | 469 | |
470 | 470 | } |
471 | 471 | |
472 | 472 | // remove last linebreak |
473 | - $output = substr( $output, 0, ( count( $output ) - 7 )); |
|
473 | + $output = substr($output, 0, (count($output) - 7)); |
|
474 | 474 | |
475 | - if ( ! WP_DEBUG ) { |
|
475 | + if ( ! WP_DEBUG) { |
|
476 | 476 | $output .= ' |
477 | 477 | </p>'; |
478 | 478 | } |
@@ -480,10 +480,10 @@ discard block |
||
480 | 480 | $output .= ' |
481 | 481 | </div>'; |
482 | 482 | |
483 | - $output .= self::_print_scripts( TRUE ); |
|
483 | + $output .= self::_print_scripts(TRUE); |
|
484 | 484 | |
485 | - if ( defined( 'DOING_AJAX' )) { |
|
486 | - echo json_encode( array( 'error' => $output )); |
|
485 | + if (defined('DOING_AJAX')) { |
|
486 | + echo json_encode(array('error' => $output)); |
|
487 | 487 | exit(); |
488 | 488 | } |
489 | 489 | |
@@ -503,29 +503,29 @@ discard block |
||
503 | 503 | * @ param array $arguments |
504 | 504 | * @ return string |
505 | 505 | */ |
506 | - private function _convert_args_to_string ( $arguments = array(), $array = FALSE ) { |
|
506 | + private function _convert_args_to_string($arguments = array(), $array = FALSE) { |
|
507 | 507 | |
508 | 508 | $arg_string = ''; |
509 | - if ( ! empty( $arguments )) { |
|
509 | + if ( ! empty($arguments)) { |
|
510 | 510 | |
511 | 511 | $args = array(); |
512 | 512 | |
513 | - foreach ( $arguments as $arg ) { |
|
513 | + foreach ($arguments as $arg) { |
|
514 | 514 | |
515 | - if ( ! empty( $arg )) { |
|
515 | + if ( ! empty($arg)) { |
|
516 | 516 | |
517 | - if ( is_string( $arg )) { |
|
518 | - $args[] = " '" . $arg . "'"; |
|
519 | - } elseif ( is_array( $arg )) { |
|
520 | - $args[] = 'ARRAY(' . $this->_convert_args_to_string( $arg, TRUE ); |
|
521 | - } elseif ( is_null( $arg )) { |
|
517 | + if (is_string($arg)) { |
|
518 | + $args[] = " '".$arg."'"; |
|
519 | + } elseif (is_array($arg)) { |
|
520 | + $args[] = 'ARRAY('.$this->_convert_args_to_string($arg, TRUE); |
|
521 | + } elseif (is_null($arg)) { |
|
522 | 522 | $args[] = ' NULL'; |
523 | - } elseif ( is_bool( $arg )) { |
|
524 | - $args[] = ( $arg ) ? ' TRUE' : ' FALSE'; |
|
525 | - } elseif ( is_object( $arg )) { |
|
526 | - $args[] = ' OBJECT ' . get_class( $arg ); |
|
527 | - } elseif ( is_resource( $arg )) { |
|
528 | - $args[] = get_resource_type( $arg ); |
|
523 | + } elseif (is_bool($arg)) { |
|
524 | + $args[] = ($arg) ? ' TRUE' : ' FALSE'; |
|
525 | + } elseif (is_object($arg)) { |
|
526 | + $args[] = ' OBJECT '.get_class($arg); |
|
527 | + } elseif (is_resource($arg)) { |
|
528 | + $args[] = get_resource_type($arg); |
|
529 | 529 | } else { |
530 | 530 | $args[] = $arg; |
531 | 531 | } |
@@ -533,9 +533,9 @@ discard block |
||
533 | 533 | } |
534 | 534 | |
535 | 535 | } |
536 | - $arg_string = implode( ', ', $args ); |
|
536 | + $arg_string = implode(', ', $args); |
|
537 | 537 | } |
538 | - if ( $array ) { |
|
538 | + if ($array) { |
|
539 | 539 | $arg_string .= ' )'; |
540 | 540 | } |
541 | 541 | return $arg_string; |
@@ -555,8 +555,8 @@ discard block |
||
555 | 555 | * @param string $line the line number where the error occurred - just use __LINE__ |
556 | 556 | * @return void |
557 | 557 | */ |
558 | - public static function add_error( $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) { |
|
559 | - self::_add_notice ( 'errors', $msg, $file, $func, $line ); |
|
558 | + public static function add_error($msg = NULL, $file = NULL, $func = NULL, $line = NULL) { |
|
559 | + self::_add_notice('errors', $msg, $file, $func, $line); |
|
560 | 560 | self::$_error_count++; |
561 | 561 | } |
562 | 562 | |
@@ -569,11 +569,11 @@ discard block |
||
569 | 569 | * @param string $line |
570 | 570 | * @throws EE_Error |
571 | 571 | */ |
572 | - public static function throw_exception_if_debugging( $msg = null, $file = null, $func = null, $line = null ) { |
|
573 | - if( WP_DEBUG ) { |
|
574 | - throw new EE_Error( $msg ); |
|
575 | - } else { |
|
576 | - EE_Error::add_error( $msg, $file, $func, $line ); |
|
572 | + public static function throw_exception_if_debugging($msg = null, $file = null, $func = null, $line = null) { |
|
573 | + if (WP_DEBUG) { |
|
574 | + throw new EE_Error($msg); |
|
575 | + } else { |
|
576 | + EE_Error::add_error($msg, $file, $func, $line); |
|
577 | 577 | } |
578 | 578 | } |
579 | 579 | |
@@ -591,8 +591,8 @@ discard block |
||
591 | 591 | * @param string $line the line number where the error occurred - just use __LINE__ |
592 | 592 | * @return void |
593 | 593 | */ |
594 | - public static function add_success( $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) { |
|
595 | - self::_add_notice ( 'success', $msg, $file, $func, $line ); |
|
594 | + public static function add_success($msg = NULL, $file = NULL, $func = NULL, $line = NULL) { |
|
595 | + self::_add_notice('success', $msg, $file, $func, $line); |
|
596 | 596 | } |
597 | 597 | |
598 | 598 | |
@@ -609,8 +609,8 @@ discard block |
||
609 | 609 | * @param string $line the line number where the error occurred - just use __LINE__ |
610 | 610 | * @return void |
611 | 611 | */ |
612 | - public static function add_attention( $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) { |
|
613 | - self::_add_notice ( 'attention', $msg, $file, $func, $line ); |
|
612 | + public static function add_attention($msg = NULL, $file = NULL, $func = NULL, $line = NULL) { |
|
613 | + self::_add_notice('attention', $msg, $file, $func, $line); |
|
614 | 614 | } |
615 | 615 | |
616 | 616 | |
@@ -628,12 +628,12 @@ discard block |
||
628 | 628 | * @param string $line the line number where the error occurred - just use __LINE__ |
629 | 629 | * @return void |
630 | 630 | */ |
631 | - private static function _add_notice( $type = 'success', $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) { |
|
632 | - if ( empty( $msg )) { |
|
631 | + private static function _add_notice($type = 'success', $msg = NULL, $file = NULL, $func = NULL, $line = NULL) { |
|
632 | + if (empty($msg)) { |
|
633 | 633 | EE_Error::doing_it_wrong( |
634 | - 'EE_Error::add_' . $type . '()', |
|
634 | + 'EE_Error::add_'.$type.'()', |
|
635 | 635 | sprintf( |
636 | - __( 'Notifications are not much use without a message! Please add a message to the EE_Error::add_%s() call made in %s on line %d', 'event_espresso' ), |
|
636 | + __('Notifications are not much use without a message! Please add a message to the EE_Error::add_%s() call made in %s on line %d', 'event_espresso'), |
|
637 | 637 | $type, |
638 | 638 | $file, |
639 | 639 | $line |
@@ -641,17 +641,17 @@ discard block |
||
641 | 641 | EVENT_ESPRESSO_VERSION |
642 | 642 | ); |
643 | 643 | } |
644 | - if ( $type == 'errors' && ( empty( $file ) || empty( $func ) || empty( $line ))) { |
|
644 | + if ($type == 'errors' && (empty($file) || empty($func) || empty($line))) { |
|
645 | 645 | EE_Error::doing_it_wrong( |
646 | 646 | 'EE_Error::add_error()', |
647 | - __('You need to provide the file name, function name, and line number that the error occurred on in order to better assist with debugging.', 'event_espresso' ), |
|
647 | + __('You need to provide the file name, function name, and line number that the error occurred on in order to better assist with debugging.', 'event_espresso'), |
|
648 | 648 | EVENT_ESPRESSO_VERSION |
649 | 649 | ); |
650 | 650 | } |
651 | 651 | // get separate user and developer messages if they exist |
652 | - $msg = explode( '||', $msg ); |
|
652 | + $msg = explode('||', $msg); |
|
653 | 653 | $user_msg = $msg[0]; |
654 | - $dev_msg = isset( $msg[1] ) ? $msg[1] : $msg[0]; |
|
654 | + $dev_msg = isset($msg[1]) ? $msg[1] : $msg[0]; |
|
655 | 655 | /** |
656 | 656 | * Do an action so other code can be triggered when a notice is created |
657 | 657 | * @param string $type can be 'errors', 'attention', or 'success' |
@@ -661,22 +661,22 @@ discard block |
||
661 | 661 | * @param string $func function where error was generated |
662 | 662 | * @param string $line line where error was generated |
663 | 663 | */ |
664 | - do_action( 'AHEE__EE_Error___add_notice', $type, $user_msg, $dev_msg, $file, $func, $line ); |
|
664 | + do_action('AHEE__EE_Error___add_notice', $type, $user_msg, $dev_msg, $file, $func, $line); |
|
665 | 665 | $msg = WP_DEBUG ? $dev_msg : $user_msg; |
666 | 666 | // add notice if message exists |
667 | - if ( ! empty( $msg )) { |
|
667 | + if ( ! empty($msg)) { |
|
668 | 668 | // get error code |
669 | - $notice_code = EE_Error::generate_error_code( $file, $func, $line ); |
|
670 | - if ( WP_DEBUG && $type == 'errors' ) { |
|
671 | - $msg .= '<br/><span class="tiny-text">' . $notice_code . '</span>'; |
|
669 | + $notice_code = EE_Error::generate_error_code($file, $func, $line); |
|
670 | + if (WP_DEBUG && $type == 'errors') { |
|
671 | + $msg .= '<br/><span class="tiny-text">'.$notice_code.'</span>'; |
|
672 | 672 | } |
673 | 673 | // add notice. Index by code if it's not blank |
674 | - if( $notice_code ) { |
|
675 | - self::$_espresso_notices[ $type ][ $notice_code ] = $msg; |
|
674 | + if ($notice_code) { |
|
675 | + self::$_espresso_notices[$type][$notice_code] = $msg; |
|
676 | 676 | } else { |
677 | - self::$_espresso_notices[ $type ][] = $msg; |
|
677 | + self::$_espresso_notices[$type][] = $msg; |
|
678 | 678 | } |
679 | - add_action( 'wp_footer', array( 'EE_Error', 'enqueue_error_scripts' ), 1 ); |
|
679 | + add_action('wp_footer', array('EE_Error', 'enqueue_error_scripts'), 1); |
|
680 | 680 | } |
681 | 681 | |
682 | 682 | } |
@@ -730,7 +730,7 @@ discard block |
||
730 | 730 | * @access private |
731 | 731 | * @return void |
732 | 732 | */ |
733 | - public static function reset_notices(){ |
|
733 | + public static function reset_notices() { |
|
734 | 734 | self::$_espresso_notices['success'] = FALSE; |
735 | 735 | self::$_espresso_notices['attention'] = FALSE; |
736 | 736 | self::$_espresso_notices['errors'] = FALSE; |
@@ -743,14 +743,14 @@ discard block |
||
743 | 743 | * @access public |
744 | 744 | * @return int |
745 | 745 | */ |
746 | - public static function has_notices(){ |
|
746 | + public static function has_notices() { |
|
747 | 747 | $has_notices = 0; |
748 | 748 | // check for success messages |
749 | - $has_notices = self::$_espresso_notices['success'] && ! empty( self::$_espresso_notices['success'] ) ? 3 : $has_notices; |
|
749 | + $has_notices = self::$_espresso_notices['success'] && ! empty(self::$_espresso_notices['success']) ? 3 : $has_notices; |
|
750 | 750 | // check for attention messages |
751 | - $has_notices = self::$_espresso_notices['attention'] && ! empty( self::$_espresso_notices['attention'] ) ? 2 : $has_notices; |
|
751 | + $has_notices = self::$_espresso_notices['attention'] && ! empty(self::$_espresso_notices['attention']) ? 2 : $has_notices; |
|
752 | 752 | // check for error messages |
753 | - $has_notices = self::$_espresso_notices['errors'] && ! empty( self::$_espresso_notices['errors'] ) ? 1 : $has_notices; |
|
753 | + $has_notices = self::$_espresso_notices['errors'] && ! empty(self::$_espresso_notices['errors']) ? 1 : $has_notices; |
|
754 | 754 | return $has_notices; |
755 | 755 | } |
756 | 756 | |
@@ -765,9 +765,9 @@ discard block |
||
765 | 765 | */ |
766 | 766 | public static function get_vanilla_notices() { |
767 | 767 | return array( |
768 | - 'success' => isset( self::$_espresso_notices['success'] ) ? self::$_espresso_notices['success'] : array(), |
|
769 | - 'attention' => isset( self::$_espresso_notices['attention'] ) ? self::$_espresso_notices['attention'] : array(), |
|
770 | - 'errors' => isset( self::$_espresso_notices['errors'] ) ? self::$_espresso_notices['errors'] : array(), |
|
768 | + 'success' => isset(self::$_espresso_notices['success']) ? self::$_espresso_notices['success'] : array(), |
|
769 | + 'attention' => isset(self::$_espresso_notices['attention']) ? self::$_espresso_notices['attention'] : array(), |
|
770 | + 'errors' => isset(self::$_espresso_notices['errors']) ? self::$_espresso_notices['errors'] : array(), |
|
771 | 771 | ); |
772 | 772 | } |
773 | 773 | |
@@ -783,8 +783,8 @@ discard block |
||
783 | 783 | * @param boolean $remove_empty whether or not to unset empty messages |
784 | 784 | * @return array |
785 | 785 | */ |
786 | - public static function get_notices( $format_output = TRUE, $save_to_transient = FALSE, $remove_empty = TRUE ) { |
|
787 | - do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' ); |
|
786 | + public static function get_notices($format_output = TRUE, $save_to_transient = FALSE, $remove_empty = TRUE) { |
|
787 | + do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
788 | 788 | |
789 | 789 | $success_messages = ''; |
790 | 790 | $attention_messages = ''; |
@@ -794,44 +794,44 @@ discard block |
||
794 | 794 | // EEH_Debug_Tools::printr( self::$_espresso_notices, 'espresso_notices <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span>', 'auto' ); |
795 | 795 | |
796 | 796 | // either save notices to the db |
797 | - if ( $save_to_transient ) { |
|
798 | - update_option( 'ee_notices', self::$_espresso_notices ); |
|
797 | + if ($save_to_transient) { |
|
798 | + update_option('ee_notices', self::$_espresso_notices); |
|
799 | 799 | return; |
800 | 800 | } |
801 | 801 | // grab any notices that have been previously saved |
802 | - if ( $notices = get_option( 'ee_notices', FALSE )) { |
|
803 | - foreach ( $notices as $type => $notice ) { |
|
804 | - if ( is_array( $notice ) && ! empty( $notice )) { |
|
802 | + if ($notices = get_option('ee_notices', FALSE)) { |
|
803 | + foreach ($notices as $type => $notice) { |
|
804 | + if (is_array($notice) && ! empty($notice)) { |
|
805 | 805 | // make sure that existing notice type is an array |
806 | - self::$_espresso_notices[ $type ] = is_array( self::$_espresso_notices[ $type ] ) && ! empty( self::$_espresso_notices[ $type ] ) ? self::$_espresso_notices[ $type ] : array(); |
|
806 | + self::$_espresso_notices[$type] = is_array(self::$_espresso_notices[$type]) && ! empty(self::$_espresso_notices[$type]) ? self::$_espresso_notices[$type] : array(); |
|
807 | 807 | // merge stored notices with any newly created ones |
808 | - self::$_espresso_notices[ $type ] = array_merge( self::$_espresso_notices[ $type ], $notice ); |
|
808 | + self::$_espresso_notices[$type] = array_merge(self::$_espresso_notices[$type], $notice); |
|
809 | 809 | $print_scripts = TRUE; |
810 | 810 | } |
811 | 811 | } |
812 | 812 | // now clear any stored notices |
813 | - update_option( 'ee_notices', FALSE ); |
|
813 | + update_option('ee_notices', FALSE); |
|
814 | 814 | } |
815 | 815 | |
816 | 816 | // check for success messages |
817 | - if ( self::$_espresso_notices['success'] && ! empty( self::$_espresso_notices['success'] )) { |
|
817 | + if (self::$_espresso_notices['success'] && ! empty(self::$_espresso_notices['success'])) { |
|
818 | 818 | // combine messages |
819 | - $success_messages .= implode( self::$_espresso_notices['success'], '<br />' ); |
|
819 | + $success_messages .= implode(self::$_espresso_notices['success'], '<br />'); |
|
820 | 820 | $print_scripts = TRUE; |
821 | 821 | } |
822 | 822 | |
823 | 823 | // check for attention messages |
824 | - if ( self::$_espresso_notices['attention'] && ! empty( self::$_espresso_notices['attention'] ) ) { |
|
824 | + if (self::$_espresso_notices['attention'] && ! empty(self::$_espresso_notices['attention'])) { |
|
825 | 825 | // combine messages |
826 | - $attention_messages .= implode( self::$_espresso_notices['attention'], '<br />' ); |
|
826 | + $attention_messages .= implode(self::$_espresso_notices['attention'], '<br />'); |
|
827 | 827 | $print_scripts = TRUE; |
828 | 828 | } |
829 | 829 | |
830 | 830 | // check for error messages |
831 | - if ( self::$_espresso_notices['errors'] && ! empty( self::$_espresso_notices['errors'] ) ) { |
|
832 | - $error_messages .= count( self::$_espresso_notices['errors'] ) > 1 ? __( 'The following errors have occurred:<br />', 'event_espresso' ) : __( 'An error has occurred:<br />', 'event_espresso' ); |
|
831 | + if (self::$_espresso_notices['errors'] && ! empty(self::$_espresso_notices['errors'])) { |
|
832 | + $error_messages .= count(self::$_espresso_notices['errors']) > 1 ? __('The following errors have occurred:<br />', 'event_espresso') : __('An error has occurred:<br />', 'event_espresso'); |
|
833 | 833 | // combine messages |
834 | - $error_messages .= implode( self::$_espresso_notices['errors'], '<br />' ); |
|
834 | + $error_messages .= implode(self::$_espresso_notices['errors'], '<br />'); |
|
835 | 835 | $print_scripts = TRUE; |
836 | 836 | } |
837 | 837 | |
@@ -845,21 +845,21 @@ discard block |
||
845 | 845 | $css_id = is_admin() ? 'message' : 'espresso-notices-success'; |
846 | 846 | $css_class = is_admin() ? 'updated fade' : 'success fade-away'; |
847 | 847 | //showMessage( $success_messages ); |
848 | - $notices .= '<div id="' . $css_id . '" class="espresso-notices ' . $css_class . '" style="display:none;"><p>' . $success_messages . '</p>' . $close . '</div>'; |
|
848 | + $notices .= '<div id="'.$css_id.'" class="espresso-notices '.$css_class.'" style="display:none;"><p>'.$success_messages.'</p>'.$close.'</div>'; |
|
849 | 849 | } |
850 | 850 | |
851 | 851 | if ($attention_messages != '') { |
852 | 852 | $css_id = is_admin() ? 'message' : 'espresso-notices-attention'; |
853 | 853 | $css_class = is_admin() ? 'updated ee-notices-attention' : 'attention fade-away'; |
854 | 854 | //showMessage( $error_messages, TRUE ); |
855 | - $notices .= '<div id="' . $css_id . '" class="espresso-notices ' . $css_class . '" style="display:none;"><p>' . $attention_messages . '</p>' . $close . '</div>'; |
|
855 | + $notices .= '<div id="'.$css_id.'" class="espresso-notices '.$css_class.'" style="display:none;"><p>'.$attention_messages.'</p>'.$close.'</div>'; |
|
856 | 856 | } |
857 | 857 | |
858 | 858 | if ($error_messages != '') { |
859 | 859 | $css_id = is_admin() ? 'message' : 'espresso-notices-error'; |
860 | 860 | $css_class = is_admin() ? 'error' : 'error fade-away'; |
861 | 861 | //showMessage( $error_messages, TRUE ); |
862 | - $notices .= '<div id="' . $css_id . '" class="espresso-notices ' . $css_class . '" style="display:none;"><p>' . $error_messages . '</p>' . $close . '</div>'; |
|
862 | + $notices .= '<div id="'.$css_id.'" class="espresso-notices '.$css_class.'" style="display:none;"><p>'.$error_messages.'</p>'.$close.'</div>'; |
|
863 | 863 | } |
864 | 864 | |
865 | 865 | $notices .= '</div>'; |
@@ -872,7 +872,7 @@ discard block |
||
872 | 872 | 'errors' => $error_messages |
873 | 873 | ); |
874 | 874 | |
875 | - if ( $remove_empty ) { |
|
875 | + if ($remove_empty) { |
|
876 | 876 | // remove empty notices |
877 | 877 | foreach ($notices as $type => $notice) { |
878 | 878 | if (empty($notice)) { |
@@ -882,7 +882,7 @@ discard block |
||
882 | 882 | } |
883 | 883 | } |
884 | 884 | |
885 | - if ( $print_scripts ) { |
|
885 | + if ($print_scripts) { |
|
886 | 886 | self::_print_scripts(); |
887 | 887 | } |
888 | 888 | |
@@ -902,17 +902,17 @@ discard block |
||
902 | 902 | * @param bool $force_update allows one to enforce the reappearance of a persistent message. |
903 | 903 | * @return void |
904 | 904 | */ |
905 | - public static function add_persistent_admin_notice( $pan_name = '', $pan_message, $force_update = FALSE ) { |
|
906 | - if ( ! empty( $pan_name ) && ! empty( $pan_message )) { |
|
907 | - $persistent_admin_notices = get_option( 'ee_pers_admin_notices', array() ); |
|
905 | + public static function add_persistent_admin_notice($pan_name = '', $pan_message, $force_update = FALSE) { |
|
906 | + if ( ! empty($pan_name) && ! empty($pan_message)) { |
|
907 | + $persistent_admin_notices = get_option('ee_pers_admin_notices', array()); |
|
908 | 908 | //maybe initialize persistent_admin_notices |
909 | - if ( empty( $persistent_admin_notices )) { |
|
910 | - add_option( 'ee_pers_admin_notices', array(), '', 'no' ); |
|
909 | + if (empty($persistent_admin_notices)) { |
|
910 | + add_option('ee_pers_admin_notices', array(), '', 'no'); |
|
911 | 911 | } |
912 | - $pan_name = sanitize_key( $pan_name ); |
|
913 | - if ( ! array_key_exists( $pan_name, $persistent_admin_notices ) || $force_update ) { |
|
914 | - $persistent_admin_notices[ $pan_name ] = $pan_message; |
|
915 | - update_option( 'ee_pers_admin_notices', $persistent_admin_notices ); |
|
912 | + $pan_name = sanitize_key($pan_name); |
|
913 | + if ( ! array_key_exists($pan_name, $persistent_admin_notices) || $force_update) { |
|
914 | + $persistent_admin_notices[$pan_name] = $pan_message; |
|
915 | + update_option('ee_pers_admin_notices', $persistent_admin_notices); |
|
916 | 916 | } |
917 | 917 | } |
918 | 918 | } |
@@ -928,34 +928,34 @@ discard block |
||
928 | 928 | * @param bool $return_immediately |
929 | 929 | * @return void |
930 | 930 | */ |
931 | - public static function dismiss_persistent_admin_notice( $pan_name = '', $purge = FALSE, $return_immediately = FALSE ) { |
|
932 | - $pan_name = EE_Registry::instance()->REQ->is_set( 'ee_nag_notice' ) ? EE_Registry::instance()->REQ->get( 'ee_nag_notice' ) : $pan_name; |
|
933 | - if ( ! empty( $pan_name )) { |
|
934 | - $persistent_admin_notices = get_option( 'ee_pers_admin_notices', array() ); |
|
931 | + public static function dismiss_persistent_admin_notice($pan_name = '', $purge = FALSE, $return_immediately = FALSE) { |
|
932 | + $pan_name = EE_Registry::instance()->REQ->is_set('ee_nag_notice') ? EE_Registry::instance()->REQ->get('ee_nag_notice') : $pan_name; |
|
933 | + if ( ! empty($pan_name)) { |
|
934 | + $persistent_admin_notices = get_option('ee_pers_admin_notices', array()); |
|
935 | 935 | // check if notice we wish to dismiss is actually in the $persistent_admin_notices array |
936 | - if ( is_array( $persistent_admin_notices ) && isset( $persistent_admin_notices[ $pan_name ] )) { |
|
936 | + if (is_array($persistent_admin_notices) && isset($persistent_admin_notices[$pan_name])) { |
|
937 | 937 | // completely delete nag notice, or just NULL message so that it can NOT be added again ? |
938 | - if ( $purge ) { |
|
939 | - unset( $persistent_admin_notices[ $pan_name ] ); |
|
938 | + if ($purge) { |
|
939 | + unset($persistent_admin_notices[$pan_name]); |
|
940 | 940 | } else { |
941 | - $persistent_admin_notices[ $pan_name ] = NULL; |
|
941 | + $persistent_admin_notices[$pan_name] = NULL; |
|
942 | 942 | } |
943 | - if ( update_option( 'ee_pers_admin_notices', $persistent_admin_notices ) === FALSE ) { |
|
944 | - EE_Error::add_error( sprintf( __( 'The persistent admin notice for "%s" could not be deleted.', 'event_espresso' ), $pan_name ), __FILE__, __FUNCTION__, __LINE__ ); |
|
943 | + if (update_option('ee_pers_admin_notices', $persistent_admin_notices) === FALSE) { |
|
944 | + EE_Error::add_error(sprintf(__('The persistent admin notice for "%s" could not be deleted.', 'event_espresso'), $pan_name), __FILE__, __FUNCTION__, __LINE__); |
|
945 | 945 | } |
946 | 946 | } |
947 | 947 | } |
948 | - if ( $return_immediately ) { |
|
948 | + if ($return_immediately) { |
|
949 | 949 | return; |
950 | - } else if ( EE_Registry::instance()->REQ->ajax ) { |
|
950 | + } else if (EE_Registry::instance()->REQ->ajax) { |
|
951 | 951 | // grab any notices and concatenate into string |
952 | - echo json_encode( array( 'errors' => implode( '<br />', EE_Error::get_notices( FALSE )))); |
|
952 | + echo json_encode(array('errors' => implode('<br />', EE_Error::get_notices(FALSE)))); |
|
953 | 953 | exit(); |
954 | 954 | } else { |
955 | 955 | // save errors to a transient to be displayed on next request (after redirect) |
956 | - EE_Error::get_notices( FALSE, TRUE ); |
|
957 | - $return_url = EE_Registry::instance()->REQ->is_set( 'return_url' ) ? EE_Registry::instance()->REQ->get( 'return_url' ) : ''; |
|
958 | - wp_safe_redirect( urldecode( $return_url )); |
|
956 | + EE_Error::get_notices(FALSE, TRUE); |
|
957 | + $return_url = EE_Registry::instance()->REQ->is_set('return_url') ? EE_Registry::instance()->REQ->get('return_url') : ''; |
|
958 | + wp_safe_redirect(urldecode($return_url)); |
|
959 | 959 | } |
960 | 960 | } |
961 | 961 | |
@@ -970,20 +970,20 @@ discard block |
||
970 | 970 | * @param string $return_url URL to go back to after nag notice is dismissed |
971 | 971 | * @return string |
972 | 972 | */ |
973 | - public static function display_persistent_admin_notices( $pan_name = '', $pan_message = '', $return_url = '' ) { |
|
974 | - if ( ! empty( $pan_name ) && ! empty( $pan_message )) { |
|
973 | + public static function display_persistent_admin_notices($pan_name = '', $pan_message = '', $return_url = '') { |
|
974 | + if ( ! empty($pan_name) && ! empty($pan_message)) { |
|
975 | 975 | $args = array( |
976 | 976 | 'nag_notice' => $pan_name, |
977 | - 'return_url' => urlencode( $return_url ), |
|
977 | + 'return_url' => urlencode($return_url), |
|
978 | 978 | 'ajax_url' => WP_AJAX_URL, |
979 | - 'unknown_error' => __( 'An unknown error has occurred on the server while attempting to dismiss this notice.', 'event_espresso' ) |
|
979 | + 'unknown_error' => __('An unknown error has occurred on the server while attempting to dismiss this notice.', 'event_espresso') |
|
980 | 980 | ); |
981 | - wp_localize_script( 'espresso_core', 'ee_dismiss', $args ); |
|
981 | + wp_localize_script('espresso_core', 'ee_dismiss', $args); |
|
982 | 982 | return ' |
983 | - <div id="' . $pan_name . '" class="espresso-notices updated ee-nag-notice clearfix" style="border-left: 4px solid #fcb93c;"> |
|
984 | - <p>' . $pan_message . '</p> |
|
985 | - <a class="dismiss-ee-nag-notice hide-if-no-js" style="float: right; cursor: pointer; text-decoration:none;" rel="' . $pan_name . '"> |
|
986 | - <span class="dashicons dashicons-dismiss" style="position:relative; top:-1px; margin-right:.25em;"></span>'.__( 'Dismiss', 'event_espresso' ) .' |
|
983 | + <div id="' . $pan_name.'" class="espresso-notices updated ee-nag-notice clearfix" style="border-left: 4px solid #fcb93c;"> |
|
984 | + <p>' . $pan_message.'</p> |
|
985 | + <a class="dismiss-ee-nag-notice hide-if-no-js" style="float: right; cursor: pointer; text-decoration:none;" rel="' . $pan_name.'"> |
|
986 | + <span class="dashicons dashicons-dismiss" style="position:relative; top:-1px; margin-right:.25em;"></span>'.__('Dismiss', 'event_espresso').' |
|
987 | 987 | </a> |
988 | 988 | <div style="clear:both;"></div> |
989 | 989 | </div>'; |
@@ -1000,24 +1000,24 @@ discard block |
||
1000 | 1000 | * @param string $return_url |
1001 | 1001 | * @return array |
1002 | 1002 | */ |
1003 | - public static function get_persistent_admin_notices( $return_url = '' ) { |
|
1003 | + public static function get_persistent_admin_notices($return_url = '') { |
|
1004 | 1004 | $notices = ''; |
1005 | 1005 | // check for persistent admin notices |
1006 | 1006 | //filter the list though so plugins can notify the admin in a different way if they want |
1007 | 1007 | $persistent_admin_notices = apply_filters( |
1008 | 1008 | 'FHEE__EE_Error__get_persistent_admin_notices', |
1009 | - get_option( 'ee_pers_admin_notices', FALSE ), |
|
1009 | + get_option('ee_pers_admin_notices', FALSE), |
|
1010 | 1010 | 'ee_pers_admin_notices', |
1011 | 1011 | $return_url |
1012 | 1012 | ); |
1013 | - if ( $persistent_admin_notices ) { |
|
1013 | + if ($persistent_admin_notices) { |
|
1014 | 1014 | // load scripts |
1015 | - wp_register_script( 'espresso_core', EE_GLOBAL_ASSETS_URL . 'scripts/espresso_core.js', array('jquery'), EVENT_ESPRESSO_VERSION, TRUE ); |
|
1016 | - wp_register_script( 'ee_error_js', EE_GLOBAL_ASSETS_URL . 'scripts/EE_Error.js', array('espresso_core'), EVENT_ESPRESSO_VERSION, TRUE ); |
|
1017 | - wp_enqueue_script( 'ee_error_js' ); |
|
1015 | + wp_register_script('espresso_core', EE_GLOBAL_ASSETS_URL.'scripts/espresso_core.js', array('jquery'), EVENT_ESPRESSO_VERSION, TRUE); |
|
1016 | + wp_register_script('ee_error_js', EE_GLOBAL_ASSETS_URL.'scripts/EE_Error.js', array('espresso_core'), EVENT_ESPRESSO_VERSION, TRUE); |
|
1017 | + wp_enqueue_script('ee_error_js'); |
|
1018 | 1018 | // and display notices |
1019 | - foreach( $persistent_admin_notices as $pan_name => $pan_message ) { |
|
1020 | - $notices .= self::display_persistent_admin_notices( $pan_name, $pan_message, $return_url ); |
|
1019 | + foreach ($persistent_admin_notices as $pan_name => $pan_message) { |
|
1020 | + $notices .= self::display_persistent_admin_notices($pan_name, $pan_message, $return_url); |
|
1021 | 1021 | } |
1022 | 1022 | } |
1023 | 1023 | return $notices; |
@@ -1032,26 +1032,26 @@ discard block |
||
1032 | 1032 | * @param bool $force_print |
1033 | 1033 | * @return void |
1034 | 1034 | */ |
1035 | - private static function _print_scripts( $force_print = FALSE ) { |
|
1036 | - if (( did_action( 'admin_enqueue_scripts' ) || did_action( 'wp_enqueue_scripts' )) && ! $force_print ) { |
|
1037 | - if ( wp_script_is( 'ee_error_js', 'enqueued' )) { |
|
1035 | + private static function _print_scripts($force_print = FALSE) { |
|
1036 | + if ((did_action('admin_enqueue_scripts') || did_action('wp_enqueue_scripts')) && ! $force_print) { |
|
1037 | + if (wp_script_is('ee_error_js', 'enqueued')) { |
|
1038 | 1038 | return; |
1039 | - } else if ( wp_script_is( 'ee_error_js', 'registered' )) { |
|
1040 | - add_filter( 'FHEE_load_css', '__return_true' ); |
|
1041 | - add_filter( 'FHEE_load_js', '__return_true' ); |
|
1042 | - wp_enqueue_script( 'ee_error_js' ); |
|
1043 | - wp_localize_script( 'ee_error_js','ee_settings', array( 'wp_debug'=>WP_DEBUG )); |
|
1039 | + } else if (wp_script_is('ee_error_js', 'registered')) { |
|
1040 | + add_filter('FHEE_load_css', '__return_true'); |
|
1041 | + add_filter('FHEE_load_js', '__return_true'); |
|
1042 | + wp_enqueue_script('ee_error_js'); |
|
1043 | + wp_localize_script('ee_error_js', 'ee_settings', array('wp_debug'=>WP_DEBUG)); |
|
1044 | 1044 | } |
1045 | 1045 | } else { |
1046 | 1046 | return ' |
1047 | 1047 | <script> |
1048 | 1048 | /* <![CDATA[ */ |
1049 | -var ee_settings = {"wp_debug":"' . WP_DEBUG . '"}; |
|
1049 | +var ee_settings = {"wp_debug":"' . WP_DEBUG.'"}; |
|
1050 | 1050 | /* ]]> */ |
1051 | 1051 | </script> |
1052 | -<script src="' . includes_url() . 'js/jquery/jquery.js" type="text/javascript"></script> |
|
1053 | -<script src="' . EE_GLOBAL_ASSETS_URL . 'scripts/espresso_core.js' . '?ver=' . espresso_version() . '" type="text/javascript"></script> |
|
1054 | -<script src="' . EE_GLOBAL_ASSETS_URL . 'scripts/EE_Error.js' . '?ver=' . espresso_version() . '" type="text/javascript"></script> |
|
1052 | +<script src="' . includes_url().'js/jquery/jquery.js" type="text/javascript"></script> |
|
1053 | +<script src="' . EE_GLOBAL_ASSETS_URL.'scripts/espresso_core.js'.'?ver='.espresso_version().'" type="text/javascript"></script> |
|
1054 | +<script src="' . EE_GLOBAL_ASSETS_URL.'scripts/EE_Error.js'.'?ver='.espresso_version().'" type="text/javascript"></script> |
|
1055 | 1055 | '; |
1056 | 1056 | |
1057 | 1057 | } |
@@ -1085,11 +1085,11 @@ discard block |
||
1085 | 1085 | * @param string $line |
1086 | 1086 | * @return string |
1087 | 1087 | */ |
1088 | - public static function generate_error_code ( $file = '', $func = '', $line = '' ) { |
|
1089 | - $file = explode( '.', basename( $file )); |
|
1090 | - $error_code = ! empty( $file[0] ) ? $file[0] : ''; |
|
1091 | - $error_code .= ! empty( $func ) ? ' - ' . $func : ''; |
|
1092 | - $error_code .= ! empty( $line ) ? ' - ' . $line : ''; |
|
1088 | + public static function generate_error_code($file = '', $func = '', $line = '') { |
|
1089 | + $file = explode('.', basename($file)); |
|
1090 | + $error_code = ! empty($file[0]) ? $file[0] : ''; |
|
1091 | + $error_code .= ! empty($func) ? ' - '.$func : ''; |
|
1092 | + $error_code .= ! empty($line) ? ' - '.$line : ''; |
|
1093 | 1093 | return $error_code; |
1094 | 1094 | } |
1095 | 1095 | |
@@ -1105,36 +1105,36 @@ discard block |
||
1105 | 1105 | * @ param object $ex |
1106 | 1106 | * @ return void |
1107 | 1107 | */ |
1108 | - public function write_to_error_log ( $time = FALSE, $ex = FALSE, $clear = FALSE ) { |
|
1108 | + public function write_to_error_log($time = FALSE, $ex = FALSE, $clear = FALSE) { |
|
1109 | 1109 | |
1110 | - if ( ! $ex ) { |
|
1110 | + if ( ! $ex) { |
|
1111 | 1111 | return; |
1112 | 1112 | } |
1113 | 1113 | |
1114 | - if ( ! $time ) { |
|
1114 | + if ( ! $time) { |
|
1115 | 1115 | $time = time(); |
1116 | 1116 | } |
1117 | 1117 | |
1118 | - $exception_log = '----------------------------------------------------------------------------------------' . PHP_EOL; |
|
1119 | - $exception_log .= '[' . date( 'Y-m-d H:i:s', $time ) . '] Exception Details' . PHP_EOL; |
|
1120 | - $exception_log .= 'Message: ' . $ex['msg'] . PHP_EOL; |
|
1121 | - $exception_log .= 'Code: '. $ex['code'] . PHP_EOL; |
|
1122 | - $exception_log .= 'File: '. $ex['file'] . PHP_EOL; |
|
1123 | - $exception_log .= 'Line No: ' . $ex['line'] . PHP_EOL; |
|
1124 | - $exception_log .= 'Stack trace: ' . PHP_EOL; |
|
1125 | - $exception_log .= $ex['string'] . PHP_EOL; |
|
1126 | - $exception_log .= '----------------------------------------------------------------------------------------' . PHP_EOL; |
|
1118 | + $exception_log = '----------------------------------------------------------------------------------------'.PHP_EOL; |
|
1119 | + $exception_log .= '['.date('Y-m-d H:i:s', $time).'] Exception Details'.PHP_EOL; |
|
1120 | + $exception_log .= 'Message: '.$ex['msg'].PHP_EOL; |
|
1121 | + $exception_log .= 'Code: '.$ex['code'].PHP_EOL; |
|
1122 | + $exception_log .= 'File: '.$ex['file'].PHP_EOL; |
|
1123 | + $exception_log .= 'Line No: '.$ex['line'].PHP_EOL; |
|
1124 | + $exception_log .= 'Stack trace: '.PHP_EOL; |
|
1125 | + $exception_log .= $ex['string'].PHP_EOL; |
|
1126 | + $exception_log .= '----------------------------------------------------------------------------------------'.PHP_EOL; |
|
1127 | 1127 | |
1128 | 1128 | try { |
1129 | - EEH_File::ensure_file_exists_and_is_writable( EVENT_ESPRESSO_UPLOAD_DIR . 'logs' . DS . self::$_exception_log_file ); |
|
1130 | - EEH_File::add_htaccess_deny_from_all( EVENT_ESPRESSO_UPLOAD_DIR . 'logs' ); |
|
1131 | - if ( ! $clear ) { |
|
1129 | + EEH_File::ensure_file_exists_and_is_writable(EVENT_ESPRESSO_UPLOAD_DIR.'logs'.DS.self::$_exception_log_file); |
|
1130 | + EEH_File::add_htaccess_deny_from_all(EVENT_ESPRESSO_UPLOAD_DIR.'logs'); |
|
1131 | + if ( ! $clear) { |
|
1132 | 1132 | //get existing log file and append new log info |
1133 | - $exception_log = EEH_File::get_file_contents( EVENT_ESPRESSO_UPLOAD_DIR . 'logs' . DS . self::$_exception_log_file ) . $exception_log; |
|
1133 | + $exception_log = EEH_File::get_file_contents(EVENT_ESPRESSO_UPLOAD_DIR.'logs'.DS.self::$_exception_log_file).$exception_log; |
|
1134 | 1134 | } |
1135 | - EEH_File::write_to_file( EVENT_ESPRESSO_UPLOAD_DIR . 'logs' . DS . self::$_exception_log_file, $exception_log ); |
|
1136 | - } catch( EE_Error $e ){ |
|
1137 | - EE_Error::add_error( sprintf( __( 'Event Espresso error logging could not be setup because: %s', 'event_espresso' ), $e->getMessage() )); |
|
1135 | + EEH_File::write_to_file(EVENT_ESPRESSO_UPLOAD_DIR.'logs'.DS.self::$_exception_log_file, $exception_log); |
|
1136 | + } catch (EE_Error $e) { |
|
1137 | + EE_Error::add_error(sprintf(__('Event Espresso error logging could not be setup because: %s', 'event_espresso'), $e->getMessage())); |
|
1138 | 1138 | return; |
1139 | 1139 | } |
1140 | 1140 | |
@@ -1170,8 +1170,8 @@ discard block |
||
1170 | 1170 | $applies_when = '', |
1171 | 1171 | $error_type = null |
1172 | 1172 | ) { |
1173 | - if ( defined('WP_DEBUG') && WP_DEBUG ) { |
|
1174 | - EEH_Debug_Tools::instance()->doing_it_wrong( $function, $message, $version, $applies_when, $error_type ); |
|
1173 | + if (defined('WP_DEBUG') && WP_DEBUG) { |
|
1174 | + EEH_Debug_Tools::instance()->doing_it_wrong($function, $message, $version, $applies_when, $error_type); |
|
1175 | 1175 | } |
1176 | 1176 | } |
1177 | 1177 | |
@@ -1205,13 +1205,13 @@ discard block |
||
1205 | 1205 | */ |
1206 | 1206 | function espresso_error_enqueue_scripts() { |
1207 | 1207 | // js for error handling |
1208 | - wp_register_script( 'espresso_core', EE_GLOBAL_ASSETS_URL . 'scripts/espresso_core.js', array('jquery'), EVENT_ESPRESSO_VERSION, FALSE ); |
|
1209 | - wp_register_script( 'ee_error_js', EE_GLOBAL_ASSETS_URL . 'scripts/EE_Error.js', array('espresso_core'), EVENT_ESPRESSO_VERSION, FALSE ); |
|
1208 | + wp_register_script('espresso_core', EE_GLOBAL_ASSETS_URL.'scripts/espresso_core.js', array('jquery'), EVENT_ESPRESSO_VERSION, FALSE); |
|
1209 | + wp_register_script('ee_error_js', EE_GLOBAL_ASSETS_URL.'scripts/EE_Error.js', array('espresso_core'), EVENT_ESPRESSO_VERSION, FALSE); |
|
1210 | 1210 | } |
1211 | -if ( is_admin() ) { |
|
1212 | - add_action( 'admin_enqueue_scripts', 'espresso_error_enqueue_scripts', 2 ); |
|
1211 | +if (is_admin()) { |
|
1212 | + add_action('admin_enqueue_scripts', 'espresso_error_enqueue_scripts', 2); |
|
1213 | 1213 | } else { |
1214 | - add_action( 'wp_enqueue_scripts', 'espresso_error_enqueue_scripts', 2 ); |
|
1214 | + add_action('wp_enqueue_scripts', 'espresso_error_enqueue_scripts', 2); |
|
1215 | 1215 | } |
1216 | 1216 | |
1217 | 1217 |
@@ -16,8 +16,8 @@ discard block |
||
16 | 16 | use Exception; |
17 | 17 | use InvalidArgumentException; |
18 | 18 | |
19 | -if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) { |
|
20 | - exit( 'No direct script access allowed' ); |
|
19 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
20 | + exit('No direct script access allowed'); |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | |
@@ -115,11 +115,11 @@ discard block |
||
115 | 115 | $progress_step_style = 'number_bubbles', |
116 | 116 | EE_Request $request |
117 | 117 | ) { |
118 | - $this->setBaseUrl( $base_url ); |
|
119 | - $this->setDefaultFormStep( $default_form_step ); |
|
120 | - $this->setFormAction( $form_action ); |
|
121 | - $this->setFormConfig( $form_config ); |
|
122 | - $this->setProgressStepStyle( $progress_step_style ); |
|
118 | + $this->setBaseUrl($base_url); |
|
119 | + $this->setDefaultFormStep($default_form_step); |
|
120 | + $this->setFormAction($form_action); |
|
121 | + $this->setFormConfig($form_config); |
|
122 | + $this->setProgressStepStyle($progress_step_style); |
|
123 | 123 | $this->request = $request; |
124 | 124 | } |
125 | 125 | |
@@ -130,9 +130,9 @@ discard block |
||
130 | 130 | * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
131 | 131 | */ |
132 | 132 | public function baseUrl() { |
133 | - if ( strpos( $this->base_url, $this->getCurrentStep()->slug() ) === false ) { |
|
133 | + if (strpos($this->base_url, $this->getCurrentStep()->slug()) === false) { |
|
134 | 134 | add_query_arg( |
135 | - array( $this->form_step_url_key => $this->getCurrentStep()->slug() ), |
|
135 | + array($this->form_step_url_key => $this->getCurrentStep()->slug()), |
|
136 | 136 | $this->base_url |
137 | 137 | ); |
138 | 138 | } |
@@ -146,13 +146,13 @@ discard block |
||
146 | 146 | * @throws InvalidDataTypeException |
147 | 147 | * @throws InvalidArgumentException |
148 | 148 | */ |
149 | - protected function setBaseUrl( $base_url ) { |
|
150 | - if ( ! is_string( $base_url ) ) { |
|
151 | - throw new InvalidDataTypeException( '$base_url', $base_url, 'string' ); |
|
149 | + protected function setBaseUrl($base_url) { |
|
150 | + if ( ! is_string($base_url)) { |
|
151 | + throw new InvalidDataTypeException('$base_url', $base_url, 'string'); |
|
152 | 152 | } |
153 | - if ( empty( $base_url ) ) { |
|
153 | + if (empty($base_url)) { |
|
154 | 154 | throw new InvalidArgumentException( |
155 | - __( 'The base URL can not be an empty string.', 'event_espresso' ) |
|
155 | + __('The base URL can not be an empty string.', 'event_espresso') |
|
156 | 156 | ); |
157 | 157 | } |
158 | 158 | $this->base_url = $base_url; |
@@ -165,7 +165,7 @@ discard block |
||
165 | 165 | * @throws InvalidDataTypeException |
166 | 166 | */ |
167 | 167 | public function formStepUrlKey() { |
168 | - if ( empty( $this->form_step_url_key ) ) { |
|
168 | + if (empty($this->form_step_url_key)) { |
|
169 | 169 | $this->setFormStepUrlKey(); |
170 | 170 | } |
171 | 171 | return $this->form_step_url_key; |
@@ -177,11 +177,11 @@ discard block |
||
177 | 177 | * @param string $form_step_url_key |
178 | 178 | * @throws InvalidDataTypeException |
179 | 179 | */ |
180 | - public function setFormStepUrlKey( $form_step_url_key = 'ee-form-step' ) { |
|
181 | - if ( ! is_string( $form_step_url_key ) ) { |
|
182 | - throw new InvalidDataTypeException( '$form_step_key', $form_step_url_key, 'string' ); |
|
180 | + public function setFormStepUrlKey($form_step_url_key = 'ee-form-step') { |
|
181 | + if ( ! is_string($form_step_url_key)) { |
|
182 | + throw new InvalidDataTypeException('$form_step_key', $form_step_url_key, 'string'); |
|
183 | 183 | } |
184 | - $this->form_step_url_key = ! empty( $form_step_url_key ) ? $form_step_url_key : 'ee-form-step'; |
|
184 | + $this->form_step_url_key = ! empty($form_step_url_key) ? $form_step_url_key : 'ee-form-step'; |
|
185 | 185 | } |
186 | 186 | |
187 | 187 | |
@@ -199,9 +199,9 @@ discard block |
||
199 | 199 | * @param $default_form_step |
200 | 200 | * @throws InvalidDataTypeException |
201 | 201 | */ |
202 | - protected function setDefaultFormStep( $default_form_step ) { |
|
203 | - if ( ! is_string( $default_form_step ) ) { |
|
204 | - throw new InvalidDataTypeException( '$default_form_step', $default_form_step, 'string' ); |
|
202 | + protected function setDefaultFormStep($default_form_step) { |
|
203 | + if ( ! is_string($default_form_step)) { |
|
204 | + throw new InvalidDataTypeException('$default_form_step', $default_form_step, 'string'); |
|
205 | 205 | } |
206 | 206 | $this->default_form_step = $default_form_step; |
207 | 207 | } |
@@ -214,8 +214,8 @@ discard block |
||
214 | 214 | * @throws InvalidDataTypeException |
215 | 215 | */ |
216 | 216 | protected function setCurrentStepFromRequest() { |
217 | - $current_step_slug = $this->request()->get( $this->formStepUrlKey(), $this->defaultFormStep() ); |
|
218 | - if ( ! $this->form_steps->setCurrent( $current_step_slug ) ) { |
|
217 | + $current_step_slug = $this->request()->get($this->formStepUrlKey(), $this->defaultFormStep()); |
|
218 | + if ( ! $this->form_steps->setCurrent($current_step_slug)) { |
|
219 | 219 | throw new InvalidIdentifierException( |
220 | 220 | $current_step_slug, |
221 | 221 | $this->defaultFormStep(), |
@@ -237,8 +237,8 @@ discard block |
||
237 | 237 | * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
238 | 238 | */ |
239 | 239 | public function getCurrentStep() { |
240 | - if ( ! $this->form_steps->current() instanceof SequentialStepForm ) { |
|
241 | - throw new InvalidFormHandlerException( $this->form_steps->current() ); |
|
240 | + if ( ! $this->form_steps->current() instanceof SequentialStepForm) { |
|
241 | + throw new InvalidFormHandlerException($this->form_steps->current()); |
|
242 | 242 | } |
243 | 243 | return $this->form_steps->current(); |
244 | 244 | } |
@@ -250,7 +250,7 @@ discard block |
||
250 | 250 | * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
251 | 251 | */ |
252 | 252 | public function formAction() { |
253 | - if ( ! is_string( $this->form_action ) || empty( $this->form_action ) ) { |
|
253 | + if ( ! is_string($this->form_action) || empty($this->form_action)) { |
|
254 | 254 | $this->form_action = $this->baseUrl(); |
255 | 255 | } |
256 | 256 | return $this->form_action; |
@@ -262,9 +262,9 @@ discard block |
||
262 | 262 | * @param string $form_action |
263 | 263 | * @throws InvalidDataTypeException |
264 | 264 | */ |
265 | - public function setFormAction( $form_action ) { |
|
266 | - if ( ! is_string( $form_action ) ) { |
|
267 | - throw new InvalidDataTypeException( '$form_action', $form_action, 'string' ); |
|
265 | + public function setFormAction($form_action) { |
|
266 | + if ( ! is_string($form_action)) { |
|
267 | + throw new InvalidDataTypeException('$form_action', $form_action, 'string'); |
|
268 | 268 | } |
269 | 269 | $this->form_action = $form_action; |
270 | 270 | } |
@@ -275,15 +275,15 @@ discard block |
||
275 | 275 | * @param array $form_action_args |
276 | 276 | * @throws InvalidDataTypeException |
277 | 277 | */ |
278 | - public function addFormActionArgs( $form_action_args = array() ) { |
|
279 | - if ( ! is_array( $form_action_args ) ) { |
|
280 | - throw new InvalidDataTypeException( '$form_action_args', $form_action_args, 'array' ); |
|
278 | + public function addFormActionArgs($form_action_args = array()) { |
|
279 | + if ( ! is_array($form_action_args)) { |
|
280 | + throw new InvalidDataTypeException('$form_action_args', $form_action_args, 'array'); |
|
281 | 281 | } |
282 | - $form_action_args = ! empty( $form_action_args ) |
|
282 | + $form_action_args = ! empty($form_action_args) |
|
283 | 283 | ? $form_action_args |
284 | - : array( $this->formStepUrlKey() => $this->form_steps->current()->slug() ); |
|
284 | + : array($this->formStepUrlKey() => $this->form_steps->current()->slug()); |
|
285 | 285 | $this->getCurrentStep()->setFormAction( |
286 | - add_query_arg( $form_action_args, $this->formAction() ) |
|
286 | + add_query_arg($form_action_args, $this->formAction()) |
|
287 | 287 | ); |
288 | 288 | $this->form_action = $this->getCurrentStep()->formAction(); |
289 | 289 | } |
@@ -302,7 +302,7 @@ discard block |
||
302 | 302 | /** |
303 | 303 | * @param string $form_config |
304 | 304 | */ |
305 | - public function setFormConfig( $form_config ) { |
|
305 | + public function setFormConfig($form_config) { |
|
306 | 306 | $this->form_config = $form_config; |
307 | 307 | } |
308 | 308 | |
@@ -320,7 +320,7 @@ discard block |
||
320 | 320 | /** |
321 | 321 | * @param string $progress_step_style |
322 | 322 | */ |
323 | - public function setProgressStepStyle( $progress_step_style ) { |
|
323 | + public function setProgressStepStyle($progress_step_style) { |
|
324 | 324 | $this->progress_step_style = $progress_step_style; |
325 | 325 | } |
326 | 326 | |
@@ -340,7 +340,7 @@ discard block |
||
340 | 340 | */ |
341 | 341 | protected function getProgressStepsCollection() { |
342 | 342 | static $collection = null; |
343 | - if ( ! $collection instanceof ProgressStepCollection ) { |
|
343 | + if ( ! $collection instanceof ProgressStepCollection) { |
|
344 | 344 | $collection = new ProgressStepCollection(); |
345 | 345 | } |
346 | 346 | return $collection; |
@@ -356,12 +356,12 @@ discard block |
||
356 | 356 | * @throws InvalidClassException |
357 | 357 | * @throws InvalidInterfaceException |
358 | 358 | */ |
359 | - protected function generateProgressSteps( Collection $progress_steps_collection ) { |
|
359 | + protected function generateProgressSteps(Collection $progress_steps_collection) { |
|
360 | 360 | $current_step = $this->getCurrentStep(); |
361 | 361 | /** @var SequentialStepForm $form_step */ |
362 | - foreach ( $this->form_steps as $form_step ) { |
|
362 | + foreach ($this->form_steps as $form_step) { |
|
363 | 363 | // is this step active ? |
364 | - if ( ! $form_step->initialize() ) { |
|
364 | + if ( ! $form_step->initialize()) { |
|
365 | 365 | continue; |
366 | 366 | } |
367 | 367 | $progress_steps_collection->add( |
@@ -375,7 +375,7 @@ discard block |
||
375 | 375 | ); |
376 | 376 | } |
377 | 377 | // set collection pointer back to current step |
378 | - $this->form_steps->setCurrentUsingObject( $current_step ); |
|
378 | + $this->form_steps->setCurrentUsingObject($current_step); |
|
379 | 379 | return new ProgressStepManager( |
380 | 380 | $this->progressStepStyle(), |
381 | 381 | $this->defaultFormStep(), |
@@ -409,9 +409,9 @@ discard block |
||
409 | 409 | * @throws InvalidInterfaceException |
410 | 410 | * @throws InvalidArgumentException |
411 | 411 | */ |
412 | - public function processForm( $form_data = array() ) { |
|
412 | + public function processForm($form_data = array()) { |
|
413 | 413 | $this->buildCurrentStepFormForProcessing(); |
414 | - $this->processCurrentStepForm( $form_data ); |
|
414 | + $this->processCurrentStepForm($form_data); |
|
415 | 415 | } |
416 | 416 | |
417 | 417 | |
@@ -427,10 +427,10 @@ discard block |
||
427 | 427 | public function buildCurrentStepFormForDisplay() { |
428 | 428 | $form_step = $this->buildCurrentStepForm(); |
429 | 429 | // no displayable content ? then skip straight to processing |
430 | - if ( ! $form_step->displayable() ) { |
|
430 | + if ( ! $form_step->displayable()) { |
|
431 | 431 | $this->addFormActionArgs(); |
432 | - $form_step->setFormAction( $this->formAction() ); |
|
433 | - wp_safe_redirect( $form_step->formAction() ); |
|
432 | + $form_step->setFormAction($this->formAction()); |
|
433 | + wp_safe_redirect($form_step->formAction()); |
|
434 | 434 | } |
435 | 435 | } |
436 | 436 | |
@@ -445,7 +445,7 @@ discard block |
||
445 | 445 | * @throws InvalidArgumentException |
446 | 446 | */ |
447 | 447 | public function buildCurrentStepFormForProcessing() { |
448 | - $this->buildCurrentStepForm( false ); |
|
448 | + $this->buildCurrentStepForm(false); |
|
449 | 449 | } |
450 | 450 | |
451 | 451 | |
@@ -460,14 +460,14 @@ discard block |
||
460 | 460 | * @throws InvalidInterfaceException |
461 | 461 | * @throws InvalidArgumentException |
462 | 462 | */ |
463 | - private function buildCurrentStepForm( $for_display = true ) { |
|
463 | + private function buildCurrentStepForm($for_display = true) { |
|
464 | 464 | $this->form_steps = $this->getFormStepsCollection(); |
465 | 465 | $this->setCurrentStepFromRequest(); |
466 | 466 | $form_step = $this->getCurrentStep(); |
467 | - if ( $form_step->submitBtnText() === __( 'Submit', 'event_espresso' ) ) { |
|
468 | - $form_step->setSubmitBtnText( __( 'Next Step', 'event_espresso' ) ); |
|
467 | + if ($form_step->submitBtnText() === __('Submit', 'event_espresso')) { |
|
468 | + $form_step->setSubmitBtnText(__('Next Step', 'event_espresso')); |
|
469 | 469 | } |
470 | - if ( $for_display && $form_step->displayable() ) { |
|
470 | + if ($for_display && $form_step->displayable()) { |
|
471 | 471 | $this->progress_step_manager = $this->generateProgressSteps( |
472 | 472 | $this->getProgressStepsCollection() |
473 | 473 | ); |
@@ -478,16 +478,16 @@ discard block |
||
478 | 478 | $this->progress_step_manager->setPreviousStepsCompleted(); |
479 | 479 | $this->progress_step_manager->enqueueStylesAndScripts(); |
480 | 480 | $this->addFormActionArgs(); |
481 | - $form_step->setFormAction( $this->formAction() ); |
|
481 | + $form_step->setFormAction($this->formAction()); |
|
482 | 482 | |
483 | 483 | } else { |
484 | - $form_step->setRedirectUrl( $this->baseUrl() ); |
|
484 | + $form_step->setRedirectUrl($this->baseUrl()); |
|
485 | 485 | $form_step->addRedirectArgs( |
486 | - array( $this->formStepUrlKey() => $this->form_steps->current()->slug() ) |
|
486 | + array($this->formStepUrlKey() => $this->form_steps->current()->slug()) |
|
487 | 487 | ); |
488 | 488 | } |
489 | 489 | $form_step->generate(); |
490 | - if ( $for_display ) { |
|
490 | + if ($for_display) { |
|
491 | 491 | $form_step->enqueueStylesAndScripts(); |
492 | 492 | } |
493 | 493 | return $form_step; |
@@ -499,8 +499,8 @@ discard block |
||
499 | 499 | * @param bool $return_as_string |
500 | 500 | * @return string |
501 | 501 | */ |
502 | - public function displayProgressSteps( $return_as_string = true ) { |
|
503 | - if ( $return_as_string ) { |
|
502 | + public function displayProgressSteps($return_as_string = true) { |
|
503 | + if ($return_as_string) { |
|
504 | 504 | return $this->progress_step_manager->displaySteps(); |
505 | 505 | } |
506 | 506 | echo $this->progress_step_manager->displaySteps(); |
@@ -514,8 +514,8 @@ discard block |
||
514 | 514 | * @return string |
515 | 515 | * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
516 | 516 | */ |
517 | - public function displayCurrentStepForm( $return_as_string = true ) { |
|
518 | - if ( $return_as_string ) { |
|
517 | + public function displayCurrentStepForm($return_as_string = true) { |
|
518 | + if ($return_as_string) { |
|
519 | 519 | return $this->getCurrentStep()->display(); |
520 | 520 | } |
521 | 521 | echo $this->getCurrentStep()->display(); |
@@ -530,32 +530,32 @@ discard block |
||
530 | 530 | * @throws InvalidArgumentException |
531 | 531 | * @throws InvalidDataTypeException |
532 | 532 | */ |
533 | - public function processCurrentStepForm( $form_data = array() ) { |
|
533 | + public function processCurrentStepForm($form_data = array()) { |
|
534 | 534 | // grab instance of current step because after calling next() below, |
535 | 535 | // any calls to getCurrentStep() will return the "next" step because we advanced |
536 | 536 | $current_step = $this->getCurrentStep(); |
537 | 537 | try { |
538 | 538 | // form processing should either throw exceptions or return true |
539 | - $current_step->process( $form_data ); |
|
540 | - } catch ( Exception $e ) { |
|
539 | + $current_step->process($form_data); |
|
540 | + } catch (Exception $e) { |
|
541 | 541 | // something went wrong, so... |
542 | 542 | // if WP_DEBUG === true, display the Exception and stack trace right now |
543 | - new ExceptionStackTraceDisplay( $e ); |
|
543 | + new ExceptionStackTraceDisplay($e); |
|
544 | 544 | // else convert the Exception to an EE_Error |
545 | - EE_Error::add_error( $e->getMessage(), __FILE__, __FUNCTION__, __LINE__ ); |
|
545 | + EE_Error::add_error($e->getMessage(), __FILE__, __FUNCTION__, __LINE__); |
|
546 | 546 | // prevent redirect to next step or other if exception was thrown |
547 | 547 | if ( |
548 | 548 | $current_step->redirectTo() === SequentialStepForm::REDIRECT_TO_NEXT_STEP |
549 | 549 | || $current_step->redirectTo() === SequentialStepForm::REDIRECT_TO_OTHER |
550 | 550 | ) { |
551 | - $current_step->setRedirectTo( SequentialStepForm::REDIRECT_TO_CURRENT_STEP ); |
|
551 | + $current_step->setRedirectTo(SequentialStepForm::REDIRECT_TO_CURRENT_STEP); |
|
552 | 552 | } |
553 | 553 | } |
554 | 554 | // save notices to a transient so that when we redirect back |
555 | 555 | // to the display portion for this step |
556 | 556 | // those notices can be displayed |
557 | - EE_Error::get_notices( false, true ); |
|
558 | - $this->redirectForm( $current_step ); |
|
557 | + EE_Error::get_notices(false, true); |
|
558 | + $this->redirectForm($current_step); |
|
559 | 559 | } |
560 | 560 | |
561 | 561 | |
@@ -565,13 +565,13 @@ discard block |
||
565 | 565 | * |
566 | 566 | * @param \EventEspresso\core\libraries\form_sections\form_handlers\SequentialStepFormInterface $current_step |
567 | 567 | */ |
568 | - public function redirectForm( SequentialStepFormInterface $current_step ) { |
|
568 | + public function redirectForm(SequentialStepFormInterface $current_step) { |
|
569 | 569 | $redirect_step = $current_step; |
570 | - switch( $current_step->redirectTo() ) { |
|
570 | + switch ($current_step->redirectTo()) { |
|
571 | 571 | |
572 | 572 | case SequentialStepForm::REDIRECT_TO_OTHER : |
573 | 573 | // going somewhere else, so just check out now |
574 | - wp_safe_redirect( $redirect_step->redirectUrl() ); |
|
574 | + wp_safe_redirect($redirect_step->redirectUrl()); |
|
575 | 575 | exit(); |
576 | 576 | break; |
577 | 577 | |
@@ -581,7 +581,7 @@ discard block |
||
581 | 581 | |
582 | 582 | case SequentialStepForm::REDIRECT_TO_NEXT_STEP : |
583 | 583 | $this->form_steps->next(); |
584 | - if ( $this->form_steps->valid() ) { |
|
584 | + if ($this->form_steps->valid()) { |
|
585 | 585 | $redirect_step = $this->form_steps->current(); |
586 | 586 | } |
587 | 587 | break; |
@@ -591,12 +591,12 @@ discard block |
||
591 | 591 | // $redirect_step is already set |
592 | 592 | |
593 | 593 | } |
594 | - $current_step->setRedirectUrl( $this->baseUrl() ); |
|
594 | + $current_step->setRedirectUrl($this->baseUrl()); |
|
595 | 595 | $current_step->addRedirectArgs( |
596 | 596 | // use the slug for whatever step we are redirecting too |
597 | - array( $this->formStepUrlKey() => $redirect_step->slug() ) |
|
597 | + array($this->formStepUrlKey() => $redirect_step->slug()) |
|
598 | 598 | ); |
599 | - wp_safe_redirect( $current_step->redirectUrl() ); |
|
599 | + wp_safe_redirect($current_step->redirectUrl()); |
|
600 | 600 | exit(); |
601 | 601 | } |
602 | 602 |
@@ -195,7 +195,7 @@ discard block |
||
195 | 195 | |
196 | 196 | |
197 | 197 | /** |
198 | - * @param $default_form_step |
|
198 | + * @param string $default_form_step |
|
199 | 199 | * @throws InvalidDataTypeException |
200 | 200 | */ |
201 | 201 | protected function setDefaultFormStep( $default_form_step ) { |
@@ -504,7 +504,7 @@ discard block |
||
504 | 504 | |
505 | 505 | /** |
506 | 506 | * @param array $form_data |
507 | - * @return bool |
|
507 | + * @return boolean|null |
|
508 | 508 | * @throws InvalidArgumentException |
509 | 509 | * @throws InvalidDataTypeException |
510 | 510 | */ |
@@ -13,9 +13,9 @@ discard block |
||
13 | 13 | * |
14 | 14 | * @return string |
15 | 15 | */ |
16 | - public function layout_form_begin( $additional_args = array() ) { |
|
16 | + public function layout_form_begin($additional_args = array()) { |
|
17 | 17 | $this->_form_section->set_html_class('form-table'); |
18 | - return parent::layout_form_begin( $additional_args ); |
|
18 | + return parent::layout_form_begin($additional_args); |
|
19 | 19 | } |
20 | 20 | |
21 | 21 | |
@@ -25,11 +25,11 @@ discard block |
||
25 | 25 | * @param EE_Form_Section_Proper $form_section |
26 | 26 | * @return string |
27 | 27 | */ |
28 | - public function layout_subsection( $form_section ){ |
|
29 | - if ( $form_section instanceof EE_Form_Section_Proper ) { |
|
30 | - return EEH_HTML::no_row( $form_section->get_html(), 2 ); |
|
31 | - } else if ( $form_section instanceof EE_Form_Section_HTML ) { |
|
32 | - return EEH_HTML::no_row( $form_section->get_html(), 2 ); |
|
28 | + public function layout_subsection($form_section) { |
|
29 | + if ($form_section instanceof EE_Form_Section_Proper) { |
|
30 | + return EEH_HTML::no_row($form_section->get_html(), 2); |
|
31 | + } else if ($form_section instanceof EE_Form_Section_HTML) { |
|
32 | + return EEH_HTML::no_row($form_section->get_html(), 2); |
|
33 | 33 | } |
34 | 34 | return ''; |
35 | 35 | } |
@@ -41,30 +41,30 @@ discard block |
||
41 | 41 | * @param EE_Form_Input_Base $input |
42 | 42 | * @return string |
43 | 43 | */ |
44 | - public function layout_input( $input ) { |
|
44 | + public function layout_input($input) { |
|
45 | 45 | |
46 | 46 | if ( |
47 | 47 | $input->get_display_strategy() instanceof EE_Text_Area_Display_Strategy || |
48 | 48 | $input->get_display_strategy() instanceof EE_Text_Input_Display_Strategy || |
49 | 49 | $input->get_display_strategy() instanceof EE_Admin_File_Uploader_Display_Strategy |
50 | 50 | ) { |
51 | - $input->set_html_class( $input->html_class() . ' large-text' ); |
|
51 | + $input->set_html_class($input->html_class().' large-text'); |
|
52 | 52 | } |
53 | - if ( $input instanceof EE_Text_Area_Input ) { |
|
54 | - $input->set_rows( 4 ); |
|
55 | - $input->set_cols( 60 ); |
|
53 | + if ($input instanceof EE_Text_Area_Input) { |
|
54 | + $input->set_rows(4); |
|
55 | + $input->set_cols(60); |
|
56 | 56 | } |
57 | 57 | $input_html = $input->get_html_for_input(); |
58 | 58 | // maybe add errors and help text ? |
59 | - $input_html .= $input->get_html_for_errors() != '' ? EEH_HTML::nl() . $input->get_html_for_errors() : ''; |
|
60 | - $input_html .= $input->get_html_for_help() != '' ? EEH_HTML::nl() . $input->get_html_for_help() : ''; |
|
59 | + $input_html .= $input->get_html_for_errors() != '' ? EEH_HTML::nl().$input->get_html_for_errors() : ''; |
|
60 | + $input_html .= $input->get_html_for_help() != '' ? EEH_HTML::nl().$input->get_html_for_help() : ''; |
|
61 | 61 | //overriding parent to add wp admin specific things. |
62 | 62 | $html = ''; |
63 | - if ( $input instanceof EE_Hidden_Input ) { |
|
64 | - $html .= EEH_HTML::no_row( $input->get_html_for_input(), 2 ); |
|
63 | + if ($input instanceof EE_Hidden_Input) { |
|
64 | + $html .= EEH_HTML::no_row($input->get_html_for_input(), 2); |
|
65 | 65 | } else { |
66 | 66 | $html .= EEH_HTML::tr( |
67 | - EEH_HTML::th( $input->get_html_for_label(), '', '', '', 'scope="row"' ) . EEH_HTML::td( $input_html ) |
|
67 | + EEH_HTML::th($input->get_html_for_label(), '', '', '', 'scope="row"').EEH_HTML::td($input_html) |
|
68 | 68 | ); |
69 | 69 | } |
70 | 70 | return $html; |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) { |
|
3 | - exit( 'No direct script access allowed' ); |
|
2 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
3 | + exit('No direct script access allowed'); |
|
4 | 4 | } |
5 | 5 | /** |
6 | 6 | * Class EE_Line_Item_Filter_Collection |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) { |
|
3 | - exit( 'No direct script access allowed' ); |
|
2 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
3 | + exit('No direct script access allowed'); |
|
4 | 4 | } |
5 | 5 | /** |
6 | 6 | * Class EE_Line_Item_Filter_Collection |
@@ -23,30 +23,30 @@ |
||
23 | 23 | abstract class Command implements CommandInterface |
24 | 24 | { |
25 | 25 | |
26 | - /* |
|
26 | + /* |
|
27 | 27 | * @var CapCheckInterface $cap_check |
28 | 28 | */ |
29 | - protected $cap_check; |
|
29 | + protected $cap_check; |
|
30 | 30 | |
31 | 31 | |
32 | 32 | |
33 | - /** |
|
34 | - * @return mixed |
|
35 | - */ |
|
36 | - public function getCapCheck() |
|
37 | - { |
|
38 | - return $this->cap_check; |
|
39 | - } |
|
33 | + /** |
|
34 | + * @return mixed |
|
35 | + */ |
|
36 | + public function getCapCheck() |
|
37 | + { |
|
38 | + return $this->cap_check; |
|
39 | + } |
|
40 | 40 | |
41 | 41 | |
42 | 42 | |
43 | - /** |
|
44 | - * @param CapCheckInterface $cap_check |
|
45 | - */ |
|
46 | - public function setCapCheck(CapCheckInterface $cap_check) |
|
47 | - { |
|
48 | - $this->cap_check = $cap_check; |
|
49 | - } |
|
43 | + /** |
|
44 | + * @param CapCheckInterface $cap_check |
|
45 | + */ |
|
46 | + public function setCapCheck(CapCheckInterface $cap_check) |
|
47 | + { |
|
48 | + $this->cap_check = $cap_check; |
|
49 | + } |
|
50 | 50 | |
51 | 51 | } |
52 | 52 | // End of file Command.php |
@@ -12,8 +12,7 @@ |
||
12 | 12 | * DTO for passing data to a UpdateRegistrationAndTransactionAfterChangeCommandHandler |
13 | 13 | * |
14 | 14 | * @package Event Espresso |
15 | - |
|
16 | -*@author Brent Christensen |
|
15 | + *@author Brent Christensen |
|
17 | 16 | * @since $VID:$ |
18 | 17 | */ |
19 | 18 | class UpdateRegistrationAndTransactionAfterChangeCommand extends SingleRegistrationCommand |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) { |
|
3 | - exit( 'No direct script access allowed' ); |
|
2 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
3 | + exit('No direct script access allowed'); |
|
4 | 4 | } |
5 | 5 | /** |
6 | 6 | * Class EE_Line_Item_Filter_Collection |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) { |
|
3 | - exit( 'No direct script access allowed' ); |
|
2 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
3 | + exit('No direct script access allowed'); |
|
4 | 4 | } |
5 | 5 | /** |
6 | 6 | * Class EE_Line_Item_Filter_Collection |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) { |
|
3 | - exit( 'No direct script access allowed' ); |
|
2 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
3 | + exit('No direct script access allowed'); |
|
4 | 4 | } |
5 | 5 | /** |
6 | 6 | * Class EE_Line_Item_Filter_Collection |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) { |
|
3 | - exit( 'No direct script access allowed' ); |
|
2 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
3 | + exit('No direct script access allowed'); |
|
4 | 4 | } |
5 | 5 | /** |
6 | 6 | * Class EE_Line_Item_Filter_Collection |