@@ -11,98 +11,98 @@ |
||
11 | 11 | class EE_Admin_File_Uploader_Display_Strategy extends EE_Display_Strategy_Base |
12 | 12 | { |
13 | 13 | |
14 | - /** |
|
15 | - * Its important this media only get enqueued AFTER init, but before the footer... where the |
|
16 | - * rest of our forms JS gets enqueued. Otherwise the JS gets enqueued fine, and loaded on the page fine, |
|
17 | - * but when you upload an image it gets uploaded fine to the server, but it doesn't display and reports an error |
|
18 | - * (also it doesn't show any of the currently existing media in the modal window that pops up when you click the button |
|
19 | - * to select media). |
|
20 | - * Besides that, no special consideration should be required to make the media uploader appear, besides having |
|
21 | - * this input displayed. |
|
22 | - * |
|
23 | - * @deprecated. enqueue_js should be called automatically now |
|
24 | - */ |
|
25 | - public static function enqueue_scripts() |
|
26 | - { |
|
27 | - EE_Error::doing_it_wrong( |
|
28 | - __FUNCTION__, |
|
29 | - __( |
|
30 | - 'EE_Admin_File_Uploader_Display_Strategy::enqueue_scripts() no longer needs to be called in order to display the admin uploader input correctly. This is handled now by EE_Admin_File_Uploader_Display_Strategy::enqueue_js() which is called automatically when enqueueing JS and CSS for the form', |
|
31 | - 'event_espresso' |
|
32 | - ), |
|
33 | - '4.9.8.rc.015' |
|
34 | - ); |
|
35 | - wp_enqueue_media(); |
|
36 | - wp_enqueue_script('media-upload'); |
|
37 | - wp_enqueue_script('ee-payments', EE_GLOBAL_ASSETS_URL . 'scripts/ee-media-uploader.js'); |
|
38 | - } |
|
14 | + /** |
|
15 | + * Its important this media only get enqueued AFTER init, but before the footer... where the |
|
16 | + * rest of our forms JS gets enqueued. Otherwise the JS gets enqueued fine, and loaded on the page fine, |
|
17 | + * but when you upload an image it gets uploaded fine to the server, but it doesn't display and reports an error |
|
18 | + * (also it doesn't show any of the currently existing media in the modal window that pops up when you click the button |
|
19 | + * to select media). |
|
20 | + * Besides that, no special consideration should be required to make the media uploader appear, besides having |
|
21 | + * this input displayed. |
|
22 | + * |
|
23 | + * @deprecated. enqueue_js should be called automatically now |
|
24 | + */ |
|
25 | + public static function enqueue_scripts() |
|
26 | + { |
|
27 | + EE_Error::doing_it_wrong( |
|
28 | + __FUNCTION__, |
|
29 | + __( |
|
30 | + 'EE_Admin_File_Uploader_Display_Strategy::enqueue_scripts() no longer needs to be called in order to display the admin uploader input correctly. This is handled now by EE_Admin_File_Uploader_Display_Strategy::enqueue_js() which is called automatically when enqueueing JS and CSS for the form', |
|
31 | + 'event_espresso' |
|
32 | + ), |
|
33 | + '4.9.8.rc.015' |
|
34 | + ); |
|
35 | + wp_enqueue_media(); |
|
36 | + wp_enqueue_script('media-upload'); |
|
37 | + wp_enqueue_script('ee-payments', EE_GLOBAL_ASSETS_URL . 'scripts/ee-media-uploader.js'); |
|
38 | + } |
|
39 | 39 | |
40 | 40 | |
41 | - /** |
|
42 | - * Enqueues the JS and CSS needed to display this input |
|
43 | - */ |
|
44 | - public function enqueue_js() |
|
45 | - { |
|
46 | - wp_enqueue_media(); |
|
47 | - wp_enqueue_script('media-upload'); |
|
48 | - wp_enqueue_script('ee-payments', EE_GLOBAL_ASSETS_URL . 'scripts/ee-media-uploader.js'); |
|
49 | - parent::enqueue_js(); |
|
50 | - } |
|
41 | + /** |
|
42 | + * Enqueues the JS and CSS needed to display this input |
|
43 | + */ |
|
44 | + public function enqueue_js() |
|
45 | + { |
|
46 | + wp_enqueue_media(); |
|
47 | + wp_enqueue_script('media-upload'); |
|
48 | + wp_enqueue_script('ee-payments', EE_GLOBAL_ASSETS_URL . 'scripts/ee-media-uploader.js'); |
|
49 | + parent::enqueue_js(); |
|
50 | + } |
|
51 | 51 | |
52 | 52 | |
53 | - /** |
|
54 | - * @return string of html to display the field |
|
55 | - */ |
|
53 | + /** |
|
54 | + * @return string of html to display the field |
|
55 | + */ |
|
56 | 56 | |
57 | - public function display() |
|
58 | - { |
|
59 | - // the actual input |
|
60 | - $input = '<input type="text" size="34" '; |
|
61 | - $input .= 'name="' . $this->_input->html_name() . '" '; |
|
62 | - $input .= $this->_input->html_class() !== '' |
|
63 | - ? 'class="large-text ee_media_url ' . $this->_input->html_class() . '" ' |
|
64 | - : 'class="large-text ee_media_url" '; |
|
65 | - $input .= 'value="' . $this->_input->raw_value_in_form() . '" '; |
|
66 | - $input .= $this->_input->other_html_attributes() . '>'; |
|
67 | - // image uploader |
|
68 | - $uploader = EEH_HTML::link( |
|
69 | - '#', |
|
70 | - '<img src="' . admin_url('images/media-button-image.gif') . '" >', |
|
71 | - __('click to add an image', 'event_espresso'), |
|
72 | - '', |
|
73 | - 'ee_media_upload' |
|
74 | - ); |
|
75 | - // only attempt to show the image if it at least exists |
|
76 | - $image = $this->_input->raw_value() && $this->src_exists($this->_input->raw_value()) |
|
77 | - ? EEH_HTML::br(2) . EEH_HTML::img( |
|
78 | - $this->_input->raw_value(), |
|
79 | - __('logo', 'event_espresso'), |
|
80 | - '', |
|
81 | - 'ee_media_image' |
|
82 | - ) |
|
83 | - : ''; |
|
84 | - // html string |
|
85 | - return EEH_HTML::div( |
|
86 | - $input . EEH_HTML::nbsp() . $uploader . $image, |
|
87 | - '', |
|
88 | - 'ee_media_uploader_area' |
|
89 | - ); |
|
90 | - } |
|
57 | + public function display() |
|
58 | + { |
|
59 | + // the actual input |
|
60 | + $input = '<input type="text" size="34" '; |
|
61 | + $input .= 'name="' . $this->_input->html_name() . '" '; |
|
62 | + $input .= $this->_input->html_class() !== '' |
|
63 | + ? 'class="large-text ee_media_url ' . $this->_input->html_class() . '" ' |
|
64 | + : 'class="large-text ee_media_url" '; |
|
65 | + $input .= 'value="' . $this->_input->raw_value_in_form() . '" '; |
|
66 | + $input .= $this->_input->other_html_attributes() . '>'; |
|
67 | + // image uploader |
|
68 | + $uploader = EEH_HTML::link( |
|
69 | + '#', |
|
70 | + '<img src="' . admin_url('images/media-button-image.gif') . '" >', |
|
71 | + __('click to add an image', 'event_espresso'), |
|
72 | + '', |
|
73 | + 'ee_media_upload' |
|
74 | + ); |
|
75 | + // only attempt to show the image if it at least exists |
|
76 | + $image = $this->_input->raw_value() && $this->src_exists($this->_input->raw_value()) |
|
77 | + ? EEH_HTML::br(2) . EEH_HTML::img( |
|
78 | + $this->_input->raw_value(), |
|
79 | + __('logo', 'event_espresso'), |
|
80 | + '', |
|
81 | + 'ee_media_image' |
|
82 | + ) |
|
83 | + : ''; |
|
84 | + // html string |
|
85 | + return EEH_HTML::div( |
|
86 | + $input . EEH_HTML::nbsp() . $uploader . $image, |
|
87 | + '', |
|
88 | + 'ee_media_uploader_area' |
|
89 | + ); |
|
90 | + } |
|
91 | 91 | |
92 | 92 | |
93 | - /** |
|
94 | - * Asserts an image actually exists as quickly as possible by sending a HEAD |
|
95 | - * request |
|
96 | - * |
|
97 | - * @param string $src |
|
98 | - * @return boolean |
|
99 | - */ |
|
100 | - protected function src_exists($src) |
|
101 | - { |
|
102 | - $results = wp_remote_head($src); |
|
103 | - if (is_array($results) && ! $results instanceof WP_Error) { |
|
104 | - return strpos($results['headers']['content-type'], "image") !== false; |
|
105 | - } |
|
106 | - return false; |
|
107 | - } |
|
93 | + /** |
|
94 | + * Asserts an image actually exists as quickly as possible by sending a HEAD |
|
95 | + * request |
|
96 | + * |
|
97 | + * @param string $src |
|
98 | + * @return boolean |
|
99 | + */ |
|
100 | + protected function src_exists($src) |
|
101 | + { |
|
102 | + $results = wp_remote_head($src); |
|
103 | + if (is_array($results) && ! $results instanceof WP_Error) { |
|
104 | + return strpos($results['headers']['content-type'], "image") !== false; |
|
105 | + } |
|
106 | + return false; |
|
107 | + } |
|
108 | 108 | } |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | ); |
35 | 35 | wp_enqueue_media(); |
36 | 36 | wp_enqueue_script('media-upload'); |
37 | - wp_enqueue_script('ee-payments', EE_GLOBAL_ASSETS_URL . 'scripts/ee-media-uploader.js'); |
|
37 | + wp_enqueue_script('ee-payments', EE_GLOBAL_ASSETS_URL.'scripts/ee-media-uploader.js'); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | { |
46 | 46 | wp_enqueue_media(); |
47 | 47 | wp_enqueue_script('media-upload'); |
48 | - wp_enqueue_script('ee-payments', EE_GLOBAL_ASSETS_URL . 'scripts/ee-media-uploader.js'); |
|
48 | + wp_enqueue_script('ee-payments', EE_GLOBAL_ASSETS_URL.'scripts/ee-media-uploader.js'); |
|
49 | 49 | parent::enqueue_js(); |
50 | 50 | } |
51 | 51 | |
@@ -58,23 +58,23 @@ discard block |
||
58 | 58 | { |
59 | 59 | // the actual input |
60 | 60 | $input = '<input type="text" size="34" '; |
61 | - $input .= 'name="' . $this->_input->html_name() . '" '; |
|
61 | + $input .= 'name="'.$this->_input->html_name().'" '; |
|
62 | 62 | $input .= $this->_input->html_class() !== '' |
63 | - ? 'class="large-text ee_media_url ' . $this->_input->html_class() . '" ' |
|
63 | + ? 'class="large-text ee_media_url '.$this->_input->html_class().'" ' |
|
64 | 64 | : 'class="large-text ee_media_url" '; |
65 | - $input .= 'value="' . $this->_input->raw_value_in_form() . '" '; |
|
66 | - $input .= $this->_input->other_html_attributes() . '>'; |
|
65 | + $input .= 'value="'.$this->_input->raw_value_in_form().'" '; |
|
66 | + $input .= $this->_input->other_html_attributes().'>'; |
|
67 | 67 | // image uploader |
68 | 68 | $uploader = EEH_HTML::link( |
69 | 69 | '#', |
70 | - '<img src="' . admin_url('images/media-button-image.gif') . '" >', |
|
70 | + '<img src="'.admin_url('images/media-button-image.gif').'" >', |
|
71 | 71 | __('click to add an image', 'event_espresso'), |
72 | 72 | '', |
73 | 73 | 'ee_media_upload' |
74 | 74 | ); |
75 | 75 | // only attempt to show the image if it at least exists |
76 | 76 | $image = $this->_input->raw_value() && $this->src_exists($this->_input->raw_value()) |
77 | - ? EEH_HTML::br(2) . EEH_HTML::img( |
|
77 | + ? EEH_HTML::br(2).EEH_HTML::img( |
|
78 | 78 | $this->_input->raw_value(), |
79 | 79 | __('logo', 'event_espresso'), |
80 | 80 | '', |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | : ''; |
84 | 84 | // html string |
85 | 85 | return EEH_HTML::div( |
86 | - $input . EEH_HTML::nbsp() . $uploader . $image, |
|
86 | + $input.EEH_HTML::nbsp().$uploader.$image, |
|
87 | 87 | '', |
88 | 88 | 'ee_media_uploader_area' |
89 | 89 | ); |
@@ -23,44 +23,44 @@ |
||
23 | 23 | class RouteMatchSpecificationFactory extends FactoryWithDependencyResolver |
24 | 24 | { |
25 | 25 | |
26 | - /** |
|
27 | - * RouteMatchSpecificationFactory constructor |
|
28 | - * |
|
29 | - * @param RouteMatchSpecificationDependencyResolver $dependency_resolver |
|
30 | - * @param LoaderInterface $loader |
|
31 | - */ |
|
32 | - public function __construct(RouteMatchSpecificationDependencyResolver $dependency_resolver, LoaderInterface $loader) |
|
33 | - { |
|
34 | - parent::__construct($dependency_resolver, $loader); |
|
35 | - } |
|
26 | + /** |
|
27 | + * RouteMatchSpecificationFactory constructor |
|
28 | + * |
|
29 | + * @param RouteMatchSpecificationDependencyResolver $dependency_resolver |
|
30 | + * @param LoaderInterface $loader |
|
31 | + */ |
|
32 | + public function __construct(RouteMatchSpecificationDependencyResolver $dependency_resolver, LoaderInterface $loader) |
|
33 | + { |
|
34 | + parent::__construct($dependency_resolver, $loader); |
|
35 | + } |
|
36 | 36 | |
37 | - /** |
|
38 | - * @param $fqcn |
|
39 | - * @return RouteMatchSpecification |
|
40 | - * @throws InvalidDataTypeException |
|
41 | - * @since 4.9.71.p |
|
42 | - */ |
|
43 | - public function createNewRouteMatchSpecification($fqcn) |
|
44 | - { |
|
45 | - $this->dependencyResolver()->resolveDependenciesForClass($fqcn); |
|
46 | - return $this->loader()->getShared($fqcn); |
|
47 | - } |
|
37 | + /** |
|
38 | + * @param $fqcn |
|
39 | + * @return RouteMatchSpecification |
|
40 | + * @throws InvalidDataTypeException |
|
41 | + * @since 4.9.71.p |
|
42 | + */ |
|
43 | + public function createNewRouteMatchSpecification($fqcn) |
|
44 | + { |
|
45 | + $this->dependencyResolver()->resolveDependenciesForClass($fqcn); |
|
46 | + return $this->loader()->getShared($fqcn); |
|
47 | + } |
|
48 | 48 | |
49 | 49 | |
50 | - /** |
|
51 | - * @param $fqcn |
|
52 | - * @return RouteMatchSpecification |
|
53 | - * @throws InvalidArgumentException |
|
54 | - * @throws InvalidDataTypeException |
|
55 | - * @throws InvalidInterfaceException |
|
56 | - * @since 4.9.71.p |
|
57 | - */ |
|
58 | - public static function create($fqcn) |
|
59 | - { |
|
60 | - /** @var RouteMatchSpecificationFactory $specification_factory */ |
|
61 | - $specification_factory = LoaderFactory::getLoader()->getShared( |
|
62 | - 'EventEspresso\core\services\routing\RouteMatchSpecificationFactory' |
|
63 | - ); |
|
64 | - return $specification_factory->createNewRouteMatchSpecification($fqcn); |
|
65 | - } |
|
50 | + /** |
|
51 | + * @param $fqcn |
|
52 | + * @return RouteMatchSpecification |
|
53 | + * @throws InvalidArgumentException |
|
54 | + * @throws InvalidDataTypeException |
|
55 | + * @throws InvalidInterfaceException |
|
56 | + * @since 4.9.71.p |
|
57 | + */ |
|
58 | + public static function create($fqcn) |
|
59 | + { |
|
60 | + /** @var RouteMatchSpecificationFactory $specification_factory */ |
|
61 | + $specification_factory = LoaderFactory::getLoader()->getShared( |
|
62 | + 'EventEspresso\core\services\routing\RouteMatchSpecificationFactory' |
|
63 | + ); |
|
64 | + return $specification_factory->createNewRouteMatchSpecification($fqcn); |
|
65 | + } |
|
66 | 66 | } |
@@ -10,8 +10,8 @@ discard block |
||
10 | 10 | // if you're a dev and want to receive all errors via email |
11 | 11 | // add this to your wp-config.php: define( 'EE_ERROR_EMAILS', TRUE ); |
12 | 12 | if (defined('WP_DEBUG') && WP_DEBUG === true && defined('EE_ERROR_EMAILS') && EE_ERROR_EMAILS === true) { |
13 | - set_error_handler(array('EE_Error', 'error_handler')); |
|
14 | - register_shutdown_function(array('EE_Error', 'fatal_error_handler')); |
|
13 | + set_error_handler(array('EE_Error', 'error_handler')); |
|
14 | + register_shutdown_function(array('EE_Error', 'fatal_error_handler')); |
|
15 | 15 | } |
16 | 16 | |
17 | 17 | |
@@ -25,251 +25,251 @@ discard block |
||
25 | 25 | class EE_Error extends Exception |
26 | 26 | { |
27 | 27 | |
28 | - const OPTIONS_KEY_NOTICES = 'ee_notices'; |
|
29 | - |
|
30 | - |
|
31 | - /** |
|
32 | - * name of the file to log exceptions to |
|
33 | - * |
|
34 | - * @var string |
|
35 | - */ |
|
36 | - private static $_exception_log_file = 'espresso_error_log.txt'; |
|
37 | - |
|
38 | - /** |
|
39 | - * stores details for all exception |
|
40 | - * |
|
41 | - * @var array |
|
42 | - */ |
|
43 | - private static $_all_exceptions = array(); |
|
44 | - |
|
45 | - /** |
|
46 | - * tracks number of errors |
|
47 | - * |
|
48 | - * @var int |
|
49 | - */ |
|
50 | - private static $_error_count = 0; |
|
51 | - |
|
52 | - /** |
|
53 | - * @var array $_espresso_notices |
|
54 | - */ |
|
55 | - private static $_espresso_notices = array('success' => false, 'errors' => false, 'attention' => false); |
|
56 | - |
|
57 | - |
|
58 | - /** |
|
59 | - * @override default exception handling |
|
60 | - * @param string $message |
|
61 | - * @param int $code |
|
62 | - * @param Exception|null $previous |
|
63 | - */ |
|
64 | - public function __construct($message, $code = 0, Exception $previous = null) |
|
65 | - { |
|
66 | - if (version_compare(PHP_VERSION, '5.3.0', '<')) { |
|
67 | - parent::__construct($message, $code); |
|
68 | - } else { |
|
69 | - parent::__construct($message, $code, $previous); |
|
70 | - } |
|
71 | - } |
|
72 | - |
|
73 | - |
|
74 | - /** |
|
75 | - * error_handler |
|
76 | - * |
|
77 | - * @param $code |
|
78 | - * @param $message |
|
79 | - * @param $file |
|
80 | - * @param $line |
|
81 | - * @return void |
|
82 | - */ |
|
83 | - public static function error_handler($code, $message, $file, $line) |
|
84 | - { |
|
85 | - $type = EE_Error::error_type($code); |
|
86 | - $site = site_url(); |
|
87 | - switch ($site) { |
|
88 | - case 'http://ee4.eventespresso.com/': |
|
89 | - case 'http://ee4decaf.eventespresso.com/': |
|
90 | - case 'http://ee4hf.eventespresso.com/': |
|
91 | - case 'http://ee4a.eventespresso.com/': |
|
92 | - case 'http://ee4ad.eventespresso.com/': |
|
93 | - case 'http://ee4b.eventespresso.com/': |
|
94 | - case 'http://ee4bd.eventespresso.com/': |
|
95 | - case 'http://ee4d.eventespresso.com/': |
|
96 | - case 'http://ee4dd.eventespresso.com/': |
|
97 | - $to = '[email protected]'; |
|
98 | - break; |
|
99 | - default: |
|
100 | - $to = get_option('admin_email'); |
|
101 | - } |
|
102 | - $subject = $type . ' ' . $message . ' in ' . EVENT_ESPRESSO_VERSION . ' on ' . site_url(); |
|
103 | - $msg = EE_Error::_format_error($type, $message, $file, $line); |
|
104 | - if (function_exists('wp_mail')) { |
|
105 | - add_filter('wp_mail_content_type', array('EE_Error', 'set_content_type')); |
|
106 | - wp_mail($to, $subject, $msg); |
|
107 | - } |
|
108 | - echo '<div id="message" class="espresso-notices error"><p>'; |
|
109 | - echo $type . ': ' . $message . '<br />' . $file . ' line ' . $line; |
|
110 | - echo '<br /></p></div>'; |
|
111 | - } |
|
112 | - |
|
113 | - |
|
114 | - /** |
|
115 | - * error_type |
|
116 | - * http://www.php.net/manual/en/errorfunc.constants.php#109430 |
|
117 | - * |
|
118 | - * @param $code |
|
119 | - * @return string |
|
120 | - */ |
|
121 | - public static function error_type($code) |
|
122 | - { |
|
123 | - switch ($code) { |
|
124 | - case E_ERROR: // 1 // |
|
125 | - return 'E_ERROR'; |
|
126 | - case E_WARNING: // 2 // |
|
127 | - return 'E_WARNING'; |
|
128 | - case E_PARSE: // 4 // |
|
129 | - return 'E_PARSE'; |
|
130 | - case E_NOTICE: // 8 // |
|
131 | - return 'E_NOTICE'; |
|
132 | - case E_CORE_ERROR: // 16 // |
|
133 | - return 'E_CORE_ERROR'; |
|
134 | - case E_CORE_WARNING: // 32 // |
|
135 | - return 'E_CORE_WARNING'; |
|
136 | - case E_COMPILE_ERROR: // 64 // |
|
137 | - return 'E_COMPILE_ERROR'; |
|
138 | - case E_COMPILE_WARNING: // 128 // |
|
139 | - return 'E_COMPILE_WARNING'; |
|
140 | - case E_USER_ERROR: // 256 // |
|
141 | - return 'E_USER_ERROR'; |
|
142 | - case E_USER_WARNING: // 512 // |
|
143 | - return 'E_USER_WARNING'; |
|
144 | - case E_USER_NOTICE: // 1024 // |
|
145 | - return 'E_USER_NOTICE'; |
|
146 | - case E_STRICT: // 2048 // |
|
147 | - return 'E_STRICT'; |
|
148 | - case E_RECOVERABLE_ERROR: // 4096 // |
|
149 | - return 'E_RECOVERABLE_ERROR'; |
|
150 | - case E_DEPRECATED: // 8192 // |
|
151 | - return 'E_DEPRECATED'; |
|
152 | - case E_USER_DEPRECATED: // 16384 // |
|
153 | - return 'E_USER_DEPRECATED'; |
|
154 | - case E_ALL: // 16384 // |
|
155 | - return 'E_ALL'; |
|
156 | - } |
|
157 | - return ''; |
|
158 | - } |
|
159 | - |
|
160 | - |
|
161 | - /** |
|
162 | - * fatal_error_handler |
|
163 | - * |
|
164 | - * @return void |
|
165 | - */ |
|
166 | - public static function fatal_error_handler() |
|
167 | - { |
|
168 | - $last_error = error_get_last(); |
|
169 | - if ($last_error['type'] === E_ERROR) { |
|
170 | - EE_Error::error_handler(E_ERROR, $last_error['message'], $last_error['file'], $last_error['line']); |
|
171 | - } |
|
172 | - } |
|
173 | - |
|
174 | - |
|
175 | - /** |
|
176 | - * _format_error |
|
177 | - * |
|
178 | - * @param $code |
|
179 | - * @param $message |
|
180 | - * @param $file |
|
181 | - * @param $line |
|
182 | - * @return string |
|
183 | - */ |
|
184 | - private static function _format_error($code, $message, $file, $line) |
|
185 | - { |
|
186 | - $html = "<table cellpadding='5'><thead bgcolor='#f8f8f8'><th>Item</th><th align='left'>Details</th></thead><tbody>"; |
|
187 | - $html .= "<tr valign='top'><td><b>Code</b></td><td>$code</td></tr>"; |
|
188 | - $html .= "<tr valign='top'><td><b>Error</b></td><td>$message</td></tr>"; |
|
189 | - $html .= "<tr valign='top'><td><b>File</b></td><td>$file</td></tr>"; |
|
190 | - $html .= "<tr valign='top'><td><b>Line</b></td><td>$line</td></tr>"; |
|
191 | - $html .= '</tbody></table>'; |
|
192 | - return $html; |
|
193 | - } |
|
194 | - |
|
195 | - |
|
196 | - /** |
|
197 | - * set_content_type |
|
198 | - * |
|
199 | - * @param $content_type |
|
200 | - * @return string |
|
201 | - */ |
|
202 | - public static function set_content_type($content_type) |
|
203 | - { |
|
204 | - return 'text/html'; |
|
205 | - } |
|
206 | - |
|
207 | - |
|
208 | - /** |
|
209 | - * @return void |
|
210 | - * @throws EE_Error |
|
211 | - * @throws ReflectionException |
|
212 | - */ |
|
213 | - public function get_error() |
|
214 | - { |
|
215 | - if (apply_filters('FHEE__EE_Error__get_error__show_normal_exceptions', false)) { |
|
216 | - throw $this; |
|
217 | - } |
|
218 | - // get separate user and developer messages if they exist |
|
219 | - $msg = explode('||', $this->getMessage()); |
|
220 | - $user_msg = $msg[0]; |
|
221 | - $dev_msg = isset($msg[1]) ? $msg[1] : $msg[0]; |
|
222 | - $msg = WP_DEBUG ? $dev_msg : $user_msg; |
|
223 | - // add details to _all_exceptions array |
|
224 | - $x_time = time(); |
|
225 | - self::$_all_exceptions[ $x_time ]['name'] = get_class($this); |
|
226 | - self::$_all_exceptions[ $x_time ]['file'] = $this->getFile(); |
|
227 | - self::$_all_exceptions[ $x_time ]['line'] = $this->getLine(); |
|
228 | - self::$_all_exceptions[ $x_time ]['msg'] = $msg; |
|
229 | - self::$_all_exceptions[ $x_time ]['code'] = $this->getCode(); |
|
230 | - self::$_all_exceptions[ $x_time ]['trace'] = $this->getTrace(); |
|
231 | - self::$_all_exceptions[ $x_time ]['string'] = $this->getTraceAsString(); |
|
232 | - self::$_error_count++; |
|
233 | - // add_action( 'shutdown', array( $this, 'display_errors' )); |
|
234 | - $this->display_errors(); |
|
235 | - } |
|
236 | - |
|
237 | - |
|
238 | - /** |
|
239 | - * @param bool $check_stored |
|
240 | - * @param string $type_to_check |
|
241 | - * @return bool |
|
242 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
243 | - * @throws \InvalidArgumentException |
|
244 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
245 | - * @throws InvalidInterfaceException |
|
246 | - */ |
|
247 | - public static function has_error($check_stored = false, $type_to_check = 'errors') |
|
248 | - { |
|
249 | - $has_error = isset(self::$_espresso_notices[ $type_to_check ]) |
|
250 | - && ! empty(self::$_espresso_notices[ $type_to_check ]) |
|
251 | - ? true |
|
252 | - : false; |
|
253 | - if ($check_stored && ! $has_error) { |
|
254 | - $notices = EE_Error::getStoredNotices(); |
|
255 | - foreach ($notices as $type => $notice) { |
|
256 | - if ($type === $type_to_check && $notice) { |
|
257 | - return true; |
|
258 | - } |
|
259 | - } |
|
260 | - } |
|
261 | - return $has_error; |
|
262 | - } |
|
263 | - |
|
264 | - |
|
265 | - /** |
|
266 | - * @echo string |
|
267 | - * @throws \ReflectionException |
|
268 | - */ |
|
269 | - public function display_errors() |
|
270 | - { |
|
271 | - $trace_details = ''; |
|
272 | - $output = ' |
|
28 | + const OPTIONS_KEY_NOTICES = 'ee_notices'; |
|
29 | + |
|
30 | + |
|
31 | + /** |
|
32 | + * name of the file to log exceptions to |
|
33 | + * |
|
34 | + * @var string |
|
35 | + */ |
|
36 | + private static $_exception_log_file = 'espresso_error_log.txt'; |
|
37 | + |
|
38 | + /** |
|
39 | + * stores details for all exception |
|
40 | + * |
|
41 | + * @var array |
|
42 | + */ |
|
43 | + private static $_all_exceptions = array(); |
|
44 | + |
|
45 | + /** |
|
46 | + * tracks number of errors |
|
47 | + * |
|
48 | + * @var int |
|
49 | + */ |
|
50 | + private static $_error_count = 0; |
|
51 | + |
|
52 | + /** |
|
53 | + * @var array $_espresso_notices |
|
54 | + */ |
|
55 | + private static $_espresso_notices = array('success' => false, 'errors' => false, 'attention' => false); |
|
56 | + |
|
57 | + |
|
58 | + /** |
|
59 | + * @override default exception handling |
|
60 | + * @param string $message |
|
61 | + * @param int $code |
|
62 | + * @param Exception|null $previous |
|
63 | + */ |
|
64 | + public function __construct($message, $code = 0, Exception $previous = null) |
|
65 | + { |
|
66 | + if (version_compare(PHP_VERSION, '5.3.0', '<')) { |
|
67 | + parent::__construct($message, $code); |
|
68 | + } else { |
|
69 | + parent::__construct($message, $code, $previous); |
|
70 | + } |
|
71 | + } |
|
72 | + |
|
73 | + |
|
74 | + /** |
|
75 | + * error_handler |
|
76 | + * |
|
77 | + * @param $code |
|
78 | + * @param $message |
|
79 | + * @param $file |
|
80 | + * @param $line |
|
81 | + * @return void |
|
82 | + */ |
|
83 | + public static function error_handler($code, $message, $file, $line) |
|
84 | + { |
|
85 | + $type = EE_Error::error_type($code); |
|
86 | + $site = site_url(); |
|
87 | + switch ($site) { |
|
88 | + case 'http://ee4.eventespresso.com/': |
|
89 | + case 'http://ee4decaf.eventespresso.com/': |
|
90 | + case 'http://ee4hf.eventespresso.com/': |
|
91 | + case 'http://ee4a.eventespresso.com/': |
|
92 | + case 'http://ee4ad.eventespresso.com/': |
|
93 | + case 'http://ee4b.eventespresso.com/': |
|
94 | + case 'http://ee4bd.eventespresso.com/': |
|
95 | + case 'http://ee4d.eventespresso.com/': |
|
96 | + case 'http://ee4dd.eventespresso.com/': |
|
97 | + $to = '[email protected]'; |
|
98 | + break; |
|
99 | + default: |
|
100 | + $to = get_option('admin_email'); |
|
101 | + } |
|
102 | + $subject = $type . ' ' . $message . ' in ' . EVENT_ESPRESSO_VERSION . ' on ' . site_url(); |
|
103 | + $msg = EE_Error::_format_error($type, $message, $file, $line); |
|
104 | + if (function_exists('wp_mail')) { |
|
105 | + add_filter('wp_mail_content_type', array('EE_Error', 'set_content_type')); |
|
106 | + wp_mail($to, $subject, $msg); |
|
107 | + } |
|
108 | + echo '<div id="message" class="espresso-notices error"><p>'; |
|
109 | + echo $type . ': ' . $message . '<br />' . $file . ' line ' . $line; |
|
110 | + echo '<br /></p></div>'; |
|
111 | + } |
|
112 | + |
|
113 | + |
|
114 | + /** |
|
115 | + * error_type |
|
116 | + * http://www.php.net/manual/en/errorfunc.constants.php#109430 |
|
117 | + * |
|
118 | + * @param $code |
|
119 | + * @return string |
|
120 | + */ |
|
121 | + public static function error_type($code) |
|
122 | + { |
|
123 | + switch ($code) { |
|
124 | + case E_ERROR: // 1 // |
|
125 | + return 'E_ERROR'; |
|
126 | + case E_WARNING: // 2 // |
|
127 | + return 'E_WARNING'; |
|
128 | + case E_PARSE: // 4 // |
|
129 | + return 'E_PARSE'; |
|
130 | + case E_NOTICE: // 8 // |
|
131 | + return 'E_NOTICE'; |
|
132 | + case E_CORE_ERROR: // 16 // |
|
133 | + return 'E_CORE_ERROR'; |
|
134 | + case E_CORE_WARNING: // 32 // |
|
135 | + return 'E_CORE_WARNING'; |
|
136 | + case E_COMPILE_ERROR: // 64 // |
|
137 | + return 'E_COMPILE_ERROR'; |
|
138 | + case E_COMPILE_WARNING: // 128 // |
|
139 | + return 'E_COMPILE_WARNING'; |
|
140 | + case E_USER_ERROR: // 256 // |
|
141 | + return 'E_USER_ERROR'; |
|
142 | + case E_USER_WARNING: // 512 // |
|
143 | + return 'E_USER_WARNING'; |
|
144 | + case E_USER_NOTICE: // 1024 // |
|
145 | + return 'E_USER_NOTICE'; |
|
146 | + case E_STRICT: // 2048 // |
|
147 | + return 'E_STRICT'; |
|
148 | + case E_RECOVERABLE_ERROR: // 4096 // |
|
149 | + return 'E_RECOVERABLE_ERROR'; |
|
150 | + case E_DEPRECATED: // 8192 // |
|
151 | + return 'E_DEPRECATED'; |
|
152 | + case E_USER_DEPRECATED: // 16384 // |
|
153 | + return 'E_USER_DEPRECATED'; |
|
154 | + case E_ALL: // 16384 // |
|
155 | + return 'E_ALL'; |
|
156 | + } |
|
157 | + return ''; |
|
158 | + } |
|
159 | + |
|
160 | + |
|
161 | + /** |
|
162 | + * fatal_error_handler |
|
163 | + * |
|
164 | + * @return void |
|
165 | + */ |
|
166 | + public static function fatal_error_handler() |
|
167 | + { |
|
168 | + $last_error = error_get_last(); |
|
169 | + if ($last_error['type'] === E_ERROR) { |
|
170 | + EE_Error::error_handler(E_ERROR, $last_error['message'], $last_error['file'], $last_error['line']); |
|
171 | + } |
|
172 | + } |
|
173 | + |
|
174 | + |
|
175 | + /** |
|
176 | + * _format_error |
|
177 | + * |
|
178 | + * @param $code |
|
179 | + * @param $message |
|
180 | + * @param $file |
|
181 | + * @param $line |
|
182 | + * @return string |
|
183 | + */ |
|
184 | + private static function _format_error($code, $message, $file, $line) |
|
185 | + { |
|
186 | + $html = "<table cellpadding='5'><thead bgcolor='#f8f8f8'><th>Item</th><th align='left'>Details</th></thead><tbody>"; |
|
187 | + $html .= "<tr valign='top'><td><b>Code</b></td><td>$code</td></tr>"; |
|
188 | + $html .= "<tr valign='top'><td><b>Error</b></td><td>$message</td></tr>"; |
|
189 | + $html .= "<tr valign='top'><td><b>File</b></td><td>$file</td></tr>"; |
|
190 | + $html .= "<tr valign='top'><td><b>Line</b></td><td>$line</td></tr>"; |
|
191 | + $html .= '</tbody></table>'; |
|
192 | + return $html; |
|
193 | + } |
|
194 | + |
|
195 | + |
|
196 | + /** |
|
197 | + * set_content_type |
|
198 | + * |
|
199 | + * @param $content_type |
|
200 | + * @return string |
|
201 | + */ |
|
202 | + public static function set_content_type($content_type) |
|
203 | + { |
|
204 | + return 'text/html'; |
|
205 | + } |
|
206 | + |
|
207 | + |
|
208 | + /** |
|
209 | + * @return void |
|
210 | + * @throws EE_Error |
|
211 | + * @throws ReflectionException |
|
212 | + */ |
|
213 | + public function get_error() |
|
214 | + { |
|
215 | + if (apply_filters('FHEE__EE_Error__get_error__show_normal_exceptions', false)) { |
|
216 | + throw $this; |
|
217 | + } |
|
218 | + // get separate user and developer messages if they exist |
|
219 | + $msg = explode('||', $this->getMessage()); |
|
220 | + $user_msg = $msg[0]; |
|
221 | + $dev_msg = isset($msg[1]) ? $msg[1] : $msg[0]; |
|
222 | + $msg = WP_DEBUG ? $dev_msg : $user_msg; |
|
223 | + // add details to _all_exceptions array |
|
224 | + $x_time = time(); |
|
225 | + self::$_all_exceptions[ $x_time ]['name'] = get_class($this); |
|
226 | + self::$_all_exceptions[ $x_time ]['file'] = $this->getFile(); |
|
227 | + self::$_all_exceptions[ $x_time ]['line'] = $this->getLine(); |
|
228 | + self::$_all_exceptions[ $x_time ]['msg'] = $msg; |
|
229 | + self::$_all_exceptions[ $x_time ]['code'] = $this->getCode(); |
|
230 | + self::$_all_exceptions[ $x_time ]['trace'] = $this->getTrace(); |
|
231 | + self::$_all_exceptions[ $x_time ]['string'] = $this->getTraceAsString(); |
|
232 | + self::$_error_count++; |
|
233 | + // add_action( 'shutdown', array( $this, 'display_errors' )); |
|
234 | + $this->display_errors(); |
|
235 | + } |
|
236 | + |
|
237 | + |
|
238 | + /** |
|
239 | + * @param bool $check_stored |
|
240 | + * @param string $type_to_check |
|
241 | + * @return bool |
|
242 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
243 | + * @throws \InvalidArgumentException |
|
244 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
245 | + * @throws InvalidInterfaceException |
|
246 | + */ |
|
247 | + public static function has_error($check_stored = false, $type_to_check = 'errors') |
|
248 | + { |
|
249 | + $has_error = isset(self::$_espresso_notices[ $type_to_check ]) |
|
250 | + && ! empty(self::$_espresso_notices[ $type_to_check ]) |
|
251 | + ? true |
|
252 | + : false; |
|
253 | + if ($check_stored && ! $has_error) { |
|
254 | + $notices = EE_Error::getStoredNotices(); |
|
255 | + foreach ($notices as $type => $notice) { |
|
256 | + if ($type === $type_to_check && $notice) { |
|
257 | + return true; |
|
258 | + } |
|
259 | + } |
|
260 | + } |
|
261 | + return $has_error; |
|
262 | + } |
|
263 | + |
|
264 | + |
|
265 | + /** |
|
266 | + * @echo string |
|
267 | + * @throws \ReflectionException |
|
268 | + */ |
|
269 | + public function display_errors() |
|
270 | + { |
|
271 | + $trace_details = ''; |
|
272 | + $output = ' |
|
273 | 273 | <style type="text/css"> |
274 | 274 | #ee-error-message { |
275 | 275 | max-width:90% !important; |
@@ -325,21 +325,21 @@ discard block |
||
325 | 325 | } |
326 | 326 | </style> |
327 | 327 | <div id="ee-error-message" class="error">'; |
328 | - if (! WP_DEBUG) { |
|
329 | - $output .= ' |
|
328 | + if (! WP_DEBUG) { |
|
329 | + $output .= ' |
|
330 | 330 | <p>'; |
331 | - } |
|
332 | - // cycle thru errors |
|
333 | - foreach (self::$_all_exceptions as $time => $ex) { |
|
334 | - $error_code = ''; |
|
335 | - // process trace info |
|
336 | - if (empty($ex['trace'])) { |
|
337 | - $trace_details .= __( |
|
338 | - 'Sorry, but no trace information was available for this exception.', |
|
339 | - 'event_espresso' |
|
340 | - ); |
|
341 | - } else { |
|
342 | - $trace_details .= ' |
|
331 | + } |
|
332 | + // cycle thru errors |
|
333 | + foreach (self::$_all_exceptions as $time => $ex) { |
|
334 | + $error_code = ''; |
|
335 | + // process trace info |
|
336 | + if (empty($ex['trace'])) { |
|
337 | + $trace_details .= __( |
|
338 | + 'Sorry, but no trace information was available for this exception.', |
|
339 | + 'event_espresso' |
|
340 | + ); |
|
341 | + } else { |
|
342 | + $trace_details .= ' |
|
343 | 343 | <div id="ee-trace-details"> |
344 | 344 | <table width="100%" border="0" cellpadding="5" cellspacing="0"> |
345 | 345 | <tr> |
@@ -349,43 +349,43 @@ discard block |
||
349 | 349 | <th scope="col" align="left">Class</th> |
350 | 350 | <th scope="col" align="left">Method( arguments )</th> |
351 | 351 | </tr>'; |
352 | - $last_on_stack = count($ex['trace']) - 1; |
|
353 | - // reverse array so that stack is in proper chronological order |
|
354 | - $sorted_trace = array_reverse($ex['trace']); |
|
355 | - foreach ($sorted_trace as $nmbr => $trace) { |
|
356 | - $file = isset($trace['file']) ? $trace['file'] : ''; |
|
357 | - $class = isset($trace['class']) ? $trace['class'] : ''; |
|
358 | - $type = isset($trace['type']) ? $trace['type'] : ''; |
|
359 | - $function = isset($trace['function']) ? $trace['function'] : ''; |
|
360 | - $args = isset($trace['args']) ? $this->_convert_args_to_string($trace['args']) : ''; |
|
361 | - $line = isset($trace['line']) ? $trace['line'] : ''; |
|
362 | - $zebra = ($nmbr % 2) ? ' odd' : ''; |
|
363 | - if (empty($file) && ! empty($class)) { |
|
364 | - $a = new ReflectionClass($class); |
|
365 | - $file = $a->getFileName(); |
|
366 | - if (empty($line) && ! empty($function)) { |
|
367 | - try { |
|
368 | - // if $function is a closure, this throws an exception |
|
369 | - $b = new ReflectionMethod($class, $function); |
|
370 | - $line = $b->getStartLine(); |
|
371 | - } catch (Exception $closure_exception) { |
|
372 | - $line = 'unknown'; |
|
373 | - } |
|
374 | - } |
|
375 | - } |
|
376 | - if ($nmbr === $last_on_stack) { |
|
377 | - $file = $ex['file'] !== '' ? $ex['file'] : $file; |
|
378 | - $line = $ex['line'] !== '' ? $ex['line'] : $line; |
|
379 | - $error_code = self::generate_error_code($file, $trace['function'], $line); |
|
380 | - } |
|
381 | - $nmbr_dsply = ! empty($nmbr) ? $nmbr : ' '; |
|
382 | - $line_dsply = ! empty($line) ? $line : ' '; |
|
383 | - $file_dsply = ! empty($file) ? $file : ' '; |
|
384 | - $class_dsply = ! empty($class) ? $class : ' '; |
|
385 | - $type_dsply = ! empty($type) ? $type : ' '; |
|
386 | - $function_dsply = ! empty($function) ? $function : ' '; |
|
387 | - $args_dsply = ! empty($args) ? '( ' . $args . ' )' : ''; |
|
388 | - $trace_details .= ' |
|
352 | + $last_on_stack = count($ex['trace']) - 1; |
|
353 | + // reverse array so that stack is in proper chronological order |
|
354 | + $sorted_trace = array_reverse($ex['trace']); |
|
355 | + foreach ($sorted_trace as $nmbr => $trace) { |
|
356 | + $file = isset($trace['file']) ? $trace['file'] : ''; |
|
357 | + $class = isset($trace['class']) ? $trace['class'] : ''; |
|
358 | + $type = isset($trace['type']) ? $trace['type'] : ''; |
|
359 | + $function = isset($trace['function']) ? $trace['function'] : ''; |
|
360 | + $args = isset($trace['args']) ? $this->_convert_args_to_string($trace['args']) : ''; |
|
361 | + $line = isset($trace['line']) ? $trace['line'] : ''; |
|
362 | + $zebra = ($nmbr % 2) ? ' odd' : ''; |
|
363 | + if (empty($file) && ! empty($class)) { |
|
364 | + $a = new ReflectionClass($class); |
|
365 | + $file = $a->getFileName(); |
|
366 | + if (empty($line) && ! empty($function)) { |
|
367 | + try { |
|
368 | + // if $function is a closure, this throws an exception |
|
369 | + $b = new ReflectionMethod($class, $function); |
|
370 | + $line = $b->getStartLine(); |
|
371 | + } catch (Exception $closure_exception) { |
|
372 | + $line = 'unknown'; |
|
373 | + } |
|
374 | + } |
|
375 | + } |
|
376 | + if ($nmbr === $last_on_stack) { |
|
377 | + $file = $ex['file'] !== '' ? $ex['file'] : $file; |
|
378 | + $line = $ex['line'] !== '' ? $ex['line'] : $line; |
|
379 | + $error_code = self::generate_error_code($file, $trace['function'], $line); |
|
380 | + } |
|
381 | + $nmbr_dsply = ! empty($nmbr) ? $nmbr : ' '; |
|
382 | + $line_dsply = ! empty($line) ? $line : ' '; |
|
383 | + $file_dsply = ! empty($file) ? $file : ' '; |
|
384 | + $class_dsply = ! empty($class) ? $class : ' '; |
|
385 | + $type_dsply = ! empty($type) ? $type : ' '; |
|
386 | + $function_dsply = ! empty($function) ? $function : ' '; |
|
387 | + $args_dsply = ! empty($args) ? '( ' . $args . ' )' : ''; |
|
388 | + $trace_details .= ' |
|
389 | 389 | <tr> |
390 | 390 | <td align="right" class="' . $zebra . '">' . $nmbr_dsply . '</td> |
391 | 391 | <td align="right" class="' . $zebra . '">' . $line_dsply . '</td> |
@@ -393,626 +393,626 @@ discard block |
||
393 | 393 | <td align="left" class="' . $zebra . '">' . $class_dsply . '</td> |
394 | 394 | <td align="left" class="' . $zebra . '">' . $type_dsply . $function_dsply . $args_dsply . '</td> |
395 | 395 | </tr>'; |
396 | - } |
|
397 | - $trace_details .= ' |
|
396 | + } |
|
397 | + $trace_details .= ' |
|
398 | 398 | </table> |
399 | 399 | </div>'; |
400 | - } |
|
401 | - $ex['code'] = $ex['code'] ? $ex['code'] : $error_code; |
|
402 | - // add generic non-identifying messages for non-privileged users |
|
403 | - if (! WP_DEBUG) { |
|
404 | - $output .= '<span class="ee-error-user-msg-spn">' |
|
405 | - . trim($ex['msg']) |
|
406 | - . '</span> <sup>' |
|
407 | - . $ex['code'] |
|
408 | - . '</sup><br />'; |
|
409 | - } else { |
|
410 | - // or helpful developer messages if debugging is on |
|
411 | - $output .= ' |
|
400 | + } |
|
401 | + $ex['code'] = $ex['code'] ? $ex['code'] : $error_code; |
|
402 | + // add generic non-identifying messages for non-privileged users |
|
403 | + if (! WP_DEBUG) { |
|
404 | + $output .= '<span class="ee-error-user-msg-spn">' |
|
405 | + . trim($ex['msg']) |
|
406 | + . '</span> <sup>' |
|
407 | + . $ex['code'] |
|
408 | + . '</sup><br />'; |
|
409 | + } else { |
|
410 | + // or helpful developer messages if debugging is on |
|
411 | + $output .= ' |
|
412 | 412 | <div class="ee-error-dev-msg-dv"> |
413 | 413 | <p class="ee-error-dev-msg-pg"> |
414 | 414 | <strong class="ee-error-dev-msg-str">An ' |
415 | - . $ex['name'] |
|
416 | - . ' exception was thrown!</strong> <span>code: ' |
|
417 | - . $ex['code'] |
|
418 | - . '</span><br /> |
|
415 | + . $ex['name'] |
|
416 | + . ' exception was thrown!</strong> <span>code: ' |
|
417 | + . $ex['code'] |
|
418 | + . '</span><br /> |
|
419 | 419 | <span class="big-text">"' |
420 | - . trim($ex['msg']) |
|
421 | - . '"</span><br/> |
|
420 | + . trim($ex['msg']) |
|
421 | + . '"</span><br/> |
|
422 | 422 | <a id="display-ee-error-trace-' |
423 | - . self::$_error_count |
|
424 | - . $time |
|
425 | - . '" class="display-ee-error-trace-lnk small-text" rel="ee-error-trace-' |
|
426 | - . self::$_error_count |
|
427 | - . $time |
|
428 | - . '"> |
|
423 | + . self::$_error_count |
|
424 | + . $time |
|
425 | + . '" class="display-ee-error-trace-lnk small-text" rel="ee-error-trace-' |
|
426 | + . self::$_error_count |
|
427 | + . $time |
|
428 | + . '"> |
|
429 | 429 | ' |
430 | - . __('click to view backtrace and class/method details', 'event_espresso') |
|
431 | - . ' |
|
430 | + . __('click to view backtrace and class/method details', 'event_espresso') |
|
431 | + . ' |
|
432 | 432 | </a><br /> |
433 | 433 | <span class="small-text lt-grey-text">' |
434 | - . $ex['file'] |
|
435 | - . ' ( line no: ' |
|
436 | - . $ex['line'] |
|
437 | - . ' )</span> |
|
434 | + . $ex['file'] |
|
435 | + . ' ( line no: ' |
|
436 | + . $ex['line'] |
|
437 | + . ' )</span> |
|
438 | 438 | </p> |
439 | 439 | <div id="ee-error-trace-' |
440 | - . self::$_error_count |
|
441 | - . $time |
|
442 | - . '-dv" class="ee-error-trace-dv" style="display: none;"> |
|
440 | + . self::$_error_count |
|
441 | + . $time |
|
442 | + . '-dv" class="ee-error-trace-dv" style="display: none;"> |
|
443 | 443 | ' |
444 | - . $trace_details; |
|
445 | - if (! empty($class)) { |
|
446 | - $output .= ' |
|
444 | + . $trace_details; |
|
445 | + if (! empty($class)) { |
|
446 | + $output .= ' |
|
447 | 447 | <div style="padding:3px; margin:0 0 1em; border:1px solid #666; background:#fff; border-radius:3px;"> |
448 | 448 | <div style="padding:1em 2em; border:1px solid #666; background:#f9f9f9;"> |
449 | 449 | <h3>Class Details</h3>'; |
450 | - $a = new ReflectionClass($class); |
|
451 | - $output .= ' |
|
450 | + $a = new ReflectionClass($class); |
|
451 | + $output .= ' |
|
452 | 452 | <pre>' . $a . '</pre> |
453 | 453 | </div> |
454 | 454 | </div>'; |
455 | - } |
|
456 | - $output .= ' |
|
455 | + } |
|
456 | + $output .= ' |
|
457 | 457 | </div> |
458 | 458 | </div> |
459 | 459 | <br />'; |
460 | - } |
|
461 | - $this->write_to_error_log($time, $ex); |
|
462 | - } |
|
463 | - // remove last linebreak |
|
464 | - $output = substr($output, 0, -6); |
|
465 | - if (! WP_DEBUG) { |
|
466 | - $output .= ' |
|
460 | + } |
|
461 | + $this->write_to_error_log($time, $ex); |
|
462 | + } |
|
463 | + // remove last linebreak |
|
464 | + $output = substr($output, 0, -6); |
|
465 | + if (! WP_DEBUG) { |
|
466 | + $output .= ' |
|
467 | 467 | </p>'; |
468 | - } |
|
469 | - $output .= ' |
|
468 | + } |
|
469 | + $output .= ' |
|
470 | 470 | </div>'; |
471 | - $output .= self::_print_scripts(true); |
|
472 | - if (defined('DOING_AJAX')) { |
|
473 | - echo wp_json_encode(array('error' => $output)); |
|
474 | - exit(); |
|
475 | - } |
|
476 | - echo $output; |
|
477 | - die(); |
|
478 | - } |
|
479 | - |
|
480 | - |
|
481 | - /** |
|
482 | - * generate string from exception trace args |
|
483 | - * |
|
484 | - * @param array $arguments |
|
485 | - * @param bool $array |
|
486 | - * @return string |
|
487 | - */ |
|
488 | - private function _convert_args_to_string($arguments = array(), $array = false) |
|
489 | - { |
|
490 | - $arg_string = ''; |
|
491 | - if (! empty($arguments)) { |
|
492 | - $args = array(); |
|
493 | - foreach ($arguments as $arg) { |
|
494 | - if (! empty($arg)) { |
|
495 | - if (is_string($arg)) { |
|
496 | - $args[] = " '" . $arg . "'"; |
|
497 | - } elseif (is_array($arg)) { |
|
498 | - $args[] = 'ARRAY(' . $this->_convert_args_to_string($arg, true); |
|
499 | - } elseif ($arg === null) { |
|
500 | - $args[] = ' NULL'; |
|
501 | - } elseif (is_bool($arg)) { |
|
502 | - $args[] = ($arg) ? ' TRUE' : ' FALSE'; |
|
503 | - } elseif (is_object($arg)) { |
|
504 | - $args[] = ' OBJECT ' . get_class($arg); |
|
505 | - } elseif (is_resource($arg)) { |
|
506 | - $args[] = get_resource_type($arg); |
|
507 | - } else { |
|
508 | - $args[] = $arg; |
|
509 | - } |
|
510 | - } |
|
511 | - } |
|
512 | - $arg_string = implode(', ', $args); |
|
513 | - } |
|
514 | - if ($array) { |
|
515 | - $arg_string .= ' )'; |
|
516 | - } |
|
517 | - return $arg_string; |
|
518 | - } |
|
519 | - |
|
520 | - |
|
521 | - /** |
|
522 | - * add error message |
|
523 | - * |
|
524 | - * @param string $msg the message to display to users or developers - adding a double pipe || (OR) creates |
|
525 | - * separate messages for user || dev |
|
526 | - * @param string $file the file that the error occurred in - just use __FILE__ |
|
527 | - * @param string $func the function/method that the error occurred in - just use __FUNCTION__ |
|
528 | - * @param string $line the line number where the error occurred - just use __LINE__ |
|
529 | - * @return void |
|
530 | - */ |
|
531 | - public static function add_error($msg = null, $file = null, $func = null, $line = null) |
|
532 | - { |
|
533 | - self::_add_notice('errors', $msg, $file, $func, $line); |
|
534 | - self::$_error_count++; |
|
535 | - } |
|
536 | - |
|
537 | - |
|
538 | - /** |
|
539 | - * If WP_DEBUG is active, throws an exception. If WP_DEBUG is off, just |
|
540 | - * adds an error |
|
541 | - * |
|
542 | - * @param string $msg |
|
543 | - * @param string $file |
|
544 | - * @param string $func |
|
545 | - * @param string $line |
|
546 | - * @throws EE_Error |
|
547 | - */ |
|
548 | - public static function throw_exception_if_debugging($msg = null, $file = null, $func = null, $line = null) |
|
549 | - { |
|
550 | - if (WP_DEBUG) { |
|
551 | - throw new EE_Error($msg); |
|
552 | - } |
|
553 | - EE_Error::add_error($msg, $file, $func, $line); |
|
554 | - } |
|
555 | - |
|
556 | - |
|
557 | - /** |
|
558 | - * add success message |
|
559 | - * |
|
560 | - * @param string $msg the message to display to users or developers - adding a double pipe || (OR) creates |
|
561 | - * separate messages for user || dev |
|
562 | - * @param string $file the file that the error occurred in - just use __FILE__ |
|
563 | - * @param string $func the function/method that the error occurred in - just use __FUNCTION__ |
|
564 | - * @param string $line the line number where the error occurred - just use __LINE__ |
|
565 | - * @return void |
|
566 | - */ |
|
567 | - public static function add_success($msg = null, $file = null, $func = null, $line = null) |
|
568 | - { |
|
569 | - self::_add_notice('success', $msg, $file, $func, $line); |
|
570 | - } |
|
571 | - |
|
572 | - |
|
573 | - /** |
|
574 | - * add attention message |
|
575 | - * |
|
576 | - * @param string $msg the message to display to users or developers - adding a double pipe || (OR) creates |
|
577 | - * separate messages for user || dev |
|
578 | - * @param string $file the file that the error occurred in - just use __FILE__ |
|
579 | - * @param string $func the function/method that the error occurred in - just use __FUNCTION__ |
|
580 | - * @param string $line the line number where the error occurred - just use __LINE__ |
|
581 | - * @return void |
|
582 | - */ |
|
583 | - public static function add_attention($msg = null, $file = null, $func = null, $line = null) |
|
584 | - { |
|
585 | - self::_add_notice('attention', $msg, $file, $func, $line); |
|
586 | - } |
|
587 | - |
|
588 | - |
|
589 | - /** |
|
590 | - * @param string $type whether the message is for a success or error notification |
|
591 | - * @param string $msg the message to display to users or developers |
|
592 | - * - adding a double pipe || (OR) creates separate messages for user || dev |
|
593 | - * @param string $file the file that the error occurred in - just use __FILE__ |
|
594 | - * @param string $func the function/method that the error occurred in - just use __FUNCTION__ |
|
595 | - * @param string $line the line number where the error occurred - just use __LINE__ |
|
596 | - * @return void |
|
597 | - */ |
|
598 | - private static function _add_notice($type = 'success', $msg = '', $file = '', $func = '', $line = '') |
|
599 | - { |
|
600 | - if (empty($msg)) { |
|
601 | - EE_Error::doing_it_wrong( |
|
602 | - 'EE_Error::add_' . $type . '()', |
|
603 | - sprintf( |
|
604 | - __( |
|
605 | - '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', |
|
606 | - 'event_espresso' |
|
607 | - ), |
|
608 | - $type, |
|
609 | - $file, |
|
610 | - $line |
|
611 | - ), |
|
612 | - EVENT_ESPRESSO_VERSION |
|
613 | - ); |
|
614 | - } |
|
615 | - if ($type === 'errors' && (empty($file) || empty($func) || empty($line))) { |
|
616 | - EE_Error::doing_it_wrong( |
|
617 | - 'EE_Error::add_error()', |
|
618 | - __( |
|
619 | - 'You need to provide the file name, function name, and line number that the error occurred on in order to better assist with debugging.', |
|
620 | - 'event_espresso' |
|
621 | - ), |
|
622 | - EVENT_ESPRESSO_VERSION |
|
623 | - ); |
|
624 | - } |
|
625 | - // get separate user and developer messages if they exist |
|
626 | - $msg = explode('||', $msg); |
|
627 | - $user_msg = $msg[0]; |
|
628 | - $dev_msg = isset($msg[1]) ? $msg[1] : $msg[0]; |
|
629 | - /** |
|
630 | - * Do an action so other code can be triggered when a notice is created |
|
631 | - * |
|
632 | - * @param string $type can be 'errors', 'attention', or 'success' |
|
633 | - * @param string $user_msg message displayed to user when WP_DEBUG is off |
|
634 | - * @param string $user_msg message displayed to user when WP_DEBUG is on |
|
635 | - * @param string $file file where error was generated |
|
636 | - * @param string $func function where error was generated |
|
637 | - * @param string $line line where error was generated |
|
638 | - */ |
|
639 | - do_action('AHEE__EE_Error___add_notice', $type, $user_msg, $dev_msg, $file, $func, $line); |
|
640 | - $msg = WP_DEBUG ? $dev_msg : $user_msg; |
|
641 | - // add notice if message exists |
|
642 | - if (! empty($msg)) { |
|
643 | - // get error code |
|
644 | - $notice_code = EE_Error::generate_error_code($file, $func, $line); |
|
645 | - if (WP_DEBUG && $type === 'errors') { |
|
646 | - $msg .= '<br/><span class="tiny-text">' . $notice_code . '</span>'; |
|
647 | - } |
|
648 | - // add notice. Index by code if it's not blank |
|
649 | - if ($notice_code) { |
|
650 | - self::$_espresso_notices[ $type ][ $notice_code ] = $msg; |
|
651 | - } else { |
|
652 | - self::$_espresso_notices[ $type ][] = $msg; |
|
653 | - } |
|
654 | - add_action('wp_footer', array('EE_Error', 'enqueue_error_scripts'), 1); |
|
655 | - } |
|
656 | - } |
|
657 | - |
|
658 | - |
|
659 | - /** |
|
660 | - * in some case it may be necessary to overwrite the existing success messages |
|
661 | - * |
|
662 | - * @return void |
|
663 | - */ |
|
664 | - public static function overwrite_success() |
|
665 | - { |
|
666 | - self::$_espresso_notices['success'] = false; |
|
667 | - } |
|
668 | - |
|
669 | - |
|
670 | - /** |
|
671 | - * in some case it may be necessary to overwrite the existing attention messages |
|
672 | - * |
|
673 | - * @return void |
|
674 | - */ |
|
675 | - public static function overwrite_attention() |
|
676 | - { |
|
677 | - self::$_espresso_notices['attention'] = false; |
|
678 | - } |
|
679 | - |
|
680 | - |
|
681 | - /** |
|
682 | - * in some case it may be necessary to overwrite the existing error messages |
|
683 | - * |
|
684 | - * @return void |
|
685 | - */ |
|
686 | - public static function overwrite_errors() |
|
687 | - { |
|
688 | - self::$_espresso_notices['errors'] = false; |
|
689 | - } |
|
690 | - |
|
691 | - |
|
692 | - /** |
|
693 | - * @return void |
|
694 | - */ |
|
695 | - public static function reset_notices() |
|
696 | - { |
|
697 | - self::$_espresso_notices['success'] = false; |
|
698 | - self::$_espresso_notices['attention'] = false; |
|
699 | - self::$_espresso_notices['errors'] = false; |
|
700 | - } |
|
701 | - |
|
702 | - |
|
703 | - /** |
|
704 | - * @return int |
|
705 | - */ |
|
706 | - public static function has_notices() |
|
707 | - { |
|
708 | - $has_notices = 0; |
|
709 | - // check for success messages |
|
710 | - $has_notices = self::$_espresso_notices['success'] && ! empty(self::$_espresso_notices['success']) |
|
711 | - ? 3 |
|
712 | - : $has_notices; |
|
713 | - // check for attention messages |
|
714 | - $has_notices = self::$_espresso_notices['attention'] && ! empty(self::$_espresso_notices['attention']) |
|
715 | - ? 2 |
|
716 | - : $has_notices; |
|
717 | - // check for error messages |
|
718 | - $has_notices = self::$_espresso_notices['errors'] && ! empty(self::$_espresso_notices['errors']) |
|
719 | - ? 1 |
|
720 | - : $has_notices; |
|
721 | - return $has_notices; |
|
722 | - } |
|
723 | - |
|
724 | - |
|
725 | - /** |
|
726 | - * This simply returns non formatted error notices as they were sent into the EE_Error object. |
|
727 | - * |
|
728 | - * @since 4.9.0 |
|
729 | - * @return array |
|
730 | - */ |
|
731 | - public static function get_vanilla_notices() |
|
732 | - { |
|
733 | - return array( |
|
734 | - 'success' => isset(self::$_espresso_notices['success']) |
|
735 | - ? self::$_espresso_notices['success'] |
|
736 | - : array(), |
|
737 | - 'attention' => isset(self::$_espresso_notices['attention']) |
|
738 | - ? self::$_espresso_notices['attention'] |
|
739 | - : array(), |
|
740 | - 'errors' => isset(self::$_espresso_notices['errors']) |
|
741 | - ? self::$_espresso_notices['errors'] |
|
742 | - : array(), |
|
743 | - ); |
|
744 | - } |
|
745 | - |
|
746 | - |
|
747 | - /** |
|
748 | - * @return array |
|
749 | - * @throws InvalidArgumentException |
|
750 | - * @throws InvalidDataTypeException |
|
751 | - * @throws InvalidInterfaceException |
|
752 | - */ |
|
753 | - public static function getStoredNotices() |
|
754 | - { |
|
755 | - if ($user_id = get_current_user_id()) { |
|
756 | - // get notices for logged in user |
|
757 | - $notices = get_user_option(EE_Error::OPTIONS_KEY_NOTICES, $user_id); |
|
758 | - return is_array($notices) ? $notices : array(); |
|
759 | - } |
|
760 | - if (EE_Session::isLoadedAndActive()) { |
|
761 | - // get notices for user currently engaged in a session |
|
762 | - $session_data = EE_Session::instance()->get_session_data(EE_Error::OPTIONS_KEY_NOTICES); |
|
763 | - return is_array($session_data) ? $session_data : array(); |
|
764 | - } |
|
765 | - // get global notices and hope they apply to the current site visitor |
|
766 | - $notices = get_option(EE_Error::OPTIONS_KEY_NOTICES, array()); |
|
767 | - return is_array($notices) ? $notices : array(); |
|
768 | - } |
|
769 | - |
|
770 | - |
|
771 | - /** |
|
772 | - * @param array $notices |
|
773 | - * @return bool |
|
774 | - * @throws InvalidArgumentException |
|
775 | - * @throws InvalidDataTypeException |
|
776 | - * @throws InvalidInterfaceException |
|
777 | - */ |
|
778 | - public static function storeNotices(array $notices) |
|
779 | - { |
|
780 | - if ($user_id = get_current_user_id()) { |
|
781 | - // store notices for logged in user |
|
782 | - return (bool) update_user_option( |
|
783 | - $user_id, |
|
784 | - EE_Error::OPTIONS_KEY_NOTICES, |
|
785 | - $notices |
|
786 | - ); |
|
787 | - } |
|
788 | - if (EE_Session::isLoadedAndActive()) { |
|
789 | - // store notices for user currently engaged in a session |
|
790 | - return EE_Session::instance()->set_session_data( |
|
791 | - array(EE_Error::OPTIONS_KEY_NOTICES => $notices) |
|
792 | - ); |
|
793 | - } |
|
794 | - // store global notices and hope they apply to the same site visitor on the next request |
|
795 | - return update_option(EE_Error::OPTIONS_KEY_NOTICES, $notices); |
|
796 | - } |
|
797 | - |
|
798 | - |
|
799 | - /** |
|
800 | - * @return bool|TRUE |
|
801 | - * @throws InvalidArgumentException |
|
802 | - * @throws InvalidDataTypeException |
|
803 | - * @throws InvalidInterfaceException |
|
804 | - */ |
|
805 | - public static function clearNotices() |
|
806 | - { |
|
807 | - if ($user_id = get_current_user_id()) { |
|
808 | - // clear notices for logged in user |
|
809 | - return (bool) update_user_option( |
|
810 | - $user_id, |
|
811 | - EE_Error::OPTIONS_KEY_NOTICES, |
|
812 | - array() |
|
813 | - ); |
|
814 | - } |
|
815 | - if (EE_Session::isLoadedAndActive()) { |
|
816 | - // clear notices for user currently engaged in a session |
|
817 | - return EE_Session::instance()->reset_data(EE_Error::OPTIONS_KEY_NOTICES); |
|
818 | - } |
|
819 | - // clear global notices and hope none belonged to some for some other site visitor |
|
820 | - return update_option(EE_Error::OPTIONS_KEY_NOTICES, array()); |
|
821 | - } |
|
822 | - |
|
823 | - |
|
824 | - /** |
|
825 | - * saves notices to the db for retrieval on next request |
|
826 | - * |
|
827 | - * @return void |
|
828 | - * @throws InvalidArgumentException |
|
829 | - * @throws InvalidDataTypeException |
|
830 | - * @throws InvalidInterfaceException |
|
831 | - */ |
|
832 | - public static function stashNoticesBeforeRedirect() |
|
833 | - { |
|
834 | - EE_Error::get_notices(false, true); |
|
835 | - } |
|
836 | - |
|
837 | - |
|
838 | - /** |
|
839 | - * compile all error or success messages into one string |
|
840 | - * |
|
841 | - * @see EE_Error::get_raw_notices if you want the raw notices without any preparations made to them |
|
842 | - * @param boolean $format_output whether or not to format the messages for display in the WP admin |
|
843 | - * @param boolean $save_to_transient whether or not to save notices to the db for retrieval on next request |
|
844 | - * - ONLY do this just before redirecting |
|
845 | - * @param boolean $remove_empty whether or not to unset empty messages |
|
846 | - * @return array |
|
847 | - * @throws InvalidArgumentException |
|
848 | - * @throws InvalidDataTypeException |
|
849 | - * @throws InvalidInterfaceException |
|
850 | - */ |
|
851 | - public static function get_notices($format_output = true, $save_to_transient = false, $remove_empty = true) |
|
852 | - { |
|
853 | - $success_messages = ''; |
|
854 | - $attention_messages = ''; |
|
855 | - $error_messages = ''; |
|
856 | - // either save notices to the db |
|
857 | - if ($save_to_transient || isset($_REQUEST['activate-selected'])) { |
|
858 | - self::$_espresso_notices = array_merge( |
|
859 | - EE_Error::getStoredNotices(), |
|
860 | - self::$_espresso_notices |
|
861 | - ); |
|
862 | - EE_Error::storeNotices(self::$_espresso_notices); |
|
863 | - return array(); |
|
864 | - } |
|
865 | - $print_scripts = EE_Error::combineExistingAndNewNotices(); |
|
866 | - // check for success messages |
|
867 | - if (self::$_espresso_notices['success'] && ! empty(self::$_espresso_notices['success'])) { |
|
868 | - // combine messages |
|
869 | - $success_messages .= implode('<br />', self::$_espresso_notices['success']); |
|
870 | - $print_scripts = true; |
|
871 | - } |
|
872 | - // check for attention messages |
|
873 | - if (self::$_espresso_notices['attention'] && ! empty(self::$_espresso_notices['attention'])) { |
|
874 | - // combine messages |
|
875 | - $attention_messages .= implode('<br />', self::$_espresso_notices['attention']); |
|
876 | - $print_scripts = true; |
|
877 | - } |
|
878 | - // check for error messages |
|
879 | - if (self::$_espresso_notices['errors'] && ! empty(self::$_espresso_notices['errors'])) { |
|
880 | - $error_messages .= count(self::$_espresso_notices['errors']) > 1 |
|
881 | - ? __('The following errors have occurred:<br />', 'event_espresso') |
|
882 | - : __('An error has occurred:<br />', 'event_espresso'); |
|
883 | - // combine messages |
|
884 | - $error_messages .= implode('<br />', self::$_espresso_notices['errors']); |
|
885 | - $print_scripts = true; |
|
886 | - } |
|
887 | - if ($format_output) { |
|
888 | - $notices = EE_Error::formatNoticesOutput( |
|
889 | - $success_messages, |
|
890 | - $attention_messages, |
|
891 | - $error_messages |
|
892 | - ); |
|
893 | - } else { |
|
894 | - $notices = array( |
|
895 | - 'success' => $success_messages, |
|
896 | - 'attention' => $attention_messages, |
|
897 | - 'errors' => $error_messages, |
|
898 | - ); |
|
899 | - if ($remove_empty) { |
|
900 | - // remove empty notices |
|
901 | - foreach ($notices as $type => $notice) { |
|
902 | - if (empty($notice)) { |
|
903 | - unset($notices[ $type ]); |
|
904 | - } |
|
905 | - } |
|
906 | - } |
|
907 | - } |
|
908 | - if ($print_scripts) { |
|
909 | - self::_print_scripts(); |
|
910 | - } |
|
911 | - return $notices; |
|
912 | - } |
|
913 | - |
|
914 | - |
|
915 | - /** |
|
916 | - * @return bool |
|
917 | - * @throws InvalidArgumentException |
|
918 | - * @throws InvalidDataTypeException |
|
919 | - * @throws InvalidInterfaceException |
|
920 | - */ |
|
921 | - private static function combineExistingAndNewNotices() |
|
922 | - { |
|
923 | - $print_scripts = false; |
|
924 | - // grab any notices that have been previously saved |
|
925 | - $notices = EE_Error::getStoredNotices(); |
|
926 | - if (! empty($notices)) { |
|
927 | - foreach ($notices as $type => $notice) { |
|
928 | - if (is_array($notice) && ! empty($notice)) { |
|
929 | - // make sure that existing notice type is an array |
|
930 | - self::$_espresso_notices[ $type ] = is_array(self::$_espresso_notices[ $type ]) |
|
931 | - && ! empty(self::$_espresso_notices[ $type ]) |
|
932 | - ? self::$_espresso_notices[ $type ] |
|
933 | - : array(); |
|
934 | - // add newly created notices to existing ones |
|
935 | - self::$_espresso_notices[ $type ] += $notice; |
|
936 | - $print_scripts = true; |
|
937 | - } |
|
938 | - } |
|
939 | - // now clear any stored notices |
|
940 | - EE_Error::clearNotices(); |
|
941 | - } |
|
942 | - return $print_scripts; |
|
943 | - } |
|
944 | - |
|
945 | - |
|
946 | - /** |
|
947 | - * @param string $success_messages |
|
948 | - * @param string $attention_messages |
|
949 | - * @param string $error_messages |
|
950 | - * @return string |
|
951 | - */ |
|
952 | - private static function formatNoticesOutput($success_messages, $attention_messages, $error_messages) |
|
953 | - { |
|
954 | - $notices = '<div id="espresso-notices">'; |
|
955 | - $close = is_admin() |
|
956 | - ? '' |
|
957 | - : '<a class="close-espresso-notice hide-if-no-js"><span class="dashicons dashicons-no"/></a>'; |
|
958 | - if ($success_messages !== '') { |
|
959 | - $css_id = is_admin() ? 'ee-success-message' : 'espresso-notices-success'; |
|
960 | - $css_class = is_admin() ? 'updated fade' : 'success fade-away'; |
|
961 | - // showMessage( $success_messages ); |
|
962 | - $notices .= '<div id="' . $css_id . '" ' |
|
963 | - . 'class="espresso-notices ' . $css_class . '" ' |
|
964 | - . 'style="display:none;">' |
|
965 | - . '<p>' . $success_messages . '</p>' |
|
966 | - . $close |
|
967 | - . '</div>'; |
|
968 | - } |
|
969 | - if ($attention_messages !== '') { |
|
970 | - $css_id = is_admin() ? 'ee-attention-message' : 'espresso-notices-attention'; |
|
971 | - $css_class = is_admin() ? 'updated ee-notices-attention' : 'attention fade-away'; |
|
972 | - // showMessage( $error_messages, TRUE ); |
|
973 | - $notices .= '<div id="' . $css_id . '" ' |
|
974 | - . 'class="espresso-notices ' . $css_class . '" ' |
|
975 | - . 'style="display:none;">' |
|
976 | - . '<p>' . $attention_messages . '</p>' |
|
977 | - . $close |
|
978 | - . '</div>'; |
|
979 | - } |
|
980 | - if ($error_messages !== '') { |
|
981 | - $css_id = is_admin() ? 'ee-error-message' : 'espresso-notices-error'; |
|
982 | - $css_class = is_admin() ? 'error' : 'error fade-away'; |
|
983 | - // showMessage( $error_messages, TRUE ); |
|
984 | - $notices .= '<div id="' . $css_id . '" ' |
|
985 | - . 'class="espresso-notices ' . $css_class . '" ' |
|
986 | - . 'style="display:none;">' |
|
987 | - . '<p>' . $error_messages . '</p>' |
|
988 | - . $close |
|
989 | - . '</div>'; |
|
990 | - } |
|
991 | - $notices .= '</div>'; |
|
992 | - return $notices; |
|
993 | - } |
|
994 | - |
|
995 | - |
|
996 | - /** |
|
997 | - * _print_scripts |
|
998 | - * |
|
999 | - * @param bool $force_print |
|
1000 | - * @return string |
|
1001 | - */ |
|
1002 | - private static function _print_scripts($force_print = false) |
|
1003 | - { |
|
1004 | - if (! $force_print && (did_action('admin_enqueue_scripts') || did_action('wp_enqueue_scripts'))) { |
|
1005 | - if (wp_script_is('ee_error_js', 'registered')) { |
|
1006 | - wp_enqueue_style('espresso_default'); |
|
1007 | - wp_enqueue_style('espresso_custom_css'); |
|
1008 | - wp_enqueue_script('ee_error_js'); |
|
1009 | - } |
|
1010 | - if (wp_script_is('ee_error_js', 'enqueued')) { |
|
1011 | - wp_localize_script('ee_error_js', 'ee_settings', array('wp_debug' => WP_DEBUG)); |
|
1012 | - return ''; |
|
1013 | - } |
|
1014 | - } else { |
|
1015 | - return ' |
|
471 | + $output .= self::_print_scripts(true); |
|
472 | + if (defined('DOING_AJAX')) { |
|
473 | + echo wp_json_encode(array('error' => $output)); |
|
474 | + exit(); |
|
475 | + } |
|
476 | + echo $output; |
|
477 | + die(); |
|
478 | + } |
|
479 | + |
|
480 | + |
|
481 | + /** |
|
482 | + * generate string from exception trace args |
|
483 | + * |
|
484 | + * @param array $arguments |
|
485 | + * @param bool $array |
|
486 | + * @return string |
|
487 | + */ |
|
488 | + private function _convert_args_to_string($arguments = array(), $array = false) |
|
489 | + { |
|
490 | + $arg_string = ''; |
|
491 | + if (! empty($arguments)) { |
|
492 | + $args = array(); |
|
493 | + foreach ($arguments as $arg) { |
|
494 | + if (! empty($arg)) { |
|
495 | + if (is_string($arg)) { |
|
496 | + $args[] = " '" . $arg . "'"; |
|
497 | + } elseif (is_array($arg)) { |
|
498 | + $args[] = 'ARRAY(' . $this->_convert_args_to_string($arg, true); |
|
499 | + } elseif ($arg === null) { |
|
500 | + $args[] = ' NULL'; |
|
501 | + } elseif (is_bool($arg)) { |
|
502 | + $args[] = ($arg) ? ' TRUE' : ' FALSE'; |
|
503 | + } elseif (is_object($arg)) { |
|
504 | + $args[] = ' OBJECT ' . get_class($arg); |
|
505 | + } elseif (is_resource($arg)) { |
|
506 | + $args[] = get_resource_type($arg); |
|
507 | + } else { |
|
508 | + $args[] = $arg; |
|
509 | + } |
|
510 | + } |
|
511 | + } |
|
512 | + $arg_string = implode(', ', $args); |
|
513 | + } |
|
514 | + if ($array) { |
|
515 | + $arg_string .= ' )'; |
|
516 | + } |
|
517 | + return $arg_string; |
|
518 | + } |
|
519 | + |
|
520 | + |
|
521 | + /** |
|
522 | + * add error message |
|
523 | + * |
|
524 | + * @param string $msg the message to display to users or developers - adding a double pipe || (OR) creates |
|
525 | + * separate messages for user || dev |
|
526 | + * @param string $file the file that the error occurred in - just use __FILE__ |
|
527 | + * @param string $func the function/method that the error occurred in - just use __FUNCTION__ |
|
528 | + * @param string $line the line number where the error occurred - just use __LINE__ |
|
529 | + * @return void |
|
530 | + */ |
|
531 | + public static function add_error($msg = null, $file = null, $func = null, $line = null) |
|
532 | + { |
|
533 | + self::_add_notice('errors', $msg, $file, $func, $line); |
|
534 | + self::$_error_count++; |
|
535 | + } |
|
536 | + |
|
537 | + |
|
538 | + /** |
|
539 | + * If WP_DEBUG is active, throws an exception. If WP_DEBUG is off, just |
|
540 | + * adds an error |
|
541 | + * |
|
542 | + * @param string $msg |
|
543 | + * @param string $file |
|
544 | + * @param string $func |
|
545 | + * @param string $line |
|
546 | + * @throws EE_Error |
|
547 | + */ |
|
548 | + public static function throw_exception_if_debugging($msg = null, $file = null, $func = null, $line = null) |
|
549 | + { |
|
550 | + if (WP_DEBUG) { |
|
551 | + throw new EE_Error($msg); |
|
552 | + } |
|
553 | + EE_Error::add_error($msg, $file, $func, $line); |
|
554 | + } |
|
555 | + |
|
556 | + |
|
557 | + /** |
|
558 | + * add success message |
|
559 | + * |
|
560 | + * @param string $msg the message to display to users or developers - adding a double pipe || (OR) creates |
|
561 | + * separate messages for user || dev |
|
562 | + * @param string $file the file that the error occurred in - just use __FILE__ |
|
563 | + * @param string $func the function/method that the error occurred in - just use __FUNCTION__ |
|
564 | + * @param string $line the line number where the error occurred - just use __LINE__ |
|
565 | + * @return void |
|
566 | + */ |
|
567 | + public static function add_success($msg = null, $file = null, $func = null, $line = null) |
|
568 | + { |
|
569 | + self::_add_notice('success', $msg, $file, $func, $line); |
|
570 | + } |
|
571 | + |
|
572 | + |
|
573 | + /** |
|
574 | + * add attention message |
|
575 | + * |
|
576 | + * @param string $msg the message to display to users or developers - adding a double pipe || (OR) creates |
|
577 | + * separate messages for user || dev |
|
578 | + * @param string $file the file that the error occurred in - just use __FILE__ |
|
579 | + * @param string $func the function/method that the error occurred in - just use __FUNCTION__ |
|
580 | + * @param string $line the line number where the error occurred - just use __LINE__ |
|
581 | + * @return void |
|
582 | + */ |
|
583 | + public static function add_attention($msg = null, $file = null, $func = null, $line = null) |
|
584 | + { |
|
585 | + self::_add_notice('attention', $msg, $file, $func, $line); |
|
586 | + } |
|
587 | + |
|
588 | + |
|
589 | + /** |
|
590 | + * @param string $type whether the message is for a success or error notification |
|
591 | + * @param string $msg the message to display to users or developers |
|
592 | + * - adding a double pipe || (OR) creates separate messages for user || dev |
|
593 | + * @param string $file the file that the error occurred in - just use __FILE__ |
|
594 | + * @param string $func the function/method that the error occurred in - just use __FUNCTION__ |
|
595 | + * @param string $line the line number where the error occurred - just use __LINE__ |
|
596 | + * @return void |
|
597 | + */ |
|
598 | + private static function _add_notice($type = 'success', $msg = '', $file = '', $func = '', $line = '') |
|
599 | + { |
|
600 | + if (empty($msg)) { |
|
601 | + EE_Error::doing_it_wrong( |
|
602 | + 'EE_Error::add_' . $type . '()', |
|
603 | + sprintf( |
|
604 | + __( |
|
605 | + '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', |
|
606 | + 'event_espresso' |
|
607 | + ), |
|
608 | + $type, |
|
609 | + $file, |
|
610 | + $line |
|
611 | + ), |
|
612 | + EVENT_ESPRESSO_VERSION |
|
613 | + ); |
|
614 | + } |
|
615 | + if ($type === 'errors' && (empty($file) || empty($func) || empty($line))) { |
|
616 | + EE_Error::doing_it_wrong( |
|
617 | + 'EE_Error::add_error()', |
|
618 | + __( |
|
619 | + 'You need to provide the file name, function name, and line number that the error occurred on in order to better assist with debugging.', |
|
620 | + 'event_espresso' |
|
621 | + ), |
|
622 | + EVENT_ESPRESSO_VERSION |
|
623 | + ); |
|
624 | + } |
|
625 | + // get separate user and developer messages if they exist |
|
626 | + $msg = explode('||', $msg); |
|
627 | + $user_msg = $msg[0]; |
|
628 | + $dev_msg = isset($msg[1]) ? $msg[1] : $msg[0]; |
|
629 | + /** |
|
630 | + * Do an action so other code can be triggered when a notice is created |
|
631 | + * |
|
632 | + * @param string $type can be 'errors', 'attention', or 'success' |
|
633 | + * @param string $user_msg message displayed to user when WP_DEBUG is off |
|
634 | + * @param string $user_msg message displayed to user when WP_DEBUG is on |
|
635 | + * @param string $file file where error was generated |
|
636 | + * @param string $func function where error was generated |
|
637 | + * @param string $line line where error was generated |
|
638 | + */ |
|
639 | + do_action('AHEE__EE_Error___add_notice', $type, $user_msg, $dev_msg, $file, $func, $line); |
|
640 | + $msg = WP_DEBUG ? $dev_msg : $user_msg; |
|
641 | + // add notice if message exists |
|
642 | + if (! empty($msg)) { |
|
643 | + // get error code |
|
644 | + $notice_code = EE_Error::generate_error_code($file, $func, $line); |
|
645 | + if (WP_DEBUG && $type === 'errors') { |
|
646 | + $msg .= '<br/><span class="tiny-text">' . $notice_code . '</span>'; |
|
647 | + } |
|
648 | + // add notice. Index by code if it's not blank |
|
649 | + if ($notice_code) { |
|
650 | + self::$_espresso_notices[ $type ][ $notice_code ] = $msg; |
|
651 | + } else { |
|
652 | + self::$_espresso_notices[ $type ][] = $msg; |
|
653 | + } |
|
654 | + add_action('wp_footer', array('EE_Error', 'enqueue_error_scripts'), 1); |
|
655 | + } |
|
656 | + } |
|
657 | + |
|
658 | + |
|
659 | + /** |
|
660 | + * in some case it may be necessary to overwrite the existing success messages |
|
661 | + * |
|
662 | + * @return void |
|
663 | + */ |
|
664 | + public static function overwrite_success() |
|
665 | + { |
|
666 | + self::$_espresso_notices['success'] = false; |
|
667 | + } |
|
668 | + |
|
669 | + |
|
670 | + /** |
|
671 | + * in some case it may be necessary to overwrite the existing attention messages |
|
672 | + * |
|
673 | + * @return void |
|
674 | + */ |
|
675 | + public static function overwrite_attention() |
|
676 | + { |
|
677 | + self::$_espresso_notices['attention'] = false; |
|
678 | + } |
|
679 | + |
|
680 | + |
|
681 | + /** |
|
682 | + * in some case it may be necessary to overwrite the existing error messages |
|
683 | + * |
|
684 | + * @return void |
|
685 | + */ |
|
686 | + public static function overwrite_errors() |
|
687 | + { |
|
688 | + self::$_espresso_notices['errors'] = false; |
|
689 | + } |
|
690 | + |
|
691 | + |
|
692 | + /** |
|
693 | + * @return void |
|
694 | + */ |
|
695 | + public static function reset_notices() |
|
696 | + { |
|
697 | + self::$_espresso_notices['success'] = false; |
|
698 | + self::$_espresso_notices['attention'] = false; |
|
699 | + self::$_espresso_notices['errors'] = false; |
|
700 | + } |
|
701 | + |
|
702 | + |
|
703 | + /** |
|
704 | + * @return int |
|
705 | + */ |
|
706 | + public static function has_notices() |
|
707 | + { |
|
708 | + $has_notices = 0; |
|
709 | + // check for success messages |
|
710 | + $has_notices = self::$_espresso_notices['success'] && ! empty(self::$_espresso_notices['success']) |
|
711 | + ? 3 |
|
712 | + : $has_notices; |
|
713 | + // check for attention messages |
|
714 | + $has_notices = self::$_espresso_notices['attention'] && ! empty(self::$_espresso_notices['attention']) |
|
715 | + ? 2 |
|
716 | + : $has_notices; |
|
717 | + // check for error messages |
|
718 | + $has_notices = self::$_espresso_notices['errors'] && ! empty(self::$_espresso_notices['errors']) |
|
719 | + ? 1 |
|
720 | + : $has_notices; |
|
721 | + return $has_notices; |
|
722 | + } |
|
723 | + |
|
724 | + |
|
725 | + /** |
|
726 | + * This simply returns non formatted error notices as they were sent into the EE_Error object. |
|
727 | + * |
|
728 | + * @since 4.9.0 |
|
729 | + * @return array |
|
730 | + */ |
|
731 | + public static function get_vanilla_notices() |
|
732 | + { |
|
733 | + return array( |
|
734 | + 'success' => isset(self::$_espresso_notices['success']) |
|
735 | + ? self::$_espresso_notices['success'] |
|
736 | + : array(), |
|
737 | + 'attention' => isset(self::$_espresso_notices['attention']) |
|
738 | + ? self::$_espresso_notices['attention'] |
|
739 | + : array(), |
|
740 | + 'errors' => isset(self::$_espresso_notices['errors']) |
|
741 | + ? self::$_espresso_notices['errors'] |
|
742 | + : array(), |
|
743 | + ); |
|
744 | + } |
|
745 | + |
|
746 | + |
|
747 | + /** |
|
748 | + * @return array |
|
749 | + * @throws InvalidArgumentException |
|
750 | + * @throws InvalidDataTypeException |
|
751 | + * @throws InvalidInterfaceException |
|
752 | + */ |
|
753 | + public static function getStoredNotices() |
|
754 | + { |
|
755 | + if ($user_id = get_current_user_id()) { |
|
756 | + // get notices for logged in user |
|
757 | + $notices = get_user_option(EE_Error::OPTIONS_KEY_NOTICES, $user_id); |
|
758 | + return is_array($notices) ? $notices : array(); |
|
759 | + } |
|
760 | + if (EE_Session::isLoadedAndActive()) { |
|
761 | + // get notices for user currently engaged in a session |
|
762 | + $session_data = EE_Session::instance()->get_session_data(EE_Error::OPTIONS_KEY_NOTICES); |
|
763 | + return is_array($session_data) ? $session_data : array(); |
|
764 | + } |
|
765 | + // get global notices and hope they apply to the current site visitor |
|
766 | + $notices = get_option(EE_Error::OPTIONS_KEY_NOTICES, array()); |
|
767 | + return is_array($notices) ? $notices : array(); |
|
768 | + } |
|
769 | + |
|
770 | + |
|
771 | + /** |
|
772 | + * @param array $notices |
|
773 | + * @return bool |
|
774 | + * @throws InvalidArgumentException |
|
775 | + * @throws InvalidDataTypeException |
|
776 | + * @throws InvalidInterfaceException |
|
777 | + */ |
|
778 | + public static function storeNotices(array $notices) |
|
779 | + { |
|
780 | + if ($user_id = get_current_user_id()) { |
|
781 | + // store notices for logged in user |
|
782 | + return (bool) update_user_option( |
|
783 | + $user_id, |
|
784 | + EE_Error::OPTIONS_KEY_NOTICES, |
|
785 | + $notices |
|
786 | + ); |
|
787 | + } |
|
788 | + if (EE_Session::isLoadedAndActive()) { |
|
789 | + // store notices for user currently engaged in a session |
|
790 | + return EE_Session::instance()->set_session_data( |
|
791 | + array(EE_Error::OPTIONS_KEY_NOTICES => $notices) |
|
792 | + ); |
|
793 | + } |
|
794 | + // store global notices and hope they apply to the same site visitor on the next request |
|
795 | + return update_option(EE_Error::OPTIONS_KEY_NOTICES, $notices); |
|
796 | + } |
|
797 | + |
|
798 | + |
|
799 | + /** |
|
800 | + * @return bool|TRUE |
|
801 | + * @throws InvalidArgumentException |
|
802 | + * @throws InvalidDataTypeException |
|
803 | + * @throws InvalidInterfaceException |
|
804 | + */ |
|
805 | + public static function clearNotices() |
|
806 | + { |
|
807 | + if ($user_id = get_current_user_id()) { |
|
808 | + // clear notices for logged in user |
|
809 | + return (bool) update_user_option( |
|
810 | + $user_id, |
|
811 | + EE_Error::OPTIONS_KEY_NOTICES, |
|
812 | + array() |
|
813 | + ); |
|
814 | + } |
|
815 | + if (EE_Session::isLoadedAndActive()) { |
|
816 | + // clear notices for user currently engaged in a session |
|
817 | + return EE_Session::instance()->reset_data(EE_Error::OPTIONS_KEY_NOTICES); |
|
818 | + } |
|
819 | + // clear global notices and hope none belonged to some for some other site visitor |
|
820 | + return update_option(EE_Error::OPTIONS_KEY_NOTICES, array()); |
|
821 | + } |
|
822 | + |
|
823 | + |
|
824 | + /** |
|
825 | + * saves notices to the db for retrieval on next request |
|
826 | + * |
|
827 | + * @return void |
|
828 | + * @throws InvalidArgumentException |
|
829 | + * @throws InvalidDataTypeException |
|
830 | + * @throws InvalidInterfaceException |
|
831 | + */ |
|
832 | + public static function stashNoticesBeforeRedirect() |
|
833 | + { |
|
834 | + EE_Error::get_notices(false, true); |
|
835 | + } |
|
836 | + |
|
837 | + |
|
838 | + /** |
|
839 | + * compile all error or success messages into one string |
|
840 | + * |
|
841 | + * @see EE_Error::get_raw_notices if you want the raw notices without any preparations made to them |
|
842 | + * @param boolean $format_output whether or not to format the messages for display in the WP admin |
|
843 | + * @param boolean $save_to_transient whether or not to save notices to the db for retrieval on next request |
|
844 | + * - ONLY do this just before redirecting |
|
845 | + * @param boolean $remove_empty whether or not to unset empty messages |
|
846 | + * @return array |
|
847 | + * @throws InvalidArgumentException |
|
848 | + * @throws InvalidDataTypeException |
|
849 | + * @throws InvalidInterfaceException |
|
850 | + */ |
|
851 | + public static function get_notices($format_output = true, $save_to_transient = false, $remove_empty = true) |
|
852 | + { |
|
853 | + $success_messages = ''; |
|
854 | + $attention_messages = ''; |
|
855 | + $error_messages = ''; |
|
856 | + // either save notices to the db |
|
857 | + if ($save_to_transient || isset($_REQUEST['activate-selected'])) { |
|
858 | + self::$_espresso_notices = array_merge( |
|
859 | + EE_Error::getStoredNotices(), |
|
860 | + self::$_espresso_notices |
|
861 | + ); |
|
862 | + EE_Error::storeNotices(self::$_espresso_notices); |
|
863 | + return array(); |
|
864 | + } |
|
865 | + $print_scripts = EE_Error::combineExistingAndNewNotices(); |
|
866 | + // check for success messages |
|
867 | + if (self::$_espresso_notices['success'] && ! empty(self::$_espresso_notices['success'])) { |
|
868 | + // combine messages |
|
869 | + $success_messages .= implode('<br />', self::$_espresso_notices['success']); |
|
870 | + $print_scripts = true; |
|
871 | + } |
|
872 | + // check for attention messages |
|
873 | + if (self::$_espresso_notices['attention'] && ! empty(self::$_espresso_notices['attention'])) { |
|
874 | + // combine messages |
|
875 | + $attention_messages .= implode('<br />', self::$_espresso_notices['attention']); |
|
876 | + $print_scripts = true; |
|
877 | + } |
|
878 | + // check for error messages |
|
879 | + if (self::$_espresso_notices['errors'] && ! empty(self::$_espresso_notices['errors'])) { |
|
880 | + $error_messages .= count(self::$_espresso_notices['errors']) > 1 |
|
881 | + ? __('The following errors have occurred:<br />', 'event_espresso') |
|
882 | + : __('An error has occurred:<br />', 'event_espresso'); |
|
883 | + // combine messages |
|
884 | + $error_messages .= implode('<br />', self::$_espresso_notices['errors']); |
|
885 | + $print_scripts = true; |
|
886 | + } |
|
887 | + if ($format_output) { |
|
888 | + $notices = EE_Error::formatNoticesOutput( |
|
889 | + $success_messages, |
|
890 | + $attention_messages, |
|
891 | + $error_messages |
|
892 | + ); |
|
893 | + } else { |
|
894 | + $notices = array( |
|
895 | + 'success' => $success_messages, |
|
896 | + 'attention' => $attention_messages, |
|
897 | + 'errors' => $error_messages, |
|
898 | + ); |
|
899 | + if ($remove_empty) { |
|
900 | + // remove empty notices |
|
901 | + foreach ($notices as $type => $notice) { |
|
902 | + if (empty($notice)) { |
|
903 | + unset($notices[ $type ]); |
|
904 | + } |
|
905 | + } |
|
906 | + } |
|
907 | + } |
|
908 | + if ($print_scripts) { |
|
909 | + self::_print_scripts(); |
|
910 | + } |
|
911 | + return $notices; |
|
912 | + } |
|
913 | + |
|
914 | + |
|
915 | + /** |
|
916 | + * @return bool |
|
917 | + * @throws InvalidArgumentException |
|
918 | + * @throws InvalidDataTypeException |
|
919 | + * @throws InvalidInterfaceException |
|
920 | + */ |
|
921 | + private static function combineExistingAndNewNotices() |
|
922 | + { |
|
923 | + $print_scripts = false; |
|
924 | + // grab any notices that have been previously saved |
|
925 | + $notices = EE_Error::getStoredNotices(); |
|
926 | + if (! empty($notices)) { |
|
927 | + foreach ($notices as $type => $notice) { |
|
928 | + if (is_array($notice) && ! empty($notice)) { |
|
929 | + // make sure that existing notice type is an array |
|
930 | + self::$_espresso_notices[ $type ] = is_array(self::$_espresso_notices[ $type ]) |
|
931 | + && ! empty(self::$_espresso_notices[ $type ]) |
|
932 | + ? self::$_espresso_notices[ $type ] |
|
933 | + : array(); |
|
934 | + // add newly created notices to existing ones |
|
935 | + self::$_espresso_notices[ $type ] += $notice; |
|
936 | + $print_scripts = true; |
|
937 | + } |
|
938 | + } |
|
939 | + // now clear any stored notices |
|
940 | + EE_Error::clearNotices(); |
|
941 | + } |
|
942 | + return $print_scripts; |
|
943 | + } |
|
944 | + |
|
945 | + |
|
946 | + /** |
|
947 | + * @param string $success_messages |
|
948 | + * @param string $attention_messages |
|
949 | + * @param string $error_messages |
|
950 | + * @return string |
|
951 | + */ |
|
952 | + private static function formatNoticesOutput($success_messages, $attention_messages, $error_messages) |
|
953 | + { |
|
954 | + $notices = '<div id="espresso-notices">'; |
|
955 | + $close = is_admin() |
|
956 | + ? '' |
|
957 | + : '<a class="close-espresso-notice hide-if-no-js"><span class="dashicons dashicons-no"/></a>'; |
|
958 | + if ($success_messages !== '') { |
|
959 | + $css_id = is_admin() ? 'ee-success-message' : 'espresso-notices-success'; |
|
960 | + $css_class = is_admin() ? 'updated fade' : 'success fade-away'; |
|
961 | + // showMessage( $success_messages ); |
|
962 | + $notices .= '<div id="' . $css_id . '" ' |
|
963 | + . 'class="espresso-notices ' . $css_class . '" ' |
|
964 | + . 'style="display:none;">' |
|
965 | + . '<p>' . $success_messages . '</p>' |
|
966 | + . $close |
|
967 | + . '</div>'; |
|
968 | + } |
|
969 | + if ($attention_messages !== '') { |
|
970 | + $css_id = is_admin() ? 'ee-attention-message' : 'espresso-notices-attention'; |
|
971 | + $css_class = is_admin() ? 'updated ee-notices-attention' : 'attention fade-away'; |
|
972 | + // showMessage( $error_messages, TRUE ); |
|
973 | + $notices .= '<div id="' . $css_id . '" ' |
|
974 | + . 'class="espresso-notices ' . $css_class . '" ' |
|
975 | + . 'style="display:none;">' |
|
976 | + . '<p>' . $attention_messages . '</p>' |
|
977 | + . $close |
|
978 | + . '</div>'; |
|
979 | + } |
|
980 | + if ($error_messages !== '') { |
|
981 | + $css_id = is_admin() ? 'ee-error-message' : 'espresso-notices-error'; |
|
982 | + $css_class = is_admin() ? 'error' : 'error fade-away'; |
|
983 | + // showMessage( $error_messages, TRUE ); |
|
984 | + $notices .= '<div id="' . $css_id . '" ' |
|
985 | + . 'class="espresso-notices ' . $css_class . '" ' |
|
986 | + . 'style="display:none;">' |
|
987 | + . '<p>' . $error_messages . '</p>' |
|
988 | + . $close |
|
989 | + . '</div>'; |
|
990 | + } |
|
991 | + $notices .= '</div>'; |
|
992 | + return $notices; |
|
993 | + } |
|
994 | + |
|
995 | + |
|
996 | + /** |
|
997 | + * _print_scripts |
|
998 | + * |
|
999 | + * @param bool $force_print |
|
1000 | + * @return string |
|
1001 | + */ |
|
1002 | + private static function _print_scripts($force_print = false) |
|
1003 | + { |
|
1004 | + if (! $force_print && (did_action('admin_enqueue_scripts') || did_action('wp_enqueue_scripts'))) { |
|
1005 | + if (wp_script_is('ee_error_js', 'registered')) { |
|
1006 | + wp_enqueue_style('espresso_default'); |
|
1007 | + wp_enqueue_style('espresso_custom_css'); |
|
1008 | + wp_enqueue_script('ee_error_js'); |
|
1009 | + } |
|
1010 | + if (wp_script_is('ee_error_js', 'enqueued')) { |
|
1011 | + wp_localize_script('ee_error_js', 'ee_settings', array('wp_debug' => WP_DEBUG)); |
|
1012 | + return ''; |
|
1013 | + } |
|
1014 | + } else { |
|
1015 | + return ' |
|
1016 | 1016 | <script> |
1017 | 1017 | /* <![CDATA[ */ |
1018 | 1018 | var ee_settings = {"wp_debug":"' . WP_DEBUG . '"}; |
@@ -1022,221 +1022,221 @@ discard block |
||
1022 | 1022 | <script src="' . EE_GLOBAL_ASSETS_URL . 'scripts/espresso_core.js' . '?ver=' . espresso_version() . '" type="text/javascript"></script> |
1023 | 1023 | <script src="' . EE_GLOBAL_ASSETS_URL . 'scripts/EE_Error.js' . '?ver=' . espresso_version() . '" type="text/javascript"></script> |
1024 | 1024 | '; |
1025 | - } |
|
1026 | - return ''; |
|
1027 | - } |
|
1028 | - |
|
1029 | - |
|
1030 | - /** |
|
1031 | - * @return void |
|
1032 | - */ |
|
1033 | - public static function enqueue_error_scripts() |
|
1034 | - { |
|
1035 | - self::_print_scripts(); |
|
1036 | - } |
|
1037 | - |
|
1038 | - |
|
1039 | - /** |
|
1040 | - * create error code from filepath, function name, |
|
1041 | - * and line number where exception or error was thrown |
|
1042 | - * |
|
1043 | - * @param string $file |
|
1044 | - * @param string $func |
|
1045 | - * @param string $line |
|
1046 | - * @return string |
|
1047 | - */ |
|
1048 | - public static function generate_error_code($file = '', $func = '', $line = '') |
|
1049 | - { |
|
1050 | - $file = explode('.', basename($file)); |
|
1051 | - $error_code = ! empty($file[0]) ? $file[0] : ''; |
|
1052 | - $error_code .= ! empty($func) ? ' - ' . $func : ''; |
|
1053 | - $error_code .= ! empty($line) ? ' - ' . $line : ''; |
|
1054 | - return $error_code; |
|
1055 | - } |
|
1056 | - |
|
1057 | - |
|
1058 | - /** |
|
1059 | - * write exception details to log file |
|
1060 | - * Since 4.9.53.rc.006 this writes to the standard PHP log file, not EE's custom log file |
|
1061 | - * |
|
1062 | - * @param int $time |
|
1063 | - * @param array $ex |
|
1064 | - * @param bool $clear |
|
1065 | - * @return void |
|
1066 | - */ |
|
1067 | - public function write_to_error_log($time = 0, $ex = array(), $clear = false) |
|
1068 | - { |
|
1069 | - if (empty($ex)) { |
|
1070 | - return; |
|
1071 | - } |
|
1072 | - if (! $time) { |
|
1073 | - $time = time(); |
|
1074 | - } |
|
1075 | - $exception_log = '----------------------------------------------------------------------------------------' |
|
1076 | - . PHP_EOL; |
|
1077 | - $exception_log .= '[' . date('Y-m-d H:i:s', $time) . '] Exception Details' . PHP_EOL; |
|
1078 | - $exception_log .= 'Message: ' . $ex['msg'] . PHP_EOL; |
|
1079 | - $exception_log .= 'Code: ' . $ex['code'] . PHP_EOL; |
|
1080 | - $exception_log .= 'File: ' . $ex['file'] . PHP_EOL; |
|
1081 | - $exception_log .= 'Line No: ' . $ex['line'] . PHP_EOL; |
|
1082 | - $exception_log .= 'Stack trace: ' . PHP_EOL; |
|
1083 | - $exception_log .= $ex['string'] . PHP_EOL; |
|
1084 | - $exception_log .= '----------------------------------------------------------------------------------------' |
|
1085 | - . PHP_EOL; |
|
1086 | - try { |
|
1087 | - error_log($exception_log); |
|
1088 | - } catch (EE_Error $e) { |
|
1089 | - EE_Error::add_error( |
|
1090 | - sprintf( |
|
1091 | - __( |
|
1092 | - 'Event Espresso error logging could not be setup because: %s', |
|
1093 | - 'event_espresso' |
|
1094 | - ), |
|
1095 | - $e->getMessage() |
|
1096 | - ) |
|
1097 | - ); |
|
1098 | - } |
|
1099 | - } |
|
1100 | - |
|
1101 | - |
|
1102 | - /** |
|
1103 | - * This is just a wrapper for the EEH_Debug_Tools::instance()->doing_it_wrong() method. |
|
1104 | - * doing_it_wrong() is used in those cases where a normal PHP error won't get thrown, |
|
1105 | - * but the code execution is done in a manner that could lead to unexpected results |
|
1106 | - * (i.e. running to early, or too late in WP or EE loading process). |
|
1107 | - * A good test for knowing whether to use this method is: |
|
1108 | - * 1. Is there going to be a PHP error if something isn't setup/used correctly? |
|
1109 | - * Yes -> use EE_Error::add_error() or throw new EE_Error() |
|
1110 | - * 2. If this is loaded before something else, it won't break anything, |
|
1111 | - * but just wont' do what its supposed to do? Yes -> use EE_Error::doing_it_wrong() |
|
1112 | - * |
|
1113 | - * @uses constant WP_DEBUG test if wp_debug is on or not |
|
1114 | - * @param string $function The function that was called |
|
1115 | - * @param string $message A message explaining what has been done incorrectly |
|
1116 | - * @param string $version The version of Event Espresso where the error was added |
|
1117 | - * @param string $applies_when a version string for when you want the doing_it_wrong notice to begin appearing |
|
1118 | - * for a deprecated function. This allows deprecation to occur during one version, |
|
1119 | - * but not have any notices appear until a later version. This allows developers |
|
1120 | - * extra time to update their code before notices appear. |
|
1121 | - * @param int $error_type |
|
1122 | - */ |
|
1123 | - public static function doing_it_wrong( |
|
1124 | - $function, |
|
1125 | - $message, |
|
1126 | - $version, |
|
1127 | - $applies_when = '', |
|
1128 | - $error_type = null |
|
1129 | - ) { |
|
1130 | - if (defined('WP_DEBUG') && WP_DEBUG) { |
|
1131 | - EEH_Debug_Tools::instance()->doing_it_wrong($function, $message, $version, $applies_when, $error_type); |
|
1132 | - } |
|
1133 | - } |
|
1134 | - |
|
1135 | - |
|
1136 | - /** |
|
1137 | - * Like get_notices, but returns an array of all the notices of the given type. |
|
1138 | - * |
|
1139 | - * @return array { |
|
1140 | - * @type array $success all the success messages |
|
1141 | - * @type array $errors all the error messages |
|
1142 | - * @type array $attention all the attention messages |
|
1143 | - * } |
|
1144 | - */ |
|
1145 | - public static function get_raw_notices() |
|
1146 | - { |
|
1147 | - return self::$_espresso_notices; |
|
1148 | - } |
|
1149 | - |
|
1150 | - |
|
1151 | - /** |
|
1152 | - * @deprecated 4.9.27 |
|
1153 | - * @param string $pan_name the name, or key of the Persistent Admin Notice to be stored |
|
1154 | - * @param string $pan_message the message to be stored persistently until dismissed |
|
1155 | - * @param bool $force_update allows one to enforce the reappearance of a persistent message. |
|
1156 | - * @return void |
|
1157 | - * @throws InvalidDataTypeException |
|
1158 | - */ |
|
1159 | - public static function add_persistent_admin_notice($pan_name = '', $pan_message, $force_update = false) |
|
1160 | - { |
|
1161 | - new PersistentAdminNotice( |
|
1162 | - $pan_name, |
|
1163 | - $pan_message, |
|
1164 | - $force_update |
|
1165 | - ); |
|
1166 | - EE_Error::doing_it_wrong( |
|
1167 | - __METHOD__, |
|
1168 | - sprintf( |
|
1169 | - __('Usage is deprecated. Use "%1$s" instead.', 'event_espresso'), |
|
1170 | - '\EventEspresso\core\domain\entities\notifications\PersistentAdminNotice' |
|
1171 | - ), |
|
1172 | - '4.9.27' |
|
1173 | - ); |
|
1174 | - } |
|
1175 | - |
|
1176 | - |
|
1177 | - /** |
|
1178 | - * @deprecated 4.9.27 |
|
1179 | - * @param string $pan_name the name, or key of the Persistent Admin Notice to be dismissed |
|
1180 | - * @param bool $purge |
|
1181 | - * @param bool $return |
|
1182 | - * @throws DomainException |
|
1183 | - * @throws InvalidInterfaceException |
|
1184 | - * @throws InvalidDataTypeException |
|
1185 | - * @throws ServiceNotFoundException |
|
1186 | - * @throws InvalidArgumentException |
|
1187 | - */ |
|
1188 | - public static function dismiss_persistent_admin_notice($pan_name = '', $purge = false, $return = false) |
|
1189 | - { |
|
1190 | - /** @var PersistentAdminNoticeManager $persistent_admin_notice_manager */ |
|
1191 | - $persistent_admin_notice_manager = LoaderFactory::getLoader()->getShared( |
|
1192 | - 'EventEspresso\core\services\notifications\PersistentAdminNoticeManager' |
|
1193 | - ); |
|
1194 | - $persistent_admin_notice_manager->dismissNotice($pan_name, $purge, $return); |
|
1195 | - EE_Error::doing_it_wrong( |
|
1196 | - __METHOD__, |
|
1197 | - sprintf( |
|
1198 | - __('Usage is deprecated. Use "%1$s" instead.', 'event_espresso'), |
|
1199 | - '\EventEspresso\core\services\notifications\PersistentAdminNoticeManager' |
|
1200 | - ), |
|
1201 | - '4.9.27' |
|
1202 | - ); |
|
1203 | - } |
|
1204 | - |
|
1205 | - |
|
1206 | - /** |
|
1207 | - * @deprecated 4.9.27 |
|
1208 | - * @param string $pan_name the name, or key of the Persistent Admin Notice to be stored |
|
1209 | - * @param string $pan_message the message to be stored persistently until dismissed |
|
1210 | - * @param string $return_url URL to go back to after nag notice is dismissed |
|
1211 | - */ |
|
1212 | - public static function display_persistent_admin_notices($pan_name = '', $pan_message = '', $return_url = '') |
|
1213 | - { |
|
1214 | - EE_Error::doing_it_wrong( |
|
1215 | - __METHOD__, |
|
1216 | - sprintf( |
|
1217 | - __('Usage is deprecated. Use "%1$s" instead.', 'event_espresso'), |
|
1218 | - '\EventEspresso\core\services\notifications\PersistentAdminNoticeManager' |
|
1219 | - ), |
|
1220 | - '4.9.27' |
|
1221 | - ); |
|
1222 | - } |
|
1223 | - |
|
1224 | - |
|
1225 | - /** |
|
1226 | - * @deprecated 4.9.27 |
|
1227 | - * @param string $return_url |
|
1228 | - */ |
|
1229 | - public static function get_persistent_admin_notices($return_url = '') |
|
1230 | - { |
|
1231 | - EE_Error::doing_it_wrong( |
|
1232 | - __METHOD__, |
|
1233 | - sprintf( |
|
1234 | - __('Usage is deprecated. Use "%1$s" instead.', 'event_espresso'), |
|
1235 | - '\EventEspresso\core\services\notifications\PersistentAdminNoticeManager' |
|
1236 | - ), |
|
1237 | - '4.9.27' |
|
1238 | - ); |
|
1239 | - } |
|
1025 | + } |
|
1026 | + return ''; |
|
1027 | + } |
|
1028 | + |
|
1029 | + |
|
1030 | + /** |
|
1031 | + * @return void |
|
1032 | + */ |
|
1033 | + public static function enqueue_error_scripts() |
|
1034 | + { |
|
1035 | + self::_print_scripts(); |
|
1036 | + } |
|
1037 | + |
|
1038 | + |
|
1039 | + /** |
|
1040 | + * create error code from filepath, function name, |
|
1041 | + * and line number where exception or error was thrown |
|
1042 | + * |
|
1043 | + * @param string $file |
|
1044 | + * @param string $func |
|
1045 | + * @param string $line |
|
1046 | + * @return string |
|
1047 | + */ |
|
1048 | + public static function generate_error_code($file = '', $func = '', $line = '') |
|
1049 | + { |
|
1050 | + $file = explode('.', basename($file)); |
|
1051 | + $error_code = ! empty($file[0]) ? $file[0] : ''; |
|
1052 | + $error_code .= ! empty($func) ? ' - ' . $func : ''; |
|
1053 | + $error_code .= ! empty($line) ? ' - ' . $line : ''; |
|
1054 | + return $error_code; |
|
1055 | + } |
|
1056 | + |
|
1057 | + |
|
1058 | + /** |
|
1059 | + * write exception details to log file |
|
1060 | + * Since 4.9.53.rc.006 this writes to the standard PHP log file, not EE's custom log file |
|
1061 | + * |
|
1062 | + * @param int $time |
|
1063 | + * @param array $ex |
|
1064 | + * @param bool $clear |
|
1065 | + * @return void |
|
1066 | + */ |
|
1067 | + public function write_to_error_log($time = 0, $ex = array(), $clear = false) |
|
1068 | + { |
|
1069 | + if (empty($ex)) { |
|
1070 | + return; |
|
1071 | + } |
|
1072 | + if (! $time) { |
|
1073 | + $time = time(); |
|
1074 | + } |
|
1075 | + $exception_log = '----------------------------------------------------------------------------------------' |
|
1076 | + . PHP_EOL; |
|
1077 | + $exception_log .= '[' . date('Y-m-d H:i:s', $time) . '] Exception Details' . PHP_EOL; |
|
1078 | + $exception_log .= 'Message: ' . $ex['msg'] . PHP_EOL; |
|
1079 | + $exception_log .= 'Code: ' . $ex['code'] . PHP_EOL; |
|
1080 | + $exception_log .= 'File: ' . $ex['file'] . PHP_EOL; |
|
1081 | + $exception_log .= 'Line No: ' . $ex['line'] . PHP_EOL; |
|
1082 | + $exception_log .= 'Stack trace: ' . PHP_EOL; |
|
1083 | + $exception_log .= $ex['string'] . PHP_EOL; |
|
1084 | + $exception_log .= '----------------------------------------------------------------------------------------' |
|
1085 | + . PHP_EOL; |
|
1086 | + try { |
|
1087 | + error_log($exception_log); |
|
1088 | + } catch (EE_Error $e) { |
|
1089 | + EE_Error::add_error( |
|
1090 | + sprintf( |
|
1091 | + __( |
|
1092 | + 'Event Espresso error logging could not be setup because: %s', |
|
1093 | + 'event_espresso' |
|
1094 | + ), |
|
1095 | + $e->getMessage() |
|
1096 | + ) |
|
1097 | + ); |
|
1098 | + } |
|
1099 | + } |
|
1100 | + |
|
1101 | + |
|
1102 | + /** |
|
1103 | + * This is just a wrapper for the EEH_Debug_Tools::instance()->doing_it_wrong() method. |
|
1104 | + * doing_it_wrong() is used in those cases where a normal PHP error won't get thrown, |
|
1105 | + * but the code execution is done in a manner that could lead to unexpected results |
|
1106 | + * (i.e. running to early, or too late in WP or EE loading process). |
|
1107 | + * A good test for knowing whether to use this method is: |
|
1108 | + * 1. Is there going to be a PHP error if something isn't setup/used correctly? |
|
1109 | + * Yes -> use EE_Error::add_error() or throw new EE_Error() |
|
1110 | + * 2. If this is loaded before something else, it won't break anything, |
|
1111 | + * but just wont' do what its supposed to do? Yes -> use EE_Error::doing_it_wrong() |
|
1112 | + * |
|
1113 | + * @uses constant WP_DEBUG test if wp_debug is on or not |
|
1114 | + * @param string $function The function that was called |
|
1115 | + * @param string $message A message explaining what has been done incorrectly |
|
1116 | + * @param string $version The version of Event Espresso where the error was added |
|
1117 | + * @param string $applies_when a version string for when you want the doing_it_wrong notice to begin appearing |
|
1118 | + * for a deprecated function. This allows deprecation to occur during one version, |
|
1119 | + * but not have any notices appear until a later version. This allows developers |
|
1120 | + * extra time to update their code before notices appear. |
|
1121 | + * @param int $error_type |
|
1122 | + */ |
|
1123 | + public static function doing_it_wrong( |
|
1124 | + $function, |
|
1125 | + $message, |
|
1126 | + $version, |
|
1127 | + $applies_when = '', |
|
1128 | + $error_type = null |
|
1129 | + ) { |
|
1130 | + if (defined('WP_DEBUG') && WP_DEBUG) { |
|
1131 | + EEH_Debug_Tools::instance()->doing_it_wrong($function, $message, $version, $applies_when, $error_type); |
|
1132 | + } |
|
1133 | + } |
|
1134 | + |
|
1135 | + |
|
1136 | + /** |
|
1137 | + * Like get_notices, but returns an array of all the notices of the given type. |
|
1138 | + * |
|
1139 | + * @return array { |
|
1140 | + * @type array $success all the success messages |
|
1141 | + * @type array $errors all the error messages |
|
1142 | + * @type array $attention all the attention messages |
|
1143 | + * } |
|
1144 | + */ |
|
1145 | + public static function get_raw_notices() |
|
1146 | + { |
|
1147 | + return self::$_espresso_notices; |
|
1148 | + } |
|
1149 | + |
|
1150 | + |
|
1151 | + /** |
|
1152 | + * @deprecated 4.9.27 |
|
1153 | + * @param string $pan_name the name, or key of the Persistent Admin Notice to be stored |
|
1154 | + * @param string $pan_message the message to be stored persistently until dismissed |
|
1155 | + * @param bool $force_update allows one to enforce the reappearance of a persistent message. |
|
1156 | + * @return void |
|
1157 | + * @throws InvalidDataTypeException |
|
1158 | + */ |
|
1159 | + public static function add_persistent_admin_notice($pan_name = '', $pan_message, $force_update = false) |
|
1160 | + { |
|
1161 | + new PersistentAdminNotice( |
|
1162 | + $pan_name, |
|
1163 | + $pan_message, |
|
1164 | + $force_update |
|
1165 | + ); |
|
1166 | + EE_Error::doing_it_wrong( |
|
1167 | + __METHOD__, |
|
1168 | + sprintf( |
|
1169 | + __('Usage is deprecated. Use "%1$s" instead.', 'event_espresso'), |
|
1170 | + '\EventEspresso\core\domain\entities\notifications\PersistentAdminNotice' |
|
1171 | + ), |
|
1172 | + '4.9.27' |
|
1173 | + ); |
|
1174 | + } |
|
1175 | + |
|
1176 | + |
|
1177 | + /** |
|
1178 | + * @deprecated 4.9.27 |
|
1179 | + * @param string $pan_name the name, or key of the Persistent Admin Notice to be dismissed |
|
1180 | + * @param bool $purge |
|
1181 | + * @param bool $return |
|
1182 | + * @throws DomainException |
|
1183 | + * @throws InvalidInterfaceException |
|
1184 | + * @throws InvalidDataTypeException |
|
1185 | + * @throws ServiceNotFoundException |
|
1186 | + * @throws InvalidArgumentException |
|
1187 | + */ |
|
1188 | + public static function dismiss_persistent_admin_notice($pan_name = '', $purge = false, $return = false) |
|
1189 | + { |
|
1190 | + /** @var PersistentAdminNoticeManager $persistent_admin_notice_manager */ |
|
1191 | + $persistent_admin_notice_manager = LoaderFactory::getLoader()->getShared( |
|
1192 | + 'EventEspresso\core\services\notifications\PersistentAdminNoticeManager' |
|
1193 | + ); |
|
1194 | + $persistent_admin_notice_manager->dismissNotice($pan_name, $purge, $return); |
|
1195 | + EE_Error::doing_it_wrong( |
|
1196 | + __METHOD__, |
|
1197 | + sprintf( |
|
1198 | + __('Usage is deprecated. Use "%1$s" instead.', 'event_espresso'), |
|
1199 | + '\EventEspresso\core\services\notifications\PersistentAdminNoticeManager' |
|
1200 | + ), |
|
1201 | + '4.9.27' |
|
1202 | + ); |
|
1203 | + } |
|
1204 | + |
|
1205 | + |
|
1206 | + /** |
|
1207 | + * @deprecated 4.9.27 |
|
1208 | + * @param string $pan_name the name, or key of the Persistent Admin Notice to be stored |
|
1209 | + * @param string $pan_message the message to be stored persistently until dismissed |
|
1210 | + * @param string $return_url URL to go back to after nag notice is dismissed |
|
1211 | + */ |
|
1212 | + public static function display_persistent_admin_notices($pan_name = '', $pan_message = '', $return_url = '') |
|
1213 | + { |
|
1214 | + EE_Error::doing_it_wrong( |
|
1215 | + __METHOD__, |
|
1216 | + sprintf( |
|
1217 | + __('Usage is deprecated. Use "%1$s" instead.', 'event_espresso'), |
|
1218 | + '\EventEspresso\core\services\notifications\PersistentAdminNoticeManager' |
|
1219 | + ), |
|
1220 | + '4.9.27' |
|
1221 | + ); |
|
1222 | + } |
|
1223 | + |
|
1224 | + |
|
1225 | + /** |
|
1226 | + * @deprecated 4.9.27 |
|
1227 | + * @param string $return_url |
|
1228 | + */ |
|
1229 | + public static function get_persistent_admin_notices($return_url = '') |
|
1230 | + { |
|
1231 | + EE_Error::doing_it_wrong( |
|
1232 | + __METHOD__, |
|
1233 | + sprintf( |
|
1234 | + __('Usage is deprecated. Use "%1$s" instead.', 'event_espresso'), |
|
1235 | + '\EventEspresso\core\services\notifications\PersistentAdminNoticeManager' |
|
1236 | + ), |
|
1237 | + '4.9.27' |
|
1238 | + ); |
|
1239 | + } |
|
1240 | 1240 | } |
1241 | 1241 | |
1242 | 1242 | // end of Class EE_Exceptions |
@@ -1249,29 +1249,29 @@ discard block |
||
1249 | 1249 | */ |
1250 | 1250 | function espresso_error_enqueue_scripts() |
1251 | 1251 | { |
1252 | - // js for error handling |
|
1253 | - if (! wp_script_is('espresso_core', 'registered')) { |
|
1254 | - wp_register_script( |
|
1255 | - 'espresso_core', |
|
1256 | - EE_GLOBAL_ASSETS_URL . 'scripts/espresso_core.js', |
|
1257 | - ['jquery'], |
|
1258 | - EVENT_ESPRESSO_VERSION, |
|
1259 | - false |
|
1260 | - ); |
|
1261 | - } |
|
1262 | - wp_register_script( |
|
1263 | - 'ee_error_js', |
|
1264 | - EE_GLOBAL_ASSETS_URL . 'scripts/EE_Error.js', |
|
1265 | - array('espresso_core'), |
|
1266 | - EVENT_ESPRESSO_VERSION, |
|
1267 | - false |
|
1268 | - ); |
|
1252 | + // js for error handling |
|
1253 | + if (! wp_script_is('espresso_core', 'registered')) { |
|
1254 | + wp_register_script( |
|
1255 | + 'espresso_core', |
|
1256 | + EE_GLOBAL_ASSETS_URL . 'scripts/espresso_core.js', |
|
1257 | + ['jquery'], |
|
1258 | + EVENT_ESPRESSO_VERSION, |
|
1259 | + false |
|
1260 | + ); |
|
1261 | + } |
|
1262 | + wp_register_script( |
|
1263 | + 'ee_error_js', |
|
1264 | + EE_GLOBAL_ASSETS_URL . 'scripts/EE_Error.js', |
|
1265 | + array('espresso_core'), |
|
1266 | + EVENT_ESPRESSO_VERSION, |
|
1267 | + false |
|
1268 | + ); |
|
1269 | 1269 | } |
1270 | 1270 | |
1271 | 1271 | if (is_admin()) { |
1272 | - add_action('admin_enqueue_scripts', 'espresso_error_enqueue_scripts', 5); |
|
1272 | + add_action('admin_enqueue_scripts', 'espresso_error_enqueue_scripts', 5); |
|
1273 | 1273 | } else { |
1274 | - add_action('wp_enqueue_scripts', 'espresso_error_enqueue_scripts', 5); |
|
1274 | + add_action('wp_enqueue_scripts', 'espresso_error_enqueue_scripts', 5); |
|
1275 | 1275 | } |
1276 | 1276 | |
1277 | 1277 |
@@ -99,14 +99,14 @@ discard block |
||
99 | 99 | default: |
100 | 100 | $to = get_option('admin_email'); |
101 | 101 | } |
102 | - $subject = $type . ' ' . $message . ' in ' . EVENT_ESPRESSO_VERSION . ' on ' . site_url(); |
|
102 | + $subject = $type.' '.$message.' in '.EVENT_ESPRESSO_VERSION.' on '.site_url(); |
|
103 | 103 | $msg = EE_Error::_format_error($type, $message, $file, $line); |
104 | 104 | if (function_exists('wp_mail')) { |
105 | 105 | add_filter('wp_mail_content_type', array('EE_Error', 'set_content_type')); |
106 | 106 | wp_mail($to, $subject, $msg); |
107 | 107 | } |
108 | 108 | echo '<div id="message" class="espresso-notices error"><p>'; |
109 | - echo $type . ': ' . $message . '<br />' . $file . ' line ' . $line; |
|
109 | + echo $type.': '.$message.'<br />'.$file.' line '.$line; |
|
110 | 110 | echo '<br /></p></div>'; |
111 | 111 | } |
112 | 112 | |
@@ -222,13 +222,13 @@ discard block |
||
222 | 222 | $msg = WP_DEBUG ? $dev_msg : $user_msg; |
223 | 223 | // add details to _all_exceptions array |
224 | 224 | $x_time = time(); |
225 | - self::$_all_exceptions[ $x_time ]['name'] = get_class($this); |
|
226 | - self::$_all_exceptions[ $x_time ]['file'] = $this->getFile(); |
|
227 | - self::$_all_exceptions[ $x_time ]['line'] = $this->getLine(); |
|
228 | - self::$_all_exceptions[ $x_time ]['msg'] = $msg; |
|
229 | - self::$_all_exceptions[ $x_time ]['code'] = $this->getCode(); |
|
230 | - self::$_all_exceptions[ $x_time ]['trace'] = $this->getTrace(); |
|
231 | - self::$_all_exceptions[ $x_time ]['string'] = $this->getTraceAsString(); |
|
225 | + self::$_all_exceptions[$x_time]['name'] = get_class($this); |
|
226 | + self::$_all_exceptions[$x_time]['file'] = $this->getFile(); |
|
227 | + self::$_all_exceptions[$x_time]['line'] = $this->getLine(); |
|
228 | + self::$_all_exceptions[$x_time]['msg'] = $msg; |
|
229 | + self::$_all_exceptions[$x_time]['code'] = $this->getCode(); |
|
230 | + self::$_all_exceptions[$x_time]['trace'] = $this->getTrace(); |
|
231 | + self::$_all_exceptions[$x_time]['string'] = $this->getTraceAsString(); |
|
232 | 232 | self::$_error_count++; |
233 | 233 | // add_action( 'shutdown', array( $this, 'display_errors' )); |
234 | 234 | $this->display_errors(); |
@@ -246,8 +246,8 @@ discard block |
||
246 | 246 | */ |
247 | 247 | public static function has_error($check_stored = false, $type_to_check = 'errors') |
248 | 248 | { |
249 | - $has_error = isset(self::$_espresso_notices[ $type_to_check ]) |
|
250 | - && ! empty(self::$_espresso_notices[ $type_to_check ]) |
|
249 | + $has_error = isset(self::$_espresso_notices[$type_to_check]) |
|
250 | + && ! empty(self::$_espresso_notices[$type_to_check]) |
|
251 | 251 | ? true |
252 | 252 | : false; |
253 | 253 | if ($check_stored && ! $has_error) { |
@@ -325,7 +325,7 @@ discard block |
||
325 | 325 | } |
326 | 326 | </style> |
327 | 327 | <div id="ee-error-message" class="error">'; |
328 | - if (! WP_DEBUG) { |
|
328 | + if ( ! WP_DEBUG) { |
|
329 | 329 | $output .= ' |
330 | 330 | <p>'; |
331 | 331 | } |
@@ -384,14 +384,14 @@ discard block |
||
384 | 384 | $class_dsply = ! empty($class) ? $class : ' '; |
385 | 385 | $type_dsply = ! empty($type) ? $type : ' '; |
386 | 386 | $function_dsply = ! empty($function) ? $function : ' '; |
387 | - $args_dsply = ! empty($args) ? '( ' . $args . ' )' : ''; |
|
387 | + $args_dsply = ! empty($args) ? '( '.$args.' )' : ''; |
|
388 | 388 | $trace_details .= ' |
389 | 389 | <tr> |
390 | - <td align="right" class="' . $zebra . '">' . $nmbr_dsply . '</td> |
|
391 | - <td align="right" class="' . $zebra . '">' . $line_dsply . '</td> |
|
392 | - <td align="left" class="' . $zebra . '">' . $file_dsply . '</td> |
|
393 | - <td align="left" class="' . $zebra . '">' . $class_dsply . '</td> |
|
394 | - <td align="left" class="' . $zebra . '">' . $type_dsply . $function_dsply . $args_dsply . '</td> |
|
390 | + <td align="right" class="' . $zebra.'">'.$nmbr_dsply.'</td> |
|
391 | + <td align="right" class="' . $zebra.'">'.$line_dsply.'</td> |
|
392 | + <td align="left" class="' . $zebra.'">'.$file_dsply.'</td> |
|
393 | + <td align="left" class="' . $zebra.'">'.$class_dsply.'</td> |
|
394 | + <td align="left" class="' . $zebra.'">'.$type_dsply.$function_dsply.$args_dsply.'</td> |
|
395 | 395 | </tr>'; |
396 | 396 | } |
397 | 397 | $trace_details .= ' |
@@ -400,7 +400,7 @@ discard block |
||
400 | 400 | } |
401 | 401 | $ex['code'] = $ex['code'] ? $ex['code'] : $error_code; |
402 | 402 | // add generic non-identifying messages for non-privileged users |
403 | - if (! WP_DEBUG) { |
|
403 | + if ( ! WP_DEBUG) { |
|
404 | 404 | $output .= '<span class="ee-error-user-msg-spn">' |
405 | 405 | . trim($ex['msg']) |
406 | 406 | . '</span> <sup>' |
@@ -442,14 +442,14 @@ discard block |
||
442 | 442 | . '-dv" class="ee-error-trace-dv" style="display: none;"> |
443 | 443 | ' |
444 | 444 | . $trace_details; |
445 | - if (! empty($class)) { |
|
445 | + if ( ! empty($class)) { |
|
446 | 446 | $output .= ' |
447 | 447 | <div style="padding:3px; margin:0 0 1em; border:1px solid #666; background:#fff; border-radius:3px;"> |
448 | 448 | <div style="padding:1em 2em; border:1px solid #666; background:#f9f9f9;"> |
449 | 449 | <h3>Class Details</h3>'; |
450 | 450 | $a = new ReflectionClass($class); |
451 | 451 | $output .= ' |
452 | - <pre>' . $a . '</pre> |
|
452 | + <pre>' . $a.'</pre> |
|
453 | 453 | </div> |
454 | 454 | </div>'; |
455 | 455 | } |
@@ -462,7 +462,7 @@ discard block |
||
462 | 462 | } |
463 | 463 | // remove last linebreak |
464 | 464 | $output = substr($output, 0, -6); |
465 | - if (! WP_DEBUG) { |
|
465 | + if ( ! WP_DEBUG) { |
|
466 | 466 | $output .= ' |
467 | 467 | </p>'; |
468 | 468 | } |
@@ -488,20 +488,20 @@ discard block |
||
488 | 488 | private function _convert_args_to_string($arguments = array(), $array = false) |
489 | 489 | { |
490 | 490 | $arg_string = ''; |
491 | - if (! empty($arguments)) { |
|
491 | + if ( ! empty($arguments)) { |
|
492 | 492 | $args = array(); |
493 | 493 | foreach ($arguments as $arg) { |
494 | - if (! empty($arg)) { |
|
494 | + if ( ! empty($arg)) { |
|
495 | 495 | if (is_string($arg)) { |
496 | - $args[] = " '" . $arg . "'"; |
|
496 | + $args[] = " '".$arg."'"; |
|
497 | 497 | } elseif (is_array($arg)) { |
498 | - $args[] = 'ARRAY(' . $this->_convert_args_to_string($arg, true); |
|
498 | + $args[] = 'ARRAY('.$this->_convert_args_to_string($arg, true); |
|
499 | 499 | } elseif ($arg === null) { |
500 | 500 | $args[] = ' NULL'; |
501 | 501 | } elseif (is_bool($arg)) { |
502 | 502 | $args[] = ($arg) ? ' TRUE' : ' FALSE'; |
503 | 503 | } elseif (is_object($arg)) { |
504 | - $args[] = ' OBJECT ' . get_class($arg); |
|
504 | + $args[] = ' OBJECT '.get_class($arg); |
|
505 | 505 | } elseif (is_resource($arg)) { |
506 | 506 | $args[] = get_resource_type($arg); |
507 | 507 | } else { |
@@ -599,7 +599,7 @@ discard block |
||
599 | 599 | { |
600 | 600 | if (empty($msg)) { |
601 | 601 | EE_Error::doing_it_wrong( |
602 | - 'EE_Error::add_' . $type . '()', |
|
602 | + 'EE_Error::add_'.$type.'()', |
|
603 | 603 | sprintf( |
604 | 604 | __( |
605 | 605 | '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', |
@@ -639,17 +639,17 @@ discard block |
||
639 | 639 | do_action('AHEE__EE_Error___add_notice', $type, $user_msg, $dev_msg, $file, $func, $line); |
640 | 640 | $msg = WP_DEBUG ? $dev_msg : $user_msg; |
641 | 641 | // add notice if message exists |
642 | - if (! empty($msg)) { |
|
642 | + if ( ! empty($msg)) { |
|
643 | 643 | // get error code |
644 | 644 | $notice_code = EE_Error::generate_error_code($file, $func, $line); |
645 | 645 | if (WP_DEBUG && $type === 'errors') { |
646 | - $msg .= '<br/><span class="tiny-text">' . $notice_code . '</span>'; |
|
646 | + $msg .= '<br/><span class="tiny-text">'.$notice_code.'</span>'; |
|
647 | 647 | } |
648 | 648 | // add notice. Index by code if it's not blank |
649 | 649 | if ($notice_code) { |
650 | - self::$_espresso_notices[ $type ][ $notice_code ] = $msg; |
|
650 | + self::$_espresso_notices[$type][$notice_code] = $msg; |
|
651 | 651 | } else { |
652 | - self::$_espresso_notices[ $type ][] = $msg; |
|
652 | + self::$_espresso_notices[$type][] = $msg; |
|
653 | 653 | } |
654 | 654 | add_action('wp_footer', array('EE_Error', 'enqueue_error_scripts'), 1); |
655 | 655 | } |
@@ -900,7 +900,7 @@ discard block |
||
900 | 900 | // remove empty notices |
901 | 901 | foreach ($notices as $type => $notice) { |
902 | 902 | if (empty($notice)) { |
903 | - unset($notices[ $type ]); |
|
903 | + unset($notices[$type]); |
|
904 | 904 | } |
905 | 905 | } |
906 | 906 | } |
@@ -923,16 +923,16 @@ discard block |
||
923 | 923 | $print_scripts = false; |
924 | 924 | // grab any notices that have been previously saved |
925 | 925 | $notices = EE_Error::getStoredNotices(); |
926 | - if (! empty($notices)) { |
|
926 | + if ( ! empty($notices)) { |
|
927 | 927 | foreach ($notices as $type => $notice) { |
928 | 928 | if (is_array($notice) && ! empty($notice)) { |
929 | 929 | // make sure that existing notice type is an array |
930 | - self::$_espresso_notices[ $type ] = is_array(self::$_espresso_notices[ $type ]) |
|
931 | - && ! empty(self::$_espresso_notices[ $type ]) |
|
932 | - ? self::$_espresso_notices[ $type ] |
|
930 | + self::$_espresso_notices[$type] = is_array(self::$_espresso_notices[$type]) |
|
931 | + && ! empty(self::$_espresso_notices[$type]) |
|
932 | + ? self::$_espresso_notices[$type] |
|
933 | 933 | : array(); |
934 | 934 | // add newly created notices to existing ones |
935 | - self::$_espresso_notices[ $type ] += $notice; |
|
935 | + self::$_espresso_notices[$type] += $notice; |
|
936 | 936 | $print_scripts = true; |
937 | 937 | } |
938 | 938 | } |
@@ -959,10 +959,10 @@ discard block |
||
959 | 959 | $css_id = is_admin() ? 'ee-success-message' : 'espresso-notices-success'; |
960 | 960 | $css_class = is_admin() ? 'updated fade' : 'success fade-away'; |
961 | 961 | // showMessage( $success_messages ); |
962 | - $notices .= '<div id="' . $css_id . '" ' |
|
963 | - . 'class="espresso-notices ' . $css_class . '" ' |
|
962 | + $notices .= '<div id="'.$css_id.'" ' |
|
963 | + . 'class="espresso-notices '.$css_class.'" ' |
|
964 | 964 | . 'style="display:none;">' |
965 | - . '<p>' . $success_messages . '</p>' |
|
965 | + . '<p>'.$success_messages.'</p>' |
|
966 | 966 | . $close |
967 | 967 | . '</div>'; |
968 | 968 | } |
@@ -970,10 +970,10 @@ discard block |
||
970 | 970 | $css_id = is_admin() ? 'ee-attention-message' : 'espresso-notices-attention'; |
971 | 971 | $css_class = is_admin() ? 'updated ee-notices-attention' : 'attention fade-away'; |
972 | 972 | // showMessage( $error_messages, TRUE ); |
973 | - $notices .= '<div id="' . $css_id . '" ' |
|
974 | - . 'class="espresso-notices ' . $css_class . '" ' |
|
973 | + $notices .= '<div id="'.$css_id.'" ' |
|
974 | + . 'class="espresso-notices '.$css_class.'" ' |
|
975 | 975 | . 'style="display:none;">' |
976 | - . '<p>' . $attention_messages . '</p>' |
|
976 | + . '<p>'.$attention_messages.'</p>' |
|
977 | 977 | . $close |
978 | 978 | . '</div>'; |
979 | 979 | } |
@@ -981,10 +981,10 @@ discard block |
||
981 | 981 | $css_id = is_admin() ? 'ee-error-message' : 'espresso-notices-error'; |
982 | 982 | $css_class = is_admin() ? 'error' : 'error fade-away'; |
983 | 983 | // showMessage( $error_messages, TRUE ); |
984 | - $notices .= '<div id="' . $css_id . '" ' |
|
985 | - . 'class="espresso-notices ' . $css_class . '" ' |
|
984 | + $notices .= '<div id="'.$css_id.'" ' |
|
985 | + . 'class="espresso-notices '.$css_class.'" ' |
|
986 | 986 | . 'style="display:none;">' |
987 | - . '<p>' . $error_messages . '</p>' |
|
987 | + . '<p>'.$error_messages.'</p>' |
|
988 | 988 | . $close |
989 | 989 | . '</div>'; |
990 | 990 | } |
@@ -1001,7 +1001,7 @@ discard block |
||
1001 | 1001 | */ |
1002 | 1002 | private static function _print_scripts($force_print = false) |
1003 | 1003 | { |
1004 | - if (! $force_print && (did_action('admin_enqueue_scripts') || did_action('wp_enqueue_scripts'))) { |
|
1004 | + if ( ! $force_print && (did_action('admin_enqueue_scripts') || did_action('wp_enqueue_scripts'))) { |
|
1005 | 1005 | if (wp_script_is('ee_error_js', 'registered')) { |
1006 | 1006 | wp_enqueue_style('espresso_default'); |
1007 | 1007 | wp_enqueue_style('espresso_custom_css'); |
@@ -1015,12 +1015,12 @@ discard block |
||
1015 | 1015 | return ' |
1016 | 1016 | <script> |
1017 | 1017 | /* <![CDATA[ */ |
1018 | -var ee_settings = {"wp_debug":"' . WP_DEBUG . '"}; |
|
1018 | +var ee_settings = {"wp_debug":"' . WP_DEBUG.'"}; |
|
1019 | 1019 | /* ]]> */ |
1020 | 1020 | </script> |
1021 | -<script src="' . includes_url() . 'js/jquery/jquery.js" type="text/javascript"></script> |
|
1022 | -<script src="' . EE_GLOBAL_ASSETS_URL . 'scripts/espresso_core.js' . '?ver=' . espresso_version() . '" type="text/javascript"></script> |
|
1023 | -<script src="' . EE_GLOBAL_ASSETS_URL . 'scripts/EE_Error.js' . '?ver=' . espresso_version() . '" type="text/javascript"></script> |
|
1021 | +<script src="' . includes_url().'js/jquery/jquery.js" type="text/javascript"></script> |
|
1022 | +<script src="' . EE_GLOBAL_ASSETS_URL.'scripts/espresso_core.js'.'?ver='.espresso_version().'" type="text/javascript"></script> |
|
1023 | +<script src="' . EE_GLOBAL_ASSETS_URL.'scripts/EE_Error.js'.'?ver='.espresso_version().'" type="text/javascript"></script> |
|
1024 | 1024 | '; |
1025 | 1025 | } |
1026 | 1026 | return ''; |
@@ -1049,8 +1049,8 @@ discard block |
||
1049 | 1049 | { |
1050 | 1050 | $file = explode('.', basename($file)); |
1051 | 1051 | $error_code = ! empty($file[0]) ? $file[0] : ''; |
1052 | - $error_code .= ! empty($func) ? ' - ' . $func : ''; |
|
1053 | - $error_code .= ! empty($line) ? ' - ' . $line : ''; |
|
1052 | + $error_code .= ! empty($func) ? ' - '.$func : ''; |
|
1053 | + $error_code .= ! empty($line) ? ' - '.$line : ''; |
|
1054 | 1054 | return $error_code; |
1055 | 1055 | } |
1056 | 1056 | |
@@ -1069,18 +1069,18 @@ discard block |
||
1069 | 1069 | if (empty($ex)) { |
1070 | 1070 | return; |
1071 | 1071 | } |
1072 | - if (! $time) { |
|
1072 | + if ( ! $time) { |
|
1073 | 1073 | $time = time(); |
1074 | 1074 | } |
1075 | 1075 | $exception_log = '----------------------------------------------------------------------------------------' |
1076 | 1076 | . PHP_EOL; |
1077 | - $exception_log .= '[' . date('Y-m-d H:i:s', $time) . '] Exception Details' . PHP_EOL; |
|
1078 | - $exception_log .= 'Message: ' . $ex['msg'] . PHP_EOL; |
|
1079 | - $exception_log .= 'Code: ' . $ex['code'] . PHP_EOL; |
|
1080 | - $exception_log .= 'File: ' . $ex['file'] . PHP_EOL; |
|
1081 | - $exception_log .= 'Line No: ' . $ex['line'] . PHP_EOL; |
|
1082 | - $exception_log .= 'Stack trace: ' . PHP_EOL; |
|
1083 | - $exception_log .= $ex['string'] . PHP_EOL; |
|
1077 | + $exception_log .= '['.date('Y-m-d H:i:s', $time).'] Exception Details'.PHP_EOL; |
|
1078 | + $exception_log .= 'Message: '.$ex['msg'].PHP_EOL; |
|
1079 | + $exception_log .= 'Code: '.$ex['code'].PHP_EOL; |
|
1080 | + $exception_log .= 'File: '.$ex['file'].PHP_EOL; |
|
1081 | + $exception_log .= 'Line No: '.$ex['line'].PHP_EOL; |
|
1082 | + $exception_log .= 'Stack trace: '.PHP_EOL; |
|
1083 | + $exception_log .= $ex['string'].PHP_EOL; |
|
1084 | 1084 | $exception_log .= '----------------------------------------------------------------------------------------' |
1085 | 1085 | . PHP_EOL; |
1086 | 1086 | try { |
@@ -1250,10 +1250,10 @@ discard block |
||
1250 | 1250 | function espresso_error_enqueue_scripts() |
1251 | 1251 | { |
1252 | 1252 | // js for error handling |
1253 | - if (! wp_script_is('espresso_core', 'registered')) { |
|
1253 | + if ( ! wp_script_is('espresso_core', 'registered')) { |
|
1254 | 1254 | wp_register_script( |
1255 | 1255 | 'espresso_core', |
1256 | - EE_GLOBAL_ASSETS_URL . 'scripts/espresso_core.js', |
|
1256 | + EE_GLOBAL_ASSETS_URL.'scripts/espresso_core.js', |
|
1257 | 1257 | ['jquery'], |
1258 | 1258 | EVENT_ESPRESSO_VERSION, |
1259 | 1259 | false |
@@ -1261,7 +1261,7 @@ discard block |
||
1261 | 1261 | } |
1262 | 1262 | wp_register_script( |
1263 | 1263 | 'ee_error_js', |
1264 | - EE_GLOBAL_ASSETS_URL . 'scripts/EE_Error.js', |
|
1264 | + EE_GLOBAL_ASSETS_URL.'scripts/EE_Error.js', |
|
1265 | 1265 | array('espresso_core'), |
1266 | 1266 | EVENT_ESPRESSO_VERSION, |
1267 | 1267 | false |
@@ -15,38 +15,38 @@ |
||
15 | 15 | { |
16 | 16 | |
17 | 17 | |
18 | - /** |
|
19 | - * @param string $table_column |
|
20 | - * @param string $nice_name |
|
21 | - * @param bool $nullable |
|
22 | - * @param null $default_value |
|
23 | - * @throws InvalidArgumentException |
|
24 | - */ |
|
25 | - public function __construct($table_column, $nice_name, $nullable, $default_value = null) |
|
26 | - { |
|
27 | - parent::__construct($table_column, $nice_name, $nullable, $default_value); |
|
28 | - $this->setSchemaFormat('email'); |
|
29 | - } |
|
18 | + /** |
|
19 | + * @param string $table_column |
|
20 | + * @param string $nice_name |
|
21 | + * @param bool $nullable |
|
22 | + * @param null $default_value |
|
23 | + * @throws InvalidArgumentException |
|
24 | + */ |
|
25 | + public function __construct($table_column, $nice_name, $nullable, $default_value = null) |
|
26 | + { |
|
27 | + parent::__construct($table_column, $nice_name, $nullable, $default_value); |
|
28 | + $this->setSchemaFormat('email'); |
|
29 | + } |
|
30 | 30 | |
31 | 31 | |
32 | 32 | |
33 | - /** |
|
34 | - * In form inputs, we should have called htmlentities and addslashes() on form inputs, |
|
35 | - * so we need to undo that on setting of these fields |
|
36 | - * |
|
37 | - * @param string $email_address |
|
38 | - * @return string |
|
39 | - * @throws InvalidArgumentException |
|
40 | - * @throws InvalidInterfaceException |
|
41 | - * @throws InvalidDataTypeException |
|
42 | - */ |
|
43 | - public function prepare_for_set($email_address) |
|
44 | - { |
|
45 | - try { |
|
46 | - $email_address_obj = EmailAddressFactory::create($email_address); |
|
47 | - return $email_address_obj instanceof EmailAddress ? $email_address_obj->get() : ''; |
|
48 | - } catch (EmailValidationException $e) { |
|
49 | - return ''; |
|
50 | - } |
|
51 | - } |
|
33 | + /** |
|
34 | + * In form inputs, we should have called htmlentities and addslashes() on form inputs, |
|
35 | + * so we need to undo that on setting of these fields |
|
36 | + * |
|
37 | + * @param string $email_address |
|
38 | + * @return string |
|
39 | + * @throws InvalidArgumentException |
|
40 | + * @throws InvalidInterfaceException |
|
41 | + * @throws InvalidDataTypeException |
|
42 | + */ |
|
43 | + public function prepare_for_set($email_address) |
|
44 | + { |
|
45 | + try { |
|
46 | + $email_address_obj = EmailAddressFactory::create($email_address); |
|
47 | + return $email_address_obj instanceof EmailAddress ? $email_address_obj->get() : ''; |
|
48 | + } catch (EmailValidationException $e) { |
|
49 | + return ''; |
|
50 | + } |
|
51 | + } |
|
52 | 52 | } |
@@ -112,10 +112,10 @@ |
||
112 | 112 | ]; |
113 | 113 | $this->_wp_core_model = true; |
114 | 114 | $this->_caps_slug = 'users'; |
115 | - $this->_cap_contexts_to_cap_action_map[ EEM_Base::caps_read ] = 'list'; |
|
116 | - $this->_cap_contexts_to_cap_action_map[ EEM_Base::caps_read_admin ] = 'list'; |
|
115 | + $this->_cap_contexts_to_cap_action_map[EEM_Base::caps_read] = 'list'; |
|
116 | + $this->_cap_contexts_to_cap_action_map[EEM_Base::caps_read_admin] = 'list'; |
|
117 | 117 | foreach ($this->_cap_contexts_to_cap_action_map as $context => $action) { |
118 | - $this->_cap_restriction_generators[ $context ] = new EE_Restriction_Generator_WP_User(); |
|
118 | + $this->_cap_restriction_generators[$context] = new EE_Restriction_Generator_WP_User(); |
|
119 | 119 | } |
120 | 120 | // @todo: account for create_users controls whether they can create users at all |
121 | 121 | parent::__construct($timezone); |
@@ -13,132 +13,132 @@ |
||
13 | 13 | class EEM_WP_User extends EEM_Base |
14 | 14 | { |
15 | 15 | |
16 | - /** |
|
17 | - * private instance of the EEM_WP_User object |
|
18 | - * |
|
19 | - * @type EEM_WP_User |
|
20 | - */ |
|
21 | - protected static $_instance; |
|
16 | + /** |
|
17 | + * private instance of the EEM_WP_User object |
|
18 | + * |
|
19 | + * @type EEM_WP_User |
|
20 | + */ |
|
21 | + protected static $_instance; |
|
22 | 22 | |
23 | 23 | |
24 | - /** |
|
25 | - * constructor |
|
26 | - * |
|
27 | - * @param null $timezone |
|
28 | - * @param ModelFieldFactory $model_field_factory |
|
29 | - * @throws EE_Error |
|
30 | - * @throws InvalidArgumentException |
|
31 | - */ |
|
32 | - protected function __construct($timezone = null, ModelFieldFactory $model_field_factory) |
|
33 | - { |
|
34 | - $this->singular_item = esc_html__('WP_User', 'event_espresso'); |
|
35 | - $this->plural_item = esc_html__('WP_Users', 'event_espresso'); |
|
36 | - global $wpdb; |
|
37 | - $this->_tables = array( |
|
38 | - 'WP_User' => new EE_Primary_Table($wpdb->users, 'ID', true), |
|
39 | - ); |
|
40 | - $this->_fields = array( |
|
41 | - 'WP_User' => array( |
|
42 | - 'ID' => $model_field_factory->createPrimaryKeyIntField( |
|
43 | - 'ID', |
|
44 | - esc_html__('WP_User ID', 'event_espresso') |
|
45 | - ), |
|
46 | - 'user_login' => $model_field_factory->createPlainTextField( |
|
47 | - 'user_login', |
|
48 | - esc_html__('User Login', 'event_espresso'), |
|
49 | - false |
|
50 | - ), |
|
51 | - 'user_pass' => $model_field_factory->createPlainTextField( |
|
52 | - 'user_pass', |
|
53 | - esc_html__('User Password', 'event_espresso'), |
|
54 | - false |
|
55 | - ), |
|
56 | - 'user_nicename' => $model_field_factory->createPlainTextField( |
|
57 | - 'user_nicename', |
|
58 | - esc_html__(' User Nice Name', 'event_espresso'), |
|
59 | - false |
|
60 | - ), |
|
61 | - 'user_email' => $model_field_factory->createEmailField( |
|
62 | - 'user_email', |
|
63 | - esc_html__('User Email', 'event_espresso'), |
|
64 | - false |
|
65 | - ), |
|
66 | - 'user_registered' => $model_field_factory->createDatetimeField( |
|
67 | - 'user_registered', |
|
68 | - esc_html__('Date User Registered', 'event_espresso'), |
|
69 | - $timezone |
|
70 | - ), |
|
71 | - 'user_activation_key' => $model_field_factory->createPlainTextField( |
|
72 | - 'user_activation_key', |
|
73 | - esc_html__('User Activation Key', 'event_espresso'), |
|
74 | - false |
|
75 | - ), |
|
76 | - 'user_status' => $model_field_factory->createIntegerField( |
|
77 | - 'user_status', |
|
78 | - esc_html__('User Status', 'event_espresso') |
|
79 | - ), |
|
80 | - 'display_name' => $model_field_factory->createPlainTextField( |
|
81 | - 'display_name', |
|
82 | - esc_html__('Display Name', 'event_espresso'), |
|
83 | - false |
|
84 | - ), |
|
85 | - ), |
|
86 | - ); |
|
87 | - $this->_model_relations = array( |
|
88 | - 'Attendee' => new EE_Has_Many_Relation(), |
|
89 | - // all models are related to the change log |
|
90 | - // 'Change_Log' => new EE_Has_Many_Relation(), |
|
91 | - 'Event' => new EE_Has_Many_Relation(), |
|
92 | - 'Message' => new EE_Has_Many_Relation(), |
|
93 | - 'Payment_Method' => new EE_Has_Many_Relation(), |
|
94 | - 'Price' => new EE_Has_Many_Relation(), |
|
95 | - 'Price_Type' => new EE_Has_Many_Relation(), |
|
96 | - 'Question' => new EE_Has_Many_Relation(), |
|
97 | - 'Question_Group' => new EE_Has_Many_Relation(), |
|
98 | - 'Ticket' => new EE_Has_Many_Relation(), |
|
99 | - 'Venue' => new EE_Has_Many_Relation(), |
|
100 | - ); |
|
101 | - $this->foreign_key_aliases = [ |
|
102 | - 'Event.EVT_wp_user' => 'WP_User.ID', |
|
103 | - 'Payment_Method.PMD_wp_user' => 'WP_User.ID', |
|
104 | - 'Price.PRC_wp_user' => 'WP_User.ID', |
|
105 | - 'Price_Type.PRT_wp_user' => 'WP_User.ID', |
|
106 | - 'Question.QST_wp_user' => 'WP_User.ID', |
|
107 | - 'Question_Group.QSG_wp_user' => 'WP_User.ID', |
|
108 | - 'Ticket.VNU_wp_user' => 'WP_User.ID', |
|
109 | - 'Venue.TKT_wp_user' => 'WP_User.ID', |
|
110 | - ]; |
|
111 | - $this->_wp_core_model = true; |
|
112 | - $this->_caps_slug = 'users'; |
|
113 | - $this->_cap_contexts_to_cap_action_map[ EEM_Base::caps_read ] = 'list'; |
|
114 | - $this->_cap_contexts_to_cap_action_map[ EEM_Base::caps_read_admin ] = 'list'; |
|
115 | - foreach ($this->_cap_contexts_to_cap_action_map as $context => $action) { |
|
116 | - $this->_cap_restriction_generators[ $context ] = new EE_Restriction_Generator_WP_User(); |
|
117 | - } |
|
118 | - // @todo: account for create_users controls whether they can create users at all |
|
119 | - parent::__construct($timezone); |
|
120 | - } |
|
24 | + /** |
|
25 | + * constructor |
|
26 | + * |
|
27 | + * @param null $timezone |
|
28 | + * @param ModelFieldFactory $model_field_factory |
|
29 | + * @throws EE_Error |
|
30 | + * @throws InvalidArgumentException |
|
31 | + */ |
|
32 | + protected function __construct($timezone = null, ModelFieldFactory $model_field_factory) |
|
33 | + { |
|
34 | + $this->singular_item = esc_html__('WP_User', 'event_espresso'); |
|
35 | + $this->plural_item = esc_html__('WP_Users', 'event_espresso'); |
|
36 | + global $wpdb; |
|
37 | + $this->_tables = array( |
|
38 | + 'WP_User' => new EE_Primary_Table($wpdb->users, 'ID', true), |
|
39 | + ); |
|
40 | + $this->_fields = array( |
|
41 | + 'WP_User' => array( |
|
42 | + 'ID' => $model_field_factory->createPrimaryKeyIntField( |
|
43 | + 'ID', |
|
44 | + esc_html__('WP_User ID', 'event_espresso') |
|
45 | + ), |
|
46 | + 'user_login' => $model_field_factory->createPlainTextField( |
|
47 | + 'user_login', |
|
48 | + esc_html__('User Login', 'event_espresso'), |
|
49 | + false |
|
50 | + ), |
|
51 | + 'user_pass' => $model_field_factory->createPlainTextField( |
|
52 | + 'user_pass', |
|
53 | + esc_html__('User Password', 'event_espresso'), |
|
54 | + false |
|
55 | + ), |
|
56 | + 'user_nicename' => $model_field_factory->createPlainTextField( |
|
57 | + 'user_nicename', |
|
58 | + esc_html__(' User Nice Name', 'event_espresso'), |
|
59 | + false |
|
60 | + ), |
|
61 | + 'user_email' => $model_field_factory->createEmailField( |
|
62 | + 'user_email', |
|
63 | + esc_html__('User Email', 'event_espresso'), |
|
64 | + false |
|
65 | + ), |
|
66 | + 'user_registered' => $model_field_factory->createDatetimeField( |
|
67 | + 'user_registered', |
|
68 | + esc_html__('Date User Registered', 'event_espresso'), |
|
69 | + $timezone |
|
70 | + ), |
|
71 | + 'user_activation_key' => $model_field_factory->createPlainTextField( |
|
72 | + 'user_activation_key', |
|
73 | + esc_html__('User Activation Key', 'event_espresso'), |
|
74 | + false |
|
75 | + ), |
|
76 | + 'user_status' => $model_field_factory->createIntegerField( |
|
77 | + 'user_status', |
|
78 | + esc_html__('User Status', 'event_espresso') |
|
79 | + ), |
|
80 | + 'display_name' => $model_field_factory->createPlainTextField( |
|
81 | + 'display_name', |
|
82 | + esc_html__('Display Name', 'event_espresso'), |
|
83 | + false |
|
84 | + ), |
|
85 | + ), |
|
86 | + ); |
|
87 | + $this->_model_relations = array( |
|
88 | + 'Attendee' => new EE_Has_Many_Relation(), |
|
89 | + // all models are related to the change log |
|
90 | + // 'Change_Log' => new EE_Has_Many_Relation(), |
|
91 | + 'Event' => new EE_Has_Many_Relation(), |
|
92 | + 'Message' => new EE_Has_Many_Relation(), |
|
93 | + 'Payment_Method' => new EE_Has_Many_Relation(), |
|
94 | + 'Price' => new EE_Has_Many_Relation(), |
|
95 | + 'Price_Type' => new EE_Has_Many_Relation(), |
|
96 | + 'Question' => new EE_Has_Many_Relation(), |
|
97 | + 'Question_Group' => new EE_Has_Many_Relation(), |
|
98 | + 'Ticket' => new EE_Has_Many_Relation(), |
|
99 | + 'Venue' => new EE_Has_Many_Relation(), |
|
100 | + ); |
|
101 | + $this->foreign_key_aliases = [ |
|
102 | + 'Event.EVT_wp_user' => 'WP_User.ID', |
|
103 | + 'Payment_Method.PMD_wp_user' => 'WP_User.ID', |
|
104 | + 'Price.PRC_wp_user' => 'WP_User.ID', |
|
105 | + 'Price_Type.PRT_wp_user' => 'WP_User.ID', |
|
106 | + 'Question.QST_wp_user' => 'WP_User.ID', |
|
107 | + 'Question_Group.QSG_wp_user' => 'WP_User.ID', |
|
108 | + 'Ticket.VNU_wp_user' => 'WP_User.ID', |
|
109 | + 'Venue.TKT_wp_user' => 'WP_User.ID', |
|
110 | + ]; |
|
111 | + $this->_wp_core_model = true; |
|
112 | + $this->_caps_slug = 'users'; |
|
113 | + $this->_cap_contexts_to_cap_action_map[ EEM_Base::caps_read ] = 'list'; |
|
114 | + $this->_cap_contexts_to_cap_action_map[ EEM_Base::caps_read_admin ] = 'list'; |
|
115 | + foreach ($this->_cap_contexts_to_cap_action_map as $context => $action) { |
|
116 | + $this->_cap_restriction_generators[ $context ] = new EE_Restriction_Generator_WP_User(); |
|
117 | + } |
|
118 | + // @todo: account for create_users controls whether they can create users at all |
|
119 | + parent::__construct($timezone); |
|
120 | + } |
|
121 | 121 | |
122 | 122 | |
123 | - /** |
|
124 | - * We don't need a foreign key to the WP_User model, we just need its primary key |
|
125 | - * |
|
126 | - * @return string |
|
127 | - * @throws EE_Error |
|
128 | - */ |
|
129 | - public function wp_user_field_name() |
|
130 | - { |
|
131 | - return $this->primary_key_name(); |
|
132 | - } |
|
123 | + /** |
|
124 | + * We don't need a foreign key to the WP_User model, we just need its primary key |
|
125 | + * |
|
126 | + * @return string |
|
127 | + * @throws EE_Error |
|
128 | + */ |
|
129 | + public function wp_user_field_name() |
|
130 | + { |
|
131 | + return $this->primary_key_name(); |
|
132 | + } |
|
133 | 133 | |
134 | 134 | |
135 | - /** |
|
136 | - * This WP_User model IS owned, even though it doesn't have a foreign key to itself |
|
137 | - * |
|
138 | - * @return boolean |
|
139 | - */ |
|
140 | - public function is_owned() |
|
141 | - { |
|
142 | - return true; |
|
143 | - } |
|
135 | + /** |
|
136 | + * This WP_User model IS owned, even though it doesn't have a foreign key to itself |
|
137 | + * |
|
138 | + * @return boolean |
|
139 | + */ |
|
140 | + public function is_owned() |
|
141 | + { |
|
142 | + return true; |
|
143 | + } |
|
144 | 144 | } |
@@ -170,7 +170,7 @@ discard block |
||
170 | 170 | public function is_valid_scope($scope) |
171 | 171 | { |
172 | 172 | $scopes = $this->scopes(); |
173 | - if (isset($scopes[ $scope ])) { |
|
173 | + if (isset($scopes[$scope])) { |
|
174 | 174 | return true; |
175 | 175 | } |
176 | 176 | return false; |
@@ -187,7 +187,7 @@ discard block |
||
187 | 187 | */ |
188 | 188 | public function get_all_active($scope = null, $query_params = []) |
189 | 189 | { |
190 | - if (! isset($query_params['order_by']) && ! isset($query_params['order'])) { |
|
190 | + if ( ! isset($query_params['order_by']) && ! isset($query_params['order'])) { |
|
191 | 191 | $query_params['order_by'] = ['PMD_order' => 'ASC', 'PMD_ID' => 'ASC']; |
192 | 192 | } |
193 | 193 | return $this->get_all($this->_get_query_params_for_all_active($scope, $query_params)); |
@@ -235,7 +235,7 @@ discard block |
||
235 | 235 | $count = 0; |
236 | 236 | foreach ($this->scopes() as $scope_name => $desc) { |
237 | 237 | $count++; |
238 | - $acceptable_scopes[ 'PMD_scope*' . $count ] = ['LIKE', '%' . $scope_name . '%']; |
|
238 | + $acceptable_scopes['PMD_scope*'.$count] = ['LIKE', '%'.$scope_name.'%']; |
|
239 | 239 | } |
240 | 240 | return array_replace_recursive([['OR*active_scope' => $acceptable_scopes]], $query_params); |
241 | 241 | } |
@@ -391,7 +391,7 @@ discard block |
||
391 | 391 | $usable_payment_methods = []; |
392 | 392 | foreach ($payment_methods as $key => $payment_method) { |
393 | 393 | if (EE_Payment_Method_Manager::instance()->payment_method_type_exists($payment_method->type())) { |
394 | - $usable_payment_methods[ $key ] = $payment_method; |
|
394 | + $usable_payment_methods[$key] = $payment_method; |
|
395 | 395 | // some payment methods enqueue their scripts in EE_PMT_*::__construct |
396 | 396 | // which is kinda a no-no (just because it's being constructed doesn't mean we need to enqueue |
397 | 397 | // its scripts). but for backwards-compat we should continue to do that |
@@ -405,7 +405,7 @@ discard block |
||
405 | 405 | $payment_method |
406 | 406 | ); |
407 | 407 | new PersistentAdminNotice( |
408 | - 'auto-deactivated-' . $payment_method->type(), |
|
408 | + 'auto-deactivated-'.$payment_method->type(), |
|
409 | 409 | sprintf( |
410 | 410 | esc_html__( |
411 | 411 | 'The payment method %1$s was automatically deactivated because it appears its associated Event Espresso Addon was recently deactivated.%2$sIt can be reactivated on the %3$sPlugins admin page%4$s, then you can reactivate the payment method.', |
@@ -413,7 +413,7 @@ discard block |
||
413 | 413 | ), |
414 | 414 | $payment_method->admin_name(), |
415 | 415 | '<br />', |
416 | - '<a href="' . admin_url('plugins.php') . '">', |
|
416 | + '<a href="'.admin_url('plugins.php').'">', |
|
417 | 417 | '</a>' |
418 | 418 | ), |
419 | 419 | true |
@@ -17,456 +17,456 @@ |
||
17 | 17 | class EEM_Payment_Method extends EEM_Base |
18 | 18 | { |
19 | 19 | |
20 | - const scope_cart = 'CART'; |
|
21 | - |
|
22 | - const scope_admin = 'ADMIN'; |
|
23 | - |
|
24 | - const scope_api = 'API'; |
|
25 | - |
|
26 | - /** |
|
27 | - * @type EEM_Payment_Method |
|
28 | - */ |
|
29 | - protected static $_instance = null; |
|
30 | - |
|
31 | - |
|
32 | - /** |
|
33 | - * private constructor to prevent direct creation |
|
34 | - * |
|
35 | - * @param null $timezone |
|
36 | - * @throws EE_Error |
|
37 | - */ |
|
38 | - protected function __construct($timezone = null) |
|
39 | - { |
|
40 | - $this->singular_item = esc_html__('Payment Method', 'event_espresso'); |
|
41 | - $this->plural_item = esc_html__('Payment Methods', 'event_espresso'); |
|
42 | - $this->_tables = [ |
|
43 | - 'Payment_Method' => new EE_Primary_Table('esp_payment_method', 'PMD_ID'), |
|
44 | - ]; |
|
45 | - $this->_fields = [ |
|
46 | - 'Payment_Method' => [ |
|
47 | - 'PMD_ID' => new EE_Primary_Key_Int_Field( |
|
48 | - 'PMD_ID', |
|
49 | - esc_html__('ID', 'event_espresso') |
|
50 | - ), |
|
51 | - 'PMD_type' => new EE_Plain_Text_Field( |
|
52 | - 'PMD_type', |
|
53 | - esc_html__('Payment Method Type', 'event_espresso'), |
|
54 | - false, |
|
55 | - 'Admin_Only' |
|
56 | - ), |
|
57 | - 'PMD_name' => new EE_Plain_Text_Field( |
|
58 | - 'PMD_name', |
|
59 | - esc_html__('Name', 'event_espresso'), |
|
60 | - false |
|
61 | - ), |
|
62 | - 'PMD_desc' => new EE_Post_Content_Field( |
|
63 | - 'PMD_desc', |
|
64 | - esc_html__('Description', 'event_espresso'), |
|
65 | - false, |
|
66 | - '' |
|
67 | - ), |
|
68 | - 'PMD_admin_name' => new EE_Plain_Text_Field( |
|
69 | - 'PMD_admin_name', |
|
70 | - esc_html__('Admin-Only Name', 'event_espresso'), |
|
71 | - true |
|
72 | - ), |
|
73 | - 'PMD_admin_desc' => new EE_Post_Content_Field( |
|
74 | - 'PMD_admin_desc', |
|
75 | - esc_html__('Admin-Only Description', 'event_espresso'), |
|
76 | - true |
|
77 | - ), |
|
78 | - 'PMD_slug' => new EE_Slug_Field( |
|
79 | - 'PMD_slug', |
|
80 | - esc_html__('Slug', 'event_espresso'), |
|
81 | - false |
|
82 | - ), |
|
83 | - 'PMD_order' => new EE_Integer_Field( |
|
84 | - 'PMD_order', |
|
85 | - esc_html__('Order', 'event_espresso'), |
|
86 | - false, |
|
87 | - 0 |
|
88 | - ), |
|
89 | - 'PMD_debug_mode' => new EE_Boolean_Field( |
|
90 | - 'PMD_debug_mode', |
|
91 | - esc_html__('Debug Mode On?', 'event_espresso'), |
|
92 | - false, |
|
93 | - false |
|
94 | - ), |
|
95 | - 'PMD_wp_user' => new EE_WP_User_Field( |
|
96 | - 'PMD_wp_user', |
|
97 | - esc_html__('Payment Method Creator ID', 'event_espresso'), |
|
98 | - false |
|
99 | - ), |
|
100 | - 'PMD_open_by_default' => new EE_Boolean_Field( |
|
101 | - 'PMD_open_by_default', |
|
102 | - esc_html__('Open by Default?', 'event_espresso'), |
|
103 | - false, |
|
104 | - false |
|
105 | - ), |
|
106 | - 'PMD_button_url' => new EE_Plain_Text_Field( |
|
107 | - 'PMD_button_url', |
|
108 | - esc_html__('Button URL', 'event_espresso'), |
|
109 | - true, |
|
110 | - '' |
|
111 | - ), |
|
112 | - 'PMD_scope' => new EE_Serialized_Text_Field( |
|
113 | - 'PMD_scope', |
|
114 | - esc_html__('Usable From?', 'event_espresso'), |
|
115 | - false, |
|
116 | - []// possible values currently are 'CART','ADMIN','API' |
|
117 | - ), |
|
118 | - ], |
|
119 | - ]; |
|
120 | - $this->_model_relations = [ |
|
121 | - 'Payment' => new EE_Has_Many_Relation(), |
|
122 | - 'Currency' => new EE_HABTM_Relation('Currency_Payment_Method'), |
|
123 | - 'Transaction' => new EE_Has_Many_Relation(), |
|
124 | - 'WP_User' => new EE_Belongs_To_Relation(), |
|
125 | - ]; |
|
126 | - parent::__construct($timezone); |
|
127 | - } |
|
128 | - |
|
129 | - |
|
130 | - /** |
|
131 | - * Gets one by the slug provided |
|
132 | - * |
|
133 | - * @param string $slug |
|
134 | - * @return EE_Base_Class|EE_Payment_Method|EE_Soft_Delete_Base_Class|NULL |
|
135 | - * @throws EE_Error |
|
136 | - */ |
|
137 | - public function get_one_by_slug($slug) |
|
138 | - { |
|
139 | - return $this->get_one([['PMD_slug' => $slug]]); |
|
140 | - } |
|
141 | - |
|
142 | - |
|
143 | - /** |
|
144 | - * Gets all the acceptable scopes for payment methods. |
|
145 | - * Keys are their names as store din the DB, and values are nice names for displaying them |
|
146 | - * |
|
147 | - * @return array |
|
148 | - */ |
|
149 | - public function scopes() |
|
150 | - { |
|
151 | - return apply_filters( |
|
152 | - 'FHEE__EEM_Payment_Method__scopes', |
|
153 | - [ |
|
154 | - EEM_Payment_Method::scope_cart => esc_html__('Front-end Registration Page', 'event_espresso'), |
|
155 | - EEM_Payment_Method::scope_admin => esc_html__( |
|
156 | - 'Admin Registration Page (no online processing)', |
|
157 | - 'event_espresso' |
|
158 | - ), |
|
159 | - ] |
|
160 | - ); |
|
161 | - } |
|
162 | - |
|
163 | - |
|
164 | - /** |
|
165 | - * Determines if this is an valid scope |
|
166 | - * |
|
167 | - * @param string $scope like one of EEM_Payment_Method::instance()->scopes() |
|
168 | - * @return boolean |
|
169 | - */ |
|
170 | - public function is_valid_scope($scope) |
|
171 | - { |
|
172 | - $scopes = $this->scopes(); |
|
173 | - if (isset($scopes[ $scope ])) { |
|
174 | - return true; |
|
175 | - } |
|
176 | - return false; |
|
177 | - } |
|
178 | - |
|
179 | - |
|
180 | - /** |
|
181 | - * Gets all active payment methods |
|
182 | - * |
|
183 | - * @param string $scope one of |
|
184 | - * @param array $query_params |
|
185 | - * @return EE_Base_Class[]|EE_Payment_Method[] |
|
186 | - * @throws EE_Error |
|
187 | - */ |
|
188 | - public function get_all_active($scope = null, $query_params = []) |
|
189 | - { |
|
190 | - if (! isset($query_params['order_by']) && ! isset($query_params['order'])) { |
|
191 | - $query_params['order_by'] = ['PMD_order' => 'ASC', 'PMD_ID' => 'ASC']; |
|
192 | - } |
|
193 | - return $this->get_all($this->_get_query_params_for_all_active($scope, $query_params)); |
|
194 | - } |
|
195 | - |
|
196 | - |
|
197 | - /** |
|
198 | - * Counts all active gateways in the specified scope |
|
199 | - * |
|
200 | - * @param string $scope one of EEM_Payment_Method::scope_* |
|
201 | - * @param array $query_params |
|
202 | - * @return int |
|
203 | - * @throws EE_Error |
|
204 | - */ |
|
205 | - public function count_active($scope = null, $query_params = []) |
|
206 | - { |
|
207 | - return $this->count($this->_get_query_params_for_all_active($scope, $query_params)); |
|
208 | - } |
|
209 | - |
|
210 | - |
|
211 | - /** |
|
212 | - * Creates the $query_params that can be passed into any EEM_Payment_Method as their $query_params |
|
213 | - * argument to get all active for a given scope |
|
214 | - * |
|
215 | - * @param string $scope one of the constants EEM_Payment_Method::scope_* |
|
216 | - * @param array $query_params |
|
217 | - * @return array |
|
218 | - * @throws EE_Error |
|
219 | - * @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
|
220 | - */ |
|
221 | - protected function _get_query_params_for_all_active($scope = null, $query_params = []) |
|
222 | - { |
|
223 | - if ($scope) { |
|
224 | - if ($this->is_valid_scope($scope)) { |
|
225 | - return array_replace_recursive([['PMD_scope' => ['LIKE', "%$scope%"]]], $query_params); |
|
226 | - } |
|
227 | - throw new EE_Error( |
|
228 | - sprintf( |
|
229 | - esc_html__("'%s' is not a valid scope for a payment method", 'event_espresso'), |
|
230 | - $scope |
|
231 | - ) |
|
232 | - ); |
|
233 | - } |
|
234 | - $acceptable_scopes = []; |
|
235 | - $count = 0; |
|
236 | - foreach ($this->scopes() as $scope_name => $desc) { |
|
237 | - $count++; |
|
238 | - $acceptable_scopes[ 'PMD_scope*' . $count ] = ['LIKE', '%' . $scope_name . '%']; |
|
239 | - } |
|
240 | - return array_replace_recursive([['OR*active_scope' => $acceptable_scopes]], $query_params); |
|
241 | - } |
|
242 | - |
|
243 | - |
|
244 | - /** |
|
245 | - * Creates the $query_params that can be passed into any EEM_Payment_Method as their $query_params |
|
246 | - * argument to get all active for a given scope |
|
247 | - * |
|
248 | - * @param string $scope one of the constants EEM_Payment_Method::scope_* |
|
249 | - * @param array $query_params |
|
250 | - * @return array |
|
251 | - * @throws EE_Error |
|
252 | - * @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
|
253 | - */ |
|
254 | - public function get_query_params_for_all_active($scope = null, $query_params = []) |
|
255 | - { |
|
256 | - return $this->_get_query_params_for_all_active($scope, $query_params); |
|
257 | - } |
|
258 | - |
|
259 | - |
|
260 | - /** |
|
261 | - * Gets one active payment method. see @get_all_active for documentation |
|
262 | - * |
|
263 | - * @param string $scope |
|
264 | - * @param array $query_params |
|
265 | - * @return EE_Base_Class|EE_Payment_Method|EE_Soft_Delete_Base_Class|NULL |
|
266 | - * @throws EE_Error |
|
267 | - */ |
|
268 | - public function get_one_active($scope = null, $query_params = []) |
|
269 | - { |
|
270 | - return $this->get_one($this->_get_query_params_for_all_active($scope, $query_params)); |
|
271 | - } |
|
272 | - |
|
273 | - |
|
274 | - /** |
|
275 | - * Gets one payment method of that type, regardless of whether its active or not |
|
276 | - * |
|
277 | - * @param string $type |
|
278 | - * @return EE_Base_Class|EE_Payment_Method|EE_Soft_Delete_Base_Class|NULL |
|
279 | - * @throws EE_Error |
|
280 | - */ |
|
281 | - public function get_one_of_type($type) |
|
282 | - { |
|
283 | - return $this->get_one([['PMD_type' => $type]]); |
|
284 | - } |
|
285 | - |
|
286 | - |
|
287 | - /** |
|
288 | - * Overrides parent ot also check by the slug |
|
289 | - * |
|
290 | - * @param string|int|EE_Payment_Method $base_class_obj_or_id |
|
291 | - * @param boolean $ensure_is_in_db |
|
292 | - * @return EE_Base_Class|EE_Payment_Method|EE_Soft_Delete_Base_Class|int|string |
|
293 | - * @throws EE_Error |
|
294 | - * @see EEM_Base::ensure_is_obj() |
|
295 | - */ |
|
296 | - public function ensure_is_obj($base_class_obj_or_id, $ensure_is_in_db = false) |
|
297 | - { |
|
298 | - // first: check if it's a slug |
|
299 | - if (is_string($base_class_obj_or_id)) { |
|
300 | - $obj = $this->get_one_by_slug($base_class_obj_or_id); |
|
301 | - if ($obj) { |
|
302 | - return $obj; |
|
303 | - } |
|
304 | - } |
|
305 | - // ok so it wasn't a slug we were passed. try the usual then (ie, it's an object or an ID) |
|
306 | - try { |
|
307 | - return parent::ensure_is_obj($base_class_obj_or_id, $ensure_is_in_db); |
|
308 | - } catch (EE_Error $e) { |
|
309 | - // handle it outside the catch |
|
310 | - } |
|
311 | - throw new EE_Error( |
|
312 | - sprintf( |
|
313 | - esc_html__("'%s' is neither a Payment Method ID, slug, nor object.", 'event_espresso'), |
|
314 | - $base_class_obj_or_id |
|
315 | - ) |
|
316 | - ); |
|
317 | - } |
|
318 | - |
|
319 | - |
|
320 | - /** |
|
321 | - * Gets the ID of this object, or if its a string finds the object's id |
|
322 | - * associated with that slug |
|
323 | - * |
|
324 | - * @param mixed $base_obj_or_id_or_slug |
|
325 | - * @return int |
|
326 | - * @throws EE_Error |
|
327 | - */ |
|
328 | - public function ensure_is_ID($base_obj_or_id_or_slug) |
|
329 | - { |
|
330 | - if (is_string($base_obj_or_id_or_slug)) { |
|
331 | - // assume it's a slug |
|
332 | - $base_obj_or_id_or_slug = $this->get_one_by_slug($base_obj_or_id_or_slug); |
|
333 | - } |
|
334 | - return parent::ensure_is_ID($base_obj_or_id_or_slug); |
|
335 | - } |
|
336 | - |
|
337 | - |
|
338 | - /** |
|
339 | - * Verifies the button urls on all the passed payment methods have a valid button url. |
|
340 | - * If not, resets them to their default. |
|
341 | - * |
|
342 | - * @param EE_Payment_Method[] $payment_methods if NULL, defaults to all payment methods active in the cart |
|
343 | - * @throws EE_Error |
|
344 | - * @throws ReflectionException |
|
345 | - */ |
|
346 | - public function verify_button_urls($payment_methods = null) |
|
347 | - { |
|
348 | - $payment_methods = is_array($payment_methods) |
|
349 | - ? $payment_methods |
|
350 | - : $this->get_all_active(EEM_Payment_Method::scope_cart); |
|
351 | - foreach ($payment_methods as $payment_method) { |
|
352 | - try { |
|
353 | - // If there is really no button URL at all, or if the button URLs still point to decaf folder even |
|
354 | - // though this is a caffeinated install, reset it to the default. |
|
355 | - $current_button_url = $payment_method->button_url(); |
|
356 | - if ( |
|
357 | - empty($current_button_url) |
|
358 | - || ( |
|
359 | - strpos($current_button_url, 'decaf') !== false |
|
360 | - && strpos($payment_method->type_obj()->default_button_url(), 'decaf') === false |
|
361 | - ) |
|
362 | - ) { |
|
363 | - $payment_method->save( |
|
364 | - [ |
|
365 | - 'PMD_button_url' => $payment_method->type_obj()->default_button_url(), |
|
366 | - ] |
|
367 | - ); |
|
368 | - } |
|
369 | - } catch (EE_Error $e) { |
|
370 | - $payment_method->deactivate(); |
|
371 | - } |
|
372 | - } |
|
373 | - } |
|
374 | - |
|
375 | - |
|
376 | - /** |
|
377 | - * Overrides parent to not only turn wpdb results into EE_Payment_Method objects, |
|
378 | - * but also verifies the payment method type of each is a usable object. If not, |
|
379 | - * deactivate it, sets a notification, and deactivates it |
|
380 | - * |
|
381 | - * @param array $rows |
|
382 | - * @return EE_Payment_Method[] |
|
383 | - * @throws EE_Error |
|
384 | - * @throws InvalidDataTypeException |
|
385 | - * @throws ReflectionException |
|
386 | - */ |
|
387 | - protected function _create_objects($rows = []) |
|
388 | - { |
|
389 | - EE_Registry::instance()->load_lib('Payment_Method_Manager'); |
|
390 | - $payment_methods = parent::_create_objects($rows); |
|
391 | - /* @var $payment_methods EE_Payment_Method[] */ |
|
392 | - $usable_payment_methods = []; |
|
393 | - foreach ($payment_methods as $key => $payment_method) { |
|
394 | - if (EE_Payment_Method_Manager::instance()->payment_method_type_exists($payment_method->type())) { |
|
395 | - $usable_payment_methods[ $key ] = $payment_method; |
|
396 | - // some payment methods enqueue their scripts in EE_PMT_*::__construct |
|
397 | - // which is kinda a no-no (just because it's being constructed doesn't mean we need to enqueue |
|
398 | - // its scripts). but for backwards-compat we should continue to do that |
|
399 | - $payment_method->type_obj(); |
|
400 | - } elseif ($payment_method->active()) { |
|
401 | - // only deactivate and notify the admin if the payment is active somewhere |
|
402 | - $payment_method->deactivate(); |
|
403 | - $payment_method->save(); |
|
404 | - do_action( |
|
405 | - 'AHEE__EEM_Payment_Method___create_objects_auto_deactivated_payment_method', |
|
406 | - $payment_method |
|
407 | - ); |
|
408 | - new PersistentAdminNotice( |
|
409 | - 'auto-deactivated-' . $payment_method->type(), |
|
410 | - sprintf( |
|
411 | - esc_html__( |
|
412 | - 'The payment method %1$s was automatically deactivated because it appears its associated Event Espresso Addon was recently deactivated.%2$sIt can be reactivated on the %3$sPlugins admin page%4$s, then you can reactivate the payment method.', |
|
413 | - 'event_espresso' |
|
414 | - ), |
|
415 | - $payment_method->admin_name(), |
|
416 | - '<br />', |
|
417 | - '<a href="' . admin_url('plugins.php') . '">', |
|
418 | - '</a>' |
|
419 | - ), |
|
420 | - true |
|
421 | - ); |
|
422 | - } |
|
423 | - } |
|
424 | - return $usable_payment_methods; |
|
425 | - } |
|
426 | - |
|
427 | - |
|
428 | - /** |
|
429 | - * Gets all the payment methods which can be used for transaction |
|
430 | - * (according to the relations between payment methods and events, and |
|
431 | - * the currencies used for the transaction and their relation to payment methods) |
|
432 | - * |
|
433 | - * @param EE_Transaction $transaction |
|
434 | - * @param string $scope @see EEM_Payment_Method::get_all_for_events |
|
435 | - * @return EE_Payment_Method[] |
|
436 | - * @throws EE_Error |
|
437 | - */ |
|
438 | - public function get_all_for_transaction($transaction, $scope) |
|
439 | - { |
|
440 | - // give addons a chance to override what payment methods are chosen based on the transaction |
|
441 | - return apply_filters( |
|
442 | - 'FHEE__EEM_Payment_Method__get_all_for_transaction__payment_methods', |
|
443 | - $this->get_all_active($scope, ['group_by' => 'PMD_type']), |
|
444 | - $transaction, |
|
445 | - $scope |
|
446 | - ); |
|
447 | - } |
|
448 | - |
|
449 | - |
|
450 | - /** |
|
451 | - * Returns the payment method used for the last payment made for a registration. |
|
452 | - * Note: if an offline payment method was selected on the related transaction then this will have no payment |
|
453 | - * methods returned. It will ONLY return a payment method for a PAYMENT recorded against the registration. |
|
454 | - * |
|
455 | - * @param EE_Registration|int $registration_or_reg_id Either the EE_Registration object or the id for the |
|
456 | - * registration. |
|
457 | - * @return EE_Payment|null |
|
458 | - * @throws EE_Error |
|
459 | - */ |
|
460 | - public function get_last_used_for_registration($registration_or_reg_id) |
|
461 | - { |
|
462 | - $registration_id = EEM_Registration::instance()->ensure_is_ID($registration_or_reg_id); |
|
463 | - |
|
464 | - $query_params = [ |
|
465 | - 0 => [ |
|
466 | - 'Payment.Registration.REG_ID' => $registration_id, |
|
467 | - ], |
|
468 | - 'order_by' => ['Payment.PAY_ID' => 'DESC'], |
|
469 | - ]; |
|
470 | - return $this->get_one($query_params); |
|
471 | - } |
|
20 | + const scope_cart = 'CART'; |
|
21 | + |
|
22 | + const scope_admin = 'ADMIN'; |
|
23 | + |
|
24 | + const scope_api = 'API'; |
|
25 | + |
|
26 | + /** |
|
27 | + * @type EEM_Payment_Method |
|
28 | + */ |
|
29 | + protected static $_instance = null; |
|
30 | + |
|
31 | + |
|
32 | + /** |
|
33 | + * private constructor to prevent direct creation |
|
34 | + * |
|
35 | + * @param null $timezone |
|
36 | + * @throws EE_Error |
|
37 | + */ |
|
38 | + protected function __construct($timezone = null) |
|
39 | + { |
|
40 | + $this->singular_item = esc_html__('Payment Method', 'event_espresso'); |
|
41 | + $this->plural_item = esc_html__('Payment Methods', 'event_espresso'); |
|
42 | + $this->_tables = [ |
|
43 | + 'Payment_Method' => new EE_Primary_Table('esp_payment_method', 'PMD_ID'), |
|
44 | + ]; |
|
45 | + $this->_fields = [ |
|
46 | + 'Payment_Method' => [ |
|
47 | + 'PMD_ID' => new EE_Primary_Key_Int_Field( |
|
48 | + 'PMD_ID', |
|
49 | + esc_html__('ID', 'event_espresso') |
|
50 | + ), |
|
51 | + 'PMD_type' => new EE_Plain_Text_Field( |
|
52 | + 'PMD_type', |
|
53 | + esc_html__('Payment Method Type', 'event_espresso'), |
|
54 | + false, |
|
55 | + 'Admin_Only' |
|
56 | + ), |
|
57 | + 'PMD_name' => new EE_Plain_Text_Field( |
|
58 | + 'PMD_name', |
|
59 | + esc_html__('Name', 'event_espresso'), |
|
60 | + false |
|
61 | + ), |
|
62 | + 'PMD_desc' => new EE_Post_Content_Field( |
|
63 | + 'PMD_desc', |
|
64 | + esc_html__('Description', 'event_espresso'), |
|
65 | + false, |
|
66 | + '' |
|
67 | + ), |
|
68 | + 'PMD_admin_name' => new EE_Plain_Text_Field( |
|
69 | + 'PMD_admin_name', |
|
70 | + esc_html__('Admin-Only Name', 'event_espresso'), |
|
71 | + true |
|
72 | + ), |
|
73 | + 'PMD_admin_desc' => new EE_Post_Content_Field( |
|
74 | + 'PMD_admin_desc', |
|
75 | + esc_html__('Admin-Only Description', 'event_espresso'), |
|
76 | + true |
|
77 | + ), |
|
78 | + 'PMD_slug' => new EE_Slug_Field( |
|
79 | + 'PMD_slug', |
|
80 | + esc_html__('Slug', 'event_espresso'), |
|
81 | + false |
|
82 | + ), |
|
83 | + 'PMD_order' => new EE_Integer_Field( |
|
84 | + 'PMD_order', |
|
85 | + esc_html__('Order', 'event_espresso'), |
|
86 | + false, |
|
87 | + 0 |
|
88 | + ), |
|
89 | + 'PMD_debug_mode' => new EE_Boolean_Field( |
|
90 | + 'PMD_debug_mode', |
|
91 | + esc_html__('Debug Mode On?', 'event_espresso'), |
|
92 | + false, |
|
93 | + false |
|
94 | + ), |
|
95 | + 'PMD_wp_user' => new EE_WP_User_Field( |
|
96 | + 'PMD_wp_user', |
|
97 | + esc_html__('Payment Method Creator ID', 'event_espresso'), |
|
98 | + false |
|
99 | + ), |
|
100 | + 'PMD_open_by_default' => new EE_Boolean_Field( |
|
101 | + 'PMD_open_by_default', |
|
102 | + esc_html__('Open by Default?', 'event_espresso'), |
|
103 | + false, |
|
104 | + false |
|
105 | + ), |
|
106 | + 'PMD_button_url' => new EE_Plain_Text_Field( |
|
107 | + 'PMD_button_url', |
|
108 | + esc_html__('Button URL', 'event_espresso'), |
|
109 | + true, |
|
110 | + '' |
|
111 | + ), |
|
112 | + 'PMD_scope' => new EE_Serialized_Text_Field( |
|
113 | + 'PMD_scope', |
|
114 | + esc_html__('Usable From?', 'event_espresso'), |
|
115 | + false, |
|
116 | + []// possible values currently are 'CART','ADMIN','API' |
|
117 | + ), |
|
118 | + ], |
|
119 | + ]; |
|
120 | + $this->_model_relations = [ |
|
121 | + 'Payment' => new EE_Has_Many_Relation(), |
|
122 | + 'Currency' => new EE_HABTM_Relation('Currency_Payment_Method'), |
|
123 | + 'Transaction' => new EE_Has_Many_Relation(), |
|
124 | + 'WP_User' => new EE_Belongs_To_Relation(), |
|
125 | + ]; |
|
126 | + parent::__construct($timezone); |
|
127 | + } |
|
128 | + |
|
129 | + |
|
130 | + /** |
|
131 | + * Gets one by the slug provided |
|
132 | + * |
|
133 | + * @param string $slug |
|
134 | + * @return EE_Base_Class|EE_Payment_Method|EE_Soft_Delete_Base_Class|NULL |
|
135 | + * @throws EE_Error |
|
136 | + */ |
|
137 | + public function get_one_by_slug($slug) |
|
138 | + { |
|
139 | + return $this->get_one([['PMD_slug' => $slug]]); |
|
140 | + } |
|
141 | + |
|
142 | + |
|
143 | + /** |
|
144 | + * Gets all the acceptable scopes for payment methods. |
|
145 | + * Keys are their names as store din the DB, and values are nice names for displaying them |
|
146 | + * |
|
147 | + * @return array |
|
148 | + */ |
|
149 | + public function scopes() |
|
150 | + { |
|
151 | + return apply_filters( |
|
152 | + 'FHEE__EEM_Payment_Method__scopes', |
|
153 | + [ |
|
154 | + EEM_Payment_Method::scope_cart => esc_html__('Front-end Registration Page', 'event_espresso'), |
|
155 | + EEM_Payment_Method::scope_admin => esc_html__( |
|
156 | + 'Admin Registration Page (no online processing)', |
|
157 | + 'event_espresso' |
|
158 | + ), |
|
159 | + ] |
|
160 | + ); |
|
161 | + } |
|
162 | + |
|
163 | + |
|
164 | + /** |
|
165 | + * Determines if this is an valid scope |
|
166 | + * |
|
167 | + * @param string $scope like one of EEM_Payment_Method::instance()->scopes() |
|
168 | + * @return boolean |
|
169 | + */ |
|
170 | + public function is_valid_scope($scope) |
|
171 | + { |
|
172 | + $scopes = $this->scopes(); |
|
173 | + if (isset($scopes[ $scope ])) { |
|
174 | + return true; |
|
175 | + } |
|
176 | + return false; |
|
177 | + } |
|
178 | + |
|
179 | + |
|
180 | + /** |
|
181 | + * Gets all active payment methods |
|
182 | + * |
|
183 | + * @param string $scope one of |
|
184 | + * @param array $query_params |
|
185 | + * @return EE_Base_Class[]|EE_Payment_Method[] |
|
186 | + * @throws EE_Error |
|
187 | + */ |
|
188 | + public function get_all_active($scope = null, $query_params = []) |
|
189 | + { |
|
190 | + if (! isset($query_params['order_by']) && ! isset($query_params['order'])) { |
|
191 | + $query_params['order_by'] = ['PMD_order' => 'ASC', 'PMD_ID' => 'ASC']; |
|
192 | + } |
|
193 | + return $this->get_all($this->_get_query_params_for_all_active($scope, $query_params)); |
|
194 | + } |
|
195 | + |
|
196 | + |
|
197 | + /** |
|
198 | + * Counts all active gateways in the specified scope |
|
199 | + * |
|
200 | + * @param string $scope one of EEM_Payment_Method::scope_* |
|
201 | + * @param array $query_params |
|
202 | + * @return int |
|
203 | + * @throws EE_Error |
|
204 | + */ |
|
205 | + public function count_active($scope = null, $query_params = []) |
|
206 | + { |
|
207 | + return $this->count($this->_get_query_params_for_all_active($scope, $query_params)); |
|
208 | + } |
|
209 | + |
|
210 | + |
|
211 | + /** |
|
212 | + * Creates the $query_params that can be passed into any EEM_Payment_Method as their $query_params |
|
213 | + * argument to get all active for a given scope |
|
214 | + * |
|
215 | + * @param string $scope one of the constants EEM_Payment_Method::scope_* |
|
216 | + * @param array $query_params |
|
217 | + * @return array |
|
218 | + * @throws EE_Error |
|
219 | + * @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
|
220 | + */ |
|
221 | + protected function _get_query_params_for_all_active($scope = null, $query_params = []) |
|
222 | + { |
|
223 | + if ($scope) { |
|
224 | + if ($this->is_valid_scope($scope)) { |
|
225 | + return array_replace_recursive([['PMD_scope' => ['LIKE', "%$scope%"]]], $query_params); |
|
226 | + } |
|
227 | + throw new EE_Error( |
|
228 | + sprintf( |
|
229 | + esc_html__("'%s' is not a valid scope for a payment method", 'event_espresso'), |
|
230 | + $scope |
|
231 | + ) |
|
232 | + ); |
|
233 | + } |
|
234 | + $acceptable_scopes = []; |
|
235 | + $count = 0; |
|
236 | + foreach ($this->scopes() as $scope_name => $desc) { |
|
237 | + $count++; |
|
238 | + $acceptable_scopes[ 'PMD_scope*' . $count ] = ['LIKE', '%' . $scope_name . '%']; |
|
239 | + } |
|
240 | + return array_replace_recursive([['OR*active_scope' => $acceptable_scopes]], $query_params); |
|
241 | + } |
|
242 | + |
|
243 | + |
|
244 | + /** |
|
245 | + * Creates the $query_params that can be passed into any EEM_Payment_Method as their $query_params |
|
246 | + * argument to get all active for a given scope |
|
247 | + * |
|
248 | + * @param string $scope one of the constants EEM_Payment_Method::scope_* |
|
249 | + * @param array $query_params |
|
250 | + * @return array |
|
251 | + * @throws EE_Error |
|
252 | + * @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
|
253 | + */ |
|
254 | + public function get_query_params_for_all_active($scope = null, $query_params = []) |
|
255 | + { |
|
256 | + return $this->_get_query_params_for_all_active($scope, $query_params); |
|
257 | + } |
|
258 | + |
|
259 | + |
|
260 | + /** |
|
261 | + * Gets one active payment method. see @get_all_active for documentation |
|
262 | + * |
|
263 | + * @param string $scope |
|
264 | + * @param array $query_params |
|
265 | + * @return EE_Base_Class|EE_Payment_Method|EE_Soft_Delete_Base_Class|NULL |
|
266 | + * @throws EE_Error |
|
267 | + */ |
|
268 | + public function get_one_active($scope = null, $query_params = []) |
|
269 | + { |
|
270 | + return $this->get_one($this->_get_query_params_for_all_active($scope, $query_params)); |
|
271 | + } |
|
272 | + |
|
273 | + |
|
274 | + /** |
|
275 | + * Gets one payment method of that type, regardless of whether its active or not |
|
276 | + * |
|
277 | + * @param string $type |
|
278 | + * @return EE_Base_Class|EE_Payment_Method|EE_Soft_Delete_Base_Class|NULL |
|
279 | + * @throws EE_Error |
|
280 | + */ |
|
281 | + public function get_one_of_type($type) |
|
282 | + { |
|
283 | + return $this->get_one([['PMD_type' => $type]]); |
|
284 | + } |
|
285 | + |
|
286 | + |
|
287 | + /** |
|
288 | + * Overrides parent ot also check by the slug |
|
289 | + * |
|
290 | + * @param string|int|EE_Payment_Method $base_class_obj_or_id |
|
291 | + * @param boolean $ensure_is_in_db |
|
292 | + * @return EE_Base_Class|EE_Payment_Method|EE_Soft_Delete_Base_Class|int|string |
|
293 | + * @throws EE_Error |
|
294 | + * @see EEM_Base::ensure_is_obj() |
|
295 | + */ |
|
296 | + public function ensure_is_obj($base_class_obj_or_id, $ensure_is_in_db = false) |
|
297 | + { |
|
298 | + // first: check if it's a slug |
|
299 | + if (is_string($base_class_obj_or_id)) { |
|
300 | + $obj = $this->get_one_by_slug($base_class_obj_or_id); |
|
301 | + if ($obj) { |
|
302 | + return $obj; |
|
303 | + } |
|
304 | + } |
|
305 | + // ok so it wasn't a slug we were passed. try the usual then (ie, it's an object or an ID) |
|
306 | + try { |
|
307 | + return parent::ensure_is_obj($base_class_obj_or_id, $ensure_is_in_db); |
|
308 | + } catch (EE_Error $e) { |
|
309 | + // handle it outside the catch |
|
310 | + } |
|
311 | + throw new EE_Error( |
|
312 | + sprintf( |
|
313 | + esc_html__("'%s' is neither a Payment Method ID, slug, nor object.", 'event_espresso'), |
|
314 | + $base_class_obj_or_id |
|
315 | + ) |
|
316 | + ); |
|
317 | + } |
|
318 | + |
|
319 | + |
|
320 | + /** |
|
321 | + * Gets the ID of this object, or if its a string finds the object's id |
|
322 | + * associated with that slug |
|
323 | + * |
|
324 | + * @param mixed $base_obj_or_id_or_slug |
|
325 | + * @return int |
|
326 | + * @throws EE_Error |
|
327 | + */ |
|
328 | + public function ensure_is_ID($base_obj_or_id_or_slug) |
|
329 | + { |
|
330 | + if (is_string($base_obj_or_id_or_slug)) { |
|
331 | + // assume it's a slug |
|
332 | + $base_obj_or_id_or_slug = $this->get_one_by_slug($base_obj_or_id_or_slug); |
|
333 | + } |
|
334 | + return parent::ensure_is_ID($base_obj_or_id_or_slug); |
|
335 | + } |
|
336 | + |
|
337 | + |
|
338 | + /** |
|
339 | + * Verifies the button urls on all the passed payment methods have a valid button url. |
|
340 | + * If not, resets them to their default. |
|
341 | + * |
|
342 | + * @param EE_Payment_Method[] $payment_methods if NULL, defaults to all payment methods active in the cart |
|
343 | + * @throws EE_Error |
|
344 | + * @throws ReflectionException |
|
345 | + */ |
|
346 | + public function verify_button_urls($payment_methods = null) |
|
347 | + { |
|
348 | + $payment_methods = is_array($payment_methods) |
|
349 | + ? $payment_methods |
|
350 | + : $this->get_all_active(EEM_Payment_Method::scope_cart); |
|
351 | + foreach ($payment_methods as $payment_method) { |
|
352 | + try { |
|
353 | + // If there is really no button URL at all, or if the button URLs still point to decaf folder even |
|
354 | + // though this is a caffeinated install, reset it to the default. |
|
355 | + $current_button_url = $payment_method->button_url(); |
|
356 | + if ( |
|
357 | + empty($current_button_url) |
|
358 | + || ( |
|
359 | + strpos($current_button_url, 'decaf') !== false |
|
360 | + && strpos($payment_method->type_obj()->default_button_url(), 'decaf') === false |
|
361 | + ) |
|
362 | + ) { |
|
363 | + $payment_method->save( |
|
364 | + [ |
|
365 | + 'PMD_button_url' => $payment_method->type_obj()->default_button_url(), |
|
366 | + ] |
|
367 | + ); |
|
368 | + } |
|
369 | + } catch (EE_Error $e) { |
|
370 | + $payment_method->deactivate(); |
|
371 | + } |
|
372 | + } |
|
373 | + } |
|
374 | + |
|
375 | + |
|
376 | + /** |
|
377 | + * Overrides parent to not only turn wpdb results into EE_Payment_Method objects, |
|
378 | + * but also verifies the payment method type of each is a usable object. If not, |
|
379 | + * deactivate it, sets a notification, and deactivates it |
|
380 | + * |
|
381 | + * @param array $rows |
|
382 | + * @return EE_Payment_Method[] |
|
383 | + * @throws EE_Error |
|
384 | + * @throws InvalidDataTypeException |
|
385 | + * @throws ReflectionException |
|
386 | + */ |
|
387 | + protected function _create_objects($rows = []) |
|
388 | + { |
|
389 | + EE_Registry::instance()->load_lib('Payment_Method_Manager'); |
|
390 | + $payment_methods = parent::_create_objects($rows); |
|
391 | + /* @var $payment_methods EE_Payment_Method[] */ |
|
392 | + $usable_payment_methods = []; |
|
393 | + foreach ($payment_methods as $key => $payment_method) { |
|
394 | + if (EE_Payment_Method_Manager::instance()->payment_method_type_exists($payment_method->type())) { |
|
395 | + $usable_payment_methods[ $key ] = $payment_method; |
|
396 | + // some payment methods enqueue their scripts in EE_PMT_*::__construct |
|
397 | + // which is kinda a no-no (just because it's being constructed doesn't mean we need to enqueue |
|
398 | + // its scripts). but for backwards-compat we should continue to do that |
|
399 | + $payment_method->type_obj(); |
|
400 | + } elseif ($payment_method->active()) { |
|
401 | + // only deactivate and notify the admin if the payment is active somewhere |
|
402 | + $payment_method->deactivate(); |
|
403 | + $payment_method->save(); |
|
404 | + do_action( |
|
405 | + 'AHEE__EEM_Payment_Method___create_objects_auto_deactivated_payment_method', |
|
406 | + $payment_method |
|
407 | + ); |
|
408 | + new PersistentAdminNotice( |
|
409 | + 'auto-deactivated-' . $payment_method->type(), |
|
410 | + sprintf( |
|
411 | + esc_html__( |
|
412 | + 'The payment method %1$s was automatically deactivated because it appears its associated Event Espresso Addon was recently deactivated.%2$sIt can be reactivated on the %3$sPlugins admin page%4$s, then you can reactivate the payment method.', |
|
413 | + 'event_espresso' |
|
414 | + ), |
|
415 | + $payment_method->admin_name(), |
|
416 | + '<br />', |
|
417 | + '<a href="' . admin_url('plugins.php') . '">', |
|
418 | + '</a>' |
|
419 | + ), |
|
420 | + true |
|
421 | + ); |
|
422 | + } |
|
423 | + } |
|
424 | + return $usable_payment_methods; |
|
425 | + } |
|
426 | + |
|
427 | + |
|
428 | + /** |
|
429 | + * Gets all the payment methods which can be used for transaction |
|
430 | + * (according to the relations between payment methods and events, and |
|
431 | + * the currencies used for the transaction and their relation to payment methods) |
|
432 | + * |
|
433 | + * @param EE_Transaction $transaction |
|
434 | + * @param string $scope @see EEM_Payment_Method::get_all_for_events |
|
435 | + * @return EE_Payment_Method[] |
|
436 | + * @throws EE_Error |
|
437 | + */ |
|
438 | + public function get_all_for_transaction($transaction, $scope) |
|
439 | + { |
|
440 | + // give addons a chance to override what payment methods are chosen based on the transaction |
|
441 | + return apply_filters( |
|
442 | + 'FHEE__EEM_Payment_Method__get_all_for_transaction__payment_methods', |
|
443 | + $this->get_all_active($scope, ['group_by' => 'PMD_type']), |
|
444 | + $transaction, |
|
445 | + $scope |
|
446 | + ); |
|
447 | + } |
|
448 | + |
|
449 | + |
|
450 | + /** |
|
451 | + * Returns the payment method used for the last payment made for a registration. |
|
452 | + * Note: if an offline payment method was selected on the related transaction then this will have no payment |
|
453 | + * methods returned. It will ONLY return a payment method for a PAYMENT recorded against the registration. |
|
454 | + * |
|
455 | + * @param EE_Registration|int $registration_or_reg_id Either the EE_Registration object or the id for the |
|
456 | + * registration. |
|
457 | + * @return EE_Payment|null |
|
458 | + * @throws EE_Error |
|
459 | + */ |
|
460 | + public function get_last_used_for_registration($registration_or_reg_id) |
|
461 | + { |
|
462 | + $registration_id = EEM_Registration::instance()->ensure_is_ID($registration_or_reg_id); |
|
463 | + |
|
464 | + $query_params = [ |
|
465 | + 0 => [ |
|
466 | + 'Payment.Registration.REG_ID' => $registration_id, |
|
467 | + ], |
|
468 | + 'order_by' => ['Payment.PAY_ID' => 'DESC'], |
|
469 | + ]; |
|
470 | + return $this->get_one($query_params); |
|
471 | + } |
|
472 | 472 | } |
@@ -12,116 +12,116 @@ |
||
12 | 12 | class EEM_Event_Message_Template extends EEM_Base |
13 | 13 | { |
14 | 14 | |
15 | - // private instance of the EEM_Event_Message_Template object |
|
16 | - protected static $_instance = null; |
|
15 | + // private instance of the EEM_Event_Message_Template object |
|
16 | + protected static $_instance = null; |
|
17 | 17 | |
18 | 18 | |
19 | - /** |
|
20 | - * protected constructor to prevent direct creation |
|
21 | - * |
|
22 | - * @param null $timezone |
|
23 | - * @throws EE_Error |
|
24 | - */ |
|
25 | - protected function __construct($timezone = null) |
|
26 | - { |
|
27 | - $this->singular_item = esc_html__('Event Message Template', 'event_espresso'); |
|
28 | - $this->plural_item = esc_html__('Event Message Templates', 'event_espresso'); |
|
19 | + /** |
|
20 | + * protected constructor to prevent direct creation |
|
21 | + * |
|
22 | + * @param null $timezone |
|
23 | + * @throws EE_Error |
|
24 | + */ |
|
25 | + protected function __construct($timezone = null) |
|
26 | + { |
|
27 | + $this->singular_item = esc_html__('Event Message Template', 'event_espresso'); |
|
28 | + $this->plural_item = esc_html__('Event Message Templates', 'event_espresso'); |
|
29 | 29 | |
30 | - $this->_tables = [ |
|
31 | - 'Event_Message_Template' => new EE_Primary_Table('esp_event_message_template', 'EMT_ID'), |
|
32 | - ]; |
|
33 | - $this->_fields = [ |
|
34 | - 'Event_Message_Template' => [ |
|
35 | - 'EMT_ID' => new EE_Primary_Key_Int_Field( |
|
36 | - 'EMT_ID', |
|
37 | - esc_html__('Event Message Template ID', 'event_espresso') |
|
38 | - ), |
|
39 | - 'EVT_ID' => new EE_Foreign_Key_Int_Field( |
|
40 | - 'EVT_ID', |
|
41 | - esc_html__('The ID to the Event', 'event_espresso'), |
|
42 | - false, |
|
43 | - 0, |
|
44 | - 'Event' |
|
45 | - ), |
|
46 | - 'GRP_ID' => new EE_Foreign_Key_Int_Field( |
|
47 | - 'GRP_ID', |
|
48 | - esc_html__('The ID to the Message Template Group', 'event_espresso'), |
|
49 | - false, |
|
50 | - 0, |
|
51 | - 'Message_Template_Group' |
|
52 | - ), |
|
53 | - ], |
|
54 | - ]; |
|
55 | - $this->_model_relations = [ |
|
56 | - 'Event' => new EE_Belongs_To_Relation(), |
|
57 | - 'Message_Template_Group' => new EE_Belongs_To_Relation(), |
|
58 | - ]; |
|
59 | - $path_to_event = 'Event'; |
|
60 | - $this->_cap_restriction_generators[ EEM_Base::caps_read ] = new EE_Restriction_Generator_Event_Related_Public( |
|
61 | - $path_to_event |
|
62 | - ); |
|
63 | - $this->_cap_restriction_generators[ EEM_Base::caps_read_admin ] = new EE_Restriction_Generator_Event_Related_Protected( |
|
64 | - $path_to_event |
|
65 | - ); |
|
66 | - $this->_cap_restriction_generators[ EEM_Base::caps_edit ] = new EE_Restriction_Generator_Event_Related_Protected( |
|
67 | - $path_to_event |
|
68 | - ); |
|
69 | - $this->_cap_restriction_generators[ EEM_Base::caps_delete ] = new EE_Restriction_Generator_Event_Related_Protected( |
|
70 | - $path_to_event, |
|
71 | - EEM_Base::caps_edit |
|
72 | - ); |
|
73 | - parent::__construct($timezone); |
|
74 | - } |
|
30 | + $this->_tables = [ |
|
31 | + 'Event_Message_Template' => new EE_Primary_Table('esp_event_message_template', 'EMT_ID'), |
|
32 | + ]; |
|
33 | + $this->_fields = [ |
|
34 | + 'Event_Message_Template' => [ |
|
35 | + 'EMT_ID' => new EE_Primary_Key_Int_Field( |
|
36 | + 'EMT_ID', |
|
37 | + esc_html__('Event Message Template ID', 'event_espresso') |
|
38 | + ), |
|
39 | + 'EVT_ID' => new EE_Foreign_Key_Int_Field( |
|
40 | + 'EVT_ID', |
|
41 | + esc_html__('The ID to the Event', 'event_espresso'), |
|
42 | + false, |
|
43 | + 0, |
|
44 | + 'Event' |
|
45 | + ), |
|
46 | + 'GRP_ID' => new EE_Foreign_Key_Int_Field( |
|
47 | + 'GRP_ID', |
|
48 | + esc_html__('The ID to the Message Template Group', 'event_espresso'), |
|
49 | + false, |
|
50 | + 0, |
|
51 | + 'Message_Template_Group' |
|
52 | + ), |
|
53 | + ], |
|
54 | + ]; |
|
55 | + $this->_model_relations = [ |
|
56 | + 'Event' => new EE_Belongs_To_Relation(), |
|
57 | + 'Message_Template_Group' => new EE_Belongs_To_Relation(), |
|
58 | + ]; |
|
59 | + $path_to_event = 'Event'; |
|
60 | + $this->_cap_restriction_generators[ EEM_Base::caps_read ] = new EE_Restriction_Generator_Event_Related_Public( |
|
61 | + $path_to_event |
|
62 | + ); |
|
63 | + $this->_cap_restriction_generators[ EEM_Base::caps_read_admin ] = new EE_Restriction_Generator_Event_Related_Protected( |
|
64 | + $path_to_event |
|
65 | + ); |
|
66 | + $this->_cap_restriction_generators[ EEM_Base::caps_edit ] = new EE_Restriction_Generator_Event_Related_Protected( |
|
67 | + $path_to_event |
|
68 | + ); |
|
69 | + $this->_cap_restriction_generators[ EEM_Base::caps_delete ] = new EE_Restriction_Generator_Event_Related_Protected( |
|
70 | + $path_to_event, |
|
71 | + EEM_Base::caps_edit |
|
72 | + ); |
|
73 | + parent::__construct($timezone); |
|
74 | + } |
|
75 | 75 | |
76 | 76 | |
77 | - /** |
|
78 | - * helper method to simply return an array of event ids for events attached to the given |
|
79 | - * message template group. |
|
80 | - * |
|
81 | - * @param int $GRP_ID The MTP group we want attached events for. |
|
82 | - * @return array An array of event ids. |
|
83 | - * @throws EE_Error |
|
84 | - * @since 4.3.0 |
|
85 | - */ |
|
86 | - public function get_attached_event_ids($GRP_ID) |
|
87 | - { |
|
88 | - $event_ids = $this->_get_all_wpdb_results([['GRP_ID' => $GRP_ID]], ARRAY_N, 'EVT_ID'); |
|
89 | - $event_ids = call_user_func_array('array_merge', $event_ids); |
|
90 | - return $event_ids; |
|
91 | - } |
|
77 | + /** |
|
78 | + * helper method to simply return an array of event ids for events attached to the given |
|
79 | + * message template group. |
|
80 | + * |
|
81 | + * @param int $GRP_ID The MTP group we want attached events for. |
|
82 | + * @return array An array of event ids. |
|
83 | + * @throws EE_Error |
|
84 | + * @since 4.3.0 |
|
85 | + */ |
|
86 | + public function get_attached_event_ids($GRP_ID) |
|
87 | + { |
|
88 | + $event_ids = $this->_get_all_wpdb_results([['GRP_ID' => $GRP_ID]], ARRAY_N, 'EVT_ID'); |
|
89 | + $event_ids = call_user_func_array('array_merge', $event_ids); |
|
90 | + return $event_ids; |
|
91 | + } |
|
92 | 92 | |
93 | 93 | |
94 | - /** |
|
95 | - * helper method for clearing event/group relations for the given event ids and grp ids. |
|
96 | - * |
|
97 | - * @param array $GRP_IDs An array of GRP_IDs. Optional. If empty then there must be EVT IDs. |
|
98 | - * @param array $EVT_IDs An array of EVT_IDs. Optional. If empty then there must be GRP IDs. |
|
99 | - * @return int How many rows were deleted. |
|
100 | - * @throws EE_Error |
|
101 | - * @throws EE_Error |
|
102 | - */ |
|
103 | - public function delete_event_group_relations($GRP_IDs = [], $EVT_IDs = []) |
|
104 | - { |
|
105 | - if (empty($GRP_IDs) && empty($EVT_IDs)) { |
|
106 | - throw new EE_Error( |
|
107 | - sprintf( |
|
108 | - esc_html__( |
|
109 | - '%s requires either an array of GRP_IDs or EVT_IDs or both, but both cannot be empty.', |
|
110 | - 'event_espresso' |
|
111 | - ), |
|
112 | - __METHOD__ |
|
113 | - ) |
|
114 | - ); |
|
115 | - } |
|
94 | + /** |
|
95 | + * helper method for clearing event/group relations for the given event ids and grp ids. |
|
96 | + * |
|
97 | + * @param array $GRP_IDs An array of GRP_IDs. Optional. If empty then there must be EVT IDs. |
|
98 | + * @param array $EVT_IDs An array of EVT_IDs. Optional. If empty then there must be GRP IDs. |
|
99 | + * @return int How many rows were deleted. |
|
100 | + * @throws EE_Error |
|
101 | + * @throws EE_Error |
|
102 | + */ |
|
103 | + public function delete_event_group_relations($GRP_IDs = [], $EVT_IDs = []) |
|
104 | + { |
|
105 | + if (empty($GRP_IDs) && empty($EVT_IDs)) { |
|
106 | + throw new EE_Error( |
|
107 | + sprintf( |
|
108 | + esc_html__( |
|
109 | + '%s requires either an array of GRP_IDs or EVT_IDs or both, but both cannot be empty.', |
|
110 | + 'event_espresso' |
|
111 | + ), |
|
112 | + __METHOD__ |
|
113 | + ) |
|
114 | + ); |
|
115 | + } |
|
116 | 116 | |
117 | - $where = []; |
|
118 | - if (! empty($GRP_IDs)) { |
|
119 | - $where['GRP_ID'] = ['IN', (array) $GRP_IDs]; |
|
120 | - } |
|
121 | - if (! empty($EVT_IDs)) { |
|
122 | - $where['EVT_ID'] = ['IN', (array) $EVT_IDs]; |
|
123 | - } |
|
117 | + $where = []; |
|
118 | + if (! empty($GRP_IDs)) { |
|
119 | + $where['GRP_ID'] = ['IN', (array) $GRP_IDs]; |
|
120 | + } |
|
121 | + if (! empty($EVT_IDs)) { |
|
122 | + $where['EVT_ID'] = ['IN', (array) $EVT_IDs]; |
|
123 | + } |
|
124 | 124 | |
125 | - return $this->delete([$where], false); |
|
126 | - } |
|
125 | + return $this->delete([$where], false); |
|
126 | + } |
|
127 | 127 | } |
@@ -57,16 +57,16 @@ discard block |
||
57 | 57 | 'Message_Template_Group' => new EE_Belongs_To_Relation(), |
58 | 58 | ]; |
59 | 59 | $path_to_event = 'Event'; |
60 | - $this->_cap_restriction_generators[ EEM_Base::caps_read ] = new EE_Restriction_Generator_Event_Related_Public( |
|
60 | + $this->_cap_restriction_generators[EEM_Base::caps_read] = new EE_Restriction_Generator_Event_Related_Public( |
|
61 | 61 | $path_to_event |
62 | 62 | ); |
63 | - $this->_cap_restriction_generators[ EEM_Base::caps_read_admin ] = new EE_Restriction_Generator_Event_Related_Protected( |
|
63 | + $this->_cap_restriction_generators[EEM_Base::caps_read_admin] = new EE_Restriction_Generator_Event_Related_Protected( |
|
64 | 64 | $path_to_event |
65 | 65 | ); |
66 | - $this->_cap_restriction_generators[ EEM_Base::caps_edit ] = new EE_Restriction_Generator_Event_Related_Protected( |
|
66 | + $this->_cap_restriction_generators[EEM_Base::caps_edit] = new EE_Restriction_Generator_Event_Related_Protected( |
|
67 | 67 | $path_to_event |
68 | 68 | ); |
69 | - $this->_cap_restriction_generators[ EEM_Base::caps_delete ] = new EE_Restriction_Generator_Event_Related_Protected( |
|
69 | + $this->_cap_restriction_generators[EEM_Base::caps_delete] = new EE_Restriction_Generator_Event_Related_Protected( |
|
70 | 70 | $path_to_event, |
71 | 71 | EEM_Base::caps_edit |
72 | 72 | ); |
@@ -115,10 +115,10 @@ discard block |
||
115 | 115 | } |
116 | 116 | |
117 | 117 | $where = []; |
118 | - if (! empty($GRP_IDs)) { |
|
118 | + if ( ! empty($GRP_IDs)) { |
|
119 | 119 | $where['GRP_ID'] = ['IN', (array) $GRP_IDs]; |
120 | 120 | } |
121 | - if (! empty($EVT_IDs)) { |
|
121 | + if ( ! empty($EVT_IDs)) { |
|
122 | 122 | $where['EVT_ID'] = ['IN', (array) $EVT_IDs]; |
123 | 123 | } |
124 | 124 |
@@ -25,31 +25,31 @@ |
||
25 | 25 | abstract class PublicRoute extends Route |
26 | 26 | { |
27 | 27 | |
28 | - /** |
|
29 | - * @var EE_Maintenance_Mode $maintenance_mode |
|
30 | - */ |
|
31 | - protected $maintenance_mode; |
|
28 | + /** |
|
29 | + * @var EE_Maintenance_Mode $maintenance_mode |
|
30 | + */ |
|
31 | + protected $maintenance_mode; |
|
32 | 32 | |
33 | 33 | |
34 | - /** |
|
35 | - * FrontendRequests constructor. |
|
36 | - * |
|
37 | - * @param EE_Maintenance_Mode $maintenance_mode |
|
38 | - * @param EE_Dependency_Map $dependency_map |
|
39 | - * @param LoaderInterface $loader |
|
40 | - * @param RequestInterface $request |
|
41 | - * @param JsonDataNode $data_node |
|
42 | - * @param RouteMatchSpecificationInterface $specification |
|
43 | - */ |
|
44 | - public function __construct( |
|
45 | - EE_Maintenance_Mode $maintenance_mode, |
|
46 | - EE_Dependency_Map $dependency_map, |
|
47 | - LoaderInterface $loader, |
|
48 | - RequestInterface $request, |
|
49 | - JsonDataNode $data_node = null, |
|
50 | - RouteMatchSpecificationInterface $specification = null |
|
51 | - ) { |
|
52 | - $this->maintenance_mode = $maintenance_mode; |
|
53 | - parent::__construct($dependency_map, $loader, $request, $data_node, $specification); |
|
54 | - } |
|
34 | + /** |
|
35 | + * FrontendRequests constructor. |
|
36 | + * |
|
37 | + * @param EE_Maintenance_Mode $maintenance_mode |
|
38 | + * @param EE_Dependency_Map $dependency_map |
|
39 | + * @param LoaderInterface $loader |
|
40 | + * @param RequestInterface $request |
|
41 | + * @param JsonDataNode $data_node |
|
42 | + * @param RouteMatchSpecificationInterface $specification |
|
43 | + */ |
|
44 | + public function __construct( |
|
45 | + EE_Maintenance_Mode $maintenance_mode, |
|
46 | + EE_Dependency_Map $dependency_map, |
|
47 | + LoaderInterface $loader, |
|
48 | + RequestInterface $request, |
|
49 | + JsonDataNode $data_node = null, |
|
50 | + RouteMatchSpecificationInterface $specification = null |
|
51 | + ) { |
|
52 | + $this->maintenance_mode = $maintenance_mode; |
|
53 | + parent::__construct($dependency_map, $loader, $request, $data_node, $specification); |
|
54 | + } |
|
55 | 55 | } |
@@ -16,39 +16,39 @@ |
||
16 | 16 | */ |
17 | 17 | class JsonWpOptionManager |
18 | 18 | { |
19 | - /** |
|
20 | - * Updates the object with what's in the DB (specifically, the wp_options table). If nothing is in the DB, leaves |
|
21 | - * the object alone and returns false. |
|
22 | - * @since 4.9.80.p |
|
23 | - * @param JsonWpOptionSerializableInterface $obj |
|
24 | - * @return bool |
|
25 | - */ |
|
26 | - public function populateFromDb(JsonWpOptionSerializableInterface $obj) |
|
27 | - { |
|
28 | - $option = get_option($obj->getWpOptionName()); |
|
29 | - if ($option) { |
|
30 | - $json = json_decode($option, false); |
|
31 | - if ($json instanceof stdClass) { |
|
32 | - return $obj->fromJsonSerializedData($json); |
|
33 | - } |
|
34 | - } |
|
35 | - return false; |
|
36 | - } |
|
19 | + /** |
|
20 | + * Updates the object with what's in the DB (specifically, the wp_options table). If nothing is in the DB, leaves |
|
21 | + * the object alone and returns false. |
|
22 | + * @since 4.9.80.p |
|
23 | + * @param JsonWpOptionSerializableInterface $obj |
|
24 | + * @return bool |
|
25 | + */ |
|
26 | + public function populateFromDb(JsonWpOptionSerializableInterface $obj) |
|
27 | + { |
|
28 | + $option = get_option($obj->getWpOptionName()); |
|
29 | + if ($option) { |
|
30 | + $json = json_decode($option, false); |
|
31 | + if ($json instanceof stdClass) { |
|
32 | + return $obj->fromJsonSerializedData($json); |
|
33 | + } |
|
34 | + } |
|
35 | + return false; |
|
36 | + } |
|
37 | 37 | |
38 | - /** |
|
39 | - * Saves the object's data to the wp_options table for later use. |
|
40 | - * @since 4.9.80.p |
|
41 | - * @param JsonWpOptionSerializableInterface $obj |
|
42 | - * @return bool |
|
43 | - */ |
|
44 | - public function saveToDb(JsonWpOptionSerializableInterface $obj) |
|
45 | - { |
|
46 | - return update_option( |
|
47 | - $obj->getWpOptionName(), |
|
48 | - wp_json_encode($obj->toJsonSerializableData()), |
|
49 | - false |
|
50 | - ); |
|
51 | - } |
|
38 | + /** |
|
39 | + * Saves the object's data to the wp_options table for later use. |
|
40 | + * @since 4.9.80.p |
|
41 | + * @param JsonWpOptionSerializableInterface $obj |
|
42 | + * @return bool |
|
43 | + */ |
|
44 | + public function saveToDb(JsonWpOptionSerializableInterface $obj) |
|
45 | + { |
|
46 | + return update_option( |
|
47 | + $obj->getWpOptionName(), |
|
48 | + wp_json_encode($obj->toJsonSerializableData()), |
|
49 | + false |
|
50 | + ); |
|
51 | + } |
|
52 | 52 | } |
53 | 53 | // End of file JsonWpOptionManager.php |
54 | 54 | // Location: EventEspresso\core\services\options/JsonWpOptionManager.php |