@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | * @access public |
84 | 84 | * @param string $new_status |
85 | 85 | * @param bool $use_default |
86 | - * @return bool|void |
|
86 | + * @return boolean |
|
87 | 87 | * @throws \EE_Error |
88 | 88 | */ |
89 | 89 | public function set_status( $new_status = null, $use_default = false ) { |
@@ -1063,7 +1063,7 @@ discard block |
||
1063 | 1063 | * |
1064 | 1064 | * @access public |
1065 | 1065 | * @param boolean $echo whether to return (FALSE), or echo out the result (TRUE) |
1066 | - * @return mixed void|string |
|
1066 | + * @return string void|string |
|
1067 | 1067 | */ |
1068 | 1068 | public function pretty_active_status( $echo = TRUE ) { |
1069 | 1069 | $active_status = $this->get_active_status(); |
@@ -161,7 +161,7 @@ |
||
161 | 161 | * @param EE_Transaction $transaction |
162 | 162 | * @param string $payment_status One of EEM_Payment's statuses, like 'PAP' (Approved). |
163 | 163 | * By default, searches for approved payments |
164 | - * @return float|false float on success, false on fail |
|
164 | + * @return double float on success, false on fail |
|
165 | 165 | * @throws \EE_Error |
166 | 166 | */ |
167 | 167 | public function recalculate_total_payments_for_transaction( EE_Transaction $transaction, $payment_status = EEM_Payment::status_id_approved ) { |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { exit('No direct script access allowed'); } |
2 | -EE_Registry::instance()->load_class( 'Processor_Base' ); |
|
2 | +EE_Registry::instance()->load_class('Processor_Base'); |
|
3 | 3 | |
4 | 4 | /** |
5 | 5 | * Class EE_Transaction_Payments |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | */ |
45 | 45 | public static function instance() { |
46 | 46 | // check if class object is instantiated |
47 | - if ( ! self::$_instance instanceof EE_Transaction_Payments ) { |
|
47 | + if ( ! self::$_instance instanceof EE_Transaction_Payments) { |
|
48 | 48 | self::$_instance = new self(); |
49 | 49 | } |
50 | 50 | return self::$_instance; |
@@ -72,9 +72,9 @@ discard block |
||
72 | 72 | /** |
73 | 73 | * @param string $old_txn_status |
74 | 74 | */ |
75 | - public function set_old_txn_status( $old_txn_status ) { |
|
75 | + public function set_old_txn_status($old_txn_status) { |
|
76 | 76 | // only set the first time |
77 | - if ( $this->_old_txn_status === null ) { |
|
77 | + if ($this->_old_txn_status === null) { |
|
78 | 78 | $this->_old_txn_status = $old_txn_status; |
79 | 79 | } |
80 | 80 | } |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | /** |
94 | 94 | * @param string $new_txn_status |
95 | 95 | */ |
96 | - public function set_new_txn_status( $new_txn_status ) { |
|
96 | + public function set_new_txn_status($new_txn_status) { |
|
97 | 97 | $this->_new_txn_status = $new_txn_status; |
98 | 98 | } |
99 | 99 | |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | * @return bool |
106 | 106 | */ |
107 | 107 | public function txn_status_updated() { |
108 | - return $this->_new_txn_status !== $this->_old_txn_status && $this->_old_txn_status !== null ? true : false; |
|
108 | + return $this->_new_txn_status !== $this->_old_txn_status && $this->_old_txn_status !== null ? true : false; |
|
109 | 109 | } |
110 | 110 | |
111 | 111 | |
@@ -125,22 +125,22 @@ discard block |
||
125 | 125 | * @return boolean whether the TXN was saved |
126 | 126 | * @throws \EE_Error |
127 | 127 | */ |
128 | - public function calculate_total_payments_and_update_status( EE_Transaction $transaction, $update_txn = true ){ |
|
128 | + public function calculate_total_payments_and_update_status(EE_Transaction $transaction, $update_txn = true) { |
|
129 | 129 | // verify transaction |
130 | - if ( ! $transaction instanceof EE_Transaction ) { |
|
131 | - EE_Error::add_error( __( 'Please provide a valid EE_Transaction object.', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__ ); |
|
130 | + if ( ! $transaction instanceof EE_Transaction) { |
|
131 | + EE_Error::add_error(__('Please provide a valid EE_Transaction object.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__); |
|
132 | 132 | return false; |
133 | 133 | } |
134 | 134 | // set incoming TXN_Status |
135 | - $this->set_old_txn_status( $transaction->status_ID() ); |
|
135 | + $this->set_old_txn_status($transaction->status_ID()); |
|
136 | 136 | // calculate total paid |
137 | - $total_paid = $this->recalculate_total_payments_for_transaction( $transaction ); |
|
137 | + $total_paid = $this->recalculate_total_payments_for_transaction($transaction); |
|
138 | 138 | // if total paid has changed |
139 | - if ( $total_paid !== false && (float)$total_paid !== $transaction->paid() ) { |
|
140 | - $transaction->set_paid( $total_paid ); |
|
139 | + if ($total_paid !== false && (float) $total_paid !== $transaction->paid()) { |
|
140 | + $transaction->set_paid($total_paid); |
|
141 | 141 | // maybe update status, and make sure to save transaction if not done already |
142 | - if ( ! $this->update_transaction_status_based_on_total_paid( $transaction, $update_txn )) { |
|
143 | - if ( $update_txn ) { |
|
142 | + if ( ! $this->update_transaction_status_based_on_total_paid($transaction, $update_txn)) { |
|
143 | + if ($update_txn) { |
|
144 | 144 | return $transaction->save() ? true : false; |
145 | 145 | } |
146 | 146 | } else { |
@@ -164,18 +164,18 @@ discard block |
||
164 | 164 | * @return float|false float on success, false on fail |
165 | 165 | * @throws \EE_Error |
166 | 166 | */ |
167 | - public function recalculate_total_payments_for_transaction( EE_Transaction $transaction, $payment_status = EEM_Payment::status_id_approved ) { |
|
167 | + public function recalculate_total_payments_for_transaction(EE_Transaction $transaction, $payment_status = EEM_Payment::status_id_approved) { |
|
168 | 168 | // verify transaction |
169 | - if ( ! $transaction instanceof EE_Transaction ) { |
|
170 | - EE_Error::add_error( __( 'Please provide a valid EE_Transaction object.', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__ ); |
|
169 | + if ( ! $transaction instanceof EE_Transaction) { |
|
170 | + EE_Error::add_error(__('Please provide a valid EE_Transaction object.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__); |
|
171 | 171 | return false; |
172 | 172 | } |
173 | 173 | // ensure Payment model is loaded |
174 | - EE_Registry::instance()->load_model( 'Payment' ); |
|
174 | + EE_Registry::instance()->load_model('Payment'); |
|
175 | 175 | // calls EEM_Base::sum() |
176 | 176 | return EEM_Payment::instance()->sum( |
177 | 177 | // query params |
178 | - array( array( 'TXN_ID' => $transaction->ID(), 'STS_ID' => $payment_status )), |
|
178 | + array(array('TXN_ID' => $transaction->ID(), 'STS_ID' => $payment_status)), |
|
179 | 179 | // field to sum |
180 | 180 | 'PAY_amount' |
181 | 181 | ); |
@@ -191,36 +191,36 @@ discard block |
||
191 | 191 | * @return boolean whether the TXN was saved |
192 | 192 | * @throws \EE_Error |
193 | 193 | */ |
194 | - public function update_transaction_status_based_on_total_paid( EE_Transaction $transaction, $update_txn = TRUE ) { |
|
194 | + public function update_transaction_status_based_on_total_paid(EE_Transaction $transaction, $update_txn = TRUE) { |
|
195 | 195 | // verify transaction |
196 | - if ( ! $transaction instanceof EE_Transaction ) { |
|
196 | + if ( ! $transaction instanceof EE_Transaction) { |
|
197 | 197 | EE_Error::add_error( |
198 | - __( 'Please provide a valid EE_Transaction object.', 'event_espresso' ), |
|
198 | + __('Please provide a valid EE_Transaction object.', 'event_espresso'), |
|
199 | 199 | __FILE__, __FUNCTION__, __LINE__ |
200 | 200 | ); |
201 | 201 | return FALSE; |
202 | 202 | } |
203 | 203 | // set incoming TXN_Status |
204 | - $this->set_old_txn_status( $transaction->status_ID() ); |
|
204 | + $this->set_old_txn_status($transaction->status_ID()); |
|
205 | 205 | // set transaction status based on comparison of TXN_paid vs TXN_total |
206 | - if ( EEH_Money::compare_floats( $transaction->paid(), $transaction->total(), '>' ) ){ |
|
206 | + if (EEH_Money::compare_floats($transaction->paid(), $transaction->total(), '>')) { |
|
207 | 207 | $new_txn_status = EEM_Transaction::overpaid_status_code; |
208 | - } else if ( EEH_Money::compare_floats( $transaction->paid(), $transaction->total() ) ) { |
|
208 | + } else if (EEH_Money::compare_floats($transaction->paid(), $transaction->total())) { |
|
209 | 209 | $new_txn_status = EEM_Transaction::complete_status_code; |
210 | - } else if ( EEH_Money::compare_floats( $transaction->paid(), $transaction->total(), '<' ) ) { |
|
210 | + } else if (EEH_Money::compare_floats($transaction->paid(), $transaction->total(), '<')) { |
|
211 | 211 | $new_txn_status = EEM_Transaction::incomplete_status_code; |
212 | 212 | } else { |
213 | 213 | EE_Error::add_error( |
214 | - __( 'The total paid calculation for this transaction is inaccurate.', 'event_espresso' ), |
|
214 | + __('The total paid calculation for this transaction is inaccurate.', 'event_espresso'), |
|
215 | 215 | __FILE__, __FUNCTION__, __LINE__ |
216 | 216 | ); |
217 | 217 | return FALSE; |
218 | 218 | } |
219 | - if ( $new_txn_status !== $transaction->status_ID() ) { |
|
219 | + if ($new_txn_status !== $transaction->status_ID()) { |
|
220 | 220 | // set incoming TXN_Status |
221 | - $this->set_new_txn_status( $new_txn_status ); |
|
222 | - $transaction->set_status( $new_txn_status ); |
|
223 | - if ( $update_txn ) { |
|
221 | + $this->set_new_txn_status($new_txn_status); |
|
222 | + $transaction->set_status($new_txn_status); |
|
223 | + if ($update_txn) { |
|
224 | 224 | return $transaction->save() ? TRUE : FALSE; |
225 | 225 | } |
226 | 226 | } |
@@ -238,17 +238,17 @@ discard block |
||
238 | 238 | * @return boolean |
239 | 239 | * @throws \EE_Error |
240 | 240 | */ |
241 | - public function delete_payment_and_update_transaction( EE_Payment $payment ) { |
|
241 | + public function delete_payment_and_update_transaction(EE_Payment $payment) { |
|
242 | 242 | // verify payment |
243 | - if ( ! $payment instanceof EE_Payment ) { |
|
244 | - EE_Error::add_error( __( 'A valid Payment object was not received.', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__ ); |
|
243 | + if ( ! $payment instanceof EE_Payment) { |
|
244 | + EE_Error::add_error(__('A valid Payment object was not received.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__); |
|
245 | 245 | return false; |
246 | 246 | } |
247 | - if ( ! $this->delete_registration_payments_and_update_registrations( $payment ) ) { |
|
247 | + if ( ! $this->delete_registration_payments_and_update_registrations($payment)) { |
|
248 | 248 | return false; |
249 | 249 | } |
250 | - if ( ! $payment->delete() ) { |
|
251 | - EE_Error::add_error( __( 'The payment could not be deleted.', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__ ); |
|
250 | + if ( ! $payment->delete()) { |
|
251 | + EE_Error::add_error(__('The payment could not be deleted.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__); |
|
252 | 252 | return false; |
253 | 253 | } |
254 | 254 | |
@@ -259,14 +259,14 @@ discard block |
||
259 | 259 | || $TXN_status === EEM_Transaction::failed_status_code |
260 | 260 | || $payment->amount() === 0 |
261 | 261 | ) { |
262 | - EE_Error::add_success( __( 'The Payment was successfully deleted.', 'event_espresso' ) ); |
|
262 | + EE_Error::add_success(__('The Payment was successfully deleted.', 'event_espresso')); |
|
263 | 263 | return true; |
264 | 264 | } |
265 | 265 | |
266 | 266 | |
267 | 267 | //if this fails, that just means that the transaction didn't get its status changed and/or updated. |
268 | 268 | //however the payment was still deleted. |
269 | - if ( ! $this->calculate_total_payments_and_update_status( $transaction ) ) { |
|
269 | + if ( ! $this->calculate_total_payments_and_update_status($transaction)) { |
|
270 | 270 | |
271 | 271 | EE_Error::add_attention( |
272 | 272 | __( |
@@ -300,28 +300,28 @@ discard block |
||
300 | 300 | * @return bool |
301 | 301 | * @throws \EE_Error |
302 | 302 | */ |
303 | - public function delete_registration_payments_and_update_registrations( EE_Payment $payment, $reg_payment_query_params = array() ) { |
|
303 | + public function delete_registration_payments_and_update_registrations(EE_Payment $payment, $reg_payment_query_params = array()) { |
|
304 | 304 | $save_payment = false; |
305 | - $reg_payment_query_params = ! empty( $reg_payment_query_params ) ? $reg_payment_query_params : array( array( 'PAY_ID' => $payment->ID() ) ); |
|
306 | - $registration_payments = EEM_Registration_Payment::instance()->get_all( $reg_payment_query_params ); |
|
307 | - if ( ! empty( $registration_payments )) { |
|
308 | - foreach ( $registration_payments as $registration_payment ) { |
|
309 | - if ( $registration_payment instanceof EE_Registration_Payment ) { |
|
305 | + $reg_payment_query_params = ! empty($reg_payment_query_params) ? $reg_payment_query_params : array(array('PAY_ID' => $payment->ID())); |
|
306 | + $registration_payments = EEM_Registration_Payment::instance()->get_all($reg_payment_query_params); |
|
307 | + if ( ! empty($registration_payments)) { |
|
308 | + foreach ($registration_payments as $registration_payment) { |
|
309 | + if ($registration_payment instanceof EE_Registration_Payment) { |
|
310 | 310 | $amount_paid = $registration_payment->amount(); |
311 | 311 | $registration = $registration_payment->registration(); |
312 | - if ( $registration instanceof EE_Registration ) { |
|
313 | - $registration->set_paid( $registration->paid() - $amount_paid ); |
|
314 | - if ( $registration->save() ) { |
|
315 | - if ( $registration_payment->delete() ) { |
|
316 | - $registration->_remove_relation_to( $payment, 'Payment' ); |
|
317 | - $payment->_remove_relation_to( $registration, 'Registration' ); |
|
312 | + if ($registration instanceof EE_Registration) { |
|
313 | + $registration->set_paid($registration->paid() - $amount_paid); |
|
314 | + if ($registration->save()) { |
|
315 | + if ($registration_payment->delete()) { |
|
316 | + $registration->_remove_relation_to($payment, 'Payment'); |
|
317 | + $payment->_remove_relation_to($registration, 'Registration'); |
|
318 | 318 | } |
319 | 319 | $save_payment = true; |
320 | 320 | } |
321 | 321 | } else { |
322 | 322 | EE_Error::add_error( |
323 | 323 | sprintf( |
324 | - __( 'An invalid Registration object was associated with Registration Payment ID# %1$d.', 'event_espresso' ), |
|
324 | + __('An invalid Registration object was associated with Registration Payment ID# %1$d.', 'event_espresso'), |
|
325 | 325 | $registration_payment->ID() |
326 | 326 | ), |
327 | 327 | __FILE__, __FUNCTION__, __LINE__ |
@@ -331,7 +331,7 @@ discard block |
||
331 | 331 | } else { |
332 | 332 | EE_Error::add_error( |
333 | 333 | sprintf( |
334 | - __( 'An invalid Registration Payment object was associated with payment ID# %1$d.', 'event_espresso' ), |
|
334 | + __('An invalid Registration Payment object was associated with payment ID# %1$d.', 'event_espresso'), |
|
335 | 335 | $payment->ID() |
336 | 336 | ), |
337 | 337 | __FILE__, __FUNCTION__, __LINE__ |
@@ -340,7 +340,7 @@ discard block |
||
340 | 340 | } |
341 | 341 | } |
342 | 342 | } |
343 | - if ( $save_payment ) { |
|
343 | + if ($save_payment) { |
|
344 | 344 | $payment->save(); |
345 | 345 | } |
346 | 346 | return true; |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | * |
131 | 131 | * @link http://codex.wordpress.org/Function_Reference/get_the_post_thumbnail |
132 | 132 | * @access protected |
133 | - * @param string|array $size (optional) Image size. Defaults to 'post-thumbnail' but can also be a 2-item array representing width and height in pixels (i.e. array(32,32) ). |
|
133 | + * @param string $size (optional) Image size. Defaults to 'post-thumbnail' but can also be a 2-item array representing width and height in pixels (i.e. array(32,32) ). |
|
134 | 134 | * @param string|array $attr Optional. Query string or array of attributes. |
135 | 135 | * @return string HTML image element |
136 | 136 | */ |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | |
159 | 159 | /** |
160 | 160 | * This uses the wp "wp_get_attachment_image_src()" function to return the feature image for the current class using the given size params. |
161 | - * @param string|array $size can either be a string: 'thumbnail', 'medium', 'large', 'full' OR 2-item array representing width and height in pixels eg. array(32,32). |
|
161 | + * @param integer[] $size can either be a string: 'thumbnail', 'medium', 'large', 'full' OR 2-item array representing width and height in pixels eg. array(32,32). |
|
162 | 162 | * @return string|boolean the url of the image or false if not found |
163 | 163 | */ |
164 | 164 | public function feature_image_url( $size = 'thumbnail' ) { |
@@ -172,7 +172,7 @@ discard block |
||
172 | 172 | * This is a method for restoring this_obj using details from the given $revision_id |
173 | 173 | * |
174 | 174 | * @param int $revision_id ID of the revision we're getting data from |
175 | - * @param array $related_obj_names if included this will be used to restore for related obj |
|
175 | + * @param string[] $related_obj_names if included this will be used to restore for related obj |
|
176 | 176 | * if not included then we just do restore on the meta. |
177 | 177 | * We will accept an array of related_obj_names for restoration here. |
178 | 178 | * @param array $where_query You can optionally include an array of key=>value pairs |
@@ -227,7 +227,7 @@ discard block |
||
227 | 227 | * Wrapper for get_post_meta, http://codex.wordpress.org/Function_Reference/get_post_meta |
228 | 228 | * @param string $meta_key |
229 | 229 | * @param boolean $single |
230 | - * @return mixed <ul><li>If only $id is set it will return all meta values in an associative array.</li> |
|
230 | + * @return string|null <ul><li>If only $id is set it will return all meta values in an associative array.</li> |
|
231 | 231 | * <li>If $single is set to false, or left blank, the function returns an array containing all values of the specified key.</li> |
232 | 232 | * <li>If $single is set to true, the function returns the first value of the specified key (not in an array</li></ul> |
233 | 233 | */ |
@@ -255,8 +255,8 @@ discard block |
||
255 | 255 | |
256 | 256 | /** |
257 | 257 | * Wrapper for add_post_meta, http://codex.wordpress.org/Function_Reference/add_post_meta |
258 | - * @param mixed $meta_key |
|
259 | - * @param mixed $meta_value |
|
258 | + * @param string $meta_key |
|
259 | + * @param string $meta_value |
|
260 | 260 | * @param bool $unique . If postmeta for this $meta_key already exists, whether to add an additional item or not |
261 | 261 | * @return boolean Boolean true, except if the $unique argument was set to true and a custom field with the given key already exists, in which case false is returned. |
262 | 262 | */ |
@@ -272,7 +272,7 @@ discard block |
||
272 | 272 | /** |
273 | 273 | * Wrapper for delete_post_meta, http://codex.wordpress.org/Function_Reference/delete_post_meta |
274 | 274 | * |
275 | - * @param mixed $meta_key |
|
275 | + * @param string $meta_key |
|
276 | 276 | * @param mixed $meta_value |
277 | 277 | * @return boolean False for failure. True for success. |
278 | 278 | */ |
@@ -300,7 +300,7 @@ discard block |
||
300 | 300 | /** |
301 | 301 | * Gets all the term-taxonomies for this CPT |
302 | 302 | * @param array $query_params |
303 | - * @return EE_Term_Taxonomy |
|
303 | + * @return EE_Base_Class[] |
|
304 | 304 | */ |
305 | 305 | public function term_taxonomies( $query_params = array() ) { |
306 | 306 | return $this->get_many_related( 'Term_Taxonomy', $query_params ); |
@@ -1,5 +1,5 @@ discard block |
||
1 | -<?php if ( !defined( 'EVENT_ESPRESSO_VERSION' ) ) { |
|
2 | - exit( 'No direct script access allowed' ); |
|
1 | +<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
2 | + exit('No direct script access allowed'); |
|
3 | 3 | } |
4 | 4 | /** |
5 | 5 | * Event Espresso |
@@ -47,8 +47,8 @@ discard block |
||
47 | 47 | * @param int $parent_term_taxonomy_id optional |
48 | 48 | * @return EE_Term_Taxonomy |
49 | 49 | */ |
50 | - function add_event_category( $category_name, $category_description = NULL, $parent_term_taxonomy_id = NULL ) { |
|
51 | - return $this->get_model()->add_event_category( $this, $category_name, $category_description, $parent_term_taxonomy_id ); |
|
50 | + function add_event_category($category_name, $category_description = NULL, $parent_term_taxonomy_id = NULL) { |
|
51 | + return $this->get_model()->add_event_category($this, $category_name, $category_description, $parent_term_taxonomy_id); |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | |
@@ -58,8 +58,8 @@ discard block |
||
58 | 58 | * @param string $category_name |
59 | 59 | * @return bool |
60 | 60 | */ |
61 | - function remove_event_category( $category_name ) { |
|
62 | - return $this->get_model()->remove_event_category( $this, $category_name ); |
|
61 | + function remove_event_category($category_name) { |
|
62 | + return $this->get_model()->remove_event_category($this, $category_name); |
|
63 | 63 | } |
64 | 64 | |
65 | 65 | |
@@ -70,14 +70,14 @@ discard block |
||
70 | 70 | * @param EE_Term_Taxonomy $term_taxonomy |
71 | 71 | * @return EE_Base_Class the relation was removed from |
72 | 72 | */ |
73 | - function remove_relation_to_term_taxonomy( $term_taxonomy ) { |
|
74 | - if ( !$term_taxonomy ) { |
|
75 | - EE_Error::add_error( sprintf( __( "No Term_Taxonomy provided which to remove from model object of type %s and id %d", "event_espresso" ), get_class( $this ), $this->ID() ), __FILE__, __FUNCTION__, __LINE__ ); |
|
73 | + function remove_relation_to_term_taxonomy($term_taxonomy) { |
|
74 | + if ( ! $term_taxonomy) { |
|
75 | + EE_Error::add_error(sprintf(__("No Term_Taxonomy provided which to remove from model object of type %s and id %d", "event_espresso"), get_class($this), $this->ID()), __FILE__, __FUNCTION__, __LINE__); |
|
76 | 76 | return NULL; |
77 | 77 | } |
78 | - $term_taxonomy->set_count( $term_taxonomy->count() - 1 ); |
|
78 | + $term_taxonomy->set_count($term_taxonomy->count() - 1); |
|
79 | 79 | $term_taxonomy->save(); |
80 | - return $this->_remove_relation_to( $term_taxonomy, 'Term_Taxonomy' ); |
|
80 | + return $this->_remove_relation_to($term_taxonomy, 'Term_Taxonomy'); |
|
81 | 81 | } |
82 | 82 | |
83 | 83 | |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | * @return int |
102 | 102 | */ |
103 | 103 | public function parent() { |
104 | - return $this->get( 'parent' ); |
|
104 | + return $this->get('parent'); |
|
105 | 105 | } |
106 | 106 | |
107 | 107 | |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | * @return string |
112 | 112 | */ |
113 | 113 | public function status() { |
114 | - return $this->get( 'status' ); |
|
114 | + return $this->get('status'); |
|
115 | 115 | } |
116 | 116 | |
117 | 117 | |
@@ -119,8 +119,8 @@ discard block |
||
119 | 119 | /** |
120 | 120 | * @param string $status |
121 | 121 | */ |
122 | - public function set_status( $status ) { |
|
123 | - $this->set( 'status', $status ); |
|
122 | + public function set_status($status) { |
|
123 | + $this->set('status', $status); |
|
124 | 124 | } |
125 | 125 | |
126 | 126 | |
@@ -134,12 +134,12 @@ discard block |
||
134 | 134 | * @param string|array $attr Optional. Query string or array of attributes. |
135 | 135 | * @return string HTML image element |
136 | 136 | */ |
137 | - protected function _get_feature_image( $size, $attr ) { |
|
137 | + protected function _get_feature_image($size, $attr) { |
|
138 | 138 | //first let's see if we already have the _feature_image property set AND if it has a cached element on it FOR the given size |
139 | - $attr_key = is_array( $attr ) ? implode( '_', $attr ) : $attr; |
|
140 | - $cache_key = is_array( $size ) ? implode( '_', $size ) . $attr_key : $size . $attr_key; |
|
141 | - $this->_feature_image[ $cache_key ] = isset( $this->_feature_image[ $cache_key ] ) ? $this->_feature_image[ $cache_key ] : $this->get_model()->get_feature_image( $this->ID(), $size, $attr ); |
|
142 | - return $this->_feature_image[ $cache_key ]; |
|
139 | + $attr_key = is_array($attr) ? implode('_', $attr) : $attr; |
|
140 | + $cache_key = is_array($size) ? implode('_', $size).$attr_key : $size.$attr_key; |
|
141 | + $this->_feature_image[$cache_key] = isset($this->_feature_image[$cache_key]) ? $this->_feature_image[$cache_key] : $this->get_model()->get_feature_image($this->ID(), $size, $attr); |
|
142 | + return $this->_feature_image[$cache_key]; |
|
143 | 143 | } |
144 | 144 | |
145 | 145 | |
@@ -150,8 +150,8 @@ discard block |
||
150 | 150 | * @param string|array $attr |
151 | 151 | * @return string of html |
152 | 152 | */ |
153 | - public function feature_image( $size = 'thumbnail', $attr = '' ) { |
|
154 | - return $this->_get_feature_image( $size, $attr ); |
|
153 | + public function feature_image($size = 'thumbnail', $attr = '') { |
|
154 | + return $this->_get_feature_image($size, $attr); |
|
155 | 155 | } |
156 | 156 | |
157 | 157 | |
@@ -161,9 +161,9 @@ discard block |
||
161 | 161 | * @param string|array $size can either be a string: 'thumbnail', 'medium', 'large', 'full' OR 2-item array representing width and height in pixels eg. array(32,32). |
162 | 162 | * @return string|boolean the url of the image or false if not found |
163 | 163 | */ |
164 | - public function feature_image_url( $size = 'thumbnail' ) { |
|
165 | - $attachment = wp_get_attachment_image_src( get_post_thumbnail_id( $this->ID() ), $size ); |
|
166 | - return !empty( $attachment ) ? $attachment[ 0 ] : FALSE; |
|
164 | + public function feature_image_url($size = 'thumbnail') { |
|
165 | + $attachment = wp_get_attachment_image_src(get_post_thumbnail_id($this->ID()), $size); |
|
166 | + return ! empty($attachment) ? $attachment[0] : FALSE; |
|
167 | 167 | } |
168 | 168 | |
169 | 169 | |
@@ -185,36 +185,36 @@ discard block |
||
185 | 185 | * This array is INDEXED by RELATED OBJ NAME (so it corresponds with the obj_names sent); |
186 | 186 | * @return void |
187 | 187 | */ |
188 | - public function restore_revision( $revision_id, $related_obj_names = array(), $where_query = array() ) { |
|
188 | + public function restore_revision($revision_id, $related_obj_names = array(), $where_query = array()) { |
|
189 | 189 | //get revision object |
190 | - $revision_obj = $this->get_model()->get_one_by_ID( $revision_id ); |
|
191 | - if ( $revision_obj instanceof EE_CPT_Base ) { |
|
190 | + $revision_obj = $this->get_model()->get_one_by_ID($revision_id); |
|
191 | + if ($revision_obj instanceof EE_CPT_Base) { |
|
192 | 192 | //no related_obj_name so we assume we're saving a revision on this object. |
193 | - if ( empty( $related_obj_names ) ) { |
|
193 | + if (empty($related_obj_names)) { |
|
194 | 194 | $fields = $this->get_model()->get_meta_table_fields(); |
195 | - foreach ( $fields as $field ) { |
|
196 | - $this->set( $field, $revision_obj->get( $field ) ); |
|
195 | + foreach ($fields as $field) { |
|
196 | + $this->set($field, $revision_obj->get($field)); |
|
197 | 197 | } |
198 | 198 | $this->save(); |
199 | 199 | } |
200 | - $related_obj_names = (array)$related_obj_names; |
|
201 | - foreach ( $related_obj_names as $related_name ) { |
|
200 | + $related_obj_names = (array) $related_obj_names; |
|
201 | + foreach ($related_obj_names as $related_name) { |
|
202 | 202 | //related_obj_name so we're saving a revision on an object related to this object |
203 | 203 | //do we have $where_query params for this related object? If we do then we include that. |
204 | - $cols_n_values = isset( $where_query[ $related_name ] ) ? $where_query[ $related_name ] : array(); |
|
205 | - $where_params = !empty( $cols_n_values ) ? array( $cols_n_values ) : array(); |
|
206 | - $related_objs = $this->get_many_related( $related_name, $where_params ); |
|
207 | - $revision_related_objs = $revision_obj->get_many_related( $related_name, $where_params ); |
|
204 | + $cols_n_values = isset($where_query[$related_name]) ? $where_query[$related_name] : array(); |
|
205 | + $where_params = ! empty($cols_n_values) ? array($cols_n_values) : array(); |
|
206 | + $related_objs = $this->get_many_related($related_name, $where_params); |
|
207 | + $revision_related_objs = $revision_obj->get_many_related($related_name, $where_params); |
|
208 | 208 | //load helper |
209 | 209 | //remove related objs from this object that are not in revision |
210 | 210 | //array_diff *should* work cause I think objects are indexed by ID? |
211 | - $related_to_remove = EEH_Array::object_array_diff( $related_objs, $revision_related_objs ); |
|
212 | - foreach ( $related_to_remove as $rr ) { |
|
213 | - $this->_remove_relation_to( $rr, $related_name, $cols_n_values ); |
|
211 | + $related_to_remove = EEH_Array::object_array_diff($related_objs, $revision_related_objs); |
|
212 | + foreach ($related_to_remove as $rr) { |
|
213 | + $this->_remove_relation_to($rr, $related_name, $cols_n_values); |
|
214 | 214 | } |
215 | 215 | //add all related objs attached to revision to this object |
216 | - foreach ( $revision_related_objs as $r_obj ) { |
|
217 | - $this->_add_relation_to( $r_obj, $related_name, $cols_n_values ); |
|
216 | + foreach ($revision_related_objs as $r_obj) { |
|
217 | + $this->_add_relation_to($r_obj, $related_name, $cols_n_values); |
|
218 | 218 | } |
219 | 219 | } |
220 | 220 | } |
@@ -230,8 +230,8 @@ discard block |
||
230 | 230 | * <li>If $single is set to false, or left blank, the function returns an array containing all values of the specified key.</li> |
231 | 231 | * <li>If $single is set to true, the function returns the first value of the specified key (not in an array</li></ul> |
232 | 232 | */ |
233 | - public function get_post_meta( $meta_key = NULL, $single = FALSE ) { |
|
234 | - return get_post_meta( $this->ID(), $meta_key, $single ); |
|
233 | + public function get_post_meta($meta_key = NULL, $single = FALSE) { |
|
234 | + return get_post_meta($this->ID(), $meta_key, $single); |
|
235 | 235 | } |
236 | 236 | |
237 | 237 | |
@@ -243,11 +243,11 @@ discard block |
||
243 | 243 | * @param mixed $prev_value |
244 | 244 | * @return mixed Returns meta_id if the meta doesn't exist, otherwise returns true on success and false on failure. NOTE: If the meta_value passed to this function is the same as the value that is already in the database, this function returns false. |
245 | 245 | */ |
246 | - public function update_post_meta( $meta_key, $meta_value, $prev_value = NULL ) { |
|
247 | - if ( ! $this->ID() ) { |
|
246 | + public function update_post_meta($meta_key, $meta_value, $prev_value = NULL) { |
|
247 | + if ( ! $this->ID()) { |
|
248 | 248 | $this->save(); |
249 | 249 | } |
250 | - return update_post_meta( $this->ID(), $meta_key, $meta_value, $prev_value ); |
|
250 | + return update_post_meta($this->ID(), $meta_key, $meta_value, $prev_value); |
|
251 | 251 | } |
252 | 252 | |
253 | 253 | |
@@ -259,11 +259,11 @@ discard block |
||
259 | 259 | * @param bool $unique . If postmeta for this $meta_key already exists, whether to add an additional item or not |
260 | 260 | * @return boolean Boolean true, except if the $unique argument was set to true and a custom field with the given key already exists, in which case false is returned. |
261 | 261 | */ |
262 | - public function add_post_meta( $meta_key, $meta_value, $unique = FALSE ) { |
|
263 | - if ( $this->ID() ) { |
|
262 | + public function add_post_meta($meta_key, $meta_value, $unique = FALSE) { |
|
263 | + if ($this->ID()) { |
|
264 | 264 | $this->save(); |
265 | 265 | } |
266 | - return add_post_meta( $this->ID(), $meta_key, $meta_value, $unique ); |
|
266 | + return add_post_meta($this->ID(), $meta_key, $meta_value, $unique); |
|
267 | 267 | } |
268 | 268 | |
269 | 269 | |
@@ -275,13 +275,13 @@ discard block |
||
275 | 275 | * @param mixed $meta_value |
276 | 276 | * @return boolean False for failure. True for success. |
277 | 277 | */ |
278 | - public function delete_post_meta( $meta_key, $meta_value = '' ) { |
|
279 | - if ( ! $this->ID() ) { |
|
278 | + public function delete_post_meta($meta_key, $meta_value = '') { |
|
279 | + if ( ! $this->ID()) { |
|
280 | 280 | //there are obviously no postmetas for this if it's not saved |
281 | 281 | //so let's just report this as a success |
282 | 282 | return true; |
283 | 283 | } |
284 | - return delete_post_meta( $this->ID(), $meta_key, $meta_value ); |
|
284 | + return delete_post_meta($this->ID(), $meta_key, $meta_value); |
|
285 | 285 | } |
286 | 286 | |
287 | 287 | |
@@ -291,7 +291,7 @@ discard block |
||
291 | 291 | * @return string |
292 | 292 | */ |
293 | 293 | public function get_permalink() { |
294 | - return get_permalink( $this->ID() ); |
|
294 | + return get_permalink($this->ID()); |
|
295 | 295 | } |
296 | 296 | |
297 | 297 | |
@@ -301,8 +301,8 @@ discard block |
||
301 | 301 | * @param array $query_params |
302 | 302 | * @return EE_Term_Taxonomy |
303 | 303 | */ |
304 | - public function term_taxonomies( $query_params = array() ) { |
|
305 | - return $this->get_many_related( 'Term_Taxonomy', $query_params ); |
|
304 | + public function term_taxonomies($query_params = array()) { |
|
305 | + return $this->get_many_related('Term_Taxonomy', $query_params); |
|
306 | 306 | } |
307 | 307 | |
308 | 308 |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | /** |
108 | 108 | * Sets TXN_ID |
109 | 109 | * @param int $TXN_ID |
110 | - * @return boolean |
|
110 | + * @return boolean|null |
|
111 | 111 | */ |
112 | 112 | function set_TXN_ID( $TXN_ID ) { |
113 | 113 | $this->set( 'TXN_ID', $TXN_ID ); |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | /** |
133 | 133 | * Sets name |
134 | 134 | * @param string $name |
135 | - * @return boolean |
|
135 | + * @return boolean|null |
|
136 | 136 | */ |
137 | 137 | function set_name( $name ) { |
138 | 138 | $this->set( 'LIN_name', $name ); |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | /** |
154 | 154 | * Sets desc |
155 | 155 | * @param string $desc |
156 | - * @return boolean |
|
156 | + * @return boolean|null |
|
157 | 157 | */ |
158 | 158 | function set_desc( $desc ) { |
159 | 159 | $this->set( 'LIN_desc', $desc ); |
@@ -174,7 +174,7 @@ discard block |
||
174 | 174 | /** |
175 | 175 | * Sets quantity |
176 | 176 | * @param int $quantity |
177 | - * @return boolean |
|
177 | + * @return boolean|null |
|
178 | 178 | */ |
179 | 179 | function set_quantity( $quantity ) { |
180 | 180 | $this->set( 'LIN_quantity', $quantity ); |
@@ -195,7 +195,7 @@ discard block |
||
195 | 195 | /** |
196 | 196 | * Sets item_id |
197 | 197 | * @param string $item_id |
198 | - * @return boolean |
|
198 | + * @return boolean|null |
|
199 | 199 | */ |
200 | 200 | function set_OBJ_ID( $item_id ) { |
201 | 201 | $this->set( 'OBJ_ID', $item_id ); |
@@ -216,7 +216,7 @@ discard block |
||
216 | 216 | /** |
217 | 217 | * Sets item_type |
218 | 218 | * @param string $OBJ_type |
219 | - * @return boolean |
|
219 | + * @return boolean|null |
|
220 | 220 | */ |
221 | 221 | function set_OBJ_type( $OBJ_type ) { |
222 | 222 | $this->set( 'OBJ_type', $OBJ_type ); |
@@ -237,7 +237,7 @@ discard block |
||
237 | 237 | /** |
238 | 238 | * Sets unit_price |
239 | 239 | * @param float $unit_price |
240 | - * @return boolean |
|
240 | + * @return boolean|null |
|
241 | 241 | */ |
242 | 242 | function set_unit_price( $unit_price ) { |
243 | 243 | $this->set( 'LIN_unit_price', $unit_price ); |
@@ -285,7 +285,7 @@ discard block |
||
285 | 285 | /** |
286 | 286 | * Sets percent (between 100-0.01) |
287 | 287 | * @param float $percent |
288 | - * @return boolean |
|
288 | + * @return boolean|null |
|
289 | 289 | */ |
290 | 290 | function set_percent( $percent ) { |
291 | 291 | $this->set( 'LIN_percent', $percent ); |
@@ -306,7 +306,7 @@ discard block |
||
306 | 306 | /** |
307 | 307 | * Sets total |
308 | 308 | * @param float $total |
309 | - * @return boolean |
|
309 | + * @return boolean|null |
|
310 | 310 | */ |
311 | 311 | function set_total( $total ) { |
312 | 312 | $this->set( 'LIN_total', $total ); |
@@ -347,7 +347,7 @@ discard block |
||
347 | 347 | /** |
348 | 348 | * Sets parent |
349 | 349 | * @param int $parent |
350 | - * @return boolean |
|
350 | + * @return boolean|null |
|
351 | 351 | */ |
352 | 352 | function set_parent_ID( $parent ) { |
353 | 353 | $this->set( 'LIN_parent', $parent ); |
@@ -368,7 +368,7 @@ discard block |
||
368 | 368 | /** |
369 | 369 | * Sets type |
370 | 370 | * @param string $type |
371 | - * @return boolean |
|
371 | + * @return boolean|null |
|
372 | 372 | */ |
373 | 373 | function set_type( $type ) { |
374 | 374 | $this->set( 'LIN_type', $type ); |
@@ -426,7 +426,7 @@ discard block |
||
426 | 426 | /** |
427 | 427 | * Sets code |
428 | 428 | * @param string $code |
429 | - * @return boolean |
|
429 | + * @return boolean|null |
|
430 | 430 | */ |
431 | 431 | function set_code( $code ) { |
432 | 432 | $this->set( 'LIN_code', $code ); |
@@ -447,7 +447,7 @@ discard block |
||
447 | 447 | /** |
448 | 448 | * Sets is_taxable |
449 | 449 | * @param boolean $is_taxable |
450 | - * @return boolean |
|
450 | + * @return boolean|null |
|
451 | 451 | */ |
452 | 452 | function set_is_taxable( $is_taxable ) { |
453 | 453 | $this->set( 'LIN_is_taxable', $is_taxable ); |
@@ -1,5 +1,5 @@ discard block |
||
1 | -<?php if ( !defined( 'EVENT_ESPRESSO_VERSION' ) ) { |
|
2 | - exit( 'No direct script access allowed' ); |
|
1 | +<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
2 | + exit('No direct script access allowed'); |
|
3 | 3 | } |
4 | 4 | /** |
5 | 5 | * Event Espresso |
@@ -50,9 +50,9 @@ discard block |
||
50 | 50 | * date_format and the second value is the time format |
51 | 51 | * @return EE_Line_Item |
52 | 52 | */ |
53 | - public static function new_instance( $props_n_values = array(), $timezone = null, $date_formats = array() ) { |
|
54 | - $has_object = parent::_check_for_object( $props_n_values, __CLASS__, $timezone, $date_formats ); |
|
55 | - return $has_object ? $has_object : new self( $props_n_values, false, $timezone, $date_formats ); |
|
53 | + public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) { |
|
54 | + $has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats); |
|
55 | + return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats); |
|
56 | 56 | } |
57 | 57 | |
58 | 58 | |
@@ -63,8 +63,8 @@ discard block |
||
63 | 63 | * the website will be used. |
64 | 64 | * @return EE_Line_Item |
65 | 65 | */ |
66 | - public static function new_instance_from_db( $props_n_values = array(), $timezone = null ) { |
|
67 | - return new self( $props_n_values, TRUE, $timezone ); |
|
66 | + public static function new_instance_from_db($props_n_values = array(), $timezone = null) { |
|
67 | + return new self($props_n_values, TRUE, $timezone); |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | |
@@ -75,10 +75,10 @@ discard block |
||
75 | 75 | * @param bool $bydb |
76 | 76 | * @param string $timezone |
77 | 77 | */ |
78 | - protected function __construct( $fieldValues = array(), $bydb = FALSE, $timezone = '' ) { |
|
79 | - parent::__construct( $fieldValues, $bydb, $timezone ); |
|
80 | - if ( ! $this->get( 'LIN_code' ) ) { |
|
81 | - $this->set_code( $this->generate_code() ); |
|
78 | + protected function __construct($fieldValues = array(), $bydb = FALSE, $timezone = '') { |
|
79 | + parent::__construct($fieldValues, $bydb, $timezone); |
|
80 | + if ( ! $this->get('LIN_code')) { |
|
81 | + $this->set_code($this->generate_code()); |
|
82 | 82 | } |
83 | 83 | } |
84 | 84 | |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | * @return int |
90 | 90 | */ |
91 | 91 | function ID() { |
92 | - return $this->get( 'LIN_ID' ); |
|
92 | + return $this->get('LIN_ID'); |
|
93 | 93 | } |
94 | 94 | |
95 | 95 | |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | * @return int |
100 | 100 | */ |
101 | 101 | function TXN_ID() { |
102 | - return $this->get( 'TXN_ID' ); |
|
102 | + return $this->get('TXN_ID'); |
|
103 | 103 | } |
104 | 104 | |
105 | 105 | |
@@ -109,8 +109,8 @@ discard block |
||
109 | 109 | * @param int $TXN_ID |
110 | 110 | * @return boolean |
111 | 111 | */ |
112 | - function set_TXN_ID( $TXN_ID ) { |
|
113 | - $this->set( 'TXN_ID', $TXN_ID ); |
|
112 | + function set_TXN_ID($TXN_ID) { |
|
113 | + $this->set('TXN_ID', $TXN_ID); |
|
114 | 114 | } |
115 | 115 | |
116 | 116 | |
@@ -120,9 +120,9 @@ discard block |
||
120 | 120 | * @return string |
121 | 121 | */ |
122 | 122 | function name() { |
123 | - $name = $this->get( 'LIN_name' ); |
|
124 | - if( ! $name ){ |
|
125 | - $name = ucwords( str_replace( '-', ' ', $this->type() ) ); |
|
123 | + $name = $this->get('LIN_name'); |
|
124 | + if ( ! $name) { |
|
125 | + $name = ucwords(str_replace('-', ' ', $this->type())); |
|
126 | 126 | } |
127 | 127 | return $name; |
128 | 128 | } |
@@ -134,8 +134,8 @@ discard block |
||
134 | 134 | * @param string $name |
135 | 135 | * @return boolean |
136 | 136 | */ |
137 | - function set_name( $name ) { |
|
138 | - $this->set( 'LIN_name', $name ); |
|
137 | + function set_name($name) { |
|
138 | + $this->set('LIN_name', $name); |
|
139 | 139 | } |
140 | 140 | |
141 | 141 | |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | * @return string |
146 | 146 | */ |
147 | 147 | function desc() { |
148 | - return $this->get( 'LIN_desc' ); |
|
148 | + return $this->get('LIN_desc'); |
|
149 | 149 | } |
150 | 150 | |
151 | 151 | |
@@ -155,8 +155,8 @@ discard block |
||
155 | 155 | * @param string $desc |
156 | 156 | * @return boolean |
157 | 157 | */ |
158 | - function set_desc( $desc ) { |
|
159 | - $this->set( 'LIN_desc', $desc ); |
|
158 | + function set_desc($desc) { |
|
159 | + $this->set('LIN_desc', $desc); |
|
160 | 160 | } |
161 | 161 | |
162 | 162 | |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | * @return int |
167 | 167 | */ |
168 | 168 | function quantity() { |
169 | - return $this->get( 'LIN_quantity' ); |
|
169 | + return $this->get('LIN_quantity'); |
|
170 | 170 | } |
171 | 171 | |
172 | 172 | |
@@ -176,8 +176,8 @@ discard block |
||
176 | 176 | * @param int $quantity |
177 | 177 | * @return boolean |
178 | 178 | */ |
179 | - function set_quantity( $quantity ) { |
|
180 | - $this->set( 'LIN_quantity', $quantity ); |
|
179 | + function set_quantity($quantity) { |
|
180 | + $this->set('LIN_quantity', $quantity); |
|
181 | 181 | } |
182 | 182 | |
183 | 183 | |
@@ -187,7 +187,7 @@ discard block |
||
187 | 187 | * @return string |
188 | 188 | */ |
189 | 189 | function OBJ_ID() { |
190 | - return $this->get( 'OBJ_ID' ); |
|
190 | + return $this->get('OBJ_ID'); |
|
191 | 191 | } |
192 | 192 | |
193 | 193 | |
@@ -197,8 +197,8 @@ discard block |
||
197 | 197 | * @param string $item_id |
198 | 198 | * @return boolean |
199 | 199 | */ |
200 | - function set_OBJ_ID( $item_id ) { |
|
201 | - $this->set( 'OBJ_ID', $item_id ); |
|
200 | + function set_OBJ_ID($item_id) { |
|
201 | + $this->set('OBJ_ID', $item_id); |
|
202 | 202 | } |
203 | 203 | |
204 | 204 | |
@@ -208,7 +208,7 @@ discard block |
||
208 | 208 | * @return string |
209 | 209 | */ |
210 | 210 | function OBJ_type() { |
211 | - return $this->get( 'OBJ_type' ); |
|
211 | + return $this->get('OBJ_type'); |
|
212 | 212 | } |
213 | 213 | |
214 | 214 | |
@@ -218,8 +218,8 @@ discard block |
||
218 | 218 | * @param string $OBJ_type |
219 | 219 | * @return boolean |
220 | 220 | */ |
221 | - function set_OBJ_type( $OBJ_type ) { |
|
222 | - $this->set( 'OBJ_type', $OBJ_type ); |
|
221 | + function set_OBJ_type($OBJ_type) { |
|
222 | + $this->set('OBJ_type', $OBJ_type); |
|
223 | 223 | } |
224 | 224 | |
225 | 225 | |
@@ -229,7 +229,7 @@ discard block |
||
229 | 229 | * @return float |
230 | 230 | */ |
231 | 231 | function unit_price() { |
232 | - return $this->get( 'LIN_unit_price' ); |
|
232 | + return $this->get('LIN_unit_price'); |
|
233 | 233 | } |
234 | 234 | |
235 | 235 | |
@@ -239,8 +239,8 @@ discard block |
||
239 | 239 | * @param float $unit_price |
240 | 240 | * @return boolean |
241 | 241 | */ |
242 | - function set_unit_price( $unit_price ) { |
|
243 | - $this->set( 'LIN_unit_price', $unit_price ); |
|
242 | + function set_unit_price($unit_price) { |
|
243 | + $this->set('LIN_unit_price', $unit_price); |
|
244 | 244 | } |
245 | 245 | |
246 | 246 | |
@@ -251,19 +251,19 @@ discard block |
||
251 | 251 | * @return boolean |
252 | 252 | */ |
253 | 253 | function is_percent() { |
254 | - if( $this->is_tax_sub_total() ) { |
|
254 | + if ($this->is_tax_sub_total()) { |
|
255 | 255 | //tax subtotals HAVE a percent on them, that percentage only applies |
256 | 256 | //to taxable items, so its' an exception. Treat it like a flat line item |
257 | 257 | return false; |
258 | 258 | } |
259 | - $unit_price = abs( $this->get( 'LIN_unit_price' ) ); |
|
260 | - $percent = abs( $this->get( 'LIN_percent' ) ); |
|
261 | - if ( $unit_price < .001 && $percent ) { |
|
259 | + $unit_price = abs($this->get('LIN_unit_price')); |
|
260 | + $percent = abs($this->get('LIN_percent')); |
|
261 | + if ($unit_price < .001 && $percent) { |
|
262 | 262 | return TRUE; |
263 | - } elseif ( $unit_price >= .001 && !$percent ) { |
|
263 | + } elseif ($unit_price >= .001 && ! $percent) { |
|
264 | 264 | return FALSE; |
265 | - } elseif ( $unit_price >= .001 && $percent ) { |
|
266 | - throw new EE_Error( sprintf( __( "A Line Item can not have a unit price of (%s) AND a percent (%s)!", "event_espresso" ), $unit_price, $percent ) ); |
|
265 | + } elseif ($unit_price >= .001 && $percent) { |
|
266 | + throw new EE_Error(sprintf(__("A Line Item can not have a unit price of (%s) AND a percent (%s)!", "event_espresso"), $unit_price, $percent)); |
|
267 | 267 | } else { |
268 | 268 | // if they're both 0, assume its not a percent item |
269 | 269 | return FALSE; |
@@ -277,7 +277,7 @@ discard block |
||
277 | 277 | * @return float |
278 | 278 | */ |
279 | 279 | function percent() { |
280 | - return $this->get( 'LIN_percent' ); |
|
280 | + return $this->get('LIN_percent'); |
|
281 | 281 | } |
282 | 282 | |
283 | 283 | |
@@ -287,8 +287,8 @@ discard block |
||
287 | 287 | * @param float $percent |
288 | 288 | * @return boolean |
289 | 289 | */ |
290 | - function set_percent( $percent ) { |
|
291 | - $this->set( 'LIN_percent', $percent ); |
|
290 | + function set_percent($percent) { |
|
291 | + $this->set('LIN_percent', $percent); |
|
292 | 292 | } |
293 | 293 | |
294 | 294 | |
@@ -298,7 +298,7 @@ discard block |
||
298 | 298 | * @return float |
299 | 299 | */ |
300 | 300 | function total() { |
301 | - return $this->get( 'LIN_total' ); |
|
301 | + return $this->get('LIN_total'); |
|
302 | 302 | } |
303 | 303 | |
304 | 304 | |
@@ -308,8 +308,8 @@ discard block |
||
308 | 308 | * @param float $total |
309 | 309 | * @return boolean |
310 | 310 | */ |
311 | - function set_total( $total ) { |
|
312 | - $this->set( 'LIN_total', $total ); |
|
311 | + function set_total($total) { |
|
312 | + $this->set('LIN_total', $total); |
|
313 | 313 | } |
314 | 314 | |
315 | 315 | |
@@ -319,7 +319,7 @@ discard block |
||
319 | 319 | * @return int |
320 | 320 | */ |
321 | 321 | function order() { |
322 | - return $this->get( 'LIN_order' ); |
|
322 | + return $this->get('LIN_order'); |
|
323 | 323 | } |
324 | 324 | |
325 | 325 | |
@@ -328,8 +328,8 @@ discard block |
||
328 | 328 | * Sets order |
329 | 329 | * @param int $order |
330 | 330 | */ |
331 | - function set_order( $order ) { |
|
332 | - $this->set( 'LIN_order', $order ); |
|
331 | + function set_order($order) { |
|
332 | + $this->set('LIN_order', $order); |
|
333 | 333 | } |
334 | 334 | |
335 | 335 | |
@@ -339,7 +339,7 @@ discard block |
||
339 | 339 | * @return int |
340 | 340 | */ |
341 | 341 | function parent_ID() { |
342 | - return $this->get( 'LIN_parent' ); |
|
342 | + return $this->get('LIN_parent'); |
|
343 | 343 | } |
344 | 344 | |
345 | 345 | |
@@ -349,8 +349,8 @@ discard block |
||
349 | 349 | * @param int $parent |
350 | 350 | * @return boolean |
351 | 351 | */ |
352 | - function set_parent_ID( $parent ) { |
|
353 | - $this->set( 'LIN_parent', $parent ); |
|
352 | + function set_parent_ID($parent) { |
|
353 | + $this->set('LIN_parent', $parent); |
|
354 | 354 | } |
355 | 355 | |
356 | 356 | |
@@ -360,7 +360,7 @@ discard block |
||
360 | 360 | * @return string |
361 | 361 | */ |
362 | 362 | function type() { |
363 | - return $this->get( 'LIN_type' ); |
|
363 | + return $this->get('LIN_type'); |
|
364 | 364 | } |
365 | 365 | |
366 | 366 | |
@@ -370,8 +370,8 @@ discard block |
||
370 | 370 | * @param string $type |
371 | 371 | * @return boolean |
372 | 372 | */ |
373 | - function set_type( $type ) { |
|
374 | - $this->set( 'LIN_type', $type ); |
|
373 | + function set_type($type) { |
|
374 | + $this->set('LIN_type', $type); |
|
375 | 375 | } |
376 | 376 | |
377 | 377 | |
@@ -384,8 +384,8 @@ discard block |
||
384 | 384 | * @return EE_Line_Item |
385 | 385 | */ |
386 | 386 | public function parent() { |
387 | - if( $this->ID() ) { |
|
388 | - return $this->get_model()->get_one_by_ID( $this->parent_ID() ); |
|
387 | + if ($this->ID()) { |
|
388 | + return $this->get_model()->get_one_by_ID($this->parent_ID()); |
|
389 | 389 | } else { |
390 | 390 | return $this->_parent; |
391 | 391 | } |
@@ -398,13 +398,13 @@ discard block |
||
398 | 398 | * @return EE_Line_Item[] |
399 | 399 | */ |
400 | 400 | public function children() { |
401 | - if ( $this->ID() ) { |
|
401 | + if ($this->ID()) { |
|
402 | 402 | return $this->get_model()->get_all( |
403 | 403 | array( |
404 | - array( 'LIN_parent' => $this->ID() ), |
|
405 | - 'order_by' => array( 'LIN_order' => 'ASC' ) ) ); |
|
404 | + array('LIN_parent' => $this->ID()), |
|
405 | + 'order_by' => array('LIN_order' => 'ASC') ) ); |
|
406 | 406 | } else { |
407 | - if ( ! is_array( $this->_children ) ) { |
|
407 | + if ( ! is_array($this->_children)) { |
|
408 | 408 | $this->_children = array(); |
409 | 409 | } |
410 | 410 | return $this->_children; |
@@ -418,7 +418,7 @@ discard block |
||
418 | 418 | * @return string |
419 | 419 | */ |
420 | 420 | function code() { |
421 | - return $this->get( 'LIN_code' ); |
|
421 | + return $this->get('LIN_code'); |
|
422 | 422 | } |
423 | 423 | |
424 | 424 | |
@@ -428,8 +428,8 @@ discard block |
||
428 | 428 | * @param string $code |
429 | 429 | * @return boolean |
430 | 430 | */ |
431 | - function set_code( $code ) { |
|
432 | - $this->set( 'LIN_code', $code ); |
|
431 | + function set_code($code) { |
|
432 | + $this->set('LIN_code', $code); |
|
433 | 433 | } |
434 | 434 | |
435 | 435 | |
@@ -439,7 +439,7 @@ discard block |
||
439 | 439 | * @return boolean |
440 | 440 | */ |
441 | 441 | function is_taxable() { |
442 | - return $this->get( 'LIN_is_taxable' ); |
|
442 | + return $this->get('LIN_is_taxable'); |
|
443 | 443 | } |
444 | 444 | |
445 | 445 | |
@@ -449,8 +449,8 @@ discard block |
||
449 | 449 | * @param boolean $is_taxable |
450 | 450 | * @return boolean |
451 | 451 | */ |
452 | - function set_is_taxable( $is_taxable ) { |
|
453 | - $this->set( 'LIN_is_taxable', $is_taxable ); |
|
452 | + function set_is_taxable($is_taxable) { |
|
453 | + $this->set('LIN_is_taxable', $is_taxable); |
|
454 | 454 | } |
455 | 455 | |
456 | 456 | |
@@ -465,7 +465,7 @@ discard block |
||
465 | 465 | */ |
466 | 466 | function get_object() { |
467 | 467 | $model_name_of_related_obj = $this->OBJ_type(); |
468 | - return $this->get_model()->has_relation( $model_name_of_related_obj ) ? $this->get_first_related( $model_name_of_related_obj ) : NULL; |
|
468 | + return $this->get_model()->has_relation($model_name_of_related_obj) ? $this->get_first_related($model_name_of_related_obj) : NULL; |
|
469 | 469 | } |
470 | 470 | |
471 | 471 | |
@@ -476,11 +476,11 @@ discard block |
||
476 | 476 | * @param array $query_params |
477 | 477 | * @return EE_Ticket |
478 | 478 | */ |
479 | - function ticket( $query_params = array() ) { |
|
479 | + function ticket($query_params = array()) { |
|
480 | 480 | //we're going to assume that when this method is called we always want to receive the attached ticket EVEN if that ticket is archived. This can be overridden via the incoming $query_params argument |
481 | - $remove_defaults = array( 'default_where_conditions' => 'none' ); |
|
482 | - $query_params = array_merge( $remove_defaults, $query_params ); |
|
483 | - return $this->get_first_related( 'Ticket', $query_params ); |
|
481 | + $remove_defaults = array('default_where_conditions' => 'none'); |
|
482 | + $query_params = array_merge($remove_defaults, $query_params); |
|
483 | + return $this->get_first_related('Ticket', $query_params); |
|
484 | 484 | } |
485 | 485 | |
486 | 486 | |
@@ -490,11 +490,11 @@ discard block |
||
490 | 490 | * @return EE_Datetime | NULL |
491 | 491 | */ |
492 | 492 | function get_ticket_datetime() { |
493 | - if ( $this->OBJ_type() === 'Ticket' ) { |
|
493 | + if ($this->OBJ_type() === 'Ticket') { |
|
494 | 494 | $ticket = $this->ticket(); |
495 | - if ( $ticket instanceof EE_Ticket ) { |
|
495 | + if ($ticket instanceof EE_Ticket) { |
|
496 | 496 | $datetime = $ticket->first_datetime(); |
497 | - if ( $datetime instanceof EE_Datetime ) { |
|
497 | + if ($datetime instanceof EE_Datetime) { |
|
498 | 498 | return $datetime; |
499 | 499 | } |
500 | 500 | } |
@@ -510,9 +510,9 @@ discard block |
||
510 | 510 | * @return string |
511 | 511 | */ |
512 | 512 | function ticket_event_name() { |
513 | - $event_name = __( "Unknown", "event_espresso" ); |
|
513 | + $event_name = __("Unknown", "event_espresso"); |
|
514 | 514 | $event = $this->ticket_event(); |
515 | - if ( $event instanceof EE_Event ) { |
|
515 | + if ($event instanceof EE_Event) { |
|
516 | 516 | $event_name = $event->name(); |
517 | 517 | } |
518 | 518 | return $event_name; |
@@ -526,9 +526,9 @@ discard block |
||
526 | 526 | function ticket_event() { |
527 | 527 | $event = null; |
528 | 528 | $ticket = $this->ticket(); |
529 | - if ( $ticket instanceof EE_Ticket ) { |
|
529 | + if ($ticket instanceof EE_Ticket) { |
|
530 | 530 | $datetime = $ticket->first_datetime(); |
531 | - if ( $datetime instanceof EE_Datetime ) { |
|
531 | + if ($datetime instanceof EE_Datetime) { |
|
532 | 532 | $event = $datetime->event(); |
533 | 533 | } |
534 | 534 | } |
@@ -543,11 +543,11 @@ discard block |
||
543 | 543 | * @param string $time_format |
544 | 544 | * @return string |
545 | 545 | */ |
546 | - function ticket_datetime_start( $date_format = '', $time_format = '' ) { |
|
547 | - $first_datetime_string = __( "Unknown", "event_espresso" ); |
|
546 | + function ticket_datetime_start($date_format = '', $time_format = '') { |
|
547 | + $first_datetime_string = __("Unknown", "event_espresso"); |
|
548 | 548 | $datetime = $this->get_ticket_datetime(); |
549 | - if ( $datetime ) { |
|
550 | - $first_datetime_string = $datetime->start_date_and_time( $date_format, $time_format ); |
|
549 | + if ($datetime) { |
|
550 | + $first_datetime_string = $datetime->start_date_and_time($date_format, $time_format); |
|
551 | 551 | } |
552 | 552 | return $first_datetime_string; |
553 | 553 | } |
@@ -562,26 +562,26 @@ discard block |
||
562 | 562 | * @return bool success |
563 | 563 | * @throws \EE_Error |
564 | 564 | */ |
565 | - function add_child_line_item( EEI_Line_Item $line_item, $set_order = true ) { |
|
565 | + function add_child_line_item(EEI_Line_Item $line_item, $set_order = true) { |
|
566 | 566 | // should we calculate the LIN_order for this line item ? |
567 | - if ( $set_order || $line_item->order() === null ) { |
|
568 | - $line_item->set_order( count( $this->children() ) ); |
|
567 | + if ($set_order || $line_item->order() === null) { |
|
568 | + $line_item->set_order(count($this->children())); |
|
569 | 569 | } |
570 | - if ( $this->ID() ) { |
|
570 | + if ($this->ID()) { |
|
571 | 571 | //check for any duplicate line items (with the same code), if so, this replaces it |
572 | - $line_item_with_same_code = $this->get_child_line_item( $line_item->code() ); |
|
573 | - if( $line_item_with_same_code instanceof EE_Line_Item && $line_item_with_same_code !== $line_item ) { |
|
574 | - $this->delete_child_line_item( $line_item_with_same_code->code() ); |
|
572 | + $line_item_with_same_code = $this->get_child_line_item($line_item->code()); |
|
573 | + if ($line_item_with_same_code instanceof EE_Line_Item && $line_item_with_same_code !== $line_item) { |
|
574 | + $this->delete_child_line_item($line_item_with_same_code->code()); |
|
575 | 575 | } |
576 | - $line_item->set_parent_ID( $this->ID() ); |
|
577 | - if( $this->TXN_ID() ){ |
|
578 | - $line_item->set_TXN_ID( $this->TXN_ID() ); |
|
576 | + $line_item->set_parent_ID($this->ID()); |
|
577 | + if ($this->TXN_ID()) { |
|
578 | + $line_item->set_TXN_ID($this->TXN_ID()); |
|
579 | 579 | } |
580 | 580 | return $line_item->save(); |
581 | 581 | } else { |
582 | - $this->_children[ $line_item->code() ] = $line_item; |
|
583 | - if( $line_item->parent() != $this ) { |
|
584 | - $line_item->set_parent( $this ); |
|
582 | + $this->_children[$line_item->code()] = $line_item; |
|
583 | + if ($line_item->parent() != $this) { |
|
584 | + $line_item->set_parent($this); |
|
585 | 585 | } |
586 | 586 | return TRUE; |
587 | 587 | } |
@@ -595,16 +595,16 @@ discard block |
||
595 | 595 | * @param EE_Line_Item $line_item |
596 | 596 | * |
597 | 597 | */ |
598 | - public function set_parent( $line_item ) { |
|
599 | - if ( $this->ID() ) { |
|
600 | - if( ! $line_item->ID() ) { |
|
598 | + public function set_parent($line_item) { |
|
599 | + if ($this->ID()) { |
|
600 | + if ( ! $line_item->ID()) { |
|
601 | 601 | $line_item->save(); |
602 | 602 | } |
603 | - $this->set_parent_ID( $line_item->ID() ); |
|
603 | + $this->set_parent_ID($line_item->ID()); |
|
604 | 604 | $this->save(); |
605 | 605 | } else { |
606 | 606 | $this->_parent = $line_item; |
607 | - $this->set_parent_ID( $line_item->ID() ); |
|
607 | + $this->set_parent_ID($line_item->ID()); |
|
608 | 608 | } |
609 | 609 | } |
610 | 610 | |
@@ -617,11 +617,11 @@ discard block |
||
617 | 617 | * @param string $code |
618 | 618 | * @return EE_Line_Item |
619 | 619 | */ |
620 | - function get_child_line_item( $code ) { |
|
621 | - if ( $this->ID() ) { |
|
622 | - return $this->get_model()->get_one( array( array( 'LIN_parent' => $this->ID(), 'LIN_code' => $code ) ) ); |
|
620 | + function get_child_line_item($code) { |
|
621 | + if ($this->ID()) { |
|
622 | + return $this->get_model()->get_one(array(array('LIN_parent' => $this->ID(), 'LIN_code' => $code))); |
|
623 | 623 | } else { |
624 | - return isset( $this->_children[ $code ] ) ? $this->_children[ $code ] : null; |
|
624 | + return isset($this->_children[$code]) ? $this->_children[$code] : null; |
|
625 | 625 | } |
626 | 626 | } |
627 | 627 | |
@@ -632,10 +632,10 @@ discard block |
||
632 | 632 | * @return int |
633 | 633 | */ |
634 | 634 | function delete_children_line_items() { |
635 | - if ( $this->ID() ) { |
|
636 | - return $this->get_model()->delete( array( array( 'LIN_parent' => $this->ID() ) ) ); |
|
635 | + if ($this->ID()) { |
|
636 | + return $this->get_model()->delete(array(array('LIN_parent' => $this->ID()))); |
|
637 | 637 | } else { |
638 | - $count = count( $this->_children ); |
|
638 | + $count = count($this->_children); |
|
639 | 639 | $this->_children = array(); |
640 | 640 | return $count; |
641 | 641 | } |
@@ -652,25 +652,25 @@ discard block |
||
652 | 652 | * @param bool $stop_search_once_found |
653 | 653 | * @return int count of items deleted (or simply removed from the line item's cache, if not has not been saved to the DB yet) |
654 | 654 | */ |
655 | - function delete_child_line_item( $code, $stop_search_once_found = true ) { |
|
656 | - if ( $this->ID() ) { |
|
655 | + function delete_child_line_item($code, $stop_search_once_found = true) { |
|
656 | + if ($this->ID()) { |
|
657 | 657 | $items_deleted = 0; |
658 | - if( $this->code() == $code ) { |
|
659 | - $items_deleted += EEH_Line_Item::delete_all_child_items( $this ); |
|
660 | - $items_deleted += intval( $this->delete() ); |
|
661 | - if( $stop_search_once_found ){ |
|
658 | + if ($this->code() == $code) { |
|
659 | + $items_deleted += EEH_Line_Item::delete_all_child_items($this); |
|
660 | + $items_deleted += intval($this->delete()); |
|
661 | + if ($stop_search_once_found) { |
|
662 | 662 | return $items_deleted; |
663 | 663 | } |
664 | 664 | } |
665 | - foreach( $this->children() as $child_line_item ) { |
|
666 | - $items_deleted += $child_line_item->delete_child_line_item( $code, $stop_search_once_found ); |
|
665 | + foreach ($this->children() as $child_line_item) { |
|
666 | + $items_deleted += $child_line_item->delete_child_line_item($code, $stop_search_once_found); |
|
667 | 667 | } |
668 | 668 | return $items_deleted; |
669 | 669 | } else { |
670 | - if( isset( $this->_children[ $code ] ) ) { |
|
671 | - unset( $this->_children[ $code ] ); |
|
670 | + if (isset($this->_children[$code])) { |
|
671 | + unset($this->_children[$code]); |
|
672 | 672 | return 1; |
673 | - }else{ |
|
673 | + } else { |
|
674 | 674 | return 0; |
675 | 675 | } |
676 | 676 | } |
@@ -683,9 +683,9 @@ discard block |
||
683 | 683 | * @return boolean |
684 | 684 | */ |
685 | 685 | public function delete_if_childless_subtotal() { |
686 | - if( $this->ID() && |
|
686 | + if ($this->ID() && |
|
687 | 687 | $this->type() == EEM_Line_Item::type_sub_total && |
688 | - ! $this->children() ) { |
|
688 | + ! $this->children()) { |
|
689 | 689 | return $this->delete(); |
690 | 690 | } else { |
691 | 691 | return false; |
@@ -700,7 +700,7 @@ discard block |
||
700 | 700 | */ |
701 | 701 | function generate_code() { |
702 | 702 | // each line item in the cart requires a unique identifier |
703 | - return md5( $this->get( 'OBJ_type' ) . $this->get( 'OBJ_ID' ) . microtime() ); |
|
703 | + return md5($this->get('OBJ_type').$this->get('OBJ_ID').microtime()); |
|
704 | 704 | } |
705 | 705 | |
706 | 706 | |
@@ -764,7 +764,7 @@ discard block |
||
764 | 764 | * @return string like '2, 004.00', formatted according to the localized currency |
765 | 765 | */ |
766 | 766 | function unit_price_no_code() { |
767 | - return $this->get_pretty( 'LIN_unit_price', 'no_currency_code' ); |
|
767 | + return $this->get_pretty('LIN_unit_price', 'no_currency_code'); |
|
768 | 768 | } |
769 | 769 | |
770 | 770 | |
@@ -774,7 +774,7 @@ discard block |
||
774 | 774 | * @return string like '2, 004.00', formatted according to the localized currency |
775 | 775 | */ |
776 | 776 | function total_no_code() { |
777 | - return $this->get_pretty( 'LIN_total', 'no_currency_code' ); |
|
777 | + return $this->get_pretty('LIN_total', 'no_currency_code'); |
|
778 | 778 | } |
779 | 779 | |
780 | 780 | |
@@ -793,17 +793,17 @@ discard block |
||
793 | 793 | |
794 | 794 | $total = $pre_tax_total + $tax_total; |
795 | 795 | // no negative totals plz |
796 | - $total = max( $total, 0 ); |
|
797 | - $this->set_total( $total ); |
|
796 | + $total = max($total, 0); |
|
797 | + $this->set_total($total); |
|
798 | 798 | //only update the related transaction's total |
799 | 799 | //if we intend to save this line item and its a grand total |
800 | - if( |
|
800 | + if ( |
|
801 | 801 | $this->allow_persist() && |
802 | 802 | $this->type() == EEM_Line_Item::type_total && |
803 | 803 | $this->transaction() instanceof EE_Transaction |
804 | - ){ |
|
805 | - $this->transaction()->set_total( $total ); |
|
806 | - if ( $this->transaction()->ID() ) { |
|
804 | + ) { |
|
805 | + $this->transaction()->set_total($total); |
|
806 | + if ($this->transaction()->ID()) { |
|
807 | 807 | $this->transaction()->save(); |
808 | 808 | } |
809 | 809 | } |
@@ -824,42 +824,42 @@ discard block |
||
824 | 824 | $total = 0; |
825 | 825 | $my_children = $this->children(); |
826 | 826 | //completely ignore tax and tax sub-totals when calculating the pre-tax-total |
827 | - if ( $this->is_tax_sub_total() || $this->is_tax() ) { |
|
827 | + if ($this->is_tax_sub_total() || $this->is_tax()) { |
|
828 | 828 | return 0; |
829 | 829 | } elseif ( |
830 | - ( $this->is_sub_line_item() || $this->is_line_item() ) |
|
831 | - && empty( $my_children ) |
|
830 | + ($this->is_sub_line_item() || $this->is_line_item()) |
|
831 | + && empty($my_children) |
|
832 | 832 | ) { |
833 | 833 | $total = $this->unit_price() * $this->quantity(); |
834 | - } elseif( $this->is_sub_total() || $this->is_total() ) { |
|
835 | - $total = $this->_recalculate_pretax_total_for_subtotal( $total, $my_children ); |
|
836 | - } elseif ( $this->is_line_item() && ! empty( $my_children ) ) { |
|
837 | - $total = $this->_recalculate_pretax_total_for_line_item( $total, $my_children ); |
|
834 | + } elseif ($this->is_sub_total() || $this->is_total()) { |
|
835 | + $total = $this->_recalculate_pretax_total_for_subtotal($total, $my_children); |
|
836 | + } elseif ($this->is_line_item() && ! empty($my_children)) { |
|
837 | + $total = $this->_recalculate_pretax_total_for_line_item($total, $my_children); |
|
838 | 838 | } |
839 | 839 | //ensure all non-line items and non-sub-line-items have a quantity of 1 |
840 | - if( ! $this->is_line_item() && ! $this->is_sub_line_item() ) { |
|
841 | - $this->set_quantity( 1 ); |
|
842 | - if( ! $this->is_percent() ) { |
|
843 | - $this->set_unit_price( $this->total() ); |
|
840 | + if ( ! $this->is_line_item() && ! $this->is_sub_line_item()) { |
|
841 | + $this->set_quantity(1); |
|
842 | + if ( ! $this->is_percent()) { |
|
843 | + $this->set_unit_price($this->total()); |
|
844 | 844 | } |
845 | 845 | } |
846 | 846 | |
847 | 847 | //we don't want to bother saving grand totals, because that needs to factor in taxes anyways |
848 | 848 | //so it ought to be |
849 | - if( ! $this->is_total() ) { |
|
850 | - $this->set_total( $total ); |
|
849 | + if ( ! $this->is_total()) { |
|
850 | + $this->set_total($total); |
|
851 | 851 | //if not a percent line item, make sure we keep the unit price in sync |
852 | - if( |
|
852 | + if ( |
|
853 | 853 | $this->is_line_item() && |
854 | - ! empty( $my_children ) && |
|
854 | + ! empty($my_children) && |
|
855 | 855 | ! $this->is_percent() |
856 | 856 | ) { |
857 | - if( $this->quantity() === 0 ){ |
|
857 | + if ($this->quantity() === 0) { |
|
858 | 858 | $new_unit_price = 0; |
859 | 859 | } else { |
860 | 860 | $new_unit_price = $this->total() / $this->quantity(); |
861 | 861 | } |
862 | - $this->set_unit_price( $new_unit_price ); |
|
862 | + $this->set_unit_price($new_unit_price); |
|
863 | 863 | } |
864 | 864 | $this->maybe_save(); |
865 | 865 | } |
@@ -875,14 +875,14 @@ discard block |
||
875 | 875 | * @param EE_Line_Item[] $my_children |
876 | 876 | * @return float |
877 | 877 | */ |
878 | - protected function _recalculate_pretax_total_for_subtotal( $calculated_total_so_far, $my_children = null ) { |
|
879 | - if( $my_children === null ) { |
|
878 | + protected function _recalculate_pretax_total_for_subtotal($calculated_total_so_far, $my_children = null) { |
|
879 | + if ($my_children === null) { |
|
880 | 880 | $my_children = $this->children(); |
881 | 881 | } |
882 | 882 | //get the total of all its children |
883 | - foreach ( $my_children as $child_line_item ) { |
|
884 | - if ( $child_line_item instanceof EE_Line_Item ) { |
|
885 | - if ( $child_line_item->is_percent() ) { |
|
883 | + foreach ($my_children as $child_line_item) { |
|
884 | + if ($child_line_item instanceof EE_Line_Item) { |
|
885 | + if ($child_line_item->is_percent()) { |
|
886 | 886 | |
887 | 887 | //round as we go so that the line items add up ok |
888 | 888 | $percent_total = round( |
@@ -890,25 +890,25 @@ discard block |
||
890 | 890 | EE_Registry::instance()->CFG->currency->dec_plc |
891 | 891 | ); |
892 | 892 | |
893 | - $child_line_item->set_total( $percent_total ); |
|
893 | + $child_line_item->set_total($percent_total); |
|
894 | 894 | //so far all percent line items should have a quantity of 1 |
895 | 895 | //(ie, no double percent discounts. Although that might be requested someday) |
896 | - $child_line_item->set_quantity( 1 ); |
|
896 | + $child_line_item->set_quantity(1); |
|
897 | 897 | $child_line_item->maybe_save(); |
898 | 898 | $calculated_total_so_far += $percent_total; |
899 | 899 | } else { |
900 | 900 | //verify flat sub-line-item quantities match their parent |
901 | - if( $child_line_item->is_sub_line_item() ) { |
|
902 | - $child_line_item->set_quantity( $this->quantity() ); |
|
901 | + if ($child_line_item->is_sub_line_item()) { |
|
902 | + $child_line_item->set_quantity($this->quantity()); |
|
903 | 903 | } |
904 | 904 | $calculated_total_so_far += $child_line_item->recalculate_pre_tax_total(); |
905 | 905 | } |
906 | 906 | } |
907 | 907 | } |
908 | 908 | |
909 | - if( $this->is_sub_total() ){ |
|
909 | + if ($this->is_sub_total()) { |
|
910 | 910 | // no negative totals plz |
911 | - $calculated_total_so_far = max( $calculated_total_so_far, 0 ); |
|
911 | + $calculated_total_so_far = max($calculated_total_so_far, 0); |
|
912 | 912 | } |
913 | 913 | return $calculated_total_so_far; |
914 | 914 | } |
@@ -922,8 +922,8 @@ discard block |
||
922 | 922 | * @param EE_Line_Item[] $my_children |
923 | 923 | * @return float |
924 | 924 | */ |
925 | - protected function _recalculate_pretax_total_for_line_item( $calculated_total_so_far, $my_children = null ) { |
|
926 | - if( $my_children === null ) { |
|
925 | + protected function _recalculate_pretax_total_for_line_item($calculated_total_so_far, $my_children = null) { |
|
926 | + if ($my_children === null) { |
|
927 | 927 | $my_children = $this->children(); |
928 | 928 | } |
929 | 929 | //we need to keep track of the running total for a single item, |
@@ -931,9 +931,9 @@ discard block |
||
931 | 931 | $unit_price_for_total = 0; |
932 | 932 | $quantity_for_total = 1; |
933 | 933 | //get the total of all its children |
934 | - foreach ( $my_children as $child_line_item ) { |
|
935 | - if ( $child_line_item instanceof EE_Line_Item ) { |
|
936 | - if ( $child_line_item->is_percent() ) { |
|
934 | + foreach ($my_children as $child_line_item) { |
|
935 | + if ($child_line_item instanceof EE_Line_Item) { |
|
936 | + if ($child_line_item->is_percent()) { |
|
937 | 937 | //it should be the unit-price-so-far multiplied by teh percent multiplied by the quantity |
938 | 938 | //not total multiplied by percent, because that ignores rounding along-the-way |
939 | 939 | $percent_unit_price = round( |
@@ -941,17 +941,17 @@ discard block |
||
941 | 941 | EE_Registry::instance()->CFG->currency->dec_plc |
942 | 942 | ); |
943 | 943 | $percent_total = $percent_unit_price * $quantity_for_total; |
944 | - $child_line_item->set_total( $percent_total ); |
|
944 | + $child_line_item->set_total($percent_total); |
|
945 | 945 | //so far all percent line items should have a quantity of 1 |
946 | 946 | //(ie, no double percent discounts. Although that might be requested someday) |
947 | - $child_line_item->set_quantity( 1 ); |
|
947 | + $child_line_item->set_quantity(1); |
|
948 | 948 | $child_line_item->maybe_save(); |
949 | 949 | $calculated_total_so_far += $percent_total; |
950 | 950 | $unit_price_for_total += $percent_unit_price; |
951 | 951 | } else { |
952 | 952 | //verify flat sub-line-item quantities match their parent |
953 | - if( $child_line_item->is_sub_line_item() ) { |
|
954 | - $child_line_item->set_quantity( $this->quantity() ); |
|
953 | + if ($child_line_item->is_sub_line_item()) { |
|
954 | + $child_line_item->set_quantity($this->quantity()); |
|
955 | 955 | } |
956 | 956 | $quantity_for_total = $child_line_item->quantity(); |
957 | 957 | $calculated_total_so_far += $child_line_item->recalculate_pre_tax_total(); |
@@ -975,10 +975,10 @@ discard block |
||
975 | 975 | //calculate the pretax total |
976 | 976 | $taxable_total = $this->taxable_total(); |
977 | 977 | $tax_total = 0; |
978 | - foreach ( $taxes as $tax ) { |
|
978 | + foreach ($taxes as $tax) { |
|
979 | 979 | $total_on_this_tax = $taxable_total * $tax->percent() / 100; |
980 | 980 | //remember the total on this line item |
981 | - $tax->set_total( $total_on_this_tax ); |
|
981 | + $tax->set_total($total_on_this_tax); |
|
982 | 982 | $tax_total += $tax->total(); |
983 | 983 | } |
984 | 984 | $this->_recalculate_tax_sub_total(); |
@@ -992,21 +992,21 @@ discard block |
||
992 | 992 | * @return void |
993 | 993 | */ |
994 | 994 | private function _recalculate_tax_sub_total() { |
995 | - if ( $this->is_tax_sub_total() ) { |
|
995 | + if ($this->is_tax_sub_total()) { |
|
996 | 996 | $total = 0; |
997 | 997 | $total_percent = 0; |
998 | 998 | //simply loop through all its children (which should be taxes) and sum their total |
999 | - foreach ( $this->children() as $child_tax ) { |
|
1000 | - if ( $child_tax instanceof EE_Line_Item ) { |
|
999 | + foreach ($this->children() as $child_tax) { |
|
1000 | + if ($child_tax instanceof EE_Line_Item) { |
|
1001 | 1001 | $total += $child_tax->total(); |
1002 | 1002 | $total_percent += $child_tax->percent(); |
1003 | 1003 | } |
1004 | 1004 | } |
1005 | - $this->set_total( $total ); |
|
1006 | - $this->set_percent( $total_percent ); |
|
1007 | - } elseif ( $this->is_total() ) { |
|
1008 | - foreach ( $this->children() as $maybe_tax_subtotal ) { |
|
1009 | - if ( $maybe_tax_subtotal instanceof EE_Line_Item ) { |
|
1005 | + $this->set_total($total); |
|
1006 | + $this->set_percent($total_percent); |
|
1007 | + } elseif ($this->is_total()) { |
|
1008 | + foreach ($this->children() as $maybe_tax_subtotal) { |
|
1009 | + if ($maybe_tax_subtotal instanceof EE_Line_Item) { |
|
1010 | 1010 | $maybe_tax_subtotal->_recalculate_tax_sub_total(); |
1011 | 1011 | } |
1012 | 1012 | } |
@@ -1022,8 +1022,8 @@ discard block |
||
1022 | 1022 | public function get_total_tax() { |
1023 | 1023 | $this->_recalculate_tax_sub_total(); |
1024 | 1024 | $total = 0; |
1025 | - foreach ( $this->tax_descendants() as $tax_line_item ) { |
|
1026 | - if ( $tax_line_item instanceof EE_Line_Item ) { |
|
1025 | + foreach ($this->tax_descendants() as $tax_line_item) { |
|
1026 | + if ($tax_line_item instanceof EE_Line_Item) { |
|
1027 | 1027 | $total += $tax_line_item->total(); |
1028 | 1028 | } |
1029 | 1029 | } |
@@ -1037,15 +1037,15 @@ discard block |
||
1037 | 1037 | */ |
1038 | 1038 | public function get_items_total() { |
1039 | 1039 | //by default, let's make sure we're consistent with the existing line item |
1040 | - if( $this->is_total() ) { |
|
1041 | - $pretax_subtotal_li = EEH_Line_Item::get_pre_tax_subtotal( $this ); |
|
1042 | - if( $pretax_subtotal_li instanceof EE_Line_Item ) { |
|
1040 | + if ($this->is_total()) { |
|
1041 | + $pretax_subtotal_li = EEH_Line_Item::get_pre_tax_subtotal($this); |
|
1042 | + if ($pretax_subtotal_li instanceof EE_Line_Item) { |
|
1043 | 1043 | return $pretax_subtotal_li->total(); |
1044 | 1044 | } |
1045 | 1045 | } |
1046 | 1046 | $total = 0; |
1047 | - foreach ( $this->get_items() as $item ) { |
|
1048 | - if ( $item instanceof EE_Line_Item ) { |
|
1047 | + foreach ($this->get_items() as $item) { |
|
1048 | + if ($item instanceof EE_Line_Item) { |
|
1049 | 1049 | $total += $item->total(); |
1050 | 1050 | } |
1051 | 1051 | } |
@@ -1060,7 +1060,7 @@ discard block |
||
1060 | 1060 | * @return EE_Line_Item[] |
1061 | 1061 | */ |
1062 | 1062 | function tax_descendants() { |
1063 | - return EEH_Line_Item::get_tax_descendants( $this ); |
|
1063 | + return EEH_Line_Item::get_tax_descendants($this); |
|
1064 | 1064 | } |
1065 | 1065 | |
1066 | 1066 | |
@@ -1070,7 +1070,7 @@ discard block |
||
1070 | 1070 | * @return EE_Line_Item[] |
1071 | 1071 | */ |
1072 | 1072 | function get_items() { |
1073 | - return EEH_Line_Item::get_line_item_descendants( $this ); |
|
1073 | + return EEH_Line_Item::get_line_item_descendants($this); |
|
1074 | 1074 | } |
1075 | 1075 | |
1076 | 1076 | |
@@ -1084,22 +1084,22 @@ discard block |
||
1084 | 1084 | */ |
1085 | 1085 | function taxable_total() { |
1086 | 1086 | $total = 0; |
1087 | - if ( $this->children() ) { |
|
1088 | - foreach ( $this->children() as $child_line_item ) { |
|
1089 | - if ( $child_line_item->type() == EEM_Line_Item::type_line_item && $child_line_item->is_taxable()) { |
|
1087 | + if ($this->children()) { |
|
1088 | + foreach ($this->children() as $child_line_item) { |
|
1089 | + if ($child_line_item->type() == EEM_Line_Item::type_line_item && $child_line_item->is_taxable()) { |
|
1090 | 1090 | //if it's a percent item, only take into account the percent |
1091 | 1091 | //that's taxable too (the taxable total so far) |
1092 | - if( $child_line_item->is_percent() ) { |
|
1093 | - $total = $total + ( $total * $child_line_item->percent() / 100 ); |
|
1094 | - }else{ |
|
1092 | + if ($child_line_item->is_percent()) { |
|
1093 | + $total = $total + ($total * $child_line_item->percent() / 100); |
|
1094 | + } else { |
|
1095 | 1095 | $total += $child_line_item->total(); |
1096 | 1096 | } |
1097 | - }elseif( $child_line_item->type() == EEM_Line_Item::type_sub_total ){ |
|
1097 | + }elseif ($child_line_item->type() == EEM_Line_Item::type_sub_total) { |
|
1098 | 1098 | $total += $child_line_item->taxable_total(); |
1099 | 1099 | } |
1100 | 1100 | } |
1101 | 1101 | } |
1102 | - return max( $total, 0 ); |
|
1102 | + return max($total, 0); |
|
1103 | 1103 | } |
1104 | 1104 | |
1105 | 1105 | |
@@ -1109,7 +1109,7 @@ discard block |
||
1109 | 1109 | * @return EE_Transaction |
1110 | 1110 | */ |
1111 | 1111 | public function transaction() { |
1112 | - return $this->get_first_related( 'Transaction' ); |
|
1112 | + return $this->get_first_related('Transaction'); |
|
1113 | 1113 | } |
1114 | 1114 | |
1115 | 1115 | |
@@ -1122,17 +1122,17 @@ discard block |
||
1122 | 1122 | * @param int $txn_id if none is provided, assumes $this->TXN_ID() |
1123 | 1123 | * @return int count of items saved |
1124 | 1124 | */ |
1125 | - public function save_this_and_descendants_to_txn( $txn_id = NULL ) { |
|
1126 | - if ( ! $txn_id ) { |
|
1125 | + public function save_this_and_descendants_to_txn($txn_id = NULL) { |
|
1126 | + if ( ! $txn_id) { |
|
1127 | 1127 | $txn_id = $this->TXN_ID(); |
1128 | 1128 | } |
1129 | - $this->set_TXN_ID( $txn_id ); |
|
1129 | + $this->set_TXN_ID($txn_id); |
|
1130 | 1130 | $children = $this->children(); |
1131 | 1131 | $this->save(); |
1132 | - foreach ( $children as $child_line_item ) { |
|
1133 | - if ( $child_line_item instanceof EE_Line_Item ) { |
|
1134 | - $child_line_item->set_parent_ID( $this->ID() ); |
|
1135 | - $child_line_item->save_this_and_descendants_to_txn( $txn_id ); |
|
1132 | + foreach ($children as $child_line_item) { |
|
1133 | + if ($child_line_item instanceof EE_Line_Item) { |
|
1134 | + $child_line_item->set_parent_ID($this->ID()); |
|
1135 | + $child_line_item->save_this_and_descendants_to_txn($txn_id); |
|
1136 | 1136 | } |
1137 | 1137 | } |
1138 | 1138 | } |
@@ -1144,9 +1144,9 @@ discard block |
||
1144 | 1144 | * @param string $type one of the constants on EEM_Line_Item |
1145 | 1145 | * @return EE_Line_Item[] |
1146 | 1146 | */ |
1147 | - protected function _get_descendants_of_type( $type ) { |
|
1148 | - EE_Error::doing_it_wrong( 'EE_Line_Item::_get_descendants_of_type()', __('Method replaced with EEH_Line_Item::get_descendants_of_type()', 'event_espresso'), '4.6.0' ); |
|
1149 | - return EEH_Line_Item::get_descendants_of_type( $this, $type ); |
|
1147 | + protected function _get_descendants_of_type($type) { |
|
1148 | + EE_Error::doing_it_wrong('EE_Line_Item::_get_descendants_of_type()', __('Method replaced with EEH_Line_Item::get_descendants_of_type()', 'event_espresso'), '4.6.0'); |
|
1149 | + return EEH_Line_Item::get_descendants_of_type($this, $type); |
|
1150 | 1150 | } |
1151 | 1151 | |
1152 | 1152 | |
@@ -1156,9 +1156,9 @@ discard block |
||
1156 | 1156 | * @param string $type like one of the EEM_Line_Item::type_* |
1157 | 1157 | * @return EE_Line_Item |
1158 | 1158 | */ |
1159 | - public function get_nearest_descendant_of_type( $type ) { |
|
1160 | - EE_Error::doing_it_wrong( 'EE_Line_Item::get_nearest_descendant_of_type()', __('Method replaced with EEH_Line_Item::get_nearest_descendant_of_type()', 'event_espresso'), '4.6.0' ); |
|
1161 | - return EEH_Line_Item::get_nearest_descendant_of_type( $this, $type ); |
|
1159 | + public function get_nearest_descendant_of_type($type) { |
|
1160 | + EE_Error::doing_it_wrong('EE_Line_Item::get_nearest_descendant_of_type()', __('Method replaced with EEH_Line_Item::get_nearest_descendant_of_type()', 'event_espresso'), '4.6.0'); |
|
1161 | + return EEH_Line_Item::get_nearest_descendant_of_type($this, $type); |
|
1162 | 1162 | } |
1163 | 1163 | |
1164 | 1164 | |
@@ -1169,7 +1169,7 @@ discard block |
||
1169 | 1169 | * @return int count of items saved |
1170 | 1170 | */ |
1171 | 1171 | public function maybe_save() { |
1172 | - if ( $this->ID() ) { |
|
1172 | + if ($this->ID()) { |
|
1173 | 1173 | return $this->save(); |
1174 | 1174 | } |
1175 | 1175 | return false; |
@@ -224,7 +224,7 @@ |
||
224 | 224 | * appropriately. |
225 | 225 | * |
226 | 226 | * @throws EE_Error |
227 | - * @return EE_message_type|false if exception thrown. |
|
227 | + * @return null|EE_message_type if exception thrown. |
|
228 | 228 | */ |
229 | 229 | public function message_type_obj() { |
230 | 230 | $message_type = $this->message_type(); |
@@ -1,5 +1,5 @@ discard block |
||
1 | -<?php if ( !defined( 'EVENT_ESPRESSO_VERSION' ) ) { |
|
2 | - exit( 'No direct script access allowed' ); |
|
1 | +<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
2 | + exit('No direct script access allowed'); |
|
3 | 3 | } |
4 | 4 | /** |
5 | 5 | * EE_Message_Template_Group class |
@@ -18,9 +18,9 @@ discard block |
||
18 | 18 | * @param string $timezone |
19 | 19 | * @return EE_Message_Template_Group|mixed |
20 | 20 | */ |
21 | - public static function new_instance( $props_n_values = array(), $timezone = '' ) { |
|
22 | - $has_object = parent::_check_for_object( $props_n_values, __CLASS__, $timezone ); |
|
23 | - return $has_object ? $has_object : new self( $props_n_values, FALSE, $timezone ); |
|
21 | + public static function new_instance($props_n_values = array(), $timezone = '') { |
|
22 | + $has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone); |
|
23 | + return $has_object ? $has_object : new self($props_n_values, FALSE, $timezone); |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | |
@@ -30,8 +30,8 @@ discard block |
||
30 | 30 | * @param string $timezone |
31 | 31 | * @return EE_Message_Template_Group |
32 | 32 | */ |
33 | - public static function new_instance_from_db( $props_n_values = array(), $timezone = '' ) { |
|
34 | - return new self( $props_n_values, TRUE, $timezone ); |
|
33 | + public static function new_instance_from_db($props_n_values = array(), $timezone = '') { |
|
34 | + return new self($props_n_values, TRUE, $timezone); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | |
@@ -40,11 +40,11 @@ discard block |
||
40 | 40 | * @param bool $message_type |
41 | 41 | * @throws EE_Error |
42 | 42 | */ |
43 | - public function set_message_type( $message_type = FALSE ) { |
|
44 | - if ( ! $message_type ) { |
|
45 | - throw new EE_Error( __( 'Missing required value for the message_type parameter', 'event_espresso' ) ); |
|
43 | + public function set_message_type($message_type = FALSE) { |
|
44 | + if ( ! $message_type) { |
|
45 | + throw new EE_Error(__('Missing required value for the message_type parameter', 'event_espresso')); |
|
46 | 46 | } |
47 | - $this->set( 'MTP_message_type', $message_type ); |
|
47 | + $this->set('MTP_message_type', $message_type); |
|
48 | 48 | } |
49 | 49 | |
50 | 50 | |
@@ -53,11 +53,11 @@ discard block |
||
53 | 53 | * @param bool $messenger |
54 | 54 | * @throws EE_Error |
55 | 55 | */ |
56 | - public function set_messenger( $messenger = FALSE ) { |
|
57 | - if ( ! $messenger ) { |
|
58 | - throw new EE_Error( __( 'Missing required value for the messenger parameter', 'event_espresso' ) ); |
|
56 | + public function set_messenger($messenger = FALSE) { |
|
57 | + if ( ! $messenger) { |
|
58 | + throw new EE_Error(__('Missing required value for the messenger parameter', 'event_espresso')); |
|
59 | 59 | } |
60 | - $this->set( 'MTP_messenger', $messenger ); |
|
60 | + $this->set('MTP_messenger', $messenger); |
|
61 | 61 | } |
62 | 62 | |
63 | 63 | |
@@ -66,11 +66,11 @@ discard block |
||
66 | 66 | * @param bool $GRP_ID |
67 | 67 | * @throws EE_Error |
68 | 68 | */ |
69 | - public function set_group_template_id( $GRP_ID = FALSE ) { |
|
70 | - if ( ! $GRP_ID ) { |
|
71 | - throw new EE_Error( __( 'Missing required value for the message template group id', 'event_espresso' ) ); |
|
69 | + public function set_group_template_id($GRP_ID = FALSE) { |
|
70 | + if ( ! $GRP_ID) { |
|
71 | + throw new EE_Error(__('Missing required value for the message template group id', 'event_espresso')); |
|
72 | 72 | } |
73 | - $this->set( 'GRP_ID', $GRP_ID ); |
|
73 | + $this->set('GRP_ID', $GRP_ID); |
|
74 | 74 | } |
75 | 75 | |
76 | 76 | |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | * @return int |
82 | 82 | */ |
83 | 83 | public function GRP_ID() { |
84 | - return $this->get( 'GRP_ID' ); |
|
84 | + return $this->get('GRP_ID'); |
|
85 | 85 | } |
86 | 86 | |
87 | 87 | |
@@ -92,8 +92,8 @@ discard block |
||
92 | 92 | * @return int |
93 | 93 | */ |
94 | 94 | public function user() { |
95 | - $user_id = $this->get( 'MTP_user_id' ); |
|
96 | - return empty( $user_id ) ? get_current_user_id() : $user_id; |
|
95 | + $user_id = $this->get('MTP_user_id'); |
|
96 | + return empty($user_id) ? get_current_user_id() : $user_id; |
|
97 | 97 | } |
98 | 98 | |
99 | 99 | |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | * @return int |
117 | 117 | */ |
118 | 118 | public function count_events() { |
119 | - return $this->count_related( 'Event' ); |
|
119 | + return $this->count_related('Event'); |
|
120 | 120 | } |
121 | 121 | |
122 | 122 | |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | * @return string |
127 | 127 | */ |
128 | 128 | public function name() { |
129 | - return $this->get( 'MTP_name' ); |
|
129 | + return $this->get('MTP_name'); |
|
130 | 130 | } |
131 | 131 | |
132 | 132 | |
@@ -136,7 +136,7 @@ discard block |
||
136 | 136 | * @return string |
137 | 137 | */ |
138 | 138 | public function description() { |
139 | - return $this->get( 'MTP_description' ); |
|
139 | + return $this->get('MTP_description'); |
|
140 | 140 | } |
141 | 141 | |
142 | 142 | |
@@ -146,8 +146,8 @@ discard block |
||
146 | 146 | * @param array $query_params like EEM_Base::get_all() |
147 | 147 | * @return EE_Message_Template[] |
148 | 148 | */ |
149 | - public function message_templates( $query_params = array() ) { |
|
150 | - return $this->get_many_related( 'Message_Template', $query_params ); |
|
149 | + public function message_templates($query_params = array()) { |
|
150 | + return $this->get_many_related('Message_Template', $query_params); |
|
151 | 151 | } |
152 | 152 | |
153 | 153 | |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | * @return string |
159 | 159 | */ |
160 | 160 | public function messenger() { |
161 | - return $this->get( 'MTP_messenger' ); |
|
161 | + return $this->get('MTP_messenger'); |
|
162 | 162 | } |
163 | 163 | |
164 | 164 | |
@@ -175,10 +175,10 @@ discard block |
||
175 | 175 | public function messenger_obj() { |
176 | 176 | $messenger = $this->messenger(); |
177 | 177 | try { |
178 | - $messenger = EEH_MSG_Template::messenger_obj( $messenger ); |
|
179 | - } catch( EE_Error $e ) { |
|
178 | + $messenger = EEH_MSG_Template::messenger_obj($messenger); |
|
179 | + } catch (EE_Error $e) { |
|
180 | 180 | //if an exception was thrown then let's deactivate this message template group because it means there is no class for this messenger in this group. |
181 | - $this->set( 'MTP_is_active', false ); |
|
181 | + $this->set('MTP_is_active', false); |
|
182 | 182 | $this->save(); |
183 | 183 | return null; |
184 | 184 | } |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | * @return string |
195 | 195 | */ |
196 | 196 | public function message_type() { |
197 | - return $this->get( 'MTP_message_type' ); |
|
197 | + return $this->get('MTP_message_type'); |
|
198 | 198 | } |
199 | 199 | |
200 | 200 | |
@@ -212,10 +212,10 @@ discard block |
||
212 | 212 | public function message_type_obj() { |
213 | 213 | $message_type = $this->message_type(); |
214 | 214 | try { |
215 | - $message_type = EEH_MSG_Template::message_type_obj( $message_type ); |
|
216 | - } catch(EE_Error $e) { |
|
215 | + $message_type = EEH_MSG_Template::message_type_obj($message_type); |
|
216 | + } catch (EE_Error $e) { |
|
217 | 217 | //if an exception was thrown then let's deactivate this message template group because it means there is no class for the message type in this group. |
218 | - $this->set( 'MTP_is_active', false ); |
|
218 | + $this->set('MTP_is_active', false); |
|
219 | 219 | $this->save(); |
220 | 220 | return null; |
221 | 221 | } |
@@ -252,13 +252,13 @@ discard block |
||
252 | 252 | */ |
253 | 253 | public function context_templates() { |
254 | 254 | $mtps_arr = array(); |
255 | - $mtps = $this->get_many_related( 'Message_Template' ); |
|
256 | - if ( empty( $mtps ) ) { |
|
255 | + $mtps = $this->get_many_related('Message_Template'); |
|
256 | + if (empty($mtps)) { |
|
257 | 257 | return array(); |
258 | 258 | } |
259 | 259 | //note contexts could have CHECKBOX fields per context. So we return the objects indexed by context AND field. |
260 | - foreach ( $mtps as $mtp ) { |
|
261 | - $mtps_arr[ $mtp->get( 'MTP_context' ) ][ $mtp->get( 'MTP_template_field' ) ] = $mtp; |
|
260 | + foreach ($mtps as $mtp) { |
|
261 | + $mtps_arr[$mtp->get('MTP_context')][$mtp->get('MTP_template_field')] = $mtp; |
|
262 | 262 | } |
263 | 263 | return $mtps_arr; |
264 | 264 | } |
@@ -270,7 +270,7 @@ discard block |
||
270 | 270 | * @return boolean true if it is, false if it isn't |
271 | 271 | */ |
272 | 272 | public function is_global() { |
273 | - return $this->get( 'MTP_is_global' ); |
|
273 | + return $this->get('MTP_is_global'); |
|
274 | 274 | } |
275 | 275 | |
276 | 276 | |
@@ -280,7 +280,7 @@ discard block |
||
280 | 280 | * @return boolean true if it is, false if it isn't |
281 | 281 | */ |
282 | 282 | public function is_active() { |
283 | - return $this->get( 'MTP_is_active' ); |
|
283 | + return $this->get('MTP_is_active'); |
|
284 | 284 | } |
285 | 285 | |
286 | 286 | |
@@ -296,10 +296,10 @@ discard block |
||
296 | 296 | * @param bool $merged If TRUE then we don't return shortcodes indexed by field but instead an array of the unique shortcodes for all the given (or all) fields. |
297 | 297 | * @return mixed (array|bool) an array of shortcodes in the format array( '[shortcode] => 'label') OR FALSE if no shortcodes found. |
298 | 298 | */ |
299 | - public function get_shortcodes( $context, $fields = array(), $merged = FALSE ) { |
|
299 | + public function get_shortcodes($context, $fields = array(), $merged = FALSE) { |
|
300 | 300 | $messenger = $this->messenger(); |
301 | 301 | $message_type = $this->message_type(); |
302 | - return EEH_MSG_Template::get_shortcodes( $message_type, $messenger, $fields, $context, $merged ); |
|
302 | + return EEH_MSG_Template::get_shortcodes($message_type, $messenger, $fields, $context, $merged); |
|
303 | 303 | } |
304 | 304 | |
305 | 305 | |
@@ -340,7 +340,7 @@ discard block |
||
340 | 340 | * @return string |
341 | 341 | */ |
342 | 342 | public function get_template_pack_name() { |
343 | - return $this->get_extra_meta( 'MTP_template_pack', TRUE, 'default' ); |
|
343 | + return $this->get_extra_meta('MTP_template_pack', TRUE, 'default'); |
|
344 | 344 | } |
345 | 345 | |
346 | 346 | |
@@ -355,8 +355,8 @@ discard block |
||
355 | 355 | */ |
356 | 356 | public function get_template_pack() { |
357 | 357 | $pack_name = $this->get_template_pack_name(); |
358 | - EE_Registry::instance()->load_helper( 'MSG_Template' ); |
|
359 | - return EEH_MSG_Template::get_template_pack( $pack_name ); |
|
358 | + EE_Registry::instance()->load_helper('MSG_Template'); |
|
359 | + return EEH_MSG_Template::get_template_pack($pack_name); |
|
360 | 360 | } |
361 | 361 | |
362 | 362 | |
@@ -369,7 +369,7 @@ discard block |
||
369 | 369 | * @return string |
370 | 370 | */ |
371 | 371 | public function get_template_pack_variation() { |
372 | - return $this->get_extra_meta( 'MTP_variation', TRUE, 'default' ); |
|
372 | + return $this->get_extra_meta('MTP_variation', TRUE, 'default'); |
|
373 | 373 | } |
374 | 374 | |
375 | 375 | |
@@ -381,8 +381,8 @@ discard block |
||
381 | 381 | * @param string $template_pack_name What message template pack is assigned. |
382 | 382 | * @return int |
383 | 383 | */ |
384 | - public function set_template_pack_name( $template_pack_name ) { |
|
385 | - return $this->update_extra_meta( 'MTP_template_pack', $template_pack_name ); |
|
384 | + public function set_template_pack_name($template_pack_name) { |
|
385 | + return $this->update_extra_meta('MTP_template_pack', $template_pack_name); |
|
386 | 386 | } |
387 | 387 | |
388 | 388 | |
@@ -394,8 +394,8 @@ discard block |
||
394 | 394 | * @param string $variation What variation is being set on the message template group. |
395 | 395 | * @return int |
396 | 396 | */ |
397 | - public function set_template_pack_variation( $variation ) { |
|
398 | - return $this->update_extra_meta( 'MTP_variation', $variation ); |
|
397 | + public function set_template_pack_variation($variation) { |
|
398 | + return $this->update_extra_meta('MTP_variation', $variation); |
|
399 | 399 | } |
400 | 400 | } |
401 | 401 | //end EE_Message_Template_Group class |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | * @param array $props_n_values incoming values |
16 | 16 | * @param string $timezone incoming timezone (if not set the timezone set for the website will be |
17 | 17 | * used.) |
18 | - * @param array $date_formats incoming date_formats in an array where the first value is the |
|
18 | + * @param string[] $date_formats incoming date_formats in an array where the first value is the |
|
19 | 19 | * date_format and the second value is the time format |
20 | 20 | * @return EE_Payment |
21 | 21 | * @throws \EE_Error |
@@ -590,7 +590,7 @@ discard block |
||
590 | 590 | * Gets all the extra meta info on this payment |
591 | 591 | * |
592 | 592 | * @param array $query_params like EEM_Base::get_all |
593 | - * @return EE_Extra_Meta |
|
593 | + * @return EE_Base_Class[] |
|
594 | 594 | * @throws \EE_Error |
595 | 595 | */ |
596 | 596 | public function extra_meta( $query_params = array() ) { |
@@ -662,11 +662,11 @@ discard block |
||
662 | 662 | $redirect_url = str_replace( '?' . $querystring, '', $redirect_url ); |
663 | 663 | } |
664 | 664 | $form = EEH_HTML::nl( 1 ) |
665 | - . '<form method="' |
|
666 | - . $method |
|
667 | - . '" name="gateway_form" action="' |
|
668 | - . $redirect_url |
|
669 | - . '">'; |
|
665 | + . '<form method="' |
|
666 | + . $method |
|
667 | + . '" name="gateway_form" action="' |
|
668 | + . $redirect_url |
|
669 | + . '">'; |
|
670 | 670 | $form .= EEH_HTML::nl( 1 ) . $this->redirect_args_as_inputs(); |
671 | 671 | $form .= $inside_form_html; |
672 | 672 | $form .= EEH_HTML::nl( -1 ) . '</form>' . EEH_HTML::nl( -1 ); |
@@ -704,11 +704,11 @@ discard block |
||
704 | 704 | EE_Registry::instance()->load_helper( 'HTML' ); |
705 | 705 | foreach ( $args as $name => $value ) { |
706 | 706 | $html .= EEH_HTML::nl( 0 ) |
707 | - . '<input type="hidden" name="' |
|
708 | - . $name |
|
709 | - . '" value="' |
|
710 | - . esc_attr( $value ) |
|
711 | - . '"/>'; |
|
707 | + . '<input type="hidden" name="' |
|
708 | + . $name |
|
709 | + . '" value="' |
|
710 | + . esc_attr( $value ) |
|
711 | + . '"/>'; |
|
712 | 712 | } |
713 | 713 | } |
714 | 714 | return $html; |
@@ -1,5 +1,5 @@ discard block |
||
1 | -<?php if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) { |
|
2 | - exit( 'No direct script access allowed' ); |
|
1 | +<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
2 | + exit('No direct script access allowed'); |
|
3 | 3 | } |
4 | 4 | |
5 | 5 | /** |
@@ -20,9 +20,9 @@ discard block |
||
20 | 20 | * @return EE_Payment |
21 | 21 | * @throws \EE_Error |
22 | 22 | */ |
23 | - public static function new_instance( $props_n_values = array(), $timezone = null, $date_formats = array() ) { |
|
24 | - $has_object = parent::_check_for_object( $props_n_values, __CLASS__, $timezone, $date_formats ); |
|
25 | - return $has_object ? $has_object : new self( $props_n_values, false, $timezone, $date_formats ); |
|
23 | + public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) { |
|
24 | + $has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats); |
|
25 | + return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats); |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | |
@@ -34,8 +34,8 @@ discard block |
||
34 | 34 | * @return EE_Payment |
35 | 35 | * @throws \EE_Error |
36 | 36 | */ |
37 | - public static function new_instance_from_db( $props_n_values = array(), $timezone = null ) { |
|
38 | - return new self( $props_n_values, true, $timezone ); |
|
37 | + public static function new_instance_from_db($props_n_values = array(), $timezone = null) { |
|
38 | + return new self($props_n_values, true, $timezone); |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | |
@@ -47,8 +47,8 @@ discard block |
||
47 | 47 | * @param int $TXN_ID |
48 | 48 | * @throws \EE_Error |
49 | 49 | */ |
50 | - public function set_transaction_id( $TXN_ID = 0 ) { |
|
51 | - $this->set( 'TXN_ID', $TXN_ID ); |
|
50 | + public function set_transaction_id($TXN_ID = 0) { |
|
51 | + $this->set('TXN_ID', $TXN_ID); |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | * @throws \EE_Error |
61 | 61 | */ |
62 | 62 | public function transaction() { |
63 | - return $this->get_first_related( 'Transaction' ); |
|
63 | + return $this->get_first_related('Transaction'); |
|
64 | 64 | } |
65 | 65 | |
66 | 66 | |
@@ -72,8 +72,8 @@ discard block |
||
72 | 72 | * @param string $STS_ID |
73 | 73 | * @throws \EE_Error |
74 | 74 | */ |
75 | - public function set_status( $STS_ID = '' ) { |
|
76 | - $this->set( 'STS_ID', $STS_ID ); |
|
75 | + public function set_status($STS_ID = '') { |
|
76 | + $this->set('STS_ID', $STS_ID); |
|
77 | 77 | } |
78 | 78 | |
79 | 79 | |
@@ -85,8 +85,8 @@ discard block |
||
85 | 85 | * @param int $timestamp |
86 | 86 | * @throws \EE_Error |
87 | 87 | */ |
88 | - public function set_timestamp( $timestamp = 0 ) { |
|
89 | - $this->set( 'PAY_timestamp', $timestamp ); |
|
88 | + public function set_timestamp($timestamp = 0) { |
|
89 | + $this->set('PAY_timestamp', $timestamp); |
|
90 | 90 | } |
91 | 91 | |
92 | 92 | |
@@ -98,8 +98,8 @@ discard block |
||
98 | 98 | * @param string $PAY_source |
99 | 99 | * @throws \EE_Error |
100 | 100 | */ |
101 | - public function set_source( $PAY_source = '' ) { |
|
102 | - $this->set( 'PAY_source', $PAY_source ); |
|
101 | + public function set_source($PAY_source = '') { |
|
102 | + $this->set('PAY_source', $PAY_source); |
|
103 | 103 | } |
104 | 104 | |
105 | 105 | |
@@ -111,8 +111,8 @@ discard block |
||
111 | 111 | * @param float $amount |
112 | 112 | * @throws \EE_Error |
113 | 113 | */ |
114 | - public function set_amount( $amount = 0.00 ) { |
|
115 | - $this->set( 'PAY_amount', (float)$amount ); |
|
114 | + public function set_amount($amount = 0.00) { |
|
115 | + $this->set('PAY_amount', (float) $amount); |
|
116 | 116 | } |
117 | 117 | |
118 | 118 | |
@@ -124,8 +124,8 @@ discard block |
||
124 | 124 | * @param string $gateway_response |
125 | 125 | * @throws \EE_Error |
126 | 126 | */ |
127 | - public function set_gateway_response( $gateway_response = '' ) { |
|
128 | - $this->set( 'PAY_gateway_response', $gateway_response ); |
|
127 | + public function set_gateway_response($gateway_response = '') { |
|
128 | + $this->set('PAY_gateway_response', $gateway_response); |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | ), |
149 | 149 | '4.6.0' |
150 | 150 | ); |
151 | - return $this->payment_method() ? $this->payment_method()->name() : __( 'Unknown', 'event_espresso' ); |
|
151 | + return $this->payment_method() ? $this->payment_method()->name() : __('Unknown', 'event_espresso'); |
|
152 | 152 | } |
153 | 153 | |
154 | 154 | |
@@ -160,8 +160,8 @@ discard block |
||
160 | 160 | * @param string $txn_id_chq_nmbr |
161 | 161 | * @throws \EE_Error |
162 | 162 | */ |
163 | - public function set_txn_id_chq_nmbr( $txn_id_chq_nmbr = '' ) { |
|
164 | - $this->set( 'PAY_txn_id_chq_nmbr', $txn_id_chq_nmbr ); |
|
163 | + public function set_txn_id_chq_nmbr($txn_id_chq_nmbr = '') { |
|
164 | + $this->set('PAY_txn_id_chq_nmbr', $txn_id_chq_nmbr); |
|
165 | 165 | } |
166 | 166 | |
167 | 167 | |
@@ -173,8 +173,8 @@ discard block |
||
173 | 173 | * @param string $po_number |
174 | 174 | * @throws \EE_Error |
175 | 175 | */ |
176 | - public function set_po_number( $po_number = '' ) { |
|
177 | - $this->set( 'PAY_po_number', $po_number ); |
|
176 | + public function set_po_number($po_number = '') { |
|
177 | + $this->set('PAY_po_number', $po_number); |
|
178 | 178 | } |
179 | 179 | |
180 | 180 | |
@@ -186,8 +186,8 @@ discard block |
||
186 | 186 | * @param string $extra_accntng |
187 | 187 | * @throws \EE_Error |
188 | 188 | */ |
189 | - public function set_extra_accntng( $extra_accntng = '' ) { |
|
190 | - $this->set( 'PAY_extra_accntng', $extra_accntng ); |
|
189 | + public function set_extra_accntng($extra_accntng = '') { |
|
190 | + $this->set('PAY_extra_accntng', $extra_accntng); |
|
191 | 191 | } |
192 | 192 | |
193 | 193 | |
@@ -199,11 +199,11 @@ discard block |
||
199 | 199 | * @param bool $via_admin |
200 | 200 | * @throws \EE_Error |
201 | 201 | */ |
202 | - public function set_payment_made_via_admin( $via_admin = false ) { |
|
203 | - if ( $via_admin ) { |
|
204 | - $this->set( 'PAY_source', EEM_Payment_Method::scope_admin ); |
|
202 | + public function set_payment_made_via_admin($via_admin = false) { |
|
203 | + if ($via_admin) { |
|
204 | + $this->set('PAY_source', EEM_Payment_Method::scope_admin); |
|
205 | 205 | } else { |
206 | - $this->set( 'PAY_source', EEM_Payment_Method::scope_cart ); |
|
206 | + $this->set('PAY_source', EEM_Payment_Method::scope_cart); |
|
207 | 207 | } |
208 | 208 | } |
209 | 209 | |
@@ -216,13 +216,13 @@ discard block |
||
216 | 216 | * @param string|array $details |
217 | 217 | * @throws \EE_Error |
218 | 218 | */ |
219 | - public function set_details( $details = '' ) { |
|
220 | - if ( is_array( $details ) ) { |
|
221 | - array_walk_recursive( $details, array( $this, '_strip_all_tags_within_array' ) ); |
|
219 | + public function set_details($details = '') { |
|
220 | + if (is_array($details)) { |
|
221 | + array_walk_recursive($details, array($this, '_strip_all_tags_within_array')); |
|
222 | 222 | } else { |
223 | - $details = wp_strip_all_tags( $details ); |
|
223 | + $details = wp_strip_all_tags($details); |
|
224 | 224 | } |
225 | - $this->set( 'PAY_details', $details ); |
|
225 | + $this->set('PAY_details', $details); |
|
226 | 226 | } |
227 | 227 | |
228 | 228 | |
@@ -233,8 +233,8 @@ discard block |
||
233 | 233 | * @param string $redirect_url |
234 | 234 | * @throws \EE_Error |
235 | 235 | */ |
236 | - public function set_redirect_url( $redirect_url ) { |
|
237 | - $this->set( 'PAY_redirect_url', $redirect_url ); |
|
236 | + public function set_redirect_url($redirect_url) { |
|
237 | + $this->set('PAY_redirect_url', $redirect_url); |
|
238 | 238 | } |
239 | 239 | |
240 | 240 | |
@@ -245,8 +245,8 @@ discard block |
||
245 | 245 | * @param array $redirect_args |
246 | 246 | * @throws \EE_Error |
247 | 247 | */ |
248 | - public function set_redirect_args( $redirect_args ) { |
|
249 | - $this->set( 'PAY_redirect_args', $redirect_args ); |
|
248 | + public function set_redirect_args($redirect_args) { |
|
249 | + $this->set('PAY_redirect_args', $redirect_args); |
|
250 | 250 | } |
251 | 251 | |
252 | 252 | |
@@ -258,7 +258,7 @@ discard block |
||
258 | 258 | * @throws \EE_Error |
259 | 259 | */ |
260 | 260 | public function TXN_ID() { |
261 | - return $this->get( 'TXN_ID' ); |
|
261 | + return $this->get('TXN_ID'); |
|
262 | 262 | } |
263 | 263 | |
264 | 264 | |
@@ -270,7 +270,7 @@ discard block |
||
270 | 270 | * @throws \EE_Error |
271 | 271 | */ |
272 | 272 | public function status() { |
273 | - return $this->get( 'STS_ID' ); |
|
273 | + return $this->get('STS_ID'); |
|
274 | 274 | } |
275 | 275 | |
276 | 276 | |
@@ -282,7 +282,7 @@ discard block |
||
282 | 282 | * @throws \EE_Error |
283 | 283 | */ |
284 | 284 | public function STS_ID() { |
285 | - return $this->get( 'STS_ID' ); |
|
285 | + return $this->get('STS_ID'); |
|
286 | 286 | } |
287 | 287 | |
288 | 288 | |
@@ -296,8 +296,8 @@ discard block |
||
296 | 296 | * @return string |
297 | 297 | * @throws \EE_Error |
298 | 298 | */ |
299 | - public function timestamp( $dt_frmt = '', $tm_frmt = '' ) { |
|
300 | - return $this->get_datetime( 'PAY_timestamp', $dt_frmt, $tm_frmt ); |
|
299 | + public function timestamp($dt_frmt = '', $tm_frmt = '') { |
|
300 | + return $this->get_datetime('PAY_timestamp', $dt_frmt, $tm_frmt); |
|
301 | 301 | } |
302 | 302 | |
303 | 303 | |
@@ -309,7 +309,7 @@ discard block |
||
309 | 309 | * @throws \EE_Error |
310 | 310 | */ |
311 | 311 | public function source() { |
312 | - return $this->get( 'PAY_source' ); |
|
312 | + return $this->get('PAY_source'); |
|
313 | 313 | } |
314 | 314 | |
315 | 315 | |
@@ -322,7 +322,7 @@ discard block |
||
322 | 322 | * @throws \EE_Error |
323 | 323 | */ |
324 | 324 | public function amount() { |
325 | - return (float)$this->get( 'PAY_amount' ); |
|
325 | + return (float) $this->get('PAY_amount'); |
|
326 | 326 | } |
327 | 327 | |
328 | 328 | |
@@ -332,7 +332,7 @@ discard block |
||
332 | 332 | * @throws \EE_Error |
333 | 333 | */ |
334 | 334 | public function amount_no_code() { |
335 | - return $this->get_pretty( 'PAY_amount', 'no_currency_code' ); |
|
335 | + return $this->get_pretty('PAY_amount', 'no_currency_code'); |
|
336 | 336 | } |
337 | 337 | |
338 | 338 | |
@@ -344,7 +344,7 @@ discard block |
||
344 | 344 | * @throws \EE_Error |
345 | 345 | */ |
346 | 346 | public function gateway_response() { |
347 | - return $this->get( 'PAY_gateway_response' ); |
|
347 | + return $this->get('PAY_gateway_response'); |
|
348 | 348 | } |
349 | 349 | |
350 | 350 | |
@@ -356,7 +356,7 @@ discard block |
||
356 | 356 | * @throws \EE_Error |
357 | 357 | */ |
358 | 358 | public function txn_id_chq_nmbr() { |
359 | - return $this->get( 'PAY_txn_id_chq_nmbr' ); |
|
359 | + return $this->get('PAY_txn_id_chq_nmbr'); |
|
360 | 360 | } |
361 | 361 | |
362 | 362 | |
@@ -368,7 +368,7 @@ discard block |
||
368 | 368 | * @throws \EE_Error |
369 | 369 | */ |
370 | 370 | public function po_number() { |
371 | - return $this->get( 'PAY_po_number' ); |
|
371 | + return $this->get('PAY_po_number'); |
|
372 | 372 | } |
373 | 373 | |
374 | 374 | |
@@ -380,7 +380,7 @@ discard block |
||
380 | 380 | * @throws \EE_Error |
381 | 381 | */ |
382 | 382 | public function extra_accntng() { |
383 | - return $this->get( 'PAY_extra_accntng' ); |
|
383 | + return $this->get('PAY_extra_accntng'); |
|
384 | 384 | } |
385 | 385 | |
386 | 386 | |
@@ -392,7 +392,7 @@ discard block |
||
392 | 392 | * @throws \EE_Error |
393 | 393 | */ |
394 | 394 | public function payment_made_via_admin() { |
395 | - return ( $this->get( 'PAY_source' ) === EEM_Payment_Method::scope_admin ); |
|
395 | + return ($this->get('PAY_source') === EEM_Payment_Method::scope_admin); |
|
396 | 396 | } |
397 | 397 | |
398 | 398 | |
@@ -404,7 +404,7 @@ discard block |
||
404 | 404 | * @throws \EE_Error |
405 | 405 | */ |
406 | 406 | public function details() { |
407 | - return $this->get( 'PAY_details' ); |
|
407 | + return $this->get('PAY_details'); |
|
408 | 408 | } |
409 | 409 | |
410 | 410 | |
@@ -416,7 +416,7 @@ discard block |
||
416 | 416 | * @throws \EE_Error |
417 | 417 | */ |
418 | 418 | public function redirect_url() { |
419 | - return $this->get( 'PAY_redirect_url' ); |
|
419 | + return $this->get('PAY_redirect_url'); |
|
420 | 420 | } |
421 | 421 | |
422 | 422 | |
@@ -428,7 +428,7 @@ discard block |
||
428 | 428 | * @throws \EE_Error |
429 | 429 | */ |
430 | 430 | public function redirect_args() { |
431 | - return $this->get( 'PAY_redirect_args' ); |
|
431 | + return $this->get('PAY_redirect_args'); |
|
432 | 432 | } |
433 | 433 | |
434 | 434 | |
@@ -440,8 +440,8 @@ discard block |
||
440 | 440 | * @return void |
441 | 441 | * @throws \EE_Error |
442 | 442 | */ |
443 | - public function e_pretty_status( $show_icons = false ) { |
|
444 | - echo $this->pretty_status( $show_icons ); |
|
443 | + public function e_pretty_status($show_icons = false) { |
|
444 | + echo $this->pretty_status($show_icons); |
|
445 | 445 | } |
446 | 446 | |
447 | 447 | |
@@ -453,14 +453,14 @@ discard block |
||
453 | 453 | * @return string |
454 | 454 | * @throws \EE_Error |
455 | 455 | */ |
456 | - public function pretty_status( $show_icons = false ) { |
|
456 | + public function pretty_status($show_icons = false) { |
|
457 | 457 | $status = EEM_Status::instance()->localized_status( |
458 | - array( $this->STS_ID() => __( 'unknown', 'event_espresso' ) ), |
|
458 | + array($this->STS_ID() => __('unknown', 'event_espresso')), |
|
459 | 459 | false, |
460 | 460 | 'sentence' |
461 | 461 | ); |
462 | 462 | $icon = ''; |
463 | - switch ( $this->STS_ID() ) { |
|
463 | + switch ($this->STS_ID()) { |
|
464 | 464 | case EEM_Payment::status_id_approved: |
465 | 465 | $icon = $show_icons |
466 | 466 | ? '<span class="dashicons dashicons-yes ee-icon-size-24 green-text"></span>' |
@@ -482,7 +482,7 @@ discard block |
||
482 | 482 | : ''; |
483 | 483 | break; |
484 | 484 | } |
485 | - return $icon . $status[ $this->STS_ID() ]; |
|
485 | + return $icon.$status[$this->STS_ID()]; |
|
486 | 486 | } |
487 | 487 | |
488 | 488 | |
@@ -494,7 +494,7 @@ discard block |
||
494 | 494 | * @throws \EE_Error |
495 | 495 | */ |
496 | 496 | public function is_approved() { |
497 | - return $this->status_is( EEM_Payment::status_id_approved ); |
|
497 | + return $this->status_is(EEM_Payment::status_id_approved); |
|
498 | 498 | } |
499 | 499 | |
500 | 500 | |
@@ -508,7 +508,7 @@ discard block |
||
508 | 508 | * @return boolean whether the status of this payment equals the status id |
509 | 509 | * @throws \EE_Error |
510 | 510 | */ |
511 | - protected function status_is( $STS_ID ) { |
|
511 | + protected function status_is($STS_ID) { |
|
512 | 512 | return $STS_ID === $this->STS_ID() ? true : false; |
513 | 513 | } |
514 | 514 | |
@@ -521,7 +521,7 @@ discard block |
||
521 | 521 | * @throws \EE_Error |
522 | 522 | */ |
523 | 523 | public function is_pending() { |
524 | - return $this->status_is( EEM_Payment::status_id_pending ); |
|
524 | + return $this->status_is(EEM_Payment::status_id_pending); |
|
525 | 525 | } |
526 | 526 | |
527 | 527 | |
@@ -533,7 +533,7 @@ discard block |
||
533 | 533 | * @throws \EE_Error |
534 | 534 | */ |
535 | 535 | public function is_cancelled() { |
536 | - return $this->status_is( EEM_Payment::status_id_cancelled ); |
|
536 | + return $this->status_is(EEM_Payment::status_id_cancelled); |
|
537 | 537 | } |
538 | 538 | |
539 | 539 | |
@@ -545,7 +545,7 @@ discard block |
||
545 | 545 | * @throws \EE_Error |
546 | 546 | */ |
547 | 547 | public function is_declined() { |
548 | - return $this->status_is( EEM_Payment::status_id_declined ); |
|
548 | + return $this->status_is(EEM_Payment::status_id_declined); |
|
549 | 549 | } |
550 | 550 | |
551 | 551 | |
@@ -557,7 +557,7 @@ discard block |
||
557 | 557 | * @throws \EE_Error |
558 | 558 | */ |
559 | 559 | public function is_failed() { |
560 | - return $this->status_is( EEM_Payment::status_id_failed ); |
|
560 | + return $this->status_is(EEM_Payment::status_id_failed); |
|
561 | 561 | } |
562 | 562 | |
563 | 563 | |
@@ -581,7 +581,7 @@ discard block |
||
581 | 581 | * @throws \EE_Error |
582 | 582 | */ |
583 | 583 | public function status_obj() { |
584 | - return $this->get_first_related( 'Status' ); |
|
584 | + return $this->get_first_related('Status'); |
|
585 | 585 | } |
586 | 586 | |
587 | 587 | |
@@ -593,8 +593,8 @@ discard block |
||
593 | 593 | * @return EE_Extra_Meta |
594 | 594 | * @throws \EE_Error |
595 | 595 | */ |
596 | - public function extra_meta( $query_params = array() ) { |
|
597 | - return $this->get_many_related( 'Extra_Meta', $query_params ); |
|
596 | + public function extra_meta($query_params = array()) { |
|
597 | + return $this->get_many_related('Extra_Meta', $query_params); |
|
598 | 598 | } |
599 | 599 | |
600 | 600 | |
@@ -608,7 +608,7 @@ discard block |
||
608 | 608 | * @throws \EE_Error |
609 | 609 | */ |
610 | 610 | public function payment_method() { |
611 | - return $this->get_first_related( 'Payment_Method' ); |
|
611 | + return $this->get_first_related('Payment_Method'); |
|
612 | 612 | } |
613 | 613 | |
614 | 614 | |
@@ -626,18 +626,18 @@ discard block |
||
626 | 626 | * @return string html |
627 | 627 | * @throws \EE_Error |
628 | 628 | */ |
629 | - public function redirect_form( $inside_form_html = null ) { |
|
629 | + public function redirect_form($inside_form_html = null) { |
|
630 | 630 | $redirect_url = $this->redirect_url(); |
631 | - if ( ! empty( $redirect_url ) ) { |
|
631 | + if ( ! empty($redirect_url)) { |
|
632 | 632 | // what ? no inner form content? |
633 | - if ( $inside_form_html === null ) { |
|
633 | + if ($inside_form_html === null) { |
|
634 | 634 | $inside_form_html = EEH_HTML::p( |
635 | 635 | sprintf( |
636 | 636 | __( |
637 | 637 | 'If you are not automatically redirected to the payment website within 10 seconds... %1$s %2$s Click Here %3$s', |
638 | 638 | 'event_espresso' |
639 | 639 | ), |
640 | - EEH_HTML::br( 2 ), |
|
640 | + EEH_HTML::br(2), |
|
641 | 641 | '<input type="submit" value="', |
642 | 642 | '">' |
643 | 643 | ), |
@@ -653,22 +653,22 @@ discard block |
||
653 | 653 | ); |
654 | 654 | //if it's a GET request, we need to remove all the GET params in the querystring |
655 | 655 | //and put them into the form instead |
656 | - if ( $method === 'GET' ) { |
|
657 | - $querystring = parse_url( $redirect_url, PHP_URL_QUERY ); |
|
656 | + if ($method === 'GET') { |
|
657 | + $querystring = parse_url($redirect_url, PHP_URL_QUERY); |
|
658 | 658 | $get_params = null; |
659 | - parse_str( $querystring, $get_params ); |
|
660 | - $inside_form_html .= $this->_args_as_inputs( $get_params ); |
|
661 | - $redirect_url = str_replace( '?' . $querystring, '', $redirect_url ); |
|
659 | + parse_str($querystring, $get_params); |
|
660 | + $inside_form_html .= $this->_args_as_inputs($get_params); |
|
661 | + $redirect_url = str_replace('?'.$querystring, '', $redirect_url); |
|
662 | 662 | } |
663 | - $form = EEH_HTML::nl( 1 ) |
|
663 | + $form = EEH_HTML::nl(1) |
|
664 | 664 | . '<form method="' |
665 | 665 | . $method |
666 | 666 | . '" name="gateway_form" action="' |
667 | 667 | . $redirect_url |
668 | 668 | . '">'; |
669 | - $form .= EEH_HTML::nl( 1 ) . $this->redirect_args_as_inputs(); |
|
669 | + $form .= EEH_HTML::nl(1).$this->redirect_args_as_inputs(); |
|
670 | 670 | $form .= $inside_form_html; |
671 | - $form .= EEH_HTML::nl( -1 ) . '</form>' . EEH_HTML::nl( -1 ); |
|
671 | + $form .= EEH_HTML::nl( -1 ).'</form>'.EEH_HTML::nl( -1 ); |
|
672 | 672 | return $form; |
673 | 673 | } else { |
674 | 674 | return null; |
@@ -685,7 +685,7 @@ discard block |
||
685 | 685 | * @throws \EE_Error |
686 | 686 | */ |
687 | 687 | public function redirect_args_as_inputs() { |
688 | - return $this->_args_as_inputs( $this->redirect_args() ); |
|
688 | + return $this->_args_as_inputs($this->redirect_args()); |
|
689 | 689 | } |
690 | 690 | |
691 | 691 | |
@@ -697,15 +697,15 @@ discard block |
||
697 | 697 | * @param array $args key-value pairs |
698 | 698 | * @return string |
699 | 699 | */ |
700 | - protected function _args_as_inputs( $args ) { |
|
700 | + protected function _args_as_inputs($args) { |
|
701 | 701 | $html = ''; |
702 | - if ( $args !== null && is_array( $args ) ) { |
|
703 | - foreach ( $args as $name => $value ) { |
|
704 | - $html .= EEH_HTML::nl( 0 ) |
|
702 | + if ($args !== null && is_array($args)) { |
|
703 | + foreach ($args as $name => $value) { |
|
704 | + $html .= EEH_HTML::nl(0) |
|
705 | 705 | . '<input type="hidden" name="' |
706 | 706 | . $name |
707 | 707 | . '" value="' |
708 | - . esc_attr( $value ) |
|
708 | + . esc_attr($value) |
|
709 | 709 | . '"/>'; |
710 | 710 | } |
711 | 711 | } |
@@ -734,14 +734,14 @@ discard block |
||
734 | 734 | * @access private |
735 | 735 | * @param mixed $item |
736 | 736 | */ |
737 | - private function _strip_all_tags_within_array( &$item ) { |
|
738 | - if ( is_object( $item ) ) { |
|
739 | - $item = (array)$item; |
|
737 | + private function _strip_all_tags_within_array(&$item) { |
|
738 | + if (is_object($item)) { |
|
739 | + $item = (array) $item; |
|
740 | 740 | } |
741 | - if ( is_array( $item ) ) { |
|
742 | - array_walk_recursive( $item, array( $this, '_strip_all_tags_within_array' ) ); |
|
741 | + if (is_array($item)) { |
|
742 | + array_walk_recursive($item, array($this, '_strip_all_tags_within_array')); |
|
743 | 743 | } else { |
744 | - $item = wp_strip_all_tags( $item ); |
|
744 | + $item = wp_strip_all_tags($item); |
|
745 | 745 | } |
746 | 746 | } |
747 | 747 | |
@@ -758,7 +758,7 @@ discard block |
||
758 | 758 | $original_status = EEH_Array::is_set( |
759 | 759 | $this->_props_n_values_provided_in_constructor, |
760 | 760 | 'STS_ID', |
761 | - $this->get_model()->field_settings_for( 'STS_ID' )->get_default_value() |
|
761 | + $this->get_model()->field_settings_for('STS_ID')->get_default_value() |
|
762 | 762 | ); |
763 | 763 | $current_status = $this->status(); |
764 | 764 | if ( |
@@ -784,11 +784,11 @@ discard block |
||
784 | 784 | * @return mixed |
785 | 785 | * @throws \EE_Error |
786 | 786 | */ |
787 | - public function get_pretty( $field_name, $extra_cache_ref = null ) { |
|
788 | - if ( $field_name === 'PAY_gateway' ) { |
|
789 | - return $this->payment_method() ? $this->payment_method()->name() : __( 'Unknown', 'event_espresso' ); |
|
787 | + public function get_pretty($field_name, $extra_cache_ref = null) { |
|
788 | + if ($field_name === 'PAY_gateway') { |
|
789 | + return $this->payment_method() ? $this->payment_method()->name() : __('Unknown', 'event_espresso'); |
|
790 | 790 | } |
791 | - return $this->_get_cached_property( $field_name, true, $extra_cache_ref ); |
|
791 | + return $this->_get_cached_property($field_name, true, $extra_cache_ref); |
|
792 | 792 | } |
793 | 793 | |
794 | 794 | |
@@ -800,8 +800,8 @@ discard block |
||
800 | 800 | * @return EE_Registration_Payment[] |
801 | 801 | * @throws \EE_Error |
802 | 802 | */ |
803 | - public function registration_payments( $query_params = array() ) { |
|
804 | - return $this->get_many_related( 'Registration_Payment', $query_params ); |
|
803 | + public function registration_payments($query_params = array()) { |
|
804 | + return $this->get_many_related('Registration_Payment', $query_params); |
|
805 | 805 | } |
806 | 806 | |
807 | 807 |
@@ -802,7 +802,7 @@ discard block |
||
802 | 802 | * (either the question's ID or a question object) |
803 | 803 | * @param EE_Question|int $question |
804 | 804 | * @param bool $pretty_value |
805 | - * @return array|string if pretty_value= true, the result will always be a string |
|
805 | + * @return string if pretty_value= true, the result will always be a string |
|
806 | 806 | * (because the answer might be an array of answer values, so passing pretty_value=true |
807 | 807 | * will convert it into some kind of string) |
808 | 808 | */ |
@@ -901,7 +901,7 @@ discard block |
||
901 | 901 | /** |
902 | 902 | * Sets deleted |
903 | 903 | * @param boolean $deleted |
904 | - * @return boolean |
|
904 | + * @return boolean|null |
|
905 | 905 | */ |
906 | 906 | public function set_deleted($deleted) { |
907 | 907 | $this->set( 'REG_deleted', $deleted ); |
@@ -945,6 +945,7 @@ discard block |
||
945 | 945 | * |
946 | 946 | * @param int | EE_Datetime $DTT_OR_ID The datetime the registration is being checked against |
947 | 947 | * @param bool $check_approved This is used to indicate whether the caller wants can_checkin to also consider registration status as well as datetime access. |
948 | + * @param integer $DTT_OR_ID |
|
948 | 949 | * |
949 | 950 | * @return bool |
950 | 951 | */ |
@@ -1305,7 +1306,7 @@ discard block |
||
1305 | 1306 | * This grabs the payment method corresponding to the last payment made for the amount owing on the registration. |
1306 | 1307 | * Note: if there are no payments on the registration there will be no payment method returned. |
1307 | 1308 | * |
1308 | - * @return EE_Payment_Method|null |
|
1309 | + * @return EE_Base_Class|null |
|
1309 | 1310 | */ |
1310 | 1311 | public function payment_method() { |
1311 | 1312 | return EEM_Payment_Method::instance()->get_last_used_for_registration( $this ); |
@@ -1,5 +1,5 @@ discard block |
||
1 | -<?php if ( !defined( 'EVENT_ESPRESSO_VERSION' ) ) { |
|
2 | - exit( 'No direct script access allowed' ); |
|
1 | +<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
2 | + exit('No direct script access allowed'); |
|
3 | 3 | } |
4 | 4 | /** |
5 | 5 | * EE_Registration class |
@@ -41,9 +41,9 @@ discard block |
||
41 | 41 | * date_format and the second value is the time format |
42 | 42 | * @return EE_Registration |
43 | 43 | */ |
44 | - public static function new_instance( $props_n_values = array(), $timezone = null, $date_formats = array() ) { |
|
45 | - $has_object = parent::_check_for_object( $props_n_values, __CLASS__, $timezone, $date_formats ); |
|
46 | - return $has_object ? $has_object : new self( $props_n_values, false, $timezone, $date_formats ); |
|
44 | + public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) { |
|
45 | + $has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats); |
|
46 | + return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats); |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | |
@@ -54,8 +54,8 @@ discard block |
||
54 | 54 | * the website will be used. |
55 | 55 | * @return EE_Registration |
56 | 56 | */ |
57 | - public static function new_instance_from_db( $props_n_values = array(), $timezone = null ) { |
|
58 | - return new self( $props_n_values, TRUE, $timezone ); |
|
57 | + public static function new_instance_from_db($props_n_values = array(), $timezone = null) { |
|
58 | + return new self($props_n_values, TRUE, $timezone); |
|
59 | 59 | } |
60 | 60 | |
61 | 61 | |
@@ -66,8 +66,8 @@ discard block |
||
66 | 66 | * @access public |
67 | 67 | * @param int $EVT_ID Event ID |
68 | 68 | */ |
69 | - public function set_event( $EVT_ID = 0 ) { |
|
70 | - $this->set( 'EVT_ID', $EVT_ID ); |
|
69 | + public function set_event($EVT_ID = 0) { |
|
70 | + $this->set('EVT_ID', $EVT_ID); |
|
71 | 71 | } |
72 | 72 | |
73 | 73 | |
@@ -78,18 +78,18 @@ discard block |
||
78 | 78 | * @param mixed $field_value |
79 | 79 | * @param bool $use_default |
80 | 80 | */ |
81 | - public function set( $field_name, $field_value, $use_default = FALSE ) { |
|
82 | - switch( $field_name ) { |
|
81 | + public function set($field_name, $field_value, $use_default = FALSE) { |
|
82 | + switch ($field_name) { |
|
83 | 83 | case 'REG_code' : |
84 | - if ( ! empty( $field_value ) && $this->reg_code() == '' ) { |
|
85 | - $this->set_reg_code( $field_value, $use_default ); |
|
84 | + if ( ! empty($field_value) && $this->reg_code() == '') { |
|
85 | + $this->set_reg_code($field_value, $use_default); |
|
86 | 86 | } |
87 | 87 | break; |
88 | 88 | case 'STS_ID' : |
89 | - $this->set_status( $field_value, $use_default ); |
|
89 | + $this->set_status($field_value, $use_default); |
|
90 | 90 | break; |
91 | 91 | default : |
92 | - parent::set( $field_name, $field_value, $use_default ); |
|
92 | + parent::set($field_name, $field_value, $use_default); |
|
93 | 93 | } |
94 | 94 | } |
95 | 95 | |
@@ -106,30 +106,30 @@ discard block |
||
106 | 106 | * @param boolean $use_default |
107 | 107 | * @return bool |
108 | 108 | */ |
109 | - public function set_status( $new_STS_ID = NULL, $use_default = FALSE ) { |
|
109 | + public function set_status($new_STS_ID = NULL, $use_default = FALSE) { |
|
110 | 110 | // get current REG_Status |
111 | 111 | $old_STS_ID = $this->status_ID(); |
112 | 112 | // if status has changed |
113 | - if ( $old_STS_ID != $new_STS_ID ) { |
|
113 | + if ($old_STS_ID != $new_STS_ID) { |
|
114 | 114 | // TO approved |
115 | - if ( $new_STS_ID == EEM_Registration::status_id_approved ) { |
|
115 | + if ($new_STS_ID == EEM_Registration::status_id_approved) { |
|
116 | 116 | // reserve a space by incrementing ticket and datetime sold values |
117 | 117 | $this->_reserve_registration_space(); |
118 | - do_action( 'AHEE__EE_Registration__set_status__to_approved', $this, $old_STS_ID, $new_STS_ID ); |
|
118 | + do_action('AHEE__EE_Registration__set_status__to_approved', $this, $old_STS_ID, $new_STS_ID); |
|
119 | 119 | // OR FROM approved |
120 | - } else if ( $old_STS_ID == EEM_Registration::status_id_approved ) { |
|
120 | + } else if ($old_STS_ID == EEM_Registration::status_id_approved) { |
|
121 | 121 | // release a space by decrementing ticket and datetime sold values |
122 | 122 | $this->_release_registration_space(); |
123 | - do_action( 'AHEE__EE_Registration__set_status__from_approved', $this, $old_STS_ID, $new_STS_ID ); |
|
123 | + do_action('AHEE__EE_Registration__set_status__from_approved', $this, $old_STS_ID, $new_STS_ID); |
|
124 | 124 | } |
125 | 125 | // update status |
126 | - parent::set( 'STS_ID', $new_STS_ID, $use_default ); |
|
127 | - do_action( 'AHEE__EE_Registration__set_status__after_update', $this ); |
|
126 | + parent::set('STS_ID', $new_STS_ID, $use_default); |
|
127 | + do_action('AHEE__EE_Registration__set_status__after_update', $this); |
|
128 | 128 | return TRUE; |
129 | - }else{ |
|
129 | + } else { |
|
130 | 130 | //even though the old value matches the new value, it's still good to |
131 | 131 | //allow the parent set method to have a say |
132 | - parent::set( 'STS_ID', $new_STS_ID, $use_default ); |
|
132 | + parent::set('STS_ID', $new_STS_ID, $use_default); |
|
133 | 133 | return TRUE; |
134 | 134 | } |
135 | 135 | } |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | * @access public |
142 | 142 | */ |
143 | 143 | public function status_ID() { |
144 | - return $this->get( 'STS_ID' ); |
|
144 | + return $this->get('STS_ID'); |
|
145 | 145 | } |
146 | 146 | |
147 | 147 | |
@@ -166,12 +166,12 @@ discard block |
||
166 | 166 | * @param boolean $include_archived whether to include archived tickets or not. |
167 | 167 | * @return EE_Ticket |
168 | 168 | */ |
169 | - public function ticket( $include_archived = TRUE ) { |
|
169 | + public function ticket($include_archived = TRUE) { |
|
170 | 170 | $query_params = array(); |
171 | - if ( $include_archived ) { |
|
172 | - $query_params[ 'default_where_conditions' ] = 'none'; |
|
171 | + if ($include_archived) { |
|
172 | + $query_params['default_where_conditions'] = 'none'; |
|
173 | 173 | } |
174 | - return $this->get_first_related( 'Ticket', $query_params ); |
|
174 | + return $this->get_first_related('Ticket', $query_params); |
|
175 | 175 | } |
176 | 176 | |
177 | 177 | |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | * @return EE_Event |
182 | 182 | */ |
183 | 183 | public function event() { |
184 | - return $this->get_first_related( 'Event' ); |
|
184 | + return $this->get_first_related('Event'); |
|
185 | 185 | } |
186 | 186 | |
187 | 187 | |
@@ -195,7 +195,7 @@ discard block |
||
195 | 195 | */ |
196 | 196 | public function wp_user() { |
197 | 197 | $event = $this->event(); |
198 | - if ( $event instanceof EE_Event ) { |
|
198 | + if ($event instanceof EE_Event) { |
|
199 | 199 | return $event->wp_user(); |
200 | 200 | } |
201 | 201 | return 0; |
@@ -221,8 +221,8 @@ discard block |
||
221 | 221 | * @access public |
222 | 222 | * @param int $ATT_ID Attendee ID |
223 | 223 | */ |
224 | - public function set_attendee_id( $ATT_ID = 0 ) { |
|
225 | - $this->set( 'ATT_ID', $ATT_ID ); |
|
224 | + public function set_attendee_id($ATT_ID = 0) { |
|
225 | + $this->set('ATT_ID', $ATT_ID); |
|
226 | 226 | } |
227 | 227 | |
228 | 228 | |
@@ -233,8 +233,8 @@ discard block |
||
233 | 233 | * @access public |
234 | 234 | * @param int $TXN_ID Transaction ID |
235 | 235 | */ |
236 | - public function set_transaction_id( $TXN_ID = 0 ) { |
|
237 | - $this->set( 'TXN_ID', $TXN_ID ); |
|
236 | + public function set_transaction_id($TXN_ID = 0) { |
|
237 | + $this->set('TXN_ID', $TXN_ID); |
|
238 | 238 | } |
239 | 239 | |
240 | 240 | |
@@ -245,8 +245,8 @@ discard block |
||
245 | 245 | * @access public |
246 | 246 | * @param string $REG_session PHP Session ID |
247 | 247 | */ |
248 | - public function set_session( $REG_session = '' ) { |
|
249 | - $this->set( 'REG_session', $REG_session ); |
|
248 | + public function set_session($REG_session = '') { |
|
249 | + $this->set('REG_session', $REG_session); |
|
250 | 250 | } |
251 | 251 | |
252 | 252 | |
@@ -257,8 +257,8 @@ discard block |
||
257 | 257 | * @access public |
258 | 258 | * @param string $REG_url_link Registration URL Link |
259 | 259 | */ |
260 | - public function set_reg_url_link( $REG_url_link = '' ) { |
|
261 | - $this->set( 'REG_url_link', $REG_url_link ); |
|
260 | + public function set_reg_url_link($REG_url_link = '') { |
|
261 | + $this->set('REG_url_link', $REG_url_link); |
|
262 | 262 | } |
263 | 263 | |
264 | 264 | |
@@ -269,8 +269,8 @@ discard block |
||
269 | 269 | * @access public |
270 | 270 | * @param int $REG_count Primary Attendee |
271 | 271 | */ |
272 | - public function set_count( $REG_count = 1 ) { |
|
273 | - $this->set( 'REG_count', $REG_count ); |
|
272 | + public function set_count($REG_count = 1) { |
|
273 | + $this->set('REG_count', $REG_count); |
|
274 | 274 | } |
275 | 275 | |
276 | 276 | |
@@ -281,8 +281,8 @@ discard block |
||
281 | 281 | * @access public |
282 | 282 | * @param boolean $REG_group_size Group Registration |
283 | 283 | */ |
284 | - public function set_group_size( $REG_group_size = FALSE ) { |
|
285 | - $this->set( 'REG_group_size', $REG_group_size ); |
|
284 | + public function set_group_size($REG_group_size = FALSE) { |
|
285 | + $this->set('REG_group_size', $REG_group_size); |
|
286 | 286 | } |
287 | 287 | |
288 | 288 | |
@@ -365,8 +365,8 @@ discard block |
||
365 | 365 | * @access public |
366 | 366 | * @param mixed ( int or string ) $REG_date Registration Date - Unix timestamp or string representation of Date |
367 | 367 | */ |
368 | - public function set_reg_date( $REG_date = FALSE ) { |
|
369 | - $this->set( 'REG_date', $REG_date ); |
|
368 | + public function set_reg_date($REG_date = FALSE) { |
|
369 | + $this->set('REG_date', $REG_date); |
|
370 | 370 | } |
371 | 371 | |
372 | 372 | |
@@ -377,8 +377,8 @@ discard block |
||
377 | 377 | * @access public |
378 | 378 | * @param float $REG_final_price |
379 | 379 | */ |
380 | - public function set_final_price( $REG_final_price = 0.00 ) { |
|
381 | - $this->set( 'REG_final_price', $REG_final_price ); |
|
380 | + public function set_final_price($REG_final_price = 0.00) { |
|
381 | + $this->set('REG_final_price', $REG_final_price); |
|
382 | 382 | } |
383 | 383 | |
384 | 384 | |
@@ -389,8 +389,8 @@ discard block |
||
389 | 389 | * @access public |
390 | 390 | * @param float $REG_paid |
391 | 391 | */ |
392 | - public function set_paid( $REG_paid = 0.00 ) { |
|
393 | - $this->set( 'REG_paid', $REG_paid ); |
|
392 | + public function set_paid($REG_paid = 0.00) { |
|
393 | + $this->set('REG_paid', $REG_paid); |
|
394 | 394 | } |
395 | 395 | |
396 | 396 | |
@@ -401,8 +401,8 @@ discard block |
||
401 | 401 | * @access public |
402 | 402 | * @param boolean $REG_att_is_going Attendee Is Going |
403 | 403 | */ |
404 | - public function set_att_is_going( $REG_att_is_going = FALSE ) { |
|
405 | - $this->set( 'REG_att_is_going', $REG_att_is_going ); |
|
404 | + public function set_att_is_going($REG_att_is_going = FALSE) { |
|
405 | + $this->set('REG_att_is_going', $REG_att_is_going); |
|
406 | 406 | } |
407 | 407 | |
408 | 408 | |
@@ -412,7 +412,7 @@ discard block |
||
412 | 412 | * @return EE_Attendee |
413 | 413 | */ |
414 | 414 | public function attendee() { |
415 | - return $this->get_first_related( 'Attendee' ); |
|
415 | + return $this->get_first_related('Attendee'); |
|
416 | 416 | } |
417 | 417 | |
418 | 418 | |
@@ -422,7 +422,7 @@ discard block |
||
422 | 422 | * @access public |
423 | 423 | */ |
424 | 424 | public function event_ID() { |
425 | - return $this->get( 'EVT_ID' ); |
|
425 | + return $this->get('EVT_ID'); |
|
426 | 426 | } |
427 | 427 | |
428 | 428 | |
@@ -433,7 +433,7 @@ discard block |
||
433 | 433 | */ |
434 | 434 | public function event_name() { |
435 | 435 | $event = $this->event_obj(); |
436 | - if ( $event ) { |
|
436 | + if ($event) { |
|
437 | 437 | return $event->name(); |
438 | 438 | } else { |
439 | 439 | return NULL; |
@@ -447,7 +447,7 @@ discard block |
||
447 | 447 | * @return EE_Event |
448 | 448 | */ |
449 | 449 | public function event_obj() { |
450 | - return $this->get_first_related( 'Event' ); |
|
450 | + return $this->get_first_related('Event'); |
|
451 | 451 | } |
452 | 452 | |
453 | 453 | |
@@ -457,7 +457,7 @@ discard block |
||
457 | 457 | * @access public |
458 | 458 | */ |
459 | 459 | public function attendee_ID() { |
460 | - return $this->get( 'ATT_ID' ); |
|
460 | + return $this->get('ATT_ID'); |
|
461 | 461 | } |
462 | 462 | |
463 | 463 | |
@@ -467,7 +467,7 @@ discard block |
||
467 | 467 | * @access public |
468 | 468 | */ |
469 | 469 | public function session_ID() { |
470 | - return $this->get( 'REG_session' ); |
|
470 | + return $this->get('REG_session'); |
|
471 | 471 | } |
472 | 472 | |
473 | 473 | |
@@ -477,7 +477,7 @@ discard block |
||
477 | 477 | * @param string $messenger 'pdf' or 'html'. Default 'html'. |
478 | 478 | * @return string |
479 | 479 | */ |
480 | - public function receipt_url( $messenger = 'html' ) { |
|
480 | + public function receipt_url($messenger = 'html') { |
|
481 | 481 | |
482 | 482 | /** |
483 | 483 | * The below will be deprecated one version after this. We check first if there is a custom receipt template already in use on old system. If there is then we just return the standard url for it. |
@@ -485,12 +485,12 @@ discard block |
||
485 | 485 | * @since 4.5.0 |
486 | 486 | */ |
487 | 487 | $template_relative_path = 'modules/gateways/Invoice/lib/templates/receipt_body.template.php'; |
488 | - $has_custom = EEH_Template::locate_template( $template_relative_path , array(), TRUE, TRUE, TRUE ); |
|
488 | + $has_custom = EEH_Template::locate_template($template_relative_path, array(), TRUE, TRUE, TRUE); |
|
489 | 489 | |
490 | - if ( $has_custom ) { |
|
491 | - return add_query_arg( array( 'receipt' => 'true' ), $this->invoice_url( 'launch' ) ); |
|
490 | + if ($has_custom) { |
|
491 | + return add_query_arg(array('receipt' => 'true'), $this->invoice_url('launch')); |
|
492 | 492 | } |
493 | - return apply_filters( 'FHEE__EE_Registration__receipt_url__receipt_url', '', $this, $messenger, 'receipt' ); |
|
493 | + return apply_filters('FHEE__EE_Registration__receipt_url__receipt_url', '', $this, $messenger, 'receipt'); |
|
494 | 494 | } |
495 | 495 | |
496 | 496 | |
@@ -501,28 +501,28 @@ discard block |
||
501 | 501 | * @param string $messenger 'pdf' or 'html'. Default 'html'. |
502 | 502 | * @return string |
503 | 503 | */ |
504 | - public function invoice_url( $messenger = 'html' ) { |
|
504 | + public function invoice_url($messenger = 'html') { |
|
505 | 505 | /** |
506 | 506 | * The below will be deprecated one version after this. We check first if there is a custom invoice template already in use on old system. If there is then we just return the standard url for it. |
507 | 507 | * |
508 | 508 | * @since 4.5.0 |
509 | 509 | */ |
510 | 510 | $template_relative_path = 'modules/gateways/Invoice/lib/templates/invoice_body.template.php'; |
511 | - $has_custom = EEH_Template::locate_template( $template_relative_path , array(), TRUE, TRUE, TRUE ); |
|
511 | + $has_custom = EEH_Template::locate_template($template_relative_path, array(), TRUE, TRUE, TRUE); |
|
512 | 512 | |
513 | - if ( $has_custom ) { |
|
514 | - if ( $messenger == 'html' ) { |
|
515 | - return $this->invoice_url( 'launch' ); |
|
513 | + if ($has_custom) { |
|
514 | + if ($messenger == 'html') { |
|
515 | + return $this->invoice_url('launch'); |
|
516 | 516 | } |
517 | 517 | $route = $messenger == 'download' || $messenger == 'pdf' ? 'download_invoice' : 'launch_invoice'; |
518 | 518 | |
519 | - $query_args = array( 'ee' => $route, 'id' => $this->reg_url_link() ); |
|
520 | - if ( $messenger == 'html' ) { |
|
519 | + $query_args = array('ee' => $route, 'id' => $this->reg_url_link()); |
|
520 | + if ($messenger == 'html') { |
|
521 | 521 | $query_args['html'] = TRUE; |
522 | 522 | } |
523 | - return add_query_arg( $query_args, get_permalink( EE_Registry::instance()->CFG->core->thank_you_page_id ) ); |
|
523 | + return add_query_arg($query_args, get_permalink(EE_Registry::instance()->CFG->core->thank_you_page_id)); |
|
524 | 524 | } |
525 | - return apply_filters( 'FHEE__EE_Registration__invoice_url__invoice_url', '', $this, $messenger, 'invoice' ); |
|
525 | + return apply_filters('FHEE__EE_Registration__invoice_url__invoice_url', '', $this, $messenger, 'invoice'); |
|
526 | 526 | } |
527 | 527 | |
528 | 528 | |
@@ -535,7 +535,7 @@ discard block |
||
535 | 535 | * @throws \EE_Error |
536 | 536 | */ |
537 | 537 | public function reg_url_link() { |
538 | - return (string)$this->get( 'REG_url_link' ); |
|
538 | + return (string) $this->get('REG_url_link'); |
|
539 | 539 | } |
540 | 540 | |
541 | 541 | |
@@ -545,8 +545,8 @@ discard block |
||
545 | 545 | * @param string $type 'download','launch', or 'html' (default is 'launch') |
546 | 546 | * @return void |
547 | 547 | */ |
548 | - public function e_invoice_url( $type = 'launch' ) { |
|
549 | - echo $this->invoice_url( $type ); |
|
548 | + public function e_invoice_url($type = 'launch') { |
|
549 | + echo $this->invoice_url($type); |
|
550 | 550 | } |
551 | 551 | |
552 | 552 | |
@@ -566,7 +566,7 @@ discard block |
||
566 | 566 | * @return string |
567 | 567 | */ |
568 | 568 | public function payment_overview_url() { |
569 | - return add_query_arg( array( 'e_reg_url_link' => $this->reg_url_link(), 'step' => 'payment_options', 'revisit' => TRUE ), EE_Registry::instance()->CFG->core->reg_page_url() ); |
|
569 | + return add_query_arg(array('e_reg_url_link' => $this->reg_url_link(), 'step' => 'payment_options', 'revisit' => TRUE), EE_Registry::instance()->CFG->core->reg_page_url()); |
|
570 | 570 | } |
571 | 571 | |
572 | 572 | |
@@ -577,7 +577,7 @@ discard block |
||
577 | 577 | * @return string |
578 | 578 | */ |
579 | 579 | public function edit_attendee_information_url() { |
580 | - return add_query_arg( array( 'e_reg_url_link' => $this->reg_url_link(), 'step' => 'attendee_information', 'revisit' => TRUE ), EE_Registry::instance()->CFG->core->reg_page_url() ); |
|
580 | + return add_query_arg(array('e_reg_url_link' => $this->reg_url_link(), 'step' => 'attendee_information', 'revisit' => TRUE), EE_Registry::instance()->CFG->core->reg_page_url()); |
|
581 | 581 | } |
582 | 582 | |
583 | 583 | |
@@ -587,7 +587,7 @@ discard block |
||
587 | 587 | * @return string |
588 | 588 | */ |
589 | 589 | public function get_admin_edit_url() { |
590 | - return EEH_URL::add_query_args_and_nonce( array( 'page' => 'espresso_registrations', 'action' => 'view_registration', '_REG_ID' => $this->ID() ), admin_url( 'admin.php' ) ); |
|
590 | + return EEH_URL::add_query_args_and_nonce(array('page' => 'espresso_registrations', 'action' => 'view_registration', '_REG_ID' => $this->ID()), admin_url('admin.php')); |
|
591 | 591 | } |
592 | 592 | |
593 | 593 | |
@@ -597,7 +597,7 @@ discard block |
||
597 | 597 | * @access public |
598 | 598 | */ |
599 | 599 | public function is_primary_registrant() { |
600 | - return $this->get( 'REG_count' ) == 1 ? TRUE : FALSE; |
|
600 | + return $this->get('REG_count') == 1 ? TRUE : FALSE; |
|
601 | 601 | } |
602 | 602 | |
603 | 603 | |
@@ -606,12 +606,12 @@ discard block |
||
606 | 606 | * This returns the primary registration object for this registration group (which may be this object). |
607 | 607 | * @return EE_Registration |
608 | 608 | */ |
609 | - public function get_primary_registration() { |
|
610 | - if ( $this->is_primary_registrant() ) |
|
609 | + public function get_primary_registration() { |
|
610 | + if ($this->is_primary_registrant()) |
|
611 | 611 | return $this; |
612 | 612 | |
613 | 613 | //k reg_count !== 1 so let's get the EE_Registration object matching this txn_id and reg_count == 1 |
614 | - $primary_registrant = EEM_Registration::instance()->get_one( array( array('TXN_ID' => $this->transaction_ID(), 'REG_count' => 1 ) ) ); |
|
614 | + $primary_registrant = EEM_Registration::instance()->get_one(array(array('TXN_ID' => $this->transaction_ID(), 'REG_count' => 1))); |
|
615 | 615 | return $primary_registrant; |
616 | 616 | } |
617 | 617 | |
@@ -622,7 +622,7 @@ discard block |
||
622 | 622 | * @access public |
623 | 623 | */ |
624 | 624 | public function count() { |
625 | - return $this->get( 'REG_count' ); |
|
625 | + return $this->get('REG_count'); |
|
626 | 626 | } |
627 | 627 | |
628 | 628 | |
@@ -632,7 +632,7 @@ discard block |
||
632 | 632 | * @access public |
633 | 633 | */ |
634 | 634 | public function group_size() { |
635 | - return $this->get( 'REG_group_size' ); |
|
635 | + return $this->get('REG_group_size'); |
|
636 | 636 | } |
637 | 637 | |
638 | 638 | |
@@ -642,7 +642,7 @@ discard block |
||
642 | 642 | * @access public |
643 | 643 | */ |
644 | 644 | public function date() { |
645 | - return $this->get( 'REG_date' ); |
|
645 | + return $this->get('REG_date'); |
|
646 | 646 | } |
647 | 647 | |
648 | 648 | |
@@ -653,8 +653,8 @@ discard block |
||
653 | 653 | * @param string $time_format |
654 | 654 | * @return string |
655 | 655 | */ |
656 | - public function pretty_date( $date_format = NULL, $time_format = NULL ) { |
|
657 | - return $this->get_datetime( 'REG_date', $date_format, $time_format ); |
|
656 | + public function pretty_date($date_format = NULL, $time_format = NULL) { |
|
657 | + return $this->get_datetime('REG_date', $date_format, $time_format); |
|
658 | 658 | } |
659 | 659 | |
660 | 660 | |
@@ -667,7 +667,7 @@ discard block |
||
667 | 667 | * @return float |
668 | 668 | */ |
669 | 669 | public function final_price() { |
670 | - return $this->get( 'REG_final_price' ); |
|
670 | + return $this->get('REG_final_price'); |
|
671 | 671 | } |
672 | 672 | |
673 | 673 | |
@@ -678,7 +678,7 @@ discard block |
||
678 | 678 | * @return string |
679 | 679 | */ |
680 | 680 | public function pretty_final_price() { |
681 | - return $this->get_pretty( 'REG_final_price' ); |
|
681 | + return $this->get_pretty('REG_final_price'); |
|
682 | 682 | } |
683 | 683 | |
684 | 684 | |
@@ -689,7 +689,7 @@ discard block |
||
689 | 689 | * @return float |
690 | 690 | */ |
691 | 691 | public function paid() { |
692 | - return $this->get( 'REG_paid' ); |
|
692 | + return $this->get('REG_paid'); |
|
693 | 693 | } |
694 | 694 | |
695 | 695 | |
@@ -700,7 +700,7 @@ discard block |
||
700 | 700 | * @return float |
701 | 701 | */ |
702 | 702 | public function pretty_paid() { |
703 | - return $this->get_pretty( 'REG_paid' ); |
|
703 | + return $this->get_pretty('REG_paid'); |
|
704 | 704 | } |
705 | 705 | |
706 | 706 | |
@@ -712,11 +712,11 @@ discard block |
||
712 | 712 | * @param array $requires_payment |
713 | 713 | * @return bool |
714 | 714 | */ |
715 | - public function owes_monies_and_can_pay( $requires_payment = array()) { |
|
715 | + public function owes_monies_and_can_pay($requires_payment = array()) { |
|
716 | 716 | // these reg statuses require payment (if event is not free) |
717 | - $requires_payment = ! empty( $requires_payment ) ? $requires_payment : EEM_Registration::reg_statuses_that_allow_payment(); |
|
717 | + $requires_payment = ! empty($requires_payment) ? $requires_payment : EEM_Registration::reg_statuses_that_allow_payment(); |
|
718 | 718 | if ( |
719 | - in_array( $this->status_ID(), $requires_payment ) && |
|
719 | + in_array($this->status_ID(), $requires_payment) && |
|
720 | 720 | $this->final_price() != 0 && |
721 | 721 | $this->final_price() != $this->paid() |
722 | 722 | ) { |
@@ -733,8 +733,8 @@ discard block |
||
733 | 733 | * @param bool $show_icons |
734 | 734 | * @return void |
735 | 735 | */ |
736 | - public function e_pretty_status( $show_icons = FALSE ) { |
|
737 | - echo $this->pretty_status( $show_icons ); |
|
736 | + public function e_pretty_status($show_icons = FALSE) { |
|
737 | + echo $this->pretty_status($show_icons); |
|
738 | 738 | } |
739 | 739 | |
740 | 740 | |
@@ -745,10 +745,10 @@ discard block |
||
745 | 745 | * @param bool $show_icons |
746 | 746 | * @return string |
747 | 747 | */ |
748 | - public function pretty_status( $show_icons = FALSE ) { |
|
749 | - $status = EEM_Status::instance()->localized_status( array( $this->status_ID() => __( 'unknown', 'event_espresso' ) ), FALSE, 'sentence' ); |
|
748 | + public function pretty_status($show_icons = FALSE) { |
|
749 | + $status = EEM_Status::instance()->localized_status(array($this->status_ID() => __('unknown', 'event_espresso')), FALSE, 'sentence'); |
|
750 | 750 | $icon = ''; |
751 | - switch ( $this->status_ID() ) { |
|
751 | + switch ($this->status_ID()) { |
|
752 | 752 | case EEM_Registration::status_id_approved: |
753 | 753 | $icon = $show_icons ? '<span class="dashicons dashicons-star-filled ee-icon-size-16 green-text"></span>' : ''; |
754 | 754 | break; |
@@ -768,7 +768,7 @@ discard block |
||
768 | 768 | $icon = $show_icons ? '<span class="dashicons dashicons-no ee-icon-size-16 red-text"></span>' : ''; |
769 | 769 | break; |
770 | 770 | } |
771 | - return $icon . $status[ $this->status_ID() ]; |
|
771 | + return $icon.$status[$this->status_ID()]; |
|
772 | 772 | } |
773 | 773 | |
774 | 774 | |
@@ -778,7 +778,7 @@ discard block |
||
778 | 778 | * @access public |
779 | 779 | */ |
780 | 780 | public function att_is_going() { |
781 | - return $this->get( 'REG_att_is_going' ); |
|
781 | + return $this->get('REG_att_is_going'); |
|
782 | 782 | } |
783 | 783 | |
784 | 784 | |
@@ -788,8 +788,8 @@ discard block |
||
788 | 788 | * @param array $query_params like EEM_Base::get_all |
789 | 789 | * @return EE_Answer[] |
790 | 790 | */ |
791 | - public function answers( $query_params = NULL ) { |
|
792 | - return $this->get_many_related( 'Answer', $query_params ); |
|
791 | + public function answers($query_params = NULL) { |
|
792 | + return $this->get_many_related('Answer', $query_params); |
|
793 | 793 | } |
794 | 794 | |
795 | 795 | |
@@ -803,9 +803,9 @@ discard block |
||
803 | 803 | * (because the answer might be an array of answer values, so passing pretty_value=true |
804 | 804 | * will convert it into some kind of string) |
805 | 805 | */ |
806 | - public function answer_value_to_question( $question, $pretty_value=true ) { |
|
806 | + public function answer_value_to_question($question, $pretty_value = true) { |
|
807 | 807 | $question_id = EEM_Question::instance()->ensure_is_ID($question); |
808 | - return EEM_Answer::instance()->get_answer_value_to_question($this,$question_id,$pretty_value); |
|
808 | + return EEM_Answer::instance()->get_answer_value_to_question($this, $question_id, $pretty_value); |
|
809 | 809 | } |
810 | 810 | |
811 | 811 | |
@@ -818,13 +818,13 @@ discard block |
||
818 | 818 | */ |
819 | 819 | public function question_groups() { |
820 | 820 | $question_groups = array(); |
821 | - if ( $this->event() instanceof EE_Event ) { |
|
821 | + if ($this->event() instanceof EE_Event) { |
|
822 | 822 | $question_groups = $this->event()->question_groups( |
823 | 823 | array( |
824 | 824 | array( |
825 | 825 | 'Event_Question_Group.EQG_primary' => $this->count() == 1 ? true : false |
826 | 826 | ), |
827 | - 'order_by' => array( 'QSG_order' => 'ASC' ) |
|
827 | + 'order_by' => array('QSG_order' => 'ASC') |
|
828 | 828 | ) |
829 | 829 | ); |
830 | 830 | } |
@@ -841,7 +841,7 @@ discard block |
||
841 | 841 | */ |
842 | 842 | public function count_question_groups() { |
843 | 843 | $qg_count = 0; |
844 | - if ( $this->event() instanceof EE_Event ) { |
|
844 | + if ($this->event() instanceof EE_Event) { |
|
845 | 845 | $qg_count = $this->event()->count_related( |
846 | 846 | 'Question_Group', |
847 | 847 | array( |
@@ -862,7 +862,7 @@ discard block |
||
862 | 862 | * @return string |
863 | 863 | */ |
864 | 864 | public function reg_date() { |
865 | - return $this->get_datetime( 'REG_date' ); |
|
865 | + return $this->get_datetime('REG_date'); |
|
866 | 866 | } |
867 | 867 | |
868 | 868 | |
@@ -874,7 +874,7 @@ discard block |
||
874 | 874 | * @return EE_Datetime_Ticket |
875 | 875 | */ |
876 | 876 | public function datetime_ticket() { |
877 | - return $this->get_first_related( 'Datetime_Ticket' ); |
|
877 | + return $this->get_first_related('Datetime_Ticket'); |
|
878 | 878 | } |
879 | 879 | |
880 | 880 | |
@@ -884,15 +884,15 @@ discard block |
||
884 | 884 | * @param EE_Datetime_Ticket $datetime_ticket |
885 | 885 | * @return EE_Datetime_Ticket |
886 | 886 | */ |
887 | - public function set_datetime_ticket( $datetime_ticket ) { |
|
888 | - return $this->_add_relation_to( $datetime_ticket, 'Datetime_Ticket' ); |
|
887 | + public function set_datetime_ticket($datetime_ticket) { |
|
888 | + return $this->_add_relation_to($datetime_ticket, 'Datetime_Ticket'); |
|
889 | 889 | } |
890 | 890 | /** |
891 | 891 | * Gets deleted |
892 | 892 | * @return boolean |
893 | 893 | */ |
894 | 894 | public function deleted() { |
895 | - return $this->get( 'REG_deleted' ); |
|
895 | + return $this->get('REG_deleted'); |
|
896 | 896 | } |
897 | 897 | |
898 | 898 | /** |
@@ -901,7 +901,7 @@ discard block |
||
901 | 901 | * @return boolean |
902 | 902 | */ |
903 | 903 | public function set_deleted($deleted) { |
904 | - $this->set( 'REG_deleted', $deleted ); |
|
904 | + $this->set('REG_deleted', $deleted); |
|
905 | 905 | } |
906 | 906 | |
907 | 907 | |
@@ -911,7 +911,7 @@ discard block |
||
911 | 911 | * @return EE_Status |
912 | 912 | */ |
913 | 913 | public function status_obj() { |
914 | - return $this->get_first_related( 'Status' ); |
|
914 | + return $this->get_first_related('Status'); |
|
915 | 915 | } |
916 | 916 | |
917 | 917 | |
@@ -922,7 +922,7 @@ discard block |
||
922 | 922 | * @return int |
923 | 923 | */ |
924 | 924 | public function count_checkins() { |
925 | - return $this->get_model()->count_related( $this, 'Checkin' ); |
|
925 | + return $this->get_model()->count_related($this, 'Checkin'); |
|
926 | 926 | } |
927 | 927 | |
928 | 928 | |
@@ -932,7 +932,7 @@ discard block |
||
932 | 932 | * @return int |
933 | 933 | */ |
934 | 934 | public function count_checkins_not_checkedout() { |
935 | - return $this->get_model()->count_related( $this, 'Checkin', array( array( 'CHK_in' => 1 ) ) ); |
|
935 | + return $this->get_model()->count_related($this, 'Checkin', array(array('CHK_in' => 1))); |
|
936 | 936 | } |
937 | 937 | |
938 | 938 | |
@@ -945,20 +945,20 @@ discard block |
||
945 | 945 | * |
946 | 946 | * @return bool |
947 | 947 | */ |
948 | - public function can_checkin( $DTT_OR_ID, $check_approved = TRUE ) { |
|
949 | - $DTT_ID = EEM_Datetime::instance()->ensure_is_ID( $DTT_OR_ID ); |
|
948 | + public function can_checkin($DTT_OR_ID, $check_approved = TRUE) { |
|
949 | + $DTT_ID = EEM_Datetime::instance()->ensure_is_ID($DTT_OR_ID); |
|
950 | 950 | |
951 | 951 | //first check registration status |
952 | - if ( ( $check_approved && ! $this->is_approved() ) || ! $DTT_ID ) { |
|
952 | + if (($check_approved && ! $this->is_approved()) || ! $DTT_ID) { |
|
953 | 953 | return false; |
954 | 954 | } |
955 | 955 | //is there a datetime ticket that matches this dtt_ID? |
956 | - if ( ! ( EEM_Datetime_Ticket::instance()->exists( array( array( 'TKT_ID' => $this->get('TKT_ID' ), 'DTT_ID' => $DTT_ID ) ) ) ) ) { |
|
956 | + if ( ! (EEM_Datetime_Ticket::instance()->exists(array(array('TKT_ID' => $this->get('TKT_ID'), 'DTT_ID' => $DTT_ID))))) { |
|
957 | 957 | return false; |
958 | 958 | } |
959 | 959 | |
960 | 960 | //final check is against TKT_uses |
961 | - return $this->verify_can_checkin_against_TKT_uses( $DTT_ID ); |
|
961 | + return $this->verify_can_checkin_against_TKT_uses($DTT_ID); |
|
962 | 962 | } |
963 | 963 | |
964 | 964 | |
@@ -971,10 +971,10 @@ discard block |
||
971 | 971 | * @param int | EE_Datetime $DTT_OR_ID The datetime the registration is being checked against |
972 | 972 | * @return bool true means can checkin. false means cannot checkin. |
973 | 973 | */ |
974 | - public function verify_can_checkin_against_TKT_uses( $DTT_OR_ID ) { |
|
975 | - $DTT_ID = EEM_Datetime::instance()->ensure_is_ID( $DTT_OR_ID ); |
|
974 | + public function verify_can_checkin_against_TKT_uses($DTT_OR_ID) { |
|
975 | + $DTT_ID = EEM_Datetime::instance()->ensure_is_ID($DTT_OR_ID); |
|
976 | 976 | |
977 | - if ( ! $DTT_ID ) { |
|
977 | + if ( ! $DTT_ID) { |
|
978 | 978 | return false; |
979 | 979 | } |
980 | 980 | |
@@ -982,23 +982,23 @@ discard block |
||
982 | 982 | |
983 | 983 | // if max uses is not set or equals infinity then return true cause its not a factor for whether user can check-in |
984 | 984 | // or not. |
985 | - if ( ! $max_uses || $max_uses === EE_INF ) { |
|
985 | + if ( ! $max_uses || $max_uses === EE_INF) { |
|
986 | 986 | return true; |
987 | 987 | } |
988 | 988 | |
989 | 989 | //does this datetime have a checkin record? If so, then the dtt count has already been verified so we can just |
990 | 990 | //go ahead and toggle. |
991 | - if ( EEM_Checkin::instance()->exists( array( array( 'REG_ID' => $this->ID(), 'DTT_ID' => $DTT_ID ) ) ) ) { |
|
991 | + if (EEM_Checkin::instance()->exists(array(array('REG_ID' => $this->ID(), 'DTT_ID' => $DTT_ID)))) { |
|
992 | 992 | return true; |
993 | 993 | } |
994 | 994 | |
995 | 995 | //made it here so the last check is whether the number of checkins per unique datetime on this registration |
996 | 996 | //disallows further check-ins. |
997 | - $count_unique_dtt_checkins = EEM_Checkin::instance()->count( array( array( 'REG_ID' => $this->ID(), 'CHK_in' => true ) ), 'DTT_ID', true ); |
|
997 | + $count_unique_dtt_checkins = EEM_Checkin::instance()->count(array(array('REG_ID' => $this->ID(), 'CHK_in' => true)), 'DTT_ID', true); |
|
998 | 998 | // checkins have already reached their max number of uses |
999 | 999 | // so registrant can NOT checkin |
1000 | - if ( $count_unique_dtt_checkins >= $max_uses ) { |
|
1001 | - EE_Error::add_error( __( 'Check-in denied because number of datetime uses for the ticket has been reached or exceeded.', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__ ); |
|
1000 | + if ($count_unique_dtt_checkins >= $max_uses) { |
|
1001 | + EE_Error::add_error(__('Check-in denied because number of datetime uses for the ticket has been reached or exceeded.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__); |
|
1002 | 1002 | return false; |
1003 | 1003 | } |
1004 | 1004 | return true; |
@@ -1019,15 +1019,15 @@ discard block |
||
1019 | 1019 | * @param bool $verify If true then can_checkin() is used to verify whether the person can be checked in or not. Otherwise this forces change in checkin status. |
1020 | 1020 | * @return int|BOOL the chk_in status toggled to OR false if nothing got changed. |
1021 | 1021 | */ |
1022 | - public function toggle_checkin_status( $DTT_ID = null, $verify = false ) { |
|
1023 | - if ( empty( $DTT_ID ) ) { |
|
1022 | + public function toggle_checkin_status($DTT_ID = null, $verify = false) { |
|
1023 | + if (empty($DTT_ID)) { |
|
1024 | 1024 | $datetime = $this->get_related_primary_datetime(); |
1025 | 1025 | $DTT_ID = $datetime->ID(); |
1026 | 1026 | // verify the registration can checkin for the given DTT_ID |
1027 | - } elseif ( ! $this->can_checkin( $DTT_ID, $verify ) ) { |
|
1027 | + } elseif ( ! $this->can_checkin($DTT_ID, $verify)) { |
|
1028 | 1028 | EE_Error::add_error( |
1029 | 1029 | sprintf( |
1030 | - __( 'The given registration (ID:%1$d) can not be checked in to the given DTT_ID (%2$d), because the registration does not have access', 'event_espresso'), |
|
1030 | + __('The given registration (ID:%1$d) can not be checked in to the given DTT_ID (%2$d), because the registration does not have access', 'event_espresso'), |
|
1031 | 1031 | $this->ID(), |
1032 | 1032 | $DTT_ID |
1033 | 1033 | ), |
@@ -1041,8 +1041,8 @@ discard block |
||
1041 | 1041 | EE_Registration::checkin_status_out => EE_Registration::checkin_status_in |
1042 | 1042 | ); |
1043 | 1043 | //start by getting the current status so we know what status we'll be changing to. |
1044 | - $cur_status = $this->check_in_status_for_datetime( $DTT_ID, NULL ); |
|
1045 | - $status_to = $status_paths[ $cur_status ]; |
|
1044 | + $cur_status = $this->check_in_status_for_datetime($DTT_ID, NULL); |
|
1045 | + $status_to = $status_paths[$cur_status]; |
|
1046 | 1046 | // database only records true for checked IN or false for checked OUT |
1047 | 1047 | // no record ( null ) means checked in NEVER, but we obviously don't save that |
1048 | 1048 | $new_status = $status_to == EE_Registration::checkin_status_in ? true : false; |
@@ -1050,24 +1050,24 @@ discard block |
||
1050 | 1050 | // because we are keeping track of Check-ins over time. |
1051 | 1051 | // Eventually we'll probably want to show a list table |
1052 | 1052 | // for the individual Check-ins so that they can be managed. |
1053 | - $checkin = EE_Checkin::new_instance( array( |
|
1053 | + $checkin = EE_Checkin::new_instance(array( |
|
1054 | 1054 | 'REG_ID' => $this->ID(), |
1055 | 1055 | 'DTT_ID' => $DTT_ID, |
1056 | 1056 | 'CHK_in' => $new_status |
1057 | - ) ); |
|
1057 | + )); |
|
1058 | 1058 | // if the record could not be saved then return false |
1059 | - if ( $checkin->save() === 0 ) { |
|
1060 | - if ( WP_DEBUG ) { |
|
1059 | + if ($checkin->save() === 0) { |
|
1060 | + if (WP_DEBUG) { |
|
1061 | 1061 | global $wpdb; |
1062 | 1062 | $error = sprintf( |
1063 | - __( 'Registration check in update failed because of the following database error: %1$s%2$s', 'event_espresso' ), |
|
1063 | + __('Registration check in update failed because of the following database error: %1$s%2$s', 'event_espresso'), |
|
1064 | 1064 | '<br />', |
1065 | 1065 | $wpdb->last_error |
1066 | 1066 | ); |
1067 | 1067 | } else { |
1068 | - $error = __( 'Registration check in update failed because of an unknown database error', 'event_espresso' ); |
|
1068 | + $error = __('Registration check in update failed because of an unknown database error', 'event_espresso'); |
|
1069 | 1069 | } |
1070 | - EE_Error::add_error( $error, __FILE__, __FUNCTION__, __LINE__ ); |
|
1070 | + EE_Error::add_error($error, __FILE__, __FUNCTION__, __LINE__); |
|
1071 | 1071 | return false; |
1072 | 1072 | } |
1073 | 1073 | return $status_to; |
@@ -1091,19 +1091,19 @@ discard block |
||
1091 | 1091 | * @param EE_Checkin $checkin If present, we use the given checkin object rather than the dtt_id. |
1092 | 1092 | * @return int Integer representing Check-in status. |
1093 | 1093 | */ |
1094 | - public function check_in_status_for_datetime( $DTT_ID = 0, $checkin = NULL ) { |
|
1095 | - if ( empty( $DTT_ID ) && ! $checkin instanceof EE_Checkin ) { |
|
1094 | + public function check_in_status_for_datetime($DTT_ID = 0, $checkin = NULL) { |
|
1095 | + if (empty($DTT_ID) && ! $checkin instanceof EE_Checkin) { |
|
1096 | 1096 | $datetime = $this->get_related_primary_datetime(); |
1097 | - if ( ! $datetime instanceof EE_Datetime ) { |
|
1097 | + if ( ! $datetime instanceof EE_Datetime) { |
|
1098 | 1098 | return 0; |
1099 | 1099 | } |
1100 | 1100 | $DTT_ID = $datetime->ID(); |
1101 | 1101 | //verify the registration can checkin for the given DTT_ID |
1102 | 1102 | } |
1103 | 1103 | //get checkin object (if exists) |
1104 | - $checkin = $checkin instanceof EE_Checkin ? $checkin : $this->get_first_related( 'Checkin', array( array( 'DTT_ID' => $DTT_ID ), 'order_by' => array( 'CHK_timestamp' => 'DESC' ) ) ); |
|
1105 | - if ( $checkin instanceof EE_Checkin ) { |
|
1106 | - if ( $checkin->get( 'CHK_in' ) ) { |
|
1104 | + $checkin = $checkin instanceof EE_Checkin ? $checkin : $this->get_first_related('Checkin', array(array('DTT_ID' => $DTT_ID), 'order_by' => array('CHK_timestamp' => 'DESC'))); |
|
1105 | + if ($checkin instanceof EE_Checkin) { |
|
1106 | + if ($checkin->get('CHK_in')) { |
|
1107 | 1107 | return EE_Registration::checkin_status_in; //checked in |
1108 | 1108 | } else { |
1109 | 1109 | return EE_Registration::checkin_status_out; //had checked in but is now checked out. |
@@ -1121,28 +1121,28 @@ discard block |
||
1121 | 1121 | * @param bool $error This just flags that you want an error message returned. This is put in so that the error message can be customized with the attendee name. |
1122 | 1122 | * @return string internationalized message |
1123 | 1123 | */ |
1124 | - public function get_checkin_msg( $DTT_ID, $error = FALSE ) { |
|
1124 | + public function get_checkin_msg($DTT_ID, $error = FALSE) { |
|
1125 | 1125 | //let's get the attendee first so we can include the name of the attendee |
1126 | - $attendee = $this->get_first_related( 'Attendee' ); |
|
1127 | - if ( $attendee instanceof EE_Attendee ) { |
|
1128 | - if ( $error ) { |
|
1129 | - return sprintf( __( "%s's check-in status was not changed.", "event_espresso" ), $attendee->full_name() ); |
|
1126 | + $attendee = $this->get_first_related('Attendee'); |
|
1127 | + if ($attendee instanceof EE_Attendee) { |
|
1128 | + if ($error) { |
|
1129 | + return sprintf(__("%s's check-in status was not changed.", "event_espresso"), $attendee->full_name()); |
|
1130 | 1130 | } |
1131 | - $cur_status = $this->check_in_status_for_datetime( $DTT_ID ); |
|
1131 | + $cur_status = $this->check_in_status_for_datetime($DTT_ID); |
|
1132 | 1132 | //what is the status message going to be? |
1133 | - switch ( $cur_status ) { |
|
1133 | + switch ($cur_status) { |
|
1134 | 1134 | case EE_Registration::checkin_status_never : |
1135 | - return sprintf( __( "%s has been removed from Check-in records", "event_espresso" ), $attendee->full_name() ); |
|
1135 | + return sprintf(__("%s has been removed from Check-in records", "event_espresso"), $attendee->full_name()); |
|
1136 | 1136 | break; |
1137 | 1137 | case EE_Registration::checkin_status_in : |
1138 | - return sprintf( __( '%s has been checked in', 'event_espresso' ), $attendee->full_name() ); |
|
1138 | + return sprintf(__('%s has been checked in', 'event_espresso'), $attendee->full_name()); |
|
1139 | 1139 | break; |
1140 | 1140 | case EE_Registration::checkin_status_out : |
1141 | - return sprintf( __( '%s has been checked out', 'event_espresso' ), $attendee->full_name() ); |
|
1141 | + return sprintf(__('%s has been checked out', 'event_espresso'), $attendee->full_name()); |
|
1142 | 1142 | break; |
1143 | 1143 | } |
1144 | 1144 | } |
1145 | - return __( "The check-in status could not be determined.", "event_espresso" ); |
|
1145 | + return __("The check-in status could not be determined.", "event_espresso"); |
|
1146 | 1146 | } |
1147 | 1147 | |
1148 | 1148 | |
@@ -1152,7 +1152,7 @@ discard block |
||
1152 | 1152 | * @return EE_Transaction |
1153 | 1153 | */ |
1154 | 1154 | public function transaction() { |
1155 | - return $this->get_first_related( 'Transaction' ); |
|
1155 | + return $this->get_first_related('Transaction'); |
|
1156 | 1156 | } |
1157 | 1157 | |
1158 | 1158 | |
@@ -1163,7 +1163,7 @@ discard block |
||
1163 | 1163 | * @access public |
1164 | 1164 | */ |
1165 | 1165 | public function reg_code() { |
1166 | - return $this->get( 'REG_code' ); |
|
1166 | + return $this->get('REG_code'); |
|
1167 | 1167 | } |
1168 | 1168 | |
1169 | 1169 | |
@@ -1173,7 +1173,7 @@ discard block |
||
1173 | 1173 | * @access public |
1174 | 1174 | */ |
1175 | 1175 | public function transaction_ID() { |
1176 | - return $this->get( 'TXN_ID' ); |
|
1176 | + return $this->get('TXN_ID'); |
|
1177 | 1177 | } |
1178 | 1178 | |
1179 | 1179 | |
@@ -1182,7 +1182,7 @@ discard block |
||
1182 | 1182 | * @return int |
1183 | 1183 | */ |
1184 | 1184 | public function ticket_ID() { |
1185 | - return $this->get( 'TKT_ID' ); |
|
1185 | + return $this->get('TKT_ID'); |
|
1186 | 1186 | } |
1187 | 1187 | |
1188 | 1188 | |
@@ -1194,17 +1194,17 @@ discard block |
||
1194 | 1194 | * @param string $REG_code Registration Code |
1195 | 1195 | * @param boolean $use_default |
1196 | 1196 | */ |
1197 | - public function set_reg_code( $REG_code, $use_default = FALSE ) { |
|
1198 | - if ( empty( $REG_code )) { |
|
1199 | - EE_Error::add_error( __( 'REG_code can not be empty.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__ ); |
|
1197 | + public function set_reg_code($REG_code, $use_default = FALSE) { |
|
1198 | + if (empty($REG_code)) { |
|
1199 | + EE_Error::add_error(__('REG_code can not be empty.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__); |
|
1200 | 1200 | return; |
1201 | 1201 | } |
1202 | - if ( ! $this->reg_code() ) { |
|
1203 | - parent::set( 'REG_code', $REG_code, $use_default ); |
|
1202 | + if ( ! $this->reg_code()) { |
|
1203 | + parent::set('REG_code', $REG_code, $use_default); |
|
1204 | 1204 | } else { |
1205 | 1205 | EE_Error::doing_it_wrong( |
1206 | - __CLASS__ . '::' . __FUNCTION__, |
|
1207 | - __( 'Can not change a registration REG_code once it has been set.', 'event_espresso' ), |
|
1206 | + __CLASS__.'::'.__FUNCTION__, |
|
1207 | + __('Can not change a registration REG_code once it has been set.', 'event_espresso'), |
|
1208 | 1208 | '4.6.0' |
1209 | 1209 | ); |
1210 | 1210 | } |
@@ -1224,17 +1224,17 @@ discard block |
||
1224 | 1224 | * @return EE_Registration[] or empty array if this isn't a group registration. |
1225 | 1225 | */ |
1226 | 1226 | public function get_all_other_registrations_in_group() { |
1227 | - if ( $this->group_size() < 2 ) { |
|
1227 | + if ($this->group_size() < 2) { |
|
1228 | 1228 | return array(); |
1229 | 1229 | } |
1230 | 1230 | |
1231 | 1231 | $query[0] = array( |
1232 | 1232 | 'TXN_ID' => $this->transaction_ID(), |
1233 | - 'REG_ID' => array( '!=', $this->ID() ), |
|
1233 | + 'REG_ID' => array('!=', $this->ID()), |
|
1234 | 1234 | 'TKT_ID' => $this->ticket_ID() |
1235 | 1235 | ); |
1236 | 1236 | |
1237 | - $registrations = $this->get_model()->get_all( $query ); |
|
1237 | + $registrations = $this->get_model()->get_all($query); |
|
1238 | 1238 | return $registrations; |
1239 | 1239 | } |
1240 | 1240 | |
@@ -1243,14 +1243,14 @@ discard block |
||
1243 | 1243 | * @return string |
1244 | 1244 | */ |
1245 | 1245 | public function get_admin_details_link() { |
1246 | - EE_Registry::instance()->load_helper( 'URL' ); |
|
1246 | + EE_Registry::instance()->load_helper('URL'); |
|
1247 | 1247 | return EEH_URL::add_query_args_and_nonce( |
1248 | 1248 | array( |
1249 | 1249 | 'page' => 'espresso_registrations', |
1250 | 1250 | 'action' => 'view_registration', |
1251 | 1251 | '_REG_ID' => $this->ID() |
1252 | 1252 | ), |
1253 | - admin_url( 'admin.php' ) |
|
1253 | + admin_url('admin.php') |
|
1254 | 1254 | ); |
1255 | 1255 | } |
1256 | 1256 | |
@@ -1275,12 +1275,12 @@ discard block |
||
1275 | 1275 | * @return string |
1276 | 1276 | */ |
1277 | 1277 | public function get_admin_overview_link() { |
1278 | - EE_Registry::instance()->load_helper( 'URL' ); |
|
1278 | + EE_Registry::instance()->load_helper('URL'); |
|
1279 | 1279 | return EEH_URL::add_query_args_and_nonce( |
1280 | 1280 | array( |
1281 | 1281 | 'page' => 'espresso_registrations' |
1282 | 1282 | ), |
1283 | - admin_url( 'admin.php' ) |
|
1283 | + admin_url('admin.php') |
|
1284 | 1284 | ); |
1285 | 1285 | } |
1286 | 1286 | |
@@ -1289,8 +1289,8 @@ discard block |
||
1289 | 1289 | * @param array $query_params |
1290 | 1290 | * @return \EE_Registration[] |
1291 | 1291 | */ |
1292 | - public function payments( $query_params = array() ) { |
|
1293 | - return $this->get_many_related( 'Payment', $query_params ); |
|
1292 | + public function payments($query_params = array()) { |
|
1293 | + return $this->get_many_related('Payment', $query_params); |
|
1294 | 1294 | } |
1295 | 1295 | |
1296 | 1296 | |
@@ -1299,8 +1299,8 @@ discard block |
||
1299 | 1299 | * @param array $query_params |
1300 | 1300 | * @return \EE_Registration[] |
1301 | 1301 | */ |
1302 | - public function registration_payments( $query_params = array() ) { |
|
1303 | - return $this->get_many_related( 'Registration_Payment', $query_params ); |
|
1302 | + public function registration_payments($query_params = array()) { |
|
1303 | + return $this->get_many_related('Registration_Payment', $query_params); |
|
1304 | 1304 | } |
1305 | 1305 | |
1306 | 1306 | |
@@ -1311,7 +1311,7 @@ discard block |
||
1311 | 1311 | * @access public |
1312 | 1312 | */ |
1313 | 1313 | public function price_paid() { |
1314 | - EE_Error::doing_it_wrong( 'EE_Registration::price_paid()', __( 'This method is deprecated, please use EE_Registration::final_price() instead.', 'event_espresso' ), '4.7.0' ); |
|
1314 | + EE_Error::doing_it_wrong('EE_Registration::price_paid()', __('This method is deprecated, please use EE_Registration::final_price() instead.', 'event_espresso'), '4.7.0'); |
|
1315 | 1315 | return $this->final_price(); |
1316 | 1316 | } |
1317 | 1317 | |
@@ -1323,9 +1323,9 @@ discard block |
||
1323 | 1323 | * @access public |
1324 | 1324 | * @param float $REG_final_price |
1325 | 1325 | */ |
1326 | - public function set_price_paid( $REG_final_price = 0.00 ) { |
|
1327 | - EE_Error::doing_it_wrong( 'EE_Registration::set_price_paid()', __( 'This method is deprecated, please use EE_Registration::set_final_price() instead.', 'event_espresso' ), '4.7.0' ); |
|
1328 | - $this->set_final_price( $REG_final_price ); |
|
1326 | + public function set_price_paid($REG_final_price = 0.00) { |
|
1327 | + EE_Error::doing_it_wrong('EE_Registration::set_price_paid()', __('This method is deprecated, please use EE_Registration::set_final_price() instead.', 'event_espresso'), '4.7.0'); |
|
1328 | + $this->set_final_price($REG_final_price); |
|
1329 | 1329 | } |
1330 | 1330 | |
1331 | 1331 | |
@@ -1336,7 +1336,7 @@ discard block |
||
1336 | 1336 | * @return string |
1337 | 1337 | */ |
1338 | 1338 | public function pretty_price_paid() { |
1339 | - EE_Error::doing_it_wrong( 'EE_Registration::pretty_price_paid()', __( 'This method is deprecated, please use EE_Registration::pretty_final_price() instead.', 'event_espresso' ), '4.7.0' ); |
|
1339 | + EE_Error::doing_it_wrong('EE_Registration::pretty_price_paid()', __('This method is deprecated, please use EE_Registration::pretty_final_price() instead.', 'event_espresso'), '4.7.0'); |
|
1340 | 1340 | return $this->pretty_final_price(); |
1341 | 1341 | } |
1342 | 1342 | |
@@ -1350,7 +1350,7 @@ discard block |
||
1350 | 1350 | * @return EE_Payment_Method|null |
1351 | 1351 | */ |
1352 | 1352 | public function payment_method() { |
1353 | - return EEM_Payment_Method::instance()->get_last_used_for_registration( $this ); |
|
1353 | + return EEM_Payment_Method::instance()->get_last_used_for_registration($this); |
|
1354 | 1354 | } |
1355 | 1355 | |
1356 | 1356 |
@@ -197,7 +197,7 @@ discard block |
||
197 | 197 | * @access public |
198 | 198 | * @param EE_Ticket $ticket |
199 | 199 | * @param int $qty |
200 | - * @return TRUE on success, FALSE on fail |
|
200 | + * @return boolean on success, FALSE on fail |
|
201 | 201 | */ |
202 | 202 | public function add_ticket_to_cart( EE_Ticket $ticket, $qty = 1 ) { |
203 | 203 | EEH_Line_Item::add_ticket_purchase( $this->get_grand_total(), $ticket, $qty ); |
@@ -284,7 +284,7 @@ discard block |
||
284 | 284 | /** |
285 | 285 | * @remove ALL items from cart and delete total as well |
286 | 286 | * @access public |
287 | - * @return bool |
|
287 | + * @return integer |
|
288 | 288 | */ |
289 | 289 | public function delete_cart() { |
290 | 290 | EE_Registry::instance()->load_helper( 'Line_Item' ); |
@@ -313,7 +313,7 @@ discard block |
||
313 | 313 | * @save cart to session |
314 | 314 | * @access public |
315 | 315 | * @param bool $apply_taxes |
316 | - * @return TRUE on success, FALSE on fail |
|
316 | + * @return boolean on success, FALSE on fail |
|
317 | 317 | */ |
318 | 318 | public function save_cart( $apply_taxes = TRUE ) { |
319 | 319 | if ( $apply_taxes && $this->_grand_total instanceof EE_Line_Item ) { |
@@ -1,5 +1,5 @@ discard block |
||
1 | -<?php if (!defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed'); |
|
2 | -do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );/** |
|
1 | +<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed'); |
|
2 | +do_action('AHEE_log', __FILE__, __FUNCTION__, ''); /** |
|
3 | 3 | * |
4 | 4 | * Event Espresso |
5 | 5 | * |
@@ -67,24 +67,24 @@ discard block |
||
67 | 67 | * @param EE_Session $session |
68 | 68 | * @return \EE_Cart |
69 | 69 | */ |
70 | - public static function instance( EE_Line_Item $grand_total = null, EE_Session $session = null ) { |
|
71 | - if ( ! empty( $grand_total ) ){ |
|
72 | - self::$_instance = new self( $grand_total, $session ); |
|
70 | + public static function instance(EE_Line_Item $grand_total = null, EE_Session $session = null) { |
|
71 | + if ( ! empty($grand_total)) { |
|
72 | + self::$_instance = new self($grand_total, $session); |
|
73 | 73 | } |
74 | 74 | // or maybe retrieve an existing one ? |
75 | - if ( ! self::$_instance instanceof EE_Cart ) { |
|
75 | + if ( ! self::$_instance instanceof EE_Cart) { |
|
76 | 76 | // try getting the cart out of the session |
77 | 77 | $saved_cart = $session instanceof EE_Session ? $session->cart() : null; |
78 | - self::$_instance = $saved_cart instanceof EE_Cart ? $saved_cart : new self( $grand_total, $session ); |
|
79 | - unset( $saved_cart ); |
|
78 | + self::$_instance = $saved_cart instanceof EE_Cart ? $saved_cart : new self($grand_total, $session); |
|
79 | + unset($saved_cart); |
|
80 | 80 | } |
81 | 81 | // verify that cart is ok and grand total line item exists |
82 | - if ( ! self::$_instance instanceof EE_Cart || ! self::$_instance->_grand_total instanceof EE_Line_Item ) { |
|
83 | - self::$_instance = new self( $grand_total, $session ); |
|
82 | + if ( ! self::$_instance instanceof EE_Cart || ! self::$_instance->_grand_total instanceof EE_Line_Item) { |
|
83 | + self::$_instance = new self($grand_total, $session); |
|
84 | 84 | } |
85 | 85 | self::$_instance->get_grand_total(); |
86 | 86 | // once everything is all said and done, save the cart to the EE_Session |
87 | - add_action( 'shutdown', array( self::$_instance, 'save_cart' ), 90 ); |
|
87 | + add_action('shutdown', array(self::$_instance, 'save_cart'), 90); |
|
88 | 88 | return self::$_instance; |
89 | 89 | } |
90 | 90 | |
@@ -98,11 +98,11 @@ discard block |
||
98 | 98 | * @param EE_Session $session |
99 | 99 | * @return \EE_Cart |
100 | 100 | */ |
101 | - private function __construct( EE_Line_Item $grand_total = null, EE_Session $session = null ) { |
|
102 | - do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' ); |
|
103 | - $this->set_session( $session ); |
|
104 | - if ( $grand_total instanceof EE_Line_Item ) { |
|
105 | - $this->set_grand_total_line_item( $grand_total ); |
|
101 | + private function __construct(EE_Line_Item $grand_total = null, EE_Session $session = null) { |
|
102 | + do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
103 | + $this->set_session($session); |
|
104 | + if ($grand_total instanceof EE_Line_Item) { |
|
105 | + $this->set_grand_total_line_item($grand_total); |
|
106 | 106 | } |
107 | 107 | } |
108 | 108 | |
@@ -114,13 +114,13 @@ discard block |
||
114 | 114 | * @param EE_Session $session |
115 | 115 | * @return EE_Cart |
116 | 116 | */ |
117 | - public static function reset( EE_Line_Item $grand_total = null, EE_Session $session = null ) { |
|
118 | - remove_action( 'shutdown', array( self::$_instance, 'save_cart' ), 90 ); |
|
119 | - if ( $session instanceof EE_Session ) { |
|
117 | + public static function reset(EE_Line_Item $grand_total = null, EE_Session $session = null) { |
|
118 | + remove_action('shutdown', array(self::$_instance, 'save_cart'), 90); |
|
119 | + if ($session instanceof EE_Session) { |
|
120 | 120 | $session->reset_cart(); |
121 | 121 | } |
122 | 122 | self::$_instance = null; |
123 | - return self::instance( $grand_total, $session ); |
|
123 | + return self::instance($grand_total, $session); |
|
124 | 124 | } |
125 | 125 | |
126 | 126 | |
@@ -128,8 +128,8 @@ discard block |
||
128 | 128 | /** |
129 | 129 | * @param EE_Session $session |
130 | 130 | */ |
131 | - public function set_session( EE_Session $session = null ) { |
|
132 | - $this->_session = $session instanceof EE_Session ? $session : EE_Registry::instance()->load_core( 'Session' ); |
|
131 | + public function set_session(EE_Session $session = null) { |
|
132 | + $this->_session = $session instanceof EE_Session ? $session : EE_Registry::instance()->load_core('Session'); |
|
133 | 133 | } |
134 | 134 | |
135 | 135 | |
@@ -139,7 +139,7 @@ discard block |
||
139 | 139 | * know the grand total line item on it |
140 | 140 | * @param EE_Line_Item $line_item |
141 | 141 | */ |
142 | - public function set_grand_total_line_item( EE_Line_Item $line_item ) { |
|
142 | + public function set_grand_total_line_item(EE_Line_Item $line_item) { |
|
143 | 143 | $this->_grand_total = $line_item; |
144 | 144 | } |
145 | 145 | |
@@ -152,11 +152,11 @@ discard block |
||
152 | 152 | * @param EE_Session $session |
153 | 153 | * @return \EE_Cart |
154 | 154 | */ |
155 | - public static function get_cart_from_txn( EE_Transaction $transaction, EE_Session $session = null ) { |
|
155 | + public static function get_cart_from_txn(EE_Transaction $transaction, EE_Session $session = null) { |
|
156 | 156 | $grand_total = $transaction->total_line_item(); |
157 | 157 | $grand_total->get_items(); |
158 | 158 | $grand_total->tax_descendants(); |
159 | - return EE_Cart::instance( $grand_total, $session ); |
|
159 | + return EE_Cart::instance($grand_total, $session); |
|
160 | 160 | } |
161 | 161 | |
162 | 162 | |
@@ -165,7 +165,7 @@ discard block |
||
165 | 165 | * Creates the total line item, and ensures it has its 'tickets' and 'taxes' sub-items |
166 | 166 | * @return EE_Line_Item |
167 | 167 | */ |
168 | - private function _create_grand_total(){ |
|
168 | + private function _create_grand_total() { |
|
169 | 169 | $this->_grand_total = EEH_Line_Item::create_total_line_item(); |
170 | 170 | return $this->_grand_total; |
171 | 171 | } |
@@ -178,7 +178,7 @@ discard block |
||
178 | 178 | * @return \EE_Line_Item[] |
179 | 179 | */ |
180 | 180 | public function get_tickets() { |
181 | - return EEH_Line_Item::get_ticket_line_items( $this->_grand_total ); |
|
181 | + return EEH_Line_Item::get_ticket_line_items($this->_grand_total); |
|
182 | 182 | } |
183 | 183 | |
184 | 184 | |
@@ -191,11 +191,11 @@ discard block |
||
191 | 191 | */ |
192 | 192 | public function all_ticket_quantity_count() { |
193 | 193 | $tickets = $this->get_tickets(); |
194 | - if ( empty( $tickets )) { |
|
194 | + if (empty($tickets)) { |
|
195 | 195 | return 0; |
196 | 196 | } |
197 | 197 | $count = 0; |
198 | - foreach ( $tickets as $ticket ) { |
|
198 | + foreach ($tickets as $ticket) { |
|
199 | 199 | $count = $count + $ticket->get('LIN_quantity'); |
200 | 200 | } |
201 | 201 | return $count; |
@@ -207,8 +207,8 @@ discard block |
||
207 | 207 | * Gets all the tax line items |
208 | 208 | * @return \EE_Line_Item[] |
209 | 209 | */ |
210 | - public function get_taxes(){ |
|
211 | - return EEH_Line_Item::get_taxes_subtotal( $this->_grand_total )->children(); |
|
210 | + public function get_taxes() { |
|
211 | + return EEH_Line_Item::get_taxes_subtotal($this->_grand_total)->children(); |
|
212 | 212 | } |
213 | 213 | |
214 | 214 | |
@@ -217,7 +217,7 @@ discard block |
||
217 | 217 | * Gets the total line item (which is a parent of all other line items) on this cart |
218 | 218 | * @return EE_Line_Item |
219 | 219 | */ |
220 | - public function get_grand_total(){ |
|
220 | + public function get_grand_total() { |
|
221 | 221 | return $this->_grand_total instanceof EE_Line_Item ? $this->_grand_total : $this->_create_grand_total(); |
222 | 222 | } |
223 | 223 | |
@@ -230,8 +230,8 @@ discard block |
||
230 | 230 | * @param int $qty |
231 | 231 | * @return TRUE on success, FALSE on fail |
232 | 232 | */ |
233 | - public function add_ticket_to_cart( EE_Ticket $ticket, $qty = 1 ) { |
|
234 | - EEH_Line_Item::add_ticket_purchase( $this->get_grand_total(), $ticket, $qty ); |
|
233 | + public function add_ticket_to_cart(EE_Ticket $ticket, $qty = 1) { |
|
234 | + EEH_Line_Item::add_ticket_purchase($this->get_grand_total(), $ticket, $qty); |
|
235 | 235 | return $this->save_cart() ? TRUE : FALSE; |
236 | 236 | } |
237 | 237 | |
@@ -254,7 +254,7 @@ discard block |
||
254 | 254 | * @return float |
255 | 255 | */ |
256 | 256 | public function get_applied_taxes() { |
257 | - return EEH_Line_Item::ensure_taxes_applied( $this->_grand_total ); |
|
257 | + return EEH_Line_Item::ensure_taxes_applied($this->_grand_total); |
|
258 | 258 | } |
259 | 259 | |
260 | 260 | |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | * @return float |
266 | 266 | */ |
267 | 267 | public function get_cart_grand_total() { |
268 | - EEH_Line_Item::ensure_taxes_applied( $this->_grand_total ); |
|
268 | + EEH_Line_Item::ensure_taxes_applied($this->_grand_total); |
|
269 | 269 | return $this->get_grand_total()->total(); |
270 | 270 | } |
271 | 271 | |
@@ -278,8 +278,8 @@ discard block |
||
278 | 278 | */ |
279 | 279 | public function recalculate_all_cart_totals() { |
280 | 280 | $pre_tax_total = $this->get_cart_total_before_tax(); |
281 | - $taxes_total = EEH_Line_Item::ensure_taxes_applied( $this->_grand_total ); |
|
282 | - $this->_grand_total->set_total( $pre_tax_total + $taxes_total ); |
|
281 | + $taxes_total = EEH_Line_Item::ensure_taxes_applied($this->_grand_total); |
|
282 | + $this->_grand_total->set_total($pre_tax_total + $taxes_total); |
|
283 | 283 | $this->_grand_total->save_this_and_descendants_to_txn(); |
284 | 284 | return $this->get_grand_total()->total(); |
285 | 285 | } |
@@ -292,9 +292,9 @@ discard block |
||
292 | 292 | * @param array|bool|string $line_item_codes |
293 | 293 | * @return int on success, FALSE on fail |
294 | 294 | */ |
295 | - public function delete_items( $line_item_codes = FALSE ) { |
|
296 | - do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' ); |
|
297 | - return EEH_Line_Item::delete_items($this->get_grand_total(), $line_item_codes ); |
|
295 | + public function delete_items($line_item_codes = FALSE) { |
|
296 | + do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
297 | + return EEH_Line_Item::delete_items($this->get_grand_total(), $line_item_codes); |
|
298 | 298 | } |
299 | 299 | |
300 | 300 | |
@@ -305,9 +305,9 @@ discard block |
||
305 | 305 | * @return bool |
306 | 306 | */ |
307 | 307 | public function empty_cart() { |
308 | - do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' ); |
|
308 | + do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
309 | 309 | $this->_grand_total = $this->_create_grand_total(); |
310 | - return $this->save_cart( TRUE ); |
|
310 | + return $this->save_cart(TRUE); |
|
311 | 311 | } |
312 | 312 | |
313 | 313 | |
@@ -318,8 +318,8 @@ discard block |
||
318 | 318 | * @return bool |
319 | 319 | */ |
320 | 320 | public function delete_cart() { |
321 | - $deleted = EEH_Line_Item::delete_all_child_items( $this->_grand_total ); |
|
322 | - if ( $deleted ) { |
|
321 | + $deleted = EEH_Line_Item::delete_all_child_items($this->_grand_total); |
|
322 | + if ($deleted) { |
|
323 | 323 | $deleted += $this->_grand_total->delete(); |
324 | 324 | $this->_grand_total = null; |
325 | 325 | } |
@@ -334,17 +334,17 @@ discard block |
||
334 | 334 | * @param bool $apply_taxes |
335 | 335 | * @return TRUE on success, FALSE on fail |
336 | 336 | */ |
337 | - public function save_cart( $apply_taxes = TRUE ) { |
|
338 | - if ( $apply_taxes && $this->_grand_total instanceof EE_Line_Item ) { |
|
339 | - EEH_Line_Item::ensure_taxes_applied( $this->_grand_total ); |
|
337 | + public function save_cart($apply_taxes = TRUE) { |
|
338 | + if ($apply_taxes && $this->_grand_total instanceof EE_Line_Item) { |
|
339 | + EEH_Line_Item::ensure_taxes_applied($this->_grand_total); |
|
340 | 340 | //make sure we don't cache the transaction because it can get stale |
341 | - if( $this->_grand_total->get_one_from_cache( 'Transaction' ) instanceof EE_Transaction && |
|
342 | - $this->_grand_total->get_one_from_cache( 'Transaction' )->ID()) { |
|
343 | - $this->_grand_total->clear_cache( 'Transaction', null, true ); |
|
341 | + if ($this->_grand_total->get_one_from_cache('Transaction') instanceof EE_Transaction && |
|
342 | + $this->_grand_total->get_one_from_cache('Transaction')->ID()) { |
|
343 | + $this->_grand_total->clear_cache('Transaction', null, true); |
|
344 | 344 | } |
345 | 345 | } |
346 | - if ( $this->_session instanceof EE_Session ) { |
|
347 | - return $this->_session->set_cart( $this ); |
|
346 | + if ($this->_session instanceof EE_Session) { |
|
347 | + return $this->_session->set_cart($this); |
|
348 | 348 | } else { |
349 | 349 | return false; |
350 | 350 | } |
@@ -556,7 +556,7 @@ discard block |
||
556 | 556 | * @since 4.6.0 |
557 | 557 | * @global WPDB $wpdb |
558 | 558 | * |
559 | - * @return mixed null|int WP_user ID or NULL |
|
559 | + * @return integer|null null|int WP_user ID or NULL |
|
560 | 560 | */ |
561 | 561 | public static function get_default_creator_id() { |
562 | 562 | global $wpdb; |
@@ -701,6 +701,7 @@ discard block |
||
701 | 701 | * @access public |
702 | 702 | * @static |
703 | 703 | * @param string $table_name, without prefixed $wpdb->prefix |
704 | + * @param string $table_name |
|
704 | 705 | * @return array of database column names |
705 | 706 | */ |
706 | 707 | public static function get_fields_on_table( $table_name = NULL ) { |
@@ -207,7 +207,7 @@ discard block |
||
207 | 207 | if ( is_array( $hooks_to_fire_at_time ) ) { |
208 | 208 | foreach ( $hooks_to_fire_at_time as $hook_name => $hook_actions ) { |
209 | 209 | if ( isset( $ee_cron_tasks_to_remove[ $hook_name ] ) |
210 | - && is_array( $ee_cron_tasks_to_remove[ $hook_name ] ) |
|
210 | + && is_array( $ee_cron_tasks_to_remove[ $hook_name ] ) |
|
211 | 211 | ) { |
212 | 212 | unset( $crons[ $timestamp ][ $hook_name ] ); |
213 | 213 | } |
@@ -1124,14 +1124,14 @@ discard block |
||
1124 | 1124 | $QSG_ID = reset( $id_col ); |
1125 | 1125 | } else { |
1126 | 1126 | //ok so we didn't find it in the db either?? that's weird because we should have inserted it at the start of this method |
1127 | - EE_Log::instance()->log( |
|
1128 | - __FILE__, |
|
1129 | - __FUNCTION__, |
|
1130 | - sprintf( |
|
1131 | - __( 'Could not associate question %1$s to a question group because no system question group existed', 'event_espresso'), |
|
1132 | - $QST_ID ), |
|
1133 | - 'error' ); |
|
1134 | - continue; |
|
1127 | + EE_Log::instance()->log( |
|
1128 | + __FILE__, |
|
1129 | + __FUNCTION__, |
|
1130 | + sprintf( |
|
1131 | + __( 'Could not associate question %1$s to a question group because no system question group existed', 'event_espresso'), |
|
1132 | + $QST_ID ), |
|
1133 | + 'error' ); |
|
1134 | + continue; |
|
1135 | 1135 | } |
1136 | 1136 | } |
1137 | 1137 | |
@@ -1139,8 +1139,8 @@ discard block |
||
1139 | 1139 | $wpdb->insert( |
1140 | 1140 | EEH_Activation::ensure_table_name_has_prefix( 'esp_question_group_question' ), |
1141 | 1141 | array( 'QSG_ID' => $QSG_ID, |
1142 | - 'QST_ID' => $QST_ID, |
|
1143 | - 'QGQ_order' => ( $QSG_ID === 1 ) ? $order_for_group_1++ : $order_for_group_2++ |
|
1142 | + 'QST_ID' => $QST_ID, |
|
1143 | + 'QGQ_order' => ( $QSG_ID === 1 ) ? $order_for_group_1++ : $order_for_group_2++ |
|
1144 | 1144 | ), |
1145 | 1145 | array( '%d', '%d', '%d' ) |
1146 | 1146 | ); |
@@ -1678,8 +1678,8 @@ discard block |
||
1678 | 1678 | } |
1679 | 1679 | } |
1680 | 1680 | } |
1681 | - //also, let's make sure the "ee_config_option_names" wp option stays out by removing the action that adds it |
|
1682 | - remove_action( 'shutdown', array( EE_Config::instance(), 'shutdown' ), 10 ); |
|
1681 | + //also, let's make sure the "ee_config_option_names" wp option stays out by removing the action that adds it |
|
1682 | + remove_action( 'shutdown', array( EE_Config::instance(), 'shutdown' ), 10 ); |
|
1683 | 1683 | |
1684 | 1684 | if ( $remove_all && $espresso_db_update = get_option( 'espresso_db_update' )) { |
1685 | 1685 | $db_update_sans_ee4 = array(); |
@@ -464,7 +464,7 @@ discard block |
||
464 | 464 | $post_id = $wpdb->get_var("SELECT ID FROM {$wpdb->posts} WHERE post_content LIKE '%$shortcode_and_opening_bracket%' LIMIT 1"); |
465 | 465 | if($post_id){ |
466 | 466 | return get_post($post_id); |
467 | - }else{ |
|
467 | + } else{ |
|
468 | 468 | return NULL; |
469 | 469 | } |
470 | 470 | |
@@ -836,13 +836,13 @@ discard block |
||
836 | 836 | foreach( $current_data_migration_script->get_errors() as $error ){ |
837 | 837 | EE_Error::add_error($error, __FILE__, __FUNCTION__, __LINE__ ); |
838 | 838 | } |
839 | - }else{ |
|
839 | + } else{ |
|
840 | 840 | EE_Error::add_error( __( 'There were errors creating the Event Espresso database tables and Event Espresso has been deactivated. To view the errors, please enable WP_DEBUG in your wp-config.php file.', 'event_espresso' ) ); |
841 | 841 | } |
842 | 842 | return false; |
843 | 843 | } |
844 | 844 | EE_Data_Migration_Manager::instance()->update_current_database_state_to(); |
845 | - }else{ |
|
845 | + } else{ |
|
846 | 846 | EE_Error::add_error( __( 'Could not determine most up-to-date data migration script from which to pull database schema structure. So database is probably not setup properly', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__); |
847 | 847 | return false; |
848 | 848 | } |
@@ -1172,7 +1172,7 @@ discard block |
||
1172 | 1172 | if( ! EEM_Payment_Method::instance()->count_active( EEM_Payment_Method::scope_cart ) ){ |
1173 | 1173 | EE_Registry::instance()->load_lib( 'Payment_Method_Manager' ); |
1174 | 1174 | EE_Payment_Method_Manager::instance()->activate_a_payment_method_of_type( 'Invoice' ); |
1175 | - }else{ |
|
1175 | + } else{ |
|
1176 | 1176 | EEM_Payment_Method::instance()->verify_button_urls(); |
1177 | 1177 | } |
1178 | 1178 | } |
@@ -1679,7 +1679,7 @@ discard block |
||
1679 | 1679 | if( ! delete_option( $option_name ) ){ |
1680 | 1680 | $undeleted_options[] = $option_name; |
1681 | 1681 | } |
1682 | - }else{ |
|
1682 | + } else{ |
|
1683 | 1683 | $option_names_to_delete_from_wildcard = $wpdb->get_col( "SELECT option_name FROM $wpdb->options WHERE option_name LIKE '%$option_name%'" ); |
1684 | 1684 | foreach($option_names_to_delete_from_wildcard as $option_name_from_wildcard ){ |
1685 | 1685 | if( ! delete_option( $option_name_from_wildcard ) ){ |
@@ -1745,7 +1745,7 @@ discard block |
||
1745 | 1745 | $EZSQL_ERROR = $ezsql_error_cache; |
1746 | 1746 | if( empty( $new_error ) ){ |
1747 | 1747 | return TRUE; |
1748 | - }else{ |
|
1748 | + } else{ |
|
1749 | 1749 | return FALSE; |
1750 | 1750 | } |
1751 | 1751 | } |
@@ -1,4 +1,4 @@ discard block |
||
1 | -<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {exit('No direct script access allowed');} |
|
1 | +<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {exit('No direct script access allowed'); } |
|
2 | 2 | /** |
3 | 3 | * EEH_Activation Helper |
4 | 4 | * |
@@ -48,9 +48,9 @@ discard block |
||
48 | 48 | * @param $table_name |
49 | 49 | * @return string |
50 | 50 | */ |
51 | - public static function ensure_table_name_has_prefix( $table_name ) { |
|
51 | + public static function ensure_table_name_has_prefix($table_name) { |
|
52 | 52 | global $wpdb; |
53 | - return strpos( $table_name, $wpdb->prefix ) === 0 ? $table_name : $wpdb->prefix . $table_name; |
|
53 | + return strpos($table_name, $wpdb->prefix) === 0 ? $table_name : $wpdb->prefix.$table_name; |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | * @return boolean success, whether the database and folders are setup properly |
79 | 79 | * @throws \EE_Error |
80 | 80 | */ |
81 | - public static function initialize_db_and_folders(){ |
|
81 | + public static function initialize_db_and_folders() { |
|
82 | 82 | $good_filesystem = EEH_Activation::create_upload_directories(); |
83 | 83 | $good_db = EEH_Activation::create_database_tables(); |
84 | 84 | return $good_filesystem && $good_db; |
@@ -94,9 +94,9 @@ discard block |
||
94 | 94 | * |
95 | 95 | * @throws \EE_Error |
96 | 96 | */ |
97 | - public static function initialize_db_content(){ |
|
97 | + public static function initialize_db_content() { |
|
98 | 98 | //let's avoid doing all this logic repeatedly, especially when addons are requesting it |
99 | - if( EEH_Activation::$_initialized_db_content_already_in_this_request ) { |
|
99 | + if (EEH_Activation::$_initialized_db_content_already_in_this_request) { |
|
100 | 100 | return; |
101 | 101 | } |
102 | 102 | EEH_Activation::$_initialized_db_content_already_in_this_request = true; |
@@ -113,9 +113,9 @@ discard block |
||
113 | 113 | EEH_Activation::remove_cron_tasks(); |
114 | 114 | EEH_Activation::create_cron_tasks(); |
115 | 115 | // remove all TXN locks since that is being done via extra meta now |
116 | - delete_option( 'ee_locked_transactions' ); |
|
116 | + delete_option('ee_locked_transactions'); |
|
117 | 117 | //also, check for CAF default db content |
118 | - do_action( 'AHEE__EEH_Activation__initialize_db_content' ); |
|
118 | + do_action('AHEE__EEH_Activation__initialize_db_content'); |
|
119 | 119 | //also: EEM_Gateways::load_all_gateways() outputs a lot of success messages |
120 | 120 | //which users really won't care about on initial activation |
121 | 121 | EE_Error::overwrite_success(); |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | * @return array |
136 | 136 | * @throws \EE_Error |
137 | 137 | */ |
138 | - public static function get_cron_tasks( $which_to_include ) { |
|
138 | + public static function get_cron_tasks($which_to_include) { |
|
139 | 139 | $cron_tasks = apply_filters( |
140 | 140 | 'FHEE__EEH_Activation__get_cron_tasks', |
141 | 141 | array( |
@@ -144,16 +144,16 @@ discard block |
||
144 | 144 | 'AHEE__EE_Cron_Tasks__update_transaction_with_payment' => EEH_Activation::cron_task_no_longer_in_use, //there may have been a bug which prevented from these cron tasks from getting unscheduled, so we might want to remove these for a few updates |
145 | 145 | ) |
146 | 146 | ); |
147 | - if ( $which_to_include === 'old' ) { |
|
147 | + if ($which_to_include === 'old') { |
|
148 | 148 | $cron_tasks = array_filter( |
149 | 149 | $cron_tasks, |
150 | - function ( $value ) { |
|
150 | + function($value) { |
|
151 | 151 | return $value === EEH_Activation::cron_task_no_longer_in_use; |
152 | 152 | } |
153 | 153 | ); |
154 | - } elseif ( $which_to_include === 'current' ) { |
|
155 | - $cron_tasks = array_filter( $cron_tasks ); |
|
156 | - } elseif ( WP_DEBUG && $which_to_include !== 'all' ) { |
|
154 | + } elseif ($which_to_include === 'current') { |
|
155 | + $cron_tasks = array_filter($cron_tasks); |
|
156 | + } elseif (WP_DEBUG && $which_to_include !== 'all') { |
|
157 | 157 | throw new EE_Error( |
158 | 158 | sprintf( |
159 | 159 | __( |
@@ -176,9 +176,9 @@ discard block |
||
176 | 176 | */ |
177 | 177 | public static function create_cron_tasks() { |
178 | 178 | |
179 | - foreach( EEH_Activation::get_cron_tasks( 'current' ) as $hook_name => $frequency ) { |
|
180 | - if( ! wp_next_scheduled( $hook_name ) ) { |
|
181 | - wp_schedule_event( time(), $frequency, $hook_name ); |
|
179 | + foreach (EEH_Activation::get_cron_tasks('current') as $hook_name => $frequency) { |
|
180 | + if ( ! wp_next_scheduled($hook_name)) { |
|
181 | + wp_schedule_event(time(), $frequency, $hook_name); |
|
182 | 182 | } |
183 | 183 | } |
184 | 184 | |
@@ -192,10 +192,10 @@ discard block |
||
192 | 192 | * @param boolean $remove_all whether to only remove the old ones, or remove absolutely ALL the EE ones |
193 | 193 | * @throws \EE_Error |
194 | 194 | */ |
195 | - public static function remove_cron_tasks( $remove_all = true ) { |
|
195 | + public static function remove_cron_tasks($remove_all = true) { |
|
196 | 196 | $cron_tasks_to_remove = $remove_all ? 'all' : 'old'; |
197 | 197 | $crons = _get_cron_array(); |
198 | - $crons = is_array( $crons ) ? $crons : array(); |
|
198 | + $crons = is_array($crons) ? $crons : array(); |
|
199 | 199 | /* reminder of what $crons look like: |
200 | 200 | * Top-level keys are timestamps, and their values are arrays. |
201 | 201 | * The 2nd level arrays have keys with each of the cron task hook names to run at that time |
@@ -213,23 +213,23 @@ discard block |
||
213 | 213 | * ... |
214 | 214 | * ... |
215 | 215 | */ |
216 | - $ee_cron_tasks_to_remove = EEH_Activation::get_cron_tasks( $cron_tasks_to_remove ); |
|
217 | - foreach ( $crons as $timestamp => $hooks_to_fire_at_time ) { |
|
218 | - if ( is_array( $hooks_to_fire_at_time ) ) { |
|
219 | - foreach ( $hooks_to_fire_at_time as $hook_name => $hook_actions ) { |
|
220 | - if ( isset( $ee_cron_tasks_to_remove[ $hook_name ] ) |
|
221 | - && is_array( $ee_cron_tasks_to_remove[ $hook_name ] ) |
|
216 | + $ee_cron_tasks_to_remove = EEH_Activation::get_cron_tasks($cron_tasks_to_remove); |
|
217 | + foreach ($crons as $timestamp => $hooks_to_fire_at_time) { |
|
218 | + if (is_array($hooks_to_fire_at_time)) { |
|
219 | + foreach ($hooks_to_fire_at_time as $hook_name => $hook_actions) { |
|
220 | + if (isset($ee_cron_tasks_to_remove[$hook_name]) |
|
221 | + && is_array($ee_cron_tasks_to_remove[$hook_name]) |
|
222 | 222 | ) { |
223 | - unset( $crons[ $timestamp ][ $hook_name ] ); |
|
223 | + unset($crons[$timestamp][$hook_name]); |
|
224 | 224 | } |
225 | 225 | } |
226 | 226 | //also take care of any empty cron timestamps. |
227 | - if ( empty( $hooks_to_fire_at_time ) ) { |
|
228 | - unset( $crons[ $timestamp ] ); |
|
227 | + if (empty($hooks_to_fire_at_time)) { |
|
228 | + unset($crons[$timestamp]); |
|
229 | 229 | } |
230 | 230 | } |
231 | 231 | } |
232 | - _set_cron_array( $crons ); |
|
232 | + _set_cron_array($crons); |
|
233 | 233 | } |
234 | 234 | |
235 | 235 | |
@@ -244,7 +244,7 @@ discard block |
||
244 | 244 | */ |
245 | 245 | public static function CPT_initialization() { |
246 | 246 | // register Custom Post Types |
247 | - EE_Registry::instance()->load_core( 'Register_CPTs' ); |
|
247 | + EE_Registry::instance()->load_core('Register_CPTs'); |
|
248 | 248 | flush_rewrite_rules(); |
249 | 249 | } |
250 | 250 | |
@@ -262,8 +262,8 @@ discard block |
||
262 | 262 | * @return void |
263 | 263 | */ |
264 | 264 | public static function reset_and_update_config() { |
265 | - do_action( 'AHEE__EE_Config___load_core_config__start', array( 'EEH_Activation', 'load_calendar_config' ) ); |
|
266 | - add_filter( 'FHEE__EE_Config___load_core_config__config_settings', array( 'EEH_Activation', 'migrate_old_config_data' ), 10, 3 ); |
|
265 | + do_action('AHEE__EE_Config___load_core_config__start', array('EEH_Activation', 'load_calendar_config')); |
|
266 | + add_filter('FHEE__EE_Config___load_core_config__config_settings', array('EEH_Activation', 'migrate_old_config_data'), 10, 3); |
|
267 | 267 | //EE_Config::reset(); |
268 | 268 | } |
269 | 269 | |
@@ -276,28 +276,28 @@ discard block |
||
276 | 276 | */ |
277 | 277 | public static function load_calendar_config() { |
278 | 278 | // grab array of all plugin folders and loop thru it |
279 | - $plugins = glob( WP_PLUGIN_DIR . DS . '*', GLOB_ONLYDIR ); |
|
280 | - if ( empty( $plugins ) ) { |
|
279 | + $plugins = glob(WP_PLUGIN_DIR.DS.'*', GLOB_ONLYDIR); |
|
280 | + if (empty($plugins)) { |
|
281 | 281 | return; |
282 | 282 | } |
283 | - foreach ( $plugins as $plugin_path ) { |
|
283 | + foreach ($plugins as $plugin_path) { |
|
284 | 284 | // grab plugin folder name from path |
285 | - $plugin = basename( $plugin_path ); |
|
285 | + $plugin = basename($plugin_path); |
|
286 | 286 | // drill down to Espresso plugins |
287 | 287 | // then to calendar related plugins |
288 | 288 | if ( |
289 | - strpos( $plugin, 'espresso' ) !== FALSE |
|
290 | - || strpos( $plugin, 'Espresso' ) !== FALSE |
|
291 | - || strpos( $plugin, 'ee4' ) !== FALSE |
|
292 | - || strpos( $plugin, 'EE4' ) !== FALSE |
|
293 | - || strpos( $plugin, 'calendar' ) !== false |
|
289 | + strpos($plugin, 'espresso') !== FALSE |
|
290 | + || strpos($plugin, 'Espresso') !== FALSE |
|
291 | + || strpos($plugin, 'ee4') !== FALSE |
|
292 | + || strpos($plugin, 'EE4') !== FALSE |
|
293 | + || strpos($plugin, 'calendar') !== false |
|
294 | 294 | ) { |
295 | 295 | // this is what we are looking for |
296 | - $calendar_config = $plugin_path . DS . 'EE_Calendar_Config.php'; |
|
296 | + $calendar_config = $plugin_path.DS.'EE_Calendar_Config.php'; |
|
297 | 297 | // does it exist in this folder ? |
298 | - if ( is_readable( $calendar_config )) { |
|
298 | + if (is_readable($calendar_config)) { |
|
299 | 299 | // YEAH! let's load it |
300 | - require_once( $calendar_config ); |
|
300 | + require_once($calendar_config); |
|
301 | 301 | } |
302 | 302 | } |
303 | 303 | } |
@@ -313,21 +313,21 @@ discard block |
||
313 | 313 | * @param \EE_Config $EE_Config |
314 | 314 | * @return \stdClass |
315 | 315 | */ |
316 | - public static function migrate_old_config_data( $settings = array(), $config = '', EE_Config $EE_Config ) { |
|
317 | - $convert_from_array = array( 'addons' ); |
|
316 | + public static function migrate_old_config_data($settings = array(), $config = '', EE_Config $EE_Config) { |
|
317 | + $convert_from_array = array('addons'); |
|
318 | 318 | // in case old settings were saved as an array |
319 | - if ( is_array( $settings ) && in_array( $config, $convert_from_array )) { |
|
319 | + if (is_array($settings) && in_array($config, $convert_from_array)) { |
|
320 | 320 | // convert existing settings to an object |
321 | 321 | $config_array = $settings; |
322 | 322 | $settings = new stdClass(); |
323 | - foreach ( $config_array as $key => $value ){ |
|
324 | - if ( $key === 'calendar' && class_exists( 'EE_Calendar_Config' )) { |
|
325 | - $EE_Config->set_config( 'addons', 'EE_Calendar', 'EE_Calendar_Config', $value ); |
|
323 | + foreach ($config_array as $key => $value) { |
|
324 | + if ($key === 'calendar' && class_exists('EE_Calendar_Config')) { |
|
325 | + $EE_Config->set_config('addons', 'EE_Calendar', 'EE_Calendar_Config', $value); |
|
326 | 326 | } else { |
327 | 327 | $settings->{$key} = $value; |
328 | 328 | } |
329 | 329 | } |
330 | - add_filter( 'FHEE__EE_Config___load_core_config__update_espresso_config', '__return_true' ); |
|
330 | + add_filter('FHEE__EE_Config___load_core_config__update_espresso_config', '__return_true'); |
|
331 | 331 | } |
332 | 332 | return $settings; |
333 | 333 | } |
@@ -343,8 +343,8 @@ discard block |
||
343 | 343 | */ |
344 | 344 | public static function deactivate_event_espresso() { |
345 | 345 | // check permissions |
346 | - if ( current_user_can( 'activate_plugins' )) { |
|
347 | - deactivate_plugins( EE_PLUGIN_BASENAME, TRUE ); |
|
346 | + if (current_user_can('activate_plugins')) { |
|
347 | + deactivate_plugins(EE_PLUGIN_BASENAME, TRUE); |
|
348 | 348 | } |
349 | 349 | } |
350 | 350 | |
@@ -366,25 +366,25 @@ discard block |
||
366 | 366 | $critical_pages = array( |
367 | 367 | array( |
368 | 368 | 'id' =>'reg_page_id', |
369 | - 'name' => __( 'Registration Checkout', 'event_espresso' ), |
|
369 | + 'name' => __('Registration Checkout', 'event_espresso'), |
|
370 | 370 | 'post' => NULL, |
371 | 371 | 'code' => 'ESPRESSO_CHECKOUT' |
372 | 372 | ), |
373 | 373 | array( |
374 | 374 | 'id' => 'txn_page_id', |
375 | - 'name' => __( 'Transactions', 'event_espresso' ), |
|
375 | + 'name' => __('Transactions', 'event_espresso'), |
|
376 | 376 | 'post' => NULL, |
377 | 377 | 'code' => 'ESPRESSO_TXN_PAGE' |
378 | 378 | ), |
379 | 379 | array( |
380 | 380 | 'id' => 'thank_you_page_id', |
381 | - 'name' => __( 'Thank You', 'event_espresso' ), |
|
381 | + 'name' => __('Thank You', 'event_espresso'), |
|
382 | 382 | 'post' => NULL, |
383 | 383 | 'code' => 'ESPRESSO_THANK_YOU' |
384 | 384 | ), |
385 | 385 | array( |
386 | 386 | 'id' => 'cancel_page_id', |
387 | - 'name' => __( 'Registration Cancelled', 'event_espresso' ), |
|
387 | + 'name' => __('Registration Cancelled', 'event_espresso'), |
|
388 | 388 | 'post' => NULL, |
389 | 389 | 'code' => 'ESPRESSO_CANCELLED' |
390 | 390 | ), |
@@ -392,62 +392,62 @@ discard block |
||
392 | 392 | |
393 | 393 | $EE_Core_Config = EE_Registry::instance()->CFG->core; |
394 | 394 | |
395 | - foreach ( $critical_pages as $critical_page ) { |
|
395 | + foreach ($critical_pages as $critical_page) { |
|
396 | 396 | // is critical page ID set in config ? |
397 | - if ( $EE_Core_Config->{$critical_page[ 'id' ]} !== FALSE ) { |
|
397 | + if ($EE_Core_Config->{$critical_page['id']} !== FALSE) { |
|
398 | 398 | // attempt to find post by ID |
399 | - $critical_page['post'] = get_post( $EE_Core_Config->{$critical_page[ 'id' ]} ); |
|
399 | + $critical_page['post'] = get_post($EE_Core_Config->{$critical_page['id']} ); |
|
400 | 400 | } |
401 | 401 | // no dice? |
402 | - if ( $critical_page['post'] === null ) { |
|
402 | + if ($critical_page['post'] === null) { |
|
403 | 403 | // attempt to find post by title |
404 | - $critical_page['post'] = self::get_page_by_ee_shortcode( $critical_page['code'] ); |
|
404 | + $critical_page['post'] = self::get_page_by_ee_shortcode($critical_page['code']); |
|
405 | 405 | // still nothing? |
406 | - if ( $critical_page['post'] === null ) { |
|
407 | - $critical_page = EEH_Activation::create_critical_page( $critical_page ); |
|
406 | + if ($critical_page['post'] === null) { |
|
407 | + $critical_page = EEH_Activation::create_critical_page($critical_page); |
|
408 | 408 | // REALLY? Still nothing ??!?!? |
409 | - if ( $critical_page['post'] === null ) { |
|
410 | - $msg = __( 'The Event Espresso critical page configuration settings could not be updated.', 'event_espresso' ); |
|
411 | - EE_Error::add_error( $msg, __FILE__, __FUNCTION__, __LINE__ ); |
|
409 | + if ($critical_page['post'] === null) { |
|
410 | + $msg = __('The Event Espresso critical page configuration settings could not be updated.', 'event_espresso'); |
|
411 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
412 | 412 | break; |
413 | 413 | } |
414 | 414 | } |
415 | 415 | } |
416 | 416 | // track post_shortcodes |
417 | - if ( $critical_page['post'] ) { |
|
418 | - EEH_Activation::_track_critical_page_post_shortcodes( $critical_page ); |
|
417 | + if ($critical_page['post']) { |
|
418 | + EEH_Activation::_track_critical_page_post_shortcodes($critical_page); |
|
419 | 419 | } |
420 | 420 | // check that Post ID matches critical page ID in config |
421 | 421 | if ( |
422 | - isset( $critical_page['post']->ID ) |
|
423 | - && $critical_page['post']->ID !== $EE_Core_Config->{$critical_page[ 'id' ]} |
|
422 | + isset($critical_page['post']->ID) |
|
423 | + && $critical_page['post']->ID !== $EE_Core_Config->{$critical_page['id']} |
|
424 | 424 | ) { |
425 | 425 | //update Config with post ID |
426 | - $EE_Core_Config->{$critical_page[ 'id' ]} = $critical_page['post']->ID; |
|
427 | - if ( ! EE_Config::instance()->update_espresso_config( FALSE, FALSE ) ) { |
|
428 | - $msg = __( 'The Event Espresso critical page configuration settings could not be updated.', 'event_espresso' ); |
|
429 | - EE_Error::add_error( $msg, __FILE__, __FUNCTION__, __LINE__ ); |
|
426 | + $EE_Core_Config->{$critical_page['id']} = $critical_page['post']->ID; |
|
427 | + if ( ! EE_Config::instance()->update_espresso_config(FALSE, FALSE)) { |
|
428 | + $msg = __('The Event Espresso critical page configuration settings could not be updated.', 'event_espresso'); |
|
429 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
430 | 430 | } |
431 | 431 | } |
432 | 432 | |
433 | 433 | $critical_page_problem = |
434 | - ! isset( $critical_page['post']->post_status ) |
|
434 | + ! isset($critical_page['post']->post_status) |
|
435 | 435 | || $critical_page['post']->post_status !== 'publish' |
436 | - || strpos( $critical_page['post']->post_content, $critical_page['code'] ) === FALSE |
|
436 | + || strpos($critical_page['post']->post_content, $critical_page['code']) === FALSE |
|
437 | 437 | ? TRUE |
438 | 438 | : $critical_page_problem; |
439 | 439 | |
440 | 440 | } |
441 | 441 | |
442 | - if ( $critical_page_problem ) { |
|
442 | + if ($critical_page_problem) { |
|
443 | 443 | $msg = sprintf( |
444 | - __('A potential issue has been detected with one or more of your Event Espresso pages. Go to %s to view your Event Espresso pages.', 'event_espresso' ), |
|
445 | - '<a href="' . admin_url('admin.php?page=espresso_general_settings&action=critical_pages') . '">' . __('Event Espresso Critical Pages Settings', 'event_espresso') . '</a>' |
|
444 | + __('A potential issue has been detected with one or more of your Event Espresso pages. Go to %s to view your Event Espresso pages.', 'event_espresso'), |
|
445 | + '<a href="'.admin_url('admin.php?page=espresso_general_settings&action=critical_pages').'">'.__('Event Espresso Critical Pages Settings', 'event_espresso').'</a>' |
|
446 | 446 | ); |
447 | - EE_Error::add_persistent_admin_notice( 'critical_page_problem', $msg ); |
|
447 | + EE_Error::add_persistent_admin_notice('critical_page_problem', $msg); |
|
448 | 448 | } |
449 | - if ( EE_Error::has_notices() ) { |
|
450 | - EE_Error::get_notices( FALSE, TRUE, TRUE ); |
|
449 | + if (EE_Error::has_notices()) { |
|
450 | + EE_Error::get_notices(FALSE, TRUE, TRUE); |
|
451 | 451 | } |
452 | 452 | } |
453 | 453 | |
@@ -459,13 +459,13 @@ discard block |
||
459 | 459 | * parameter to the shortcode |
460 | 460 | * @return WP_Post or NULl |
461 | 461 | */ |
462 | - public static function get_page_by_ee_shortcode($ee_shortcode){ |
|
462 | + public static function get_page_by_ee_shortcode($ee_shortcode) { |
|
463 | 463 | global $wpdb; |
464 | 464 | $shortcode_and_opening_bracket = '['.$ee_shortcode; |
465 | 465 | $post_id = $wpdb->get_var("SELECT ID FROM {$wpdb->posts} WHERE post_content LIKE '%$shortcode_and_opening_bracket%' LIMIT 1"); |
466 | - if($post_id){ |
|
466 | + if ($post_id) { |
|
467 | 467 | return get_post($post_id); |
468 | - }else{ |
|
468 | + } else { |
|
469 | 469 | return NULL; |
470 | 470 | } |
471 | 471 | |
@@ -482,32 +482,32 @@ discard block |
||
482 | 482 | * @param array $critical_page |
483 | 483 | * @return array |
484 | 484 | */ |
485 | - public static function create_critical_page( $critical_page ) { |
|
485 | + public static function create_critical_page($critical_page) { |
|
486 | 486 | |
487 | 487 | $post_args = array( |
488 | 488 | 'post_title' => $critical_page['name'], |
489 | 489 | 'post_status' => 'publish', |
490 | 490 | 'post_type' => 'page', |
491 | 491 | 'comment_status' => 'closed', |
492 | - 'post_content' => '[' . $critical_page['code'] . ']' |
|
492 | + 'post_content' => '['.$critical_page['code'].']' |
|
493 | 493 | ); |
494 | 494 | |
495 | - $post_id = wp_insert_post( $post_args ); |
|
496 | - if ( ! $post_id ) { |
|
495 | + $post_id = wp_insert_post($post_args); |
|
496 | + if ( ! $post_id) { |
|
497 | 497 | $msg = sprintf( |
498 | - __( 'The Event Espresso critical page entitled "%s" could not be created.', 'event_espresso' ), |
|
498 | + __('The Event Espresso critical page entitled "%s" could not be created.', 'event_espresso'), |
|
499 | 499 | $critical_page['name'] |
500 | 500 | ); |
501 | - EE_Error::add_error( $msg, __FILE__, __FUNCTION__, __LINE__ ); |
|
501 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
502 | 502 | return $critical_page; |
503 | 503 | } |
504 | 504 | // get newly created post's details |
505 | - if ( ! $critical_page['post'] = get_post( $post_id )) { |
|
505 | + if ( ! $critical_page['post'] = get_post($post_id)) { |
|
506 | 506 | $msg = sprintf( |
507 | - __( 'The Event Espresso critical page entitled "%s" could not be retrieved.', 'event_espresso' ), |
|
507 | + __('The Event Espresso critical page entitled "%s" could not be retrieved.', 'event_espresso'), |
|
508 | 508 | $critical_page['name'] |
509 | 509 | ); |
510 | - EE_Error::add_error( $msg, __FILE__, __FUNCTION__, __LINE__ ); |
|
510 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
511 | 511 | } |
512 | 512 | |
513 | 513 | return $critical_page; |
@@ -526,35 +526,35 @@ discard block |
||
526 | 526 | * @param array $critical_page |
527 | 527 | * @return void |
528 | 528 | */ |
529 | - private static function _track_critical_page_post_shortcodes( $critical_page = array() ) { |
|
529 | + private static function _track_critical_page_post_shortcodes($critical_page = array()) { |
|
530 | 530 | // check the goods |
531 | - if ( ! $critical_page['post'] instanceof WP_Post ) { |
|
531 | + if ( ! $critical_page['post'] instanceof WP_Post) { |
|
532 | 532 | $msg = sprintf( |
533 | - __( 'The Event Espresso critical page shortcode for the page %s can not be tracked because it is not a WP_Post object.', 'event_espresso' ), |
|
533 | + __('The Event Espresso critical page shortcode for the page %s can not be tracked because it is not a WP_Post object.', 'event_espresso'), |
|
534 | 534 | $critical_page['name'] |
535 | 535 | ); |
536 | - EE_Error::add_error( $msg, __FILE__, __FUNCTION__, __LINE__ ); |
|
536 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
537 | 537 | return; |
538 | 538 | } |
539 | 539 | $EE_Core_Config = EE_Registry::instance()->CFG->core; |
540 | 540 | // map shortcode to post |
541 | - $EE_Core_Config->post_shortcodes[ $critical_page['post']->post_name ][ $critical_page['code'] ] = $critical_page['post']->ID; |
|
541 | + $EE_Core_Config->post_shortcodes[$critical_page['post']->post_name][$critical_page['code']] = $critical_page['post']->ID; |
|
542 | 542 | // and make sure it's NOT added to the WP "Posts Page" |
543 | 543 | // name of the WP Posts Page |
544 | 544 | $posts_page = EE_Config::get_page_for_posts(); |
545 | - if ( isset( $EE_Core_Config->post_shortcodes[ $posts_page ] )) { |
|
546 | - unset( $EE_Core_Config->post_shortcodes[ $posts_page ][ $critical_page['code'] ] ); |
|
545 | + if (isset($EE_Core_Config->post_shortcodes[$posts_page])) { |
|
546 | + unset($EE_Core_Config->post_shortcodes[$posts_page][$critical_page['code']]); |
|
547 | 547 | } |
548 | - if ( $posts_page !== 'posts' && isset( $EE_Core_Config->post_shortcodes['posts'] )) { |
|
549 | - unset( $EE_Core_Config->post_shortcodes['posts'][ $critical_page['code'] ] ); |
|
548 | + if ($posts_page !== 'posts' && isset($EE_Core_Config->post_shortcodes['posts'])) { |
|
549 | + unset($EE_Core_Config->post_shortcodes['posts'][$critical_page['code']]); |
|
550 | 550 | } |
551 | 551 | // update post_shortcode CFG |
552 | - if ( ! EE_Config::instance()->update_espresso_config( FALSE, FALSE )) { |
|
552 | + if ( ! EE_Config::instance()->update_espresso_config(FALSE, FALSE)) { |
|
553 | 553 | $msg = sprintf( |
554 | - __( 'The Event Espresso critical page shortcode for the %s page could not be configured properly.', 'event_espresso' ), |
|
554 | + __('The Event Espresso critical page shortcode for the %s page could not be configured properly.', 'event_espresso'), |
|
555 | 555 | $critical_page['name'] |
556 | 556 | ); |
557 | - EE_Error::add_error( $msg, __FILE__, __FUNCTION__, __LINE__ ); |
|
557 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
558 | 558 | } |
559 | 559 | } |
560 | 560 | |
@@ -572,24 +572,24 @@ discard block |
||
572 | 572 | public static function get_default_creator_id() { |
573 | 573 | global $wpdb; |
574 | 574 | |
575 | - if ( ! empty( self::$_default_creator_id ) ) { |
|
575 | + if ( ! empty(self::$_default_creator_id)) { |
|
576 | 576 | return self::$_default_creator_id; |
577 | 577 | }/**/ |
578 | 578 | |
579 | - $role_to_check = apply_filters( 'FHEE__EEH_Activation__get_default_creator_id__role_to_check', 'administrator' ); |
|
579 | + $role_to_check = apply_filters('FHEE__EEH_Activation__get_default_creator_id__role_to_check', 'administrator'); |
|
580 | 580 | |
581 | 581 | //let's allow pre_filtering for early exits by alternative methods for getting id. We check for truthy result and if so then exit early. |
582 | - $pre_filtered_id = apply_filters( 'FHEE__EEH_Activation__get_default_creator_id__pre_filtered_id', false, $role_to_check ); |
|
583 | - if ( $pre_filtered_id !== false ) { |
|
582 | + $pre_filtered_id = apply_filters('FHEE__EEH_Activation__get_default_creator_id__pre_filtered_id', false, $role_to_check); |
|
583 | + if ($pre_filtered_id !== false) { |
|
584 | 584 | return (int) $pre_filtered_id; |
585 | 585 | } |
586 | 586 | |
587 | - $capabilities_key = EEH_Activation::ensure_table_name_has_prefix( 'capabilities' ); |
|
588 | - $query = $wpdb->prepare( "SELECT user_id FROM $wpdb->usermeta WHERE meta_key = '$capabilities_key' AND meta_value LIKE %s ORDER BY user_id ASC LIMIT 0,1", '%' . $role_to_check . '%' ); |
|
589 | - $user_id = $wpdb->get_var( $query ); |
|
590 | - $user_id = apply_filters( 'FHEE__EEH_Activation_Helper__get_default_creator_id__user_id', $user_id ); |
|
591 | - if ( $user_id && (int)$user_id ) { |
|
592 | - self::$_default_creator_id = (int)$user_id; |
|
587 | + $capabilities_key = EEH_Activation::ensure_table_name_has_prefix('capabilities'); |
|
588 | + $query = $wpdb->prepare("SELECT user_id FROM $wpdb->usermeta WHERE meta_key = '$capabilities_key' AND meta_value LIKE %s ORDER BY user_id ASC LIMIT 0,1", '%'.$role_to_check.'%'); |
|
589 | + $user_id = $wpdb->get_var($query); |
|
590 | + $user_id = apply_filters('FHEE__EEH_Activation_Helper__get_default_creator_id__user_id', $user_id); |
|
591 | + if ($user_id && (int) $user_id) { |
|
592 | + self::$_default_creator_id = (int) $user_id; |
|
593 | 593 | return self::$_default_creator_id; |
594 | 594 | } else { |
595 | 595 | return NULL; |
@@ -616,29 +616,29 @@ discard block |
||
616 | 616 | * @return void |
617 | 617 | * @throws EE_Error if there are database errors |
618 | 618 | */ |
619 | - public static function create_table( $table_name, $sql, $engine = 'ENGINE=MyISAM ', $drop_pre_existing_table = false ) { |
|
620 | - if( apply_filters( 'FHEE__EEH_Activation__create_table__short_circuit', FALSE, $table_name, $sql ) ){ |
|
619 | + public static function create_table($table_name, $sql, $engine = 'ENGINE=MyISAM ', $drop_pre_existing_table = false) { |
|
620 | + if (apply_filters('FHEE__EEH_Activation__create_table__short_circuit', FALSE, $table_name, $sql)) { |
|
621 | 621 | return; |
622 | 622 | } |
623 | - do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' ); |
|
624 | - if ( ! function_exists( 'dbDelta' )) { |
|
625 | - require_once( ABSPATH . 'wp-admin/includes/upgrade.php' ); |
|
623 | + do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
624 | + if ( ! function_exists('dbDelta')) { |
|
625 | + require_once(ABSPATH.'wp-admin/includes/upgrade.php'); |
|
626 | 626 | } |
627 | 627 | /** @var WPDB $wpdb */ |
628 | 628 | global $wpdb; |
629 | - $wp_table_name = EEH_Activation::ensure_table_name_has_prefix( $table_name ); |
|
629 | + $wp_table_name = EEH_Activation::ensure_table_name_has_prefix($table_name); |
|
630 | 630 | // do we need to first delete an existing version of this table ? |
631 | - if ( $drop_pre_existing_table && EEH_Activation::table_exists( $wp_table_name ) ){ |
|
631 | + if ($drop_pre_existing_table && EEH_Activation::table_exists($wp_table_name)) { |
|
632 | 632 | // ok, delete the table... but ONLY if it's empty |
633 | - $deleted_safely = EEH_Activation::delete_db_table_if_empty( $wp_table_name ); |
|
633 | + $deleted_safely = EEH_Activation::delete_db_table_if_empty($wp_table_name); |
|
634 | 634 | // table is NOT empty, are you SURE you want to delete this table ??? |
635 | - if ( ! $deleted_safely && defined( 'EE_DROP_BAD_TABLES' ) && EE_DROP_BAD_TABLES ){ |
|
636 | - EEH_Activation::delete_unused_db_table( $wp_table_name ); |
|
637 | - } else if ( ! $deleted_safely ) { |
|
635 | + if ( ! $deleted_safely && defined('EE_DROP_BAD_TABLES') && EE_DROP_BAD_TABLES) { |
|
636 | + EEH_Activation::delete_unused_db_table($wp_table_name); |
|
637 | + } else if ( ! $deleted_safely) { |
|
638 | 638 | // so we should be more cautious rather than just dropping tables so easily |
639 | 639 | EE_Error::add_persistent_admin_notice( |
640 | - 'bad_table_' . $wp_table_name . '_detected', |
|
641 | - sprintf( __( 'Database table %1$s exists when it shouldn\'t, and may contain erroneous data. If you have previously restored your database from a backup that didn\'t remove the old tables, then we recommend adding %2$s to your %3$s file then restore to that backup again. This will clear out the invalid data from %1$s. Afterwards you should undo that change from your %3$s file. %4$sIf you cannot edit %3$s, you should remove the data from %1$s manually then restore to the backup again.', 'event_espresso' ), |
|
640 | + 'bad_table_'.$wp_table_name.'_detected', |
|
641 | + sprintf(__('Database table %1$s exists when it shouldn\'t, and may contain erroneous data. If you have previously restored your database from a backup that didn\'t remove the old tables, then we recommend adding %2$s to your %3$s file then restore to that backup again. This will clear out the invalid data from %1$s. Afterwards you should undo that change from your %3$s file. %4$sIf you cannot edit %3$s, you should remove the data from %1$s manually then restore to the backup again.', 'event_espresso'), |
|
642 | 642 | $wp_table_name, |
643 | 643 | "<pre>define( 'EE_DROP_BAD_TABLES', TRUE );</pre>", |
644 | 644 | '<b>wp-config.php</b>', |
@@ -647,25 +647,25 @@ discard block |
||
647 | 647 | } |
648 | 648 | } |
649 | 649 | // does $sql contain valid column information? ( LPT: https://regex101.com/ is great for working out regex patterns ) |
650 | - if ( preg_match( '((((.*?))(,\s))+)', $sql, $valid_column_data ) ) { |
|
650 | + if (preg_match('((((.*?))(,\s))+)', $sql, $valid_column_data)) { |
|
651 | 651 | $SQL = "CREATE TABLE $wp_table_name ( $sql ) $engine DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;"; |
652 | 652 | //get $wpdb to echo errors, but buffer them. This way at least WE know an error |
653 | 653 | //happened. And then we can choose to tell the end user |
654 | - $old_show_errors_policy = $wpdb->show_errors( TRUE ); |
|
655 | - $old_error_suppression_policy = $wpdb->suppress_errors( FALSE ); |
|
654 | + $old_show_errors_policy = $wpdb->show_errors(TRUE); |
|
655 | + $old_error_suppression_policy = $wpdb->suppress_errors(FALSE); |
|
656 | 656 | ob_start(); |
657 | - dbDelta( $SQL ); |
|
657 | + dbDelta($SQL); |
|
658 | 658 | $output = ob_get_contents(); |
659 | 659 | ob_end_clean(); |
660 | - $wpdb->show_errors( $old_show_errors_policy ); |
|
661 | - $wpdb->suppress_errors( $old_error_suppression_policy ); |
|
662 | - if( ! empty( $output ) ){ |
|
663 | - throw new EE_Error( $output ); |
|
660 | + $wpdb->show_errors($old_show_errors_policy); |
|
661 | + $wpdb->suppress_errors($old_error_suppression_policy); |
|
662 | + if ( ! empty($output)) { |
|
663 | + throw new EE_Error($output); |
|
664 | 664 | } |
665 | 665 | } else { |
666 | 666 | throw new EE_Error( |
667 | 667 | sprintf( |
668 | - __( 'The following table creation SQL does not contain valid information about the table columns: %1$s %2$s', 'event_espresso' ), |
|
668 | + __('The following table creation SQL does not contain valid information about the table columns: %1$s %2$s', 'event_espresso'), |
|
669 | 669 | '<br />', |
670 | 670 | $sql |
671 | 671 | ) |
@@ -688,15 +688,15 @@ discard block |
||
688 | 688 | * 'VARCHAR(10)' |
689 | 689 | * @return bool|int |
690 | 690 | */ |
691 | - public static function add_column_if_it_doesnt_exist($table_name,$column_name,$column_info='INT UNSIGNED NOT NULL'){ |
|
692 | - if( apply_filters( 'FHEE__EEH_Activation__add_column_if_it_doesnt_exist__short_circuit', FALSE ) ){ |
|
691 | + public static function add_column_if_it_doesnt_exist($table_name, $column_name, $column_info = 'INT UNSIGNED NOT NULL') { |
|
692 | + if (apply_filters('FHEE__EEH_Activation__add_column_if_it_doesnt_exist__short_circuit', FALSE)) { |
|
693 | 693 | return FALSE; |
694 | 694 | } |
695 | 695 | global $wpdb; |
696 | - $full_table_name= EEH_Activation::ensure_table_name_has_prefix( $table_name ); |
|
696 | + $full_table_name = EEH_Activation::ensure_table_name_has_prefix($table_name); |
|
697 | 697 | $fields = self::get_fields_on_table($table_name); |
698 | - if (!in_array($column_name, $fields)){ |
|
699 | - $alter_query="ALTER TABLE $full_table_name ADD $column_name $column_info"; |
|
698 | + if ( ! in_array($column_name, $fields)) { |
|
699 | + $alter_query = "ALTER TABLE $full_table_name ADD $column_name $column_info"; |
|
700 | 700 | //echo "alter query:$alter_query"; |
701 | 701 | return $wpdb->query($alter_query); |
702 | 702 | } |
@@ -715,14 +715,14 @@ discard block |
||
715 | 715 | * @param string $table_name, without prefixed $wpdb->prefix |
716 | 716 | * @return array of database column names |
717 | 717 | */ |
718 | - public static function get_fields_on_table( $table_name = NULL ) { |
|
718 | + public static function get_fields_on_table($table_name = NULL) { |
|
719 | 719 | global $wpdb; |
720 | - $table_name= EEH_Activation::ensure_table_name_has_prefix( $table_name ); |
|
721 | - if ( ! empty( $table_name )) { |
|
720 | + $table_name = EEH_Activation::ensure_table_name_has_prefix($table_name); |
|
721 | + if ( ! empty($table_name)) { |
|
722 | 722 | $columns = $wpdb->get_results("SHOW COLUMNS FROM $table_name "); |
723 | 723 | if ($columns !== FALSE) { |
724 | 724 | $field_array = array(); |
725 | - foreach($columns as $column ){ |
|
725 | + foreach ($columns as $column) { |
|
726 | 726 | $field_array[] = $column->Field; |
727 | 727 | } |
728 | 728 | return $field_array; |
@@ -741,12 +741,12 @@ discard block |
||
741 | 741 | * @param string $table_name |
742 | 742 | * @return bool |
743 | 743 | */ |
744 | - public static function db_table_is_empty( $table_name ) { |
|
744 | + public static function db_table_is_empty($table_name) { |
|
745 | 745 | global $wpdb; |
746 | - $table_name = EEH_Activation::ensure_table_name_has_prefix( $table_name ); |
|
747 | - if ( EEH_Activation::table_exists( $table_name ) ) { |
|
748 | - $count = $wpdb->get_var( "SELECT COUNT(*) FROM $table_name" ); |
|
749 | - return absint( $count ) === 0 ? true : false; |
|
746 | + $table_name = EEH_Activation::ensure_table_name_has_prefix($table_name); |
|
747 | + if (EEH_Activation::table_exists($table_name)) { |
|
748 | + $count = $wpdb->get_var("SELECT COUNT(*) FROM $table_name"); |
|
749 | + return absint($count) === 0 ? true : false; |
|
750 | 750 | } |
751 | 751 | return false; |
752 | 752 | } |
@@ -761,9 +761,9 @@ discard block |
||
761 | 761 | * @param string $table_name |
762 | 762 | * @return bool | int |
763 | 763 | */ |
764 | - public static function delete_db_table_if_empty( $table_name ) { |
|
765 | - if ( EEH_Activation::db_table_is_empty( $table_name ) ) { |
|
766 | - return EEH_Activation::delete_unused_db_table( $table_name ); |
|
764 | + public static function delete_db_table_if_empty($table_name) { |
|
765 | + if (EEH_Activation::db_table_is_empty($table_name)) { |
|
766 | + return EEH_Activation::delete_unused_db_table($table_name); |
|
767 | 767 | } |
768 | 768 | return false; |
769 | 769 | } |
@@ -778,11 +778,11 @@ discard block |
||
778 | 778 | * @param string $table_name |
779 | 779 | * @return bool | int |
780 | 780 | */ |
781 | - public static function delete_unused_db_table( $table_name ) { |
|
781 | + public static function delete_unused_db_table($table_name) { |
|
782 | 782 | global $wpdb; |
783 | - if ( EEH_Activation::table_exists( $table_name ) ) { |
|
784 | - $table_name = EEH_Activation::ensure_table_name_has_prefix( $table_name ); |
|
785 | - return $wpdb->query( "DROP TABLE IF EXISTS $table_name" ); |
|
783 | + if (EEH_Activation::table_exists($table_name)) { |
|
784 | + $table_name = EEH_Activation::ensure_table_name_has_prefix($table_name); |
|
785 | + return $wpdb->query("DROP TABLE IF EXISTS $table_name"); |
|
786 | 786 | } |
787 | 787 | return false; |
788 | 788 | } |
@@ -798,18 +798,18 @@ discard block |
||
798 | 798 | * @param string $index_name |
799 | 799 | * @return bool | int |
800 | 800 | */ |
801 | - public static function drop_index( $table_name, $index_name ) { |
|
802 | - if( apply_filters( 'FHEE__EEH_Activation__drop_index__short_circuit', FALSE ) ){ |
|
801 | + public static function drop_index($table_name, $index_name) { |
|
802 | + if (apply_filters('FHEE__EEH_Activation__drop_index__short_circuit', FALSE)) { |
|
803 | 803 | return FALSE; |
804 | 804 | } |
805 | 805 | global $wpdb; |
806 | - $table_name = EEH_Activation::ensure_table_name_has_prefix( $table_name ); |
|
806 | + $table_name = EEH_Activation::ensure_table_name_has_prefix($table_name); |
|
807 | 807 | $index_exists_query = "SHOW INDEX FROM $table_name WHERE Key_name = '$index_name'"; |
808 | 808 | if ( |
809 | - $wpdb->get_var( "SHOW TABLES LIKE '$table_name'" ) === $table_name |
|
810 | - && $wpdb->get_var( $index_exists_query ) === $table_name //using get_var with the $index_exists_query returns the table's name |
|
809 | + $wpdb->get_var("SHOW TABLES LIKE '$table_name'") === $table_name |
|
810 | + && $wpdb->get_var($index_exists_query) === $table_name //using get_var with the $index_exists_query returns the table's name |
|
811 | 811 | ) { |
812 | - return $wpdb->query( "ALTER TABLE $table_name DROP INDEX $index_name" ); |
|
812 | + return $wpdb->query("ALTER TABLE $table_name DROP INDEX $index_name"); |
|
813 | 813 | } |
814 | 814 | return TRUE; |
815 | 815 | } |
@@ -825,27 +825,27 @@ discard block |
||
825 | 825 | * @return boolean success (whether database is setup properly or not) |
826 | 826 | */ |
827 | 827 | public static function create_database_tables() { |
828 | - EE_Registry::instance()->load_core( 'Data_Migration_Manager' ); |
|
828 | + EE_Registry::instance()->load_core('Data_Migration_Manager'); |
|
829 | 829 | //find the migration script that sets the database to be compatible with the code |
830 | 830 | $dms_name = EE_Data_Migration_Manager::instance()->get_most_up_to_date_dms(); |
831 | - if( $dms_name ){ |
|
832 | - $current_data_migration_script = EE_Registry::instance()->load_dms( $dms_name ); |
|
833 | - $current_data_migration_script->set_migrating( false ); |
|
831 | + if ($dms_name) { |
|
832 | + $current_data_migration_script = EE_Registry::instance()->load_dms($dms_name); |
|
833 | + $current_data_migration_script->set_migrating(false); |
|
834 | 834 | $current_data_migration_script->schema_changes_before_migration(); |
835 | 835 | $current_data_migration_script->schema_changes_after_migration(); |
836 | - if( $current_data_migration_script->get_errors() ){ |
|
837 | - if( WP_DEBUG ){ |
|
838 | - foreach( $current_data_migration_script->get_errors() as $error ){ |
|
839 | - EE_Error::add_error($error, __FILE__, __FUNCTION__, __LINE__ ); |
|
836 | + if ($current_data_migration_script->get_errors()) { |
|
837 | + if (WP_DEBUG) { |
|
838 | + foreach ($current_data_migration_script->get_errors() as $error) { |
|
839 | + EE_Error::add_error($error, __FILE__, __FUNCTION__, __LINE__); |
|
840 | 840 | } |
841 | - }else{ |
|
842 | - EE_Error::add_error( __( 'There were errors creating the Event Espresso database tables and Event Espresso has been deactivated. To view the errors, please enable WP_DEBUG in your wp-config.php file.', 'event_espresso' ) ); |
|
841 | + } else { |
|
842 | + EE_Error::add_error(__('There were errors creating the Event Espresso database tables and Event Espresso has been deactivated. To view the errors, please enable WP_DEBUG in your wp-config.php file.', 'event_espresso')); |
|
843 | 843 | } |
844 | 844 | return false; |
845 | 845 | } |
846 | 846 | EE_Data_Migration_Manager::instance()->update_current_database_state_to(); |
847 | - }else{ |
|
848 | - EE_Error::add_error( __( 'Could not determine most up-to-date data migration script from which to pull database schema structure. So database is probably not setup properly', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__); |
|
847 | + } else { |
|
848 | + EE_Error::add_error(__('Could not determine most up-to-date data migration script from which to pull database schema structure. So database is probably not setup properly', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__); |
|
849 | 849 | return false; |
850 | 850 | } |
851 | 851 | return true; |
@@ -865,27 +865,27 @@ discard block |
||
865 | 865 | public static function initialize_system_questions() { |
866 | 866 | // QUESTION GROUPS |
867 | 867 | global $wpdb; |
868 | - $table_name = EEH_Activation::ensure_table_name_has_prefix( 'esp_question_group' ); |
|
868 | + $table_name = EEH_Activation::ensure_table_name_has_prefix('esp_question_group'); |
|
869 | 869 | $SQL = "SELECT QSG_system FROM $table_name WHERE QSG_system != 0"; |
870 | 870 | // what we have |
871 | - $question_groups = $wpdb->get_col( $SQL ); |
|
871 | + $question_groups = $wpdb->get_col($SQL); |
|
872 | 872 | // check the response |
873 | - $question_groups = is_array( $question_groups ) ? $question_groups : array(); |
|
873 | + $question_groups = is_array($question_groups) ? $question_groups : array(); |
|
874 | 874 | // what we should have |
875 | - $QSG_systems = array( 1, 2 ); |
|
875 | + $QSG_systems = array(1, 2); |
|
876 | 876 | // loop thru what we should have and compare to what we have |
877 | - foreach ( $QSG_systems as $QSG_system ) { |
|
877 | + foreach ($QSG_systems as $QSG_system) { |
|
878 | 878 | // reset values array |
879 | 879 | $QSG_values = array(); |
880 | 880 | // if we don't have what we should have (but use $QST_system as as string because that's what we got from the db) |
881 | - if ( ! in_array( "$QSG_system", $question_groups )) { |
|
881 | + if ( ! in_array("$QSG_system", $question_groups)) { |
|
882 | 882 | // add it |
883 | - switch ( $QSG_system ) { |
|
883 | + switch ($QSG_system) { |
|
884 | 884 | |
885 | 885 | case 1: |
886 | 886 | $QSG_values = array( |
887 | - 'QSG_name' => __( 'Personal Information', 'event_espresso' ), |
|
888 | - 'QSG_identifier' => 'personal-information-' . time(), |
|
887 | + 'QSG_name' => __('Personal Information', 'event_espresso'), |
|
888 | + 'QSG_identifier' => 'personal-information-'.time(), |
|
889 | 889 | 'QSG_desc' => '', |
890 | 890 | 'QSG_order' => 1, |
891 | 891 | 'QSG_show_group_name' => 1, |
@@ -897,8 +897,8 @@ discard block |
||
897 | 897 | |
898 | 898 | case 2: |
899 | 899 | $QSG_values = array( |
900 | - 'QSG_name' => __( 'Address Information','event_espresso' ), |
|
901 | - 'QSG_identifier' => 'address-information-' . time(), |
|
900 | + 'QSG_name' => __('Address Information', 'event_espresso'), |
|
901 | + 'QSG_identifier' => 'address-information-'.time(), |
|
902 | 902 | 'QSG_desc' => '', |
903 | 903 | 'QSG_order' => 2, |
904 | 904 | 'QSG_show_group_name' => 1, |
@@ -910,14 +910,14 @@ discard block |
||
910 | 910 | |
911 | 911 | } |
912 | 912 | // make sure we have some values before inserting them |
913 | - if ( ! empty( $QSG_values )) { |
|
913 | + if ( ! empty($QSG_values)) { |
|
914 | 914 | // insert system question |
915 | 915 | $wpdb->insert( |
916 | 916 | $table_name, |
917 | 917 | $QSG_values, |
918 | - array('%s', '%s', '%s', '%d', '%d', '%d', '%d', '%d' ) |
|
918 | + array('%s', '%s', '%s', '%d', '%d', '%d', '%d', '%d') |
|
919 | 919 | ); |
920 | - $QSG_IDs[ $QSG_system ] = $wpdb->insert_id; |
|
920 | + $QSG_IDs[$QSG_system] = $wpdb->insert_id; |
|
921 | 921 | } |
922 | 922 | } |
923 | 923 | } |
@@ -926,10 +926,10 @@ discard block |
||
926 | 926 | |
927 | 927 | // QUESTIONS |
928 | 928 | global $wpdb; |
929 | - $table_name = EEH_Activation::ensure_table_name_has_prefix( 'esp_question' ); |
|
929 | + $table_name = EEH_Activation::ensure_table_name_has_prefix('esp_question'); |
|
930 | 930 | $SQL = "SELECT QST_system FROM $table_name WHERE QST_system != ''"; |
931 | 931 | // what we have |
932 | - $questions = $wpdb->get_col( $SQL ); |
|
932 | + $questions = $wpdb->get_col($SQL); |
|
933 | 933 | // what we should have |
934 | 934 | $QST_systems = array( |
935 | 935 | 'fname', |
@@ -946,25 +946,25 @@ discard block |
||
946 | 946 | $order_for_group_1 = 1; |
947 | 947 | $order_for_group_2 = 1; |
948 | 948 | // loop thru what we should have and compare to what we have |
949 | - foreach ( $QST_systems as $QST_system ) { |
|
949 | + foreach ($QST_systems as $QST_system) { |
|
950 | 950 | // reset values array |
951 | 951 | $QST_values = array(); |
952 | 952 | // if we don't have what we should have |
953 | - if ( ! in_array( $QST_system, $questions )) { |
|
953 | + if ( ! in_array($QST_system, $questions)) { |
|
954 | 954 | // add it |
955 | - switch ( $QST_system ) { |
|
955 | + switch ($QST_system) { |
|
956 | 956 | |
957 | 957 | case 'fname': |
958 | 958 | $QST_values = array( |
959 | - 'QST_display_text' => __( 'First Name', 'event_espresso' ), |
|
960 | - 'QST_admin_label' => __( 'First Name - System Question', 'event_espresso' ), |
|
959 | + 'QST_display_text' => __('First Name', 'event_espresso'), |
|
960 | + 'QST_admin_label' => __('First Name - System Question', 'event_espresso'), |
|
961 | 961 | 'QST_system' => 'fname', |
962 | 962 | 'QST_type' => 'TEXT', |
963 | 963 | 'QST_required' => 1, |
964 | - 'QST_required_text' => __( 'This field is required', 'event_espresso' ), |
|
964 | + 'QST_required_text' => __('This field is required', 'event_espresso'), |
|
965 | 965 | 'QST_order' => 1, |
966 | 966 | 'QST_admin_only' => 0, |
967 | - 'QST_max' => EEM_Question::instance()->absolute_max_for_system_question( $QST_system ), |
|
967 | + 'QST_max' => EEM_Question::instance()->absolute_max_for_system_question($QST_system), |
|
968 | 968 | 'QST_wp_user' => self::get_default_creator_id(), |
969 | 969 | 'QST_deleted' => 0 |
970 | 970 | ); |
@@ -972,15 +972,15 @@ discard block |
||
972 | 972 | |
973 | 973 | case 'lname': |
974 | 974 | $QST_values = array( |
975 | - 'QST_display_text' => __( 'Last Name', 'event_espresso' ), |
|
976 | - 'QST_admin_label' => __( 'Last Name - System Question', 'event_espresso' ), |
|
975 | + 'QST_display_text' => __('Last Name', 'event_espresso'), |
|
976 | + 'QST_admin_label' => __('Last Name - System Question', 'event_espresso'), |
|
977 | 977 | 'QST_system' => 'lname', |
978 | 978 | 'QST_type' => 'TEXT', |
979 | 979 | 'QST_required' => 1, |
980 | - 'QST_required_text' => __( 'This field is required', 'event_espresso' ), |
|
980 | + 'QST_required_text' => __('This field is required', 'event_espresso'), |
|
981 | 981 | 'QST_order' => 2, |
982 | 982 | 'QST_admin_only' => 0, |
983 | - 'QST_max' => EEM_Question::instance()->absolute_max_for_system_question( $QST_system ), |
|
983 | + 'QST_max' => EEM_Question::instance()->absolute_max_for_system_question($QST_system), |
|
984 | 984 | 'QST_wp_user' => self::get_default_creator_id(), |
985 | 985 | 'QST_deleted' => 0 |
986 | 986 | ); |
@@ -988,15 +988,15 @@ discard block |
||
988 | 988 | |
989 | 989 | case 'email': |
990 | 990 | $QST_values = array( |
991 | - 'QST_display_text' => __( 'Email Address', 'event_espresso' ), |
|
992 | - 'QST_admin_label' => __( 'Email Address - System Question', 'event_espresso' ), |
|
991 | + 'QST_display_text' => __('Email Address', 'event_espresso'), |
|
992 | + 'QST_admin_label' => __('Email Address - System Question', 'event_espresso'), |
|
993 | 993 | 'QST_system' => 'email', |
994 | 994 | 'QST_type' => 'EMAIL', |
995 | 995 | 'QST_required' => 1, |
996 | - 'QST_required_text' => __( 'This field is required', 'event_espresso' ), |
|
996 | + 'QST_required_text' => __('This field is required', 'event_espresso'), |
|
997 | 997 | 'QST_order' => 3, |
998 | 998 | 'QST_admin_only' => 0, |
999 | - 'QST_max' => EEM_Question::instance()->absolute_max_for_system_question( $QST_system ), |
|
999 | + 'QST_max' => EEM_Question::instance()->absolute_max_for_system_question($QST_system), |
|
1000 | 1000 | 'QST_wp_user' => self::get_default_creator_id(), |
1001 | 1001 | 'QST_deleted' => 0 |
1002 | 1002 | ); |
@@ -1004,15 +1004,15 @@ discard block |
||
1004 | 1004 | |
1005 | 1005 | case 'address': |
1006 | 1006 | $QST_values = array( |
1007 | - 'QST_display_text' => __( 'Address', 'event_espresso' ), |
|
1008 | - 'QST_admin_label' => __( 'Address - System Question', 'event_espresso' ), |
|
1007 | + 'QST_display_text' => __('Address', 'event_espresso'), |
|
1008 | + 'QST_admin_label' => __('Address - System Question', 'event_espresso'), |
|
1009 | 1009 | 'QST_system' => 'address', |
1010 | 1010 | 'QST_type' => 'TEXT', |
1011 | 1011 | 'QST_required' => 0, |
1012 | - 'QST_required_text' => __( 'This field is required', 'event_espresso' ), |
|
1012 | + 'QST_required_text' => __('This field is required', 'event_espresso'), |
|
1013 | 1013 | 'QST_order' => 4, |
1014 | 1014 | 'QST_admin_only' => 0, |
1015 | - 'QST_max' => EEM_Question::instance()->absolute_max_for_system_question( $QST_system ), |
|
1015 | + 'QST_max' => EEM_Question::instance()->absolute_max_for_system_question($QST_system), |
|
1016 | 1016 | 'QST_wp_user' => self::get_default_creator_id(), |
1017 | 1017 | 'QST_deleted' => 0 |
1018 | 1018 | ); |
@@ -1020,15 +1020,15 @@ discard block |
||
1020 | 1020 | |
1021 | 1021 | case 'address2': |
1022 | 1022 | $QST_values = array( |
1023 | - 'QST_display_text' => __( 'Address2', 'event_espresso' ), |
|
1024 | - 'QST_admin_label' => __( 'Address2 - System Question', 'event_espresso' ), |
|
1023 | + 'QST_display_text' => __('Address2', 'event_espresso'), |
|
1024 | + 'QST_admin_label' => __('Address2 - System Question', 'event_espresso'), |
|
1025 | 1025 | 'QST_system' => 'address2', |
1026 | 1026 | 'QST_type' => 'TEXT', |
1027 | 1027 | 'QST_required' => 0, |
1028 | - 'QST_required_text' => __( 'This field is required', 'event_espresso' ), |
|
1028 | + 'QST_required_text' => __('This field is required', 'event_espresso'), |
|
1029 | 1029 | 'QST_order' => 5, |
1030 | 1030 | 'QST_admin_only' => 0, |
1031 | - 'QST_max' => EEM_Question::instance()->absolute_max_for_system_question( $QST_system ), |
|
1031 | + 'QST_max' => EEM_Question::instance()->absolute_max_for_system_question($QST_system), |
|
1032 | 1032 | 'QST_wp_user' => self::get_default_creator_id(), |
1033 | 1033 | 'QST_deleted' => 0 |
1034 | 1034 | ); |
@@ -1036,15 +1036,15 @@ discard block |
||
1036 | 1036 | |
1037 | 1037 | case 'city': |
1038 | 1038 | $QST_values = array( |
1039 | - 'QST_display_text' => __( 'City', 'event_espresso' ), |
|
1040 | - 'QST_admin_label' => __( 'City - System Question', 'event_espresso' ), |
|
1039 | + 'QST_display_text' => __('City', 'event_espresso'), |
|
1040 | + 'QST_admin_label' => __('City - System Question', 'event_espresso'), |
|
1041 | 1041 | 'QST_system' => 'city', |
1042 | 1042 | 'QST_type' => 'TEXT', |
1043 | 1043 | 'QST_required' => 0, |
1044 | - 'QST_required_text' => __( 'This field is required', 'event_espresso' ), |
|
1044 | + 'QST_required_text' => __('This field is required', 'event_espresso'), |
|
1045 | 1045 | 'QST_order' => 6, |
1046 | 1046 | 'QST_admin_only' => 0, |
1047 | - 'QST_max' => EEM_Question::instance()->absolute_max_for_system_question( $QST_system ), |
|
1047 | + 'QST_max' => EEM_Question::instance()->absolute_max_for_system_question($QST_system), |
|
1048 | 1048 | 'QST_wp_user' => self::get_default_creator_id(), |
1049 | 1049 | 'QST_deleted' => 0 |
1050 | 1050 | ); |
@@ -1052,12 +1052,12 @@ discard block |
||
1052 | 1052 | |
1053 | 1053 | case 'state': |
1054 | 1054 | $QST_values = array( |
1055 | - 'QST_display_text' => __( 'State/Province', 'event_espresso' ), |
|
1056 | - 'QST_admin_label' => __( 'State/Province - System Question', 'event_espresso' ), |
|
1055 | + 'QST_display_text' => __('State/Province', 'event_espresso'), |
|
1056 | + 'QST_admin_label' => __('State/Province - System Question', 'event_espresso'), |
|
1057 | 1057 | 'QST_system' => 'state', |
1058 | 1058 | 'QST_type' => 'STATE', |
1059 | 1059 | 'QST_required' => 0, |
1060 | - 'QST_required_text' => __( 'This field is required', 'event_espresso' ), |
|
1060 | + 'QST_required_text' => __('This field is required', 'event_espresso'), |
|
1061 | 1061 | 'QST_order' => 7, |
1062 | 1062 | 'QST_admin_only' => 0, |
1063 | 1063 | 'QST_wp_user' => self::get_default_creator_id(), |
@@ -1067,12 +1067,12 @@ discard block |
||
1067 | 1067 | |
1068 | 1068 | case 'country' : |
1069 | 1069 | $QST_values = array( |
1070 | - 'QST_display_text' => __( 'Country', 'event_espresso' ), |
|
1071 | - 'QST_admin_label' => __( 'Country - System Question', 'event_espresso' ), |
|
1070 | + 'QST_display_text' => __('Country', 'event_espresso'), |
|
1071 | + 'QST_admin_label' => __('Country - System Question', 'event_espresso'), |
|
1072 | 1072 | 'QST_system' => 'country', |
1073 | 1073 | 'QST_type' => 'COUNTRY', |
1074 | 1074 | 'QST_required' => 0, |
1075 | - 'QST_required_text' => __( 'This field is required', 'event_espresso' ), |
|
1075 | + 'QST_required_text' => __('This field is required', 'event_espresso'), |
|
1076 | 1076 | 'QST_order' => 8, |
1077 | 1077 | 'QST_admin_only' => 0, |
1078 | 1078 | 'QST_wp_user' => self::get_default_creator_id(), |
@@ -1082,15 +1082,15 @@ discard block |
||
1082 | 1082 | |
1083 | 1083 | case 'zip': |
1084 | 1084 | $QST_values = array( |
1085 | - 'QST_display_text' => __( 'Zip/Postal Code', 'event_espresso' ), |
|
1086 | - 'QST_admin_label' => __( 'Zip/Postal Code - System Question', 'event_espresso' ), |
|
1085 | + 'QST_display_text' => __('Zip/Postal Code', 'event_espresso'), |
|
1086 | + 'QST_admin_label' => __('Zip/Postal Code - System Question', 'event_espresso'), |
|
1087 | 1087 | 'QST_system' => 'zip', |
1088 | 1088 | 'QST_type' => 'TEXT', |
1089 | 1089 | 'QST_required' => 0, |
1090 | - 'QST_required_text' => __( 'This field is required', 'event_espresso' ), |
|
1090 | + 'QST_required_text' => __('This field is required', 'event_espresso'), |
|
1091 | 1091 | 'QST_order' => 9, |
1092 | 1092 | 'QST_admin_only' => 0, |
1093 | - 'QST_max' => EEM_Question::instance()->absolute_max_for_system_question( $QST_system ), |
|
1093 | + 'QST_max' => EEM_Question::instance()->absolute_max_for_system_question($QST_system), |
|
1094 | 1094 | 'QST_wp_user' => self::get_default_creator_id(), |
1095 | 1095 | 'QST_deleted' => 0 |
1096 | 1096 | ); |
@@ -1098,49 +1098,49 @@ discard block |
||
1098 | 1098 | |
1099 | 1099 | case 'phone': |
1100 | 1100 | $QST_values = array( |
1101 | - 'QST_display_text' => __( 'Phone Number', 'event_espresso' ), |
|
1102 | - 'QST_admin_label' => __( 'Phone Number - System Question', 'event_espresso' ), |
|
1101 | + 'QST_display_text' => __('Phone Number', 'event_espresso'), |
|
1102 | + 'QST_admin_label' => __('Phone Number - System Question', 'event_espresso'), |
|
1103 | 1103 | 'QST_system' => 'phone', |
1104 | 1104 | 'QST_type' => 'TEXT', |
1105 | 1105 | 'QST_required' => 0, |
1106 | - 'QST_required_text' => __( 'This field is required', 'event_espresso' ), |
|
1106 | + 'QST_required_text' => __('This field is required', 'event_espresso'), |
|
1107 | 1107 | 'QST_order' => 10, |
1108 | 1108 | 'QST_admin_only' => 0, |
1109 | - 'QST_max' => EEM_Question::instance()->absolute_max_for_system_question( $QST_system ), |
|
1109 | + 'QST_max' => EEM_Question::instance()->absolute_max_for_system_question($QST_system), |
|
1110 | 1110 | 'QST_wp_user' => self::get_default_creator_id(), |
1111 | 1111 | 'QST_deleted' => 0 |
1112 | 1112 | ); |
1113 | 1113 | break; |
1114 | 1114 | |
1115 | 1115 | } |
1116 | - if ( ! empty( $QST_values )) { |
|
1116 | + if ( ! empty($QST_values)) { |
|
1117 | 1117 | // insert system question |
1118 | 1118 | $wpdb->insert( |
1119 | 1119 | $table_name, |
1120 | 1120 | $QST_values, |
1121 | - array( '%s', '%s', '%s', '%s', '%d', '%s', '%d', '%d', '%d', '%d' ) |
|
1121 | + array('%s', '%s', '%s', '%s', '%d', '%s', '%d', '%d', '%d', '%d') |
|
1122 | 1122 | ); |
1123 | 1123 | $QST_ID = $wpdb->insert_id; |
1124 | 1124 | |
1125 | 1125 | // QUESTION GROUP QUESTIONS |
1126 | - if( in_array( $QST_system, array( 'fname', 'lname', 'email' ) ) ) { |
|
1126 | + if (in_array($QST_system, array('fname', 'lname', 'email'))) { |
|
1127 | 1127 | $system_question_we_want = EEM_Question_Group::system_personal; |
1128 | 1128 | } else { |
1129 | 1129 | $system_question_we_want = EEM_Question_Group::system_address; |
1130 | 1130 | } |
1131 | - if( isset( $QSG_IDs[ $system_question_we_want ] ) ) { |
|
1132 | - $QSG_ID = $QSG_IDs[ $system_question_we_want ]; |
|
1131 | + if (isset($QSG_IDs[$system_question_we_want])) { |
|
1132 | + $QSG_ID = $QSG_IDs[$system_question_we_want]; |
|
1133 | 1133 | } else { |
1134 | - $id_col = EEM_Question_Group::instance()->get_col( array( array( 'QSG_system' => $system_question_we_want ) ) ); |
|
1135 | - if( is_array( $id_col ) ) { |
|
1136 | - $QSG_ID = reset( $id_col ); |
|
1134 | + $id_col = EEM_Question_Group::instance()->get_col(array(array('QSG_system' => $system_question_we_want))); |
|
1135 | + if (is_array($id_col)) { |
|
1136 | + $QSG_ID = reset($id_col); |
|
1137 | 1137 | } else { |
1138 | 1138 | //ok so we didn't find it in the db either?? that's weird because we should have inserted it at the start of this method |
1139 | 1139 | EE_Log::instance()->log( |
1140 | 1140 | __FILE__, |
1141 | 1141 | __FUNCTION__, |
1142 | 1142 | sprintf( |
1143 | - __( 'Could not associate question %1$s to a question group because no system question group existed', 'event_espresso'), |
|
1143 | + __('Could not associate question %1$s to a question group because no system question group existed', 'event_espresso'), |
|
1144 | 1144 | $QST_ID ), |
1145 | 1145 | 'error' ); |
1146 | 1146 | continue; |
@@ -1149,12 +1149,12 @@ discard block |
||
1149 | 1149 | |
1150 | 1150 | // add system questions to groups |
1151 | 1151 | $wpdb->insert( |
1152 | - EEH_Activation::ensure_table_name_has_prefix( 'esp_question_group_question' ), |
|
1153 | - array( 'QSG_ID' => $QSG_ID, |
|
1152 | + EEH_Activation::ensure_table_name_has_prefix('esp_question_group_question'), |
|
1153 | + array('QSG_ID' => $QSG_ID, |
|
1154 | 1154 | 'QST_ID' => $QST_ID, |
1155 | - 'QGQ_order' => ( $QSG_ID === 1 ) ? $order_for_group_1++ : $order_for_group_2++ |
|
1155 | + 'QGQ_order' => ($QSG_ID === 1) ? $order_for_group_1++ : $order_for_group_2++ |
|
1156 | 1156 | ), |
1157 | - array( '%d', '%d', '%d' ) |
|
1157 | + array('%d', '%d', '%d') |
|
1158 | 1158 | ); |
1159 | 1159 | } |
1160 | 1160 | } |
@@ -1170,11 +1170,11 @@ discard block |
||
1170 | 1170 | * |
1171 | 1171 | * @throws \EE_Error |
1172 | 1172 | */ |
1173 | - public static function insert_default_payment_methods(){ |
|
1174 | - if( ! EEM_Payment_Method::instance()->count_active( EEM_Payment_Method::scope_cart ) ){ |
|
1175 | - EE_Registry::instance()->load_lib( 'Payment_Method_Manager' ); |
|
1176 | - EE_Payment_Method_Manager::instance()->activate_a_payment_method_of_type( 'Invoice' ); |
|
1177 | - }else{ |
|
1173 | + public static function insert_default_payment_methods() { |
|
1174 | + if ( ! EEM_Payment_Method::instance()->count_active(EEM_Payment_Method::scope_cart)) { |
|
1175 | + EE_Registry::instance()->load_lib('Payment_Method_Manager'); |
|
1176 | + EE_Payment_Method_Manager::instance()->activate_a_payment_method_of_type('Invoice'); |
|
1177 | + } else { |
|
1178 | 1178 | EEM_Payment_Method::instance()->verify_button_urls(); |
1179 | 1179 | } |
1180 | 1180 | } |
@@ -1190,7 +1190,7 @@ discard block |
||
1190 | 1190 | |
1191 | 1191 | global $wpdb; |
1192 | 1192 | |
1193 | - if ( EEH_Activation::table_exists( EEM_Status::instance()->table() ) ) { |
|
1193 | + if (EEH_Activation::table_exists(EEM_Status::instance()->table())) { |
|
1194 | 1194 | |
1195 | 1195 | $table_name = EEM_Status::instance()->table(); |
1196 | 1196 | |
@@ -1265,33 +1265,33 @@ discard block |
||
1265 | 1265 | $folders = array( |
1266 | 1266 | EVENT_ESPRESSO_TEMPLATE_DIR, |
1267 | 1267 | EVENT_ESPRESSO_GATEWAY_DIR, |
1268 | - EVENT_ESPRESSO_UPLOAD_DIR . 'logs/', |
|
1269 | - EVENT_ESPRESSO_UPLOAD_DIR . 'css/', |
|
1270 | - EVENT_ESPRESSO_UPLOAD_DIR . 'tickets/' |
|
1268 | + EVENT_ESPRESSO_UPLOAD_DIR.'logs/', |
|
1269 | + EVENT_ESPRESSO_UPLOAD_DIR.'css/', |
|
1270 | + EVENT_ESPRESSO_UPLOAD_DIR.'tickets/' |
|
1271 | 1271 | ); |
1272 | - foreach ( $folders as $folder ) { |
|
1272 | + foreach ($folders as $folder) { |
|
1273 | 1273 | try { |
1274 | - EEH_File::ensure_folder_exists_and_is_writable( $folder ); |
|
1275 | - @ chmod( $folder, 0755 ); |
|
1276 | - } catch( EE_Error $e ){ |
|
1274 | + EEH_File::ensure_folder_exists_and_is_writable($folder); |
|
1275 | + @ chmod($folder, 0755); |
|
1276 | + } catch (EE_Error $e) { |
|
1277 | 1277 | EE_Error::add_error( |
1278 | 1278 | sprintf( |
1279 | - __( 'Could not create the folder at "%1$s" because: %2$s', 'event_espresso' ), |
|
1279 | + __('Could not create the folder at "%1$s" because: %2$s', 'event_espresso'), |
|
1280 | 1280 | $folder, |
1281 | - '<br />' . $e->getMessage() |
|
1281 | + '<br />'.$e->getMessage() |
|
1282 | 1282 | ), |
1283 | 1283 | __FILE__, __FUNCTION__, __LINE__ |
1284 | 1284 | ); |
1285 | 1285 | //indicate we'll need to fix this later |
1286 | - update_option( EEH_Activation::upload_directories_incomplete_option_name, true ); |
|
1286 | + update_option(EEH_Activation::upload_directories_incomplete_option_name, true); |
|
1287 | 1287 | return FALSE; |
1288 | 1288 | } |
1289 | 1289 | } |
1290 | 1290 | //just add the .htaccess file to the logs directory to begin with. Even if logging |
1291 | 1291 | //is disabled, there might be activation errors recorded in there |
1292 | - EEH_File::add_htaccess_deny_from_all( EVENT_ESPRESSO_UPLOAD_DIR . 'logs/' ); |
|
1292 | + EEH_File::add_htaccess_deny_from_all(EVENT_ESPRESSO_UPLOAD_DIR.'logs/'); |
|
1293 | 1293 | //remember EE's folders are all good |
1294 | - delete_option( EEH_Activation::upload_directories_incomplete_option_name ); |
|
1294 | + delete_option(EEH_Activation::upload_directories_incomplete_option_name); |
|
1295 | 1295 | return TRUE; |
1296 | 1296 | } |
1297 | 1297 | |
@@ -1304,7 +1304,7 @@ discard block |
||
1304 | 1304 | * @return boolean |
1305 | 1305 | */ |
1306 | 1306 | public static function upload_directories_incomplete() { |
1307 | - return get_option( EEH_Activation::upload_directories_incomplete_option_name, false ); |
|
1307 | + return get_option(EEH_Activation::upload_directories_incomplete_option_name, false); |
|
1308 | 1308 | } |
1309 | 1309 | |
1310 | 1310 | |
@@ -1321,7 +1321,7 @@ discard block |
||
1321 | 1321 | */ |
1322 | 1322 | public static function generate_default_message_templates() { |
1323 | 1323 | /** @type EE_Message_Resource_Manager $message_resource_manager */ |
1324 | - $message_resource_manager = EE_Registry::instance()->load_lib( 'Message_Resource_Manager' ); |
|
1324 | + $message_resource_manager = EE_Registry::instance()->load_lib('Message_Resource_Manager'); |
|
1325 | 1325 | /* |
1326 | 1326 | * This first method is taking care of ensuring any default messengers |
1327 | 1327 | * that should be made active and have templates generated are done. |
@@ -1357,28 +1357,28 @@ discard block |
||
1357 | 1357 | $active_messengers = $message_resource_manager->active_messengers(); |
1358 | 1358 | $installed_message_types = $message_resource_manager->installed_message_types(); |
1359 | 1359 | $templates_created = false; |
1360 | - foreach ( $active_messengers as $active_messenger ) { |
|
1360 | + foreach ($active_messengers as $active_messenger) { |
|
1361 | 1361 | $default_message_type_names_for_messenger = $active_messenger->get_default_message_types(); |
1362 | 1362 | $default_message_type_names_to_activate = array(); |
1363 | 1363 | // looping through each default message type reported by the messenger |
1364 | 1364 | // and setup the actual message types to activate. |
1365 | - foreach ( $default_message_type_names_for_messenger as $default_message_type_name_for_messenger ) { |
|
1365 | + foreach ($default_message_type_names_for_messenger as $default_message_type_name_for_messenger) { |
|
1366 | 1366 | // if already active or has already been activated before we skip |
1367 | 1367 | // (otherwise we might reactivate something user's intentionally deactivated.) |
1368 | 1368 | // we also skip if the message type is not installed. |
1369 | 1369 | if ( |
1370 | 1370 | ( |
1371 | - isset( $has_activated[ $active_messenger->name ] ) |
|
1371 | + isset($has_activated[$active_messenger->name]) |
|
1372 | 1372 | && in_array( |
1373 | 1373 | $default_message_type_name_for_messenger, |
1374 | - $has_activated[ $active_messenger->name ] |
|
1374 | + $has_activated[$active_messenger->name] |
|
1375 | 1375 | ) |
1376 | 1376 | ) |
1377 | 1377 | || $message_resource_manager->is_message_type_active_for_messenger( |
1378 | 1378 | $active_messenger->name, |
1379 | 1379 | $default_message_type_name_for_messenger |
1380 | 1380 | ) |
1381 | - || ! isset( $installed_message_types[ $default_message_type_name_for_messenger ] ) |
|
1381 | + || ! isset($installed_message_types[$default_message_type_name_for_messenger]) |
|
1382 | 1382 | ) { |
1383 | 1383 | continue; |
1384 | 1384 | } |
@@ -1391,7 +1391,7 @@ discard block |
||
1391 | 1391 | false |
1392 | 1392 | ); |
1393 | 1393 | //activate the templates for these message types |
1394 | - if ( ! empty( $default_message_type_names_to_activate ) ) { |
|
1394 | + if ( ! empty($default_message_type_names_to_activate)) { |
|
1395 | 1395 | $templates_created = EEH_MSG_Template::generate_new_templates( |
1396 | 1396 | $active_messenger->name, |
1397 | 1397 | $default_message_type_names_for_messenger, |
@@ -1418,15 +1418,15 @@ discard block |
||
1418 | 1418 | EE_message_Resource_Manager $message_resource_manager |
1419 | 1419 | ) { |
1420 | 1420 | /** @type EE_messenger[] $messengers_to_generate */ |
1421 | - $messengers_to_generate = self::_get_default_messengers_to_generate_on_activation( $message_resource_manager ); |
|
1421 | + $messengers_to_generate = self::_get_default_messengers_to_generate_on_activation($message_resource_manager); |
|
1422 | 1422 | $installed_message_types = $message_resource_manager->installed_message_types(); |
1423 | 1423 | $templates_generated = false; |
1424 | - foreach ( $messengers_to_generate as $messenger_to_generate ) { |
|
1424 | + foreach ($messengers_to_generate as $messenger_to_generate) { |
|
1425 | 1425 | $default_message_type_names_for_messenger = $messenger_to_generate->get_default_message_types(); |
1426 | 1426 | //verify the default message types match an installed message type. |
1427 | - foreach ( $default_message_type_names_for_messenger as $key => $name ) { |
|
1428 | - if ( ! isset( $installed_message_types[ $name ] ) ) { |
|
1429 | - unset( $default_message_type_names_for_messenger[ $key ] ); |
|
1427 | + foreach ($default_message_type_names_for_messenger as $key => $name) { |
|
1428 | + if ( ! isset($installed_message_types[$name])) { |
|
1429 | + unset($default_message_type_names_for_messenger[$key]); |
|
1430 | 1430 | } |
1431 | 1431 | } |
1432 | 1432 | // in previous iterations, the active_messengers option in the db |
@@ -1440,7 +1440,7 @@ discard block |
||
1440 | 1440 | false |
1441 | 1441 | ); |
1442 | 1442 | //create any templates needing created (or will reactivate templates already generated as necessary). |
1443 | - if ( ! empty( $default_message_type_names_for_messenger ) ) { |
|
1443 | + if ( ! empty($default_message_type_names_for_messenger)) { |
|
1444 | 1444 | $templates_generated = EEH_MSG_Template::generate_new_templates( |
1445 | 1445 | $messenger_to_generate->name, |
1446 | 1446 | $default_message_type_names_for_messenger, |
@@ -1471,18 +1471,18 @@ discard block |
||
1471 | 1471 | $installed_messengers = $message_resource_manager->installed_messengers(); |
1472 | 1472 | $has_activated = $message_resource_manager->get_has_activated_messengers_option(); |
1473 | 1473 | $messengers_to_generate = array(); |
1474 | - foreach ( $installed_messengers as $installed_messenger ) { |
|
1474 | + foreach ($installed_messengers as $installed_messenger) { |
|
1475 | 1475 | //if installed messenger is a messenger that should be activated on install |
1476 | 1476 | //and is not already active |
1477 | 1477 | //and has never been activated |
1478 | 1478 | if ( |
1479 | 1479 | ! $installed_messenger->activate_on_install |
1480 | - || isset( $active_messengers[ $installed_messenger->name ] ) |
|
1481 | - || isset( $has_activated[ $installed_messenger->name ] ) |
|
1480 | + || isset($active_messengers[$installed_messenger->name]) |
|
1481 | + || isset($has_activated[$installed_messenger->name]) |
|
1482 | 1482 | ) { |
1483 | 1483 | continue; |
1484 | 1484 | } |
1485 | - $messengers_to_generate[ $installed_messenger->name ] = $installed_messenger; |
|
1485 | + $messengers_to_generate[$installed_messenger->name] = $installed_messenger; |
|
1486 | 1486 | } |
1487 | 1487 | return $messengers_to_generate; |
1488 | 1488 | } |
@@ -1507,9 +1507,9 @@ discard block |
||
1507 | 1507 | */ |
1508 | 1508 | public static function validate_messages_system() { |
1509 | 1509 | /** @type EE_Message_Resource_Manager $message_resource_manager */ |
1510 | - $message_resource_manager = EE_Registry::instance()->load_lib( 'Message_Resource_Manager' ); |
|
1510 | + $message_resource_manager = EE_Registry::instance()->load_lib('Message_Resource_Manager'); |
|
1511 | 1511 | $message_resource_manager->validate_active_message_types_are_installed(); |
1512 | - do_action( 'AHEE__EEH_Activation__validate_messages_system' ); |
|
1512 | + do_action('AHEE__EEH_Activation__validate_messages_system'); |
|
1513 | 1513 | } |
1514 | 1514 | |
1515 | 1515 | |
@@ -1522,12 +1522,12 @@ discard block |
||
1522 | 1522 | * @static |
1523 | 1523 | * @return void |
1524 | 1524 | */ |
1525 | - public static function create_no_ticket_prices_array(){ |
|
1525 | + public static function create_no_ticket_prices_array() { |
|
1526 | 1526 | // this creates an array for tracking events that have no active ticket prices created |
1527 | 1527 | // this allows us to warn admins of the situation so that it can be corrected |
1528 | - $espresso_no_ticket_prices = get_option( 'ee_no_ticket_prices', FALSE ); |
|
1529 | - if ( ! $espresso_no_ticket_prices ) { |
|
1530 | - add_option( 'ee_no_ticket_prices', array(), '', FALSE ); |
|
1528 | + $espresso_no_ticket_prices = get_option('ee_no_ticket_prices', FALSE); |
|
1529 | + if ( ! $espresso_no_ticket_prices) { |
|
1530 | + add_option('ee_no_ticket_prices', array(), '', FALSE); |
|
1531 | 1531 | } |
1532 | 1532 | } |
1533 | 1533 | |
@@ -1552,24 +1552,24 @@ discard block |
||
1552 | 1552 | * @global wpdb $wpdb |
1553 | 1553 | * @throws \EE_Error |
1554 | 1554 | */ |
1555 | - public static function delete_all_espresso_cpt_data(){ |
|
1555 | + public static function delete_all_espresso_cpt_data() { |
|
1556 | 1556 | global $wpdb; |
1557 | 1557 | //get all the CPT post_types |
1558 | 1558 | $ee_post_types = array(); |
1559 | - foreach(EE_Registry::instance()->non_abstract_db_models as $model_name){ |
|
1560 | - if ( method_exists( $model_name, 'instance' )) { |
|
1561 | - $model_obj = call_user_func( array( $model_name, 'instance' )); |
|
1562 | - if ( $model_obj instanceof EEM_CPT_Base ) { |
|
1563 | - $ee_post_types[] = $wpdb->prepare("%s",$model_obj->post_type()); |
|
1559 | + foreach (EE_Registry::instance()->non_abstract_db_models as $model_name) { |
|
1560 | + if (method_exists($model_name, 'instance')) { |
|
1561 | + $model_obj = call_user_func(array($model_name, 'instance')); |
|
1562 | + if ($model_obj instanceof EEM_CPT_Base) { |
|
1563 | + $ee_post_types[] = $wpdb->prepare("%s", $model_obj->post_type()); |
|
1564 | 1564 | } |
1565 | 1565 | } |
1566 | 1566 | } |
1567 | 1567 | //get all our CPTs |
1568 | - $query = "SELECT ID FROM {$wpdb->posts} WHERE post_type IN (".implode(",",$ee_post_types).")"; |
|
1568 | + $query = "SELECT ID FROM {$wpdb->posts} WHERE post_type IN (".implode(",", $ee_post_types).")"; |
|
1569 | 1569 | $cpt_ids = $wpdb->get_col($query); |
1570 | 1570 | //delete each post meta and term relations too |
1571 | - foreach($cpt_ids as $post_id){ |
|
1572 | - wp_delete_post($post_id,true); |
|
1571 | + foreach ($cpt_ids as $post_id) { |
|
1572 | + wp_delete_post($post_id, true); |
|
1573 | 1573 | } |
1574 | 1574 | } |
1575 | 1575 | |
@@ -1583,18 +1583,18 @@ discard block |
||
1583 | 1583 | * @param bool $remove_all |
1584 | 1584 | * @return void |
1585 | 1585 | */ |
1586 | - public static function delete_all_espresso_tables_and_data( $remove_all = true ) { |
|
1586 | + public static function delete_all_espresso_tables_and_data($remove_all = true) { |
|
1587 | 1587 | global $wpdb; |
1588 | 1588 | $undeleted_tables = array(); |
1589 | 1589 | |
1590 | 1590 | // load registry |
1591 | - foreach( EE_Registry::instance()->non_abstract_db_models as $model_name ){ |
|
1592 | - if ( method_exists( $model_name, 'instance' )) { |
|
1593 | - $model_obj = call_user_func( array( $model_name, 'instance' )); |
|
1594 | - if ( $model_obj instanceof EEM_Base ) { |
|
1595 | - foreach ( $model_obj->get_tables() as $table ) { |
|
1596 | - if ( strpos( $table->get_table_name(), 'esp_' )) { |
|
1597 | - switch ( EEH_Activation::delete_unused_db_table( $table->get_table_name() )) { |
|
1591 | + foreach (EE_Registry::instance()->non_abstract_db_models as $model_name) { |
|
1592 | + if (method_exists($model_name, 'instance')) { |
|
1593 | + $model_obj = call_user_func(array($model_name, 'instance')); |
|
1594 | + if ($model_obj instanceof EEM_Base) { |
|
1595 | + foreach ($model_obj->get_tables() as $table) { |
|
1596 | + if (strpos($table->get_table_name(), 'esp_')) { |
|
1597 | + switch (EEH_Activation::delete_unused_db_table($table->get_table_name())) { |
|
1598 | 1598 | case false : |
1599 | 1599 | $undeleted_tables[] = $table->get_table_name(); |
1600 | 1600 | break; |
@@ -1619,8 +1619,8 @@ discard block |
||
1619 | 1619 | 'esp_promotion_rule', |
1620 | 1620 | 'esp_rule' |
1621 | 1621 | ); |
1622 | - foreach( $tables_without_models as $table ){ |
|
1623 | - EEH_Activation::delete_db_table_if_empty( $table ); |
|
1622 | + foreach ($tables_without_models as $table) { |
|
1623 | + EEH_Activation::delete_db_table_if_empty($table); |
|
1624 | 1624 | } |
1625 | 1625 | |
1626 | 1626 | |
@@ -1658,58 +1658,58 @@ discard block |
||
1658 | 1658 | 'ee_job_parameters_' => false, |
1659 | 1659 | 'ee_upload_directories_incomplete' => true, |
1660 | 1660 | ); |
1661 | - if( is_main_site() ) { |
|
1662 | - $wp_options_to_delete[ 'ee_network_config' ] = true; |
|
1661 | + if (is_main_site()) { |
|
1662 | + $wp_options_to_delete['ee_network_config'] = true; |
|
1663 | 1663 | } |
1664 | 1664 | |
1665 | 1665 | $undeleted_options = array(); |
1666 | - foreach ( $wp_options_to_delete as $option_name => $no_wildcard ) { |
|
1666 | + foreach ($wp_options_to_delete as $option_name => $no_wildcard) { |
|
1667 | 1667 | |
1668 | - if( $no_wildcard ){ |
|
1669 | - if( ! delete_option( $option_name ) ){ |
|
1668 | + if ($no_wildcard) { |
|
1669 | + if ( ! delete_option($option_name)) { |
|
1670 | 1670 | $undeleted_options[] = $option_name; |
1671 | 1671 | } |
1672 | - }else{ |
|
1673 | - $option_names_to_delete_from_wildcard = $wpdb->get_col( "SELECT option_name FROM $wpdb->options WHERE option_name LIKE '%$option_name%'" ); |
|
1674 | - foreach($option_names_to_delete_from_wildcard as $option_name_from_wildcard ){ |
|
1675 | - if( ! delete_option( $option_name_from_wildcard ) ){ |
|
1672 | + } else { |
|
1673 | + $option_names_to_delete_from_wildcard = $wpdb->get_col("SELECT option_name FROM $wpdb->options WHERE option_name LIKE '%$option_name%'"); |
|
1674 | + foreach ($option_names_to_delete_from_wildcard as $option_name_from_wildcard) { |
|
1675 | + if ( ! delete_option($option_name_from_wildcard)) { |
|
1676 | 1676 | $undeleted_options[] = $option_name_from_wildcard; |
1677 | 1677 | } |
1678 | 1678 | } |
1679 | 1679 | } |
1680 | 1680 | } |
1681 | 1681 | //also, let's make sure the "ee_config_option_names" wp option stays out by removing the action that adds it |
1682 | - remove_action( 'shutdown', array( EE_Config::instance(), 'shutdown' ), 10 ); |
|
1682 | + remove_action('shutdown', array(EE_Config::instance(), 'shutdown'), 10); |
|
1683 | 1683 | |
1684 | - if ( $remove_all && $espresso_db_update = get_option( 'espresso_db_update' )) { |
|
1684 | + if ($remove_all && $espresso_db_update = get_option('espresso_db_update')) { |
|
1685 | 1685 | $db_update_sans_ee4 = array(); |
1686 | - foreach($espresso_db_update as $version => $times_activated){ |
|
1687 | - if( (string)$version[0] === '3'){//if its NON EE4 |
|
1686 | + foreach ($espresso_db_update as $version => $times_activated) { |
|
1687 | + if ((string) $version[0] === '3') {//if its NON EE4 |
|
1688 | 1688 | $db_update_sans_ee4[$version] = $times_activated; |
1689 | 1689 | } |
1690 | 1690 | } |
1691 | - update_option( 'espresso_db_update', $db_update_sans_ee4 ); |
|
1691 | + update_option('espresso_db_update', $db_update_sans_ee4); |
|
1692 | 1692 | } |
1693 | 1693 | |
1694 | 1694 | $errors = ''; |
1695 | - if ( ! empty( $undeleted_tables )) { |
|
1695 | + if ( ! empty($undeleted_tables)) { |
|
1696 | 1696 | $errors .= sprintf( |
1697 | - __( 'The following tables could not be deleted: %s%s', 'event_espresso' ), |
|
1697 | + __('The following tables could not be deleted: %s%s', 'event_espresso'), |
|
1698 | 1698 | '<br/>', |
1699 | - implode( ',<br/>', $undeleted_tables ) |
|
1699 | + implode(',<br/>', $undeleted_tables) |
|
1700 | 1700 | ); |
1701 | 1701 | } |
1702 | - if ( ! empty( $undeleted_options )) { |
|
1703 | - $errors .= ! empty( $undeleted_tables ) ? '<br/>' : ''; |
|
1702 | + if ( ! empty($undeleted_options)) { |
|
1703 | + $errors .= ! empty($undeleted_tables) ? '<br/>' : ''; |
|
1704 | 1704 | $errors .= sprintf( |
1705 | - __( 'The following wp-options could not be deleted: %s%s', 'event_espresso' ), |
|
1705 | + __('The following wp-options could not be deleted: %s%s', 'event_espresso'), |
|
1706 | 1706 | '<br/>', |
1707 | - implode( ',<br/>', $undeleted_options ) |
|
1707 | + implode(',<br/>', $undeleted_options) |
|
1708 | 1708 | ); |
1709 | 1709 | |
1710 | 1710 | } |
1711 | - if ( ! empty( $errors ) ) { |
|
1712 | - EE_Error::add_attention( $errors, __FILE__, __FUNCTION__, __LINE__ ); |
|
1711 | + if ( ! empty($errors)) { |
|
1712 | + EE_Error::add_attention($errors, __FILE__, __FUNCTION__, __LINE__); |
|
1713 | 1713 | } |
1714 | 1714 | } |
1715 | 1715 | |
@@ -1719,23 +1719,23 @@ discard block |
||
1719 | 1719 | * @param string $table_name with or without $wpdb->prefix |
1720 | 1720 | * @return boolean |
1721 | 1721 | */ |
1722 | - public static function table_exists( $table_name ){ |
|
1722 | + public static function table_exists($table_name) { |
|
1723 | 1723 | global $wpdb, $EZSQL_ERROR; |
1724 | - $table_name = EEH_Activation::ensure_table_name_has_prefix( $table_name ); |
|
1724 | + $table_name = EEH_Activation::ensure_table_name_has_prefix($table_name); |
|
1725 | 1725 | //ignore if this causes an sql error |
1726 | 1726 | $old_error = $wpdb->last_error; |
1727 | 1727 | $old_suppress_errors = $wpdb->suppress_errors(); |
1728 | - $old_show_errors_value = $wpdb->show_errors( FALSE ); |
|
1728 | + $old_show_errors_value = $wpdb->show_errors(FALSE); |
|
1729 | 1729 | $ezsql_error_cache = $EZSQL_ERROR; |
1730 | - $wpdb->get_results( "SELECT * from $table_name LIMIT 1"); |
|
1731 | - $wpdb->show_errors( $old_show_errors_value ); |
|
1732 | - $wpdb->suppress_errors( $old_suppress_errors ); |
|
1730 | + $wpdb->get_results("SELECT * from $table_name LIMIT 1"); |
|
1731 | + $wpdb->show_errors($old_show_errors_value); |
|
1732 | + $wpdb->suppress_errors($old_suppress_errors); |
|
1733 | 1733 | $new_error = $wpdb->last_error; |
1734 | 1734 | $wpdb->last_error = $old_error; |
1735 | 1735 | $EZSQL_ERROR = $ezsql_error_cache; |
1736 | - if( empty( $new_error ) ){ |
|
1736 | + if (empty($new_error)) { |
|
1737 | 1737 | return TRUE; |
1738 | - }else{ |
|
1738 | + } else { |
|
1739 | 1739 | return FALSE; |
1740 | 1740 | } |
1741 | 1741 | } |
@@ -1743,7 +1743,7 @@ discard block |
||
1743 | 1743 | /** |
1744 | 1744 | * Resets the cache on EEH_Activation |
1745 | 1745 | */ |
1746 | - public static function reset(){ |
|
1746 | + public static function reset() { |
|
1747 | 1747 | self::$_default_creator_id = NULL; |
1748 | 1748 | self::$_initialized_db_content_already_in_this_request = false; |
1749 | 1749 | } |