@@ -19,2832 +19,2832 @@ |
||
19 | 19 | */ |
20 | 20 | class EE_SPCO_Reg_Step_Payment_Options extends EE_SPCO_Reg_Step |
21 | 21 | { |
22 | - /** |
|
23 | - * @var EE_Line_Item_Display $Line_Item_Display |
|
24 | - */ |
|
25 | - protected $line_item_display; |
|
26 | - |
|
27 | - /** |
|
28 | - * @var boolean $handle_IPN_in_this_request |
|
29 | - */ |
|
30 | - protected $handle_IPN_in_this_request = false; |
|
31 | - |
|
32 | - |
|
33 | - /** |
|
34 | - * set_hooks - for hooking into EE Core, other modules, etc |
|
35 | - * |
|
36 | - * @access public |
|
37 | - * @return void |
|
38 | - */ |
|
39 | - public static function set_hooks() |
|
40 | - { |
|
41 | - add_filter( |
|
42 | - 'FHEE__SPCO__EE_Line_Item_Filter_Collection', |
|
43 | - ['EE_SPCO_Reg_Step_Payment_Options', 'add_spco_line_item_filters'] |
|
44 | - ); |
|
45 | - add_action( |
|
46 | - 'wp_ajax_switch_spco_billing_form', |
|
47 | - ['EE_SPCO_Reg_Step_Payment_Options', 'switch_spco_billing_form'] |
|
48 | - ); |
|
49 | - add_action( |
|
50 | - 'wp_ajax_nopriv_switch_spco_billing_form', |
|
51 | - ['EE_SPCO_Reg_Step_Payment_Options', 'switch_spco_billing_form'] |
|
52 | - ); |
|
53 | - add_action('wp_ajax_save_payer_details', ['EE_SPCO_Reg_Step_Payment_Options', 'save_payer_details']); |
|
54 | - add_action( |
|
55 | - 'wp_ajax_nopriv_save_payer_details', |
|
56 | - ['EE_SPCO_Reg_Step_Payment_Options', 'save_payer_details'] |
|
57 | - ); |
|
58 | - add_action( |
|
59 | - 'wp_ajax_get_transaction_details_for_gateways', |
|
60 | - ['EE_SPCO_Reg_Step_Payment_Options', 'get_transaction_details'] |
|
61 | - ); |
|
62 | - add_action( |
|
63 | - 'wp_ajax_nopriv_get_transaction_details_for_gateways', |
|
64 | - ['EE_SPCO_Reg_Step_Payment_Options', 'get_transaction_details'] |
|
65 | - ); |
|
66 | - add_filter( |
|
67 | - 'FHEE__EED_Recaptcha___bypass_recaptcha__bypass_request_params_array', |
|
68 | - ['EE_SPCO_Reg_Step_Payment_Options', 'bypass_recaptcha_for_load_payment_method'], |
|
69 | - 10, |
|
70 | - 1 |
|
71 | - ); |
|
72 | - } |
|
73 | - |
|
74 | - |
|
75 | - /** |
|
76 | - * ajax switch_spco_billing_form |
|
77 | - * |
|
78 | - */ |
|
79 | - public static function switch_spco_billing_form() |
|
80 | - { |
|
81 | - EED_Single_Page_Checkout::process_ajax_request('switch_payment_method'); |
|
82 | - } |
|
83 | - |
|
84 | - |
|
85 | - /** |
|
86 | - * ajax save_payer_details |
|
87 | - * |
|
88 | - */ |
|
89 | - public static function save_payer_details() |
|
90 | - { |
|
91 | - EED_Single_Page_Checkout::process_ajax_request('save_payer_details_via_ajax'); |
|
92 | - } |
|
93 | - |
|
94 | - |
|
95 | - /** |
|
96 | - * ajax get_transaction_details |
|
97 | - * |
|
98 | - */ |
|
99 | - public static function get_transaction_details() |
|
100 | - { |
|
101 | - EED_Single_Page_Checkout::process_ajax_request('get_transaction_details_for_gateways'); |
|
102 | - } |
|
103 | - |
|
104 | - |
|
105 | - /** |
|
106 | - * bypass_recaptcha_for_load_payment_method |
|
107 | - * |
|
108 | - * @access public |
|
109 | - * @return array |
|
110 | - * @throws InvalidArgumentException |
|
111 | - * @throws InvalidDataTypeException |
|
112 | - * @throws InvalidInterfaceException |
|
113 | - */ |
|
114 | - public static function bypass_recaptcha_for_load_payment_method() |
|
115 | - { |
|
116 | - return [ |
|
117 | - 'EESID' => EE_Registry::instance()->SSN->id(), |
|
118 | - 'step' => 'payment_options', |
|
119 | - 'action' => 'spco_billing_form', |
|
120 | - ]; |
|
121 | - } |
|
122 | - |
|
123 | - |
|
124 | - /** |
|
125 | - * class constructor |
|
126 | - * |
|
127 | - * @access public |
|
128 | - * @param EE_Checkout $checkout |
|
129 | - */ |
|
130 | - public function __construct(EE_Checkout $checkout) |
|
131 | - { |
|
132 | - $this->request = EED_Single_Page_Checkout::getRequest(); |
|
133 | - $this->_slug = 'payment_options'; |
|
134 | - $this->_name = esc_html__('Payment Options', 'event_espresso'); |
|
135 | - $this->_template = SPCO_REG_STEPS_PATH . $this->_slug . '/payment_options_main.template.php'; |
|
136 | - $this->checkout = $checkout; |
|
137 | - $this->_reset_success_message(); |
|
138 | - $this->set_instructions( |
|
139 | - esc_html__( |
|
140 | - 'Please select a method of payment and provide any necessary billing information before proceeding.', |
|
141 | - 'event_espresso' |
|
142 | - ) |
|
143 | - ); |
|
144 | - } |
|
145 | - |
|
146 | - |
|
147 | - /** |
|
148 | - * @return null |
|
149 | - */ |
|
150 | - public function line_item_display() |
|
151 | - { |
|
152 | - return $this->line_item_display; |
|
153 | - } |
|
154 | - |
|
155 | - |
|
156 | - /** |
|
157 | - * @param null $line_item_display |
|
158 | - */ |
|
159 | - public function set_line_item_display($line_item_display) |
|
160 | - { |
|
161 | - $this->line_item_display = $line_item_display; |
|
162 | - } |
|
163 | - |
|
164 | - |
|
165 | - /** |
|
166 | - * @return boolean |
|
167 | - */ |
|
168 | - public function handle_IPN_in_this_request() |
|
169 | - { |
|
170 | - return $this->handle_IPN_in_this_request; |
|
171 | - } |
|
172 | - |
|
173 | - |
|
174 | - /** |
|
175 | - * @param boolean $handle_IPN_in_this_request |
|
176 | - */ |
|
177 | - public function set_handle_IPN_in_this_request($handle_IPN_in_this_request) |
|
178 | - { |
|
179 | - $this->handle_IPN_in_this_request = filter_var($handle_IPN_in_this_request, FILTER_VALIDATE_BOOLEAN); |
|
180 | - } |
|
181 | - |
|
182 | - |
|
183 | - /** |
|
184 | - * translate_js_strings |
|
185 | - * |
|
186 | - * @return void |
|
187 | - */ |
|
188 | - public function translate_js_strings() |
|
189 | - { |
|
190 | - EE_Registry::$i18n_js_strings['no_payment_method'] = esc_html__( |
|
191 | - 'Please select a method of payment in order to continue.', |
|
192 | - 'event_espresso' |
|
193 | - ); |
|
194 | - EE_Registry::$i18n_js_strings['invalid_payment_method'] = esc_html__( |
|
195 | - 'A valid method of payment could not be determined. Please refresh the page and try again.', |
|
196 | - 'event_espresso' |
|
197 | - ); |
|
198 | - EE_Registry::$i18n_js_strings['forwarding_to_offsite'] = esc_html__( |
|
199 | - 'Forwarding to Secure Payment Provider.', |
|
200 | - 'event_espresso' |
|
201 | - ); |
|
202 | - } |
|
203 | - |
|
204 | - |
|
205 | - /** |
|
206 | - * enqueue_styles_and_scripts |
|
207 | - * |
|
208 | - * @return void |
|
209 | - * @throws EE_Error |
|
210 | - * @throws InvalidArgumentException |
|
211 | - * @throws InvalidDataTypeException |
|
212 | - * @throws InvalidInterfaceException |
|
213 | - * @throws ReflectionException |
|
214 | - */ |
|
215 | - public function enqueue_styles_and_scripts() |
|
216 | - { |
|
217 | - $transaction = $this->checkout->transaction; |
|
218 | - // if the transaction isn't set or nothing is owed on it, don't enqueue any JS |
|
219 | - if (! $transaction instanceof EE_Transaction || EEH_Money::compare_floats($transaction->remaining(), 0)) { |
|
220 | - return; |
|
221 | - } |
|
222 | - foreach ( |
|
223 | - EEM_Payment_Method::instance()->get_all_for_transaction( |
|
224 | - $transaction, |
|
225 | - EEM_Payment_Method::scope_cart |
|
226 | - ) as $payment_method |
|
227 | - ) { |
|
228 | - $type_obj = $payment_method->type_obj(); |
|
229 | - if ($type_obj instanceof EE_PMT_Base) { |
|
230 | - $billing_form = $type_obj->generate_new_billing_form($transaction); |
|
231 | - if ($billing_form instanceof EE_Form_Section_Proper) { |
|
232 | - $billing_form->enqueue_js(); |
|
233 | - } |
|
234 | - } |
|
235 | - } |
|
236 | - } |
|
237 | - |
|
238 | - |
|
239 | - /** |
|
240 | - * initialize_reg_step |
|
241 | - * |
|
242 | - * @return bool |
|
243 | - * @throws EE_Error |
|
244 | - * @throws InvalidArgumentException |
|
245 | - * @throws ReflectionException |
|
246 | - * @throws InvalidDataTypeException |
|
247 | - * @throws InvalidInterfaceException |
|
248 | - */ |
|
249 | - public function initialize_reg_step() |
|
250 | - { |
|
251 | - // TODO: if /when we implement donations, then this will need overriding |
|
252 | - if ( |
|
253 | - // don't need payment options for: |
|
254 | - // registrations made via the admin |
|
255 | - // completed transactions |
|
256 | - // overpaid transactions |
|
257 | - // $ 0.00 transactions(no payment required) |
|
258 | - ! $this->checkout->payment_required() |
|
259 | - // but do NOT remove if current action being called belongs to this reg step |
|
260 | - && ! is_callable([$this, $this->checkout->action]) |
|
261 | - && ! $this->completed() |
|
262 | - ) { |
|
263 | - // and if so, then we no longer need the Payment Options step |
|
264 | - if ($this->is_current_step()) { |
|
265 | - $this->checkout->generate_reg_form = false; |
|
266 | - } |
|
267 | - $this->checkout->remove_reg_step($this->_slug); |
|
268 | - // DEBUG LOG |
|
269 | - // $this->checkout->log( __CLASS__, __FUNCTION__, __LINE__ ); |
|
270 | - return false; |
|
271 | - } |
|
272 | - // load EEM_Payment_Method |
|
273 | - EE_Registry::instance()->load_model('Payment_Method'); |
|
274 | - // get all active payment methods |
|
275 | - $this->checkout->available_payment_methods = EEM_Payment_Method::instance()->get_all_for_transaction( |
|
276 | - $this->checkout->transaction, |
|
277 | - EEM_Payment_Method::scope_cart |
|
278 | - ); |
|
279 | - return true; |
|
280 | - } |
|
281 | - |
|
282 | - |
|
283 | - /** |
|
284 | - * @return EE_Form_Section_Proper |
|
285 | - * @throws EE_Error |
|
286 | - * @throws InvalidArgumentException |
|
287 | - * @throws ReflectionException |
|
288 | - * @throws EntityNotFoundException |
|
289 | - * @throws InvalidDataTypeException |
|
290 | - * @throws InvalidInterfaceException |
|
291 | - * @throws InvalidStatusException |
|
292 | - */ |
|
293 | - public function generate_reg_form() |
|
294 | - { |
|
295 | - // reset in case someone changes their mind |
|
296 | - $this->_reset_selected_method_of_payment(); |
|
297 | - // set some defaults |
|
298 | - $this->checkout->selected_method_of_payment = 'payments_closed'; |
|
299 | - $registrations_requiring_payment = []; |
|
300 | - $registrations_for_free_events = []; |
|
301 | - $registrations_requiring_pre_approval = []; |
|
302 | - $sold_out_events = []; |
|
303 | - $insufficient_spaces_available = []; |
|
304 | - $no_payment_required = true; |
|
305 | - // loop thru registrations to gather info |
|
306 | - $registrations = $this->checkout->transaction->registrations($this->checkout->reg_cache_where_params); |
|
307 | - $ejected_registrations = EE_SPCO_Reg_Step_Payment_Options::find_registrations_that_lost_their_space( |
|
308 | - $registrations, |
|
309 | - $this->checkout->revisit |
|
310 | - ); |
|
311 | - foreach ($registrations as $REG_ID => $registration) { |
|
312 | - /** @var $registration EE_Registration */ |
|
313 | - // has this registration lost it's space ? |
|
314 | - if (isset($ejected_registrations[ $REG_ID ])) { |
|
315 | - if ($registration->event()->is_sold_out() || $registration->event()->is_sold_out(true)) { |
|
316 | - $sold_out_events[ $registration->event()->ID() ] = $registration->event(); |
|
317 | - } else { |
|
318 | - $insufficient_spaces_available[ $registration->event()->ID() ] = $registration->event(); |
|
319 | - } |
|
320 | - continue; |
|
321 | - } |
|
322 | - // event requires admin approval |
|
323 | - if ($registration->status_ID() === EEM_Registration::status_id_not_approved) { |
|
324 | - // add event to list of events with pre-approval reg status |
|
325 | - $registrations_requiring_pre_approval[ $REG_ID ] = $registration; |
|
326 | - do_action( |
|
327 | - 'AHEE__EE_SPCO_Reg_Step_Payment_Options__generate_reg_form__event_requires_pre_approval', |
|
328 | - $registration->event(), |
|
329 | - $this |
|
330 | - ); |
|
331 | - continue; |
|
332 | - } |
|
333 | - if ( |
|
334 | - $this->checkout->revisit |
|
335 | - && $registration->status_ID() !== EEM_Registration::status_id_approved |
|
336 | - && ( |
|
337 | - $registration->event()->is_sold_out() |
|
338 | - || $registration->event()->is_sold_out(true) |
|
339 | - ) |
|
340 | - ) { |
|
341 | - // add event to list of events that are sold out |
|
342 | - $sold_out_events[ $registration->event()->ID() ] = $registration->event(); |
|
343 | - do_action( |
|
344 | - 'AHEE__EE_SPCO_Reg_Step_Payment_Options__generate_reg_form__sold_out_event', |
|
345 | - $registration->event(), |
|
346 | - $this |
|
347 | - ); |
|
348 | - continue; |
|
349 | - } |
|
350 | - // are they allowed to pay now and is there monies owing? |
|
351 | - if ($registration->owes_monies_and_can_pay()) { |
|
352 | - $registrations_requiring_payment[ $REG_ID ] = $registration; |
|
353 | - do_action( |
|
354 | - 'AHEE__EE_SPCO_Reg_Step_Payment_Options__generate_reg_form__event_requires_payment', |
|
355 | - $registration->event(), |
|
356 | - $this |
|
357 | - ); |
|
358 | - } elseif ( |
|
359 | - ! $this->checkout->revisit |
|
360 | - && $registration->status_ID() !== EEM_Registration::status_id_not_approved |
|
361 | - && $registration->ticket()->is_free() |
|
362 | - ) { |
|
363 | - $registrations_for_free_events[ $registration->ticket()->ID() ] = $registration; |
|
364 | - } |
|
365 | - } |
|
366 | - $subsections = []; |
|
367 | - // now decide which template to load |
|
368 | - if (! empty($sold_out_events)) { |
|
369 | - $subsections['sold_out_events'] = $this->_sold_out_events($sold_out_events); |
|
370 | - } |
|
371 | - if (! empty($insufficient_spaces_available)) { |
|
372 | - $subsections['insufficient_space'] = $this->_insufficient_spaces_available( |
|
373 | - $insufficient_spaces_available |
|
374 | - ); |
|
375 | - } |
|
376 | - if (! empty($registrations_requiring_pre_approval)) { |
|
377 | - $subsections['registrations_requiring_pre_approval'] = $this->_registrations_requiring_pre_approval( |
|
378 | - $registrations_requiring_pre_approval |
|
379 | - ); |
|
380 | - } |
|
381 | - if (! empty($registrations_for_free_events)) { |
|
382 | - $subsections['no_payment_required'] = $this->_no_payment_required($registrations_for_free_events); |
|
383 | - } |
|
384 | - if (! empty($registrations_requiring_payment)) { |
|
385 | - if ($this->checkout->amount_owing > 0) { |
|
386 | - // autoload Line_Item_Display classes |
|
387 | - EEH_Autoloader::register_line_item_filter_autoloaders(); |
|
388 | - $line_item_filter_processor = new EE_Line_Item_Filter_Processor( |
|
389 | - apply_filters( |
|
390 | - 'FHEE__SPCO__EE_Line_Item_Filter_Collection', |
|
391 | - new EE_Line_Item_Filter_Collection() |
|
392 | - ), |
|
393 | - $this->checkout->cart->get_grand_total() |
|
394 | - ); |
|
395 | - /** @var EE_Line_Item $filtered_line_item_tree */ |
|
396 | - $filtered_line_item_tree = $line_item_filter_processor->process(); |
|
397 | - EEH_Autoloader::register_line_item_display_autoloaders(); |
|
398 | - $this->set_line_item_display(new EE_Line_Item_Display('spco')); |
|
399 | - $subsections['payment_options'] = $this->_display_payment_options( |
|
400 | - $this->line_item_display->display_line_item( |
|
401 | - $filtered_line_item_tree, |
|
402 | - ['registrations' => $registrations] |
|
403 | - ) |
|
404 | - ); |
|
405 | - $this->checkout->amount_owing = $filtered_line_item_tree->total(); |
|
406 | - $this->_apply_registration_payments_to_amount_owing($registrations); |
|
407 | - } |
|
408 | - $no_payment_required = false; |
|
409 | - } else { |
|
410 | - $this->_hide_reg_step_submit_button_if_revisit(); |
|
411 | - } |
|
412 | - $this->_save_selected_method_of_payment(); |
|
413 | - |
|
414 | - $subsections['default_hidden_inputs'] = $this->reg_step_hidden_inputs(); |
|
415 | - $subsections['extra_hidden_inputs'] = $this->_extra_hidden_inputs($no_payment_required); |
|
416 | - |
|
417 | - return new EE_Form_Section_Proper( |
|
418 | - [ |
|
419 | - 'name' => $this->reg_form_name(), |
|
420 | - 'html_id' => $this->reg_form_name(), |
|
421 | - 'subsections' => $subsections, |
|
422 | - 'layout_strategy' => new EE_No_Layout(), |
|
423 | - ] |
|
424 | - ); |
|
425 | - } |
|
426 | - |
|
427 | - |
|
428 | - /** |
|
429 | - * add line item filters required for this reg step |
|
430 | - * these filters are applied via this line in EE_SPCO_Reg_Step_Payment_Options::set_hooks(): |
|
431 | - * add_filter( 'FHEE__SPCO__EE_Line_Item_Filter_Collection', array( 'EE_SPCO_Reg_Step_Payment_Options', |
|
432 | - * 'add_spco_line_item_filters' ) ); so any code that wants to use the same set of filters during the |
|
433 | - * payment options reg step, can apply these filters via the following: apply_filters( |
|
434 | - * 'FHEE__SPCO__EE_Line_Item_Filter_Collection', new EE_Line_Item_Filter_Collection() ) or to an existing |
|
435 | - * filter collection by passing that instead of instantiating a new collection |
|
436 | - * |
|
437 | - * @param EE_Line_Item_Filter_Collection $line_item_filter_collection |
|
438 | - * @return EE_Line_Item_Filter_Collection |
|
439 | - * @throws EE_Error |
|
440 | - * @throws InvalidArgumentException |
|
441 | - * @throws ReflectionException |
|
442 | - * @throws EntityNotFoundException |
|
443 | - * @throws InvalidDataTypeException |
|
444 | - * @throws InvalidInterfaceException |
|
445 | - * @throws InvalidStatusException |
|
446 | - */ |
|
447 | - public static function add_spco_line_item_filters(EE_Line_Item_Filter_Collection $line_item_filter_collection) |
|
448 | - { |
|
449 | - if (! EE_Registry::instance()->SSN instanceof EE_Session) { |
|
450 | - return $line_item_filter_collection; |
|
451 | - } |
|
452 | - if (! EE_Registry::instance()->SSN->checkout() instanceof EE_Checkout) { |
|
453 | - return $line_item_filter_collection; |
|
454 | - } |
|
455 | - if (! EE_Registry::instance()->SSN->checkout()->transaction instanceof EE_Transaction) { |
|
456 | - return $line_item_filter_collection; |
|
457 | - } |
|
458 | - $line_item_filter_collection->add( |
|
459 | - new EE_Billable_Line_Item_Filter( |
|
460 | - EE_SPCO_Reg_Step_Payment_Options::remove_ejected_registrations( |
|
461 | - EE_Registry::instance()->SSN->checkout()->transaction->registrations( |
|
462 | - EE_Registry::instance()->SSN->checkout()->reg_cache_where_params |
|
463 | - ) |
|
464 | - ) |
|
465 | - ) |
|
466 | - ); |
|
467 | - $line_item_filter_collection->add(new EE_Non_Zero_Line_Item_Filter()); |
|
468 | - return $line_item_filter_collection; |
|
469 | - } |
|
470 | - |
|
471 | - |
|
472 | - /** |
|
473 | - * remove_ejected_registrations |
|
474 | - * if a registrant has lost their potential space at an event due to lack of payment, |
|
475 | - * then this method removes them from the list of registrations being paid for during this request |
|
476 | - * |
|
477 | - * @param EE_Registration[] $registrations |
|
478 | - * @return EE_Registration[] |
|
479 | - * @throws EE_Error |
|
480 | - * @throws InvalidArgumentException |
|
481 | - * @throws ReflectionException |
|
482 | - * @throws EntityNotFoundException |
|
483 | - * @throws InvalidDataTypeException |
|
484 | - * @throws InvalidInterfaceException |
|
485 | - * @throws InvalidStatusException |
|
486 | - */ |
|
487 | - public static function remove_ejected_registrations(array $registrations) |
|
488 | - { |
|
489 | - $ejected_registrations = EE_SPCO_Reg_Step_Payment_Options::find_registrations_that_lost_their_space( |
|
490 | - $registrations, |
|
491 | - EE_Registry::instance()->SSN->checkout()->revisit |
|
492 | - ); |
|
493 | - foreach ($registrations as $REG_ID => $registration) { |
|
494 | - // has this registration lost it's space ? |
|
495 | - if (isset($ejected_registrations[ $REG_ID ])) { |
|
496 | - unset($registrations[ $REG_ID ]); |
|
497 | - } |
|
498 | - } |
|
499 | - return $registrations; |
|
500 | - } |
|
501 | - |
|
502 | - |
|
503 | - /** |
|
504 | - * find_registrations_that_lost_their_space |
|
505 | - * If a registrant chooses an offline payment method like Invoice, |
|
506 | - * then no space is reserved for them at the event until they fully pay fo that site |
|
507 | - * (unless the event's default reg status is set to APPROVED) |
|
508 | - * if a registrant then later returns to pay, but the number of spaces available has been reduced due to sales, |
|
509 | - * then this method will determine which registrations have lost the ability to complete the reg process. |
|
510 | - * |
|
511 | - * @param EE_Registration[] $registrations |
|
512 | - * @param bool $revisit |
|
513 | - * @return array |
|
514 | - * @throws EE_Error |
|
515 | - * @throws InvalidArgumentException |
|
516 | - * @throws ReflectionException |
|
517 | - * @throws EntityNotFoundException |
|
518 | - * @throws InvalidDataTypeException |
|
519 | - * @throws InvalidInterfaceException |
|
520 | - * @throws InvalidStatusException |
|
521 | - */ |
|
522 | - public static function find_registrations_that_lost_their_space(array $registrations, $revisit = false) |
|
523 | - { |
|
524 | - // registrations per event |
|
525 | - $event_reg_count = []; |
|
526 | - // spaces left per event |
|
527 | - $event_spaces_remaining = []; |
|
528 | - // tickets left sorted by ID |
|
529 | - $tickets_remaining = []; |
|
530 | - // registrations that have lost their space |
|
531 | - $ejected_registrations = []; |
|
532 | - foreach ($registrations as $REG_ID => $registration) { |
|
533 | - if ( |
|
534 | - $registration->status_ID() === EEM_Registration::status_id_approved |
|
535 | - || apply_filters( |
|
536 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options__find_registrations_that_lost_their_space__allow_reg_payment', |
|
537 | - false, |
|
538 | - $registration, |
|
539 | - $revisit |
|
540 | - ) |
|
541 | - ) { |
|
542 | - continue; |
|
543 | - } |
|
544 | - $EVT_ID = $registration->event_ID(); |
|
545 | - $ticket = $registration->ticket(); |
|
546 | - if (! isset($tickets_remaining[ $ticket->ID() ])) { |
|
547 | - $tickets_remaining[ $ticket->ID() ] = $ticket->remaining(); |
|
548 | - } |
|
549 | - if ($tickets_remaining[ $ticket->ID() ] > 0) { |
|
550 | - if (! isset($event_reg_count[ $EVT_ID ])) { |
|
551 | - $event_reg_count[ $EVT_ID ] = 0; |
|
552 | - } |
|
553 | - $event_reg_count[ $EVT_ID ]++; |
|
554 | - if (! isset($event_spaces_remaining[ $EVT_ID ])) { |
|
555 | - $event_spaces_remaining[ $EVT_ID ] = $registration->event()->spaces_remaining_for_sale(); |
|
556 | - } |
|
557 | - } |
|
558 | - if ( |
|
559 | - $revisit |
|
560 | - && ($tickets_remaining[ $ticket->ID() ] === 0 |
|
561 | - || $event_reg_count[ $EVT_ID ] > $event_spaces_remaining[ $EVT_ID ] |
|
562 | - ) |
|
563 | - ) { |
|
564 | - $ejected_registrations[ $REG_ID ] = $registration->event(); |
|
565 | - if ($registration->status_ID() !== EEM_Registration::status_id_wait_list) { |
|
566 | - /** @type EE_Registration_Processor $registration_processor */ |
|
567 | - $registration_processor = EE_Registry::instance()->load_class('Registration_Processor'); |
|
568 | - // at this point, we should have enough details about the registrant to consider the registration |
|
569 | - // NOT incomplete |
|
570 | - $registration_processor->manually_update_registration_status( |
|
571 | - $registration, |
|
572 | - EEM_Registration::status_id_wait_list |
|
573 | - ); |
|
574 | - } |
|
575 | - } |
|
576 | - } |
|
577 | - return $ejected_registrations; |
|
578 | - } |
|
579 | - |
|
580 | - |
|
581 | - /** |
|
582 | - * _hide_reg_step_submit_button |
|
583 | - * removes the html for the reg step submit button |
|
584 | - * by replacing it with an empty string via filter callback |
|
585 | - * |
|
586 | - * @return void |
|
587 | - */ |
|
588 | - protected function _adjust_registration_status_if_event_old_sold() |
|
589 | - { |
|
590 | - } |
|
591 | - |
|
592 | - |
|
593 | - /** |
|
594 | - * _hide_reg_step_submit_button |
|
595 | - * removes the html for the reg step submit button |
|
596 | - * by replacing it with an empty string via filter callback |
|
597 | - * |
|
598 | - * @return void |
|
599 | - */ |
|
600 | - protected function _hide_reg_step_submit_button_if_revisit() |
|
601 | - { |
|
602 | - if ($this->checkout->revisit) { |
|
603 | - add_filter('FHEE__EE_SPCO_Reg_Step__reg_step_submit_button__sbmt_btn_html', '__return_empty_string'); |
|
604 | - } |
|
605 | - } |
|
606 | - |
|
607 | - |
|
608 | - /** |
|
609 | - * sold_out_events |
|
610 | - * displays notices regarding events that have sold out since hte registrant first signed up |
|
611 | - * |
|
612 | - * @param EE_Event[] $sold_out_events_array |
|
613 | - * @return EE_Form_Section_Proper |
|
614 | - * @throws EE_Error |
|
615 | - */ |
|
616 | - private function _sold_out_events($sold_out_events_array = []) |
|
617 | - { |
|
618 | - // set some defaults |
|
619 | - $this->checkout->selected_method_of_payment = 'events_sold_out'; |
|
620 | - $sold_out_events = ''; |
|
621 | - foreach ($sold_out_events_array as $sold_out_event) { |
|
622 | - $sold_out_events .= EEH_HTML::li( |
|
623 | - EEH_HTML::span( |
|
624 | - ' ' . $sold_out_event->name(), |
|
625 | - '', |
|
626 | - 'dashicons dashicons-marker ee-icon-size-16 pink-text' |
|
627 | - ) |
|
628 | - ); |
|
629 | - } |
|
630 | - return new EE_Form_Section_Proper( |
|
631 | - [ |
|
632 | - 'layout_strategy' => new EE_Template_Layout( |
|
633 | - [ |
|
634 | - 'layout_template_file' => SPCO_REG_STEPS_PATH |
|
635 | - . $this->_slug |
|
636 | - . '/sold_out_events.template.php', |
|
637 | - 'template_args' => apply_filters( |
|
638 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___sold_out_events__template_args', |
|
639 | - [ |
|
640 | - 'sold_out_events' => $sold_out_events, |
|
641 | - 'sold_out_events_msg' => apply_filters( |
|
642 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___sold_out_events__sold_out_events_msg', |
|
643 | - sprintf( |
|
644 | - esc_html__( |
|
645 | - 'It appears that the event you were about to make a payment for has sold out since you first registered. If you have already made a partial payment towards this event, please contact the event administrator for a refund.%3$s%3$s%1$sPlease note that availability can change at any time due to cancellations, so please check back again later if registration for this event(s) is important to you.%2$s', |
|
646 | - 'event_espresso' |
|
647 | - ), |
|
648 | - '<strong>', |
|
649 | - '</strong>', |
|
650 | - '<br />' |
|
651 | - ) |
|
652 | - ), |
|
653 | - ] |
|
654 | - ), |
|
655 | - ] |
|
656 | - ), |
|
657 | - ] |
|
658 | - ); |
|
659 | - } |
|
660 | - |
|
661 | - |
|
662 | - /** |
|
663 | - * _insufficient_spaces_available |
|
664 | - * displays notices regarding events that do not have enough remaining spaces |
|
665 | - * to satisfy the current number of registrations looking to pay |
|
666 | - * |
|
667 | - * @param EE_Event[] $insufficient_spaces_events_array |
|
668 | - * @return EE_Form_Section_Proper |
|
669 | - * @throws EE_Error |
|
670 | - * @throws ReflectionException |
|
671 | - */ |
|
672 | - private function _insufficient_spaces_available($insufficient_spaces_events_array = []) |
|
673 | - { |
|
674 | - // set some defaults |
|
675 | - $this->checkout->selected_method_of_payment = 'invoice'; |
|
676 | - $insufficient_space_events = ''; |
|
677 | - foreach ($insufficient_spaces_events_array as $event) { |
|
678 | - if ($event instanceof EE_Event) { |
|
679 | - $insufficient_space_events .= EEH_HTML::li( |
|
680 | - EEH_HTML::span(' ' . $event->name(), '', 'dashicons dashicons-marker ee-icon-size-16 pink-text') |
|
681 | - ); |
|
682 | - } |
|
683 | - } |
|
684 | - return new EE_Form_Section_Proper( |
|
685 | - [ |
|
686 | - 'subsections' => [ |
|
687 | - 'default_hidden_inputs' => $this->reg_step_hidden_inputs(), |
|
688 | - 'extra_hidden_inputs' => $this->_extra_hidden_inputs(), |
|
689 | - ], |
|
690 | - 'layout_strategy' => new EE_Template_Layout( |
|
691 | - [ |
|
692 | - 'layout_template_file' => SPCO_REG_STEPS_PATH |
|
693 | - . $this->_slug |
|
694 | - . '/sold_out_events.template.php', |
|
695 | - 'template_args' => apply_filters( |
|
696 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___insufficient_spaces_available__template_args', |
|
697 | - [ |
|
698 | - 'sold_out_events' => $insufficient_space_events, |
|
699 | - 'sold_out_events_msg' => apply_filters( |
|
700 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___insufficient_spaces_available__insufficient_space_msg', |
|
701 | - esc_html__( |
|
702 | - 'It appears that the event you were about to make a payment for has sold additional tickets since you first registered, and there are no longer enough spaces left to accommodate your selections. You may continue to pay and secure the available space(s) remaining, or simply cancel if you no longer wish to purchase. If you have already made a partial payment towards this event, please contact the event administrator for a refund.', |
|
703 | - 'event_espresso' |
|
704 | - ) |
|
705 | - ), |
|
706 | - ] |
|
707 | - ), |
|
708 | - ] |
|
709 | - ), |
|
710 | - ] |
|
711 | - ); |
|
712 | - } |
|
713 | - |
|
714 | - |
|
715 | - /** |
|
716 | - * registrations_requiring_pre_approval |
|
717 | - * |
|
718 | - * @param array $registrations_requiring_pre_approval |
|
719 | - * @return EE_Form_Section_Proper |
|
720 | - * @throws EE_Error |
|
721 | - * @throws EntityNotFoundException |
|
722 | - * @throws ReflectionException |
|
723 | - */ |
|
724 | - private function _registrations_requiring_pre_approval($registrations_requiring_pre_approval = []) |
|
725 | - { |
|
726 | - $events_requiring_pre_approval = []; |
|
727 | - foreach ($registrations_requiring_pre_approval as $registration) { |
|
728 | - if ($registration instanceof EE_Registration && $registration->event() instanceof EE_Event) { |
|
729 | - $events_requiring_pre_approval[ $registration->event()->ID() ] = EEH_HTML::li( |
|
730 | - EEH_HTML::span( |
|
731 | - '', |
|
732 | - '', |
|
733 | - 'dashicons dashicons-marker ee-icon-size-16 orange-text' |
|
734 | - ) |
|
735 | - . EEH_HTML::span($registration->event()->name(), '', 'orange-text') |
|
736 | - ); |
|
737 | - } |
|
738 | - } |
|
739 | - return new EE_Form_Section_Proper( |
|
740 | - [ |
|
741 | - 'layout_strategy' => new EE_Template_Layout( |
|
742 | - [ |
|
743 | - 'layout_template_file' => SPCO_REG_STEPS_PATH |
|
744 | - . $this->_slug |
|
745 | - . '/events_requiring_pre_approval.template.php', // layout_template |
|
746 | - 'template_args' => apply_filters( |
|
747 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___sold_out_events__template_args', |
|
748 | - [ |
|
749 | - 'events_requiring_pre_approval' => implode('', $events_requiring_pre_approval), |
|
750 | - 'events_requiring_pre_approval_msg' => apply_filters( |
|
751 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___events_requiring_pre_approval__events_requiring_pre_approval_msg', |
|
752 | - esc_html__( |
|
753 | - 'The following events do not require payment at this time and will not be billed during this transaction. Billing will only occur after the attendee has been approved by the event organizer. You will be notified when your registration has been processed. If this is a free event, then no billing will occur.', |
|
754 | - 'event_espresso' |
|
755 | - ) |
|
756 | - ), |
|
757 | - ] |
|
758 | - ), |
|
759 | - ] |
|
760 | - ), |
|
761 | - ] |
|
762 | - ); |
|
763 | - } |
|
764 | - |
|
765 | - |
|
766 | - /** |
|
767 | - * _no_payment_required |
|
768 | - * |
|
769 | - * @param EE_Event[] $registrations_for_free_events |
|
770 | - * @return EE_Form_Section_Proper |
|
771 | - * @throws EE_Error |
|
772 | - */ |
|
773 | - private function _no_payment_required($registrations_for_free_events = []) |
|
774 | - { |
|
775 | - // set some defaults |
|
776 | - $this->checkout->selected_method_of_payment = 'no_payment_required'; |
|
777 | - // generate no_payment_required form |
|
778 | - return new EE_Form_Section_Proper( |
|
779 | - [ |
|
780 | - 'layout_strategy' => new EE_Template_Layout( |
|
781 | - [ |
|
782 | - 'layout_template_file' => SPCO_REG_STEPS_PATH |
|
783 | - . $this->_slug |
|
784 | - . '/no_payment_required.template.php', // layout_template |
|
785 | - 'template_args' => apply_filters( |
|
786 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___no_payment_required__template_args', |
|
787 | - [ |
|
788 | - 'revisit' => $this->checkout->revisit, |
|
789 | - 'registrations' => [], |
|
790 | - 'ticket_count' => [], |
|
791 | - 'registrations_for_free_events' => $registrations_for_free_events, |
|
792 | - 'no_payment_required_msg' => EEH_HTML::p( |
|
793 | - esc_html__('This is a free event, so no billing will occur.', 'event_espresso') |
|
794 | - ), |
|
795 | - ] |
|
796 | - ), |
|
797 | - ] |
|
798 | - ), |
|
799 | - ] |
|
800 | - ); |
|
801 | - } |
|
802 | - |
|
803 | - |
|
804 | - /** |
|
805 | - * _display_payment_options |
|
806 | - * |
|
807 | - * @param string $transaction_details |
|
808 | - * @return EE_Form_Section_Proper |
|
809 | - * @throws EE_Error |
|
810 | - * @throws InvalidArgumentException |
|
811 | - * @throws InvalidDataTypeException |
|
812 | - * @throws InvalidInterfaceException |
|
813 | - */ |
|
814 | - private function _display_payment_options($transaction_details = '') |
|
815 | - { |
|
816 | - // has method_of_payment been set by no-js user? |
|
817 | - $this->checkout->selected_method_of_payment = $this->_get_selected_method_of_payment(); |
|
818 | - // build payment options form |
|
819 | - return apply_filters( |
|
820 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___display_payment_options__payment_options_form', |
|
821 | - new EE_Form_Section_Proper( |
|
822 | - [ |
|
823 | - 'subsections' => [ |
|
824 | - 'before_payment_options' => apply_filters( |
|
825 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___display_payment_options__before_payment_options', |
|
826 | - new EE_Form_Section_Proper( |
|
827 | - ['layout_strategy' => new EE_Div_Per_Section_Layout()] |
|
828 | - ) |
|
829 | - ), |
|
830 | - 'payment_options' => $this->_setup_payment_options(), |
|
831 | - 'after_payment_options' => apply_filters( |
|
832 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___display_payment_options__after_payment_options', |
|
833 | - new EE_Form_Section_Proper( |
|
834 | - ['layout_strategy' => new EE_Div_Per_Section_Layout()] |
|
835 | - ) |
|
836 | - ), |
|
837 | - ], |
|
838 | - 'layout_strategy' => new EE_Template_Layout( |
|
839 | - [ |
|
840 | - 'layout_template_file' => $this->_template, |
|
841 | - 'template_args' => apply_filters( |
|
842 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___display_payment_options__template_args', |
|
843 | - [ |
|
844 | - 'reg_count' => $this->line_item_display->total_items(), |
|
845 | - 'transaction_details' => $transaction_details, |
|
846 | - 'available_payment_methods' => [], |
|
847 | - ] |
|
848 | - ), |
|
849 | - ] |
|
850 | - ), |
|
851 | - ] |
|
852 | - ) |
|
853 | - ); |
|
854 | - } |
|
855 | - |
|
856 | - |
|
857 | - /** |
|
858 | - * _extra_hidden_inputs |
|
859 | - * |
|
860 | - * @param bool $no_payment_required |
|
861 | - * @return EE_Form_Section_Proper |
|
862 | - * @throws EE_Error |
|
863 | - * @throws ReflectionException |
|
864 | - */ |
|
865 | - private function _extra_hidden_inputs($no_payment_required = true) |
|
866 | - { |
|
867 | - return new EE_Form_Section_Proper( |
|
868 | - [ |
|
869 | - 'html_id' => 'ee-' . $this->slug() . '-extra-hidden-inputs', |
|
870 | - 'layout_strategy' => new EE_Div_Per_Section_Layout(), |
|
871 | - 'subsections' => [ |
|
872 | - 'spco_no_payment_required' => new EE_Hidden_Input( |
|
873 | - [ |
|
874 | - 'normalization_strategy' => new EE_Boolean_Normalization(), |
|
875 | - 'html_name' => 'spco_no_payment_required', |
|
876 | - 'html_id' => 'spco-no-payment-required-payment_options', |
|
877 | - 'default' => $no_payment_required, |
|
878 | - ] |
|
879 | - ), |
|
880 | - 'spco_transaction_id' => new EE_Fixed_Hidden_Input( |
|
881 | - [ |
|
882 | - 'normalization_strategy' => new EE_Int_Normalization(), |
|
883 | - 'html_name' => 'spco_transaction_id', |
|
884 | - 'html_id' => 'spco-transaction-id', |
|
885 | - 'default' => $this->checkout->transaction->ID(), |
|
886 | - ] |
|
887 | - ), |
|
888 | - ], |
|
889 | - ] |
|
890 | - ); |
|
891 | - } |
|
892 | - |
|
893 | - |
|
894 | - /** |
|
895 | - * _apply_registration_payments_to_amount_owing |
|
896 | - * |
|
897 | - * @param array $registrations |
|
898 | - * @throws EE_Error |
|
899 | - */ |
|
900 | - protected function _apply_registration_payments_to_amount_owing(array $registrations) |
|
901 | - { |
|
902 | - $payments = []; |
|
903 | - foreach ($registrations as $registration) { |
|
904 | - if ($registration instanceof EE_Registration && $registration->owes_monies_and_can_pay()) { |
|
905 | - $payments += $registration->registration_payments(); |
|
906 | - } |
|
907 | - } |
|
908 | - if (! empty($payments)) { |
|
909 | - foreach ($payments as $payment) { |
|
910 | - if ($payment instanceof EE_Registration_Payment) { |
|
911 | - $this->checkout->amount_owing -= $payment->amount(); |
|
912 | - } |
|
913 | - } |
|
914 | - } |
|
915 | - } |
|
916 | - |
|
917 | - |
|
918 | - /** |
|
919 | - * _reset_selected_method_of_payment |
|
920 | - * |
|
921 | - * @access private |
|
922 | - * @param bool $force_reset |
|
923 | - * @return void |
|
924 | - * @throws InvalidArgumentException |
|
925 | - * @throws InvalidDataTypeException |
|
926 | - * @throws InvalidInterfaceException |
|
927 | - */ |
|
928 | - private function _reset_selected_method_of_payment($force_reset = false) |
|
929 | - { |
|
930 | - /** @var RequestInterface $request */ |
|
931 | - $request = LoaderFactory::getLoader()->getShared(RequestInterface::class); |
|
932 | - $reset_payment_method = $request->getRequestParam('reset_payment_method', $force_reset, 'bool'); |
|
933 | - if ($reset_payment_method) { |
|
934 | - $this->checkout->selected_method_of_payment = null; |
|
935 | - $this->checkout->payment_method = null; |
|
936 | - $this->checkout->billing_form = null; |
|
937 | - $this->_save_selected_method_of_payment(); |
|
938 | - } |
|
939 | - } |
|
940 | - |
|
941 | - |
|
942 | - /** |
|
943 | - * _save_selected_method_of_payment |
|
944 | - * stores the selected_method_of_payment in the session |
|
945 | - * so that it's available for all subsequent requests including AJAX |
|
946 | - * |
|
947 | - * @access private |
|
948 | - * @param string $selected_method_of_payment |
|
949 | - * @return void |
|
950 | - * @throws InvalidArgumentException |
|
951 | - * @throws InvalidDataTypeException |
|
952 | - * @throws InvalidInterfaceException |
|
953 | - */ |
|
954 | - private function _save_selected_method_of_payment($selected_method_of_payment = '') |
|
955 | - { |
|
956 | - $selected_method_of_payment = ! empty($selected_method_of_payment) |
|
957 | - ? $selected_method_of_payment |
|
958 | - : $this->checkout->selected_method_of_payment; |
|
959 | - EE_Registry::instance()->SSN->set_session_data( |
|
960 | - ['selected_method_of_payment' => $selected_method_of_payment] |
|
961 | - ); |
|
962 | - } |
|
963 | - |
|
964 | - |
|
965 | - /** |
|
966 | - * _setup_payment_options |
|
967 | - * |
|
968 | - * @return EE_Form_Section_Proper |
|
969 | - * @throws EE_Error |
|
970 | - * @throws InvalidArgumentException |
|
971 | - * @throws InvalidDataTypeException |
|
972 | - * @throws InvalidInterfaceException |
|
973 | - */ |
|
974 | - public function _setup_payment_options() |
|
975 | - { |
|
976 | - // load payment method classes |
|
977 | - $this->checkout->available_payment_methods = $this->_get_available_payment_methods(); |
|
978 | - if (empty($this->checkout->available_payment_methods)) { |
|
979 | - EE_Error::add_error( |
|
980 | - apply_filters( |
|
981 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___setup_payment_options__error_message_no_payment_methods', |
|
982 | - sprintf( |
|
983 | - esc_html__( |
|
984 | - 'Sorry, you cannot complete your purchase because a payment method is not active.%1$s Please contact %2$s for assistance and provide a description of the problem.', |
|
985 | - 'event_espresso' |
|
986 | - ), |
|
987 | - '<br>', |
|
988 | - EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
989 | - ) |
|
990 | - ), |
|
991 | - __FILE__, |
|
992 | - __FUNCTION__, |
|
993 | - __LINE__ |
|
994 | - ); |
|
995 | - } |
|
996 | - // switch up header depending on number of available payment methods |
|
997 | - $payment_method_header = count($this->checkout->available_payment_methods) > 1 |
|
998 | - ? apply_filters( |
|
999 | - 'FHEE__registration_page_payment_options__method_of_payment_hdr', |
|
1000 | - esc_html__('Please Select Your Method of Payment', 'event_espresso') |
|
1001 | - ) |
|
1002 | - : apply_filters( |
|
1003 | - 'FHEE__registration_page_payment_options__method_of_payment_hdr', |
|
1004 | - esc_html__('Method of Payment', 'event_espresso') |
|
1005 | - ); |
|
1006 | - $available_payment_methods = [ |
|
1007 | - // display the "Payment Method" header |
|
1008 | - 'payment_method_header' => new EE_Form_Section_HTML( |
|
1009 | - apply_filters( |
|
1010 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___setup_payment_options__payment_method_header', |
|
1011 | - EEH_HTML::h4($payment_method_header, 'method-of-payment-hdr'), |
|
1012 | - $payment_method_header |
|
1013 | - ) |
|
1014 | - ), |
|
1015 | - ]; |
|
1016 | - // the list of actual payment methods ( invoice, paypal, etc ) in a ( slug => HTML ) format |
|
1017 | - $available_payment_method_options = []; |
|
1018 | - $default_payment_method_option = []; |
|
1019 | - // additional instructions to be displayed and hidden below payment methods (adding a clearing div to start) |
|
1020 | - $payment_methods_billing_info = [ |
|
1021 | - new EE_Form_Section_HTML( |
|
1022 | - EEH_HTML::div('<br />', '', '', 'clear:both;') |
|
1023 | - ), |
|
1024 | - ]; |
|
1025 | - // loop through payment methods |
|
1026 | - foreach ($this->checkout->available_payment_methods as $payment_method) { |
|
1027 | - if ($payment_method instanceof EE_Payment_Method) { |
|
1028 | - $payment_method_button = EEH_HTML::img( |
|
1029 | - $payment_method->button_url(), |
|
1030 | - $payment_method->name(), |
|
1031 | - 'spco-payment-method-' . $payment_method->slug() . '-btn-img', |
|
1032 | - 'spco-payment-method-btn-img' |
|
1033 | - ); |
|
1034 | - // check if any payment methods are set as default |
|
1035 | - // if payment method is already selected OR nothing is selected and this payment method should be |
|
1036 | - // open_by_default |
|
1037 | - if ( |
|
1038 | - ($this->checkout->selected_method_of_payment === $payment_method->slug()) |
|
1039 | - || (! $this->checkout->selected_method_of_payment && $payment_method->open_by_default()) |
|
1040 | - ) { |
|
1041 | - $this->checkout->selected_method_of_payment = $payment_method->slug(); |
|
1042 | - $this->_save_selected_method_of_payment(); |
|
1043 | - $default_payment_method_option[ $payment_method->slug() ] = $payment_method_button; |
|
1044 | - } else { |
|
1045 | - $available_payment_method_options[ $payment_method->slug() ] = $payment_method_button; |
|
1046 | - } |
|
1047 | - $payment_methods_billing_info[ $payment_method->slug() . '-info' ] = |
|
1048 | - $this->_payment_method_billing_info( |
|
1049 | - $payment_method |
|
1050 | - ); |
|
1051 | - } |
|
1052 | - } |
|
1053 | - // prepend available_payment_method_options with default_payment_method_option so that it appears first in list |
|
1054 | - // of PMs |
|
1055 | - $available_payment_method_options = $default_payment_method_option + $available_payment_method_options; |
|
1056 | - // now generate the actual form inputs |
|
1057 | - $available_payment_methods['available_payment_methods'] = $this->_available_payment_method_inputs( |
|
1058 | - $available_payment_method_options |
|
1059 | - ); |
|
1060 | - $available_payment_methods += $payment_methods_billing_info; |
|
1061 | - // build the available payment methods form |
|
1062 | - return new EE_Form_Section_Proper( |
|
1063 | - [ |
|
1064 | - 'html_id' => 'spco-available-methods-of-payment-dv', |
|
1065 | - 'subsections' => $available_payment_methods, |
|
1066 | - 'layout_strategy' => new EE_Div_Per_Section_Layout(), |
|
1067 | - ] |
|
1068 | - ); |
|
1069 | - } |
|
1070 | - |
|
1071 | - |
|
1072 | - /** |
|
1073 | - * _get_available_payment_methods |
|
1074 | - * |
|
1075 | - * @return EE_Payment_Method[] |
|
1076 | - * @throws EE_Error |
|
1077 | - * @throws InvalidArgumentException |
|
1078 | - * @throws InvalidDataTypeException |
|
1079 | - * @throws InvalidInterfaceException |
|
1080 | - */ |
|
1081 | - protected function _get_available_payment_methods() |
|
1082 | - { |
|
1083 | - if (! empty($this->checkout->available_payment_methods)) { |
|
1084 | - return $this->checkout->available_payment_methods; |
|
1085 | - } |
|
1086 | - $available_payment_methods = []; |
|
1087 | - $EEM_Payment_Method = EEM_Payment_Method::instance(); |
|
1088 | - // get all active payment methods |
|
1089 | - $payment_methods = $EEM_Payment_Method->get_all_for_transaction( |
|
1090 | - $this->checkout->transaction, |
|
1091 | - EEM_Payment_Method::scope_cart |
|
1092 | - ); |
|
1093 | - foreach ($payment_methods as $payment_method) { |
|
1094 | - if ($payment_method instanceof EE_Payment_Method) { |
|
1095 | - $available_payment_methods[ $payment_method->slug() ] = $payment_method; |
|
1096 | - } |
|
1097 | - } |
|
1098 | - return $available_payment_methods; |
|
1099 | - } |
|
1100 | - |
|
1101 | - |
|
1102 | - /** |
|
1103 | - * _available_payment_method_inputs |
|
1104 | - * |
|
1105 | - * @access private |
|
1106 | - * @param array $available_payment_method_options |
|
1107 | - * @return EE_Form_Section_Proper |
|
1108 | - * @throws EE_Error |
|
1109 | - * @throws EE_Error |
|
1110 | - */ |
|
1111 | - private function _available_payment_method_inputs($available_payment_method_options = []) |
|
1112 | - { |
|
1113 | - // generate inputs |
|
1114 | - return new EE_Form_Section_Proper( |
|
1115 | - [ |
|
1116 | - 'html_id' => 'ee-available-payment-method-inputs', |
|
1117 | - 'layout_strategy' => new EE_Div_Per_Section_Layout(), |
|
1118 | - 'subsections' => [ |
|
1119 | - '' => new EE_Radio_Button_Input( |
|
1120 | - $available_payment_method_options, |
|
1121 | - [ |
|
1122 | - 'html_name' => 'selected_method_of_payment', |
|
1123 | - 'html_class' => 'spco-payment-method', |
|
1124 | - 'default' => $this->checkout->selected_method_of_payment, |
|
1125 | - 'label_size' => 11, |
|
1126 | - 'enforce_label_size' => true, |
|
1127 | - ] |
|
1128 | - ), |
|
1129 | - ], |
|
1130 | - ] |
|
1131 | - ); |
|
1132 | - } |
|
1133 | - |
|
1134 | - |
|
1135 | - /** |
|
1136 | - * _payment_method_billing_info |
|
1137 | - * |
|
1138 | - * @access private |
|
1139 | - * @param EE_Payment_Method $payment_method |
|
1140 | - * @return EE_Form_Section_Proper |
|
1141 | - * @throws EE_Error |
|
1142 | - * @throws InvalidArgumentException |
|
1143 | - * @throws InvalidDataTypeException |
|
1144 | - * @throws InvalidInterfaceException |
|
1145 | - */ |
|
1146 | - private function _payment_method_billing_info(EE_Payment_Method $payment_method) |
|
1147 | - { |
|
1148 | - $currently_selected = $this->checkout->selected_method_of_payment === $payment_method->slug(); |
|
1149 | - // generate the billing form for payment method |
|
1150 | - $billing_form = $currently_selected |
|
1151 | - ? $this->_get_billing_form_for_payment_method($payment_method) |
|
1152 | - : new EE_Form_Section_HTML(); |
|
1153 | - $this->checkout->billing_form = $currently_selected |
|
1154 | - ? $billing_form |
|
1155 | - : $this->checkout->billing_form; |
|
1156 | - // it's all in the details |
|
1157 | - $info_html = EEH_HTML::h3( |
|
1158 | - esc_html__('Important information regarding your payment', 'event_espresso'), |
|
1159 | - '', |
|
1160 | - 'spco-payment-method-hdr' |
|
1161 | - ); |
|
1162 | - // add some info regarding the step, either from what's saved in the admin, |
|
1163 | - // or a default string depending on whether the PM has a billing form or not |
|
1164 | - if ($payment_method->description()) { |
|
1165 | - $payment_method_info = $payment_method->description(); |
|
1166 | - } elseif ($billing_form instanceof EE_Billing_Info_Form) { |
|
1167 | - $payment_method_info = sprintf( |
|
1168 | - esc_html__( |
|
1169 | - 'Please provide the following billing information, then click the "%1$s" button below in order to proceed.', |
|
1170 | - 'event_espresso' |
|
1171 | - ), |
|
1172 | - $this->submit_button_text() |
|
1173 | - ); |
|
1174 | - } else { |
|
1175 | - $payment_method_info = sprintf( |
|
1176 | - esc_html__('Please click the "%1$s" button below in order to proceed.', 'event_espresso'), |
|
1177 | - $this->submit_button_text() |
|
1178 | - ); |
|
1179 | - } |
|
1180 | - $info_html .= EEH_HTML::div( |
|
1181 | - apply_filters( |
|
1182 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___payment_method_billing_info__payment_method_info', |
|
1183 | - $payment_method_info |
|
1184 | - ), |
|
1185 | - '', |
|
1186 | - 'spco-payment-method-desc ee-attention' |
|
1187 | - ); |
|
1188 | - return new EE_Form_Section_Proper( |
|
1189 | - [ |
|
1190 | - 'html_id' => 'spco-payment-method-info-' . $payment_method->slug(), |
|
1191 | - 'html_class' => 'spco-payment-method-info-dv', |
|
1192 | - // only display the selected or default PM |
|
1193 | - 'html_style' => $currently_selected ? '' : 'display:none;', |
|
1194 | - 'layout_strategy' => new EE_Div_Per_Section_Layout(), |
|
1195 | - 'subsections' => [ |
|
1196 | - 'info' => new EE_Form_Section_HTML($info_html), |
|
1197 | - 'billing_form' => $currently_selected ? $billing_form : new EE_Form_Section_HTML(), |
|
1198 | - ], |
|
1199 | - ] |
|
1200 | - ); |
|
1201 | - } |
|
1202 | - |
|
1203 | - |
|
1204 | - /** |
|
1205 | - * get_billing_form_html_for_payment_method |
|
1206 | - * |
|
1207 | - * @return bool |
|
1208 | - * @throws EE_Error |
|
1209 | - * @throws InvalidArgumentException |
|
1210 | - * @throws ReflectionException |
|
1211 | - * @throws InvalidDataTypeException |
|
1212 | - * @throws InvalidInterfaceException |
|
1213 | - */ |
|
1214 | - public function get_billing_form_html_for_payment_method() |
|
1215 | - { |
|
1216 | - // how have they chosen to pay? |
|
1217 | - $this->checkout->selected_method_of_payment = $this->_get_selected_method_of_payment(true); |
|
1218 | - $this->checkout->payment_method = $this->_get_payment_method_for_selected_method_of_payment(); |
|
1219 | - if (! $this->checkout->payment_method instanceof EE_Payment_Method) { |
|
1220 | - return false; |
|
1221 | - } |
|
1222 | - if ( |
|
1223 | - apply_filters( |
|
1224 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options__registration_checkout__selected_payment_method__display_success', |
|
1225 | - false |
|
1226 | - ) |
|
1227 | - ) { |
|
1228 | - EE_Error::add_success( |
|
1229 | - apply_filters( |
|
1230 | - 'FHEE__Single_Page_Checkout__registration_checkout__selected_payment_method', |
|
1231 | - sprintf( |
|
1232 | - esc_html__( |
|
1233 | - 'You have selected "%s" as your method of payment. Please note the important payment information below.', |
|
1234 | - 'event_espresso' |
|
1235 | - ), |
|
1236 | - $this->checkout->payment_method->name() |
|
1237 | - ) |
|
1238 | - ) |
|
1239 | - ); |
|
1240 | - } |
|
1241 | - // now generate billing form for selected method of payment |
|
1242 | - $payment_method_billing_form = $this->_get_billing_form_for_payment_method($this->checkout->payment_method); |
|
1243 | - // fill form with attendee info if applicable |
|
1244 | - if ( |
|
1245 | - $payment_method_billing_form instanceof EE_Billing_Attendee_Info_Form |
|
1246 | - && $this->checkout->transaction_has_primary_registrant() |
|
1247 | - ) { |
|
1248 | - $payment_method_billing_form->populate_from_attendee( |
|
1249 | - $this->checkout->transaction->primary_registration()->attendee() |
|
1250 | - ); |
|
1251 | - } |
|
1252 | - // and debug content |
|
1253 | - if ( |
|
1254 | - $payment_method_billing_form instanceof EE_Billing_Info_Form |
|
1255 | - && $this->checkout->payment_method->type_obj() instanceof EE_PMT_Base |
|
1256 | - ) { |
|
1257 | - $payment_method_billing_form = |
|
1258 | - $this->checkout->payment_method->type_obj()->apply_billing_form_debug_settings( |
|
1259 | - $payment_method_billing_form |
|
1260 | - ); |
|
1261 | - } |
|
1262 | - $billing_info = $payment_method_billing_form instanceof EE_Form_Section_Proper |
|
1263 | - ? $payment_method_billing_form->get_html() |
|
1264 | - : ''; |
|
1265 | - $this->checkout->json_response->set_return_data(['payment_method_info' => $billing_info]); |
|
1266 | - // localize validation rules for main form |
|
1267 | - $this->checkout->current_step->reg_form->localize_validation_rules(); |
|
1268 | - $this->checkout->json_response->add_validation_rules(EE_Form_Section_Proper::js_localization()); |
|
1269 | - return true; |
|
1270 | - } |
|
1271 | - |
|
1272 | - |
|
1273 | - /** |
|
1274 | - * _get_billing_form_for_payment_method |
|
1275 | - * |
|
1276 | - * @param EE_Payment_Method $payment_method |
|
1277 | - * @return EE_Billing_Info_Form|EE_Form_Section_HTML |
|
1278 | - * @throws EE_Error |
|
1279 | - * @throws InvalidArgumentException |
|
1280 | - * @throws InvalidDataTypeException |
|
1281 | - * @throws InvalidInterfaceException |
|
1282 | - */ |
|
1283 | - private function _get_billing_form_for_payment_method(EE_Payment_Method $payment_method) |
|
1284 | - { |
|
1285 | - $billing_form = $payment_method->type_obj()->billing_form( |
|
1286 | - $this->checkout->transaction, |
|
1287 | - ['amount_owing' => $this->checkout->amount_owing] |
|
1288 | - ); |
|
1289 | - if ($billing_form instanceof EE_Billing_Info_Form) { |
|
1290 | - if ( |
|
1291 | - apply_filters( |
|
1292 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options__registration_checkout__selected_payment_method__display_success', |
|
1293 | - false |
|
1294 | - ) |
|
1295 | - && $this->request->requestParamIsSet('payment_method') |
|
1296 | - ) { |
|
1297 | - EE_Error::add_success( |
|
1298 | - apply_filters( |
|
1299 | - 'FHEE__Single_Page_Checkout__registration_checkout__selected_payment_method', |
|
1300 | - sprintf( |
|
1301 | - esc_html__( |
|
1302 | - 'You have selected "%s" as your method of payment. Please note the important payment information below.', |
|
1303 | - 'event_espresso' |
|
1304 | - ), |
|
1305 | - $payment_method->name() |
|
1306 | - ) |
|
1307 | - ) |
|
1308 | - ); |
|
1309 | - } |
|
1310 | - return apply_filters( |
|
1311 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___get_billing_form_for_payment_method__billing_form', |
|
1312 | - $billing_form, |
|
1313 | - $payment_method |
|
1314 | - ); |
|
1315 | - } |
|
1316 | - // no actual billing form, so return empty HTML form section |
|
1317 | - return new EE_Form_Section_HTML(); |
|
1318 | - } |
|
1319 | - |
|
1320 | - |
|
1321 | - /** |
|
1322 | - * _get_selected_method_of_payment |
|
1323 | - * |
|
1324 | - * @param boolean $required whether to throw an error if the "selected_method_of_payment" |
|
1325 | - * is not found in the incoming request |
|
1326 | - * @param string $request_param |
|
1327 | - * @return NULL|string |
|
1328 | - * @throws EE_Error |
|
1329 | - * @throws InvalidArgumentException |
|
1330 | - * @throws InvalidDataTypeException |
|
1331 | - * @throws InvalidInterfaceException |
|
1332 | - */ |
|
1333 | - private function _get_selected_method_of_payment( |
|
1334 | - $required = false, |
|
1335 | - $request_param = 'selected_method_of_payment' |
|
1336 | - ) { |
|
1337 | - // is selected_method_of_payment set in the request ? |
|
1338 | - $selected_method_of_payment = $this->request->getRequestParam($request_param); |
|
1339 | - if ($selected_method_of_payment) { |
|
1340 | - // sanitize it |
|
1341 | - $selected_method_of_payment = is_array($selected_method_of_payment) |
|
1342 | - ? array_shift($selected_method_of_payment) |
|
1343 | - : $selected_method_of_payment; |
|
1344 | - $selected_method_of_payment = sanitize_text_field($selected_method_of_payment); |
|
1345 | - // store it in the session so that it's available for all subsequent requests including AJAX |
|
1346 | - $this->_save_selected_method_of_payment($selected_method_of_payment); |
|
1347 | - } else { |
|
1348 | - // or is is set in the session ? |
|
1349 | - $selected_method_of_payment = EE_Registry::instance()->SSN->get_session_data( |
|
1350 | - 'selected_method_of_payment' |
|
1351 | - ); |
|
1352 | - } |
|
1353 | - // do ya really really gotta have it? |
|
1354 | - if (empty($selected_method_of_payment) && $required) { |
|
1355 | - EE_Error::add_error( |
|
1356 | - sprintf( |
|
1357 | - esc_html__( |
|
1358 | - 'The selected method of payment could not be determined.%sPlease ensure that you have selected one before proceeding.%sIf you continue to experience difficulties, then refresh your browser and try again, or contact %s for assistance.', |
|
1359 | - 'event_espresso' |
|
1360 | - ), |
|
1361 | - '<br/>', |
|
1362 | - '<br/>', |
|
1363 | - EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
1364 | - ), |
|
1365 | - __FILE__, |
|
1366 | - __FUNCTION__, |
|
1367 | - __LINE__ |
|
1368 | - ); |
|
1369 | - return null; |
|
1370 | - } |
|
1371 | - return $selected_method_of_payment; |
|
1372 | - } |
|
1373 | - |
|
1374 | - |
|
1375 | - |
|
1376 | - |
|
1377 | - |
|
1378 | - |
|
1379 | - /********************************************************************************************************/ |
|
1380 | - /*********************************** SWITCH PAYMENT METHOD ************************************/ |
|
1381 | - /********************************************************************************************************/ |
|
1382 | - /** |
|
1383 | - * switch_payment_method |
|
1384 | - * |
|
1385 | - * @return bool |
|
1386 | - * @throws EE_Error |
|
1387 | - * @throws InvalidArgumentException |
|
1388 | - * @throws InvalidDataTypeException |
|
1389 | - * @throws InvalidInterfaceException |
|
1390 | - * @throws ReflectionException |
|
1391 | - */ |
|
1392 | - public function switch_payment_method() |
|
1393 | - { |
|
1394 | - if (! $this->_verify_payment_method_is_set()) { |
|
1395 | - return false; |
|
1396 | - } |
|
1397 | - if ( |
|
1398 | - apply_filters( |
|
1399 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options__registration_checkout__selected_payment_method__display_success', |
|
1400 | - false |
|
1401 | - ) |
|
1402 | - ) { |
|
1403 | - EE_Error::add_success( |
|
1404 | - apply_filters( |
|
1405 | - 'FHEE__Single_Page_Checkout__registration_checkout__selected_payment_method', |
|
1406 | - sprintf( |
|
1407 | - esc_html__( |
|
1408 | - 'You have selected "%s" as your method of payment. Please note the important payment information below.', |
|
1409 | - 'event_espresso' |
|
1410 | - ), |
|
1411 | - $this->checkout->payment_method->name() |
|
1412 | - ) |
|
1413 | - ) |
|
1414 | - ); |
|
1415 | - } |
|
1416 | - // generate billing form for selected method of payment if it hasn't been done already |
|
1417 | - if ($this->checkout->payment_method->type_obj()->has_billing_form()) { |
|
1418 | - $this->checkout->billing_form = $this->_get_billing_form_for_payment_method( |
|
1419 | - $this->checkout->payment_method |
|
1420 | - ); |
|
1421 | - } |
|
1422 | - // fill form with attendee info if applicable |
|
1423 | - if ( |
|
1424 | - apply_filters( |
|
1425 | - 'FHEE__populate_billing_form_fields_from_attendee', |
|
1426 | - ( |
|
1427 | - $this->checkout->billing_form instanceof EE_Billing_Attendee_Info_Form |
|
1428 | - && $this->checkout->transaction_has_primary_registrant() |
|
1429 | - ), |
|
1430 | - $this->checkout->billing_form, |
|
1431 | - $this->checkout->transaction |
|
1432 | - ) |
|
1433 | - ) { |
|
1434 | - $this->checkout->billing_form->populate_from_attendee( |
|
1435 | - $this->checkout->transaction->primary_registration()->attendee() |
|
1436 | - ); |
|
1437 | - } |
|
1438 | - // and debug content |
|
1439 | - if ( |
|
1440 | - $this->checkout->billing_form instanceof EE_Billing_Info_Form |
|
1441 | - && $this->checkout->payment_method->type_obj() instanceof EE_PMT_Base |
|
1442 | - ) { |
|
1443 | - $this->checkout->billing_form = |
|
1444 | - $this->checkout->payment_method->type_obj()->apply_billing_form_debug_settings( |
|
1445 | - $this->checkout->billing_form |
|
1446 | - ); |
|
1447 | - } |
|
1448 | - // get html and validation rules for form |
|
1449 | - if ($this->checkout->billing_form instanceof EE_Form_Section_Proper) { |
|
1450 | - $this->checkout->json_response->set_return_data( |
|
1451 | - ['payment_method_info' => $this->checkout->billing_form->get_html()] |
|
1452 | - ); |
|
1453 | - // localize validation rules for main form |
|
1454 | - $this->checkout->billing_form->localize_validation_rules(true); |
|
1455 | - $this->checkout->json_response->add_validation_rules(EE_Form_Section_Proper::js_localization()); |
|
1456 | - } else { |
|
1457 | - $this->checkout->json_response->set_return_data(['payment_method_info' => '']); |
|
1458 | - } |
|
1459 | - // prevents advancement to next step |
|
1460 | - $this->checkout->continue_reg = false; |
|
1461 | - return true; |
|
1462 | - } |
|
1463 | - |
|
1464 | - |
|
1465 | - /** |
|
1466 | - * _verify_payment_method_is_set |
|
1467 | - * |
|
1468 | - * @return bool |
|
1469 | - * @throws EE_Error |
|
1470 | - * @throws InvalidArgumentException |
|
1471 | - * @throws ReflectionException |
|
1472 | - * @throws InvalidDataTypeException |
|
1473 | - * @throws InvalidInterfaceException |
|
1474 | - */ |
|
1475 | - protected function _verify_payment_method_is_set() |
|
1476 | - { |
|
1477 | - // generate billing form for selected method of payment if it hasn't been done already |
|
1478 | - if (empty($this->checkout->selected_method_of_payment)) { |
|
1479 | - // how have they chosen to pay? |
|
1480 | - $this->checkout->selected_method_of_payment = $this->_get_selected_method_of_payment(true); |
|
1481 | - } else { |
|
1482 | - // choose your own adventure based on method_of_payment |
|
1483 | - switch ($this->checkout->selected_method_of_payment) { |
|
1484 | - case 'events_sold_out': |
|
1485 | - EE_Error::add_attention( |
|
1486 | - apply_filters( |
|
1487 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___verify_payment_method_is_set__sold_out_events_msg', |
|
1488 | - esc_html__( |
|
1489 | - 'It appears that the event you were about to make a payment for has sold out since this form first loaded. Please contact the event administrator if you believe this is an error.', |
|
1490 | - 'event_espresso' |
|
1491 | - ) |
|
1492 | - ), |
|
1493 | - __FILE__, |
|
1494 | - __FUNCTION__, |
|
1495 | - __LINE__ |
|
1496 | - ); |
|
1497 | - return false; |
|
1498 | - case 'payments_closed': |
|
1499 | - EE_Error::add_attention( |
|
1500 | - apply_filters( |
|
1501 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___verify_payment_method_is_set__payments_closed_msg', |
|
1502 | - esc_html__( |
|
1503 | - 'It appears that the event you were about to make a payment for is not accepting payments at this time. Please contact the event administrator if you believe this is an error.', |
|
1504 | - 'event_espresso' |
|
1505 | - ) |
|
1506 | - ), |
|
1507 | - __FILE__, |
|
1508 | - __FUNCTION__, |
|
1509 | - __LINE__ |
|
1510 | - ); |
|
1511 | - return false; |
|
1512 | - case 'no_payment_required': |
|
1513 | - EE_Error::add_attention( |
|
1514 | - apply_filters( |
|
1515 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___verify_payment_method_is_set__no_payment_required_msg', |
|
1516 | - esc_html__( |
|
1517 | - 'It appears that the event you were about to make a payment for does not require payment. Please contact the event administrator if you believe this is an error.', |
|
1518 | - 'event_espresso' |
|
1519 | - ) |
|
1520 | - ), |
|
1521 | - __FILE__, |
|
1522 | - __FUNCTION__, |
|
1523 | - __LINE__ |
|
1524 | - ); |
|
1525 | - return false; |
|
1526 | - default: |
|
1527 | - } |
|
1528 | - } |
|
1529 | - // verify payment method |
|
1530 | - if (! $this->checkout->payment_method instanceof EE_Payment_Method) { |
|
1531 | - // get payment method for selected method of payment |
|
1532 | - $this->checkout->payment_method = $this->_get_payment_method_for_selected_method_of_payment(); |
|
1533 | - } |
|
1534 | - return $this->checkout->payment_method instanceof EE_Payment_Method; |
|
1535 | - } |
|
1536 | - |
|
1537 | - |
|
1538 | - |
|
1539 | - /********************************************************************************************************/ |
|
1540 | - /*************************************** SAVE PAYER DETAILS ****************************************/ |
|
1541 | - /********************************************************************************************************/ |
|
1542 | - /** |
|
1543 | - * save_payer_details_via_ajax |
|
1544 | - * |
|
1545 | - * @return void |
|
1546 | - * @throws EE_Error |
|
1547 | - * @throws InvalidArgumentException |
|
1548 | - * @throws ReflectionException |
|
1549 | - * @throws RuntimeException |
|
1550 | - * @throws InvalidDataTypeException |
|
1551 | - * @throws InvalidInterfaceException |
|
1552 | - */ |
|
1553 | - public function save_payer_details_via_ajax() |
|
1554 | - { |
|
1555 | - if (! $this->_verify_payment_method_is_set()) { |
|
1556 | - return; |
|
1557 | - } |
|
1558 | - // generate billing form for selected method of payment if it hasn't been done already |
|
1559 | - if ($this->checkout->payment_method->type_obj()->has_billing_form()) { |
|
1560 | - $this->checkout->billing_form = $this->_get_billing_form_for_payment_method( |
|
1561 | - $this->checkout->payment_method |
|
1562 | - ); |
|
1563 | - } |
|
1564 | - // generate primary attendee from payer info if applicable |
|
1565 | - if (! $this->checkout->transaction_has_primary_registrant()) { |
|
1566 | - $attendee = $this->_create_attendee_from_request_data(); |
|
1567 | - if ($attendee instanceof EE_Attendee) { |
|
1568 | - foreach ($this->checkout->transaction->registrations() as $registration) { |
|
1569 | - if ($registration->is_primary_registrant()) { |
|
1570 | - $this->checkout->primary_attendee_obj = $attendee; |
|
1571 | - $registration->_add_relation_to($attendee, 'Attendee'); |
|
1572 | - $registration->set_attendee_id($attendee->ID()); |
|
1573 | - $registration->update_cache_after_object_save('Attendee', $attendee); |
|
1574 | - } |
|
1575 | - } |
|
1576 | - } |
|
1577 | - } |
|
1578 | - } |
|
1579 | - |
|
1580 | - |
|
1581 | - /** |
|
1582 | - * create_attendee_from_request_data |
|
1583 | - * uses info from alternate GET or POST data (such as AJAX) to create a new attendee |
|
1584 | - * |
|
1585 | - * @return EE_Attendee |
|
1586 | - * @throws EE_Error |
|
1587 | - * @throws InvalidArgumentException |
|
1588 | - * @throws ReflectionException |
|
1589 | - * @throws InvalidDataTypeException |
|
1590 | - * @throws InvalidInterfaceException |
|
1591 | - */ |
|
1592 | - protected function _create_attendee_from_request_data() |
|
1593 | - { |
|
1594 | - // get State ID |
|
1595 | - $STA_ID = $this->request->getRequestParam('state'); |
|
1596 | - if (! empty($STA_ID)) { |
|
1597 | - // can we get state object from name ? |
|
1598 | - EE_Registry::instance()->load_model('State'); |
|
1599 | - $state = EEM_State::instance()->get_col([['STA_name' => $STA_ID], 'limit' => 1], 'STA_ID'); |
|
1600 | - $STA_ID = is_array($state) && ! empty($state) ? reset($state) : $STA_ID; |
|
1601 | - } |
|
1602 | - // get Country ISO |
|
1603 | - $CNT_ISO = $this->request->getRequestParam('country'); |
|
1604 | - if (! empty($CNT_ISO)) { |
|
1605 | - // can we get country object from name ? |
|
1606 | - EE_Registry::instance()->load_model('Country'); |
|
1607 | - $country = EEM_Country::instance()->get_col( |
|
1608 | - [['CNT_name' => $CNT_ISO], 'limit' => 1], |
|
1609 | - 'CNT_ISO' |
|
1610 | - ); |
|
1611 | - $CNT_ISO = is_array($country) && ! empty($country) ? reset($country) : $CNT_ISO; |
|
1612 | - } |
|
1613 | - // grab attendee data |
|
1614 | - $attendee_data = [ |
|
1615 | - 'ATT_fname' => $this->request->getRequestParam('first_name'), |
|
1616 | - 'ATT_lname' => $this->request->getRequestParam('last_name'), |
|
1617 | - 'ATT_email' => $this->request->getRequestParam('email'), |
|
1618 | - 'ATT_address' => $this->request->getRequestParam('address'), |
|
1619 | - 'ATT_address2' => $this->request->getRequestParam('address2'), |
|
1620 | - 'ATT_city' => $this->request->getRequestParam('city'), |
|
1621 | - 'STA_ID' => $STA_ID, |
|
1622 | - 'CNT_ISO' => $CNT_ISO, |
|
1623 | - 'ATT_zip' => $this->request->getRequestParam('zip'), |
|
1624 | - 'ATT_phone' => $this->request->getRequestParam('phone'), |
|
1625 | - ]; |
|
1626 | - // validate the email address since it is the most important piece of info |
|
1627 | - if (empty($attendee_data['ATT_email'])) { |
|
1628 | - EE_Error::add_error( |
|
1629 | - esc_html__('An invalid email address was submitted.', 'event_espresso'), |
|
1630 | - __FILE__, |
|
1631 | - __FUNCTION__, |
|
1632 | - __LINE__ |
|
1633 | - ); |
|
1634 | - } |
|
1635 | - // does this attendee already exist in the db ? we're searching using a combination of first name, last name, |
|
1636 | - // AND email address |
|
1637 | - if ( |
|
1638 | - ! empty($attendee_data['ATT_fname']) |
|
1639 | - && ! empty($attendee_data['ATT_lname']) |
|
1640 | - && ! empty($attendee_data['ATT_email']) |
|
1641 | - ) { |
|
1642 | - $existing_attendee = EEM_Attendee::instance()->find_existing_attendee( |
|
1643 | - [ |
|
1644 | - 'ATT_fname' => $attendee_data['ATT_fname'], |
|
1645 | - 'ATT_lname' => $attendee_data['ATT_lname'], |
|
1646 | - 'ATT_email' => $attendee_data['ATT_email'], |
|
1647 | - ] |
|
1648 | - ); |
|
1649 | - if ($existing_attendee instanceof EE_Attendee) { |
|
1650 | - return $existing_attendee; |
|
1651 | - } |
|
1652 | - } |
|
1653 | - // no existing attendee? kk let's create a new one |
|
1654 | - // kinda lame, but we need a first and last name to create an attendee, so use the email address if those |
|
1655 | - // don't exist |
|
1656 | - $attendee_data['ATT_fname'] = ! empty($attendee_data['ATT_fname']) |
|
1657 | - ? $attendee_data['ATT_fname'] |
|
1658 | - : $attendee_data['ATT_email']; |
|
1659 | - $attendee_data['ATT_lname'] = ! empty($attendee_data['ATT_lname']) |
|
1660 | - ? $attendee_data['ATT_lname'] |
|
1661 | - : $attendee_data['ATT_email']; |
|
1662 | - return EE_Attendee::new_instance($attendee_data); |
|
1663 | - } |
|
1664 | - |
|
1665 | - |
|
1666 | - |
|
1667 | - /********************************************************************************************************/ |
|
1668 | - /**************************************** PROCESS REG STEP *****************************************/ |
|
1669 | - /********************************************************************************************************/ |
|
1670 | - /** |
|
1671 | - * process_reg_step |
|
1672 | - * |
|
1673 | - * @return bool |
|
1674 | - * @throws EE_Error |
|
1675 | - * @throws InvalidArgumentException |
|
1676 | - * @throws ReflectionException |
|
1677 | - * @throws EntityNotFoundException |
|
1678 | - * @throws InvalidDataTypeException |
|
1679 | - * @throws InvalidInterfaceException |
|
1680 | - * @throws InvalidStatusException |
|
1681 | - */ |
|
1682 | - public function process_reg_step() |
|
1683 | - { |
|
1684 | - // how have they chosen to pay? |
|
1685 | - $this->checkout->selected_method_of_payment = $this->checkout->transaction->is_free() |
|
1686 | - ? 'no_payment_required' |
|
1687 | - : $this->_get_selected_method_of_payment(true); |
|
1688 | - // choose your own adventure based on method_of_payment |
|
1689 | - switch ($this->checkout->selected_method_of_payment) { |
|
1690 | - case 'events_sold_out': |
|
1691 | - $this->checkout->redirect = true; |
|
1692 | - $this->checkout->redirect_url = $this->checkout->cancel_page_url; |
|
1693 | - $this->checkout->json_response->set_redirect_url($this->checkout->redirect_url); |
|
1694 | - // mark this reg step as completed |
|
1695 | - $this->set_completed(); |
|
1696 | - return false; |
|
1697 | - |
|
1698 | - case 'payments_closed': |
|
1699 | - if ( |
|
1700 | - apply_filters( |
|
1701 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options__process_reg_step__payments_closed__display_success', |
|
1702 | - false |
|
1703 | - ) |
|
1704 | - ) { |
|
1705 | - EE_Error::add_success( |
|
1706 | - esc_html__('no payment required at this time.', 'event_espresso'), |
|
1707 | - __FILE__, |
|
1708 | - __FUNCTION__, |
|
1709 | - __LINE__ |
|
1710 | - ); |
|
1711 | - } |
|
1712 | - // mark this reg step as completed |
|
1713 | - $this->set_completed(); |
|
1714 | - return true; |
|
1715 | - |
|
1716 | - case 'no_payment_required': |
|
1717 | - if ( |
|
1718 | - apply_filters( |
|
1719 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options__process_reg_step__no_payment_required__display_success', |
|
1720 | - false |
|
1721 | - ) |
|
1722 | - ) { |
|
1723 | - EE_Error::add_success( |
|
1724 | - esc_html__('no payment required.', 'event_espresso'), |
|
1725 | - __FILE__, |
|
1726 | - __FUNCTION__, |
|
1727 | - __LINE__ |
|
1728 | - ); |
|
1729 | - } |
|
1730 | - // mark this reg step as completed |
|
1731 | - $this->set_completed(); |
|
1732 | - return true; |
|
1733 | - |
|
1734 | - default: |
|
1735 | - $registrations = EE_Registry::instance()->SSN->checkout()->transaction->registrations( |
|
1736 | - EE_Registry::instance()->SSN->checkout()->reg_cache_where_params |
|
1737 | - ); |
|
1738 | - $ejected_registrations = EE_SPCO_Reg_Step_Payment_Options::find_registrations_that_lost_their_space( |
|
1739 | - $registrations, |
|
1740 | - EE_Registry::instance()->SSN->checkout()->revisit |
|
1741 | - ); |
|
1742 | - // calculate difference between the two arrays |
|
1743 | - $registrations = array_diff($registrations, $ejected_registrations); |
|
1744 | - if (empty($registrations)) { |
|
1745 | - $this->_redirect_because_event_sold_out(); |
|
1746 | - return false; |
|
1747 | - } |
|
1748 | - $payment = $this->_process_payment(); |
|
1749 | - if ($payment instanceof EE_Payment) { |
|
1750 | - $this->checkout->continue_reg = true; |
|
1751 | - $this->_maybe_set_completed($payment); |
|
1752 | - } else { |
|
1753 | - $this->checkout->continue_reg = false; |
|
1754 | - } |
|
1755 | - return $payment instanceof EE_Payment; |
|
1756 | - } |
|
1757 | - } |
|
1758 | - |
|
1759 | - |
|
1760 | - /** |
|
1761 | - * _redirect_because_event_sold_out |
|
1762 | - * |
|
1763 | - * @return void |
|
1764 | - */ |
|
1765 | - protected function _redirect_because_event_sold_out() |
|
1766 | - { |
|
1767 | - $this->checkout->continue_reg = false; |
|
1768 | - // set redirect URL |
|
1769 | - $this->checkout->redirect_url = add_query_arg( |
|
1770 | - ['e_reg_url_link' => $this->checkout->reg_url_link], |
|
1771 | - $this->checkout->current_step->reg_step_url() |
|
1772 | - ); |
|
1773 | - $this->checkout->json_response->set_redirect_url($this->checkout->redirect_url); |
|
1774 | - } |
|
1775 | - |
|
1776 | - |
|
1777 | - /** |
|
1778 | - * @param EE_Payment $payment |
|
1779 | - * @return void |
|
1780 | - * @throws EE_Error |
|
1781 | - */ |
|
1782 | - protected function _maybe_set_completed(EE_Payment $payment) |
|
1783 | - { |
|
1784 | - // Do we need to redirect them? If so, there's more work to be done. |
|
1785 | - if (! $payment->redirect_url()) { |
|
1786 | - $this->set_completed(); |
|
1787 | - } |
|
1788 | - } |
|
1789 | - |
|
1790 | - |
|
1791 | - /** |
|
1792 | - * update_reg_step |
|
1793 | - * this is the final step after a user revisits the site to retry a payment |
|
1794 | - * |
|
1795 | - * @return bool |
|
1796 | - * @throws EE_Error |
|
1797 | - * @throws InvalidArgumentException |
|
1798 | - * @throws ReflectionException |
|
1799 | - * @throws EntityNotFoundException |
|
1800 | - * @throws InvalidDataTypeException |
|
1801 | - * @throws InvalidInterfaceException |
|
1802 | - * @throws InvalidStatusException |
|
1803 | - */ |
|
1804 | - public function update_reg_step() |
|
1805 | - { |
|
1806 | - $success = true; |
|
1807 | - // if payment required |
|
1808 | - if ($this->checkout->transaction->total() > 0) { |
|
1809 | - do_action( |
|
1810 | - 'AHEE__EE_Single_Page_Checkout__process_finalize_registration__before_gateway', |
|
1811 | - $this->checkout->transaction |
|
1812 | - ); |
|
1813 | - // attempt payment via payment method |
|
1814 | - $success = $this->process_reg_step(); |
|
1815 | - } |
|
1816 | - if ($success && ! $this->checkout->redirect) { |
|
1817 | - $this->checkout->cart->get_grand_total()->save_this_and_descendants_to_txn( |
|
1818 | - $this->checkout->transaction->ID() |
|
1819 | - ); |
|
1820 | - // set return URL |
|
1821 | - $this->checkout->redirect_url = add_query_arg( |
|
1822 | - ['e_reg_url_link' => $this->checkout->reg_url_link], |
|
1823 | - $this->checkout->thank_you_page_url |
|
1824 | - ); |
|
1825 | - } |
|
1826 | - return $success; |
|
1827 | - } |
|
1828 | - |
|
1829 | - |
|
1830 | - /** |
|
1831 | - * @return EE_Payment|null |
|
1832 | - * @throws EE_Error |
|
1833 | - * @throws InvalidArgumentException |
|
1834 | - * @throws ReflectionException |
|
1835 | - * @throws RuntimeException |
|
1836 | - * @throws InvalidDataTypeException |
|
1837 | - * @throws InvalidInterfaceException |
|
1838 | - */ |
|
1839 | - private function _process_payment() |
|
1840 | - { |
|
1841 | - // basically confirm that the event hasn't sold out since they hit the page |
|
1842 | - if (! $this->_last_second_ticket_verifications()) { |
|
1843 | - return null; |
|
1844 | - } |
|
1845 | - // ya gotta make a choice man |
|
1846 | - if (empty($this->checkout->selected_method_of_payment)) { |
|
1847 | - $this->checkout->json_response->set_plz_select_method_of_payment( |
|
1848 | - esc_html__('Please select a method of payment before proceeding.', 'event_espresso') |
|
1849 | - ); |
|
1850 | - return null; |
|
1851 | - } |
|
1852 | - // get EE_Payment_Method object |
|
1853 | - if (! $this->checkout->payment_method = $this->_get_payment_method_for_selected_method_of_payment()) { |
|
1854 | - return null; |
|
1855 | - } |
|
1856 | - // setup billing form |
|
1857 | - if ($this->checkout->payment_method->type_obj()->has_billing_form()) { |
|
1858 | - $this->checkout->billing_form = $this->_get_billing_form_for_payment_method( |
|
1859 | - $this->checkout->payment_method |
|
1860 | - ); |
|
1861 | - // bad billing form ? |
|
1862 | - if (! $this->_billing_form_is_valid()) { |
|
1863 | - return null; |
|
1864 | - } |
|
1865 | - } |
|
1866 | - // ensure primary registrant has been fully processed |
|
1867 | - if (! $this->_setup_primary_registrant_prior_to_payment()) { |
|
1868 | - return null; |
|
1869 | - } |
|
1870 | - // if session is close to expiring (under 10 minutes by default) |
|
1871 | - if ((time() - EE_Registry::instance()->SSN->expiration()) < EE_Registry::instance()->SSN->extension()) { |
|
1872 | - // add some time to session expiration so that payment can be completed |
|
1873 | - EE_Registry::instance()->SSN->extend_expiration(); |
|
1874 | - } |
|
1875 | - /** @type EE_Transaction_Processor $transaction_processor */ |
|
1876 | - // $transaction_processor = EE_Registry::instance()->load_class( 'Transaction_Processor' ); |
|
1877 | - // in case a registrant leaves to an Off-Site Gateway and never returns, we want to approve any registrations |
|
1878 | - // for events with a default reg status of Approved |
|
1879 | - // $transaction_processor->toggle_registration_statuses_for_default_approved_events( |
|
1880 | - // $this->checkout->transaction, $this->checkout->reg_cache_where_params |
|
1881 | - // ); |
|
1882 | - // attempt payment |
|
1883 | - $payment = $this->_attempt_payment($this->checkout->payment_method); |
|
1884 | - // process results |
|
1885 | - $payment = $this->_validate_payment($payment); |
|
1886 | - $payment = $this->_post_payment_processing($payment); |
|
1887 | - // verify payment |
|
1888 | - if ($payment instanceof EE_Payment) { |
|
1889 | - // store that for later |
|
1890 | - $this->checkout->payment = $payment; |
|
1891 | - // we can also consider the TXN to not have been failed, so temporarily upgrade it's status to abandoned |
|
1892 | - $this->checkout->transaction->toggle_failed_transaction_status(); |
|
1893 | - $payment_status = $payment->status(); |
|
1894 | - if ( |
|
1895 | - $payment_status === EEM_Payment::status_id_approved |
|
1896 | - || $payment_status === EEM_Payment::status_id_pending |
|
1897 | - ) { |
|
1898 | - return $payment; |
|
1899 | - } |
|
1900 | - return null; |
|
1901 | - } |
|
1902 | - if ($payment === true) { |
|
1903 | - // please note that offline payment methods will NOT make a payment, |
|
1904 | - // but instead just mark themselves as the PMD_ID on the transaction, and return true |
|
1905 | - $this->checkout->payment = $payment; |
|
1906 | - return $payment; |
|
1907 | - } |
|
1908 | - // where's my money? |
|
1909 | - return null; |
|
1910 | - } |
|
1911 | - |
|
1912 | - |
|
1913 | - /** |
|
1914 | - * _last_second_ticket_verifications |
|
1915 | - * |
|
1916 | - * @return bool |
|
1917 | - * @throws EE_Error |
|
1918 | - * @throws ReflectionException |
|
1919 | - */ |
|
1920 | - protected function _last_second_ticket_verifications() |
|
1921 | - { |
|
1922 | - // don't bother re-validating if not a return visit |
|
1923 | - if (! $this->checkout->revisit) { |
|
1924 | - return true; |
|
1925 | - } |
|
1926 | - $registrations = $this->checkout->transaction->registrations(); |
|
1927 | - if (empty($registrations)) { |
|
1928 | - return false; |
|
1929 | - } |
|
1930 | - foreach ($registrations as $registration) { |
|
1931 | - if ($registration instanceof EE_Registration && ! $registration->is_approved()) { |
|
1932 | - $event = $registration->event_obj(); |
|
1933 | - if ($event instanceof EE_Event && $event->is_sold_out(true)) { |
|
1934 | - EE_Error::add_error( |
|
1935 | - apply_filters( |
|
1936 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___last_second_ticket_verifications__sold_out_events_msg', |
|
1937 | - sprintf( |
|
1938 | - esc_html__( |
|
1939 | - 'It appears that the %1$s event that you were about to make a payment for has sold out since you first registered and/or arrived at this page. Please refresh the page and try again. If you have already made a partial payment towards this event, please contact the event administrator for a refund.', |
|
1940 | - 'event_espresso' |
|
1941 | - ), |
|
1942 | - $event->name() |
|
1943 | - ) |
|
1944 | - ), |
|
1945 | - __FILE__, |
|
1946 | - __FUNCTION__, |
|
1947 | - __LINE__ |
|
1948 | - ); |
|
1949 | - return false; |
|
1950 | - } |
|
1951 | - } |
|
1952 | - } |
|
1953 | - return true; |
|
1954 | - } |
|
1955 | - |
|
1956 | - |
|
1957 | - /** |
|
1958 | - * redirect_form |
|
1959 | - * |
|
1960 | - * @return bool |
|
1961 | - * @throws EE_Error |
|
1962 | - * @throws InvalidArgumentException |
|
1963 | - * @throws ReflectionException |
|
1964 | - * @throws InvalidDataTypeException |
|
1965 | - * @throws InvalidInterfaceException |
|
1966 | - */ |
|
1967 | - public function redirect_form() |
|
1968 | - { |
|
1969 | - $payment_method_billing_info = $this->_payment_method_billing_info( |
|
1970 | - $this->_get_payment_method_for_selected_method_of_payment() |
|
1971 | - ); |
|
1972 | - $html = $payment_method_billing_info->get_html(); |
|
1973 | - $html .= $this->checkout->redirect_form; |
|
1974 | - /** @var ResponseInterface $response */ |
|
1975 | - $response = LoaderFactory::getLoader()->getShared(ResponseInterface::class); |
|
1976 | - $response->addOutput($html); |
|
1977 | - return true; |
|
1978 | - } |
|
1979 | - |
|
1980 | - |
|
1981 | - /** |
|
1982 | - * _billing_form_is_valid |
|
1983 | - * |
|
1984 | - * @return bool |
|
1985 | - * @throws EE_Error |
|
1986 | - */ |
|
1987 | - private function _billing_form_is_valid() |
|
1988 | - { |
|
1989 | - if (! $this->checkout->payment_method->type_obj()->has_billing_form()) { |
|
1990 | - return true; |
|
1991 | - } |
|
1992 | - if ($this->checkout->billing_form instanceof EE_Billing_Info_Form) { |
|
1993 | - if ($this->checkout->billing_form->was_submitted()) { |
|
1994 | - $this->checkout->billing_form->receive_form_submission(); |
|
1995 | - if ($this->checkout->billing_form->is_valid()) { |
|
1996 | - return true; |
|
1997 | - } |
|
1998 | - $validation_errors = $this->checkout->billing_form->get_validation_errors_accumulated(); |
|
1999 | - $error_strings = []; |
|
2000 | - foreach ($validation_errors as $validation_error) { |
|
2001 | - if ($validation_error instanceof EE_Validation_Error) { |
|
2002 | - $form_section = $validation_error->get_form_section(); |
|
2003 | - if ($form_section instanceof EE_Form_Input_Base) { |
|
2004 | - $label = $form_section->html_label_text(); |
|
2005 | - } elseif ($form_section instanceof EE_Form_Section_Base) { |
|
2006 | - $label = $form_section->name(); |
|
2007 | - } else { |
|
2008 | - $label = esc_html__('Validation Error', 'event_espresso'); |
|
2009 | - } |
|
2010 | - $error_strings[] = sprintf('%1$s: %2$s', $label, $validation_error->getMessage()); |
|
2011 | - } |
|
2012 | - } |
|
2013 | - EE_Error::add_error( |
|
2014 | - sprintf( |
|
2015 | - esc_html__( |
|
2016 | - 'One or more billing form inputs are invalid and require correction before proceeding. %1$s %2$s', |
|
2017 | - 'event_espresso' |
|
2018 | - ), |
|
2019 | - '<br/>', |
|
2020 | - implode('<br/>', $error_strings) |
|
2021 | - ), |
|
2022 | - __FILE__, |
|
2023 | - __FUNCTION__, |
|
2024 | - __LINE__ |
|
2025 | - ); |
|
2026 | - } else { |
|
2027 | - EE_Error::add_error( |
|
2028 | - esc_html__( |
|
2029 | - 'The billing form was not submitted or something prevented it\'s submission.', |
|
2030 | - 'event_espresso' |
|
2031 | - ), |
|
2032 | - __FILE__, |
|
2033 | - __FUNCTION__, |
|
2034 | - __LINE__ |
|
2035 | - ); |
|
2036 | - } |
|
2037 | - } else { |
|
2038 | - EE_Error::add_error( |
|
2039 | - esc_html__( |
|
2040 | - 'The submitted billing form is invalid possibly due to a technical reason.', |
|
2041 | - 'event_espresso' |
|
2042 | - ), |
|
2043 | - __FILE__, |
|
2044 | - __FUNCTION__, |
|
2045 | - __LINE__ |
|
2046 | - ); |
|
2047 | - } |
|
2048 | - return false; |
|
2049 | - } |
|
2050 | - |
|
2051 | - |
|
2052 | - /** |
|
2053 | - * _setup_primary_registrant_prior_to_payment |
|
2054 | - * ensures that the primary registrant has a valid attendee object created with the critical details populated |
|
2055 | - * (first & last name & email) and that both the transaction object and primary registration object have been saved |
|
2056 | - * plz note that any other registrations will NOT be saved at this point (because they may not have any details |
|
2057 | - * yet) |
|
2058 | - * |
|
2059 | - * @return bool |
|
2060 | - * @throws EE_Error |
|
2061 | - * @throws InvalidArgumentException |
|
2062 | - * @throws ReflectionException |
|
2063 | - * @throws RuntimeException |
|
2064 | - * @throws InvalidDataTypeException |
|
2065 | - * @throws InvalidInterfaceException |
|
2066 | - */ |
|
2067 | - private function _setup_primary_registrant_prior_to_payment() |
|
2068 | - { |
|
2069 | - // check if transaction has a primary registrant and that it has a related Attendee object |
|
2070 | - // if not, then we need to at least gather some primary registrant data before attempting payment |
|
2071 | - if ( |
|
2072 | - $this->checkout->billing_form instanceof EE_Billing_Attendee_Info_Form |
|
2073 | - && ! $this->checkout->transaction_has_primary_registrant() |
|
2074 | - && ! $this->_capture_primary_registration_data_from_billing_form() |
|
2075 | - ) { |
|
2076 | - return false; |
|
2077 | - } |
|
2078 | - // because saving an object clears it's cache, we need to do the chevy shuffle |
|
2079 | - // grab the primary_registration object |
|
2080 | - $primary_registration = $this->checkout->transaction->primary_registration(); |
|
2081 | - // at this point we'll consider a TXN to not have been failed |
|
2082 | - $this->checkout->transaction->toggle_failed_transaction_status(); |
|
2083 | - // save the TXN ( which clears cached copy of primary_registration) |
|
2084 | - $this->checkout->transaction->save(); |
|
2085 | - // grab TXN ID and save it to the primary_registration |
|
2086 | - $primary_registration->set_transaction_id($this->checkout->transaction->ID()); |
|
2087 | - // save what we have so far |
|
2088 | - $primary_registration->save(); |
|
2089 | - return true; |
|
2090 | - } |
|
2091 | - |
|
2092 | - |
|
2093 | - /** |
|
2094 | - * _capture_primary_registration_data_from_billing_form |
|
2095 | - * |
|
2096 | - * @return bool |
|
2097 | - * @throws EE_Error |
|
2098 | - * @throws InvalidArgumentException |
|
2099 | - * @throws ReflectionException |
|
2100 | - * @throws InvalidDataTypeException |
|
2101 | - * @throws InvalidInterfaceException |
|
2102 | - */ |
|
2103 | - private function _capture_primary_registration_data_from_billing_form() |
|
2104 | - { |
|
2105 | - // convert billing form data into an attendee |
|
2106 | - $this->checkout->primary_attendee_obj = $this->checkout->billing_form->create_attendee_from_billing_form_data(); |
|
2107 | - if (! $this->checkout->primary_attendee_obj instanceof EE_Attendee) { |
|
2108 | - EE_Error::add_error( |
|
2109 | - sprintf( |
|
2110 | - esc_html__( |
|
2111 | - 'The billing form details could not be used for attendee details due to a technical issue.%sPlease try again or contact %s for assistance.', |
|
2112 | - 'event_espresso' |
|
2113 | - ), |
|
2114 | - '<br/>', |
|
2115 | - EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
2116 | - ), |
|
2117 | - __FILE__, |
|
2118 | - __FUNCTION__, |
|
2119 | - __LINE__ |
|
2120 | - ); |
|
2121 | - return false; |
|
2122 | - } |
|
2123 | - $primary_registration = $this->checkout->transaction->primary_registration(); |
|
2124 | - if (! $primary_registration instanceof EE_Registration) { |
|
2125 | - EE_Error::add_error( |
|
2126 | - sprintf( |
|
2127 | - esc_html__( |
|
2128 | - 'The primary registrant for this transaction could not be determined due to a technical issue.%sPlease try again or contact %s for assistance.', |
|
2129 | - 'event_espresso' |
|
2130 | - ), |
|
2131 | - '<br/>', |
|
2132 | - EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
2133 | - ), |
|
2134 | - __FILE__, |
|
2135 | - __FUNCTION__, |
|
2136 | - __LINE__ |
|
2137 | - ); |
|
2138 | - return false; |
|
2139 | - } |
|
2140 | - if ( |
|
2141 | - ! $primary_registration->_add_relation_to($this->checkout->primary_attendee_obj, 'Attendee') |
|
2142 | - instanceof |
|
2143 | - EE_Attendee |
|
2144 | - ) { |
|
2145 | - EE_Error::add_error( |
|
2146 | - sprintf( |
|
2147 | - esc_html__( |
|
2148 | - 'The primary registrant could not be associated with this transaction due to a technical issue.%sPlease try again or contact %s for assistance.', |
|
2149 | - 'event_espresso' |
|
2150 | - ), |
|
2151 | - '<br/>', |
|
2152 | - EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
2153 | - ), |
|
2154 | - __FILE__, |
|
2155 | - __FUNCTION__, |
|
2156 | - __LINE__ |
|
2157 | - ); |
|
2158 | - return false; |
|
2159 | - } |
|
2160 | - /** @type EE_Registration_Processor $registration_processor */ |
|
2161 | - $registration_processor = EE_Registry::instance()->load_class('Registration_Processor'); |
|
2162 | - // at this point, we should have enough details about the registrant to consider the registration NOT incomplete |
|
2163 | - $registration_processor->toggle_incomplete_registration_status_to_default($primary_registration); |
|
2164 | - return true; |
|
2165 | - } |
|
2166 | - |
|
2167 | - |
|
2168 | - /** |
|
2169 | - * _get_payment_method_for_selected_method_of_payment |
|
2170 | - * retrieves a valid payment method |
|
2171 | - * |
|
2172 | - * @return EE_Payment_Method |
|
2173 | - * @throws EE_Error |
|
2174 | - * @throws InvalidArgumentException |
|
2175 | - * @throws ReflectionException |
|
2176 | - * @throws InvalidDataTypeException |
|
2177 | - * @throws InvalidInterfaceException |
|
2178 | - */ |
|
2179 | - private function _get_payment_method_for_selected_method_of_payment() |
|
2180 | - { |
|
2181 | - if ($this->checkout->selected_method_of_payment === 'events_sold_out') { |
|
2182 | - $this->_redirect_because_event_sold_out(); |
|
2183 | - return null; |
|
2184 | - } |
|
2185 | - // get EE_Payment_Method object |
|
2186 | - if (isset($this->checkout->available_payment_methods[ $this->checkout->selected_method_of_payment ])) { |
|
2187 | - $payment_method = $this->checkout->available_payment_methods[ $this->checkout->selected_method_of_payment ]; |
|
2188 | - } else { |
|
2189 | - // load EEM_Payment_Method |
|
2190 | - EE_Registry::instance()->load_model('Payment_Method'); |
|
2191 | - $EEM_Payment_Method = EEM_Payment_Method::instance(); |
|
2192 | - $payment_method = $EEM_Payment_Method->get_one_by_slug($this->checkout->selected_method_of_payment); |
|
2193 | - } |
|
2194 | - // verify $payment_method |
|
2195 | - if (! $payment_method instanceof EE_Payment_Method) { |
|
2196 | - // not a payment |
|
2197 | - EE_Error::add_error( |
|
2198 | - sprintf( |
|
2199 | - esc_html__( |
|
2200 | - 'The selected method of payment could not be determined due to a technical issue.%sPlease try again or contact %s for assistance.', |
|
2201 | - 'event_espresso' |
|
2202 | - ), |
|
2203 | - '<br/>', |
|
2204 | - EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
2205 | - ), |
|
2206 | - __FILE__, |
|
2207 | - __FUNCTION__, |
|
2208 | - __LINE__ |
|
2209 | - ); |
|
2210 | - return null; |
|
2211 | - } |
|
2212 | - // and verify it has a valid Payment_Method Type object |
|
2213 | - if (! $payment_method->type_obj() instanceof EE_PMT_Base) { |
|
2214 | - // not a payment |
|
2215 | - EE_Error::add_error( |
|
2216 | - sprintf( |
|
2217 | - esc_html__( |
|
2218 | - 'A valid payment method could not be determined due to a technical issue.%sPlease try again or contact %s for assistance.', |
|
2219 | - 'event_espresso' |
|
2220 | - ), |
|
2221 | - '<br/>', |
|
2222 | - EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
2223 | - ), |
|
2224 | - __FILE__, |
|
2225 | - __FUNCTION__, |
|
2226 | - __LINE__ |
|
2227 | - ); |
|
2228 | - return null; |
|
2229 | - } |
|
2230 | - return $payment_method; |
|
2231 | - } |
|
2232 | - |
|
2233 | - |
|
2234 | - /** |
|
2235 | - * _attempt_payment |
|
2236 | - * |
|
2237 | - * @access private |
|
2238 | - * @type EE_Payment_Method $payment_method |
|
2239 | - * @return mixed EE_Payment | boolean |
|
2240 | - * @throws EE_Error |
|
2241 | - * @throws InvalidArgumentException |
|
2242 | - * @throws ReflectionException |
|
2243 | - * @throws InvalidDataTypeException |
|
2244 | - * @throws InvalidInterfaceException |
|
2245 | - */ |
|
2246 | - private function _attempt_payment(EE_Payment_Method $payment_method) |
|
2247 | - { |
|
2248 | - $payment = null; |
|
2249 | - $this->checkout->transaction->save(); |
|
2250 | - $payment_processor = EE_Registry::instance()->load_core('Payment_Processor'); |
|
2251 | - if (! $payment_processor instanceof EE_Payment_Processor) { |
|
2252 | - return false; |
|
2253 | - } |
|
2254 | - try { |
|
2255 | - $payment_processor->set_revisit($this->checkout->revisit); |
|
2256 | - // generate payment object |
|
2257 | - $payment = $payment_processor->process_payment( |
|
2258 | - $payment_method, |
|
2259 | - $this->checkout->transaction, |
|
2260 | - $this->checkout->amount_owing, |
|
2261 | - $this->checkout->billing_form, |
|
2262 | - $this->_get_return_url($payment_method), |
|
2263 | - 'CART', |
|
2264 | - $this->checkout->admin_request, |
|
2265 | - true, |
|
2266 | - $this->reg_step_url() |
|
2267 | - ); |
|
2268 | - } catch (Exception $e) { |
|
2269 | - $this->_handle_payment_processor_exception($e); |
|
2270 | - } |
|
2271 | - return $payment; |
|
2272 | - } |
|
2273 | - |
|
2274 | - |
|
2275 | - /** |
|
2276 | - * _handle_payment_processor_exception |
|
2277 | - * |
|
2278 | - * @param Exception $e |
|
2279 | - * @return void |
|
2280 | - * @throws EE_Error |
|
2281 | - * @throws InvalidArgumentException |
|
2282 | - * @throws InvalidDataTypeException |
|
2283 | - * @throws InvalidInterfaceException |
|
2284 | - */ |
|
2285 | - protected function _handle_payment_processor_exception(Exception $e) |
|
2286 | - { |
|
2287 | - EE_Error::add_error( |
|
2288 | - sprintf( |
|
2289 | - esc_html__( |
|
2290 | - 'The payment could not br processed due to a technical issue.%1$sPlease try again or contact %2$s for assistance.||The following Exception was thrown in %4$s on line %5$s:%1$s%3$s', |
|
2291 | - 'event_espresso' |
|
2292 | - ), |
|
2293 | - '<br/>', |
|
2294 | - EE_Registry::instance()->CFG->organization->get_pretty('email'), |
|
2295 | - $e->getMessage(), |
|
2296 | - $e->getFile(), |
|
2297 | - $e->getLine() |
|
2298 | - ), |
|
2299 | - __FILE__, |
|
2300 | - __FUNCTION__, |
|
2301 | - __LINE__ |
|
2302 | - ); |
|
2303 | - } |
|
2304 | - |
|
2305 | - |
|
2306 | - /** |
|
2307 | - * _get_return_url |
|
2308 | - * |
|
2309 | - * @param EE_Payment_Method $payment_method |
|
2310 | - * @return string |
|
2311 | - * @throws EE_Error |
|
2312 | - * @throws ReflectionException |
|
2313 | - */ |
|
2314 | - protected function _get_return_url(EE_Payment_Method $payment_method) |
|
2315 | - { |
|
2316 | - $return_url = ''; |
|
2317 | - switch ($payment_method->type_obj()->payment_occurs()) { |
|
2318 | - case EE_PMT_Base::offsite: |
|
2319 | - $return_url = add_query_arg( |
|
2320 | - [ |
|
2321 | - 'action' => 'process_gateway_response', |
|
2322 | - 'selected_method_of_payment' => $this->checkout->selected_method_of_payment, |
|
2323 | - 'spco_txn' => $this->checkout->transaction->ID(), |
|
2324 | - ], |
|
2325 | - $this->reg_step_url() |
|
2326 | - ); |
|
2327 | - break; |
|
2328 | - case EE_PMT_Base::onsite: |
|
2329 | - case EE_PMT_Base::offline: |
|
2330 | - $return_url = $this->checkout->next_step->reg_step_url(); |
|
2331 | - break; |
|
2332 | - } |
|
2333 | - return $return_url; |
|
2334 | - } |
|
2335 | - |
|
2336 | - |
|
2337 | - /** |
|
2338 | - * _validate_payment |
|
2339 | - * |
|
2340 | - * @param EE_Payment $payment |
|
2341 | - * @return EE_Payment|FALSE |
|
2342 | - * @throws EE_Error |
|
2343 | - * @throws InvalidArgumentException |
|
2344 | - * @throws InvalidDataTypeException |
|
2345 | - * @throws InvalidInterfaceException |
|
2346 | - */ |
|
2347 | - private function _validate_payment($payment = null) |
|
2348 | - { |
|
2349 | - if ($this->checkout->payment_method->is_off_line()) { |
|
2350 | - return true; |
|
2351 | - } |
|
2352 | - // verify payment object |
|
2353 | - if (! $payment instanceof EE_Payment) { |
|
2354 | - // not a payment |
|
2355 | - EE_Error::add_error( |
|
2356 | - sprintf( |
|
2357 | - esc_html__( |
|
2358 | - 'A valid payment was not generated due to a technical issue.%1$sPlease try again or contact %2$s for assistance.', |
|
2359 | - 'event_espresso' |
|
2360 | - ), |
|
2361 | - '<br/>', |
|
2362 | - EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
2363 | - ), |
|
2364 | - __FILE__, |
|
2365 | - __FUNCTION__, |
|
2366 | - __LINE__ |
|
2367 | - ); |
|
2368 | - return false; |
|
2369 | - } |
|
2370 | - return $payment; |
|
2371 | - } |
|
2372 | - |
|
2373 | - |
|
2374 | - /** |
|
2375 | - * _post_payment_processing |
|
2376 | - * |
|
2377 | - * @param EE_Payment|bool $payment |
|
2378 | - * @return bool|EE_Payment |
|
2379 | - * @throws EE_Error |
|
2380 | - * @throws InvalidArgumentException |
|
2381 | - * @throws InvalidDataTypeException |
|
2382 | - * @throws InvalidInterfaceException |
|
2383 | - * @throws ReflectionException |
|
2384 | - */ |
|
2385 | - private function _post_payment_processing($payment = null) |
|
2386 | - { |
|
2387 | - // Off-Line payment? |
|
2388 | - if ($payment === true) { |
|
2389 | - return true; |
|
2390 | - } |
|
2391 | - if ($payment instanceof EE_Payment) { |
|
2392 | - // Should the user be redirected? |
|
2393 | - if ($payment->redirect_url()) { |
|
2394 | - do_action('AHEE_log', __CLASS__, __FUNCTION__, $payment->redirect_url(), '$payment->redirect_url()'); |
|
2395 | - $this->checkout->redirect = true; |
|
2396 | - $this->checkout->redirect_form = $payment->redirect_form(); |
|
2397 | - $this->checkout->redirect_url = $this->reg_step_url('redirect_form'); |
|
2398 | - // set JSON response |
|
2399 | - $this->checkout->json_response->set_redirect_form($this->checkout->redirect_form); |
|
2400 | - // and lastly, let's bump the payment status to pending |
|
2401 | - $payment->set_status(EEM_Payment::status_id_pending); |
|
2402 | - $payment->save(); |
|
2403 | - } elseif (! $this->_process_payment_status($payment, EE_PMT_Base::onsite)) { |
|
2404 | - // User shouldn't be redirected. So let's process it here. |
|
2405 | - // $this->_setup_redirect_for_next_step(); |
|
2406 | - $this->checkout->continue_reg = false; |
|
2407 | - } |
|
2408 | - return $payment; |
|
2409 | - } |
|
2410 | - // ummm ya... not Off-Line, not On-Site, not off-Site ???? |
|
2411 | - $this->checkout->continue_reg = false; |
|
2412 | - return false; |
|
2413 | - } |
|
2414 | - |
|
2415 | - |
|
2416 | - /** |
|
2417 | - * _process_payment_status |
|
2418 | - * |
|
2419 | - * @type EE_Payment $payment |
|
2420 | - * @param string $payment_occurs |
|
2421 | - * @return bool |
|
2422 | - * @throws EE_Error |
|
2423 | - * @throws InvalidArgumentException |
|
2424 | - * @throws InvalidDataTypeException |
|
2425 | - * @throws InvalidInterfaceException |
|
2426 | - */ |
|
2427 | - private function _process_payment_status($payment, $payment_occurs = EE_PMT_Base::offline) |
|
2428 | - { |
|
2429 | - // off-line payment? carry on |
|
2430 | - if ($payment_occurs === EE_PMT_Base::offline) { |
|
2431 | - return true; |
|
2432 | - } |
|
2433 | - // verify payment validity |
|
2434 | - if ($payment instanceof EE_Payment) { |
|
2435 | - do_action('AHEE_log', __CLASS__, __FUNCTION__, $payment->status(), '$payment->status()'); |
|
2436 | - $msg = $payment->gateway_response(); |
|
2437 | - // check results |
|
2438 | - switch ($payment->status()) { |
|
2439 | - // good payment |
|
2440 | - case EEM_Payment::status_id_approved: |
|
2441 | - EE_Error::add_success( |
|
2442 | - esc_html__('Your payment was processed successfully.', 'event_espresso'), |
|
2443 | - __FILE__, |
|
2444 | - __FUNCTION__, |
|
2445 | - __LINE__ |
|
2446 | - ); |
|
2447 | - return true; |
|
2448 | - // slow payment |
|
2449 | - case EEM_Payment::status_id_pending: |
|
2450 | - if (empty($msg)) { |
|
2451 | - $msg = esc_html__( |
|
2452 | - 'Your payment appears to have been processed successfully, but the Instant Payment Notification has not yet been received. It should arrive shortly.', |
|
2453 | - 'event_espresso' |
|
2454 | - ); |
|
2455 | - } |
|
2456 | - EE_Error::add_success($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2457 | - return true; |
|
2458 | - // don't wanna payment |
|
2459 | - case EEM_Payment::status_id_cancelled: |
|
2460 | - if (empty($msg)) { |
|
2461 | - $msg = _n( |
|
2462 | - 'Payment cancelled. Please try again.', |
|
2463 | - 'Payment cancelled. Please try again or select another method of payment.', |
|
2464 | - count($this->checkout->available_payment_methods), |
|
2465 | - 'event_espresso' |
|
2466 | - ); |
|
2467 | - } |
|
2468 | - EE_Error::add_attention($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2469 | - return false; |
|
2470 | - // not enough payment |
|
2471 | - case EEM_Payment::status_id_declined: |
|
2472 | - if (empty($msg)) { |
|
2473 | - $msg = _n( |
|
2474 | - 'We\'re sorry but your payment was declined. Please try again.', |
|
2475 | - 'We\'re sorry but your payment was declined. Please try again or select another method of payment.', |
|
2476 | - count($this->checkout->available_payment_methods), |
|
2477 | - 'event_espresso' |
|
2478 | - ); |
|
2479 | - } |
|
2480 | - EE_Error::add_attention($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2481 | - return false; |
|
2482 | - // bad payment |
|
2483 | - case EEM_Payment::status_id_failed: |
|
2484 | - if (! empty($msg)) { |
|
2485 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2486 | - return false; |
|
2487 | - } |
|
2488 | - // default to error below |
|
2489 | - break; |
|
2490 | - } |
|
2491 | - } |
|
2492 | - // off-site payment gateway responses are too unreliable, so let's just assume that |
|
2493 | - // the payment processing is just running slower than the registrant's request |
|
2494 | - if ($payment_occurs === EE_PMT_Base::offsite) { |
|
2495 | - return true; |
|
2496 | - } |
|
2497 | - EE_Error::add_error( |
|
2498 | - sprintf( |
|
2499 | - esc_html__( |
|
2500 | - 'Your payment could not be processed successfully due to a technical issue.%sPlease try again or contact %s for assistance.', |
|
2501 | - 'event_espresso' |
|
2502 | - ), |
|
2503 | - '<br/>', |
|
2504 | - EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
2505 | - ), |
|
2506 | - __FILE__, |
|
2507 | - __FUNCTION__, |
|
2508 | - __LINE__ |
|
2509 | - ); |
|
2510 | - return false; |
|
2511 | - } |
|
2512 | - |
|
2513 | - |
|
2514 | - |
|
2515 | - |
|
2516 | - |
|
2517 | - |
|
2518 | - /********************************************************************************************************/ |
|
2519 | - /********************************** PROCESS GATEWAY RESPONSE **********************************/ |
|
2520 | - /********************************************************************************************************/ |
|
2521 | - /** |
|
2522 | - * process_gateway_response |
|
2523 | - * this is the return point for Off-Site Payment Methods |
|
2524 | - * It will attempt to "handle the IPN" if it appears that this has not already occurred, |
|
2525 | - * otherwise, it will load up the last payment made for the TXN. |
|
2526 | - * If the payment retrieved looks good, it will then either: |
|
2527 | - * complete the current step and allow advancement to the next reg step |
|
2528 | - * or present the payment options again |
|
2529 | - * |
|
2530 | - * @return bool |
|
2531 | - * @throws EE_Error |
|
2532 | - * @throws InvalidArgumentException |
|
2533 | - * @throws ReflectionException |
|
2534 | - * @throws InvalidDataTypeException |
|
2535 | - * @throws InvalidInterfaceException |
|
2536 | - */ |
|
2537 | - public function process_gateway_response() |
|
2538 | - { |
|
2539 | - // how have they chosen to pay? |
|
2540 | - $this->checkout->selected_method_of_payment = $this->_get_selected_method_of_payment(true); |
|
2541 | - // get EE_Payment_Method object |
|
2542 | - if (! $this->checkout->payment_method = $this->_get_payment_method_for_selected_method_of_payment()) { |
|
2543 | - $this->checkout->continue_reg = false; |
|
2544 | - return false; |
|
2545 | - } |
|
2546 | - if (! $this->checkout->payment_method->is_off_site()) { |
|
2547 | - return false; |
|
2548 | - } |
|
2549 | - $this->_validate_offsite_return(); |
|
2550 | - // verify TXN |
|
2551 | - if ($this->checkout->transaction instanceof EE_Transaction) { |
|
2552 | - $gateway = $this->checkout->payment_method->type_obj()->get_gateway(); |
|
2553 | - if (! $gateway instanceof EE_Offsite_Gateway) { |
|
2554 | - $this->checkout->continue_reg = false; |
|
2555 | - return false; |
|
2556 | - } |
|
2557 | - $payment = $this->_process_off_site_payment($gateway); |
|
2558 | - $payment = $this->_process_cancelled_payments($payment); |
|
2559 | - $payment = $this->_validate_payment($payment); |
|
2560 | - // if payment was not declined by the payment gateway or cancelled by the registrant |
|
2561 | - if ($this->_process_payment_status($payment, EE_PMT_Base::offsite)) { |
|
2562 | - // $this->_setup_redirect_for_next_step(); |
|
2563 | - // store that for later |
|
2564 | - $this->checkout->payment = $payment; |
|
2565 | - // mark this reg step as completed, as long as gateway doesn't use a separate IPN request, |
|
2566 | - // because we will complete this step during the IPN processing then |
|
2567 | - if (! $this->handle_IPN_in_this_request()) { |
|
2568 | - $this->set_completed(); |
|
2569 | - } |
|
2570 | - return true; |
|
2571 | - } |
|
2572 | - } |
|
2573 | - // DEBUG LOG |
|
2574 | - // $this->checkout->log( |
|
2575 | - // __CLASS__, |
|
2576 | - // __FUNCTION__, |
|
2577 | - // __LINE__, |
|
2578 | - // array('payment' => $payment) |
|
2579 | - // ); |
|
2580 | - $this->checkout->continue_reg = false; |
|
2581 | - return false; |
|
2582 | - } |
|
2583 | - |
|
2584 | - |
|
2585 | - /** |
|
2586 | - * _validate_return |
|
2587 | - * |
|
2588 | - * @return void |
|
2589 | - * @throws EE_Error |
|
2590 | - * @throws InvalidArgumentException |
|
2591 | - * @throws InvalidDataTypeException |
|
2592 | - * @throws InvalidInterfaceException |
|
2593 | - * @throws ReflectionException |
|
2594 | - */ |
|
2595 | - private function _validate_offsite_return() |
|
2596 | - { |
|
2597 | - $TXN_ID = $this->request->getRequestParam('spco_txn', 0, 'int'); |
|
2598 | - if ($TXN_ID !== $this->checkout->transaction->ID()) { |
|
2599 | - // Houston... we might have a problem |
|
2600 | - $invalid_TXN = false; |
|
2601 | - // first gather some info |
|
2602 | - $valid_TXN = EEM_Transaction::instance()->get_one_by_ID($TXN_ID); |
|
2603 | - $primary_registrant = $valid_TXN instanceof EE_Transaction |
|
2604 | - ? $valid_TXN->primary_registration() |
|
2605 | - : null; |
|
2606 | - // let's start by retrieving the cart for this TXN |
|
2607 | - $cart = $this->checkout->get_cart_for_transaction($this->checkout->transaction); |
|
2608 | - if ($cart instanceof EE_Cart) { |
|
2609 | - // verify that the current cart has tickets |
|
2610 | - $tickets = $cart->get_tickets(); |
|
2611 | - if (empty($tickets)) { |
|
2612 | - $invalid_TXN = true; |
|
2613 | - } |
|
2614 | - } else { |
|
2615 | - $invalid_TXN = true; |
|
2616 | - } |
|
2617 | - $valid_TXN_SID = $primary_registrant instanceof EE_Registration |
|
2618 | - ? $primary_registrant->session_ID() |
|
2619 | - : null; |
|
2620 | - // validate current Session ID and compare against valid TXN session ID |
|
2621 | - if ( |
|
2622 | - $invalid_TXN // if this is already true, then skip other checks |
|
2623 | - || EE_Session::instance()->id() === null |
|
2624 | - || ( |
|
2625 | - // WARNING !!! |
|
2626 | - // this could be PayPal sending back duplicate requests (ya they do that) |
|
2627 | - // or it **could** mean someone is simply registering AGAIN after having just done so |
|
2628 | - // so now we need to determine if this current TXN looks valid or not |
|
2629 | - // and whether this reg step has even been started ? |
|
2630 | - EE_Session::instance()->id() === $valid_TXN_SID |
|
2631 | - // really? you're half way through this reg step, but you never started it ? |
|
2632 | - && $this->checkout->transaction->reg_step_completed($this->slug()) === false |
|
2633 | - ) |
|
2634 | - ) { |
|
2635 | - $invalid_TXN = true; |
|
2636 | - } |
|
2637 | - if ($invalid_TXN) { |
|
2638 | - // is the valid TXN completed ? |
|
2639 | - if ($valid_TXN instanceof EE_Transaction) { |
|
2640 | - // has this step even been started ? |
|
2641 | - $reg_step_completed = $valid_TXN->reg_step_completed($this->slug()); |
|
2642 | - if ($reg_step_completed !== false && $reg_step_completed !== true) { |
|
2643 | - // so it **looks** like this is a double request from PayPal |
|
2644 | - // so let's try to pick up where we left off |
|
2645 | - $this->checkout->transaction = $valid_TXN; |
|
2646 | - $this->checkout->refresh_all_entities(true); |
|
2647 | - return; |
|
2648 | - } |
|
2649 | - } |
|
2650 | - // you appear to be lost? |
|
2651 | - $this->_redirect_wayward_request($primary_registrant); |
|
2652 | - } |
|
2653 | - } |
|
2654 | - } |
|
2655 | - |
|
2656 | - |
|
2657 | - /** |
|
2658 | - * _redirect_wayward_request |
|
2659 | - * |
|
2660 | - * @param EE_Registration|null $primary_registrant |
|
2661 | - * @return void |
|
2662 | - * @throws EE_Error |
|
2663 | - * @throws InvalidArgumentException |
|
2664 | - * @throws InvalidDataTypeException |
|
2665 | - * @throws InvalidInterfaceException |
|
2666 | - * @throws ReflectionException |
|
2667 | - */ |
|
2668 | - private function _redirect_wayward_request(EE_Registration $primary_registrant) |
|
2669 | - { |
|
2670 | - if (! $primary_registrant instanceof EE_Registration) { |
|
2671 | - // try redirecting based on the current TXN |
|
2672 | - $primary_registrant = $this->checkout->transaction instanceof EE_Transaction |
|
2673 | - ? $this->checkout->transaction->primary_registration() |
|
2674 | - : null; |
|
2675 | - } |
|
2676 | - if (! $primary_registrant instanceof EE_Registration) { |
|
2677 | - EE_Error::add_error( |
|
2678 | - sprintf( |
|
2679 | - esc_html__( |
|
2680 | - 'Invalid information was received from the Off-Site Payment Processor and your Transaction details could not be retrieved from the database.%1$sPlease try again or contact %2$s for assistance.', |
|
2681 | - 'event_espresso' |
|
2682 | - ), |
|
2683 | - '<br/>', |
|
2684 | - EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
2685 | - ), |
|
2686 | - __FILE__, |
|
2687 | - __FUNCTION__, |
|
2688 | - __LINE__ |
|
2689 | - ); |
|
2690 | - return; |
|
2691 | - } |
|
2692 | - // make sure transaction is not locked |
|
2693 | - $this->checkout->transaction->unlock(); |
|
2694 | - wp_safe_redirect( |
|
2695 | - add_query_arg( |
|
2696 | - [ |
|
2697 | - 'e_reg_url_link' => $primary_registrant->reg_url_link(), |
|
2698 | - ], |
|
2699 | - $this->checkout->thank_you_page_url |
|
2700 | - ) |
|
2701 | - ); |
|
2702 | - exit(); |
|
2703 | - } |
|
2704 | - |
|
2705 | - |
|
2706 | - /** |
|
2707 | - * _process_off_site_payment |
|
2708 | - * |
|
2709 | - * @param EE_Offsite_Gateway $gateway |
|
2710 | - * @return EE_Payment |
|
2711 | - * @throws EE_Error |
|
2712 | - * @throws InvalidArgumentException |
|
2713 | - * @throws InvalidDataTypeException |
|
2714 | - * @throws InvalidInterfaceException |
|
2715 | - * @throws ReflectionException |
|
2716 | - */ |
|
2717 | - private function _process_off_site_payment(EE_Offsite_Gateway $gateway) |
|
2718 | - { |
|
2719 | - try { |
|
2720 | - $request = LoaderFactory::getLoader()->getShared(RequestInterface::class); |
|
2721 | - $request_data = $request->requestParams(); |
|
2722 | - // if gateway uses_separate_IPN_request, then we don't have to process the IPN manually |
|
2723 | - $this->set_handle_IPN_in_this_request( |
|
2724 | - $gateway->handle_IPN_in_this_request($request_data, false) |
|
2725 | - ); |
|
2726 | - if ($this->handle_IPN_in_this_request()) { |
|
2727 | - // get payment details and process results |
|
2728 | - /** @type EE_Payment_Processor $payment_processor */ |
|
2729 | - $payment_processor = EE_Registry::instance()->load_core('Payment_Processor'); |
|
2730 | - $payment = $payment_processor->process_ipn( |
|
2731 | - $request_data, |
|
2732 | - $this->checkout->transaction, |
|
2733 | - $this->checkout->payment_method, |
|
2734 | - true, |
|
2735 | - false |
|
2736 | - ); |
|
2737 | - // $payment_source = 'process_ipn'; |
|
2738 | - } else { |
|
2739 | - $payment = $this->checkout->transaction->last_payment(); |
|
2740 | - // $payment_source = 'last_payment'; |
|
2741 | - } |
|
2742 | - } catch (Exception $e) { |
|
2743 | - // let's just eat the exception and try to move on using any previously set payment info |
|
2744 | - $payment = $this->checkout->transaction->last_payment(); |
|
2745 | - // $payment_source = 'last_payment after Exception'; |
|
2746 | - // but if we STILL don't have a payment object |
|
2747 | - if (! $payment instanceof EE_Payment) { |
|
2748 | - // then we'll object ! ( not object like a thing... but object like what a lawyer says ! ) |
|
2749 | - $this->_handle_payment_processor_exception($e); |
|
2750 | - } |
|
2751 | - } |
|
2752 | - return $payment; |
|
2753 | - } |
|
2754 | - |
|
2755 | - |
|
2756 | - /** |
|
2757 | - * _process_cancelled_payments |
|
2758 | - * just makes sure that the payment status gets updated correctly |
|
2759 | - * so tha tan error isn't generated during payment validation |
|
2760 | - * |
|
2761 | - * @param EE_Payment $payment |
|
2762 | - * @return EE_Payment|null |
|
2763 | - * @throws EE_Error |
|
2764 | - */ |
|
2765 | - private function _process_cancelled_payments($payment = null) |
|
2766 | - { |
|
2767 | - if ( |
|
2768 | - $payment instanceof EE_Payment |
|
2769 | - && $this->request->requestParamIsSet('ee_cancel_payment') |
|
2770 | - && $payment->status() === EEM_Payment::status_id_failed |
|
2771 | - ) { |
|
2772 | - $payment->set_status(EEM_Payment::status_id_cancelled); |
|
2773 | - } |
|
2774 | - return $payment; |
|
2775 | - } |
|
2776 | - |
|
2777 | - |
|
2778 | - /** |
|
2779 | - * get_transaction_details_for_gateways |
|
2780 | - * |
|
2781 | - * @access public |
|
2782 | - * @return void |
|
2783 | - * @throws EE_Error |
|
2784 | - * @throws InvalidArgumentException |
|
2785 | - * @throws ReflectionException |
|
2786 | - * @throws InvalidDataTypeException |
|
2787 | - * @throws InvalidInterfaceException |
|
2788 | - */ |
|
2789 | - public function get_transaction_details_for_gateways() |
|
2790 | - { |
|
2791 | - $txn_details = []; |
|
2792 | - // ya gotta make a choice man |
|
2793 | - if (empty($this->checkout->selected_method_of_payment)) { |
|
2794 | - $txn_details = [ |
|
2795 | - 'error' => esc_html__('Please select a method of payment before proceeding.', 'event_espresso'), |
|
2796 | - ]; |
|
2797 | - } |
|
2798 | - // get EE_Payment_Method object |
|
2799 | - if ( |
|
2800 | - empty($txn_details) |
|
2801 | - && ! $this->checkout->payment_method = $this->_get_payment_method_for_selected_method_of_payment() |
|
2802 | - ) { |
|
2803 | - $txn_details = [ |
|
2804 | - 'selected_method_of_payment' => $this->checkout->selected_method_of_payment, |
|
2805 | - 'error' => esc_html__( |
|
2806 | - 'A valid Payment Method could not be determined.', |
|
2807 | - 'event_espresso' |
|
2808 | - ), |
|
2809 | - ]; |
|
2810 | - } |
|
2811 | - if (empty($txn_details) && $this->checkout->transaction instanceof EE_Transaction) { |
|
2812 | - $return_url = $this->_get_return_url($this->checkout->payment_method); |
|
2813 | - $txn_details = [ |
|
2814 | - 'TXN_ID' => $this->checkout->transaction->ID(), |
|
2815 | - 'TXN_timestamp' => $this->checkout->transaction->datetime(), |
|
2816 | - 'TXN_total' => $this->checkout->transaction->total(), |
|
2817 | - 'TXN_paid' => $this->checkout->transaction->paid(), |
|
2818 | - 'TXN_reg_steps' => $this->checkout->transaction->reg_steps(), |
|
2819 | - 'STS_ID' => $this->checkout->transaction->status_ID(), |
|
2820 | - 'PMD_ID' => $this->checkout->transaction->payment_method_ID(), |
|
2821 | - 'payment_amount' => $this->checkout->amount_owing, |
|
2822 | - 'return_url' => $return_url, |
|
2823 | - 'cancel_url' => add_query_arg(['ee_cancel_payment' => true], $return_url), |
|
2824 | - 'notify_url' => EE_Config::instance()->core->txn_page_url( |
|
2825 | - [ |
|
2826 | - 'e_reg_url_link' => $this->checkout->transaction->primary_registration()->reg_url_link(), |
|
2827 | - 'ee_payment_method' => $this->checkout->payment_method->slug(), |
|
2828 | - ] |
|
2829 | - ), |
|
2830 | - ]; |
|
2831 | - } |
|
2832 | - echo wp_json_encode($txn_details); |
|
2833 | - exit(); |
|
2834 | - } |
|
2835 | - |
|
2836 | - |
|
2837 | - /** |
|
2838 | - * __sleep |
|
2839 | - * to conserve db space, let's remove the reg_form and the EE_Checkout object from EE_SPCO_Reg_Step objects upon |
|
2840 | - * serialization EE_Checkout will handle the reimplementation of itself upon waking, but we won't bother with the |
|
2841 | - * reg form, because if needed, it will be regenerated anyways |
|
2842 | - * |
|
2843 | - * @return array |
|
2844 | - */ |
|
2845 | - public function __sleep() |
|
2846 | - { |
|
2847 | - // remove the reg form and the checkout |
|
2848 | - return array_diff(array_keys(get_object_vars($this)), ['reg_form', 'checkout', 'line_item_display']); |
|
2849 | - } |
|
22 | + /** |
|
23 | + * @var EE_Line_Item_Display $Line_Item_Display |
|
24 | + */ |
|
25 | + protected $line_item_display; |
|
26 | + |
|
27 | + /** |
|
28 | + * @var boolean $handle_IPN_in_this_request |
|
29 | + */ |
|
30 | + protected $handle_IPN_in_this_request = false; |
|
31 | + |
|
32 | + |
|
33 | + /** |
|
34 | + * set_hooks - for hooking into EE Core, other modules, etc |
|
35 | + * |
|
36 | + * @access public |
|
37 | + * @return void |
|
38 | + */ |
|
39 | + public static function set_hooks() |
|
40 | + { |
|
41 | + add_filter( |
|
42 | + 'FHEE__SPCO__EE_Line_Item_Filter_Collection', |
|
43 | + ['EE_SPCO_Reg_Step_Payment_Options', 'add_spco_line_item_filters'] |
|
44 | + ); |
|
45 | + add_action( |
|
46 | + 'wp_ajax_switch_spco_billing_form', |
|
47 | + ['EE_SPCO_Reg_Step_Payment_Options', 'switch_spco_billing_form'] |
|
48 | + ); |
|
49 | + add_action( |
|
50 | + 'wp_ajax_nopriv_switch_spco_billing_form', |
|
51 | + ['EE_SPCO_Reg_Step_Payment_Options', 'switch_spco_billing_form'] |
|
52 | + ); |
|
53 | + add_action('wp_ajax_save_payer_details', ['EE_SPCO_Reg_Step_Payment_Options', 'save_payer_details']); |
|
54 | + add_action( |
|
55 | + 'wp_ajax_nopriv_save_payer_details', |
|
56 | + ['EE_SPCO_Reg_Step_Payment_Options', 'save_payer_details'] |
|
57 | + ); |
|
58 | + add_action( |
|
59 | + 'wp_ajax_get_transaction_details_for_gateways', |
|
60 | + ['EE_SPCO_Reg_Step_Payment_Options', 'get_transaction_details'] |
|
61 | + ); |
|
62 | + add_action( |
|
63 | + 'wp_ajax_nopriv_get_transaction_details_for_gateways', |
|
64 | + ['EE_SPCO_Reg_Step_Payment_Options', 'get_transaction_details'] |
|
65 | + ); |
|
66 | + add_filter( |
|
67 | + 'FHEE__EED_Recaptcha___bypass_recaptcha__bypass_request_params_array', |
|
68 | + ['EE_SPCO_Reg_Step_Payment_Options', 'bypass_recaptcha_for_load_payment_method'], |
|
69 | + 10, |
|
70 | + 1 |
|
71 | + ); |
|
72 | + } |
|
73 | + |
|
74 | + |
|
75 | + /** |
|
76 | + * ajax switch_spco_billing_form |
|
77 | + * |
|
78 | + */ |
|
79 | + public static function switch_spco_billing_form() |
|
80 | + { |
|
81 | + EED_Single_Page_Checkout::process_ajax_request('switch_payment_method'); |
|
82 | + } |
|
83 | + |
|
84 | + |
|
85 | + /** |
|
86 | + * ajax save_payer_details |
|
87 | + * |
|
88 | + */ |
|
89 | + public static function save_payer_details() |
|
90 | + { |
|
91 | + EED_Single_Page_Checkout::process_ajax_request('save_payer_details_via_ajax'); |
|
92 | + } |
|
93 | + |
|
94 | + |
|
95 | + /** |
|
96 | + * ajax get_transaction_details |
|
97 | + * |
|
98 | + */ |
|
99 | + public static function get_transaction_details() |
|
100 | + { |
|
101 | + EED_Single_Page_Checkout::process_ajax_request('get_transaction_details_for_gateways'); |
|
102 | + } |
|
103 | + |
|
104 | + |
|
105 | + /** |
|
106 | + * bypass_recaptcha_for_load_payment_method |
|
107 | + * |
|
108 | + * @access public |
|
109 | + * @return array |
|
110 | + * @throws InvalidArgumentException |
|
111 | + * @throws InvalidDataTypeException |
|
112 | + * @throws InvalidInterfaceException |
|
113 | + */ |
|
114 | + public static function bypass_recaptcha_for_load_payment_method() |
|
115 | + { |
|
116 | + return [ |
|
117 | + 'EESID' => EE_Registry::instance()->SSN->id(), |
|
118 | + 'step' => 'payment_options', |
|
119 | + 'action' => 'spco_billing_form', |
|
120 | + ]; |
|
121 | + } |
|
122 | + |
|
123 | + |
|
124 | + /** |
|
125 | + * class constructor |
|
126 | + * |
|
127 | + * @access public |
|
128 | + * @param EE_Checkout $checkout |
|
129 | + */ |
|
130 | + public function __construct(EE_Checkout $checkout) |
|
131 | + { |
|
132 | + $this->request = EED_Single_Page_Checkout::getRequest(); |
|
133 | + $this->_slug = 'payment_options'; |
|
134 | + $this->_name = esc_html__('Payment Options', 'event_espresso'); |
|
135 | + $this->_template = SPCO_REG_STEPS_PATH . $this->_slug . '/payment_options_main.template.php'; |
|
136 | + $this->checkout = $checkout; |
|
137 | + $this->_reset_success_message(); |
|
138 | + $this->set_instructions( |
|
139 | + esc_html__( |
|
140 | + 'Please select a method of payment and provide any necessary billing information before proceeding.', |
|
141 | + 'event_espresso' |
|
142 | + ) |
|
143 | + ); |
|
144 | + } |
|
145 | + |
|
146 | + |
|
147 | + /** |
|
148 | + * @return null |
|
149 | + */ |
|
150 | + public function line_item_display() |
|
151 | + { |
|
152 | + return $this->line_item_display; |
|
153 | + } |
|
154 | + |
|
155 | + |
|
156 | + /** |
|
157 | + * @param null $line_item_display |
|
158 | + */ |
|
159 | + public function set_line_item_display($line_item_display) |
|
160 | + { |
|
161 | + $this->line_item_display = $line_item_display; |
|
162 | + } |
|
163 | + |
|
164 | + |
|
165 | + /** |
|
166 | + * @return boolean |
|
167 | + */ |
|
168 | + public function handle_IPN_in_this_request() |
|
169 | + { |
|
170 | + return $this->handle_IPN_in_this_request; |
|
171 | + } |
|
172 | + |
|
173 | + |
|
174 | + /** |
|
175 | + * @param boolean $handle_IPN_in_this_request |
|
176 | + */ |
|
177 | + public function set_handle_IPN_in_this_request($handle_IPN_in_this_request) |
|
178 | + { |
|
179 | + $this->handle_IPN_in_this_request = filter_var($handle_IPN_in_this_request, FILTER_VALIDATE_BOOLEAN); |
|
180 | + } |
|
181 | + |
|
182 | + |
|
183 | + /** |
|
184 | + * translate_js_strings |
|
185 | + * |
|
186 | + * @return void |
|
187 | + */ |
|
188 | + public function translate_js_strings() |
|
189 | + { |
|
190 | + EE_Registry::$i18n_js_strings['no_payment_method'] = esc_html__( |
|
191 | + 'Please select a method of payment in order to continue.', |
|
192 | + 'event_espresso' |
|
193 | + ); |
|
194 | + EE_Registry::$i18n_js_strings['invalid_payment_method'] = esc_html__( |
|
195 | + 'A valid method of payment could not be determined. Please refresh the page and try again.', |
|
196 | + 'event_espresso' |
|
197 | + ); |
|
198 | + EE_Registry::$i18n_js_strings['forwarding_to_offsite'] = esc_html__( |
|
199 | + 'Forwarding to Secure Payment Provider.', |
|
200 | + 'event_espresso' |
|
201 | + ); |
|
202 | + } |
|
203 | + |
|
204 | + |
|
205 | + /** |
|
206 | + * enqueue_styles_and_scripts |
|
207 | + * |
|
208 | + * @return void |
|
209 | + * @throws EE_Error |
|
210 | + * @throws InvalidArgumentException |
|
211 | + * @throws InvalidDataTypeException |
|
212 | + * @throws InvalidInterfaceException |
|
213 | + * @throws ReflectionException |
|
214 | + */ |
|
215 | + public function enqueue_styles_and_scripts() |
|
216 | + { |
|
217 | + $transaction = $this->checkout->transaction; |
|
218 | + // if the transaction isn't set or nothing is owed on it, don't enqueue any JS |
|
219 | + if (! $transaction instanceof EE_Transaction || EEH_Money::compare_floats($transaction->remaining(), 0)) { |
|
220 | + return; |
|
221 | + } |
|
222 | + foreach ( |
|
223 | + EEM_Payment_Method::instance()->get_all_for_transaction( |
|
224 | + $transaction, |
|
225 | + EEM_Payment_Method::scope_cart |
|
226 | + ) as $payment_method |
|
227 | + ) { |
|
228 | + $type_obj = $payment_method->type_obj(); |
|
229 | + if ($type_obj instanceof EE_PMT_Base) { |
|
230 | + $billing_form = $type_obj->generate_new_billing_form($transaction); |
|
231 | + if ($billing_form instanceof EE_Form_Section_Proper) { |
|
232 | + $billing_form->enqueue_js(); |
|
233 | + } |
|
234 | + } |
|
235 | + } |
|
236 | + } |
|
237 | + |
|
238 | + |
|
239 | + /** |
|
240 | + * initialize_reg_step |
|
241 | + * |
|
242 | + * @return bool |
|
243 | + * @throws EE_Error |
|
244 | + * @throws InvalidArgumentException |
|
245 | + * @throws ReflectionException |
|
246 | + * @throws InvalidDataTypeException |
|
247 | + * @throws InvalidInterfaceException |
|
248 | + */ |
|
249 | + public function initialize_reg_step() |
|
250 | + { |
|
251 | + // TODO: if /when we implement donations, then this will need overriding |
|
252 | + if ( |
|
253 | + // don't need payment options for: |
|
254 | + // registrations made via the admin |
|
255 | + // completed transactions |
|
256 | + // overpaid transactions |
|
257 | + // $ 0.00 transactions(no payment required) |
|
258 | + ! $this->checkout->payment_required() |
|
259 | + // but do NOT remove if current action being called belongs to this reg step |
|
260 | + && ! is_callable([$this, $this->checkout->action]) |
|
261 | + && ! $this->completed() |
|
262 | + ) { |
|
263 | + // and if so, then we no longer need the Payment Options step |
|
264 | + if ($this->is_current_step()) { |
|
265 | + $this->checkout->generate_reg_form = false; |
|
266 | + } |
|
267 | + $this->checkout->remove_reg_step($this->_slug); |
|
268 | + // DEBUG LOG |
|
269 | + // $this->checkout->log( __CLASS__, __FUNCTION__, __LINE__ ); |
|
270 | + return false; |
|
271 | + } |
|
272 | + // load EEM_Payment_Method |
|
273 | + EE_Registry::instance()->load_model('Payment_Method'); |
|
274 | + // get all active payment methods |
|
275 | + $this->checkout->available_payment_methods = EEM_Payment_Method::instance()->get_all_for_transaction( |
|
276 | + $this->checkout->transaction, |
|
277 | + EEM_Payment_Method::scope_cart |
|
278 | + ); |
|
279 | + return true; |
|
280 | + } |
|
281 | + |
|
282 | + |
|
283 | + /** |
|
284 | + * @return EE_Form_Section_Proper |
|
285 | + * @throws EE_Error |
|
286 | + * @throws InvalidArgumentException |
|
287 | + * @throws ReflectionException |
|
288 | + * @throws EntityNotFoundException |
|
289 | + * @throws InvalidDataTypeException |
|
290 | + * @throws InvalidInterfaceException |
|
291 | + * @throws InvalidStatusException |
|
292 | + */ |
|
293 | + public function generate_reg_form() |
|
294 | + { |
|
295 | + // reset in case someone changes their mind |
|
296 | + $this->_reset_selected_method_of_payment(); |
|
297 | + // set some defaults |
|
298 | + $this->checkout->selected_method_of_payment = 'payments_closed'; |
|
299 | + $registrations_requiring_payment = []; |
|
300 | + $registrations_for_free_events = []; |
|
301 | + $registrations_requiring_pre_approval = []; |
|
302 | + $sold_out_events = []; |
|
303 | + $insufficient_spaces_available = []; |
|
304 | + $no_payment_required = true; |
|
305 | + // loop thru registrations to gather info |
|
306 | + $registrations = $this->checkout->transaction->registrations($this->checkout->reg_cache_where_params); |
|
307 | + $ejected_registrations = EE_SPCO_Reg_Step_Payment_Options::find_registrations_that_lost_their_space( |
|
308 | + $registrations, |
|
309 | + $this->checkout->revisit |
|
310 | + ); |
|
311 | + foreach ($registrations as $REG_ID => $registration) { |
|
312 | + /** @var $registration EE_Registration */ |
|
313 | + // has this registration lost it's space ? |
|
314 | + if (isset($ejected_registrations[ $REG_ID ])) { |
|
315 | + if ($registration->event()->is_sold_out() || $registration->event()->is_sold_out(true)) { |
|
316 | + $sold_out_events[ $registration->event()->ID() ] = $registration->event(); |
|
317 | + } else { |
|
318 | + $insufficient_spaces_available[ $registration->event()->ID() ] = $registration->event(); |
|
319 | + } |
|
320 | + continue; |
|
321 | + } |
|
322 | + // event requires admin approval |
|
323 | + if ($registration->status_ID() === EEM_Registration::status_id_not_approved) { |
|
324 | + // add event to list of events with pre-approval reg status |
|
325 | + $registrations_requiring_pre_approval[ $REG_ID ] = $registration; |
|
326 | + do_action( |
|
327 | + 'AHEE__EE_SPCO_Reg_Step_Payment_Options__generate_reg_form__event_requires_pre_approval', |
|
328 | + $registration->event(), |
|
329 | + $this |
|
330 | + ); |
|
331 | + continue; |
|
332 | + } |
|
333 | + if ( |
|
334 | + $this->checkout->revisit |
|
335 | + && $registration->status_ID() !== EEM_Registration::status_id_approved |
|
336 | + && ( |
|
337 | + $registration->event()->is_sold_out() |
|
338 | + || $registration->event()->is_sold_out(true) |
|
339 | + ) |
|
340 | + ) { |
|
341 | + // add event to list of events that are sold out |
|
342 | + $sold_out_events[ $registration->event()->ID() ] = $registration->event(); |
|
343 | + do_action( |
|
344 | + 'AHEE__EE_SPCO_Reg_Step_Payment_Options__generate_reg_form__sold_out_event', |
|
345 | + $registration->event(), |
|
346 | + $this |
|
347 | + ); |
|
348 | + continue; |
|
349 | + } |
|
350 | + // are they allowed to pay now and is there monies owing? |
|
351 | + if ($registration->owes_monies_and_can_pay()) { |
|
352 | + $registrations_requiring_payment[ $REG_ID ] = $registration; |
|
353 | + do_action( |
|
354 | + 'AHEE__EE_SPCO_Reg_Step_Payment_Options__generate_reg_form__event_requires_payment', |
|
355 | + $registration->event(), |
|
356 | + $this |
|
357 | + ); |
|
358 | + } elseif ( |
|
359 | + ! $this->checkout->revisit |
|
360 | + && $registration->status_ID() !== EEM_Registration::status_id_not_approved |
|
361 | + && $registration->ticket()->is_free() |
|
362 | + ) { |
|
363 | + $registrations_for_free_events[ $registration->ticket()->ID() ] = $registration; |
|
364 | + } |
|
365 | + } |
|
366 | + $subsections = []; |
|
367 | + // now decide which template to load |
|
368 | + if (! empty($sold_out_events)) { |
|
369 | + $subsections['sold_out_events'] = $this->_sold_out_events($sold_out_events); |
|
370 | + } |
|
371 | + if (! empty($insufficient_spaces_available)) { |
|
372 | + $subsections['insufficient_space'] = $this->_insufficient_spaces_available( |
|
373 | + $insufficient_spaces_available |
|
374 | + ); |
|
375 | + } |
|
376 | + if (! empty($registrations_requiring_pre_approval)) { |
|
377 | + $subsections['registrations_requiring_pre_approval'] = $this->_registrations_requiring_pre_approval( |
|
378 | + $registrations_requiring_pre_approval |
|
379 | + ); |
|
380 | + } |
|
381 | + if (! empty($registrations_for_free_events)) { |
|
382 | + $subsections['no_payment_required'] = $this->_no_payment_required($registrations_for_free_events); |
|
383 | + } |
|
384 | + if (! empty($registrations_requiring_payment)) { |
|
385 | + if ($this->checkout->amount_owing > 0) { |
|
386 | + // autoload Line_Item_Display classes |
|
387 | + EEH_Autoloader::register_line_item_filter_autoloaders(); |
|
388 | + $line_item_filter_processor = new EE_Line_Item_Filter_Processor( |
|
389 | + apply_filters( |
|
390 | + 'FHEE__SPCO__EE_Line_Item_Filter_Collection', |
|
391 | + new EE_Line_Item_Filter_Collection() |
|
392 | + ), |
|
393 | + $this->checkout->cart->get_grand_total() |
|
394 | + ); |
|
395 | + /** @var EE_Line_Item $filtered_line_item_tree */ |
|
396 | + $filtered_line_item_tree = $line_item_filter_processor->process(); |
|
397 | + EEH_Autoloader::register_line_item_display_autoloaders(); |
|
398 | + $this->set_line_item_display(new EE_Line_Item_Display('spco')); |
|
399 | + $subsections['payment_options'] = $this->_display_payment_options( |
|
400 | + $this->line_item_display->display_line_item( |
|
401 | + $filtered_line_item_tree, |
|
402 | + ['registrations' => $registrations] |
|
403 | + ) |
|
404 | + ); |
|
405 | + $this->checkout->amount_owing = $filtered_line_item_tree->total(); |
|
406 | + $this->_apply_registration_payments_to_amount_owing($registrations); |
|
407 | + } |
|
408 | + $no_payment_required = false; |
|
409 | + } else { |
|
410 | + $this->_hide_reg_step_submit_button_if_revisit(); |
|
411 | + } |
|
412 | + $this->_save_selected_method_of_payment(); |
|
413 | + |
|
414 | + $subsections['default_hidden_inputs'] = $this->reg_step_hidden_inputs(); |
|
415 | + $subsections['extra_hidden_inputs'] = $this->_extra_hidden_inputs($no_payment_required); |
|
416 | + |
|
417 | + return new EE_Form_Section_Proper( |
|
418 | + [ |
|
419 | + 'name' => $this->reg_form_name(), |
|
420 | + 'html_id' => $this->reg_form_name(), |
|
421 | + 'subsections' => $subsections, |
|
422 | + 'layout_strategy' => new EE_No_Layout(), |
|
423 | + ] |
|
424 | + ); |
|
425 | + } |
|
426 | + |
|
427 | + |
|
428 | + /** |
|
429 | + * add line item filters required for this reg step |
|
430 | + * these filters are applied via this line in EE_SPCO_Reg_Step_Payment_Options::set_hooks(): |
|
431 | + * add_filter( 'FHEE__SPCO__EE_Line_Item_Filter_Collection', array( 'EE_SPCO_Reg_Step_Payment_Options', |
|
432 | + * 'add_spco_line_item_filters' ) ); so any code that wants to use the same set of filters during the |
|
433 | + * payment options reg step, can apply these filters via the following: apply_filters( |
|
434 | + * 'FHEE__SPCO__EE_Line_Item_Filter_Collection', new EE_Line_Item_Filter_Collection() ) or to an existing |
|
435 | + * filter collection by passing that instead of instantiating a new collection |
|
436 | + * |
|
437 | + * @param EE_Line_Item_Filter_Collection $line_item_filter_collection |
|
438 | + * @return EE_Line_Item_Filter_Collection |
|
439 | + * @throws EE_Error |
|
440 | + * @throws InvalidArgumentException |
|
441 | + * @throws ReflectionException |
|
442 | + * @throws EntityNotFoundException |
|
443 | + * @throws InvalidDataTypeException |
|
444 | + * @throws InvalidInterfaceException |
|
445 | + * @throws InvalidStatusException |
|
446 | + */ |
|
447 | + public static function add_spco_line_item_filters(EE_Line_Item_Filter_Collection $line_item_filter_collection) |
|
448 | + { |
|
449 | + if (! EE_Registry::instance()->SSN instanceof EE_Session) { |
|
450 | + return $line_item_filter_collection; |
|
451 | + } |
|
452 | + if (! EE_Registry::instance()->SSN->checkout() instanceof EE_Checkout) { |
|
453 | + return $line_item_filter_collection; |
|
454 | + } |
|
455 | + if (! EE_Registry::instance()->SSN->checkout()->transaction instanceof EE_Transaction) { |
|
456 | + return $line_item_filter_collection; |
|
457 | + } |
|
458 | + $line_item_filter_collection->add( |
|
459 | + new EE_Billable_Line_Item_Filter( |
|
460 | + EE_SPCO_Reg_Step_Payment_Options::remove_ejected_registrations( |
|
461 | + EE_Registry::instance()->SSN->checkout()->transaction->registrations( |
|
462 | + EE_Registry::instance()->SSN->checkout()->reg_cache_where_params |
|
463 | + ) |
|
464 | + ) |
|
465 | + ) |
|
466 | + ); |
|
467 | + $line_item_filter_collection->add(new EE_Non_Zero_Line_Item_Filter()); |
|
468 | + return $line_item_filter_collection; |
|
469 | + } |
|
470 | + |
|
471 | + |
|
472 | + /** |
|
473 | + * remove_ejected_registrations |
|
474 | + * if a registrant has lost their potential space at an event due to lack of payment, |
|
475 | + * then this method removes them from the list of registrations being paid for during this request |
|
476 | + * |
|
477 | + * @param EE_Registration[] $registrations |
|
478 | + * @return EE_Registration[] |
|
479 | + * @throws EE_Error |
|
480 | + * @throws InvalidArgumentException |
|
481 | + * @throws ReflectionException |
|
482 | + * @throws EntityNotFoundException |
|
483 | + * @throws InvalidDataTypeException |
|
484 | + * @throws InvalidInterfaceException |
|
485 | + * @throws InvalidStatusException |
|
486 | + */ |
|
487 | + public static function remove_ejected_registrations(array $registrations) |
|
488 | + { |
|
489 | + $ejected_registrations = EE_SPCO_Reg_Step_Payment_Options::find_registrations_that_lost_their_space( |
|
490 | + $registrations, |
|
491 | + EE_Registry::instance()->SSN->checkout()->revisit |
|
492 | + ); |
|
493 | + foreach ($registrations as $REG_ID => $registration) { |
|
494 | + // has this registration lost it's space ? |
|
495 | + if (isset($ejected_registrations[ $REG_ID ])) { |
|
496 | + unset($registrations[ $REG_ID ]); |
|
497 | + } |
|
498 | + } |
|
499 | + return $registrations; |
|
500 | + } |
|
501 | + |
|
502 | + |
|
503 | + /** |
|
504 | + * find_registrations_that_lost_their_space |
|
505 | + * If a registrant chooses an offline payment method like Invoice, |
|
506 | + * then no space is reserved for them at the event until they fully pay fo that site |
|
507 | + * (unless the event's default reg status is set to APPROVED) |
|
508 | + * if a registrant then later returns to pay, but the number of spaces available has been reduced due to sales, |
|
509 | + * then this method will determine which registrations have lost the ability to complete the reg process. |
|
510 | + * |
|
511 | + * @param EE_Registration[] $registrations |
|
512 | + * @param bool $revisit |
|
513 | + * @return array |
|
514 | + * @throws EE_Error |
|
515 | + * @throws InvalidArgumentException |
|
516 | + * @throws ReflectionException |
|
517 | + * @throws EntityNotFoundException |
|
518 | + * @throws InvalidDataTypeException |
|
519 | + * @throws InvalidInterfaceException |
|
520 | + * @throws InvalidStatusException |
|
521 | + */ |
|
522 | + public static function find_registrations_that_lost_their_space(array $registrations, $revisit = false) |
|
523 | + { |
|
524 | + // registrations per event |
|
525 | + $event_reg_count = []; |
|
526 | + // spaces left per event |
|
527 | + $event_spaces_remaining = []; |
|
528 | + // tickets left sorted by ID |
|
529 | + $tickets_remaining = []; |
|
530 | + // registrations that have lost their space |
|
531 | + $ejected_registrations = []; |
|
532 | + foreach ($registrations as $REG_ID => $registration) { |
|
533 | + if ( |
|
534 | + $registration->status_ID() === EEM_Registration::status_id_approved |
|
535 | + || apply_filters( |
|
536 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options__find_registrations_that_lost_their_space__allow_reg_payment', |
|
537 | + false, |
|
538 | + $registration, |
|
539 | + $revisit |
|
540 | + ) |
|
541 | + ) { |
|
542 | + continue; |
|
543 | + } |
|
544 | + $EVT_ID = $registration->event_ID(); |
|
545 | + $ticket = $registration->ticket(); |
|
546 | + if (! isset($tickets_remaining[ $ticket->ID() ])) { |
|
547 | + $tickets_remaining[ $ticket->ID() ] = $ticket->remaining(); |
|
548 | + } |
|
549 | + if ($tickets_remaining[ $ticket->ID() ] > 0) { |
|
550 | + if (! isset($event_reg_count[ $EVT_ID ])) { |
|
551 | + $event_reg_count[ $EVT_ID ] = 0; |
|
552 | + } |
|
553 | + $event_reg_count[ $EVT_ID ]++; |
|
554 | + if (! isset($event_spaces_remaining[ $EVT_ID ])) { |
|
555 | + $event_spaces_remaining[ $EVT_ID ] = $registration->event()->spaces_remaining_for_sale(); |
|
556 | + } |
|
557 | + } |
|
558 | + if ( |
|
559 | + $revisit |
|
560 | + && ($tickets_remaining[ $ticket->ID() ] === 0 |
|
561 | + || $event_reg_count[ $EVT_ID ] > $event_spaces_remaining[ $EVT_ID ] |
|
562 | + ) |
|
563 | + ) { |
|
564 | + $ejected_registrations[ $REG_ID ] = $registration->event(); |
|
565 | + if ($registration->status_ID() !== EEM_Registration::status_id_wait_list) { |
|
566 | + /** @type EE_Registration_Processor $registration_processor */ |
|
567 | + $registration_processor = EE_Registry::instance()->load_class('Registration_Processor'); |
|
568 | + // at this point, we should have enough details about the registrant to consider the registration |
|
569 | + // NOT incomplete |
|
570 | + $registration_processor->manually_update_registration_status( |
|
571 | + $registration, |
|
572 | + EEM_Registration::status_id_wait_list |
|
573 | + ); |
|
574 | + } |
|
575 | + } |
|
576 | + } |
|
577 | + return $ejected_registrations; |
|
578 | + } |
|
579 | + |
|
580 | + |
|
581 | + /** |
|
582 | + * _hide_reg_step_submit_button |
|
583 | + * removes the html for the reg step submit button |
|
584 | + * by replacing it with an empty string via filter callback |
|
585 | + * |
|
586 | + * @return void |
|
587 | + */ |
|
588 | + protected function _adjust_registration_status_if_event_old_sold() |
|
589 | + { |
|
590 | + } |
|
591 | + |
|
592 | + |
|
593 | + /** |
|
594 | + * _hide_reg_step_submit_button |
|
595 | + * removes the html for the reg step submit button |
|
596 | + * by replacing it with an empty string via filter callback |
|
597 | + * |
|
598 | + * @return void |
|
599 | + */ |
|
600 | + protected function _hide_reg_step_submit_button_if_revisit() |
|
601 | + { |
|
602 | + if ($this->checkout->revisit) { |
|
603 | + add_filter('FHEE__EE_SPCO_Reg_Step__reg_step_submit_button__sbmt_btn_html', '__return_empty_string'); |
|
604 | + } |
|
605 | + } |
|
606 | + |
|
607 | + |
|
608 | + /** |
|
609 | + * sold_out_events |
|
610 | + * displays notices regarding events that have sold out since hte registrant first signed up |
|
611 | + * |
|
612 | + * @param EE_Event[] $sold_out_events_array |
|
613 | + * @return EE_Form_Section_Proper |
|
614 | + * @throws EE_Error |
|
615 | + */ |
|
616 | + private function _sold_out_events($sold_out_events_array = []) |
|
617 | + { |
|
618 | + // set some defaults |
|
619 | + $this->checkout->selected_method_of_payment = 'events_sold_out'; |
|
620 | + $sold_out_events = ''; |
|
621 | + foreach ($sold_out_events_array as $sold_out_event) { |
|
622 | + $sold_out_events .= EEH_HTML::li( |
|
623 | + EEH_HTML::span( |
|
624 | + ' ' . $sold_out_event->name(), |
|
625 | + '', |
|
626 | + 'dashicons dashicons-marker ee-icon-size-16 pink-text' |
|
627 | + ) |
|
628 | + ); |
|
629 | + } |
|
630 | + return new EE_Form_Section_Proper( |
|
631 | + [ |
|
632 | + 'layout_strategy' => new EE_Template_Layout( |
|
633 | + [ |
|
634 | + 'layout_template_file' => SPCO_REG_STEPS_PATH |
|
635 | + . $this->_slug |
|
636 | + . '/sold_out_events.template.php', |
|
637 | + 'template_args' => apply_filters( |
|
638 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___sold_out_events__template_args', |
|
639 | + [ |
|
640 | + 'sold_out_events' => $sold_out_events, |
|
641 | + 'sold_out_events_msg' => apply_filters( |
|
642 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___sold_out_events__sold_out_events_msg', |
|
643 | + sprintf( |
|
644 | + esc_html__( |
|
645 | + 'It appears that the event you were about to make a payment for has sold out since you first registered. If you have already made a partial payment towards this event, please contact the event administrator for a refund.%3$s%3$s%1$sPlease note that availability can change at any time due to cancellations, so please check back again later if registration for this event(s) is important to you.%2$s', |
|
646 | + 'event_espresso' |
|
647 | + ), |
|
648 | + '<strong>', |
|
649 | + '</strong>', |
|
650 | + '<br />' |
|
651 | + ) |
|
652 | + ), |
|
653 | + ] |
|
654 | + ), |
|
655 | + ] |
|
656 | + ), |
|
657 | + ] |
|
658 | + ); |
|
659 | + } |
|
660 | + |
|
661 | + |
|
662 | + /** |
|
663 | + * _insufficient_spaces_available |
|
664 | + * displays notices regarding events that do not have enough remaining spaces |
|
665 | + * to satisfy the current number of registrations looking to pay |
|
666 | + * |
|
667 | + * @param EE_Event[] $insufficient_spaces_events_array |
|
668 | + * @return EE_Form_Section_Proper |
|
669 | + * @throws EE_Error |
|
670 | + * @throws ReflectionException |
|
671 | + */ |
|
672 | + private function _insufficient_spaces_available($insufficient_spaces_events_array = []) |
|
673 | + { |
|
674 | + // set some defaults |
|
675 | + $this->checkout->selected_method_of_payment = 'invoice'; |
|
676 | + $insufficient_space_events = ''; |
|
677 | + foreach ($insufficient_spaces_events_array as $event) { |
|
678 | + if ($event instanceof EE_Event) { |
|
679 | + $insufficient_space_events .= EEH_HTML::li( |
|
680 | + EEH_HTML::span(' ' . $event->name(), '', 'dashicons dashicons-marker ee-icon-size-16 pink-text') |
|
681 | + ); |
|
682 | + } |
|
683 | + } |
|
684 | + return new EE_Form_Section_Proper( |
|
685 | + [ |
|
686 | + 'subsections' => [ |
|
687 | + 'default_hidden_inputs' => $this->reg_step_hidden_inputs(), |
|
688 | + 'extra_hidden_inputs' => $this->_extra_hidden_inputs(), |
|
689 | + ], |
|
690 | + 'layout_strategy' => new EE_Template_Layout( |
|
691 | + [ |
|
692 | + 'layout_template_file' => SPCO_REG_STEPS_PATH |
|
693 | + . $this->_slug |
|
694 | + . '/sold_out_events.template.php', |
|
695 | + 'template_args' => apply_filters( |
|
696 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___insufficient_spaces_available__template_args', |
|
697 | + [ |
|
698 | + 'sold_out_events' => $insufficient_space_events, |
|
699 | + 'sold_out_events_msg' => apply_filters( |
|
700 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___insufficient_spaces_available__insufficient_space_msg', |
|
701 | + esc_html__( |
|
702 | + 'It appears that the event you were about to make a payment for has sold additional tickets since you first registered, and there are no longer enough spaces left to accommodate your selections. You may continue to pay and secure the available space(s) remaining, or simply cancel if you no longer wish to purchase. If you have already made a partial payment towards this event, please contact the event administrator for a refund.', |
|
703 | + 'event_espresso' |
|
704 | + ) |
|
705 | + ), |
|
706 | + ] |
|
707 | + ), |
|
708 | + ] |
|
709 | + ), |
|
710 | + ] |
|
711 | + ); |
|
712 | + } |
|
713 | + |
|
714 | + |
|
715 | + /** |
|
716 | + * registrations_requiring_pre_approval |
|
717 | + * |
|
718 | + * @param array $registrations_requiring_pre_approval |
|
719 | + * @return EE_Form_Section_Proper |
|
720 | + * @throws EE_Error |
|
721 | + * @throws EntityNotFoundException |
|
722 | + * @throws ReflectionException |
|
723 | + */ |
|
724 | + private function _registrations_requiring_pre_approval($registrations_requiring_pre_approval = []) |
|
725 | + { |
|
726 | + $events_requiring_pre_approval = []; |
|
727 | + foreach ($registrations_requiring_pre_approval as $registration) { |
|
728 | + if ($registration instanceof EE_Registration && $registration->event() instanceof EE_Event) { |
|
729 | + $events_requiring_pre_approval[ $registration->event()->ID() ] = EEH_HTML::li( |
|
730 | + EEH_HTML::span( |
|
731 | + '', |
|
732 | + '', |
|
733 | + 'dashicons dashicons-marker ee-icon-size-16 orange-text' |
|
734 | + ) |
|
735 | + . EEH_HTML::span($registration->event()->name(), '', 'orange-text') |
|
736 | + ); |
|
737 | + } |
|
738 | + } |
|
739 | + return new EE_Form_Section_Proper( |
|
740 | + [ |
|
741 | + 'layout_strategy' => new EE_Template_Layout( |
|
742 | + [ |
|
743 | + 'layout_template_file' => SPCO_REG_STEPS_PATH |
|
744 | + . $this->_slug |
|
745 | + . '/events_requiring_pre_approval.template.php', // layout_template |
|
746 | + 'template_args' => apply_filters( |
|
747 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___sold_out_events__template_args', |
|
748 | + [ |
|
749 | + 'events_requiring_pre_approval' => implode('', $events_requiring_pre_approval), |
|
750 | + 'events_requiring_pre_approval_msg' => apply_filters( |
|
751 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___events_requiring_pre_approval__events_requiring_pre_approval_msg', |
|
752 | + esc_html__( |
|
753 | + 'The following events do not require payment at this time and will not be billed during this transaction. Billing will only occur after the attendee has been approved by the event organizer. You will be notified when your registration has been processed. If this is a free event, then no billing will occur.', |
|
754 | + 'event_espresso' |
|
755 | + ) |
|
756 | + ), |
|
757 | + ] |
|
758 | + ), |
|
759 | + ] |
|
760 | + ), |
|
761 | + ] |
|
762 | + ); |
|
763 | + } |
|
764 | + |
|
765 | + |
|
766 | + /** |
|
767 | + * _no_payment_required |
|
768 | + * |
|
769 | + * @param EE_Event[] $registrations_for_free_events |
|
770 | + * @return EE_Form_Section_Proper |
|
771 | + * @throws EE_Error |
|
772 | + */ |
|
773 | + private function _no_payment_required($registrations_for_free_events = []) |
|
774 | + { |
|
775 | + // set some defaults |
|
776 | + $this->checkout->selected_method_of_payment = 'no_payment_required'; |
|
777 | + // generate no_payment_required form |
|
778 | + return new EE_Form_Section_Proper( |
|
779 | + [ |
|
780 | + 'layout_strategy' => new EE_Template_Layout( |
|
781 | + [ |
|
782 | + 'layout_template_file' => SPCO_REG_STEPS_PATH |
|
783 | + . $this->_slug |
|
784 | + . '/no_payment_required.template.php', // layout_template |
|
785 | + 'template_args' => apply_filters( |
|
786 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___no_payment_required__template_args', |
|
787 | + [ |
|
788 | + 'revisit' => $this->checkout->revisit, |
|
789 | + 'registrations' => [], |
|
790 | + 'ticket_count' => [], |
|
791 | + 'registrations_for_free_events' => $registrations_for_free_events, |
|
792 | + 'no_payment_required_msg' => EEH_HTML::p( |
|
793 | + esc_html__('This is a free event, so no billing will occur.', 'event_espresso') |
|
794 | + ), |
|
795 | + ] |
|
796 | + ), |
|
797 | + ] |
|
798 | + ), |
|
799 | + ] |
|
800 | + ); |
|
801 | + } |
|
802 | + |
|
803 | + |
|
804 | + /** |
|
805 | + * _display_payment_options |
|
806 | + * |
|
807 | + * @param string $transaction_details |
|
808 | + * @return EE_Form_Section_Proper |
|
809 | + * @throws EE_Error |
|
810 | + * @throws InvalidArgumentException |
|
811 | + * @throws InvalidDataTypeException |
|
812 | + * @throws InvalidInterfaceException |
|
813 | + */ |
|
814 | + private function _display_payment_options($transaction_details = '') |
|
815 | + { |
|
816 | + // has method_of_payment been set by no-js user? |
|
817 | + $this->checkout->selected_method_of_payment = $this->_get_selected_method_of_payment(); |
|
818 | + // build payment options form |
|
819 | + return apply_filters( |
|
820 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___display_payment_options__payment_options_form', |
|
821 | + new EE_Form_Section_Proper( |
|
822 | + [ |
|
823 | + 'subsections' => [ |
|
824 | + 'before_payment_options' => apply_filters( |
|
825 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___display_payment_options__before_payment_options', |
|
826 | + new EE_Form_Section_Proper( |
|
827 | + ['layout_strategy' => new EE_Div_Per_Section_Layout()] |
|
828 | + ) |
|
829 | + ), |
|
830 | + 'payment_options' => $this->_setup_payment_options(), |
|
831 | + 'after_payment_options' => apply_filters( |
|
832 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___display_payment_options__after_payment_options', |
|
833 | + new EE_Form_Section_Proper( |
|
834 | + ['layout_strategy' => new EE_Div_Per_Section_Layout()] |
|
835 | + ) |
|
836 | + ), |
|
837 | + ], |
|
838 | + 'layout_strategy' => new EE_Template_Layout( |
|
839 | + [ |
|
840 | + 'layout_template_file' => $this->_template, |
|
841 | + 'template_args' => apply_filters( |
|
842 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___display_payment_options__template_args', |
|
843 | + [ |
|
844 | + 'reg_count' => $this->line_item_display->total_items(), |
|
845 | + 'transaction_details' => $transaction_details, |
|
846 | + 'available_payment_methods' => [], |
|
847 | + ] |
|
848 | + ), |
|
849 | + ] |
|
850 | + ), |
|
851 | + ] |
|
852 | + ) |
|
853 | + ); |
|
854 | + } |
|
855 | + |
|
856 | + |
|
857 | + /** |
|
858 | + * _extra_hidden_inputs |
|
859 | + * |
|
860 | + * @param bool $no_payment_required |
|
861 | + * @return EE_Form_Section_Proper |
|
862 | + * @throws EE_Error |
|
863 | + * @throws ReflectionException |
|
864 | + */ |
|
865 | + private function _extra_hidden_inputs($no_payment_required = true) |
|
866 | + { |
|
867 | + return new EE_Form_Section_Proper( |
|
868 | + [ |
|
869 | + 'html_id' => 'ee-' . $this->slug() . '-extra-hidden-inputs', |
|
870 | + 'layout_strategy' => new EE_Div_Per_Section_Layout(), |
|
871 | + 'subsections' => [ |
|
872 | + 'spco_no_payment_required' => new EE_Hidden_Input( |
|
873 | + [ |
|
874 | + 'normalization_strategy' => new EE_Boolean_Normalization(), |
|
875 | + 'html_name' => 'spco_no_payment_required', |
|
876 | + 'html_id' => 'spco-no-payment-required-payment_options', |
|
877 | + 'default' => $no_payment_required, |
|
878 | + ] |
|
879 | + ), |
|
880 | + 'spco_transaction_id' => new EE_Fixed_Hidden_Input( |
|
881 | + [ |
|
882 | + 'normalization_strategy' => new EE_Int_Normalization(), |
|
883 | + 'html_name' => 'spco_transaction_id', |
|
884 | + 'html_id' => 'spco-transaction-id', |
|
885 | + 'default' => $this->checkout->transaction->ID(), |
|
886 | + ] |
|
887 | + ), |
|
888 | + ], |
|
889 | + ] |
|
890 | + ); |
|
891 | + } |
|
892 | + |
|
893 | + |
|
894 | + /** |
|
895 | + * _apply_registration_payments_to_amount_owing |
|
896 | + * |
|
897 | + * @param array $registrations |
|
898 | + * @throws EE_Error |
|
899 | + */ |
|
900 | + protected function _apply_registration_payments_to_amount_owing(array $registrations) |
|
901 | + { |
|
902 | + $payments = []; |
|
903 | + foreach ($registrations as $registration) { |
|
904 | + if ($registration instanceof EE_Registration && $registration->owes_monies_and_can_pay()) { |
|
905 | + $payments += $registration->registration_payments(); |
|
906 | + } |
|
907 | + } |
|
908 | + if (! empty($payments)) { |
|
909 | + foreach ($payments as $payment) { |
|
910 | + if ($payment instanceof EE_Registration_Payment) { |
|
911 | + $this->checkout->amount_owing -= $payment->amount(); |
|
912 | + } |
|
913 | + } |
|
914 | + } |
|
915 | + } |
|
916 | + |
|
917 | + |
|
918 | + /** |
|
919 | + * _reset_selected_method_of_payment |
|
920 | + * |
|
921 | + * @access private |
|
922 | + * @param bool $force_reset |
|
923 | + * @return void |
|
924 | + * @throws InvalidArgumentException |
|
925 | + * @throws InvalidDataTypeException |
|
926 | + * @throws InvalidInterfaceException |
|
927 | + */ |
|
928 | + private function _reset_selected_method_of_payment($force_reset = false) |
|
929 | + { |
|
930 | + /** @var RequestInterface $request */ |
|
931 | + $request = LoaderFactory::getLoader()->getShared(RequestInterface::class); |
|
932 | + $reset_payment_method = $request->getRequestParam('reset_payment_method', $force_reset, 'bool'); |
|
933 | + if ($reset_payment_method) { |
|
934 | + $this->checkout->selected_method_of_payment = null; |
|
935 | + $this->checkout->payment_method = null; |
|
936 | + $this->checkout->billing_form = null; |
|
937 | + $this->_save_selected_method_of_payment(); |
|
938 | + } |
|
939 | + } |
|
940 | + |
|
941 | + |
|
942 | + /** |
|
943 | + * _save_selected_method_of_payment |
|
944 | + * stores the selected_method_of_payment in the session |
|
945 | + * so that it's available for all subsequent requests including AJAX |
|
946 | + * |
|
947 | + * @access private |
|
948 | + * @param string $selected_method_of_payment |
|
949 | + * @return void |
|
950 | + * @throws InvalidArgumentException |
|
951 | + * @throws InvalidDataTypeException |
|
952 | + * @throws InvalidInterfaceException |
|
953 | + */ |
|
954 | + private function _save_selected_method_of_payment($selected_method_of_payment = '') |
|
955 | + { |
|
956 | + $selected_method_of_payment = ! empty($selected_method_of_payment) |
|
957 | + ? $selected_method_of_payment |
|
958 | + : $this->checkout->selected_method_of_payment; |
|
959 | + EE_Registry::instance()->SSN->set_session_data( |
|
960 | + ['selected_method_of_payment' => $selected_method_of_payment] |
|
961 | + ); |
|
962 | + } |
|
963 | + |
|
964 | + |
|
965 | + /** |
|
966 | + * _setup_payment_options |
|
967 | + * |
|
968 | + * @return EE_Form_Section_Proper |
|
969 | + * @throws EE_Error |
|
970 | + * @throws InvalidArgumentException |
|
971 | + * @throws InvalidDataTypeException |
|
972 | + * @throws InvalidInterfaceException |
|
973 | + */ |
|
974 | + public function _setup_payment_options() |
|
975 | + { |
|
976 | + // load payment method classes |
|
977 | + $this->checkout->available_payment_methods = $this->_get_available_payment_methods(); |
|
978 | + if (empty($this->checkout->available_payment_methods)) { |
|
979 | + EE_Error::add_error( |
|
980 | + apply_filters( |
|
981 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___setup_payment_options__error_message_no_payment_methods', |
|
982 | + sprintf( |
|
983 | + esc_html__( |
|
984 | + 'Sorry, you cannot complete your purchase because a payment method is not active.%1$s Please contact %2$s for assistance and provide a description of the problem.', |
|
985 | + 'event_espresso' |
|
986 | + ), |
|
987 | + '<br>', |
|
988 | + EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
989 | + ) |
|
990 | + ), |
|
991 | + __FILE__, |
|
992 | + __FUNCTION__, |
|
993 | + __LINE__ |
|
994 | + ); |
|
995 | + } |
|
996 | + // switch up header depending on number of available payment methods |
|
997 | + $payment_method_header = count($this->checkout->available_payment_methods) > 1 |
|
998 | + ? apply_filters( |
|
999 | + 'FHEE__registration_page_payment_options__method_of_payment_hdr', |
|
1000 | + esc_html__('Please Select Your Method of Payment', 'event_espresso') |
|
1001 | + ) |
|
1002 | + : apply_filters( |
|
1003 | + 'FHEE__registration_page_payment_options__method_of_payment_hdr', |
|
1004 | + esc_html__('Method of Payment', 'event_espresso') |
|
1005 | + ); |
|
1006 | + $available_payment_methods = [ |
|
1007 | + // display the "Payment Method" header |
|
1008 | + 'payment_method_header' => new EE_Form_Section_HTML( |
|
1009 | + apply_filters( |
|
1010 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___setup_payment_options__payment_method_header', |
|
1011 | + EEH_HTML::h4($payment_method_header, 'method-of-payment-hdr'), |
|
1012 | + $payment_method_header |
|
1013 | + ) |
|
1014 | + ), |
|
1015 | + ]; |
|
1016 | + // the list of actual payment methods ( invoice, paypal, etc ) in a ( slug => HTML ) format |
|
1017 | + $available_payment_method_options = []; |
|
1018 | + $default_payment_method_option = []; |
|
1019 | + // additional instructions to be displayed and hidden below payment methods (adding a clearing div to start) |
|
1020 | + $payment_methods_billing_info = [ |
|
1021 | + new EE_Form_Section_HTML( |
|
1022 | + EEH_HTML::div('<br />', '', '', 'clear:both;') |
|
1023 | + ), |
|
1024 | + ]; |
|
1025 | + // loop through payment methods |
|
1026 | + foreach ($this->checkout->available_payment_methods as $payment_method) { |
|
1027 | + if ($payment_method instanceof EE_Payment_Method) { |
|
1028 | + $payment_method_button = EEH_HTML::img( |
|
1029 | + $payment_method->button_url(), |
|
1030 | + $payment_method->name(), |
|
1031 | + 'spco-payment-method-' . $payment_method->slug() . '-btn-img', |
|
1032 | + 'spco-payment-method-btn-img' |
|
1033 | + ); |
|
1034 | + // check if any payment methods are set as default |
|
1035 | + // if payment method is already selected OR nothing is selected and this payment method should be |
|
1036 | + // open_by_default |
|
1037 | + if ( |
|
1038 | + ($this->checkout->selected_method_of_payment === $payment_method->slug()) |
|
1039 | + || (! $this->checkout->selected_method_of_payment && $payment_method->open_by_default()) |
|
1040 | + ) { |
|
1041 | + $this->checkout->selected_method_of_payment = $payment_method->slug(); |
|
1042 | + $this->_save_selected_method_of_payment(); |
|
1043 | + $default_payment_method_option[ $payment_method->slug() ] = $payment_method_button; |
|
1044 | + } else { |
|
1045 | + $available_payment_method_options[ $payment_method->slug() ] = $payment_method_button; |
|
1046 | + } |
|
1047 | + $payment_methods_billing_info[ $payment_method->slug() . '-info' ] = |
|
1048 | + $this->_payment_method_billing_info( |
|
1049 | + $payment_method |
|
1050 | + ); |
|
1051 | + } |
|
1052 | + } |
|
1053 | + // prepend available_payment_method_options with default_payment_method_option so that it appears first in list |
|
1054 | + // of PMs |
|
1055 | + $available_payment_method_options = $default_payment_method_option + $available_payment_method_options; |
|
1056 | + // now generate the actual form inputs |
|
1057 | + $available_payment_methods['available_payment_methods'] = $this->_available_payment_method_inputs( |
|
1058 | + $available_payment_method_options |
|
1059 | + ); |
|
1060 | + $available_payment_methods += $payment_methods_billing_info; |
|
1061 | + // build the available payment methods form |
|
1062 | + return new EE_Form_Section_Proper( |
|
1063 | + [ |
|
1064 | + 'html_id' => 'spco-available-methods-of-payment-dv', |
|
1065 | + 'subsections' => $available_payment_methods, |
|
1066 | + 'layout_strategy' => new EE_Div_Per_Section_Layout(), |
|
1067 | + ] |
|
1068 | + ); |
|
1069 | + } |
|
1070 | + |
|
1071 | + |
|
1072 | + /** |
|
1073 | + * _get_available_payment_methods |
|
1074 | + * |
|
1075 | + * @return EE_Payment_Method[] |
|
1076 | + * @throws EE_Error |
|
1077 | + * @throws InvalidArgumentException |
|
1078 | + * @throws InvalidDataTypeException |
|
1079 | + * @throws InvalidInterfaceException |
|
1080 | + */ |
|
1081 | + protected function _get_available_payment_methods() |
|
1082 | + { |
|
1083 | + if (! empty($this->checkout->available_payment_methods)) { |
|
1084 | + return $this->checkout->available_payment_methods; |
|
1085 | + } |
|
1086 | + $available_payment_methods = []; |
|
1087 | + $EEM_Payment_Method = EEM_Payment_Method::instance(); |
|
1088 | + // get all active payment methods |
|
1089 | + $payment_methods = $EEM_Payment_Method->get_all_for_transaction( |
|
1090 | + $this->checkout->transaction, |
|
1091 | + EEM_Payment_Method::scope_cart |
|
1092 | + ); |
|
1093 | + foreach ($payment_methods as $payment_method) { |
|
1094 | + if ($payment_method instanceof EE_Payment_Method) { |
|
1095 | + $available_payment_methods[ $payment_method->slug() ] = $payment_method; |
|
1096 | + } |
|
1097 | + } |
|
1098 | + return $available_payment_methods; |
|
1099 | + } |
|
1100 | + |
|
1101 | + |
|
1102 | + /** |
|
1103 | + * _available_payment_method_inputs |
|
1104 | + * |
|
1105 | + * @access private |
|
1106 | + * @param array $available_payment_method_options |
|
1107 | + * @return EE_Form_Section_Proper |
|
1108 | + * @throws EE_Error |
|
1109 | + * @throws EE_Error |
|
1110 | + */ |
|
1111 | + private function _available_payment_method_inputs($available_payment_method_options = []) |
|
1112 | + { |
|
1113 | + // generate inputs |
|
1114 | + return new EE_Form_Section_Proper( |
|
1115 | + [ |
|
1116 | + 'html_id' => 'ee-available-payment-method-inputs', |
|
1117 | + 'layout_strategy' => new EE_Div_Per_Section_Layout(), |
|
1118 | + 'subsections' => [ |
|
1119 | + '' => new EE_Radio_Button_Input( |
|
1120 | + $available_payment_method_options, |
|
1121 | + [ |
|
1122 | + 'html_name' => 'selected_method_of_payment', |
|
1123 | + 'html_class' => 'spco-payment-method', |
|
1124 | + 'default' => $this->checkout->selected_method_of_payment, |
|
1125 | + 'label_size' => 11, |
|
1126 | + 'enforce_label_size' => true, |
|
1127 | + ] |
|
1128 | + ), |
|
1129 | + ], |
|
1130 | + ] |
|
1131 | + ); |
|
1132 | + } |
|
1133 | + |
|
1134 | + |
|
1135 | + /** |
|
1136 | + * _payment_method_billing_info |
|
1137 | + * |
|
1138 | + * @access private |
|
1139 | + * @param EE_Payment_Method $payment_method |
|
1140 | + * @return EE_Form_Section_Proper |
|
1141 | + * @throws EE_Error |
|
1142 | + * @throws InvalidArgumentException |
|
1143 | + * @throws InvalidDataTypeException |
|
1144 | + * @throws InvalidInterfaceException |
|
1145 | + */ |
|
1146 | + private function _payment_method_billing_info(EE_Payment_Method $payment_method) |
|
1147 | + { |
|
1148 | + $currently_selected = $this->checkout->selected_method_of_payment === $payment_method->slug(); |
|
1149 | + // generate the billing form for payment method |
|
1150 | + $billing_form = $currently_selected |
|
1151 | + ? $this->_get_billing_form_for_payment_method($payment_method) |
|
1152 | + : new EE_Form_Section_HTML(); |
|
1153 | + $this->checkout->billing_form = $currently_selected |
|
1154 | + ? $billing_form |
|
1155 | + : $this->checkout->billing_form; |
|
1156 | + // it's all in the details |
|
1157 | + $info_html = EEH_HTML::h3( |
|
1158 | + esc_html__('Important information regarding your payment', 'event_espresso'), |
|
1159 | + '', |
|
1160 | + 'spco-payment-method-hdr' |
|
1161 | + ); |
|
1162 | + // add some info regarding the step, either from what's saved in the admin, |
|
1163 | + // or a default string depending on whether the PM has a billing form or not |
|
1164 | + if ($payment_method->description()) { |
|
1165 | + $payment_method_info = $payment_method->description(); |
|
1166 | + } elseif ($billing_form instanceof EE_Billing_Info_Form) { |
|
1167 | + $payment_method_info = sprintf( |
|
1168 | + esc_html__( |
|
1169 | + 'Please provide the following billing information, then click the "%1$s" button below in order to proceed.', |
|
1170 | + 'event_espresso' |
|
1171 | + ), |
|
1172 | + $this->submit_button_text() |
|
1173 | + ); |
|
1174 | + } else { |
|
1175 | + $payment_method_info = sprintf( |
|
1176 | + esc_html__('Please click the "%1$s" button below in order to proceed.', 'event_espresso'), |
|
1177 | + $this->submit_button_text() |
|
1178 | + ); |
|
1179 | + } |
|
1180 | + $info_html .= EEH_HTML::div( |
|
1181 | + apply_filters( |
|
1182 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___payment_method_billing_info__payment_method_info', |
|
1183 | + $payment_method_info |
|
1184 | + ), |
|
1185 | + '', |
|
1186 | + 'spco-payment-method-desc ee-attention' |
|
1187 | + ); |
|
1188 | + return new EE_Form_Section_Proper( |
|
1189 | + [ |
|
1190 | + 'html_id' => 'spco-payment-method-info-' . $payment_method->slug(), |
|
1191 | + 'html_class' => 'spco-payment-method-info-dv', |
|
1192 | + // only display the selected or default PM |
|
1193 | + 'html_style' => $currently_selected ? '' : 'display:none;', |
|
1194 | + 'layout_strategy' => new EE_Div_Per_Section_Layout(), |
|
1195 | + 'subsections' => [ |
|
1196 | + 'info' => new EE_Form_Section_HTML($info_html), |
|
1197 | + 'billing_form' => $currently_selected ? $billing_form : new EE_Form_Section_HTML(), |
|
1198 | + ], |
|
1199 | + ] |
|
1200 | + ); |
|
1201 | + } |
|
1202 | + |
|
1203 | + |
|
1204 | + /** |
|
1205 | + * get_billing_form_html_for_payment_method |
|
1206 | + * |
|
1207 | + * @return bool |
|
1208 | + * @throws EE_Error |
|
1209 | + * @throws InvalidArgumentException |
|
1210 | + * @throws ReflectionException |
|
1211 | + * @throws InvalidDataTypeException |
|
1212 | + * @throws InvalidInterfaceException |
|
1213 | + */ |
|
1214 | + public function get_billing_form_html_for_payment_method() |
|
1215 | + { |
|
1216 | + // how have they chosen to pay? |
|
1217 | + $this->checkout->selected_method_of_payment = $this->_get_selected_method_of_payment(true); |
|
1218 | + $this->checkout->payment_method = $this->_get_payment_method_for_selected_method_of_payment(); |
|
1219 | + if (! $this->checkout->payment_method instanceof EE_Payment_Method) { |
|
1220 | + return false; |
|
1221 | + } |
|
1222 | + if ( |
|
1223 | + apply_filters( |
|
1224 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options__registration_checkout__selected_payment_method__display_success', |
|
1225 | + false |
|
1226 | + ) |
|
1227 | + ) { |
|
1228 | + EE_Error::add_success( |
|
1229 | + apply_filters( |
|
1230 | + 'FHEE__Single_Page_Checkout__registration_checkout__selected_payment_method', |
|
1231 | + sprintf( |
|
1232 | + esc_html__( |
|
1233 | + 'You have selected "%s" as your method of payment. Please note the important payment information below.', |
|
1234 | + 'event_espresso' |
|
1235 | + ), |
|
1236 | + $this->checkout->payment_method->name() |
|
1237 | + ) |
|
1238 | + ) |
|
1239 | + ); |
|
1240 | + } |
|
1241 | + // now generate billing form for selected method of payment |
|
1242 | + $payment_method_billing_form = $this->_get_billing_form_for_payment_method($this->checkout->payment_method); |
|
1243 | + // fill form with attendee info if applicable |
|
1244 | + if ( |
|
1245 | + $payment_method_billing_form instanceof EE_Billing_Attendee_Info_Form |
|
1246 | + && $this->checkout->transaction_has_primary_registrant() |
|
1247 | + ) { |
|
1248 | + $payment_method_billing_form->populate_from_attendee( |
|
1249 | + $this->checkout->transaction->primary_registration()->attendee() |
|
1250 | + ); |
|
1251 | + } |
|
1252 | + // and debug content |
|
1253 | + if ( |
|
1254 | + $payment_method_billing_form instanceof EE_Billing_Info_Form |
|
1255 | + && $this->checkout->payment_method->type_obj() instanceof EE_PMT_Base |
|
1256 | + ) { |
|
1257 | + $payment_method_billing_form = |
|
1258 | + $this->checkout->payment_method->type_obj()->apply_billing_form_debug_settings( |
|
1259 | + $payment_method_billing_form |
|
1260 | + ); |
|
1261 | + } |
|
1262 | + $billing_info = $payment_method_billing_form instanceof EE_Form_Section_Proper |
|
1263 | + ? $payment_method_billing_form->get_html() |
|
1264 | + : ''; |
|
1265 | + $this->checkout->json_response->set_return_data(['payment_method_info' => $billing_info]); |
|
1266 | + // localize validation rules for main form |
|
1267 | + $this->checkout->current_step->reg_form->localize_validation_rules(); |
|
1268 | + $this->checkout->json_response->add_validation_rules(EE_Form_Section_Proper::js_localization()); |
|
1269 | + return true; |
|
1270 | + } |
|
1271 | + |
|
1272 | + |
|
1273 | + /** |
|
1274 | + * _get_billing_form_for_payment_method |
|
1275 | + * |
|
1276 | + * @param EE_Payment_Method $payment_method |
|
1277 | + * @return EE_Billing_Info_Form|EE_Form_Section_HTML |
|
1278 | + * @throws EE_Error |
|
1279 | + * @throws InvalidArgumentException |
|
1280 | + * @throws InvalidDataTypeException |
|
1281 | + * @throws InvalidInterfaceException |
|
1282 | + */ |
|
1283 | + private function _get_billing_form_for_payment_method(EE_Payment_Method $payment_method) |
|
1284 | + { |
|
1285 | + $billing_form = $payment_method->type_obj()->billing_form( |
|
1286 | + $this->checkout->transaction, |
|
1287 | + ['amount_owing' => $this->checkout->amount_owing] |
|
1288 | + ); |
|
1289 | + if ($billing_form instanceof EE_Billing_Info_Form) { |
|
1290 | + if ( |
|
1291 | + apply_filters( |
|
1292 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options__registration_checkout__selected_payment_method__display_success', |
|
1293 | + false |
|
1294 | + ) |
|
1295 | + && $this->request->requestParamIsSet('payment_method') |
|
1296 | + ) { |
|
1297 | + EE_Error::add_success( |
|
1298 | + apply_filters( |
|
1299 | + 'FHEE__Single_Page_Checkout__registration_checkout__selected_payment_method', |
|
1300 | + sprintf( |
|
1301 | + esc_html__( |
|
1302 | + 'You have selected "%s" as your method of payment. Please note the important payment information below.', |
|
1303 | + 'event_espresso' |
|
1304 | + ), |
|
1305 | + $payment_method->name() |
|
1306 | + ) |
|
1307 | + ) |
|
1308 | + ); |
|
1309 | + } |
|
1310 | + return apply_filters( |
|
1311 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___get_billing_form_for_payment_method__billing_form', |
|
1312 | + $billing_form, |
|
1313 | + $payment_method |
|
1314 | + ); |
|
1315 | + } |
|
1316 | + // no actual billing form, so return empty HTML form section |
|
1317 | + return new EE_Form_Section_HTML(); |
|
1318 | + } |
|
1319 | + |
|
1320 | + |
|
1321 | + /** |
|
1322 | + * _get_selected_method_of_payment |
|
1323 | + * |
|
1324 | + * @param boolean $required whether to throw an error if the "selected_method_of_payment" |
|
1325 | + * is not found in the incoming request |
|
1326 | + * @param string $request_param |
|
1327 | + * @return NULL|string |
|
1328 | + * @throws EE_Error |
|
1329 | + * @throws InvalidArgumentException |
|
1330 | + * @throws InvalidDataTypeException |
|
1331 | + * @throws InvalidInterfaceException |
|
1332 | + */ |
|
1333 | + private function _get_selected_method_of_payment( |
|
1334 | + $required = false, |
|
1335 | + $request_param = 'selected_method_of_payment' |
|
1336 | + ) { |
|
1337 | + // is selected_method_of_payment set in the request ? |
|
1338 | + $selected_method_of_payment = $this->request->getRequestParam($request_param); |
|
1339 | + if ($selected_method_of_payment) { |
|
1340 | + // sanitize it |
|
1341 | + $selected_method_of_payment = is_array($selected_method_of_payment) |
|
1342 | + ? array_shift($selected_method_of_payment) |
|
1343 | + : $selected_method_of_payment; |
|
1344 | + $selected_method_of_payment = sanitize_text_field($selected_method_of_payment); |
|
1345 | + // store it in the session so that it's available for all subsequent requests including AJAX |
|
1346 | + $this->_save_selected_method_of_payment($selected_method_of_payment); |
|
1347 | + } else { |
|
1348 | + // or is is set in the session ? |
|
1349 | + $selected_method_of_payment = EE_Registry::instance()->SSN->get_session_data( |
|
1350 | + 'selected_method_of_payment' |
|
1351 | + ); |
|
1352 | + } |
|
1353 | + // do ya really really gotta have it? |
|
1354 | + if (empty($selected_method_of_payment) && $required) { |
|
1355 | + EE_Error::add_error( |
|
1356 | + sprintf( |
|
1357 | + esc_html__( |
|
1358 | + 'The selected method of payment could not be determined.%sPlease ensure that you have selected one before proceeding.%sIf you continue to experience difficulties, then refresh your browser and try again, or contact %s for assistance.', |
|
1359 | + 'event_espresso' |
|
1360 | + ), |
|
1361 | + '<br/>', |
|
1362 | + '<br/>', |
|
1363 | + EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
1364 | + ), |
|
1365 | + __FILE__, |
|
1366 | + __FUNCTION__, |
|
1367 | + __LINE__ |
|
1368 | + ); |
|
1369 | + return null; |
|
1370 | + } |
|
1371 | + return $selected_method_of_payment; |
|
1372 | + } |
|
1373 | + |
|
1374 | + |
|
1375 | + |
|
1376 | + |
|
1377 | + |
|
1378 | + |
|
1379 | + /********************************************************************************************************/ |
|
1380 | + /*********************************** SWITCH PAYMENT METHOD ************************************/ |
|
1381 | + /********************************************************************************************************/ |
|
1382 | + /** |
|
1383 | + * switch_payment_method |
|
1384 | + * |
|
1385 | + * @return bool |
|
1386 | + * @throws EE_Error |
|
1387 | + * @throws InvalidArgumentException |
|
1388 | + * @throws InvalidDataTypeException |
|
1389 | + * @throws InvalidInterfaceException |
|
1390 | + * @throws ReflectionException |
|
1391 | + */ |
|
1392 | + public function switch_payment_method() |
|
1393 | + { |
|
1394 | + if (! $this->_verify_payment_method_is_set()) { |
|
1395 | + return false; |
|
1396 | + } |
|
1397 | + if ( |
|
1398 | + apply_filters( |
|
1399 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options__registration_checkout__selected_payment_method__display_success', |
|
1400 | + false |
|
1401 | + ) |
|
1402 | + ) { |
|
1403 | + EE_Error::add_success( |
|
1404 | + apply_filters( |
|
1405 | + 'FHEE__Single_Page_Checkout__registration_checkout__selected_payment_method', |
|
1406 | + sprintf( |
|
1407 | + esc_html__( |
|
1408 | + 'You have selected "%s" as your method of payment. Please note the important payment information below.', |
|
1409 | + 'event_espresso' |
|
1410 | + ), |
|
1411 | + $this->checkout->payment_method->name() |
|
1412 | + ) |
|
1413 | + ) |
|
1414 | + ); |
|
1415 | + } |
|
1416 | + // generate billing form for selected method of payment if it hasn't been done already |
|
1417 | + if ($this->checkout->payment_method->type_obj()->has_billing_form()) { |
|
1418 | + $this->checkout->billing_form = $this->_get_billing_form_for_payment_method( |
|
1419 | + $this->checkout->payment_method |
|
1420 | + ); |
|
1421 | + } |
|
1422 | + // fill form with attendee info if applicable |
|
1423 | + if ( |
|
1424 | + apply_filters( |
|
1425 | + 'FHEE__populate_billing_form_fields_from_attendee', |
|
1426 | + ( |
|
1427 | + $this->checkout->billing_form instanceof EE_Billing_Attendee_Info_Form |
|
1428 | + && $this->checkout->transaction_has_primary_registrant() |
|
1429 | + ), |
|
1430 | + $this->checkout->billing_form, |
|
1431 | + $this->checkout->transaction |
|
1432 | + ) |
|
1433 | + ) { |
|
1434 | + $this->checkout->billing_form->populate_from_attendee( |
|
1435 | + $this->checkout->transaction->primary_registration()->attendee() |
|
1436 | + ); |
|
1437 | + } |
|
1438 | + // and debug content |
|
1439 | + if ( |
|
1440 | + $this->checkout->billing_form instanceof EE_Billing_Info_Form |
|
1441 | + && $this->checkout->payment_method->type_obj() instanceof EE_PMT_Base |
|
1442 | + ) { |
|
1443 | + $this->checkout->billing_form = |
|
1444 | + $this->checkout->payment_method->type_obj()->apply_billing_form_debug_settings( |
|
1445 | + $this->checkout->billing_form |
|
1446 | + ); |
|
1447 | + } |
|
1448 | + // get html and validation rules for form |
|
1449 | + if ($this->checkout->billing_form instanceof EE_Form_Section_Proper) { |
|
1450 | + $this->checkout->json_response->set_return_data( |
|
1451 | + ['payment_method_info' => $this->checkout->billing_form->get_html()] |
|
1452 | + ); |
|
1453 | + // localize validation rules for main form |
|
1454 | + $this->checkout->billing_form->localize_validation_rules(true); |
|
1455 | + $this->checkout->json_response->add_validation_rules(EE_Form_Section_Proper::js_localization()); |
|
1456 | + } else { |
|
1457 | + $this->checkout->json_response->set_return_data(['payment_method_info' => '']); |
|
1458 | + } |
|
1459 | + // prevents advancement to next step |
|
1460 | + $this->checkout->continue_reg = false; |
|
1461 | + return true; |
|
1462 | + } |
|
1463 | + |
|
1464 | + |
|
1465 | + /** |
|
1466 | + * _verify_payment_method_is_set |
|
1467 | + * |
|
1468 | + * @return bool |
|
1469 | + * @throws EE_Error |
|
1470 | + * @throws InvalidArgumentException |
|
1471 | + * @throws ReflectionException |
|
1472 | + * @throws InvalidDataTypeException |
|
1473 | + * @throws InvalidInterfaceException |
|
1474 | + */ |
|
1475 | + protected function _verify_payment_method_is_set() |
|
1476 | + { |
|
1477 | + // generate billing form for selected method of payment if it hasn't been done already |
|
1478 | + if (empty($this->checkout->selected_method_of_payment)) { |
|
1479 | + // how have they chosen to pay? |
|
1480 | + $this->checkout->selected_method_of_payment = $this->_get_selected_method_of_payment(true); |
|
1481 | + } else { |
|
1482 | + // choose your own adventure based on method_of_payment |
|
1483 | + switch ($this->checkout->selected_method_of_payment) { |
|
1484 | + case 'events_sold_out': |
|
1485 | + EE_Error::add_attention( |
|
1486 | + apply_filters( |
|
1487 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___verify_payment_method_is_set__sold_out_events_msg', |
|
1488 | + esc_html__( |
|
1489 | + 'It appears that the event you were about to make a payment for has sold out since this form first loaded. Please contact the event administrator if you believe this is an error.', |
|
1490 | + 'event_espresso' |
|
1491 | + ) |
|
1492 | + ), |
|
1493 | + __FILE__, |
|
1494 | + __FUNCTION__, |
|
1495 | + __LINE__ |
|
1496 | + ); |
|
1497 | + return false; |
|
1498 | + case 'payments_closed': |
|
1499 | + EE_Error::add_attention( |
|
1500 | + apply_filters( |
|
1501 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___verify_payment_method_is_set__payments_closed_msg', |
|
1502 | + esc_html__( |
|
1503 | + 'It appears that the event you were about to make a payment for is not accepting payments at this time. Please contact the event administrator if you believe this is an error.', |
|
1504 | + 'event_espresso' |
|
1505 | + ) |
|
1506 | + ), |
|
1507 | + __FILE__, |
|
1508 | + __FUNCTION__, |
|
1509 | + __LINE__ |
|
1510 | + ); |
|
1511 | + return false; |
|
1512 | + case 'no_payment_required': |
|
1513 | + EE_Error::add_attention( |
|
1514 | + apply_filters( |
|
1515 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___verify_payment_method_is_set__no_payment_required_msg', |
|
1516 | + esc_html__( |
|
1517 | + 'It appears that the event you were about to make a payment for does not require payment. Please contact the event administrator if you believe this is an error.', |
|
1518 | + 'event_espresso' |
|
1519 | + ) |
|
1520 | + ), |
|
1521 | + __FILE__, |
|
1522 | + __FUNCTION__, |
|
1523 | + __LINE__ |
|
1524 | + ); |
|
1525 | + return false; |
|
1526 | + default: |
|
1527 | + } |
|
1528 | + } |
|
1529 | + // verify payment method |
|
1530 | + if (! $this->checkout->payment_method instanceof EE_Payment_Method) { |
|
1531 | + // get payment method for selected method of payment |
|
1532 | + $this->checkout->payment_method = $this->_get_payment_method_for_selected_method_of_payment(); |
|
1533 | + } |
|
1534 | + return $this->checkout->payment_method instanceof EE_Payment_Method; |
|
1535 | + } |
|
1536 | + |
|
1537 | + |
|
1538 | + |
|
1539 | + /********************************************************************************************************/ |
|
1540 | + /*************************************** SAVE PAYER DETAILS ****************************************/ |
|
1541 | + /********************************************************************************************************/ |
|
1542 | + /** |
|
1543 | + * save_payer_details_via_ajax |
|
1544 | + * |
|
1545 | + * @return void |
|
1546 | + * @throws EE_Error |
|
1547 | + * @throws InvalidArgumentException |
|
1548 | + * @throws ReflectionException |
|
1549 | + * @throws RuntimeException |
|
1550 | + * @throws InvalidDataTypeException |
|
1551 | + * @throws InvalidInterfaceException |
|
1552 | + */ |
|
1553 | + public function save_payer_details_via_ajax() |
|
1554 | + { |
|
1555 | + if (! $this->_verify_payment_method_is_set()) { |
|
1556 | + return; |
|
1557 | + } |
|
1558 | + // generate billing form for selected method of payment if it hasn't been done already |
|
1559 | + if ($this->checkout->payment_method->type_obj()->has_billing_form()) { |
|
1560 | + $this->checkout->billing_form = $this->_get_billing_form_for_payment_method( |
|
1561 | + $this->checkout->payment_method |
|
1562 | + ); |
|
1563 | + } |
|
1564 | + // generate primary attendee from payer info if applicable |
|
1565 | + if (! $this->checkout->transaction_has_primary_registrant()) { |
|
1566 | + $attendee = $this->_create_attendee_from_request_data(); |
|
1567 | + if ($attendee instanceof EE_Attendee) { |
|
1568 | + foreach ($this->checkout->transaction->registrations() as $registration) { |
|
1569 | + if ($registration->is_primary_registrant()) { |
|
1570 | + $this->checkout->primary_attendee_obj = $attendee; |
|
1571 | + $registration->_add_relation_to($attendee, 'Attendee'); |
|
1572 | + $registration->set_attendee_id($attendee->ID()); |
|
1573 | + $registration->update_cache_after_object_save('Attendee', $attendee); |
|
1574 | + } |
|
1575 | + } |
|
1576 | + } |
|
1577 | + } |
|
1578 | + } |
|
1579 | + |
|
1580 | + |
|
1581 | + /** |
|
1582 | + * create_attendee_from_request_data |
|
1583 | + * uses info from alternate GET or POST data (such as AJAX) to create a new attendee |
|
1584 | + * |
|
1585 | + * @return EE_Attendee |
|
1586 | + * @throws EE_Error |
|
1587 | + * @throws InvalidArgumentException |
|
1588 | + * @throws ReflectionException |
|
1589 | + * @throws InvalidDataTypeException |
|
1590 | + * @throws InvalidInterfaceException |
|
1591 | + */ |
|
1592 | + protected function _create_attendee_from_request_data() |
|
1593 | + { |
|
1594 | + // get State ID |
|
1595 | + $STA_ID = $this->request->getRequestParam('state'); |
|
1596 | + if (! empty($STA_ID)) { |
|
1597 | + // can we get state object from name ? |
|
1598 | + EE_Registry::instance()->load_model('State'); |
|
1599 | + $state = EEM_State::instance()->get_col([['STA_name' => $STA_ID], 'limit' => 1], 'STA_ID'); |
|
1600 | + $STA_ID = is_array($state) && ! empty($state) ? reset($state) : $STA_ID; |
|
1601 | + } |
|
1602 | + // get Country ISO |
|
1603 | + $CNT_ISO = $this->request->getRequestParam('country'); |
|
1604 | + if (! empty($CNT_ISO)) { |
|
1605 | + // can we get country object from name ? |
|
1606 | + EE_Registry::instance()->load_model('Country'); |
|
1607 | + $country = EEM_Country::instance()->get_col( |
|
1608 | + [['CNT_name' => $CNT_ISO], 'limit' => 1], |
|
1609 | + 'CNT_ISO' |
|
1610 | + ); |
|
1611 | + $CNT_ISO = is_array($country) && ! empty($country) ? reset($country) : $CNT_ISO; |
|
1612 | + } |
|
1613 | + // grab attendee data |
|
1614 | + $attendee_data = [ |
|
1615 | + 'ATT_fname' => $this->request->getRequestParam('first_name'), |
|
1616 | + 'ATT_lname' => $this->request->getRequestParam('last_name'), |
|
1617 | + 'ATT_email' => $this->request->getRequestParam('email'), |
|
1618 | + 'ATT_address' => $this->request->getRequestParam('address'), |
|
1619 | + 'ATT_address2' => $this->request->getRequestParam('address2'), |
|
1620 | + 'ATT_city' => $this->request->getRequestParam('city'), |
|
1621 | + 'STA_ID' => $STA_ID, |
|
1622 | + 'CNT_ISO' => $CNT_ISO, |
|
1623 | + 'ATT_zip' => $this->request->getRequestParam('zip'), |
|
1624 | + 'ATT_phone' => $this->request->getRequestParam('phone'), |
|
1625 | + ]; |
|
1626 | + // validate the email address since it is the most important piece of info |
|
1627 | + if (empty($attendee_data['ATT_email'])) { |
|
1628 | + EE_Error::add_error( |
|
1629 | + esc_html__('An invalid email address was submitted.', 'event_espresso'), |
|
1630 | + __FILE__, |
|
1631 | + __FUNCTION__, |
|
1632 | + __LINE__ |
|
1633 | + ); |
|
1634 | + } |
|
1635 | + // does this attendee already exist in the db ? we're searching using a combination of first name, last name, |
|
1636 | + // AND email address |
|
1637 | + if ( |
|
1638 | + ! empty($attendee_data['ATT_fname']) |
|
1639 | + && ! empty($attendee_data['ATT_lname']) |
|
1640 | + && ! empty($attendee_data['ATT_email']) |
|
1641 | + ) { |
|
1642 | + $existing_attendee = EEM_Attendee::instance()->find_existing_attendee( |
|
1643 | + [ |
|
1644 | + 'ATT_fname' => $attendee_data['ATT_fname'], |
|
1645 | + 'ATT_lname' => $attendee_data['ATT_lname'], |
|
1646 | + 'ATT_email' => $attendee_data['ATT_email'], |
|
1647 | + ] |
|
1648 | + ); |
|
1649 | + if ($existing_attendee instanceof EE_Attendee) { |
|
1650 | + return $existing_attendee; |
|
1651 | + } |
|
1652 | + } |
|
1653 | + // no existing attendee? kk let's create a new one |
|
1654 | + // kinda lame, but we need a first and last name to create an attendee, so use the email address if those |
|
1655 | + // don't exist |
|
1656 | + $attendee_data['ATT_fname'] = ! empty($attendee_data['ATT_fname']) |
|
1657 | + ? $attendee_data['ATT_fname'] |
|
1658 | + : $attendee_data['ATT_email']; |
|
1659 | + $attendee_data['ATT_lname'] = ! empty($attendee_data['ATT_lname']) |
|
1660 | + ? $attendee_data['ATT_lname'] |
|
1661 | + : $attendee_data['ATT_email']; |
|
1662 | + return EE_Attendee::new_instance($attendee_data); |
|
1663 | + } |
|
1664 | + |
|
1665 | + |
|
1666 | + |
|
1667 | + /********************************************************************************************************/ |
|
1668 | + /**************************************** PROCESS REG STEP *****************************************/ |
|
1669 | + /********************************************************************************************************/ |
|
1670 | + /** |
|
1671 | + * process_reg_step |
|
1672 | + * |
|
1673 | + * @return bool |
|
1674 | + * @throws EE_Error |
|
1675 | + * @throws InvalidArgumentException |
|
1676 | + * @throws ReflectionException |
|
1677 | + * @throws EntityNotFoundException |
|
1678 | + * @throws InvalidDataTypeException |
|
1679 | + * @throws InvalidInterfaceException |
|
1680 | + * @throws InvalidStatusException |
|
1681 | + */ |
|
1682 | + public function process_reg_step() |
|
1683 | + { |
|
1684 | + // how have they chosen to pay? |
|
1685 | + $this->checkout->selected_method_of_payment = $this->checkout->transaction->is_free() |
|
1686 | + ? 'no_payment_required' |
|
1687 | + : $this->_get_selected_method_of_payment(true); |
|
1688 | + // choose your own adventure based on method_of_payment |
|
1689 | + switch ($this->checkout->selected_method_of_payment) { |
|
1690 | + case 'events_sold_out': |
|
1691 | + $this->checkout->redirect = true; |
|
1692 | + $this->checkout->redirect_url = $this->checkout->cancel_page_url; |
|
1693 | + $this->checkout->json_response->set_redirect_url($this->checkout->redirect_url); |
|
1694 | + // mark this reg step as completed |
|
1695 | + $this->set_completed(); |
|
1696 | + return false; |
|
1697 | + |
|
1698 | + case 'payments_closed': |
|
1699 | + if ( |
|
1700 | + apply_filters( |
|
1701 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options__process_reg_step__payments_closed__display_success', |
|
1702 | + false |
|
1703 | + ) |
|
1704 | + ) { |
|
1705 | + EE_Error::add_success( |
|
1706 | + esc_html__('no payment required at this time.', 'event_espresso'), |
|
1707 | + __FILE__, |
|
1708 | + __FUNCTION__, |
|
1709 | + __LINE__ |
|
1710 | + ); |
|
1711 | + } |
|
1712 | + // mark this reg step as completed |
|
1713 | + $this->set_completed(); |
|
1714 | + return true; |
|
1715 | + |
|
1716 | + case 'no_payment_required': |
|
1717 | + if ( |
|
1718 | + apply_filters( |
|
1719 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options__process_reg_step__no_payment_required__display_success', |
|
1720 | + false |
|
1721 | + ) |
|
1722 | + ) { |
|
1723 | + EE_Error::add_success( |
|
1724 | + esc_html__('no payment required.', 'event_espresso'), |
|
1725 | + __FILE__, |
|
1726 | + __FUNCTION__, |
|
1727 | + __LINE__ |
|
1728 | + ); |
|
1729 | + } |
|
1730 | + // mark this reg step as completed |
|
1731 | + $this->set_completed(); |
|
1732 | + return true; |
|
1733 | + |
|
1734 | + default: |
|
1735 | + $registrations = EE_Registry::instance()->SSN->checkout()->transaction->registrations( |
|
1736 | + EE_Registry::instance()->SSN->checkout()->reg_cache_where_params |
|
1737 | + ); |
|
1738 | + $ejected_registrations = EE_SPCO_Reg_Step_Payment_Options::find_registrations_that_lost_their_space( |
|
1739 | + $registrations, |
|
1740 | + EE_Registry::instance()->SSN->checkout()->revisit |
|
1741 | + ); |
|
1742 | + // calculate difference between the two arrays |
|
1743 | + $registrations = array_diff($registrations, $ejected_registrations); |
|
1744 | + if (empty($registrations)) { |
|
1745 | + $this->_redirect_because_event_sold_out(); |
|
1746 | + return false; |
|
1747 | + } |
|
1748 | + $payment = $this->_process_payment(); |
|
1749 | + if ($payment instanceof EE_Payment) { |
|
1750 | + $this->checkout->continue_reg = true; |
|
1751 | + $this->_maybe_set_completed($payment); |
|
1752 | + } else { |
|
1753 | + $this->checkout->continue_reg = false; |
|
1754 | + } |
|
1755 | + return $payment instanceof EE_Payment; |
|
1756 | + } |
|
1757 | + } |
|
1758 | + |
|
1759 | + |
|
1760 | + /** |
|
1761 | + * _redirect_because_event_sold_out |
|
1762 | + * |
|
1763 | + * @return void |
|
1764 | + */ |
|
1765 | + protected function _redirect_because_event_sold_out() |
|
1766 | + { |
|
1767 | + $this->checkout->continue_reg = false; |
|
1768 | + // set redirect URL |
|
1769 | + $this->checkout->redirect_url = add_query_arg( |
|
1770 | + ['e_reg_url_link' => $this->checkout->reg_url_link], |
|
1771 | + $this->checkout->current_step->reg_step_url() |
|
1772 | + ); |
|
1773 | + $this->checkout->json_response->set_redirect_url($this->checkout->redirect_url); |
|
1774 | + } |
|
1775 | + |
|
1776 | + |
|
1777 | + /** |
|
1778 | + * @param EE_Payment $payment |
|
1779 | + * @return void |
|
1780 | + * @throws EE_Error |
|
1781 | + */ |
|
1782 | + protected function _maybe_set_completed(EE_Payment $payment) |
|
1783 | + { |
|
1784 | + // Do we need to redirect them? If so, there's more work to be done. |
|
1785 | + if (! $payment->redirect_url()) { |
|
1786 | + $this->set_completed(); |
|
1787 | + } |
|
1788 | + } |
|
1789 | + |
|
1790 | + |
|
1791 | + /** |
|
1792 | + * update_reg_step |
|
1793 | + * this is the final step after a user revisits the site to retry a payment |
|
1794 | + * |
|
1795 | + * @return bool |
|
1796 | + * @throws EE_Error |
|
1797 | + * @throws InvalidArgumentException |
|
1798 | + * @throws ReflectionException |
|
1799 | + * @throws EntityNotFoundException |
|
1800 | + * @throws InvalidDataTypeException |
|
1801 | + * @throws InvalidInterfaceException |
|
1802 | + * @throws InvalidStatusException |
|
1803 | + */ |
|
1804 | + public function update_reg_step() |
|
1805 | + { |
|
1806 | + $success = true; |
|
1807 | + // if payment required |
|
1808 | + if ($this->checkout->transaction->total() > 0) { |
|
1809 | + do_action( |
|
1810 | + 'AHEE__EE_Single_Page_Checkout__process_finalize_registration__before_gateway', |
|
1811 | + $this->checkout->transaction |
|
1812 | + ); |
|
1813 | + // attempt payment via payment method |
|
1814 | + $success = $this->process_reg_step(); |
|
1815 | + } |
|
1816 | + if ($success && ! $this->checkout->redirect) { |
|
1817 | + $this->checkout->cart->get_grand_total()->save_this_and_descendants_to_txn( |
|
1818 | + $this->checkout->transaction->ID() |
|
1819 | + ); |
|
1820 | + // set return URL |
|
1821 | + $this->checkout->redirect_url = add_query_arg( |
|
1822 | + ['e_reg_url_link' => $this->checkout->reg_url_link], |
|
1823 | + $this->checkout->thank_you_page_url |
|
1824 | + ); |
|
1825 | + } |
|
1826 | + return $success; |
|
1827 | + } |
|
1828 | + |
|
1829 | + |
|
1830 | + /** |
|
1831 | + * @return EE_Payment|null |
|
1832 | + * @throws EE_Error |
|
1833 | + * @throws InvalidArgumentException |
|
1834 | + * @throws ReflectionException |
|
1835 | + * @throws RuntimeException |
|
1836 | + * @throws InvalidDataTypeException |
|
1837 | + * @throws InvalidInterfaceException |
|
1838 | + */ |
|
1839 | + private function _process_payment() |
|
1840 | + { |
|
1841 | + // basically confirm that the event hasn't sold out since they hit the page |
|
1842 | + if (! $this->_last_second_ticket_verifications()) { |
|
1843 | + return null; |
|
1844 | + } |
|
1845 | + // ya gotta make a choice man |
|
1846 | + if (empty($this->checkout->selected_method_of_payment)) { |
|
1847 | + $this->checkout->json_response->set_plz_select_method_of_payment( |
|
1848 | + esc_html__('Please select a method of payment before proceeding.', 'event_espresso') |
|
1849 | + ); |
|
1850 | + return null; |
|
1851 | + } |
|
1852 | + // get EE_Payment_Method object |
|
1853 | + if (! $this->checkout->payment_method = $this->_get_payment_method_for_selected_method_of_payment()) { |
|
1854 | + return null; |
|
1855 | + } |
|
1856 | + // setup billing form |
|
1857 | + if ($this->checkout->payment_method->type_obj()->has_billing_form()) { |
|
1858 | + $this->checkout->billing_form = $this->_get_billing_form_for_payment_method( |
|
1859 | + $this->checkout->payment_method |
|
1860 | + ); |
|
1861 | + // bad billing form ? |
|
1862 | + if (! $this->_billing_form_is_valid()) { |
|
1863 | + return null; |
|
1864 | + } |
|
1865 | + } |
|
1866 | + // ensure primary registrant has been fully processed |
|
1867 | + if (! $this->_setup_primary_registrant_prior_to_payment()) { |
|
1868 | + return null; |
|
1869 | + } |
|
1870 | + // if session is close to expiring (under 10 minutes by default) |
|
1871 | + if ((time() - EE_Registry::instance()->SSN->expiration()) < EE_Registry::instance()->SSN->extension()) { |
|
1872 | + // add some time to session expiration so that payment can be completed |
|
1873 | + EE_Registry::instance()->SSN->extend_expiration(); |
|
1874 | + } |
|
1875 | + /** @type EE_Transaction_Processor $transaction_processor */ |
|
1876 | + // $transaction_processor = EE_Registry::instance()->load_class( 'Transaction_Processor' ); |
|
1877 | + // in case a registrant leaves to an Off-Site Gateway and never returns, we want to approve any registrations |
|
1878 | + // for events with a default reg status of Approved |
|
1879 | + // $transaction_processor->toggle_registration_statuses_for_default_approved_events( |
|
1880 | + // $this->checkout->transaction, $this->checkout->reg_cache_where_params |
|
1881 | + // ); |
|
1882 | + // attempt payment |
|
1883 | + $payment = $this->_attempt_payment($this->checkout->payment_method); |
|
1884 | + // process results |
|
1885 | + $payment = $this->_validate_payment($payment); |
|
1886 | + $payment = $this->_post_payment_processing($payment); |
|
1887 | + // verify payment |
|
1888 | + if ($payment instanceof EE_Payment) { |
|
1889 | + // store that for later |
|
1890 | + $this->checkout->payment = $payment; |
|
1891 | + // we can also consider the TXN to not have been failed, so temporarily upgrade it's status to abandoned |
|
1892 | + $this->checkout->transaction->toggle_failed_transaction_status(); |
|
1893 | + $payment_status = $payment->status(); |
|
1894 | + if ( |
|
1895 | + $payment_status === EEM_Payment::status_id_approved |
|
1896 | + || $payment_status === EEM_Payment::status_id_pending |
|
1897 | + ) { |
|
1898 | + return $payment; |
|
1899 | + } |
|
1900 | + return null; |
|
1901 | + } |
|
1902 | + if ($payment === true) { |
|
1903 | + // please note that offline payment methods will NOT make a payment, |
|
1904 | + // but instead just mark themselves as the PMD_ID on the transaction, and return true |
|
1905 | + $this->checkout->payment = $payment; |
|
1906 | + return $payment; |
|
1907 | + } |
|
1908 | + // where's my money? |
|
1909 | + return null; |
|
1910 | + } |
|
1911 | + |
|
1912 | + |
|
1913 | + /** |
|
1914 | + * _last_second_ticket_verifications |
|
1915 | + * |
|
1916 | + * @return bool |
|
1917 | + * @throws EE_Error |
|
1918 | + * @throws ReflectionException |
|
1919 | + */ |
|
1920 | + protected function _last_second_ticket_verifications() |
|
1921 | + { |
|
1922 | + // don't bother re-validating if not a return visit |
|
1923 | + if (! $this->checkout->revisit) { |
|
1924 | + return true; |
|
1925 | + } |
|
1926 | + $registrations = $this->checkout->transaction->registrations(); |
|
1927 | + if (empty($registrations)) { |
|
1928 | + return false; |
|
1929 | + } |
|
1930 | + foreach ($registrations as $registration) { |
|
1931 | + if ($registration instanceof EE_Registration && ! $registration->is_approved()) { |
|
1932 | + $event = $registration->event_obj(); |
|
1933 | + if ($event instanceof EE_Event && $event->is_sold_out(true)) { |
|
1934 | + EE_Error::add_error( |
|
1935 | + apply_filters( |
|
1936 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___last_second_ticket_verifications__sold_out_events_msg', |
|
1937 | + sprintf( |
|
1938 | + esc_html__( |
|
1939 | + 'It appears that the %1$s event that you were about to make a payment for has sold out since you first registered and/or arrived at this page. Please refresh the page and try again. If you have already made a partial payment towards this event, please contact the event administrator for a refund.', |
|
1940 | + 'event_espresso' |
|
1941 | + ), |
|
1942 | + $event->name() |
|
1943 | + ) |
|
1944 | + ), |
|
1945 | + __FILE__, |
|
1946 | + __FUNCTION__, |
|
1947 | + __LINE__ |
|
1948 | + ); |
|
1949 | + return false; |
|
1950 | + } |
|
1951 | + } |
|
1952 | + } |
|
1953 | + return true; |
|
1954 | + } |
|
1955 | + |
|
1956 | + |
|
1957 | + /** |
|
1958 | + * redirect_form |
|
1959 | + * |
|
1960 | + * @return bool |
|
1961 | + * @throws EE_Error |
|
1962 | + * @throws InvalidArgumentException |
|
1963 | + * @throws ReflectionException |
|
1964 | + * @throws InvalidDataTypeException |
|
1965 | + * @throws InvalidInterfaceException |
|
1966 | + */ |
|
1967 | + public function redirect_form() |
|
1968 | + { |
|
1969 | + $payment_method_billing_info = $this->_payment_method_billing_info( |
|
1970 | + $this->_get_payment_method_for_selected_method_of_payment() |
|
1971 | + ); |
|
1972 | + $html = $payment_method_billing_info->get_html(); |
|
1973 | + $html .= $this->checkout->redirect_form; |
|
1974 | + /** @var ResponseInterface $response */ |
|
1975 | + $response = LoaderFactory::getLoader()->getShared(ResponseInterface::class); |
|
1976 | + $response->addOutput($html); |
|
1977 | + return true; |
|
1978 | + } |
|
1979 | + |
|
1980 | + |
|
1981 | + /** |
|
1982 | + * _billing_form_is_valid |
|
1983 | + * |
|
1984 | + * @return bool |
|
1985 | + * @throws EE_Error |
|
1986 | + */ |
|
1987 | + private function _billing_form_is_valid() |
|
1988 | + { |
|
1989 | + if (! $this->checkout->payment_method->type_obj()->has_billing_form()) { |
|
1990 | + return true; |
|
1991 | + } |
|
1992 | + if ($this->checkout->billing_form instanceof EE_Billing_Info_Form) { |
|
1993 | + if ($this->checkout->billing_form->was_submitted()) { |
|
1994 | + $this->checkout->billing_form->receive_form_submission(); |
|
1995 | + if ($this->checkout->billing_form->is_valid()) { |
|
1996 | + return true; |
|
1997 | + } |
|
1998 | + $validation_errors = $this->checkout->billing_form->get_validation_errors_accumulated(); |
|
1999 | + $error_strings = []; |
|
2000 | + foreach ($validation_errors as $validation_error) { |
|
2001 | + if ($validation_error instanceof EE_Validation_Error) { |
|
2002 | + $form_section = $validation_error->get_form_section(); |
|
2003 | + if ($form_section instanceof EE_Form_Input_Base) { |
|
2004 | + $label = $form_section->html_label_text(); |
|
2005 | + } elseif ($form_section instanceof EE_Form_Section_Base) { |
|
2006 | + $label = $form_section->name(); |
|
2007 | + } else { |
|
2008 | + $label = esc_html__('Validation Error', 'event_espresso'); |
|
2009 | + } |
|
2010 | + $error_strings[] = sprintf('%1$s: %2$s', $label, $validation_error->getMessage()); |
|
2011 | + } |
|
2012 | + } |
|
2013 | + EE_Error::add_error( |
|
2014 | + sprintf( |
|
2015 | + esc_html__( |
|
2016 | + 'One or more billing form inputs are invalid and require correction before proceeding. %1$s %2$s', |
|
2017 | + 'event_espresso' |
|
2018 | + ), |
|
2019 | + '<br/>', |
|
2020 | + implode('<br/>', $error_strings) |
|
2021 | + ), |
|
2022 | + __FILE__, |
|
2023 | + __FUNCTION__, |
|
2024 | + __LINE__ |
|
2025 | + ); |
|
2026 | + } else { |
|
2027 | + EE_Error::add_error( |
|
2028 | + esc_html__( |
|
2029 | + 'The billing form was not submitted or something prevented it\'s submission.', |
|
2030 | + 'event_espresso' |
|
2031 | + ), |
|
2032 | + __FILE__, |
|
2033 | + __FUNCTION__, |
|
2034 | + __LINE__ |
|
2035 | + ); |
|
2036 | + } |
|
2037 | + } else { |
|
2038 | + EE_Error::add_error( |
|
2039 | + esc_html__( |
|
2040 | + 'The submitted billing form is invalid possibly due to a technical reason.', |
|
2041 | + 'event_espresso' |
|
2042 | + ), |
|
2043 | + __FILE__, |
|
2044 | + __FUNCTION__, |
|
2045 | + __LINE__ |
|
2046 | + ); |
|
2047 | + } |
|
2048 | + return false; |
|
2049 | + } |
|
2050 | + |
|
2051 | + |
|
2052 | + /** |
|
2053 | + * _setup_primary_registrant_prior_to_payment |
|
2054 | + * ensures that the primary registrant has a valid attendee object created with the critical details populated |
|
2055 | + * (first & last name & email) and that both the transaction object and primary registration object have been saved |
|
2056 | + * plz note that any other registrations will NOT be saved at this point (because they may not have any details |
|
2057 | + * yet) |
|
2058 | + * |
|
2059 | + * @return bool |
|
2060 | + * @throws EE_Error |
|
2061 | + * @throws InvalidArgumentException |
|
2062 | + * @throws ReflectionException |
|
2063 | + * @throws RuntimeException |
|
2064 | + * @throws InvalidDataTypeException |
|
2065 | + * @throws InvalidInterfaceException |
|
2066 | + */ |
|
2067 | + private function _setup_primary_registrant_prior_to_payment() |
|
2068 | + { |
|
2069 | + // check if transaction has a primary registrant and that it has a related Attendee object |
|
2070 | + // if not, then we need to at least gather some primary registrant data before attempting payment |
|
2071 | + if ( |
|
2072 | + $this->checkout->billing_form instanceof EE_Billing_Attendee_Info_Form |
|
2073 | + && ! $this->checkout->transaction_has_primary_registrant() |
|
2074 | + && ! $this->_capture_primary_registration_data_from_billing_form() |
|
2075 | + ) { |
|
2076 | + return false; |
|
2077 | + } |
|
2078 | + // because saving an object clears it's cache, we need to do the chevy shuffle |
|
2079 | + // grab the primary_registration object |
|
2080 | + $primary_registration = $this->checkout->transaction->primary_registration(); |
|
2081 | + // at this point we'll consider a TXN to not have been failed |
|
2082 | + $this->checkout->transaction->toggle_failed_transaction_status(); |
|
2083 | + // save the TXN ( which clears cached copy of primary_registration) |
|
2084 | + $this->checkout->transaction->save(); |
|
2085 | + // grab TXN ID and save it to the primary_registration |
|
2086 | + $primary_registration->set_transaction_id($this->checkout->transaction->ID()); |
|
2087 | + // save what we have so far |
|
2088 | + $primary_registration->save(); |
|
2089 | + return true; |
|
2090 | + } |
|
2091 | + |
|
2092 | + |
|
2093 | + /** |
|
2094 | + * _capture_primary_registration_data_from_billing_form |
|
2095 | + * |
|
2096 | + * @return bool |
|
2097 | + * @throws EE_Error |
|
2098 | + * @throws InvalidArgumentException |
|
2099 | + * @throws ReflectionException |
|
2100 | + * @throws InvalidDataTypeException |
|
2101 | + * @throws InvalidInterfaceException |
|
2102 | + */ |
|
2103 | + private function _capture_primary_registration_data_from_billing_form() |
|
2104 | + { |
|
2105 | + // convert billing form data into an attendee |
|
2106 | + $this->checkout->primary_attendee_obj = $this->checkout->billing_form->create_attendee_from_billing_form_data(); |
|
2107 | + if (! $this->checkout->primary_attendee_obj instanceof EE_Attendee) { |
|
2108 | + EE_Error::add_error( |
|
2109 | + sprintf( |
|
2110 | + esc_html__( |
|
2111 | + 'The billing form details could not be used for attendee details due to a technical issue.%sPlease try again or contact %s for assistance.', |
|
2112 | + 'event_espresso' |
|
2113 | + ), |
|
2114 | + '<br/>', |
|
2115 | + EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
2116 | + ), |
|
2117 | + __FILE__, |
|
2118 | + __FUNCTION__, |
|
2119 | + __LINE__ |
|
2120 | + ); |
|
2121 | + return false; |
|
2122 | + } |
|
2123 | + $primary_registration = $this->checkout->transaction->primary_registration(); |
|
2124 | + if (! $primary_registration instanceof EE_Registration) { |
|
2125 | + EE_Error::add_error( |
|
2126 | + sprintf( |
|
2127 | + esc_html__( |
|
2128 | + 'The primary registrant for this transaction could not be determined due to a technical issue.%sPlease try again or contact %s for assistance.', |
|
2129 | + 'event_espresso' |
|
2130 | + ), |
|
2131 | + '<br/>', |
|
2132 | + EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
2133 | + ), |
|
2134 | + __FILE__, |
|
2135 | + __FUNCTION__, |
|
2136 | + __LINE__ |
|
2137 | + ); |
|
2138 | + return false; |
|
2139 | + } |
|
2140 | + if ( |
|
2141 | + ! $primary_registration->_add_relation_to($this->checkout->primary_attendee_obj, 'Attendee') |
|
2142 | + instanceof |
|
2143 | + EE_Attendee |
|
2144 | + ) { |
|
2145 | + EE_Error::add_error( |
|
2146 | + sprintf( |
|
2147 | + esc_html__( |
|
2148 | + 'The primary registrant could not be associated with this transaction due to a technical issue.%sPlease try again or contact %s for assistance.', |
|
2149 | + 'event_espresso' |
|
2150 | + ), |
|
2151 | + '<br/>', |
|
2152 | + EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
2153 | + ), |
|
2154 | + __FILE__, |
|
2155 | + __FUNCTION__, |
|
2156 | + __LINE__ |
|
2157 | + ); |
|
2158 | + return false; |
|
2159 | + } |
|
2160 | + /** @type EE_Registration_Processor $registration_processor */ |
|
2161 | + $registration_processor = EE_Registry::instance()->load_class('Registration_Processor'); |
|
2162 | + // at this point, we should have enough details about the registrant to consider the registration NOT incomplete |
|
2163 | + $registration_processor->toggle_incomplete_registration_status_to_default($primary_registration); |
|
2164 | + return true; |
|
2165 | + } |
|
2166 | + |
|
2167 | + |
|
2168 | + /** |
|
2169 | + * _get_payment_method_for_selected_method_of_payment |
|
2170 | + * retrieves a valid payment method |
|
2171 | + * |
|
2172 | + * @return EE_Payment_Method |
|
2173 | + * @throws EE_Error |
|
2174 | + * @throws InvalidArgumentException |
|
2175 | + * @throws ReflectionException |
|
2176 | + * @throws InvalidDataTypeException |
|
2177 | + * @throws InvalidInterfaceException |
|
2178 | + */ |
|
2179 | + private function _get_payment_method_for_selected_method_of_payment() |
|
2180 | + { |
|
2181 | + if ($this->checkout->selected_method_of_payment === 'events_sold_out') { |
|
2182 | + $this->_redirect_because_event_sold_out(); |
|
2183 | + return null; |
|
2184 | + } |
|
2185 | + // get EE_Payment_Method object |
|
2186 | + if (isset($this->checkout->available_payment_methods[ $this->checkout->selected_method_of_payment ])) { |
|
2187 | + $payment_method = $this->checkout->available_payment_methods[ $this->checkout->selected_method_of_payment ]; |
|
2188 | + } else { |
|
2189 | + // load EEM_Payment_Method |
|
2190 | + EE_Registry::instance()->load_model('Payment_Method'); |
|
2191 | + $EEM_Payment_Method = EEM_Payment_Method::instance(); |
|
2192 | + $payment_method = $EEM_Payment_Method->get_one_by_slug($this->checkout->selected_method_of_payment); |
|
2193 | + } |
|
2194 | + // verify $payment_method |
|
2195 | + if (! $payment_method instanceof EE_Payment_Method) { |
|
2196 | + // not a payment |
|
2197 | + EE_Error::add_error( |
|
2198 | + sprintf( |
|
2199 | + esc_html__( |
|
2200 | + 'The selected method of payment could not be determined due to a technical issue.%sPlease try again or contact %s for assistance.', |
|
2201 | + 'event_espresso' |
|
2202 | + ), |
|
2203 | + '<br/>', |
|
2204 | + EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
2205 | + ), |
|
2206 | + __FILE__, |
|
2207 | + __FUNCTION__, |
|
2208 | + __LINE__ |
|
2209 | + ); |
|
2210 | + return null; |
|
2211 | + } |
|
2212 | + // and verify it has a valid Payment_Method Type object |
|
2213 | + if (! $payment_method->type_obj() instanceof EE_PMT_Base) { |
|
2214 | + // not a payment |
|
2215 | + EE_Error::add_error( |
|
2216 | + sprintf( |
|
2217 | + esc_html__( |
|
2218 | + 'A valid payment method could not be determined due to a technical issue.%sPlease try again or contact %s for assistance.', |
|
2219 | + 'event_espresso' |
|
2220 | + ), |
|
2221 | + '<br/>', |
|
2222 | + EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
2223 | + ), |
|
2224 | + __FILE__, |
|
2225 | + __FUNCTION__, |
|
2226 | + __LINE__ |
|
2227 | + ); |
|
2228 | + return null; |
|
2229 | + } |
|
2230 | + return $payment_method; |
|
2231 | + } |
|
2232 | + |
|
2233 | + |
|
2234 | + /** |
|
2235 | + * _attempt_payment |
|
2236 | + * |
|
2237 | + * @access private |
|
2238 | + * @type EE_Payment_Method $payment_method |
|
2239 | + * @return mixed EE_Payment | boolean |
|
2240 | + * @throws EE_Error |
|
2241 | + * @throws InvalidArgumentException |
|
2242 | + * @throws ReflectionException |
|
2243 | + * @throws InvalidDataTypeException |
|
2244 | + * @throws InvalidInterfaceException |
|
2245 | + */ |
|
2246 | + private function _attempt_payment(EE_Payment_Method $payment_method) |
|
2247 | + { |
|
2248 | + $payment = null; |
|
2249 | + $this->checkout->transaction->save(); |
|
2250 | + $payment_processor = EE_Registry::instance()->load_core('Payment_Processor'); |
|
2251 | + if (! $payment_processor instanceof EE_Payment_Processor) { |
|
2252 | + return false; |
|
2253 | + } |
|
2254 | + try { |
|
2255 | + $payment_processor->set_revisit($this->checkout->revisit); |
|
2256 | + // generate payment object |
|
2257 | + $payment = $payment_processor->process_payment( |
|
2258 | + $payment_method, |
|
2259 | + $this->checkout->transaction, |
|
2260 | + $this->checkout->amount_owing, |
|
2261 | + $this->checkout->billing_form, |
|
2262 | + $this->_get_return_url($payment_method), |
|
2263 | + 'CART', |
|
2264 | + $this->checkout->admin_request, |
|
2265 | + true, |
|
2266 | + $this->reg_step_url() |
|
2267 | + ); |
|
2268 | + } catch (Exception $e) { |
|
2269 | + $this->_handle_payment_processor_exception($e); |
|
2270 | + } |
|
2271 | + return $payment; |
|
2272 | + } |
|
2273 | + |
|
2274 | + |
|
2275 | + /** |
|
2276 | + * _handle_payment_processor_exception |
|
2277 | + * |
|
2278 | + * @param Exception $e |
|
2279 | + * @return void |
|
2280 | + * @throws EE_Error |
|
2281 | + * @throws InvalidArgumentException |
|
2282 | + * @throws InvalidDataTypeException |
|
2283 | + * @throws InvalidInterfaceException |
|
2284 | + */ |
|
2285 | + protected function _handle_payment_processor_exception(Exception $e) |
|
2286 | + { |
|
2287 | + EE_Error::add_error( |
|
2288 | + sprintf( |
|
2289 | + esc_html__( |
|
2290 | + 'The payment could not br processed due to a technical issue.%1$sPlease try again or contact %2$s for assistance.||The following Exception was thrown in %4$s on line %5$s:%1$s%3$s', |
|
2291 | + 'event_espresso' |
|
2292 | + ), |
|
2293 | + '<br/>', |
|
2294 | + EE_Registry::instance()->CFG->organization->get_pretty('email'), |
|
2295 | + $e->getMessage(), |
|
2296 | + $e->getFile(), |
|
2297 | + $e->getLine() |
|
2298 | + ), |
|
2299 | + __FILE__, |
|
2300 | + __FUNCTION__, |
|
2301 | + __LINE__ |
|
2302 | + ); |
|
2303 | + } |
|
2304 | + |
|
2305 | + |
|
2306 | + /** |
|
2307 | + * _get_return_url |
|
2308 | + * |
|
2309 | + * @param EE_Payment_Method $payment_method |
|
2310 | + * @return string |
|
2311 | + * @throws EE_Error |
|
2312 | + * @throws ReflectionException |
|
2313 | + */ |
|
2314 | + protected function _get_return_url(EE_Payment_Method $payment_method) |
|
2315 | + { |
|
2316 | + $return_url = ''; |
|
2317 | + switch ($payment_method->type_obj()->payment_occurs()) { |
|
2318 | + case EE_PMT_Base::offsite: |
|
2319 | + $return_url = add_query_arg( |
|
2320 | + [ |
|
2321 | + 'action' => 'process_gateway_response', |
|
2322 | + 'selected_method_of_payment' => $this->checkout->selected_method_of_payment, |
|
2323 | + 'spco_txn' => $this->checkout->transaction->ID(), |
|
2324 | + ], |
|
2325 | + $this->reg_step_url() |
|
2326 | + ); |
|
2327 | + break; |
|
2328 | + case EE_PMT_Base::onsite: |
|
2329 | + case EE_PMT_Base::offline: |
|
2330 | + $return_url = $this->checkout->next_step->reg_step_url(); |
|
2331 | + break; |
|
2332 | + } |
|
2333 | + return $return_url; |
|
2334 | + } |
|
2335 | + |
|
2336 | + |
|
2337 | + /** |
|
2338 | + * _validate_payment |
|
2339 | + * |
|
2340 | + * @param EE_Payment $payment |
|
2341 | + * @return EE_Payment|FALSE |
|
2342 | + * @throws EE_Error |
|
2343 | + * @throws InvalidArgumentException |
|
2344 | + * @throws InvalidDataTypeException |
|
2345 | + * @throws InvalidInterfaceException |
|
2346 | + */ |
|
2347 | + private function _validate_payment($payment = null) |
|
2348 | + { |
|
2349 | + if ($this->checkout->payment_method->is_off_line()) { |
|
2350 | + return true; |
|
2351 | + } |
|
2352 | + // verify payment object |
|
2353 | + if (! $payment instanceof EE_Payment) { |
|
2354 | + // not a payment |
|
2355 | + EE_Error::add_error( |
|
2356 | + sprintf( |
|
2357 | + esc_html__( |
|
2358 | + 'A valid payment was not generated due to a technical issue.%1$sPlease try again or contact %2$s for assistance.', |
|
2359 | + 'event_espresso' |
|
2360 | + ), |
|
2361 | + '<br/>', |
|
2362 | + EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
2363 | + ), |
|
2364 | + __FILE__, |
|
2365 | + __FUNCTION__, |
|
2366 | + __LINE__ |
|
2367 | + ); |
|
2368 | + return false; |
|
2369 | + } |
|
2370 | + return $payment; |
|
2371 | + } |
|
2372 | + |
|
2373 | + |
|
2374 | + /** |
|
2375 | + * _post_payment_processing |
|
2376 | + * |
|
2377 | + * @param EE_Payment|bool $payment |
|
2378 | + * @return bool|EE_Payment |
|
2379 | + * @throws EE_Error |
|
2380 | + * @throws InvalidArgumentException |
|
2381 | + * @throws InvalidDataTypeException |
|
2382 | + * @throws InvalidInterfaceException |
|
2383 | + * @throws ReflectionException |
|
2384 | + */ |
|
2385 | + private function _post_payment_processing($payment = null) |
|
2386 | + { |
|
2387 | + // Off-Line payment? |
|
2388 | + if ($payment === true) { |
|
2389 | + return true; |
|
2390 | + } |
|
2391 | + if ($payment instanceof EE_Payment) { |
|
2392 | + // Should the user be redirected? |
|
2393 | + if ($payment->redirect_url()) { |
|
2394 | + do_action('AHEE_log', __CLASS__, __FUNCTION__, $payment->redirect_url(), '$payment->redirect_url()'); |
|
2395 | + $this->checkout->redirect = true; |
|
2396 | + $this->checkout->redirect_form = $payment->redirect_form(); |
|
2397 | + $this->checkout->redirect_url = $this->reg_step_url('redirect_form'); |
|
2398 | + // set JSON response |
|
2399 | + $this->checkout->json_response->set_redirect_form($this->checkout->redirect_form); |
|
2400 | + // and lastly, let's bump the payment status to pending |
|
2401 | + $payment->set_status(EEM_Payment::status_id_pending); |
|
2402 | + $payment->save(); |
|
2403 | + } elseif (! $this->_process_payment_status($payment, EE_PMT_Base::onsite)) { |
|
2404 | + // User shouldn't be redirected. So let's process it here. |
|
2405 | + // $this->_setup_redirect_for_next_step(); |
|
2406 | + $this->checkout->continue_reg = false; |
|
2407 | + } |
|
2408 | + return $payment; |
|
2409 | + } |
|
2410 | + // ummm ya... not Off-Line, not On-Site, not off-Site ???? |
|
2411 | + $this->checkout->continue_reg = false; |
|
2412 | + return false; |
|
2413 | + } |
|
2414 | + |
|
2415 | + |
|
2416 | + /** |
|
2417 | + * _process_payment_status |
|
2418 | + * |
|
2419 | + * @type EE_Payment $payment |
|
2420 | + * @param string $payment_occurs |
|
2421 | + * @return bool |
|
2422 | + * @throws EE_Error |
|
2423 | + * @throws InvalidArgumentException |
|
2424 | + * @throws InvalidDataTypeException |
|
2425 | + * @throws InvalidInterfaceException |
|
2426 | + */ |
|
2427 | + private function _process_payment_status($payment, $payment_occurs = EE_PMT_Base::offline) |
|
2428 | + { |
|
2429 | + // off-line payment? carry on |
|
2430 | + if ($payment_occurs === EE_PMT_Base::offline) { |
|
2431 | + return true; |
|
2432 | + } |
|
2433 | + // verify payment validity |
|
2434 | + if ($payment instanceof EE_Payment) { |
|
2435 | + do_action('AHEE_log', __CLASS__, __FUNCTION__, $payment->status(), '$payment->status()'); |
|
2436 | + $msg = $payment->gateway_response(); |
|
2437 | + // check results |
|
2438 | + switch ($payment->status()) { |
|
2439 | + // good payment |
|
2440 | + case EEM_Payment::status_id_approved: |
|
2441 | + EE_Error::add_success( |
|
2442 | + esc_html__('Your payment was processed successfully.', 'event_espresso'), |
|
2443 | + __FILE__, |
|
2444 | + __FUNCTION__, |
|
2445 | + __LINE__ |
|
2446 | + ); |
|
2447 | + return true; |
|
2448 | + // slow payment |
|
2449 | + case EEM_Payment::status_id_pending: |
|
2450 | + if (empty($msg)) { |
|
2451 | + $msg = esc_html__( |
|
2452 | + 'Your payment appears to have been processed successfully, but the Instant Payment Notification has not yet been received. It should arrive shortly.', |
|
2453 | + 'event_espresso' |
|
2454 | + ); |
|
2455 | + } |
|
2456 | + EE_Error::add_success($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2457 | + return true; |
|
2458 | + // don't wanna payment |
|
2459 | + case EEM_Payment::status_id_cancelled: |
|
2460 | + if (empty($msg)) { |
|
2461 | + $msg = _n( |
|
2462 | + 'Payment cancelled. Please try again.', |
|
2463 | + 'Payment cancelled. Please try again or select another method of payment.', |
|
2464 | + count($this->checkout->available_payment_methods), |
|
2465 | + 'event_espresso' |
|
2466 | + ); |
|
2467 | + } |
|
2468 | + EE_Error::add_attention($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2469 | + return false; |
|
2470 | + // not enough payment |
|
2471 | + case EEM_Payment::status_id_declined: |
|
2472 | + if (empty($msg)) { |
|
2473 | + $msg = _n( |
|
2474 | + 'We\'re sorry but your payment was declined. Please try again.', |
|
2475 | + 'We\'re sorry but your payment was declined. Please try again or select another method of payment.', |
|
2476 | + count($this->checkout->available_payment_methods), |
|
2477 | + 'event_espresso' |
|
2478 | + ); |
|
2479 | + } |
|
2480 | + EE_Error::add_attention($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2481 | + return false; |
|
2482 | + // bad payment |
|
2483 | + case EEM_Payment::status_id_failed: |
|
2484 | + if (! empty($msg)) { |
|
2485 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2486 | + return false; |
|
2487 | + } |
|
2488 | + // default to error below |
|
2489 | + break; |
|
2490 | + } |
|
2491 | + } |
|
2492 | + // off-site payment gateway responses are too unreliable, so let's just assume that |
|
2493 | + // the payment processing is just running slower than the registrant's request |
|
2494 | + if ($payment_occurs === EE_PMT_Base::offsite) { |
|
2495 | + return true; |
|
2496 | + } |
|
2497 | + EE_Error::add_error( |
|
2498 | + sprintf( |
|
2499 | + esc_html__( |
|
2500 | + 'Your payment could not be processed successfully due to a technical issue.%sPlease try again or contact %s for assistance.', |
|
2501 | + 'event_espresso' |
|
2502 | + ), |
|
2503 | + '<br/>', |
|
2504 | + EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
2505 | + ), |
|
2506 | + __FILE__, |
|
2507 | + __FUNCTION__, |
|
2508 | + __LINE__ |
|
2509 | + ); |
|
2510 | + return false; |
|
2511 | + } |
|
2512 | + |
|
2513 | + |
|
2514 | + |
|
2515 | + |
|
2516 | + |
|
2517 | + |
|
2518 | + /********************************************************************************************************/ |
|
2519 | + /********************************** PROCESS GATEWAY RESPONSE **********************************/ |
|
2520 | + /********************************************************************************************************/ |
|
2521 | + /** |
|
2522 | + * process_gateway_response |
|
2523 | + * this is the return point for Off-Site Payment Methods |
|
2524 | + * It will attempt to "handle the IPN" if it appears that this has not already occurred, |
|
2525 | + * otherwise, it will load up the last payment made for the TXN. |
|
2526 | + * If the payment retrieved looks good, it will then either: |
|
2527 | + * complete the current step and allow advancement to the next reg step |
|
2528 | + * or present the payment options again |
|
2529 | + * |
|
2530 | + * @return bool |
|
2531 | + * @throws EE_Error |
|
2532 | + * @throws InvalidArgumentException |
|
2533 | + * @throws ReflectionException |
|
2534 | + * @throws InvalidDataTypeException |
|
2535 | + * @throws InvalidInterfaceException |
|
2536 | + */ |
|
2537 | + public function process_gateway_response() |
|
2538 | + { |
|
2539 | + // how have they chosen to pay? |
|
2540 | + $this->checkout->selected_method_of_payment = $this->_get_selected_method_of_payment(true); |
|
2541 | + // get EE_Payment_Method object |
|
2542 | + if (! $this->checkout->payment_method = $this->_get_payment_method_for_selected_method_of_payment()) { |
|
2543 | + $this->checkout->continue_reg = false; |
|
2544 | + return false; |
|
2545 | + } |
|
2546 | + if (! $this->checkout->payment_method->is_off_site()) { |
|
2547 | + return false; |
|
2548 | + } |
|
2549 | + $this->_validate_offsite_return(); |
|
2550 | + // verify TXN |
|
2551 | + if ($this->checkout->transaction instanceof EE_Transaction) { |
|
2552 | + $gateway = $this->checkout->payment_method->type_obj()->get_gateway(); |
|
2553 | + if (! $gateway instanceof EE_Offsite_Gateway) { |
|
2554 | + $this->checkout->continue_reg = false; |
|
2555 | + return false; |
|
2556 | + } |
|
2557 | + $payment = $this->_process_off_site_payment($gateway); |
|
2558 | + $payment = $this->_process_cancelled_payments($payment); |
|
2559 | + $payment = $this->_validate_payment($payment); |
|
2560 | + // if payment was not declined by the payment gateway or cancelled by the registrant |
|
2561 | + if ($this->_process_payment_status($payment, EE_PMT_Base::offsite)) { |
|
2562 | + // $this->_setup_redirect_for_next_step(); |
|
2563 | + // store that for later |
|
2564 | + $this->checkout->payment = $payment; |
|
2565 | + // mark this reg step as completed, as long as gateway doesn't use a separate IPN request, |
|
2566 | + // because we will complete this step during the IPN processing then |
|
2567 | + if (! $this->handle_IPN_in_this_request()) { |
|
2568 | + $this->set_completed(); |
|
2569 | + } |
|
2570 | + return true; |
|
2571 | + } |
|
2572 | + } |
|
2573 | + // DEBUG LOG |
|
2574 | + // $this->checkout->log( |
|
2575 | + // __CLASS__, |
|
2576 | + // __FUNCTION__, |
|
2577 | + // __LINE__, |
|
2578 | + // array('payment' => $payment) |
|
2579 | + // ); |
|
2580 | + $this->checkout->continue_reg = false; |
|
2581 | + return false; |
|
2582 | + } |
|
2583 | + |
|
2584 | + |
|
2585 | + /** |
|
2586 | + * _validate_return |
|
2587 | + * |
|
2588 | + * @return void |
|
2589 | + * @throws EE_Error |
|
2590 | + * @throws InvalidArgumentException |
|
2591 | + * @throws InvalidDataTypeException |
|
2592 | + * @throws InvalidInterfaceException |
|
2593 | + * @throws ReflectionException |
|
2594 | + */ |
|
2595 | + private function _validate_offsite_return() |
|
2596 | + { |
|
2597 | + $TXN_ID = $this->request->getRequestParam('spco_txn', 0, 'int'); |
|
2598 | + if ($TXN_ID !== $this->checkout->transaction->ID()) { |
|
2599 | + // Houston... we might have a problem |
|
2600 | + $invalid_TXN = false; |
|
2601 | + // first gather some info |
|
2602 | + $valid_TXN = EEM_Transaction::instance()->get_one_by_ID($TXN_ID); |
|
2603 | + $primary_registrant = $valid_TXN instanceof EE_Transaction |
|
2604 | + ? $valid_TXN->primary_registration() |
|
2605 | + : null; |
|
2606 | + // let's start by retrieving the cart for this TXN |
|
2607 | + $cart = $this->checkout->get_cart_for_transaction($this->checkout->transaction); |
|
2608 | + if ($cart instanceof EE_Cart) { |
|
2609 | + // verify that the current cart has tickets |
|
2610 | + $tickets = $cart->get_tickets(); |
|
2611 | + if (empty($tickets)) { |
|
2612 | + $invalid_TXN = true; |
|
2613 | + } |
|
2614 | + } else { |
|
2615 | + $invalid_TXN = true; |
|
2616 | + } |
|
2617 | + $valid_TXN_SID = $primary_registrant instanceof EE_Registration |
|
2618 | + ? $primary_registrant->session_ID() |
|
2619 | + : null; |
|
2620 | + // validate current Session ID and compare against valid TXN session ID |
|
2621 | + if ( |
|
2622 | + $invalid_TXN // if this is already true, then skip other checks |
|
2623 | + || EE_Session::instance()->id() === null |
|
2624 | + || ( |
|
2625 | + // WARNING !!! |
|
2626 | + // this could be PayPal sending back duplicate requests (ya they do that) |
|
2627 | + // or it **could** mean someone is simply registering AGAIN after having just done so |
|
2628 | + // so now we need to determine if this current TXN looks valid or not |
|
2629 | + // and whether this reg step has even been started ? |
|
2630 | + EE_Session::instance()->id() === $valid_TXN_SID |
|
2631 | + // really? you're half way through this reg step, but you never started it ? |
|
2632 | + && $this->checkout->transaction->reg_step_completed($this->slug()) === false |
|
2633 | + ) |
|
2634 | + ) { |
|
2635 | + $invalid_TXN = true; |
|
2636 | + } |
|
2637 | + if ($invalid_TXN) { |
|
2638 | + // is the valid TXN completed ? |
|
2639 | + if ($valid_TXN instanceof EE_Transaction) { |
|
2640 | + // has this step even been started ? |
|
2641 | + $reg_step_completed = $valid_TXN->reg_step_completed($this->slug()); |
|
2642 | + if ($reg_step_completed !== false && $reg_step_completed !== true) { |
|
2643 | + // so it **looks** like this is a double request from PayPal |
|
2644 | + // so let's try to pick up where we left off |
|
2645 | + $this->checkout->transaction = $valid_TXN; |
|
2646 | + $this->checkout->refresh_all_entities(true); |
|
2647 | + return; |
|
2648 | + } |
|
2649 | + } |
|
2650 | + // you appear to be lost? |
|
2651 | + $this->_redirect_wayward_request($primary_registrant); |
|
2652 | + } |
|
2653 | + } |
|
2654 | + } |
|
2655 | + |
|
2656 | + |
|
2657 | + /** |
|
2658 | + * _redirect_wayward_request |
|
2659 | + * |
|
2660 | + * @param EE_Registration|null $primary_registrant |
|
2661 | + * @return void |
|
2662 | + * @throws EE_Error |
|
2663 | + * @throws InvalidArgumentException |
|
2664 | + * @throws InvalidDataTypeException |
|
2665 | + * @throws InvalidInterfaceException |
|
2666 | + * @throws ReflectionException |
|
2667 | + */ |
|
2668 | + private function _redirect_wayward_request(EE_Registration $primary_registrant) |
|
2669 | + { |
|
2670 | + if (! $primary_registrant instanceof EE_Registration) { |
|
2671 | + // try redirecting based on the current TXN |
|
2672 | + $primary_registrant = $this->checkout->transaction instanceof EE_Transaction |
|
2673 | + ? $this->checkout->transaction->primary_registration() |
|
2674 | + : null; |
|
2675 | + } |
|
2676 | + if (! $primary_registrant instanceof EE_Registration) { |
|
2677 | + EE_Error::add_error( |
|
2678 | + sprintf( |
|
2679 | + esc_html__( |
|
2680 | + 'Invalid information was received from the Off-Site Payment Processor and your Transaction details could not be retrieved from the database.%1$sPlease try again or contact %2$s for assistance.', |
|
2681 | + 'event_espresso' |
|
2682 | + ), |
|
2683 | + '<br/>', |
|
2684 | + EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
2685 | + ), |
|
2686 | + __FILE__, |
|
2687 | + __FUNCTION__, |
|
2688 | + __LINE__ |
|
2689 | + ); |
|
2690 | + return; |
|
2691 | + } |
|
2692 | + // make sure transaction is not locked |
|
2693 | + $this->checkout->transaction->unlock(); |
|
2694 | + wp_safe_redirect( |
|
2695 | + add_query_arg( |
|
2696 | + [ |
|
2697 | + 'e_reg_url_link' => $primary_registrant->reg_url_link(), |
|
2698 | + ], |
|
2699 | + $this->checkout->thank_you_page_url |
|
2700 | + ) |
|
2701 | + ); |
|
2702 | + exit(); |
|
2703 | + } |
|
2704 | + |
|
2705 | + |
|
2706 | + /** |
|
2707 | + * _process_off_site_payment |
|
2708 | + * |
|
2709 | + * @param EE_Offsite_Gateway $gateway |
|
2710 | + * @return EE_Payment |
|
2711 | + * @throws EE_Error |
|
2712 | + * @throws InvalidArgumentException |
|
2713 | + * @throws InvalidDataTypeException |
|
2714 | + * @throws InvalidInterfaceException |
|
2715 | + * @throws ReflectionException |
|
2716 | + */ |
|
2717 | + private function _process_off_site_payment(EE_Offsite_Gateway $gateway) |
|
2718 | + { |
|
2719 | + try { |
|
2720 | + $request = LoaderFactory::getLoader()->getShared(RequestInterface::class); |
|
2721 | + $request_data = $request->requestParams(); |
|
2722 | + // if gateway uses_separate_IPN_request, then we don't have to process the IPN manually |
|
2723 | + $this->set_handle_IPN_in_this_request( |
|
2724 | + $gateway->handle_IPN_in_this_request($request_data, false) |
|
2725 | + ); |
|
2726 | + if ($this->handle_IPN_in_this_request()) { |
|
2727 | + // get payment details and process results |
|
2728 | + /** @type EE_Payment_Processor $payment_processor */ |
|
2729 | + $payment_processor = EE_Registry::instance()->load_core('Payment_Processor'); |
|
2730 | + $payment = $payment_processor->process_ipn( |
|
2731 | + $request_data, |
|
2732 | + $this->checkout->transaction, |
|
2733 | + $this->checkout->payment_method, |
|
2734 | + true, |
|
2735 | + false |
|
2736 | + ); |
|
2737 | + // $payment_source = 'process_ipn'; |
|
2738 | + } else { |
|
2739 | + $payment = $this->checkout->transaction->last_payment(); |
|
2740 | + // $payment_source = 'last_payment'; |
|
2741 | + } |
|
2742 | + } catch (Exception $e) { |
|
2743 | + // let's just eat the exception and try to move on using any previously set payment info |
|
2744 | + $payment = $this->checkout->transaction->last_payment(); |
|
2745 | + // $payment_source = 'last_payment after Exception'; |
|
2746 | + // but if we STILL don't have a payment object |
|
2747 | + if (! $payment instanceof EE_Payment) { |
|
2748 | + // then we'll object ! ( not object like a thing... but object like what a lawyer says ! ) |
|
2749 | + $this->_handle_payment_processor_exception($e); |
|
2750 | + } |
|
2751 | + } |
|
2752 | + return $payment; |
|
2753 | + } |
|
2754 | + |
|
2755 | + |
|
2756 | + /** |
|
2757 | + * _process_cancelled_payments |
|
2758 | + * just makes sure that the payment status gets updated correctly |
|
2759 | + * so tha tan error isn't generated during payment validation |
|
2760 | + * |
|
2761 | + * @param EE_Payment $payment |
|
2762 | + * @return EE_Payment|null |
|
2763 | + * @throws EE_Error |
|
2764 | + */ |
|
2765 | + private function _process_cancelled_payments($payment = null) |
|
2766 | + { |
|
2767 | + if ( |
|
2768 | + $payment instanceof EE_Payment |
|
2769 | + && $this->request->requestParamIsSet('ee_cancel_payment') |
|
2770 | + && $payment->status() === EEM_Payment::status_id_failed |
|
2771 | + ) { |
|
2772 | + $payment->set_status(EEM_Payment::status_id_cancelled); |
|
2773 | + } |
|
2774 | + return $payment; |
|
2775 | + } |
|
2776 | + |
|
2777 | + |
|
2778 | + /** |
|
2779 | + * get_transaction_details_for_gateways |
|
2780 | + * |
|
2781 | + * @access public |
|
2782 | + * @return void |
|
2783 | + * @throws EE_Error |
|
2784 | + * @throws InvalidArgumentException |
|
2785 | + * @throws ReflectionException |
|
2786 | + * @throws InvalidDataTypeException |
|
2787 | + * @throws InvalidInterfaceException |
|
2788 | + */ |
|
2789 | + public function get_transaction_details_for_gateways() |
|
2790 | + { |
|
2791 | + $txn_details = []; |
|
2792 | + // ya gotta make a choice man |
|
2793 | + if (empty($this->checkout->selected_method_of_payment)) { |
|
2794 | + $txn_details = [ |
|
2795 | + 'error' => esc_html__('Please select a method of payment before proceeding.', 'event_espresso'), |
|
2796 | + ]; |
|
2797 | + } |
|
2798 | + // get EE_Payment_Method object |
|
2799 | + if ( |
|
2800 | + empty($txn_details) |
|
2801 | + && ! $this->checkout->payment_method = $this->_get_payment_method_for_selected_method_of_payment() |
|
2802 | + ) { |
|
2803 | + $txn_details = [ |
|
2804 | + 'selected_method_of_payment' => $this->checkout->selected_method_of_payment, |
|
2805 | + 'error' => esc_html__( |
|
2806 | + 'A valid Payment Method could not be determined.', |
|
2807 | + 'event_espresso' |
|
2808 | + ), |
|
2809 | + ]; |
|
2810 | + } |
|
2811 | + if (empty($txn_details) && $this->checkout->transaction instanceof EE_Transaction) { |
|
2812 | + $return_url = $this->_get_return_url($this->checkout->payment_method); |
|
2813 | + $txn_details = [ |
|
2814 | + 'TXN_ID' => $this->checkout->transaction->ID(), |
|
2815 | + 'TXN_timestamp' => $this->checkout->transaction->datetime(), |
|
2816 | + 'TXN_total' => $this->checkout->transaction->total(), |
|
2817 | + 'TXN_paid' => $this->checkout->transaction->paid(), |
|
2818 | + 'TXN_reg_steps' => $this->checkout->transaction->reg_steps(), |
|
2819 | + 'STS_ID' => $this->checkout->transaction->status_ID(), |
|
2820 | + 'PMD_ID' => $this->checkout->transaction->payment_method_ID(), |
|
2821 | + 'payment_amount' => $this->checkout->amount_owing, |
|
2822 | + 'return_url' => $return_url, |
|
2823 | + 'cancel_url' => add_query_arg(['ee_cancel_payment' => true], $return_url), |
|
2824 | + 'notify_url' => EE_Config::instance()->core->txn_page_url( |
|
2825 | + [ |
|
2826 | + 'e_reg_url_link' => $this->checkout->transaction->primary_registration()->reg_url_link(), |
|
2827 | + 'ee_payment_method' => $this->checkout->payment_method->slug(), |
|
2828 | + ] |
|
2829 | + ), |
|
2830 | + ]; |
|
2831 | + } |
|
2832 | + echo wp_json_encode($txn_details); |
|
2833 | + exit(); |
|
2834 | + } |
|
2835 | + |
|
2836 | + |
|
2837 | + /** |
|
2838 | + * __sleep |
|
2839 | + * to conserve db space, let's remove the reg_form and the EE_Checkout object from EE_SPCO_Reg_Step objects upon |
|
2840 | + * serialization EE_Checkout will handle the reimplementation of itself upon waking, but we won't bother with the |
|
2841 | + * reg form, because if needed, it will be regenerated anyways |
|
2842 | + * |
|
2843 | + * @return array |
|
2844 | + */ |
|
2845 | + public function __sleep() |
|
2846 | + { |
|
2847 | + // remove the reg form and the checkout |
|
2848 | + return array_diff(array_keys(get_object_vars($this)), ['reg_form', 'checkout', 'line_item_display']); |
|
2849 | + } |
|
2850 | 2850 | } |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | $this->request = EED_Single_Page_Checkout::getRequest(); |
133 | 133 | $this->_slug = 'payment_options'; |
134 | 134 | $this->_name = esc_html__('Payment Options', 'event_espresso'); |
135 | - $this->_template = SPCO_REG_STEPS_PATH . $this->_slug . '/payment_options_main.template.php'; |
|
135 | + $this->_template = SPCO_REG_STEPS_PATH.$this->_slug.'/payment_options_main.template.php'; |
|
136 | 136 | $this->checkout = $checkout; |
137 | 137 | $this->_reset_success_message(); |
138 | 138 | $this->set_instructions( |
@@ -187,7 +187,7 @@ discard block |
||
187 | 187 | */ |
188 | 188 | public function translate_js_strings() |
189 | 189 | { |
190 | - EE_Registry::$i18n_js_strings['no_payment_method'] = esc_html__( |
|
190 | + EE_Registry::$i18n_js_strings['no_payment_method'] = esc_html__( |
|
191 | 191 | 'Please select a method of payment in order to continue.', |
192 | 192 | 'event_espresso' |
193 | 193 | ); |
@@ -195,7 +195,7 @@ discard block |
||
195 | 195 | 'A valid method of payment could not be determined. Please refresh the page and try again.', |
196 | 196 | 'event_espresso' |
197 | 197 | ); |
198 | - EE_Registry::$i18n_js_strings['forwarding_to_offsite'] = esc_html__( |
|
198 | + EE_Registry::$i18n_js_strings['forwarding_to_offsite'] = esc_html__( |
|
199 | 199 | 'Forwarding to Secure Payment Provider.', |
200 | 200 | 'event_espresso' |
201 | 201 | ); |
@@ -216,7 +216,7 @@ discard block |
||
216 | 216 | { |
217 | 217 | $transaction = $this->checkout->transaction; |
218 | 218 | // if the transaction isn't set or nothing is owed on it, don't enqueue any JS |
219 | - if (! $transaction instanceof EE_Transaction || EEH_Money::compare_floats($transaction->remaining(), 0)) { |
|
219 | + if ( ! $transaction instanceof EE_Transaction || EEH_Money::compare_floats($transaction->remaining(), 0)) { |
|
220 | 220 | return; |
221 | 221 | } |
222 | 222 | foreach ( |
@@ -311,18 +311,18 @@ discard block |
||
311 | 311 | foreach ($registrations as $REG_ID => $registration) { |
312 | 312 | /** @var $registration EE_Registration */ |
313 | 313 | // has this registration lost it's space ? |
314 | - if (isset($ejected_registrations[ $REG_ID ])) { |
|
314 | + if (isset($ejected_registrations[$REG_ID])) { |
|
315 | 315 | if ($registration->event()->is_sold_out() || $registration->event()->is_sold_out(true)) { |
316 | - $sold_out_events[ $registration->event()->ID() ] = $registration->event(); |
|
316 | + $sold_out_events[$registration->event()->ID()] = $registration->event(); |
|
317 | 317 | } else { |
318 | - $insufficient_spaces_available[ $registration->event()->ID() ] = $registration->event(); |
|
318 | + $insufficient_spaces_available[$registration->event()->ID()] = $registration->event(); |
|
319 | 319 | } |
320 | 320 | continue; |
321 | 321 | } |
322 | 322 | // event requires admin approval |
323 | 323 | if ($registration->status_ID() === EEM_Registration::status_id_not_approved) { |
324 | 324 | // add event to list of events with pre-approval reg status |
325 | - $registrations_requiring_pre_approval[ $REG_ID ] = $registration; |
|
325 | + $registrations_requiring_pre_approval[$REG_ID] = $registration; |
|
326 | 326 | do_action( |
327 | 327 | 'AHEE__EE_SPCO_Reg_Step_Payment_Options__generate_reg_form__event_requires_pre_approval', |
328 | 328 | $registration->event(), |
@@ -339,7 +339,7 @@ discard block |
||
339 | 339 | ) |
340 | 340 | ) { |
341 | 341 | // add event to list of events that are sold out |
342 | - $sold_out_events[ $registration->event()->ID() ] = $registration->event(); |
|
342 | + $sold_out_events[$registration->event()->ID()] = $registration->event(); |
|
343 | 343 | do_action( |
344 | 344 | 'AHEE__EE_SPCO_Reg_Step_Payment_Options__generate_reg_form__sold_out_event', |
345 | 345 | $registration->event(), |
@@ -349,7 +349,7 @@ discard block |
||
349 | 349 | } |
350 | 350 | // are they allowed to pay now and is there monies owing? |
351 | 351 | if ($registration->owes_monies_and_can_pay()) { |
352 | - $registrations_requiring_payment[ $REG_ID ] = $registration; |
|
352 | + $registrations_requiring_payment[$REG_ID] = $registration; |
|
353 | 353 | do_action( |
354 | 354 | 'AHEE__EE_SPCO_Reg_Step_Payment_Options__generate_reg_form__event_requires_payment', |
355 | 355 | $registration->event(), |
@@ -360,28 +360,28 @@ discard block |
||
360 | 360 | && $registration->status_ID() !== EEM_Registration::status_id_not_approved |
361 | 361 | && $registration->ticket()->is_free() |
362 | 362 | ) { |
363 | - $registrations_for_free_events[ $registration->ticket()->ID() ] = $registration; |
|
363 | + $registrations_for_free_events[$registration->ticket()->ID()] = $registration; |
|
364 | 364 | } |
365 | 365 | } |
366 | 366 | $subsections = []; |
367 | 367 | // now decide which template to load |
368 | - if (! empty($sold_out_events)) { |
|
368 | + if ( ! empty($sold_out_events)) { |
|
369 | 369 | $subsections['sold_out_events'] = $this->_sold_out_events($sold_out_events); |
370 | 370 | } |
371 | - if (! empty($insufficient_spaces_available)) { |
|
371 | + if ( ! empty($insufficient_spaces_available)) { |
|
372 | 372 | $subsections['insufficient_space'] = $this->_insufficient_spaces_available( |
373 | 373 | $insufficient_spaces_available |
374 | 374 | ); |
375 | 375 | } |
376 | - if (! empty($registrations_requiring_pre_approval)) { |
|
376 | + if ( ! empty($registrations_requiring_pre_approval)) { |
|
377 | 377 | $subsections['registrations_requiring_pre_approval'] = $this->_registrations_requiring_pre_approval( |
378 | 378 | $registrations_requiring_pre_approval |
379 | 379 | ); |
380 | 380 | } |
381 | - if (! empty($registrations_for_free_events)) { |
|
381 | + if ( ! empty($registrations_for_free_events)) { |
|
382 | 382 | $subsections['no_payment_required'] = $this->_no_payment_required($registrations_for_free_events); |
383 | 383 | } |
384 | - if (! empty($registrations_requiring_payment)) { |
|
384 | + if ( ! empty($registrations_requiring_payment)) { |
|
385 | 385 | if ($this->checkout->amount_owing > 0) { |
386 | 386 | // autoload Line_Item_Display classes |
387 | 387 | EEH_Autoloader::register_line_item_filter_autoloaders(); |
@@ -402,7 +402,7 @@ discard block |
||
402 | 402 | ['registrations' => $registrations] |
403 | 403 | ) |
404 | 404 | ); |
405 | - $this->checkout->amount_owing = $filtered_line_item_tree->total(); |
|
405 | + $this->checkout->amount_owing = $filtered_line_item_tree->total(); |
|
406 | 406 | $this->_apply_registration_payments_to_amount_owing($registrations); |
407 | 407 | } |
408 | 408 | $no_payment_required = false; |
@@ -446,13 +446,13 @@ discard block |
||
446 | 446 | */ |
447 | 447 | public static function add_spco_line_item_filters(EE_Line_Item_Filter_Collection $line_item_filter_collection) |
448 | 448 | { |
449 | - if (! EE_Registry::instance()->SSN instanceof EE_Session) { |
|
449 | + if ( ! EE_Registry::instance()->SSN instanceof EE_Session) { |
|
450 | 450 | return $line_item_filter_collection; |
451 | 451 | } |
452 | - if (! EE_Registry::instance()->SSN->checkout() instanceof EE_Checkout) { |
|
452 | + if ( ! EE_Registry::instance()->SSN->checkout() instanceof EE_Checkout) { |
|
453 | 453 | return $line_item_filter_collection; |
454 | 454 | } |
455 | - if (! EE_Registry::instance()->SSN->checkout()->transaction instanceof EE_Transaction) { |
|
455 | + if ( ! EE_Registry::instance()->SSN->checkout()->transaction instanceof EE_Transaction) { |
|
456 | 456 | return $line_item_filter_collection; |
457 | 457 | } |
458 | 458 | $line_item_filter_collection->add( |
@@ -492,8 +492,8 @@ discard block |
||
492 | 492 | ); |
493 | 493 | foreach ($registrations as $REG_ID => $registration) { |
494 | 494 | // has this registration lost it's space ? |
495 | - if (isset($ejected_registrations[ $REG_ID ])) { |
|
496 | - unset($registrations[ $REG_ID ]); |
|
495 | + if (isset($ejected_registrations[$REG_ID])) { |
|
496 | + unset($registrations[$REG_ID]); |
|
497 | 497 | } |
498 | 498 | } |
499 | 499 | return $registrations; |
@@ -543,25 +543,25 @@ discard block |
||
543 | 543 | } |
544 | 544 | $EVT_ID = $registration->event_ID(); |
545 | 545 | $ticket = $registration->ticket(); |
546 | - if (! isset($tickets_remaining[ $ticket->ID() ])) { |
|
547 | - $tickets_remaining[ $ticket->ID() ] = $ticket->remaining(); |
|
546 | + if ( ! isset($tickets_remaining[$ticket->ID()])) { |
|
547 | + $tickets_remaining[$ticket->ID()] = $ticket->remaining(); |
|
548 | 548 | } |
549 | - if ($tickets_remaining[ $ticket->ID() ] > 0) { |
|
550 | - if (! isset($event_reg_count[ $EVT_ID ])) { |
|
551 | - $event_reg_count[ $EVT_ID ] = 0; |
|
549 | + if ($tickets_remaining[$ticket->ID()] > 0) { |
|
550 | + if ( ! isset($event_reg_count[$EVT_ID])) { |
|
551 | + $event_reg_count[$EVT_ID] = 0; |
|
552 | 552 | } |
553 | - $event_reg_count[ $EVT_ID ]++; |
|
554 | - if (! isset($event_spaces_remaining[ $EVT_ID ])) { |
|
555 | - $event_spaces_remaining[ $EVT_ID ] = $registration->event()->spaces_remaining_for_sale(); |
|
553 | + $event_reg_count[$EVT_ID]++; |
|
554 | + if ( ! isset($event_spaces_remaining[$EVT_ID])) { |
|
555 | + $event_spaces_remaining[$EVT_ID] = $registration->event()->spaces_remaining_for_sale(); |
|
556 | 556 | } |
557 | 557 | } |
558 | 558 | if ( |
559 | 559 | $revisit |
560 | - && ($tickets_remaining[ $ticket->ID() ] === 0 |
|
561 | - || $event_reg_count[ $EVT_ID ] > $event_spaces_remaining[ $EVT_ID ] |
|
560 | + && ($tickets_remaining[$ticket->ID()] === 0 |
|
561 | + || $event_reg_count[$EVT_ID] > $event_spaces_remaining[$EVT_ID] |
|
562 | 562 | ) |
563 | 563 | ) { |
564 | - $ejected_registrations[ $REG_ID ] = $registration->event(); |
|
564 | + $ejected_registrations[$REG_ID] = $registration->event(); |
|
565 | 565 | if ($registration->status_ID() !== EEM_Registration::status_id_wait_list) { |
566 | 566 | /** @type EE_Registration_Processor $registration_processor */ |
567 | 567 | $registration_processor = EE_Registry::instance()->load_class('Registration_Processor'); |
@@ -621,7 +621,7 @@ discard block |
||
621 | 621 | foreach ($sold_out_events_array as $sold_out_event) { |
622 | 622 | $sold_out_events .= EEH_HTML::li( |
623 | 623 | EEH_HTML::span( |
624 | - ' ' . $sold_out_event->name(), |
|
624 | + ' '.$sold_out_event->name(), |
|
625 | 625 | '', |
626 | 626 | 'dashicons dashicons-marker ee-icon-size-16 pink-text' |
627 | 627 | ) |
@@ -677,7 +677,7 @@ discard block |
||
677 | 677 | foreach ($insufficient_spaces_events_array as $event) { |
678 | 678 | if ($event instanceof EE_Event) { |
679 | 679 | $insufficient_space_events .= EEH_HTML::li( |
680 | - EEH_HTML::span(' ' . $event->name(), '', 'dashicons dashicons-marker ee-icon-size-16 pink-text') |
|
680 | + EEH_HTML::span(' '.$event->name(), '', 'dashicons dashicons-marker ee-icon-size-16 pink-text') |
|
681 | 681 | ); |
682 | 682 | } |
683 | 683 | } |
@@ -726,7 +726,7 @@ discard block |
||
726 | 726 | $events_requiring_pre_approval = []; |
727 | 727 | foreach ($registrations_requiring_pre_approval as $registration) { |
728 | 728 | if ($registration instanceof EE_Registration && $registration->event() instanceof EE_Event) { |
729 | - $events_requiring_pre_approval[ $registration->event()->ID() ] = EEH_HTML::li( |
|
729 | + $events_requiring_pre_approval[$registration->event()->ID()] = EEH_HTML::li( |
|
730 | 730 | EEH_HTML::span( |
731 | 731 | '', |
732 | 732 | '', |
@@ -866,7 +866,7 @@ discard block |
||
866 | 866 | { |
867 | 867 | return new EE_Form_Section_Proper( |
868 | 868 | [ |
869 | - 'html_id' => 'ee-' . $this->slug() . '-extra-hidden-inputs', |
|
869 | + 'html_id' => 'ee-'.$this->slug().'-extra-hidden-inputs', |
|
870 | 870 | 'layout_strategy' => new EE_Div_Per_Section_Layout(), |
871 | 871 | 'subsections' => [ |
872 | 872 | 'spco_no_payment_required' => new EE_Hidden_Input( |
@@ -905,7 +905,7 @@ discard block |
||
905 | 905 | $payments += $registration->registration_payments(); |
906 | 906 | } |
907 | 907 | } |
908 | - if (! empty($payments)) { |
|
908 | + if ( ! empty($payments)) { |
|
909 | 909 | foreach ($payments as $payment) { |
910 | 910 | if ($payment instanceof EE_Registration_Payment) { |
911 | 911 | $this->checkout->amount_owing -= $payment->amount(); |
@@ -994,7 +994,7 @@ discard block |
||
994 | 994 | ); |
995 | 995 | } |
996 | 996 | // switch up header depending on number of available payment methods |
997 | - $payment_method_header = count($this->checkout->available_payment_methods) > 1 |
|
997 | + $payment_method_header = count($this->checkout->available_payment_methods) > 1 |
|
998 | 998 | ? apply_filters( |
999 | 999 | 'FHEE__registration_page_payment_options__method_of_payment_hdr', |
1000 | 1000 | esc_html__('Please Select Your Method of Payment', 'event_espresso') |
@@ -1028,7 +1028,7 @@ discard block |
||
1028 | 1028 | $payment_method_button = EEH_HTML::img( |
1029 | 1029 | $payment_method->button_url(), |
1030 | 1030 | $payment_method->name(), |
1031 | - 'spco-payment-method-' . $payment_method->slug() . '-btn-img', |
|
1031 | + 'spco-payment-method-'.$payment_method->slug().'-btn-img', |
|
1032 | 1032 | 'spco-payment-method-btn-img' |
1033 | 1033 | ); |
1034 | 1034 | // check if any payment methods are set as default |
@@ -1036,15 +1036,15 @@ discard block |
||
1036 | 1036 | // open_by_default |
1037 | 1037 | if ( |
1038 | 1038 | ($this->checkout->selected_method_of_payment === $payment_method->slug()) |
1039 | - || (! $this->checkout->selected_method_of_payment && $payment_method->open_by_default()) |
|
1039 | + || ( ! $this->checkout->selected_method_of_payment && $payment_method->open_by_default()) |
|
1040 | 1040 | ) { |
1041 | 1041 | $this->checkout->selected_method_of_payment = $payment_method->slug(); |
1042 | 1042 | $this->_save_selected_method_of_payment(); |
1043 | - $default_payment_method_option[ $payment_method->slug() ] = $payment_method_button; |
|
1043 | + $default_payment_method_option[$payment_method->slug()] = $payment_method_button; |
|
1044 | 1044 | } else { |
1045 | - $available_payment_method_options[ $payment_method->slug() ] = $payment_method_button; |
|
1045 | + $available_payment_method_options[$payment_method->slug()] = $payment_method_button; |
|
1046 | 1046 | } |
1047 | - $payment_methods_billing_info[ $payment_method->slug() . '-info' ] = |
|
1047 | + $payment_methods_billing_info[$payment_method->slug().'-info'] = |
|
1048 | 1048 | $this->_payment_method_billing_info( |
1049 | 1049 | $payment_method |
1050 | 1050 | ); |
@@ -1057,7 +1057,7 @@ discard block |
||
1057 | 1057 | $available_payment_methods['available_payment_methods'] = $this->_available_payment_method_inputs( |
1058 | 1058 | $available_payment_method_options |
1059 | 1059 | ); |
1060 | - $available_payment_methods += $payment_methods_billing_info; |
|
1060 | + $available_payment_methods += $payment_methods_billing_info; |
|
1061 | 1061 | // build the available payment methods form |
1062 | 1062 | return new EE_Form_Section_Proper( |
1063 | 1063 | [ |
@@ -1080,7 +1080,7 @@ discard block |
||
1080 | 1080 | */ |
1081 | 1081 | protected function _get_available_payment_methods() |
1082 | 1082 | { |
1083 | - if (! empty($this->checkout->available_payment_methods)) { |
|
1083 | + if ( ! empty($this->checkout->available_payment_methods)) { |
|
1084 | 1084 | return $this->checkout->available_payment_methods; |
1085 | 1085 | } |
1086 | 1086 | $available_payment_methods = []; |
@@ -1092,7 +1092,7 @@ discard block |
||
1092 | 1092 | ); |
1093 | 1093 | foreach ($payment_methods as $payment_method) { |
1094 | 1094 | if ($payment_method instanceof EE_Payment_Method) { |
1095 | - $available_payment_methods[ $payment_method->slug() ] = $payment_method; |
|
1095 | + $available_payment_methods[$payment_method->slug()] = $payment_method; |
|
1096 | 1096 | } |
1097 | 1097 | } |
1098 | 1098 | return $available_payment_methods; |
@@ -1187,7 +1187,7 @@ discard block |
||
1187 | 1187 | ); |
1188 | 1188 | return new EE_Form_Section_Proper( |
1189 | 1189 | [ |
1190 | - 'html_id' => 'spco-payment-method-info-' . $payment_method->slug(), |
|
1190 | + 'html_id' => 'spco-payment-method-info-'.$payment_method->slug(), |
|
1191 | 1191 | 'html_class' => 'spco-payment-method-info-dv', |
1192 | 1192 | // only display the selected or default PM |
1193 | 1193 | 'html_style' => $currently_selected ? '' : 'display:none;', |
@@ -1216,7 +1216,7 @@ discard block |
||
1216 | 1216 | // how have they chosen to pay? |
1217 | 1217 | $this->checkout->selected_method_of_payment = $this->_get_selected_method_of_payment(true); |
1218 | 1218 | $this->checkout->payment_method = $this->_get_payment_method_for_selected_method_of_payment(); |
1219 | - if (! $this->checkout->payment_method instanceof EE_Payment_Method) { |
|
1219 | + if ( ! $this->checkout->payment_method instanceof EE_Payment_Method) { |
|
1220 | 1220 | return false; |
1221 | 1221 | } |
1222 | 1222 | if ( |
@@ -1391,7 +1391,7 @@ discard block |
||
1391 | 1391 | */ |
1392 | 1392 | public function switch_payment_method() |
1393 | 1393 | { |
1394 | - if (! $this->_verify_payment_method_is_set()) { |
|
1394 | + if ( ! $this->_verify_payment_method_is_set()) { |
|
1395 | 1395 | return false; |
1396 | 1396 | } |
1397 | 1397 | if ( |
@@ -1527,7 +1527,7 @@ discard block |
||
1527 | 1527 | } |
1528 | 1528 | } |
1529 | 1529 | // verify payment method |
1530 | - if (! $this->checkout->payment_method instanceof EE_Payment_Method) { |
|
1530 | + if ( ! $this->checkout->payment_method instanceof EE_Payment_Method) { |
|
1531 | 1531 | // get payment method for selected method of payment |
1532 | 1532 | $this->checkout->payment_method = $this->_get_payment_method_for_selected_method_of_payment(); |
1533 | 1533 | } |
@@ -1552,7 +1552,7 @@ discard block |
||
1552 | 1552 | */ |
1553 | 1553 | public function save_payer_details_via_ajax() |
1554 | 1554 | { |
1555 | - if (! $this->_verify_payment_method_is_set()) { |
|
1555 | + if ( ! $this->_verify_payment_method_is_set()) { |
|
1556 | 1556 | return; |
1557 | 1557 | } |
1558 | 1558 | // generate billing form for selected method of payment if it hasn't been done already |
@@ -1562,7 +1562,7 @@ discard block |
||
1562 | 1562 | ); |
1563 | 1563 | } |
1564 | 1564 | // generate primary attendee from payer info if applicable |
1565 | - if (! $this->checkout->transaction_has_primary_registrant()) { |
|
1565 | + if ( ! $this->checkout->transaction_has_primary_registrant()) { |
|
1566 | 1566 | $attendee = $this->_create_attendee_from_request_data(); |
1567 | 1567 | if ($attendee instanceof EE_Attendee) { |
1568 | 1568 | foreach ($this->checkout->transaction->registrations() as $registration) { |
@@ -1593,7 +1593,7 @@ discard block |
||
1593 | 1593 | { |
1594 | 1594 | // get State ID |
1595 | 1595 | $STA_ID = $this->request->getRequestParam('state'); |
1596 | - if (! empty($STA_ID)) { |
|
1596 | + if ( ! empty($STA_ID)) { |
|
1597 | 1597 | // can we get state object from name ? |
1598 | 1598 | EE_Registry::instance()->load_model('State'); |
1599 | 1599 | $state = EEM_State::instance()->get_col([['STA_name' => $STA_ID], 'limit' => 1], 'STA_ID'); |
@@ -1601,7 +1601,7 @@ discard block |
||
1601 | 1601 | } |
1602 | 1602 | // get Country ISO |
1603 | 1603 | $CNT_ISO = $this->request->getRequestParam('country'); |
1604 | - if (! empty($CNT_ISO)) { |
|
1604 | + if ( ! empty($CNT_ISO)) { |
|
1605 | 1605 | // can we get country object from name ? |
1606 | 1606 | EE_Registry::instance()->load_model('Country'); |
1607 | 1607 | $country = EEM_Country::instance()->get_col( |
@@ -1782,7 +1782,7 @@ discard block |
||
1782 | 1782 | protected function _maybe_set_completed(EE_Payment $payment) |
1783 | 1783 | { |
1784 | 1784 | // Do we need to redirect them? If so, there's more work to be done. |
1785 | - if (! $payment->redirect_url()) { |
|
1785 | + if ( ! $payment->redirect_url()) { |
|
1786 | 1786 | $this->set_completed(); |
1787 | 1787 | } |
1788 | 1788 | } |
@@ -1839,7 +1839,7 @@ discard block |
||
1839 | 1839 | private function _process_payment() |
1840 | 1840 | { |
1841 | 1841 | // basically confirm that the event hasn't sold out since they hit the page |
1842 | - if (! $this->_last_second_ticket_verifications()) { |
|
1842 | + if ( ! $this->_last_second_ticket_verifications()) { |
|
1843 | 1843 | return null; |
1844 | 1844 | } |
1845 | 1845 | // ya gotta make a choice man |
@@ -1850,7 +1850,7 @@ discard block |
||
1850 | 1850 | return null; |
1851 | 1851 | } |
1852 | 1852 | // get EE_Payment_Method object |
1853 | - if (! $this->checkout->payment_method = $this->_get_payment_method_for_selected_method_of_payment()) { |
|
1853 | + if ( ! $this->checkout->payment_method = $this->_get_payment_method_for_selected_method_of_payment()) { |
|
1854 | 1854 | return null; |
1855 | 1855 | } |
1856 | 1856 | // setup billing form |
@@ -1859,12 +1859,12 @@ discard block |
||
1859 | 1859 | $this->checkout->payment_method |
1860 | 1860 | ); |
1861 | 1861 | // bad billing form ? |
1862 | - if (! $this->_billing_form_is_valid()) { |
|
1862 | + if ( ! $this->_billing_form_is_valid()) { |
|
1863 | 1863 | return null; |
1864 | 1864 | } |
1865 | 1865 | } |
1866 | 1866 | // ensure primary registrant has been fully processed |
1867 | - if (! $this->_setup_primary_registrant_prior_to_payment()) { |
|
1867 | + if ( ! $this->_setup_primary_registrant_prior_to_payment()) { |
|
1868 | 1868 | return null; |
1869 | 1869 | } |
1870 | 1870 | // if session is close to expiring (under 10 minutes by default) |
@@ -1920,7 +1920,7 @@ discard block |
||
1920 | 1920 | protected function _last_second_ticket_verifications() |
1921 | 1921 | { |
1922 | 1922 | // don't bother re-validating if not a return visit |
1923 | - if (! $this->checkout->revisit) { |
|
1923 | + if ( ! $this->checkout->revisit) { |
|
1924 | 1924 | return true; |
1925 | 1925 | } |
1926 | 1926 | $registrations = $this->checkout->transaction->registrations(); |
@@ -1970,7 +1970,7 @@ discard block |
||
1970 | 1970 | $this->_get_payment_method_for_selected_method_of_payment() |
1971 | 1971 | ); |
1972 | 1972 | $html = $payment_method_billing_info->get_html(); |
1973 | - $html .= $this->checkout->redirect_form; |
|
1973 | + $html .= $this->checkout->redirect_form; |
|
1974 | 1974 | /** @var ResponseInterface $response */ |
1975 | 1975 | $response = LoaderFactory::getLoader()->getShared(ResponseInterface::class); |
1976 | 1976 | $response->addOutput($html); |
@@ -1986,7 +1986,7 @@ discard block |
||
1986 | 1986 | */ |
1987 | 1987 | private function _billing_form_is_valid() |
1988 | 1988 | { |
1989 | - if (! $this->checkout->payment_method->type_obj()->has_billing_form()) { |
|
1989 | + if ( ! $this->checkout->payment_method->type_obj()->has_billing_form()) { |
|
1990 | 1990 | return true; |
1991 | 1991 | } |
1992 | 1992 | if ($this->checkout->billing_form instanceof EE_Billing_Info_Form) { |
@@ -2104,7 +2104,7 @@ discard block |
||
2104 | 2104 | { |
2105 | 2105 | // convert billing form data into an attendee |
2106 | 2106 | $this->checkout->primary_attendee_obj = $this->checkout->billing_form->create_attendee_from_billing_form_data(); |
2107 | - if (! $this->checkout->primary_attendee_obj instanceof EE_Attendee) { |
|
2107 | + if ( ! $this->checkout->primary_attendee_obj instanceof EE_Attendee) { |
|
2108 | 2108 | EE_Error::add_error( |
2109 | 2109 | sprintf( |
2110 | 2110 | esc_html__( |
@@ -2121,7 +2121,7 @@ discard block |
||
2121 | 2121 | return false; |
2122 | 2122 | } |
2123 | 2123 | $primary_registration = $this->checkout->transaction->primary_registration(); |
2124 | - if (! $primary_registration instanceof EE_Registration) { |
|
2124 | + if ( ! $primary_registration instanceof EE_Registration) { |
|
2125 | 2125 | EE_Error::add_error( |
2126 | 2126 | sprintf( |
2127 | 2127 | esc_html__( |
@@ -2183,8 +2183,8 @@ discard block |
||
2183 | 2183 | return null; |
2184 | 2184 | } |
2185 | 2185 | // get EE_Payment_Method object |
2186 | - if (isset($this->checkout->available_payment_methods[ $this->checkout->selected_method_of_payment ])) { |
|
2187 | - $payment_method = $this->checkout->available_payment_methods[ $this->checkout->selected_method_of_payment ]; |
|
2186 | + if (isset($this->checkout->available_payment_methods[$this->checkout->selected_method_of_payment])) { |
|
2187 | + $payment_method = $this->checkout->available_payment_methods[$this->checkout->selected_method_of_payment]; |
|
2188 | 2188 | } else { |
2189 | 2189 | // load EEM_Payment_Method |
2190 | 2190 | EE_Registry::instance()->load_model('Payment_Method'); |
@@ -2192,7 +2192,7 @@ discard block |
||
2192 | 2192 | $payment_method = $EEM_Payment_Method->get_one_by_slug($this->checkout->selected_method_of_payment); |
2193 | 2193 | } |
2194 | 2194 | // verify $payment_method |
2195 | - if (! $payment_method instanceof EE_Payment_Method) { |
|
2195 | + if ( ! $payment_method instanceof EE_Payment_Method) { |
|
2196 | 2196 | // not a payment |
2197 | 2197 | EE_Error::add_error( |
2198 | 2198 | sprintf( |
@@ -2210,7 +2210,7 @@ discard block |
||
2210 | 2210 | return null; |
2211 | 2211 | } |
2212 | 2212 | // and verify it has a valid Payment_Method Type object |
2213 | - if (! $payment_method->type_obj() instanceof EE_PMT_Base) { |
|
2213 | + if ( ! $payment_method->type_obj() instanceof EE_PMT_Base) { |
|
2214 | 2214 | // not a payment |
2215 | 2215 | EE_Error::add_error( |
2216 | 2216 | sprintf( |
@@ -2248,7 +2248,7 @@ discard block |
||
2248 | 2248 | $payment = null; |
2249 | 2249 | $this->checkout->transaction->save(); |
2250 | 2250 | $payment_processor = EE_Registry::instance()->load_core('Payment_Processor'); |
2251 | - if (! $payment_processor instanceof EE_Payment_Processor) { |
|
2251 | + if ( ! $payment_processor instanceof EE_Payment_Processor) { |
|
2252 | 2252 | return false; |
2253 | 2253 | } |
2254 | 2254 | try { |
@@ -2350,7 +2350,7 @@ discard block |
||
2350 | 2350 | return true; |
2351 | 2351 | } |
2352 | 2352 | // verify payment object |
2353 | - if (! $payment instanceof EE_Payment) { |
|
2353 | + if ( ! $payment instanceof EE_Payment) { |
|
2354 | 2354 | // not a payment |
2355 | 2355 | EE_Error::add_error( |
2356 | 2356 | sprintf( |
@@ -2400,7 +2400,7 @@ discard block |
||
2400 | 2400 | // and lastly, let's bump the payment status to pending |
2401 | 2401 | $payment->set_status(EEM_Payment::status_id_pending); |
2402 | 2402 | $payment->save(); |
2403 | - } elseif (! $this->_process_payment_status($payment, EE_PMT_Base::onsite)) { |
|
2403 | + } elseif ( ! $this->_process_payment_status($payment, EE_PMT_Base::onsite)) { |
|
2404 | 2404 | // User shouldn't be redirected. So let's process it here. |
2405 | 2405 | // $this->_setup_redirect_for_next_step(); |
2406 | 2406 | $this->checkout->continue_reg = false; |
@@ -2481,7 +2481,7 @@ discard block |
||
2481 | 2481 | return false; |
2482 | 2482 | // bad payment |
2483 | 2483 | case EEM_Payment::status_id_failed: |
2484 | - if (! empty($msg)) { |
|
2484 | + if ( ! empty($msg)) { |
|
2485 | 2485 | EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
2486 | 2486 | return false; |
2487 | 2487 | } |
@@ -2539,18 +2539,18 @@ discard block |
||
2539 | 2539 | // how have they chosen to pay? |
2540 | 2540 | $this->checkout->selected_method_of_payment = $this->_get_selected_method_of_payment(true); |
2541 | 2541 | // get EE_Payment_Method object |
2542 | - if (! $this->checkout->payment_method = $this->_get_payment_method_for_selected_method_of_payment()) { |
|
2542 | + if ( ! $this->checkout->payment_method = $this->_get_payment_method_for_selected_method_of_payment()) { |
|
2543 | 2543 | $this->checkout->continue_reg = false; |
2544 | 2544 | return false; |
2545 | 2545 | } |
2546 | - if (! $this->checkout->payment_method->is_off_site()) { |
|
2546 | + if ( ! $this->checkout->payment_method->is_off_site()) { |
|
2547 | 2547 | return false; |
2548 | 2548 | } |
2549 | 2549 | $this->_validate_offsite_return(); |
2550 | 2550 | // verify TXN |
2551 | 2551 | if ($this->checkout->transaction instanceof EE_Transaction) { |
2552 | 2552 | $gateway = $this->checkout->payment_method->type_obj()->get_gateway(); |
2553 | - if (! $gateway instanceof EE_Offsite_Gateway) { |
|
2553 | + if ( ! $gateway instanceof EE_Offsite_Gateway) { |
|
2554 | 2554 | $this->checkout->continue_reg = false; |
2555 | 2555 | return false; |
2556 | 2556 | } |
@@ -2564,7 +2564,7 @@ discard block |
||
2564 | 2564 | $this->checkout->payment = $payment; |
2565 | 2565 | // mark this reg step as completed, as long as gateway doesn't use a separate IPN request, |
2566 | 2566 | // because we will complete this step during the IPN processing then |
2567 | - if (! $this->handle_IPN_in_this_request()) { |
|
2567 | + if ( ! $this->handle_IPN_in_this_request()) { |
|
2568 | 2568 | $this->set_completed(); |
2569 | 2569 | } |
2570 | 2570 | return true; |
@@ -2667,13 +2667,13 @@ discard block |
||
2667 | 2667 | */ |
2668 | 2668 | private function _redirect_wayward_request(EE_Registration $primary_registrant) |
2669 | 2669 | { |
2670 | - if (! $primary_registrant instanceof EE_Registration) { |
|
2670 | + if ( ! $primary_registrant instanceof EE_Registration) { |
|
2671 | 2671 | // try redirecting based on the current TXN |
2672 | 2672 | $primary_registrant = $this->checkout->transaction instanceof EE_Transaction |
2673 | 2673 | ? $this->checkout->transaction->primary_registration() |
2674 | 2674 | : null; |
2675 | 2675 | } |
2676 | - if (! $primary_registrant instanceof EE_Registration) { |
|
2676 | + if ( ! $primary_registrant instanceof EE_Registration) { |
|
2677 | 2677 | EE_Error::add_error( |
2678 | 2678 | sprintf( |
2679 | 2679 | esc_html__( |
@@ -2744,7 +2744,7 @@ discard block |
||
2744 | 2744 | $payment = $this->checkout->transaction->last_payment(); |
2745 | 2745 | // $payment_source = 'last_payment after Exception'; |
2746 | 2746 | // but if we STILL don't have a payment object |
2747 | - if (! $payment instanceof EE_Payment) { |
|
2747 | + if ( ! $payment instanceof EE_Payment) { |
|
2748 | 2748 | // then we'll object ! ( not object like a thing... but object like what a lawyer says ! ) |
2749 | 2749 | $this->_handle_payment_processor_exception($e); |
2750 | 2750 | } |
@@ -15,2806 +15,2806 @@ |
||
15 | 15 | */ |
16 | 16 | class Events_Admin_Page extends EE_Admin_Page_CPT |
17 | 17 | { |
18 | - /** |
|
19 | - * This will hold the event object for event_details screen. |
|
18 | + /** |
|
19 | + * This will hold the event object for event_details screen. |
|
20 | + * |
|
21 | + * @var EE_Event $_event |
|
22 | + */ |
|
23 | + protected $_event; |
|
24 | + |
|
25 | + |
|
26 | + /** |
|
27 | + * This will hold the category object for category_details screen. |
|
28 | + * |
|
29 | + * @var stdClass $_category |
|
30 | + */ |
|
31 | + protected $_category; |
|
32 | + |
|
33 | + |
|
34 | + /** |
|
35 | + * This will hold the event model instance |
|
36 | + * |
|
37 | + * @var EEM_Event $_event_model |
|
38 | + */ |
|
39 | + protected $_event_model; |
|
40 | + |
|
41 | + |
|
42 | + /** |
|
43 | + * @var EE_Event |
|
44 | + */ |
|
45 | + protected $_cpt_model_obj = false; |
|
46 | + |
|
47 | + |
|
48 | + /** |
|
49 | + * @var NodeGroupDao |
|
50 | + */ |
|
51 | + protected $model_obj_node_group_persister; |
|
52 | + |
|
53 | + |
|
54 | + /** |
|
55 | + * Initialize page props for this admin page group. |
|
56 | + */ |
|
57 | + protected function _init_page_props() |
|
58 | + { |
|
59 | + $this->page_slug = EVENTS_PG_SLUG; |
|
60 | + $this->page_label = EVENTS_LABEL; |
|
61 | + $this->_admin_base_url = EVENTS_ADMIN_URL; |
|
62 | + $this->_admin_base_path = EVENTS_ADMIN; |
|
63 | + $this->_cpt_model_names = [ |
|
64 | + 'create_new' => 'EEM_Event', |
|
65 | + 'edit' => 'EEM_Event', |
|
66 | + ]; |
|
67 | + $this->_cpt_edit_routes = [ |
|
68 | + 'espresso_events' => 'edit', |
|
69 | + ]; |
|
70 | + add_action( |
|
71 | + 'AHEE__EE_Admin_Page_CPT__set_model_object__after_set_object', |
|
72 | + [$this, 'verify_event_edit'], |
|
73 | + 10, |
|
74 | + 2 |
|
75 | + ); |
|
76 | + } |
|
77 | + |
|
78 | + |
|
79 | + /** |
|
80 | + * Sets the ajax hooks used for this admin page group. |
|
81 | + */ |
|
82 | + protected function _ajax_hooks() |
|
83 | + { |
|
84 | + add_action('wp_ajax_ee_save_timezone_setting', [$this, 'saveTimezoneString']); |
|
85 | + } |
|
86 | + |
|
87 | + |
|
88 | + /** |
|
89 | + * Sets the page properties for this admin page group. |
|
90 | + */ |
|
91 | + protected function _define_page_props() |
|
92 | + { |
|
93 | + $this->_admin_page_title = EVENTS_LABEL; |
|
94 | + $this->_labels = [ |
|
95 | + 'buttons' => [ |
|
96 | + 'add' => esc_html__('Add New Event', 'event_espresso'), |
|
97 | + 'edit' => esc_html__('Edit Event', 'event_espresso'), |
|
98 | + 'delete' => esc_html__('Delete Event', 'event_espresso'), |
|
99 | + 'add_category' => esc_html__('Add New Category', 'event_espresso'), |
|
100 | + 'edit_category' => esc_html__('Edit Category', 'event_espresso'), |
|
101 | + 'delete_category' => esc_html__('Delete Category', 'event_espresso'), |
|
102 | + ], |
|
103 | + 'editor_title' => [ |
|
104 | + 'espresso_events' => esc_html__('Enter event title here', 'event_espresso'), |
|
105 | + ], |
|
106 | + 'publishbox' => [ |
|
107 | + 'create_new' => esc_html__('Save New Event', 'event_espresso'), |
|
108 | + 'edit' => esc_html__('Update Event', 'event_espresso'), |
|
109 | + 'add_category' => esc_html__('Save New Category', 'event_espresso'), |
|
110 | + 'edit_category' => esc_html__('Update Category', 'event_espresso'), |
|
111 | + 'template_settings' => esc_html__('Update Settings', 'event_espresso'), |
|
112 | + ], |
|
113 | + ]; |
|
114 | + } |
|
115 | + |
|
116 | + |
|
117 | + /** |
|
118 | + * Sets the page routes property for this admin page group. |
|
119 | + */ |
|
120 | + protected function _set_page_routes() |
|
121 | + { |
|
122 | + // load formatter helper |
|
123 | + // load field generator helper |
|
124 | + // is there a evt_id in the request? |
|
125 | + $EVT_ID = $this->request->getRequestParam('EVT_ID', 0, 'int'); |
|
126 | + $EVT_ID = $this->request->getRequestParam('post', $EVT_ID, 'int'); |
|
127 | + |
|
128 | + $this->_page_routes = [ |
|
129 | + 'default' => [ |
|
130 | + 'func' => '_events_overview_list_table', |
|
131 | + 'capability' => 'ee_read_events', |
|
132 | + ], |
|
133 | + 'create_new' => [ |
|
134 | + 'func' => '_create_new_cpt_item', |
|
135 | + 'capability' => 'ee_edit_events', |
|
136 | + ], |
|
137 | + 'edit' => [ |
|
138 | + 'func' => '_edit_cpt_item', |
|
139 | + 'capability' => 'ee_edit_event', |
|
140 | + 'obj_id' => $EVT_ID, |
|
141 | + ], |
|
142 | + 'copy_event' => [ |
|
143 | + 'func' => '_copy_events', |
|
144 | + 'capability' => 'ee_edit_event', |
|
145 | + 'obj_id' => $EVT_ID, |
|
146 | + 'noheader' => true, |
|
147 | + ], |
|
148 | + 'trash_event' => [ |
|
149 | + 'func' => '_trash_or_restore_event', |
|
150 | + 'args' => ['event_status' => 'trash'], |
|
151 | + 'capability' => 'ee_delete_event', |
|
152 | + 'obj_id' => $EVT_ID, |
|
153 | + 'noheader' => true, |
|
154 | + ], |
|
155 | + 'trash_events' => [ |
|
156 | + 'func' => '_trash_or_restore_events', |
|
157 | + 'args' => ['event_status' => 'trash'], |
|
158 | + 'capability' => 'ee_delete_events', |
|
159 | + 'noheader' => true, |
|
160 | + ], |
|
161 | + 'restore_event' => [ |
|
162 | + 'func' => '_trash_or_restore_event', |
|
163 | + 'args' => ['event_status' => 'draft'], |
|
164 | + 'capability' => 'ee_delete_event', |
|
165 | + 'obj_id' => $EVT_ID, |
|
166 | + 'noheader' => true, |
|
167 | + ], |
|
168 | + 'restore_events' => [ |
|
169 | + 'func' => '_trash_or_restore_events', |
|
170 | + 'args' => ['event_status' => 'draft'], |
|
171 | + 'capability' => 'ee_delete_events', |
|
172 | + 'noheader' => true, |
|
173 | + ], |
|
174 | + 'delete_event' => [ |
|
175 | + 'func' => '_delete_event', |
|
176 | + 'capability' => 'ee_delete_event', |
|
177 | + 'obj_id' => $EVT_ID, |
|
178 | + 'noheader' => true, |
|
179 | + ], |
|
180 | + 'delete_events' => [ |
|
181 | + 'func' => '_delete_events', |
|
182 | + 'capability' => 'ee_delete_events', |
|
183 | + 'noheader' => true, |
|
184 | + ], |
|
185 | + 'view_report' => [ |
|
186 | + 'func' => '_view_report', |
|
187 | + 'capability' => 'ee_edit_events', |
|
188 | + ], |
|
189 | + 'default_event_settings' => [ |
|
190 | + 'func' => '_default_event_settings', |
|
191 | + 'capability' => 'manage_options', |
|
192 | + ], |
|
193 | + 'update_default_event_settings' => [ |
|
194 | + 'func' => '_update_default_event_settings', |
|
195 | + 'capability' => 'manage_options', |
|
196 | + 'noheader' => true, |
|
197 | + ], |
|
198 | + 'template_settings' => [ |
|
199 | + 'func' => '_template_settings', |
|
200 | + 'capability' => 'manage_options', |
|
201 | + ], |
|
202 | + // event category tab related |
|
203 | + 'add_category' => [ |
|
204 | + 'func' => '_category_details', |
|
205 | + 'capability' => 'ee_edit_event_category', |
|
206 | + 'args' => ['add'], |
|
207 | + ], |
|
208 | + 'edit_category' => [ |
|
209 | + 'func' => '_category_details', |
|
210 | + 'capability' => 'ee_edit_event_category', |
|
211 | + 'args' => ['edit'], |
|
212 | + ], |
|
213 | + 'delete_categories' => [ |
|
214 | + 'func' => '_delete_categories', |
|
215 | + 'capability' => 'ee_delete_event_category', |
|
216 | + 'noheader' => true, |
|
217 | + ], |
|
218 | + 'delete_category' => [ |
|
219 | + 'func' => '_delete_categories', |
|
220 | + 'capability' => 'ee_delete_event_category', |
|
221 | + 'noheader' => true, |
|
222 | + ], |
|
223 | + 'insert_category' => [ |
|
224 | + 'func' => '_insert_or_update_category', |
|
225 | + 'args' => ['new_category' => true], |
|
226 | + 'capability' => 'ee_edit_event_category', |
|
227 | + 'noheader' => true, |
|
228 | + ], |
|
229 | + 'update_category' => [ |
|
230 | + 'func' => '_insert_or_update_category', |
|
231 | + 'args' => ['new_category' => false], |
|
232 | + 'capability' => 'ee_edit_event_category', |
|
233 | + 'noheader' => true, |
|
234 | + ], |
|
235 | + 'category_list' => [ |
|
236 | + 'func' => '_category_list_table', |
|
237 | + 'capability' => 'ee_manage_event_categories', |
|
238 | + ], |
|
239 | + 'preview_deletion' => [ |
|
240 | + 'func' => 'previewDeletion', |
|
241 | + 'capability' => 'ee_delete_events', |
|
242 | + ], |
|
243 | + 'confirm_deletion' => [ |
|
244 | + 'func' => 'confirmDeletion', |
|
245 | + 'capability' => 'ee_delete_events', |
|
246 | + 'noheader' => true, |
|
247 | + ], |
|
248 | + ]; |
|
249 | + } |
|
250 | + |
|
251 | + |
|
252 | + /** |
|
253 | + * Set the _page_config property for this admin page group. |
|
254 | + */ |
|
255 | + protected function _set_page_config() |
|
256 | + { |
|
257 | + $post_id = $this->request->getRequestParam('post', 0, 'int'); |
|
258 | + $EVT_CAT_ID = $this->request->getRequestParam('EVT_CAT_ID', 0, 'int'); |
|
259 | + $this->_page_config = [ |
|
260 | + 'default' => [ |
|
261 | + 'nav' => [ |
|
262 | + 'label' => esc_html__('Overview', 'event_espresso'), |
|
263 | + 'order' => 10, |
|
264 | + ], |
|
265 | + 'list_table' => 'Events_Admin_List_Table', |
|
266 | + 'help_tabs' => [ |
|
267 | + 'events_overview_help_tab' => [ |
|
268 | + 'title' => esc_html__('Events Overview', 'event_espresso'), |
|
269 | + 'filename' => 'events_overview', |
|
270 | + ], |
|
271 | + 'events_overview_table_column_headings_help_tab' => [ |
|
272 | + 'title' => esc_html__('Events Overview Table Column Headings', 'event_espresso'), |
|
273 | + 'filename' => 'events_overview_table_column_headings', |
|
274 | + ], |
|
275 | + 'events_overview_filters_help_tab' => [ |
|
276 | + 'title' => esc_html__('Events Overview Filters', 'event_espresso'), |
|
277 | + 'filename' => 'events_overview_filters', |
|
278 | + ], |
|
279 | + 'events_overview_view_help_tab' => [ |
|
280 | + 'title' => esc_html__('Events Overview Views', 'event_espresso'), |
|
281 | + 'filename' => 'events_overview_views', |
|
282 | + ], |
|
283 | + 'events_overview_other_help_tab' => [ |
|
284 | + 'title' => esc_html__('Events Overview Other', 'event_espresso'), |
|
285 | + 'filename' => 'events_overview_other', |
|
286 | + ], |
|
287 | + ], |
|
288 | + 'qtips' => [ |
|
289 | + 'EE_Event_List_Table_Tips', |
|
290 | + ], |
|
291 | + 'require_nonce' => false, |
|
292 | + ], |
|
293 | + 'create_new' => [ |
|
294 | + 'nav' => [ |
|
295 | + 'label' => esc_html__('Add Event', 'event_espresso'), |
|
296 | + 'order' => 5, |
|
297 | + 'persistent' => false, |
|
298 | + ], |
|
299 | + 'metaboxes' => ['_register_event_editor_meta_boxes'], |
|
300 | + 'help_tabs' => [ |
|
301 | + 'event_editor_help_tab' => [ |
|
302 | + 'title' => esc_html__('Event Editor', 'event_espresso'), |
|
303 | + 'filename' => 'event_editor', |
|
304 | + ], |
|
305 | + 'event_editor_title_richtexteditor_help_tab' => [ |
|
306 | + 'title' => esc_html__('Event Title & Rich Text Editor', 'event_espresso'), |
|
307 | + 'filename' => 'event_editor_title_richtexteditor', |
|
308 | + ], |
|
309 | + 'event_editor_venue_details_help_tab' => [ |
|
310 | + 'title' => esc_html__('Event Venue Details', 'event_espresso'), |
|
311 | + 'filename' => 'event_editor_venue_details', |
|
312 | + ], |
|
313 | + 'event_editor_event_datetimes_help_tab' => [ |
|
314 | + 'title' => esc_html__('Event Datetimes', 'event_espresso'), |
|
315 | + 'filename' => 'event_editor_event_datetimes', |
|
316 | + ], |
|
317 | + 'event_editor_event_tickets_help_tab' => [ |
|
318 | + 'title' => esc_html__('Event Tickets', 'event_espresso'), |
|
319 | + 'filename' => 'event_editor_event_tickets', |
|
320 | + ], |
|
321 | + 'event_editor_event_registration_options_help_tab' => [ |
|
322 | + 'title' => esc_html__('Event Registration Options', 'event_espresso'), |
|
323 | + 'filename' => 'event_editor_event_registration_options', |
|
324 | + ], |
|
325 | + 'event_editor_tags_categories_help_tab' => [ |
|
326 | + 'title' => esc_html__('Event Tags & Categories', 'event_espresso'), |
|
327 | + 'filename' => 'event_editor_tags_categories', |
|
328 | + ], |
|
329 | + 'event_editor_questions_registrants_help_tab' => [ |
|
330 | + 'title' => esc_html__('Questions for Registrants', 'event_espresso'), |
|
331 | + 'filename' => 'event_editor_questions_registrants', |
|
332 | + ], |
|
333 | + 'event_editor_save_new_event_help_tab' => [ |
|
334 | + 'title' => esc_html__('Save New Event', 'event_espresso'), |
|
335 | + 'filename' => 'event_editor_save_new_event', |
|
336 | + ], |
|
337 | + 'event_editor_other_help_tab' => [ |
|
338 | + 'title' => esc_html__('Event Other', 'event_espresso'), |
|
339 | + 'filename' => 'event_editor_other', |
|
340 | + ], |
|
341 | + ], |
|
342 | + 'qtips' => ['EE_Event_Editor_Decaf_Tips'], |
|
343 | + 'require_nonce' => false, |
|
344 | + ], |
|
345 | + 'edit' => [ |
|
346 | + 'nav' => [ |
|
347 | + 'label' => esc_html__('Edit Event', 'event_espresso'), |
|
348 | + 'order' => 5, |
|
349 | + 'persistent' => false, |
|
350 | + 'url' => $post_id |
|
351 | + ? EE_Admin_Page::add_query_args_and_nonce( |
|
352 | + ['post' => $post_id, 'action' => 'edit'], |
|
353 | + $this->_current_page_view_url |
|
354 | + ) |
|
355 | + : $this->_admin_base_url, |
|
356 | + ], |
|
357 | + 'metaboxes' => ['_register_event_editor_meta_boxes'], |
|
358 | + 'help_tabs' => [ |
|
359 | + 'event_editor_help_tab' => [ |
|
360 | + 'title' => esc_html__('Event Editor', 'event_espresso'), |
|
361 | + 'filename' => 'event_editor', |
|
362 | + ], |
|
363 | + 'event_editor_title_richtexteditor_help_tab' => [ |
|
364 | + 'title' => esc_html__('Event Title & Rich Text Editor', 'event_espresso'), |
|
365 | + 'filename' => 'event_editor_title_richtexteditor', |
|
366 | + ], |
|
367 | + 'event_editor_venue_details_help_tab' => [ |
|
368 | + 'title' => esc_html__('Event Venue Details', 'event_espresso'), |
|
369 | + 'filename' => 'event_editor_venue_details', |
|
370 | + ], |
|
371 | + 'event_editor_event_datetimes_help_tab' => [ |
|
372 | + 'title' => esc_html__('Event Datetimes', 'event_espresso'), |
|
373 | + 'filename' => 'event_editor_event_datetimes', |
|
374 | + ], |
|
375 | + 'event_editor_event_tickets_help_tab' => [ |
|
376 | + 'title' => esc_html__('Event Tickets', 'event_espresso'), |
|
377 | + 'filename' => 'event_editor_event_tickets', |
|
378 | + ], |
|
379 | + 'event_editor_event_registration_options_help_tab' => [ |
|
380 | + 'title' => esc_html__('Event Registration Options', 'event_espresso'), |
|
381 | + 'filename' => 'event_editor_event_registration_options', |
|
382 | + ], |
|
383 | + 'event_editor_tags_categories_help_tab' => [ |
|
384 | + 'title' => esc_html__('Event Tags & Categories', 'event_espresso'), |
|
385 | + 'filename' => 'event_editor_tags_categories', |
|
386 | + ], |
|
387 | + 'event_editor_questions_registrants_help_tab' => [ |
|
388 | + 'title' => esc_html__('Questions for Registrants', 'event_espresso'), |
|
389 | + 'filename' => 'event_editor_questions_registrants', |
|
390 | + ], |
|
391 | + 'event_editor_save_new_event_help_tab' => [ |
|
392 | + 'title' => esc_html__('Save New Event', 'event_espresso'), |
|
393 | + 'filename' => 'event_editor_save_new_event', |
|
394 | + ], |
|
395 | + 'event_editor_other_help_tab' => [ |
|
396 | + 'title' => esc_html__('Event Other', 'event_espresso'), |
|
397 | + 'filename' => 'event_editor_other', |
|
398 | + ], |
|
399 | + ], |
|
400 | + 'qtips' => ['EE_Event_Editor_Decaf_Tips'], |
|
401 | + 'require_nonce' => false, |
|
402 | + ], |
|
403 | + 'default_event_settings' => [ |
|
404 | + 'nav' => [ |
|
405 | + 'label' => esc_html__('Default Settings', 'event_espresso'), |
|
406 | + 'order' => 40, |
|
407 | + ], |
|
408 | + 'metaboxes' => array_merge($this->_default_espresso_metaboxes, ['_publish_post_box']), |
|
409 | + 'labels' => [ |
|
410 | + 'publishbox' => esc_html__('Update Settings', 'event_espresso'), |
|
411 | + ], |
|
412 | + 'help_tabs' => [ |
|
413 | + 'default_settings_help_tab' => [ |
|
414 | + 'title' => esc_html__('Default Event Settings', 'event_espresso'), |
|
415 | + 'filename' => 'events_default_settings', |
|
416 | + ], |
|
417 | + 'default_settings_status_help_tab' => [ |
|
418 | + 'title' => esc_html__('Default Registration Status', 'event_espresso'), |
|
419 | + 'filename' => 'events_default_settings_status', |
|
420 | + ], |
|
421 | + 'default_maximum_tickets_help_tab' => [ |
|
422 | + 'title' => esc_html__('Default Maximum Tickets Per Order', 'event_espresso'), |
|
423 | + 'filename' => 'events_default_settings_max_tickets', |
|
424 | + ], |
|
425 | + ], |
|
426 | + 'require_nonce' => false, |
|
427 | + ], |
|
428 | + // template settings |
|
429 | + 'template_settings' => [ |
|
430 | + 'nav' => [ |
|
431 | + 'label' => esc_html__('Templates', 'event_espresso'), |
|
432 | + 'order' => 30, |
|
433 | + ], |
|
434 | + 'metaboxes' => $this->_default_espresso_metaboxes, |
|
435 | + 'help_tabs' => [ |
|
436 | + 'general_settings_templates_help_tab' => [ |
|
437 | + 'title' => esc_html__('Templates', 'event_espresso'), |
|
438 | + 'filename' => 'general_settings_templates', |
|
439 | + ], |
|
440 | + ], |
|
441 | + 'require_nonce' => false, |
|
442 | + ], |
|
443 | + // event category stuff |
|
444 | + 'add_category' => [ |
|
445 | + 'nav' => [ |
|
446 | + 'label' => esc_html__('Add Category', 'event_espresso'), |
|
447 | + 'order' => 15, |
|
448 | + 'persistent' => false, |
|
449 | + ], |
|
450 | + 'help_tabs' => [ |
|
451 | + 'add_category_help_tab' => [ |
|
452 | + 'title' => esc_html__('Add New Event Category', 'event_espresso'), |
|
453 | + 'filename' => 'events_add_category', |
|
454 | + ], |
|
455 | + ], |
|
456 | + 'metaboxes' => ['_publish_post_box'], |
|
457 | + 'require_nonce' => false, |
|
458 | + ], |
|
459 | + 'edit_category' => [ |
|
460 | + 'nav' => [ |
|
461 | + 'label' => esc_html__('Edit Category', 'event_espresso'), |
|
462 | + 'order' => 15, |
|
463 | + 'persistent' => false, |
|
464 | + 'url' => $EVT_CAT_ID |
|
465 | + ? add_query_arg( |
|
466 | + ['EVT_CAT_ID' => $EVT_CAT_ID], |
|
467 | + $this->_current_page_view_url |
|
468 | + ) |
|
469 | + : $this->_admin_base_url, |
|
470 | + ], |
|
471 | + 'help_tabs' => [ |
|
472 | + 'edit_category_help_tab' => [ |
|
473 | + 'title' => esc_html__('Edit Event Category', 'event_espresso'), |
|
474 | + 'filename' => 'events_edit_category', |
|
475 | + ], |
|
476 | + ], |
|
477 | + 'metaboxes' => ['_publish_post_box'], |
|
478 | + 'require_nonce' => false, |
|
479 | + ], |
|
480 | + 'category_list' => [ |
|
481 | + 'nav' => [ |
|
482 | + 'label' => esc_html__('Categories', 'event_espresso'), |
|
483 | + 'order' => 20, |
|
484 | + ], |
|
485 | + 'list_table' => 'Event_Categories_Admin_List_Table', |
|
486 | + 'help_tabs' => [ |
|
487 | + 'events_categories_help_tab' => [ |
|
488 | + 'title' => esc_html__('Event Categories', 'event_espresso'), |
|
489 | + 'filename' => 'events_categories', |
|
490 | + ], |
|
491 | + 'events_categories_table_column_headings_help_tab' => [ |
|
492 | + 'title' => esc_html__('Event Categories Table Column Headings', 'event_espresso'), |
|
493 | + 'filename' => 'events_categories_table_column_headings', |
|
494 | + ], |
|
495 | + 'events_categories_view_help_tab' => [ |
|
496 | + 'title' => esc_html__('Event Categories Views', 'event_espresso'), |
|
497 | + 'filename' => 'events_categories_views', |
|
498 | + ], |
|
499 | + 'events_categories_other_help_tab' => [ |
|
500 | + 'title' => esc_html__('Event Categories Other', 'event_espresso'), |
|
501 | + 'filename' => 'events_categories_other', |
|
502 | + ], |
|
503 | + ], |
|
504 | + 'metaboxes' => $this->_default_espresso_metaboxes, |
|
505 | + 'require_nonce' => false, |
|
506 | + ], |
|
507 | + 'preview_deletion' => [ |
|
508 | + 'nav' => [ |
|
509 | + 'label' => esc_html__('Preview Deletion', 'event_espresso'), |
|
510 | + 'order' => 15, |
|
511 | + 'persistent' => false, |
|
512 | + 'url' => '', |
|
513 | + ], |
|
514 | + 'require_nonce' => false, |
|
515 | + ], |
|
516 | + ]; |
|
517 | + } |
|
518 | + |
|
519 | + |
|
520 | + /** |
|
521 | + * Used to register any global screen options if necessary for every route in this admin page group. |
|
522 | + */ |
|
523 | + protected function _add_screen_options() |
|
524 | + { |
|
525 | + } |
|
526 | + |
|
527 | + |
|
528 | + /** |
|
529 | + * Implementing the screen options for the 'default' route. |
|
530 | + */ |
|
531 | + protected function _add_screen_options_default() |
|
532 | + { |
|
533 | + $this->_per_page_screen_option(); |
|
534 | + } |
|
535 | + |
|
536 | + |
|
537 | + /** |
|
538 | + * Implementing screen options for the category list route. |
|
539 | + */ |
|
540 | + protected function _add_screen_options_category_list() |
|
541 | + { |
|
542 | + $page_title = $this->_admin_page_title; |
|
543 | + $this->_admin_page_title = esc_html__('Categories', 'event_espresso'); |
|
544 | + $this->_per_page_screen_option(); |
|
545 | + $this->_admin_page_title = $page_title; |
|
546 | + } |
|
547 | + |
|
548 | + |
|
549 | + /** |
|
550 | + * Used to register any global feature pointers for the admin page group. |
|
551 | + */ |
|
552 | + protected function _add_feature_pointers() |
|
553 | + { |
|
554 | + } |
|
555 | + |
|
556 | + |
|
557 | + /** |
|
558 | + * Registers and enqueues any global scripts and styles for the entire admin page group. |
|
559 | + */ |
|
560 | + public function load_scripts_styles() |
|
561 | + { |
|
562 | + wp_register_style( |
|
563 | + 'events-admin-css', |
|
564 | + EVENTS_ASSETS_URL . 'events-admin-page.css', |
|
565 | + [], |
|
566 | + EVENT_ESPRESSO_VERSION |
|
567 | + ); |
|
568 | + wp_register_style('ee-cat-admin', EVENTS_ASSETS_URL . 'ee-cat-admin.css', [], EVENT_ESPRESSO_VERSION); |
|
569 | + wp_enqueue_style('events-admin-css'); |
|
570 | + wp_enqueue_style('ee-cat-admin'); |
|
571 | + // todo note: we also need to load_scripts_styles per view (i.e. default/view_report/event_details |
|
572 | + // registers for all views |
|
573 | + // scripts |
|
574 | + wp_register_script( |
|
575 | + 'event_editor_js', |
|
576 | + EVENTS_ASSETS_URL . 'event_editor.js', |
|
577 | + ['ee_admin_js', 'jquery-ui-slider', 'jquery-ui-timepicker-addon'], |
|
578 | + EVENT_ESPRESSO_VERSION, |
|
579 | + true |
|
580 | + ); |
|
581 | + } |
|
582 | + |
|
583 | + |
|
584 | + /** |
|
585 | + * Enqueuing scripts and styles specific to this view |
|
586 | + */ |
|
587 | + public function load_scripts_styles_create_new() |
|
588 | + { |
|
589 | + $this->load_scripts_styles_edit(); |
|
590 | + } |
|
591 | + |
|
592 | + |
|
593 | + /** |
|
594 | + * Enqueuing scripts and styles specific to this view |
|
595 | + */ |
|
596 | + public function load_scripts_styles_edit() |
|
597 | + { |
|
598 | + // styles |
|
599 | + wp_enqueue_style('espresso-ui-theme'); |
|
600 | + wp_register_style( |
|
601 | + 'event-editor-css', |
|
602 | + EVENTS_ASSETS_URL . 'event-editor.css', |
|
603 | + ['ee-admin-css'], |
|
604 | + EVENT_ESPRESSO_VERSION |
|
605 | + ); |
|
606 | + wp_enqueue_style('event-editor-css'); |
|
607 | + // scripts |
|
608 | + wp_register_script( |
|
609 | + 'event-datetime-metabox', |
|
610 | + EVENTS_ASSETS_URL . 'event-datetime-metabox.js', |
|
611 | + ['event_editor_js', 'ee-datepicker'], |
|
612 | + EVENT_ESPRESSO_VERSION |
|
613 | + ); |
|
614 | + wp_enqueue_script('event-datetime-metabox'); |
|
615 | + } |
|
616 | + |
|
617 | + |
|
618 | + /** |
|
619 | + * Populating the _views property for the category list table view. |
|
620 | + */ |
|
621 | + protected function _set_list_table_views_category_list() |
|
622 | + { |
|
623 | + $this->_views = [ |
|
624 | + 'all' => [ |
|
625 | + 'slug' => 'all', |
|
626 | + 'label' => esc_html__('All', 'event_espresso'), |
|
627 | + 'count' => 0, |
|
628 | + 'bulk_action' => [ |
|
629 | + 'delete_categories' => esc_html__('Delete Permanently', 'event_espresso'), |
|
630 | + ], |
|
631 | + ], |
|
632 | + ]; |
|
633 | + } |
|
634 | + |
|
635 | + |
|
636 | + /** |
|
637 | + * For adding anything that fires on the admin_init hook for any route within this admin page group. |
|
638 | + */ |
|
639 | + public function admin_init() |
|
640 | + { |
|
641 | + EE_Registry::$i18n_js_strings['image_confirm'] = esc_html__( |
|
642 | + 'Do you really want to delete this image? Please remember to update your event to complete the removal.', |
|
643 | + 'event_espresso' |
|
644 | + ); |
|
645 | + } |
|
646 | + |
|
647 | + |
|
648 | + /** |
|
649 | + * For adding anything that should be triggered on the admin_notices hook for any route within this admin page |
|
650 | + * group. |
|
651 | + */ |
|
652 | + public function admin_notices() |
|
653 | + { |
|
654 | + } |
|
655 | + |
|
656 | + |
|
657 | + /** |
|
658 | + * For adding anything that should be triggered on the `admin_print_footer_scripts` hook for any route within |
|
659 | + * this admin page group. |
|
660 | + */ |
|
661 | + public function admin_footer_scripts() |
|
662 | + { |
|
663 | + } |
|
664 | + |
|
665 | + |
|
666 | + /** |
|
667 | + * Call this function to verify if an event is public and has tickets for sale. If it does, then we need to show a |
|
668 | + * warning (via EE_Error::add_error()); |
|
669 | + * |
|
670 | + * @param EE_Event $event Event object |
|
671 | + * @param string $req_type |
|
672 | + * @return void |
|
673 | + * @throws EE_Error |
|
674 | + * @throws ReflectionException |
|
675 | + */ |
|
676 | + public function verify_event_edit($event = null, $req_type = '') |
|
677 | + { |
|
678 | + // don't need to do this when processing |
|
679 | + if (! empty($req_type)) { |
|
680 | + return; |
|
681 | + } |
|
682 | + // no event? |
|
683 | + if (empty($event)) { |
|
684 | + // set event |
|
685 | + $event = $this->_cpt_model_obj; |
|
686 | + } |
|
687 | + // STILL no event? |
|
688 | + if (! $event instanceof EE_Event) { |
|
689 | + return; |
|
690 | + } |
|
691 | + $orig_status = $event->status(); |
|
692 | + // first check if event is active. |
|
693 | + if ( |
|
694 | + $orig_status === EEM_Event::cancelled |
|
695 | + || $orig_status === EEM_Event::postponed |
|
696 | + || $event->is_expired() |
|
697 | + || $event->is_inactive() |
|
698 | + ) { |
|
699 | + return; |
|
700 | + } |
|
701 | + // made it here so it IS active... next check that any of the tickets are sold. |
|
702 | + if ($event->is_sold_out(true)) { |
|
703 | + if ($orig_status !== EEM_Event::sold_out && $event->status() !== $orig_status) { |
|
704 | + EE_Error::add_attention( |
|
705 | + sprintf( |
|
706 | + esc_html__( |
|
707 | + 'Please note that the Event Status has automatically been changed to %s because there are no more spaces available for this event. However, this change is not permanent until you update the event. You can change the status back to something else before updating if you wish.', |
|
708 | + 'event_espresso' |
|
709 | + ), |
|
710 | + EEH_Template::pretty_status(EEM_Event::sold_out, false, 'sentence') |
|
711 | + ) |
|
712 | + ); |
|
713 | + } |
|
714 | + return; |
|
715 | + } elseif ($orig_status === EEM_Event::sold_out) { |
|
716 | + EE_Error::add_attention( |
|
717 | + sprintf( |
|
718 | + esc_html__( |
|
719 | + 'Please note that the Event Status has automatically been changed to %s because more spaces have become available for this event, most likely due to abandoned transactions freeing up reserved tickets. However, this change is not permanent until you update the event. If you wish, you can change the status back to something else before updating.', |
|
720 | + 'event_espresso' |
|
721 | + ), |
|
722 | + EEH_Template::pretty_status($event->status(), false, 'sentence') |
|
723 | + ) |
|
724 | + ); |
|
725 | + } |
|
726 | + // now we need to determine if the event has any tickets on sale. If not then we dont' show the error |
|
727 | + if (! $event->tickets_on_sale()) { |
|
728 | + return; |
|
729 | + } |
|
730 | + // made it here so show warning |
|
731 | + $this->_edit_event_warning(); |
|
732 | + } |
|
733 | + |
|
734 | + |
|
735 | + /** |
|
736 | + * This is the text used for when an event is being edited that is public and has tickets for sale. |
|
737 | + * When needed, hook this into a EE_Error::add_error() notice. |
|
738 | + * |
|
739 | + * @access protected |
|
740 | + * @return void |
|
741 | + */ |
|
742 | + protected function _edit_event_warning() |
|
743 | + { |
|
744 | + // we don't want to add warnings during these requests |
|
745 | + if ($this->request->getRequestParam('action') === 'editpost') { |
|
746 | + return; |
|
747 | + } |
|
748 | + EE_Error::add_attention( |
|
749 | + sprintf( |
|
750 | + esc_html__( |
|
751 | + 'Your event is open for registration. Making changes may disrupt any transactions in progress. %sLearn more%s', |
|
752 | + 'event_espresso' |
|
753 | + ), |
|
754 | + '<a class="espresso-help-tab-lnk">', |
|
755 | + '</a>' |
|
756 | + ) |
|
757 | + ); |
|
758 | + } |
|
759 | + |
|
760 | + |
|
761 | + /** |
|
762 | + * When a user is creating a new event, notify them if they haven't set their timezone. |
|
763 | + * Otherwise, do the normal logic |
|
764 | + * |
|
765 | + * @return void |
|
766 | + * @throws EE_Error |
|
767 | + */ |
|
768 | + protected function _create_new_cpt_item() |
|
769 | + { |
|
770 | + $has_timezone_string = get_option('timezone_string'); |
|
771 | + // only nag them about setting their timezone if it's their first event, and they haven't already done it |
|
772 | + if (! $has_timezone_string && ! EEM_Event::instance()->exists([])) { |
|
773 | + EE_Error::add_attention( |
|
774 | + sprintf( |
|
775 | + esc_html__( |
|
776 | + 'Your website\'s timezone is currently set to a UTC offset. We recommend updating your timezone to a city or region near you before you create an event. Change your timezone now:%1$s%2$s%3$sChange Timezone%4$s', |
|
777 | + 'event_espresso' |
|
778 | + ), |
|
779 | + '<br>', |
|
780 | + '<select id="timezone_string" name="timezone_string" aria-describedby="timezone-description">' |
|
781 | + . EEH_DTT_Helper::wp_timezone_choice('', EEH_DTT_Helper::get_user_locale()) |
|
782 | + . '</select>', |
|
783 | + '<button class="button button-secondary timezone-submit">', |
|
784 | + '</button><span class="spinner"></span>' |
|
785 | + ), |
|
786 | + __FILE__, |
|
787 | + __FUNCTION__, |
|
788 | + __LINE__ |
|
789 | + ); |
|
790 | + } |
|
791 | + parent::_create_new_cpt_item(); |
|
792 | + } |
|
793 | + |
|
794 | + |
|
795 | + /** |
|
796 | + * Sets the _views property for the default route in this admin page group. |
|
797 | + */ |
|
798 | + protected function _set_list_table_views_default() |
|
799 | + { |
|
800 | + $this->_views = [ |
|
801 | + 'all' => [ |
|
802 | + 'slug' => 'all', |
|
803 | + 'label' => esc_html__('View All Events', 'event_espresso'), |
|
804 | + 'count' => 0, |
|
805 | + 'bulk_action' => [ |
|
806 | + 'trash_events' => esc_html__('Move to Trash', 'event_espresso'), |
|
807 | + ], |
|
808 | + ], |
|
809 | + 'draft' => [ |
|
810 | + 'slug' => 'draft', |
|
811 | + 'label' => esc_html__('Draft', 'event_espresso'), |
|
812 | + 'count' => 0, |
|
813 | + 'bulk_action' => [ |
|
814 | + 'trash_events' => esc_html__('Move to Trash', 'event_espresso'), |
|
815 | + ], |
|
816 | + ], |
|
817 | + ]; |
|
818 | + if (EE_Registry::instance()->CAP->current_user_can('ee_delete_events', 'espresso_events_trash_events')) { |
|
819 | + $this->_views['trash'] = [ |
|
820 | + 'slug' => 'trash', |
|
821 | + 'label' => esc_html__('Trash', 'event_espresso'), |
|
822 | + 'count' => 0, |
|
823 | + 'bulk_action' => [ |
|
824 | + 'restore_events' => esc_html__('Restore From Trash', 'event_espresso'), |
|
825 | + 'delete_events' => esc_html__('Delete Permanently', 'event_espresso'), |
|
826 | + ], |
|
827 | + ]; |
|
828 | + } |
|
829 | + } |
|
830 | + |
|
831 | + |
|
832 | + /** |
|
833 | + * Provides the legend item array for the default list table view. |
|
834 | + * |
|
835 | + * @return array |
|
836 | + * @throws EE_Error |
|
837 | + * @throws EE_Error |
|
838 | + */ |
|
839 | + protected function _event_legend_items() |
|
840 | + { |
|
841 | + $items = [ |
|
842 | + 'view_details' => [ |
|
843 | + 'class' => 'dashicons dashicons-search', |
|
844 | + 'desc' => esc_html__('View Event', 'event_espresso'), |
|
845 | + ], |
|
846 | + 'edit_event' => [ |
|
847 | + 'class' => 'ee-icon ee-icon-calendar-edit', |
|
848 | + 'desc' => esc_html__('Edit Event Details', 'event_espresso'), |
|
849 | + ], |
|
850 | + 'view_attendees' => [ |
|
851 | + 'class' => 'dashicons dashicons-groups', |
|
852 | + 'desc' => esc_html__('View Registrations for Event', 'event_espresso'), |
|
853 | + ], |
|
854 | + ]; |
|
855 | + $items = apply_filters('FHEE__Events_Admin_Page___event_legend_items__items', $items); |
|
856 | + $statuses = [ |
|
857 | + 'sold_out_status' => [ |
|
858 | + 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::sold_out, |
|
859 | + 'desc' => EEH_Template::pretty_status(EE_Datetime::sold_out, false, 'sentence'), |
|
860 | + ], |
|
861 | + 'active_status' => [ |
|
862 | + 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::active, |
|
863 | + 'desc' => EEH_Template::pretty_status(EE_Datetime::active, false, 'sentence'), |
|
864 | + ], |
|
865 | + 'upcoming_status' => [ |
|
866 | + 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::upcoming, |
|
867 | + 'desc' => EEH_Template::pretty_status(EE_Datetime::upcoming, false, 'sentence'), |
|
868 | + ], |
|
869 | + 'postponed_status' => [ |
|
870 | + 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::postponed, |
|
871 | + 'desc' => EEH_Template::pretty_status(EE_Datetime::postponed, false, 'sentence'), |
|
872 | + ], |
|
873 | + 'cancelled_status' => [ |
|
874 | + 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::cancelled, |
|
875 | + 'desc' => EEH_Template::pretty_status(EE_Datetime::cancelled, false, 'sentence'), |
|
876 | + ], |
|
877 | + 'expired_status' => [ |
|
878 | + 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::expired, |
|
879 | + 'desc' => EEH_Template::pretty_status(EE_Datetime::expired, false, 'sentence'), |
|
880 | + ], |
|
881 | + 'inactive_status' => [ |
|
882 | + 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::inactive, |
|
883 | + 'desc' => EEH_Template::pretty_status(EE_Datetime::inactive, false, 'sentence'), |
|
884 | + ], |
|
885 | + ]; |
|
886 | + $statuses = apply_filters('FHEE__Events_Admin_Page__event_legend_items__statuses', $statuses); |
|
887 | + return array_merge($items, $statuses); |
|
888 | + } |
|
889 | + |
|
890 | + |
|
891 | + /** |
|
892 | + * @return EEM_Event |
|
893 | + * @throws EE_Error |
|
894 | + * @throws ReflectionException |
|
895 | + */ |
|
896 | + private function _event_model() |
|
897 | + { |
|
898 | + if (! $this->_event_model instanceof EEM_Event) { |
|
899 | + $this->_event_model = EE_Registry::instance()->load_model('Event'); |
|
900 | + } |
|
901 | + return $this->_event_model; |
|
902 | + } |
|
903 | + |
|
904 | + |
|
905 | + /** |
|
906 | + * Adds extra buttons to the WP CPT permalink field row. |
|
907 | + * Method is called from parent and is hooked into the wp 'get_sample_permalink_html' filter. |
|
908 | + * |
|
909 | + * @param string $return the current html |
|
910 | + * @param int $id the post id for the page |
|
911 | + * @param string $new_title What the title is |
|
912 | + * @param string $new_slug what the slug is |
|
913 | + * @return string The new html string for the permalink area |
|
914 | + */ |
|
915 | + public function extra_permalink_field_buttons($return, $id, $new_title, $new_slug) |
|
916 | + { |
|
917 | + // make sure this is only when editing |
|
918 | + if (! empty($id)) { |
|
919 | + $post = get_post($id); |
|
920 | + $return .= '<a class="button button-small" onclick="prompt(\'Shortcode:\', jQuery(\'#shortcode\').val()); return false;" href="#" tabindex="-1">' |
|
921 | + . esc_html__('Shortcode', 'event_espresso') |
|
922 | + . '</a> '; |
|
923 | + $return .= '<input id="shortcode" type="hidden" value="[ESPRESSO_TICKET_SELECTOR event_id=' |
|
924 | + . $post->ID |
|
925 | + . ']">'; |
|
926 | + } |
|
927 | + return $return; |
|
928 | + } |
|
929 | + |
|
930 | + |
|
931 | + /** |
|
932 | + * _events_overview_list_table |
|
933 | + * This contains the logic for showing the events_overview list |
|
934 | + * |
|
935 | + * @access protected |
|
936 | + * @return void |
|
937 | + * @throws EE_Error |
|
938 | + */ |
|
939 | + protected function _events_overview_list_table() |
|
940 | + { |
|
941 | + do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
942 | + $this->_template_args['after_list_table'] = |
|
943 | + ! empty($this->_template_args['after_list_table']) |
|
944 | + ? (array) $this->_template_args['after_list_table'] |
|
945 | + : []; |
|
946 | + $this->_template_args['after_list_table']['view_event_list_button'] = EEH_HTML::br() |
|
947 | + . EEH_Template::get_button_or_link( |
|
948 | + get_post_type_archive_link('espresso_events'), |
|
949 | + esc_html__("View Event Archive Page", "event_espresso"), |
|
950 | + 'button' |
|
951 | + ); |
|
952 | + $this->_template_args['after_list_table']['legend'] = $this->_display_legend( |
|
953 | + $this->_event_legend_items() |
|
954 | + ); |
|
955 | + $this->_admin_page_title .= ' ' . $this->get_action_link_or_button( |
|
956 | + 'create_new', |
|
957 | + 'add', |
|
958 | + [], |
|
959 | + 'add-new-h2' |
|
960 | + ); |
|
961 | + $this->display_admin_list_table_page_with_no_sidebar(); |
|
962 | + } |
|
963 | + |
|
964 | + |
|
965 | + /** |
|
966 | + * this allows for extra misc actions in the default WP publish box |
|
967 | + * |
|
968 | + * @return void |
|
969 | + * @throws EE_Error |
|
970 | + * @throws ReflectionException |
|
971 | + */ |
|
972 | + public function extra_misc_actions_publish_box() |
|
973 | + { |
|
974 | + $this->_generate_publish_box_extra_content(); |
|
975 | + } |
|
976 | + |
|
977 | + |
|
978 | + /** |
|
979 | + * This is hooked into the WordPress do_action('save_post') hook and runs after the custom post type has been |
|
980 | + * saved. |
|
981 | + * Typically you would use this to save any additional data. |
|
982 | + * Keep in mind also that "save_post" runs on EVERY post update to the database. |
|
983 | + * ALSO very important. When a post transitions from scheduled to published, |
|
984 | + * the save_post action is fired but you will NOT have any _POST data containing any extra info you may have from |
|
985 | + * other meta saves. So MAKE sure that you handle this accordingly. |
|
986 | + * |
|
987 | + * @access protected |
|
988 | + * @abstract |
|
989 | + * @param string $post_id The ID of the cpt that was saved (so you can link relationally) |
|
990 | + * @param WP_Post $post The post object of the cpt that was saved. |
|
991 | + * @return void |
|
992 | + * @throws EE_Error |
|
993 | + * @throws ReflectionException |
|
994 | + */ |
|
995 | + protected function _insert_update_cpt_item($post_id, $post) |
|
996 | + { |
|
997 | + if ($post instanceof WP_Post && $post->post_type !== 'espresso_events') { |
|
998 | + // get out we're not processing an event save. |
|
999 | + return; |
|
1000 | + } |
|
1001 | + |
|
1002 | + $event_values = [ |
|
1003 | + 'EVT_display_desc' => $this->request->getRequestParam('display_desc', false, 'bool'), |
|
1004 | + 'EVT_display_ticket_selector' => $this->request->getRequestParam( |
|
1005 | + 'display_ticket_selector', |
|
1006 | + false, |
|
1007 | + 'bool' |
|
1008 | + ), |
|
1009 | + 'EVT_additional_limit' => min( |
|
1010 | + apply_filters('FHEE__EE_Events_Admin__insert_update_cpt_item__EVT_additional_limit_max', 255), |
|
1011 | + $this->request->getRequestParam('additional_limit', null, 'int') |
|
1012 | + ), |
|
1013 | + 'EVT_default_registration_status' => $this->request->getRequestParam( |
|
1014 | + 'EVT_default_registration_status', |
|
1015 | + EE_Registry::instance()->CFG->registration->default_STS_ID |
|
1016 | + ), |
|
1017 | + |
|
1018 | + 'EVT_member_only' => $this->request->getRequestParam('member_only', false, 'bool'), |
|
1019 | + 'EVT_allow_overflow' => $this->request->getRequestParam('EVT_allow_overflow', false, 'bool'), |
|
1020 | + 'EVT_timezone_string' => $this->request->getRequestParam('timezone_string'), |
|
1021 | + 'EVT_external_URL' => $this->request->getRequestParam('externalURL'), |
|
1022 | + 'EVT_phone' => $this->request->getRequestParam('event_phone'), |
|
1023 | + ]; |
|
1024 | + // update event |
|
1025 | + $success = $this->_event_model()->update_by_ID($event_values, $post_id); |
|
1026 | + // get event_object for other metaboxes... |
|
1027 | + // though it would seem to make sense to just use $this->_event_model()->get_one_by_ID( $post_id ).. |
|
1028 | + // i have to setup where conditions to override the filters in the model |
|
1029 | + // that filter out autodraft and inherit statuses so we GET the inherit id! |
|
1030 | + $event = $this->_event_model()->get_one( |
|
1031 | + [ |
|
1032 | + [ |
|
1033 | + $this->_event_model()->primary_key_name() => $post_id, |
|
1034 | + 'OR' => [ |
|
1035 | + 'status' => $post->post_status, |
|
1036 | + // if trying to "Publish" a sold out event, it's status will get switched back to "sold_out" in the db, |
|
1037 | + // but the returned object here has a status of "publish", so use the original post status as well |
|
1038 | + 'status*1' => $this->request->getRequestParam('original_post_status'), |
|
1039 | + ], |
|
1040 | + ], |
|
1041 | + ] |
|
1042 | + ); |
|
1043 | + // the following are default callbacks for event attachment updates that can be overridden by caffeinated functionality and/or addons. |
|
1044 | + $event_update_callbacks = apply_filters( |
|
1045 | + 'FHEE__Events_Admin_Page___insert_update_cpt_item__event_update_callbacks', |
|
1046 | + [ |
|
1047 | + [$this, '_default_venue_update'], |
|
1048 | + [$this, '_default_tickets_update'], |
|
1049 | + ] |
|
1050 | + ); |
|
1051 | + $att_success = true; |
|
1052 | + foreach ($event_update_callbacks as $e_callback) { |
|
1053 | + $_success = is_callable($e_callback) |
|
1054 | + ? call_user_func($e_callback, $event, $this->request->requestParams()) |
|
1055 | + : false; |
|
1056 | + // if ANY of these updates fail then we want the appropriate global error message |
|
1057 | + $att_success = ! $att_success ? $att_success : $_success; |
|
1058 | + } |
|
1059 | + // any errors? |
|
1060 | + if ($success && false === $att_success) { |
|
1061 | + EE_Error::add_error( |
|
1062 | + esc_html__( |
|
1063 | + 'Event Details saved successfully but something went wrong with saving attachments.', |
|
1064 | + 'event_espresso' |
|
1065 | + ), |
|
1066 | + __FILE__, |
|
1067 | + __FUNCTION__, |
|
1068 | + __LINE__ |
|
1069 | + ); |
|
1070 | + } elseif ($success === false) { |
|
1071 | + EE_Error::add_error( |
|
1072 | + esc_html__('Event Details did not save successfully.', 'event_espresso'), |
|
1073 | + __FILE__, |
|
1074 | + __FUNCTION__, |
|
1075 | + __LINE__ |
|
1076 | + ); |
|
1077 | + } |
|
1078 | + } |
|
1079 | + |
|
1080 | + |
|
1081 | + /** |
|
1082 | + * @param int $post_id |
|
1083 | + * @param int $revision_id |
|
1084 | + * @throws EE_Error |
|
1085 | + * @throws EE_Error |
|
1086 | + * @throws ReflectionException |
|
1087 | + * @see parent::restore_item() |
|
1088 | + */ |
|
1089 | + protected function _restore_cpt_item($post_id, $revision_id) |
|
1090 | + { |
|
1091 | + // copy existing event meta to new post |
|
1092 | + $post_evt = $this->_event_model()->get_one_by_ID($post_id); |
|
1093 | + if ($post_evt instanceof EE_Event) { |
|
1094 | + // meta revision restore |
|
1095 | + $post_evt->restore_revision($revision_id); |
|
1096 | + // related objs restore |
|
1097 | + $post_evt->restore_revision($revision_id, ['Venue', 'Datetime', 'Price']); |
|
1098 | + } |
|
1099 | + } |
|
1100 | + |
|
1101 | + |
|
1102 | + /** |
|
1103 | + * Attach the venue to the Event |
|
1104 | + * |
|
1105 | + * @param EE_Event $event Event Object to add the venue to |
|
1106 | + * @param array $data The request data from the form |
|
1107 | + * @return bool Success or fail. |
|
1108 | + * @throws EE_Error |
|
1109 | + * @throws ReflectionException |
|
1110 | + */ |
|
1111 | + protected function _default_venue_update(EE_Event $event, $data) |
|
1112 | + { |
|
1113 | + require_once(EE_MODELS . 'EEM_Venue.model.php'); |
|
1114 | + $venue_model = EE_Registry::instance()->load_model('Venue'); |
|
1115 | + $venue_id = ! empty($data['venue_id']) ? $data['venue_id'] : null; |
|
1116 | + // very important. If we don't have a venue name... |
|
1117 | + // then we'll get out because not necessary to create empty venue |
|
1118 | + if (empty($data['venue_title'])) { |
|
1119 | + return false; |
|
1120 | + } |
|
1121 | + $venue_array = [ |
|
1122 | + 'VNU_wp_user' => $event->get('EVT_wp_user'), |
|
1123 | + 'VNU_name' => $data['venue_title'], |
|
1124 | + 'VNU_desc' => ! empty($data['venue_description']) ? $data['venue_description'] : null, |
|
1125 | + 'VNU_identifier' => ! empty($data['venue_identifier']) ? $data['venue_identifier'] : null, |
|
1126 | + 'VNU_short_desc' => ! empty($data['venue_short_description']) |
|
1127 | + ? $data['venue_short_description'] |
|
1128 | + : null, |
|
1129 | + 'VNU_address' => ! empty($data['address']) ? $data['address'] : null, |
|
1130 | + 'VNU_address2' => ! empty($data['address2']) ? $data['address2'] : null, |
|
1131 | + 'VNU_city' => ! empty($data['city']) ? $data['city'] : null, |
|
1132 | + 'STA_ID' => ! empty($data['state']) ? $data['state'] : null, |
|
1133 | + 'CNT_ISO' => ! empty($data['countries']) ? $data['countries'] : null, |
|
1134 | + 'VNU_zip' => ! empty($data['zip']) ? $data['zip'] : null, |
|
1135 | + 'VNU_phone' => ! empty($data['venue_phone']) ? $data['venue_phone'] : null, |
|
1136 | + 'VNU_capacity' => ! empty($data['venue_capacity']) ? $data['venue_capacity'] : null, |
|
1137 | + 'VNU_url' => ! empty($data['venue_url']) ? $data['venue_url'] : null, |
|
1138 | + 'VNU_virtual_phone' => ! empty($data['virtual_phone']) ? $data['virtual_phone'] : null, |
|
1139 | + 'VNU_virtual_url' => ! empty($data['virtual_url']) ? $data['virtual_url'] : null, |
|
1140 | + 'VNU_enable_for_gmap' => isset($data['enable_for_gmap']) ? 1 : 0, |
|
1141 | + 'status' => 'publish', |
|
1142 | + ]; |
|
1143 | + // if we've got the venue_id then we're just updating the existing venue so let's do that and then get out. |
|
1144 | + if (! empty($venue_id)) { |
|
1145 | + $update_where = [$venue_model->primary_key_name() => $venue_id]; |
|
1146 | + $rows_affected = $venue_model->update($venue_array, [$update_where]); |
|
1147 | + // we've gotta make sure that the venue is always attached to a revision.. add_relation_to should take care of making sure that the relation is already present. |
|
1148 | + $event->_add_relation_to($venue_id, 'Venue'); |
|
1149 | + return $rows_affected > 0; |
|
1150 | + } |
|
1151 | + // we insert the venue |
|
1152 | + $venue_id = $venue_model->insert($venue_array); |
|
1153 | + $event->_add_relation_to($venue_id, 'Venue'); |
|
1154 | + return ! empty($venue_id); |
|
1155 | + // when we have the ancestor come in it's already been handled by the revision save. |
|
1156 | + } |
|
1157 | + |
|
1158 | + |
|
1159 | + /** |
|
1160 | + * Handles saving everything related to Tickets (datetimes, tickets, prices) |
|
1161 | + * |
|
1162 | + * @param EE_Event $event The Event object we're attaching data to |
|
1163 | + * @param array $data The request data from the form |
|
1164 | + * @return array |
|
1165 | + * @throws EE_Error |
|
1166 | + * @throws ReflectionException |
|
1167 | + * @throws Exception |
|
1168 | + */ |
|
1169 | + protected function _default_tickets_update(EE_Event $event, $data) |
|
1170 | + { |
|
1171 | + $datetime = null; |
|
1172 | + $saved_tickets = []; |
|
1173 | + $event_timezone = $event->get_timezone(); |
|
1174 | + $date_formats = ['Y-m-d', 'h:i a']; |
|
1175 | + foreach ($data['edit_event_datetimes'] as $row => $datetime_data) { |
|
1176 | + // trim all values to ensure any excess whitespace is removed. |
|
1177 | + $datetime_data = array_map('trim', $datetime_data); |
|
1178 | + $datetime_data['DTT_EVT_end'] = |
|
1179 | + isset($datetime_data['DTT_EVT_end']) && ! empty($datetime_data['DTT_EVT_end']) |
|
1180 | + ? $datetime_data['DTT_EVT_end'] |
|
1181 | + : $datetime_data['DTT_EVT_start']; |
|
1182 | + $datetime_values = [ |
|
1183 | + 'DTT_ID' => ! empty($datetime_data['DTT_ID']) ? $datetime_data['DTT_ID'] : null, |
|
1184 | + 'DTT_EVT_start' => $datetime_data['DTT_EVT_start'], |
|
1185 | + 'DTT_EVT_end' => $datetime_data['DTT_EVT_end'], |
|
1186 | + 'DTT_reg_limit' => empty($datetime_data['DTT_reg_limit']) ? EE_INF : $datetime_data['DTT_reg_limit'], |
|
1187 | + 'DTT_order' => $row, |
|
1188 | + ]; |
|
1189 | + // if we have an id then let's get existing object first and then set the new values. |
|
1190 | + // Otherwise we instantiate a new object for save. |
|
1191 | + if (! empty($datetime_data['DTT_ID'])) { |
|
1192 | + $datetime = EEM_Datetime::instance($event_timezone)->get_one_by_ID($datetime_data['DTT_ID']); |
|
1193 | + if (! $datetime instanceof EE_Datetime) { |
|
1194 | + throw new RuntimeException( |
|
1195 | + sprintf( |
|
1196 | + esc_html__( |
|
1197 | + 'Something went wrong! A valid Datetime could not be retrieved from the database using the supplied ID: %1$d', |
|
1198 | + 'event_espresso' |
|
1199 | + ), |
|
1200 | + $datetime_data['DTT_ID'] |
|
1201 | + ) |
|
1202 | + ); |
|
1203 | + } |
|
1204 | + $datetime->set_date_format($date_formats[0]); |
|
1205 | + $datetime->set_time_format($date_formats[1]); |
|
1206 | + foreach ($datetime_values as $field => $value) { |
|
1207 | + $datetime->set($field, $value); |
|
1208 | + } |
|
1209 | + } else { |
|
1210 | + $datetime = EE_Datetime::new_instance($datetime_values, $event_timezone, $date_formats); |
|
1211 | + } |
|
1212 | + if (! $datetime instanceof EE_Datetime) { |
|
1213 | + throw new RuntimeException( |
|
1214 | + sprintf( |
|
1215 | + esc_html__( |
|
1216 | + 'Something went wrong! A valid Datetime could not be generated or retrieved using the supplied data: %1$s', |
|
1217 | + 'event_espresso' |
|
1218 | + ), |
|
1219 | + print_r($datetime_values, true) |
|
1220 | + ) |
|
1221 | + ); |
|
1222 | + } |
|
1223 | + // before going any further make sure our dates are setup correctly |
|
1224 | + // so that the end date is always equal or greater than the start date. |
|
1225 | + if ($datetime->get_raw('DTT_EVT_start') > $datetime->get_raw('DTT_EVT_end')) { |
|
1226 | + $datetime->set('DTT_EVT_end', $datetime->get('DTT_EVT_start')); |
|
1227 | + $datetime = EEH_DTT_Helper::date_time_add($datetime, 'DTT_EVT_end', 'days'); |
|
1228 | + } |
|
1229 | + $datetime->save(); |
|
1230 | + $event->_add_relation_to($datetime, 'Datetime'); |
|
1231 | + } |
|
1232 | + // no datetimes get deleted so we don't do any of that logic here. |
|
1233 | + // update tickets next |
|
1234 | + $old_tickets = isset($data['ticket_IDs']) ? explode(',', $data['ticket_IDs']) : []; |
|
1235 | + |
|
1236 | + // set up some default start and end dates in case those are not present in the incoming data |
|
1237 | + $default_start_date = new DateTime('now', new DateTimeZone($event->get_timezone())); |
|
1238 | + $default_start_date = $default_start_date->format($date_formats[0] . ' ' . $date_formats[1]); |
|
1239 | + // use the start date of the first datetime for the end date |
|
1240 | + $first_datetime = $event->first_datetime(); |
|
1241 | + $default_end_date = $first_datetime->start_date_and_time($date_formats[0], $date_formats[1]); |
|
1242 | + |
|
1243 | + // now process the incoming data |
|
1244 | + foreach ($data['edit_tickets'] as $row => $ticket_data) { |
|
1245 | + $update_prices = false; |
|
1246 | + $ticket_price = isset($data['edit_prices'][ $row ][1]['PRC_amount']) |
|
1247 | + ? $data['edit_prices'][ $row ][1]['PRC_amount'] |
|
1248 | + : 0; |
|
1249 | + // trim inputs to ensure any excess whitespace is removed. |
|
1250 | + $ticket_data = array_map('trim', $ticket_data); |
|
1251 | + $ticket_values = [ |
|
1252 | + 'TKT_ID' => ! empty($ticket_data['TKT_ID']) ? $ticket_data['TKT_ID'] : null, |
|
1253 | + 'TTM_ID' => ! empty($ticket_data['TTM_ID']) ? $ticket_data['TTM_ID'] : 0, |
|
1254 | + 'TKT_name' => ! empty($ticket_data['TKT_name']) ? $ticket_data['TKT_name'] : '', |
|
1255 | + 'TKT_description' => ! empty($ticket_data['TKT_description']) ? $ticket_data['TKT_description'] : '', |
|
1256 | + 'TKT_start_date' => ! empty($ticket_data['TKT_start_date']) |
|
1257 | + ? $ticket_data['TKT_start_date'] |
|
1258 | + : $default_start_date, |
|
1259 | + 'TKT_end_date' => ! empty($ticket_data['TKT_end_date']) |
|
1260 | + ? $ticket_data['TKT_end_date'] |
|
1261 | + : $default_end_date, |
|
1262 | + 'TKT_qty' => ! empty($ticket_data['TKT_qty']) |
|
1263 | + || (isset($ticket_data['TKT_qty']) && (int) $ticket_data['TKT_qty'] === 0) |
|
1264 | + ? $ticket_data['TKT_qty'] |
|
1265 | + : EE_INF, |
|
1266 | + 'TKT_uses' => ! empty($ticket_data['TKT_uses']) |
|
1267 | + || (isset($ticket_data['TKT_uses']) && (int) $ticket_data['TKT_uses'] === 0) |
|
1268 | + ? $ticket_data['TKT_uses'] |
|
1269 | + : EE_INF, |
|
1270 | + 'TKT_min' => ! empty($ticket_data['TKT_min']) ? $ticket_data['TKT_min'] : 0, |
|
1271 | + 'TKT_max' => ! empty($ticket_data['TKT_max']) ? $ticket_data['TKT_max'] : EE_INF, |
|
1272 | + 'TKT_order' => isset($ticket_data['TKT_order']) ? $ticket_data['TKT_order'] : $row, |
|
1273 | + 'TKT_price' => $ticket_price, |
|
1274 | + 'TKT_row' => $row, |
|
1275 | + ]; |
|
1276 | + // if this is a default ticket, then we need to set the TKT_ID to 0 and update accordingly, |
|
1277 | + // which means in turn that the prices will become new prices as well. |
|
1278 | + if (isset($ticket_data['TKT_is_default']) && $ticket_data['TKT_is_default']) { |
|
1279 | + $ticket_values['TKT_ID'] = 0; |
|
1280 | + $ticket_values['TKT_is_default'] = 0; |
|
1281 | + $update_prices = true; |
|
1282 | + } |
|
1283 | + // if we have a TKT_ID then we need to get that existing TKT_obj and update it |
|
1284 | + // we actually do our saves ahead of adding any relations because its entirely possible that this |
|
1285 | + // ticket didn't get removed or added to any datetime in the session but DID have it's items modified. |
|
1286 | + // keep in mind that if the ticket has been sold (and we have changed pricing information), |
|
1287 | + // then we won't be updating the tkt but instead a new tkt will be created and the old one archived. |
|
1288 | + if (! empty($ticket_data['TKT_ID'])) { |
|
1289 | + $existing_ticket = EEM_Ticket::instance($event_timezone)->get_one_by_ID($ticket_data['TKT_ID']); |
|
1290 | + if (! $existing_ticket instanceof EE_Ticket) { |
|
1291 | + throw new RuntimeException( |
|
1292 | + sprintf( |
|
1293 | + esc_html__( |
|
1294 | + 'Something went wrong! A valid Ticket could not be retrieved from the database using the supplied ID: %1$d', |
|
1295 | + 'event_espresso' |
|
1296 | + ), |
|
1297 | + $ticket_data['TKT_ID'] |
|
1298 | + ) |
|
1299 | + ); |
|
1300 | + } |
|
1301 | + $ticket_sold = $existing_ticket->count_related( |
|
1302 | + 'Registration', |
|
1303 | + [ |
|
1304 | + [ |
|
1305 | + 'STS_ID' => [ |
|
1306 | + 'NOT IN', |
|
1307 | + [EEM_Registration::status_id_incomplete], |
|
1308 | + ], |
|
1309 | + ], |
|
1310 | + ] |
|
1311 | + ) > 0; |
|
1312 | + // let's just check the total price for the existing ticket and determine if it matches the new total price. |
|
1313 | + // if they are different then we create a new ticket (if $ticket_sold) |
|
1314 | + // if they aren't different then we go ahead and modify existing ticket. |
|
1315 | + $create_new_ticket = $ticket_sold |
|
1316 | + && $ticket_price !== $existing_ticket->price() |
|
1317 | + && ! $existing_ticket->deleted(); |
|
1318 | + $existing_ticket->set_date_format($date_formats[0]); |
|
1319 | + $existing_ticket->set_time_format($date_formats[1]); |
|
1320 | + // set new values |
|
1321 | + foreach ($ticket_values as $field => $value) { |
|
1322 | + if ($field == 'TKT_qty') { |
|
1323 | + $existing_ticket->set_qty($value); |
|
1324 | + } elseif ($field == 'TKT_price') { |
|
1325 | + $existing_ticket->set('TKT_price', $ticket_price); |
|
1326 | + } else { |
|
1327 | + $existing_ticket->set($field, $value); |
|
1328 | + } |
|
1329 | + } |
|
1330 | + $ticket = $existing_ticket; |
|
1331 | + // if $create_new_ticket is false then we can safely update the existing ticket. |
|
1332 | + // Otherwise we have to create a new ticket. |
|
1333 | + if ($create_new_ticket) { |
|
1334 | + // archive the old ticket first |
|
1335 | + $existing_ticket->set('TKT_deleted', 1); |
|
1336 | + $existing_ticket->save(); |
|
1337 | + // make sure this ticket is still recorded in our $saved_tickets |
|
1338 | + // so we don't run it through the regular trash routine. |
|
1339 | + $saved_tickets[ $existing_ticket->ID() ] = $existing_ticket; |
|
1340 | + // create new ticket that's a copy of the existing except, |
|
1341 | + // (a new id of course and not archived) AND has the new TKT_price associated with it. |
|
1342 | + $new_ticket = clone $existing_ticket; |
|
1343 | + $new_ticket->set('TKT_ID', 0); |
|
1344 | + $new_ticket->set('TKT_deleted', 0); |
|
1345 | + $new_ticket->set('TKT_sold', 0); |
|
1346 | + // now we need to make sure that $new prices are created as well and attached to new ticket. |
|
1347 | + $update_prices = true; |
|
1348 | + $ticket = $new_ticket; |
|
1349 | + } |
|
1350 | + } else { |
|
1351 | + // no TKT_id so a new ticket |
|
1352 | + $ticket_values['TKT_price'] = $ticket_price; |
|
1353 | + $ticket = EE_Ticket::new_instance($ticket_values, $event_timezone, $date_formats); |
|
1354 | + $update_prices = true; |
|
1355 | + } |
|
1356 | + if (! $ticket instanceof EE_Ticket) { |
|
1357 | + throw new RuntimeException( |
|
1358 | + sprintf( |
|
1359 | + esc_html__( |
|
1360 | + 'Something went wrong! A valid Ticket could not be generated or retrieved using the supplied data: %1$s', |
|
1361 | + 'event_espresso' |
|
1362 | + ), |
|
1363 | + print_r($ticket_values, true) |
|
1364 | + ) |
|
1365 | + ); |
|
1366 | + } |
|
1367 | + // cap ticket qty by datetime reg limits |
|
1368 | + $ticket->set_qty(min($ticket->qty(), $ticket->qty('reg_limit'))); |
|
1369 | + // update ticket. |
|
1370 | + $ticket->save(); |
|
1371 | + // before going any further make sure our dates are setup correctly |
|
1372 | + // so that the end date is always equal or greater than the start date. |
|
1373 | + if ($ticket->get_raw('TKT_start_date') > $ticket->get_raw('TKT_end_date')) { |
|
1374 | + $ticket->set('TKT_end_date', $ticket->get('TKT_start_date')); |
|
1375 | + $ticket = EEH_DTT_Helper::date_time_add($ticket, 'TKT_end_date', 'days'); |
|
1376 | + $ticket->save(); |
|
1377 | + } |
|
1378 | + // initially let's add the ticket to the datetime |
|
1379 | + $datetime->_add_relation_to($ticket, 'Ticket'); |
|
1380 | + $saved_tickets[ $ticket->ID() ] = $ticket; |
|
1381 | + // add prices to ticket |
|
1382 | + $prices_data = isset($data['edit_prices'][ $row ]) && is_array($data['edit_prices'][ $row ]) |
|
1383 | + ? $data['edit_prices'][ $row ] |
|
1384 | + : []; |
|
1385 | + $this->_add_prices_to_ticket($prices_data, $ticket, $update_prices); |
|
1386 | + } |
|
1387 | + // however now we need to handle permanently deleting tickets via the ui. |
|
1388 | + // Keep in mind that the ui does not allow deleting/archiving tickets that have ticket sold. |
|
1389 | + // However, it does allow for deleting tickets that have no tickets sold, |
|
1390 | + // in which case we want to get rid of permanently because there is no need to save in db. |
|
1391 | + $old_tickets = isset($old_tickets[0]) && $old_tickets[0] == '' ? [] : $old_tickets; |
|
1392 | + $tickets_removed = array_diff($old_tickets, array_keys($saved_tickets)); |
|
1393 | + foreach ($tickets_removed as $id) { |
|
1394 | + $id = absint($id); |
|
1395 | + // get the ticket for this id |
|
1396 | + $ticket_to_remove = EEM_Ticket::instance()->get_one_by_ID($id); |
|
1397 | + if (! $ticket_to_remove instanceof EE_Ticket) { |
|
1398 | + continue; |
|
1399 | + } |
|
1400 | + // need to get all the related datetimes on this ticket and remove from every single one of them |
|
1401 | + // (remember this process can ONLY kick off if there are NO tickets sold) |
|
1402 | + $related_datetimes = $ticket_to_remove->get_many_related('Datetime'); |
|
1403 | + foreach ($related_datetimes as $related_datetime) { |
|
1404 | + $ticket_to_remove->_remove_relation_to($related_datetime, 'Datetime'); |
|
1405 | + } |
|
1406 | + // need to do the same for prices (except these prices can also be deleted because again, |
|
1407 | + // tickets can only be trashed if they don't have any TKTs sold (otherwise they are just archived)) |
|
1408 | + $ticket_to_remove->delete_related_permanently('Price'); |
|
1409 | + // finally let's delete this ticket |
|
1410 | + // (which should not be blocked at this point b/c we've removed all our relationships) |
|
1411 | + $ticket_to_remove->delete_permanently(); |
|
1412 | + } |
|
1413 | + return [$datetime, $saved_tickets]; |
|
1414 | + } |
|
1415 | + |
|
1416 | + |
|
1417 | + /** |
|
1418 | + * This attaches a list of given prices to a ticket. |
|
1419 | + * Note we dont' have to worry about ever removing relationships (or archiving prices) because if there is a change |
|
1420 | + * in price information on a ticket, a new ticket is created anyways so the archived ticket will retain the old |
|
1421 | + * price info and prices are automatically "archived" via the ticket. |
|
1422 | + * |
|
1423 | + * @access private |
|
1424 | + * @param array $prices_data Array of prices from the form. |
|
1425 | + * @param EE_Ticket $ticket EE_Ticket object that prices are being attached to. |
|
1426 | + * @param bool $new_prices Whether attach existing incoming prices or create new ones. |
|
1427 | + * @return void |
|
1428 | + * @throws EE_Error |
|
1429 | + * @throws ReflectionException |
|
1430 | + */ |
|
1431 | + private function _add_prices_to_ticket($prices_data, EE_Ticket $ticket, $new_prices = false) |
|
1432 | + { |
|
1433 | + $timezone = $ticket->get_timezone(); |
|
1434 | + foreach ($prices_data as $row => $price_data) { |
|
1435 | + $price_values = [ |
|
1436 | + 'PRC_ID' => ! empty($price_data['PRC_ID']) ? $price_data['PRC_ID'] : null, |
|
1437 | + 'PRT_ID' => ! empty($price_data['PRT_ID']) ? $price_data['PRT_ID'] : null, |
|
1438 | + 'PRC_amount' => ! empty($price_data['PRC_amount']) ? $price_data['PRC_amount'] : 0, |
|
1439 | + 'PRC_name' => ! empty($price_data['PRC_name']) ? $price_data['PRC_name'] : '', |
|
1440 | + 'PRC_desc' => ! empty($price_data['PRC_desc']) ? $price_data['PRC_desc'] : '', |
|
1441 | + 'PRC_is_default' => 0, // make sure prices are NOT set as default from this context |
|
1442 | + 'PRC_order' => $row, |
|
1443 | + ]; |
|
1444 | + if ($new_prices || empty($price_values['PRC_ID'])) { |
|
1445 | + $price_values['PRC_ID'] = 0; |
|
1446 | + $price = EE_Price::new_instance($price_values, $timezone); |
|
1447 | + } else { |
|
1448 | + $price = EEM_Price::instance($timezone)->get_one_by_ID($price_data['PRC_ID']); |
|
1449 | + // update this price with new values |
|
1450 | + foreach ($price_values as $field => $new_price) { |
|
1451 | + $price->set($field, $new_price); |
|
1452 | + } |
|
1453 | + } |
|
1454 | + if (! $price instanceof EE_Price) { |
|
1455 | + throw new RuntimeException( |
|
1456 | + sprintf( |
|
1457 | + esc_html__( |
|
1458 | + 'Something went wrong! A valid Price could not be generated or retrieved using the supplied data: %1$s', |
|
1459 | + 'event_espresso' |
|
1460 | + ), |
|
1461 | + print_r($price_values, true) |
|
1462 | + ) |
|
1463 | + ); |
|
1464 | + } |
|
1465 | + $price->save(); |
|
1466 | + $ticket->_add_relation_to($price, 'Price'); |
|
1467 | + } |
|
1468 | + } |
|
1469 | + |
|
1470 | + |
|
1471 | + /** |
|
1472 | + * Add in our autosave ajax handlers |
|
1473 | + * |
|
1474 | + */ |
|
1475 | + protected function _ee_autosave_create_new() |
|
1476 | + { |
|
1477 | + } |
|
1478 | + |
|
1479 | + |
|
1480 | + /** |
|
1481 | + * More autosave handlers. |
|
1482 | + */ |
|
1483 | + protected function _ee_autosave_edit() |
|
1484 | + { |
|
1485 | + // TEMPORARILY EXITING CAUSE THIS IS A TODO |
|
1486 | + } |
|
1487 | + |
|
1488 | + |
|
1489 | + /** |
|
1490 | + * @throws EE_Error |
|
1491 | + * @throws ReflectionException |
|
1492 | + */ |
|
1493 | + private function _generate_publish_box_extra_content() |
|
1494 | + { |
|
1495 | + // load formatter helper |
|
1496 | + // args for getting related registrations |
|
1497 | + $approved_query_args = [ |
|
1498 | + [ |
|
1499 | + 'REG_deleted' => 0, |
|
1500 | + 'STS_ID' => EEM_Registration::status_id_approved, |
|
1501 | + ], |
|
1502 | + ]; |
|
1503 | + $not_approved_query_args = [ |
|
1504 | + [ |
|
1505 | + 'REG_deleted' => 0, |
|
1506 | + 'STS_ID' => EEM_Registration::status_id_not_approved, |
|
1507 | + ], |
|
1508 | + ]; |
|
1509 | + $pending_payment_query_args = [ |
|
1510 | + [ |
|
1511 | + 'REG_deleted' => 0, |
|
1512 | + 'STS_ID' => EEM_Registration::status_id_pending_payment, |
|
1513 | + ], |
|
1514 | + ]; |
|
1515 | + // publish box |
|
1516 | + $publish_box_extra_args = [ |
|
1517 | + 'view_approved_reg_url' => add_query_arg( |
|
1518 | + [ |
|
1519 | + 'action' => 'default', |
|
1520 | + 'event_id' => $this->_cpt_model_obj->ID(), |
|
1521 | + '_reg_status' => EEM_Registration::status_id_approved, |
|
1522 | + 'use_filters' => true, |
|
1523 | + ], |
|
1524 | + REG_ADMIN_URL |
|
1525 | + ), |
|
1526 | + 'view_not_approved_reg_url' => add_query_arg( |
|
1527 | + [ |
|
1528 | + 'action' => 'default', |
|
1529 | + 'event_id' => $this->_cpt_model_obj->ID(), |
|
1530 | + '_reg_status' => EEM_Registration::status_id_not_approved, |
|
1531 | + 'use_filters' => true, |
|
1532 | + ], |
|
1533 | + REG_ADMIN_URL |
|
1534 | + ), |
|
1535 | + 'view_pending_payment_reg_url' => add_query_arg( |
|
1536 | + [ |
|
1537 | + 'action' => 'default', |
|
1538 | + 'event_id' => $this->_cpt_model_obj->ID(), |
|
1539 | + '_reg_status' => EEM_Registration::status_id_pending_payment, |
|
1540 | + 'use_filters' => true, |
|
1541 | + ], |
|
1542 | + REG_ADMIN_URL |
|
1543 | + ), |
|
1544 | + 'approved_regs' => $this->_cpt_model_obj->count_related( |
|
1545 | + 'Registration', |
|
1546 | + $approved_query_args |
|
1547 | + ), |
|
1548 | + 'not_approved_regs' => $this->_cpt_model_obj->count_related( |
|
1549 | + 'Registration', |
|
1550 | + $not_approved_query_args |
|
1551 | + ), |
|
1552 | + 'pending_payment_regs' => $this->_cpt_model_obj->count_related( |
|
1553 | + 'Registration', |
|
1554 | + $pending_payment_query_args |
|
1555 | + ), |
|
1556 | + 'misc_pub_section_class' => apply_filters( |
|
1557 | + 'FHEE_Events_Admin_Page___generate_publish_box_extra_content__misc_pub_section_class', |
|
1558 | + 'misc-pub-section' |
|
1559 | + ), |
|
1560 | + ]; |
|
1561 | + ob_start(); |
|
1562 | + do_action( |
|
1563 | + 'AHEE__Events_Admin_Page___generate_publish_box_extra_content__event_editor_overview_add', |
|
1564 | + $this->_cpt_model_obj |
|
1565 | + ); |
|
1566 | + $publish_box_extra_args['event_editor_overview_add'] = ob_get_clean(); |
|
1567 | + // load template |
|
1568 | + EEH_Template::display_template( |
|
1569 | + EVENTS_TEMPLATE_PATH . 'event_publish_box_extras.template.php', |
|
1570 | + $publish_box_extra_args |
|
1571 | + ); |
|
1572 | + } |
|
1573 | + |
|
1574 | + |
|
1575 | + /** |
|
1576 | + * @return EE_Event |
|
1577 | + */ |
|
1578 | + public function get_event_object() |
|
1579 | + { |
|
1580 | + return $this->_cpt_model_obj; |
|
1581 | + } |
|
1582 | + |
|
1583 | + |
|
1584 | + |
|
1585 | + |
|
1586 | + /** METABOXES * */ |
|
1587 | + /** |
|
1588 | + * _register_event_editor_meta_boxes |
|
1589 | + * add all metaboxes related to the event_editor |
|
1590 | + * |
|
1591 | + * @return void |
|
1592 | + * @throws EE_Error |
|
1593 | + * @throws ReflectionException |
|
1594 | + */ |
|
1595 | + protected function _register_event_editor_meta_boxes() |
|
1596 | + { |
|
1597 | + $this->verify_cpt_object(); |
|
1598 | + add_meta_box( |
|
1599 | + 'espresso_event_editor_tickets', |
|
1600 | + esc_html__('Event Datetime & Ticket', 'event_espresso'), |
|
1601 | + [$this, 'ticket_metabox'], |
|
1602 | + $this->page_slug, |
|
1603 | + 'normal', |
|
1604 | + 'high' |
|
1605 | + ); |
|
1606 | + add_meta_box( |
|
1607 | + 'espresso_event_editor_event_options', |
|
1608 | + esc_html__('Event Registration Options', 'event_espresso'), |
|
1609 | + [$this, 'registration_options_meta_box'], |
|
1610 | + $this->page_slug, |
|
1611 | + 'side' |
|
1612 | + ); |
|
1613 | + // NOTE: if you're looking for other metaboxes in here, |
|
1614 | + // where a metabox has a related management page in the admin |
|
1615 | + // you will find it setup in the related management page's "_Hooks" file. |
|
1616 | + // i.e. messages metabox is found in "espresso_events_Messages_Hooks.class.php". |
|
1617 | + } |
|
1618 | + |
|
1619 | + |
|
1620 | + /** |
|
1621 | + * @throws DomainException |
|
1622 | + * @throws EE_Error |
|
1623 | + * @throws ReflectionException |
|
1624 | + */ |
|
1625 | + public function ticket_metabox() |
|
1626 | + { |
|
1627 | + $existing_datetime_ids = $existing_ticket_ids = []; |
|
1628 | + // defaults for template args |
|
1629 | + $template_args = [ |
|
1630 | + 'existing_datetime_ids' => '', |
|
1631 | + 'event_datetime_help_link' => '', |
|
1632 | + 'ticket_options_help_link' => '', |
|
1633 | + 'time' => null, |
|
1634 | + 'ticket_rows' => '', |
|
1635 | + 'existing_ticket_ids' => '', |
|
1636 | + 'total_ticket_rows' => 1, |
|
1637 | + 'ticket_js_structure' => '', |
|
1638 | + 'trash_icon' => 'ee-lock-icon', |
|
1639 | + 'disabled' => '', |
|
1640 | + ]; |
|
1641 | + $event_id = is_object($this->_cpt_model_obj) ? $this->_cpt_model_obj->ID() : null; |
|
1642 | + /** |
|
1643 | + * 1. Start with retrieving Datetimes |
|
1644 | + * 2. Fore each datetime get related tickets |
|
1645 | + * 3. For each ticket get related prices |
|
1646 | + */ |
|
1647 | + $times = EEM_Datetime::instance()->get_all_event_dates($event_id); |
|
1648 | + $first_datetime = reset($times); |
|
1649 | + // do we get related tickets? |
|
1650 | + if ( |
|
1651 | + $first_datetime instanceof EE_Datetime |
|
1652 | + && $first_datetime->ID() !== 0 |
|
1653 | + ) { |
|
1654 | + $existing_datetime_ids[] = $first_datetime->get('DTT_ID'); |
|
1655 | + $template_args['time'] = $first_datetime; |
|
1656 | + $related_tickets = $first_datetime->tickets( |
|
1657 | + [ |
|
1658 | + ['OR' => ['TKT_deleted' => 1, 'TKT_deleted*' => 0]], |
|
1659 | + 'default_where_conditions' => 'none', |
|
1660 | + ] |
|
1661 | + ); |
|
1662 | + if (! empty($related_tickets)) { |
|
1663 | + $template_args['total_ticket_rows'] = count($related_tickets); |
|
1664 | + $row = 0; |
|
1665 | + foreach ($related_tickets as $ticket) { |
|
1666 | + $existing_ticket_ids[] = $ticket->get('TKT_ID'); |
|
1667 | + $template_args['ticket_rows'] .= $this->_get_ticket_row($ticket, false, $row); |
|
1668 | + $row++; |
|
1669 | + } |
|
1670 | + } else { |
|
1671 | + $template_args['total_ticket_rows'] = 1; |
|
1672 | + /** @type EE_Ticket $ticket */ |
|
1673 | + $ticket = EEM_Ticket::instance()->create_default_object(); |
|
1674 | + $template_args['ticket_rows'] .= $this->_get_ticket_row($ticket); |
|
1675 | + } |
|
1676 | + } else { |
|
1677 | + $template_args['time'] = $times[0]; |
|
1678 | + $tickets = EEM_Ticket::instance()->get_all_default_tickets(); |
|
1679 | + $template_args['ticket_rows'] .= $this->_get_ticket_row($tickets[1]); |
|
1680 | + // NOTE: we're just sending the first default row |
|
1681 | + // (decaf can't manage default tickets so this should be sufficient); |
|
1682 | + } |
|
1683 | + $template_args['event_datetime_help_link'] = $this->_get_help_tab_link( |
|
1684 | + 'event_editor_event_datetimes_help_tab' |
|
1685 | + ); |
|
1686 | + $template_args['ticket_options_help_link'] = $this->_get_help_tab_link('ticket_options_info'); |
|
1687 | + $template_args['existing_datetime_ids'] = implode(',', $existing_datetime_ids); |
|
1688 | + $template_args['existing_ticket_ids'] = implode(',', $existing_ticket_ids); |
|
1689 | + $template_args['ticket_js_structure'] = $this->_get_ticket_row( |
|
1690 | + EEM_Ticket::instance()->create_default_object(), |
|
1691 | + true |
|
1692 | + ); |
|
1693 | + $template = apply_filters( |
|
1694 | + 'FHEE__Events_Admin_Page__ticket_metabox__template', |
|
1695 | + EVENTS_TEMPLATE_PATH . 'event_tickets_metabox_main.template.php' |
|
1696 | + ); |
|
1697 | + EEH_Template::display_template($template, $template_args); |
|
1698 | + } |
|
1699 | + |
|
1700 | + |
|
1701 | + /** |
|
1702 | + * Setup an individual ticket form for the decaf event editor page |
|
1703 | + * |
|
1704 | + * @access private |
|
1705 | + * @param EE_Ticket $ticket the ticket object |
|
1706 | + * @param boolean $skeleton whether we're generating a skeleton for js manipulation |
|
1707 | + * @param int $row |
|
1708 | + * @return string generated html for the ticket row. |
|
1709 | + * @throws EE_Error |
|
1710 | + * @throws ReflectionException |
|
1711 | + */ |
|
1712 | + private function _get_ticket_row($ticket, $skeleton = false, $row = 0) |
|
1713 | + { |
|
1714 | + $template_args = [ |
|
1715 | + 'tkt_status_class' => ' tkt-status-' . $ticket->ticket_status(), |
|
1716 | + 'tkt_archive_class' => $ticket->ticket_status() === EE_Ticket::archived && ! $skeleton ? ' tkt-archived' |
|
1717 | + : '', |
|
1718 | + 'ticketrow' => $skeleton ? 'TICKETNUM' : $row, |
|
1719 | + 'TKT_ID' => $ticket->get('TKT_ID'), |
|
1720 | + 'TKT_name' => $ticket->get('TKT_name'), |
|
1721 | + 'TKT_start_date' => $skeleton ? '' : $ticket->get_date('TKT_start_date', 'Y-m-d h:i a'), |
|
1722 | + 'TKT_end_date' => $skeleton ? '' : $ticket->get_date('TKT_end_date', 'Y-m-d h:i a'), |
|
1723 | + 'TKT_is_default' => $ticket->get('TKT_is_default'), |
|
1724 | + 'TKT_qty' => $ticket->get_pretty('TKT_qty', 'input'), |
|
1725 | + 'edit_ticketrow_name' => $skeleton ? 'TICKETNAMEATTR' : 'edit_tickets', |
|
1726 | + 'TKT_sold' => $skeleton ? 0 : $ticket->get('TKT_sold'), |
|
1727 | + 'trash_icon' => ($skeleton || (! empty($ticket) && ! $ticket->get('TKT_deleted'))) |
|
1728 | + && (! empty($ticket) && $ticket->get('TKT_sold') === 0) |
|
1729 | + ? 'trash-icon dashicons dashicons-post-trash clickable' : 'ee-lock-icon', |
|
1730 | + 'disabled' => $skeleton || (! empty($ticket) && ! $ticket->get('TKT_deleted')) ? '' |
|
1731 | + : ' disabled=disabled', |
|
1732 | + ]; |
|
1733 | + $price = $ticket->ID() !== 0 |
|
1734 | + ? $ticket->get_first_related('Price', ['default_where_conditions' => 'none']) |
|
1735 | + : null; |
|
1736 | + $price = $price instanceof EE_Price |
|
1737 | + ? $price |
|
1738 | + : EEM_Price::instance()->create_default_object(); |
|
1739 | + $price_args = [ |
|
1740 | + 'price_currency_symbol' => EE_Registry::instance()->CFG->currency->sign, |
|
1741 | + 'PRC_amount' => $price->get('PRC_amount'), |
|
1742 | + 'PRT_ID' => $price->get('PRT_ID'), |
|
1743 | + 'PRC_ID' => $price->get('PRC_ID'), |
|
1744 | + 'PRC_is_default' => $price->get('PRC_is_default'), |
|
1745 | + ]; |
|
1746 | + // make sure we have default start and end dates if skeleton |
|
1747 | + // handle rows that should NOT be empty |
|
1748 | + if (empty($template_args['TKT_start_date'])) { |
|
1749 | + // if empty then the start date will be now. |
|
1750 | + $template_args['TKT_start_date'] = date('Y-m-d h:i a', current_time('timestamp')); |
|
1751 | + } |
|
1752 | + if (empty($template_args['TKT_end_date'])) { |
|
1753 | + // get the earliest datetime (if present); |
|
1754 | + $earliest_datetime = $this->_cpt_model_obj->ID() > 0 |
|
1755 | + ? $this->_cpt_model_obj->get_first_related( |
|
1756 | + 'Datetime', |
|
1757 | + ['order_by' => ['DTT_EVT_start' => 'ASC']] |
|
1758 | + ) |
|
1759 | + : null; |
|
1760 | + $template_args['TKT_end_date'] = $earliest_datetime instanceof EE_Datetime |
|
1761 | + ? $earliest_datetime->get_datetime('DTT_EVT_start', 'Y-m-d', 'h:i a') |
|
1762 | + : date('Y-m-d h:i a', mktime(0, 0, 0, date('m'), date('d') + 7, date('Y'))); |
|
1763 | + } |
|
1764 | + $template_args = array_merge($template_args, $price_args); |
|
1765 | + $template = apply_filters( |
|
1766 | + 'FHEE__Events_Admin_Page__get_ticket_row__template', |
|
1767 | + EVENTS_TEMPLATE_PATH . 'event_tickets_metabox_ticket_row.template.php', |
|
1768 | + $ticket |
|
1769 | + ); |
|
1770 | + return EEH_Template::display_template($template, $template_args, true); |
|
1771 | + } |
|
1772 | + |
|
1773 | + |
|
1774 | + /** |
|
1775 | + * @throws EE_Error |
|
1776 | + * @throws ReflectionException |
|
1777 | + */ |
|
1778 | + public function registration_options_meta_box() |
|
1779 | + { |
|
1780 | + $yes_no_values = [ |
|
1781 | + ['id' => true, 'text' => esc_html__('Yes', 'event_espresso')], |
|
1782 | + ['id' => false, 'text' => esc_html__('No', 'event_espresso')], |
|
1783 | + ]; |
|
1784 | + $default_reg_status_values = EEM_Registration::reg_status_array( |
|
1785 | + [ |
|
1786 | + EEM_Registration::status_id_cancelled, |
|
1787 | + EEM_Registration::status_id_declined, |
|
1788 | + EEM_Registration::status_id_incomplete, |
|
1789 | + ], |
|
1790 | + true |
|
1791 | + ); |
|
1792 | + // $template_args['is_active_select'] = EEH_Form_Fields::select_input('is_active', $yes_no_values, $this->_cpt_model_obj->is_active()); |
|
1793 | + $template_args['_event'] = $this->_cpt_model_obj; |
|
1794 | + $template_args['event'] = $this->_cpt_model_obj; |
|
1795 | + $template_args['active_status'] = $this->_cpt_model_obj->pretty_active_status(false); |
|
1796 | + $template_args['additional_limit'] = $this->_cpt_model_obj->additional_limit(); |
|
1797 | + $template_args['default_registration_status'] = EEH_Form_Fields::select_input( |
|
1798 | + 'default_reg_status', |
|
1799 | + $default_reg_status_values, |
|
1800 | + $this->_cpt_model_obj->default_registration_status() |
|
1801 | + ); |
|
1802 | + $template_args['display_description'] = EEH_Form_Fields::select_input( |
|
1803 | + 'display_desc', |
|
1804 | + $yes_no_values, |
|
1805 | + $this->_cpt_model_obj->display_description() |
|
1806 | + ); |
|
1807 | + $template_args['display_ticket_selector'] = EEH_Form_Fields::select_input( |
|
1808 | + 'display_ticket_selector', |
|
1809 | + $yes_no_values, |
|
1810 | + $this->_cpt_model_obj->display_ticket_selector(), |
|
1811 | + '', |
|
1812 | + '', |
|
1813 | + false |
|
1814 | + ); |
|
1815 | + $template_args['additional_registration_options'] = apply_filters( |
|
1816 | + 'FHEE__Events_Admin_Page__registration_options_meta_box__additional_registration_options', |
|
1817 | + '', |
|
1818 | + $template_args, |
|
1819 | + $yes_no_values, |
|
1820 | + $default_reg_status_values |
|
1821 | + ); |
|
1822 | + EEH_Template::display_template( |
|
1823 | + EVENTS_TEMPLATE_PATH . 'event_registration_options.template.php', |
|
1824 | + $template_args |
|
1825 | + ); |
|
1826 | + } |
|
1827 | + |
|
1828 | + |
|
1829 | + /** |
|
1830 | + * _get_events() |
|
1831 | + * This method simply returns all the events (for the given _view and paging) |
|
1832 | + * |
|
1833 | + * @access public |
|
1834 | + * @param int $per_page count of items per page (20 default); |
|
1835 | + * @param int $current_page what is the current page being viewed. |
|
1836 | + * @param bool $count if TRUE then we just return a count of ALL events matching the given _view. |
|
1837 | + * If FALSE then we return an array of event objects |
|
1838 | + * that match the given _view and paging parameters. |
|
1839 | + * @return array|int an array of event objects or a count of them. |
|
1840 | + * @throws Exception |
|
1841 | + */ |
|
1842 | + public function get_events($per_page = 10, $current_page = 1, $count = false) |
|
1843 | + { |
|
1844 | + $EEM_Event = $this->_event_model(); |
|
1845 | + $offset = ($current_page - 1) * $per_page; |
|
1846 | + $limit = $count ? null : $offset . ',' . $per_page; |
|
1847 | + $orderby = $this->request->getRequestParam('orderby', 'EVT_ID'); |
|
1848 | + $order = $this->request->getRequestParam('order', 'DESC'); |
|
1849 | + $month_range = $this->request->getRequestParam('month_range'); |
|
1850 | + if ($month_range) { |
|
1851 | + $pieces = explode(' ', $month_range, 3); |
|
1852 | + // simulate the FIRST day of the month, that fixes issues for months like February |
|
1853 | + // where PHP doesn't know what to assume for date. |
|
1854 | + // @see https://events.codebasehq.com/projects/event-espresso/tickets/10437 |
|
1855 | + $month_r = ! empty($pieces[0]) ? date('m', EEH_DTT_Helper::first_of_month_timestamp($pieces[0])) : ''; |
|
1856 | + $year_r = ! empty($pieces[1]) ? $pieces[1] : ''; |
|
1857 | + } |
|
1858 | + $where = []; |
|
1859 | + $status = $this->request->getRequestParam('status'); |
|
1860 | + // determine what post_status our condition will have for the query. |
|
1861 | + switch ($status) { |
|
1862 | + case 'month': |
|
1863 | + case 'today': |
|
1864 | + case null: |
|
1865 | + case 'all': |
|
1866 | + break; |
|
1867 | + case 'draft': |
|
1868 | + $where['status'] = ['IN', ['draft', 'auto-draft']]; |
|
1869 | + break; |
|
1870 | + default: |
|
1871 | + $where['status'] = $status; |
|
1872 | + } |
|
1873 | + // categories? The default for all categories is -1 |
|
1874 | + $category = $this->request->getRequestParam('EVT_CAT', -1, 'int'); |
|
1875 | + if ($category !== -1) { |
|
1876 | + $where['Term_Taxonomy.taxonomy'] = EEM_CPT_Base::EVENT_CATEGORY_TAXONOMY; |
|
1877 | + $where['Term_Taxonomy.term_id'] = $category; |
|
1878 | + } |
|
1879 | + // date where conditions |
|
1880 | + $start_formats = EEM_Datetime::instance()->get_formats_for('DTT_EVT_start'); |
|
1881 | + if ($month_range) { |
|
1882 | + $DateTime = new DateTime( |
|
1883 | + $year_r . '-' . $month_r . '-01 00:00:00', |
|
1884 | + new DateTimeZone('UTC') |
|
1885 | + ); |
|
1886 | + $start = $DateTime->getTimestamp(); |
|
1887 | + // set the datetime to be the end of the month |
|
1888 | + $DateTime->setDate( |
|
1889 | + $year_r, |
|
1890 | + $month_r, |
|
1891 | + $DateTime->format('t') |
|
1892 | + )->setTime(23, 59, 59); |
|
1893 | + $end = $DateTime->getTimestamp(); |
|
1894 | + $where['Datetime.DTT_EVT_start'] = ['BETWEEN', [$start, $end]]; |
|
1895 | + } elseif ($status === 'today') { |
|
1896 | + $DateTime = |
|
1897 | + new DateTime('now', new DateTimeZone(EEM_Event::instance()->get_timezone())); |
|
1898 | + $start = $DateTime->setTime(0, 0)->format(implode(' ', $start_formats)); |
|
1899 | + $end = $DateTime->setTime(23, 59, 59)->format(implode(' ', $start_formats)); |
|
1900 | + $where['Datetime.DTT_EVT_start'] = ['BETWEEN', [$start, $end]]; |
|
1901 | + } elseif ($status === 'month') { |
|
1902 | + $now = date('Y-m-01'); |
|
1903 | + $DateTime = |
|
1904 | + new DateTime($now, new DateTimeZone(EEM_Event::instance()->get_timezone())); |
|
1905 | + $start = $DateTime->setTime(0, 0)->format(implode(' ', $start_formats)); |
|
1906 | + $end = $DateTime->setDate(date('Y'), date('m'), $DateTime->format('t')) |
|
1907 | + ->setTime(23, 59, 59) |
|
1908 | + ->format(implode(' ', $start_formats)); |
|
1909 | + $where['Datetime.DTT_EVT_start'] = ['BETWEEN', [$start, $end]]; |
|
1910 | + } |
|
1911 | + if (! EE_Registry::instance()->CAP->current_user_can('ee_read_others_events', 'get_events')) { |
|
1912 | + $where['EVT_wp_user'] = get_current_user_id(); |
|
1913 | + } else { |
|
1914 | + if (! isset($where['status'])) { |
|
1915 | + if (! EE_Registry::instance()->CAP->current_user_can('ee_read_private_events', 'get_events')) { |
|
1916 | + $where['OR'] = [ |
|
1917 | + 'status*restrict_private' => ['!=', 'private'], |
|
1918 | + 'AND' => [ |
|
1919 | + 'status*inclusive' => ['=', 'private'], |
|
1920 | + 'EVT_wp_user' => get_current_user_id(), |
|
1921 | + ], |
|
1922 | + ]; |
|
1923 | + } |
|
1924 | + } |
|
1925 | + } |
|
1926 | + $wp_user = $this->request->getRequestParam('EVT_wp_user', 0, 'int'); |
|
1927 | + if ( |
|
1928 | + $wp_user |
|
1929 | + && $wp_user !== get_current_user_id() |
|
1930 | + && EE_Registry::instance()->CAP->current_user_can('ee_read_others_events', 'get_events') |
|
1931 | + ) { |
|
1932 | + $where['EVT_wp_user'] = $wp_user; |
|
1933 | + } |
|
1934 | + // search query handling |
|
1935 | + $search_term = $this->request->getRequestParam('s'); |
|
1936 | + if ($search_term) { |
|
1937 | + $search_term = '%' . $search_term . '%'; |
|
1938 | + $where['OR'] = [ |
|
1939 | + 'EVT_name' => ['LIKE', $search_term], |
|
1940 | + 'EVT_desc' => ['LIKE', $search_term], |
|
1941 | + 'EVT_short_desc' => ['LIKE', $search_term], |
|
1942 | + ]; |
|
1943 | + } |
|
1944 | + // filter events by venue. |
|
1945 | + $venue = $this->request->getRequestParam('venue', 0, 'int'); |
|
1946 | + if ($venue) { |
|
1947 | + $where['Venue.VNU_ID'] = $venue; |
|
1948 | + } |
|
1949 | + $request_params = $this->request->requestParams(); |
|
1950 | + $where = apply_filters('FHEE__Events_Admin_Page__get_events__where', $where, $request_params); |
|
1951 | + $query_params = apply_filters( |
|
1952 | + 'FHEE__Events_Admin_Page__get_events__query_params', |
|
1953 | + [ |
|
1954 | + $where, |
|
1955 | + 'limit' => $limit, |
|
1956 | + 'order_by' => $orderby, |
|
1957 | + 'order' => $order, |
|
1958 | + 'group_by' => 'EVT_ID', |
|
1959 | + ], |
|
1960 | + $request_params |
|
1961 | + ); |
|
1962 | + |
|
1963 | + // let's first check if we have special requests coming in. |
|
1964 | + $active_status = $this->request->getRequestParam('active_status'); |
|
1965 | + if ($active_status) { |
|
1966 | + switch ($active_status) { |
|
1967 | + case 'upcoming': |
|
1968 | + return $EEM_Event->get_upcoming_events($query_params, $count); |
|
1969 | + case 'expired': |
|
1970 | + return $EEM_Event->get_expired_events($query_params, $count); |
|
1971 | + case 'active': |
|
1972 | + return $EEM_Event->get_active_events($query_params, $count); |
|
1973 | + case 'inactive': |
|
1974 | + return $EEM_Event->get_inactive_events($query_params, $count); |
|
1975 | + } |
|
1976 | + } |
|
1977 | + |
|
1978 | + return $count ? $EEM_Event->count([$where], 'EVT_ID', true) : $EEM_Event->get_all($query_params); |
|
1979 | + } |
|
1980 | + |
|
1981 | + |
|
1982 | + /** |
|
1983 | + * handling for WordPress CPT actions (trash, restore, delete) |
|
1984 | + * |
|
1985 | + * @param string $post_id |
|
1986 | + * @throws EE_Error |
|
1987 | + * @throws ReflectionException |
|
1988 | + */ |
|
1989 | + public function trash_cpt_item($post_id) |
|
1990 | + { |
|
1991 | + $this->request->setRequestParam('EVT_ID', $post_id); |
|
1992 | + $this->_trash_or_restore_event('trash', false); |
|
1993 | + } |
|
1994 | + |
|
1995 | + |
|
1996 | + /** |
|
1997 | + * @param string $post_id |
|
1998 | + * @throws EE_Error |
|
1999 | + * @throws ReflectionException |
|
2000 | + */ |
|
2001 | + public function restore_cpt_item($post_id) |
|
2002 | + { |
|
2003 | + $this->request->setRequestParam('EVT_ID', $post_id); |
|
2004 | + $this->_trash_or_restore_event('draft', false); |
|
2005 | + } |
|
2006 | + |
|
2007 | + |
|
2008 | + /** |
|
2009 | + * @param string $post_id |
|
2010 | + * @throws EE_Error |
|
2011 | + * @throws EE_Error |
|
2012 | + */ |
|
2013 | + public function delete_cpt_item($post_id) |
|
2014 | + { |
|
2015 | + throw new EE_Error( |
|
2016 | + esc_html__( |
|
2017 | + 'Please contact Event Espresso support with the details of the steps taken to produce this error.', |
|
2018 | + 'event_espresso' |
|
2019 | + ) |
|
2020 | + ); |
|
2021 | + // $this->request->setRequestParam('EVT_ID', $post_id); |
|
2022 | + // $this->_delete_event(); |
|
2023 | + } |
|
2024 | + |
|
2025 | + |
|
2026 | + /** |
|
2027 | + * _trash_or_restore_event |
|
2028 | + * |
|
2029 | + * @access protected |
|
2030 | + * @param string $event_status |
|
2031 | + * @param bool $redirect_after |
|
2032 | + * @throws EE_Error |
|
2033 | + * @throws EE_Error |
|
2034 | + * @throws ReflectionException |
|
2035 | + */ |
|
2036 | + protected function _trash_or_restore_event($event_status = 'trash', $redirect_after = true) |
|
2037 | + { |
|
2038 | + // determine the event id and set to array. |
|
2039 | + $EVT_ID = $this->request->getRequestParam('EVT_ID', 0, 'int'); |
|
2040 | + // loop thru events |
|
2041 | + if ($EVT_ID) { |
|
2042 | + // clean status |
|
2043 | + $event_status = sanitize_key($event_status); |
|
2044 | + // grab status |
|
2045 | + if (! empty($event_status)) { |
|
2046 | + $success = $this->_change_event_status($EVT_ID, $event_status); |
|
2047 | + } else { |
|
2048 | + $success = false; |
|
2049 | + $msg = esc_html__( |
|
2050 | + 'An error occurred. The event could not be moved to the trash because a valid event status was not not supplied.', |
|
2051 | + 'event_espresso' |
|
2052 | + ); |
|
2053 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2054 | + } |
|
2055 | + } else { |
|
2056 | + $success = false; |
|
2057 | + $msg = esc_html__( |
|
2058 | + 'An error occurred. The event could not be moved to the trash because a valid event ID was not not supplied.', |
|
2059 | + 'event_espresso' |
|
2060 | + ); |
|
2061 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2062 | + } |
|
2063 | + $action = $event_status == 'trash' ? 'moved to the trash' : 'restored from the trash'; |
|
2064 | + if ($redirect_after) { |
|
2065 | + $this->_redirect_after_action($success, 'Event', $action, ['action' => 'default']); |
|
2066 | + } |
|
2067 | + } |
|
2068 | + |
|
2069 | + |
|
2070 | + /** |
|
2071 | + * _trash_or_restore_events |
|
2072 | + * |
|
2073 | + * @access protected |
|
2074 | + * @param string $event_status |
|
2075 | + * @return void |
|
2076 | + * @throws EE_Error |
|
2077 | + * @throws EE_Error |
|
2078 | + * @throws ReflectionException |
|
2079 | + */ |
|
2080 | + protected function _trash_or_restore_events($event_status = 'trash') |
|
2081 | + { |
|
2082 | + // clean status |
|
2083 | + $event_status = sanitize_key($event_status); |
|
2084 | + // grab status |
|
2085 | + if (! empty($event_status)) { |
|
2086 | + $success = true; |
|
2087 | + // determine the event id and set to array. |
|
2088 | + $EVT_IDs = $this->request->getRequestParam('EVT_IDs', [], 'int', true); |
|
2089 | + // loop thru events |
|
2090 | + foreach ($EVT_IDs as $EVT_ID) { |
|
2091 | + if ($EVT_ID = absint($EVT_ID)) { |
|
2092 | + $results = $this->_change_event_status($EVT_ID, $event_status); |
|
2093 | + $success = $results !== false ? $success : false; |
|
2094 | + } else { |
|
2095 | + $msg = sprintf( |
|
2096 | + esc_html__( |
|
2097 | + 'An error occurred. Event #%d could not be moved to the trash because a valid event ID was not not supplied.', |
|
2098 | + 'event_espresso' |
|
2099 | + ), |
|
2100 | + $EVT_ID |
|
2101 | + ); |
|
2102 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2103 | + $success = false; |
|
2104 | + } |
|
2105 | + } |
|
2106 | + } else { |
|
2107 | + $success = false; |
|
2108 | + $msg = esc_html__( |
|
2109 | + 'An error occurred. The event could not be moved to the trash because a valid event status was not not supplied.', |
|
2110 | + 'event_espresso' |
|
2111 | + ); |
|
2112 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2113 | + } |
|
2114 | + // in order to force a pluralized result message we need to send back a success status greater than 1 |
|
2115 | + $success = $success ? 2 : false; |
|
2116 | + $action = $event_status == 'trash' ? 'moved to the trash' : 'restored from the trash'; |
|
2117 | + $this->_redirect_after_action($success, 'Events', $action, ['action' => 'default']); |
|
2118 | + } |
|
2119 | + |
|
2120 | + |
|
2121 | + /** |
|
2122 | + * @param int $EVT_ID |
|
2123 | + * @param string $event_status |
|
2124 | + * @return bool |
|
2125 | + * @throws EE_Error |
|
2126 | + * @throws ReflectionException |
|
2127 | + */ |
|
2128 | + private function _change_event_status($EVT_ID = 0, $event_status = '') |
|
2129 | + { |
|
2130 | + // grab event id |
|
2131 | + if (! $EVT_ID) { |
|
2132 | + $msg = esc_html__( |
|
2133 | + 'An error occurred. No Event ID or an invalid Event ID was received.', |
|
2134 | + 'event_espresso' |
|
2135 | + ); |
|
2136 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2137 | + return false; |
|
2138 | + } |
|
2139 | + $this->_cpt_model_obj = EEM_Event::instance()->get_one_by_ID($EVT_ID); |
|
2140 | + // clean status |
|
2141 | + $event_status = sanitize_key($event_status); |
|
2142 | + // grab status |
|
2143 | + if (empty($event_status)) { |
|
2144 | + $msg = esc_html__( |
|
2145 | + 'An error occurred. No Event Status or an invalid Event Status was received.', |
|
2146 | + 'event_espresso' |
|
2147 | + ); |
|
2148 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2149 | + return false; |
|
2150 | + } |
|
2151 | + // was event trashed or restored ? |
|
2152 | + switch ($event_status) { |
|
2153 | + case 'draft': |
|
2154 | + $action = 'restored from the trash'; |
|
2155 | + $hook = 'AHEE_event_restored_from_trash'; |
|
2156 | + break; |
|
2157 | + case 'trash': |
|
2158 | + $action = 'moved to the trash'; |
|
2159 | + $hook = 'AHEE_event_moved_to_trash'; |
|
2160 | + break; |
|
2161 | + default: |
|
2162 | + $action = 'updated'; |
|
2163 | + $hook = false; |
|
2164 | + } |
|
2165 | + // use class to change status |
|
2166 | + $this->_cpt_model_obj->set_status($event_status); |
|
2167 | + $success = $this->_cpt_model_obj->save(); |
|
2168 | + if (! $success) { |
|
2169 | + $msg = sprintf(esc_html__('An error occurred. The event could not be %s.', 'event_espresso'), $action); |
|
2170 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2171 | + return false; |
|
2172 | + } |
|
2173 | + if ($hook) { |
|
2174 | + do_action($hook); |
|
2175 | + } |
|
2176 | + return true; |
|
2177 | + } |
|
2178 | + |
|
2179 | + |
|
2180 | + /** |
|
2181 | + * @param array $event_ids |
|
2182 | + * @return array |
|
2183 | + * @since 4.10.23.p |
|
2184 | + */ |
|
2185 | + private function cleanEventIds(array $event_ids) |
|
2186 | + { |
|
2187 | + return array_map('absint', $event_ids); |
|
2188 | + } |
|
2189 | + |
|
2190 | + |
|
2191 | + /** |
|
2192 | + * @return array |
|
2193 | + * @since 4.10.23.p |
|
2194 | + */ |
|
2195 | + private function getEventIdsFromRequest() |
|
2196 | + { |
|
2197 | + if ($this->request->requestParamIsSet('EVT_IDs')) { |
|
2198 | + return $this->request->getRequestParam('EVT_IDs', [], 'int', true); |
|
2199 | + } else { |
|
2200 | + return $this->request->getRequestParam('EVT_ID', [], 'int', true); |
|
2201 | + } |
|
2202 | + } |
|
2203 | + |
|
2204 | + |
|
2205 | + /** |
|
2206 | + * @param bool $preview_delete |
|
2207 | + * @throws EE_Error |
|
2208 | + */ |
|
2209 | + protected function _delete_event($preview_delete = true) |
|
2210 | + { |
|
2211 | + $this->_delete_events($preview_delete); |
|
2212 | + } |
|
2213 | + |
|
2214 | + |
|
2215 | + /** |
|
2216 | + * Gets the tree traversal batch persister. |
|
2217 | + * |
|
2218 | + * @return NodeGroupDao |
|
2219 | + * @throws InvalidArgumentException |
|
2220 | + * @throws InvalidDataTypeException |
|
2221 | + * @throws InvalidInterfaceException |
|
2222 | + * @since 4.10.12.p |
|
2223 | + */ |
|
2224 | + protected function getModelObjNodeGroupPersister() |
|
2225 | + { |
|
2226 | + if (! $this->model_obj_node_group_persister instanceof NodeGroupDao) { |
|
2227 | + $this->model_obj_node_group_persister = |
|
2228 | + $this->getLoader()->load('\EventEspresso\core\services\orm\tree_traversal\NodeGroupDao'); |
|
2229 | + } |
|
2230 | + return $this->model_obj_node_group_persister; |
|
2231 | + } |
|
2232 | + |
|
2233 | + |
|
2234 | + /** |
|
2235 | + * @param bool $preview_delete |
|
2236 | + * @return void |
|
2237 | + * @throws EE_Error |
|
2238 | + */ |
|
2239 | + protected function _delete_events($preview_delete = true) |
|
2240 | + { |
|
2241 | + $event_ids = $this->getEventIdsFromRequest(); |
|
2242 | + if ($preview_delete) { |
|
2243 | + $this->generateDeletionPreview($event_ids); |
|
2244 | + } else { |
|
2245 | + EEM_Event::instance()->delete_permanently([['EVT_ID' => ['IN', $event_ids]]]); |
|
2246 | + } |
|
2247 | + } |
|
2248 | + |
|
2249 | + |
|
2250 | + /** |
|
2251 | + * @param array $event_ids |
|
2252 | + */ |
|
2253 | + protected function generateDeletionPreview(array $event_ids) |
|
2254 | + { |
|
2255 | + $event_ids = $this->cleanEventIds($event_ids); |
|
2256 | + // Set a code we can use to reference this deletion task in the batch jobs and preview page. |
|
2257 | + $deletion_job_code = $this->getModelObjNodeGroupPersister()->generateGroupCode(); |
|
2258 | + $return_url = EE_Admin_Page::add_query_args_and_nonce( |
|
2259 | + [ |
|
2260 | + 'action' => 'preview_deletion', |
|
2261 | + 'deletion_job_code' => $deletion_job_code, |
|
2262 | + ], |
|
2263 | + $this->_admin_base_url |
|
2264 | + ); |
|
2265 | + EEH_URL::safeRedirectAndExit( |
|
2266 | + EE_Admin_Page::add_query_args_and_nonce( |
|
2267 | + [ |
|
2268 | + 'page' => 'espresso_batch', |
|
2269 | + 'batch' => EED_Batch::batch_job, |
|
2270 | + 'EVT_IDs' => $event_ids, |
|
2271 | + 'deletion_job_code' => $deletion_job_code, |
|
2272 | + 'job_handler' => urlencode('EventEspressoBatchRequest\JobHandlers\PreviewEventDeletion'), |
|
2273 | + 'return_url' => urlencode($return_url), |
|
2274 | + ], |
|
2275 | + admin_url() |
|
2276 | + ) |
|
2277 | + ); |
|
2278 | + } |
|
2279 | + |
|
2280 | + |
|
2281 | + /** |
|
2282 | + * Checks for a POST submission |
|
2283 | + * |
|
2284 | + * @since 4.10.12.p |
|
2285 | + */ |
|
2286 | + protected function confirmDeletion() |
|
2287 | + { |
|
2288 | + $deletion_redirect_logic = |
|
2289 | + $this->getLoader()->getShared('\EventEspresso\core\domain\services\admin\events\data\ConfirmDeletion'); |
|
2290 | + $deletion_redirect_logic->handle($this->get_request_data(), $this->admin_base_url()); |
|
2291 | + } |
|
2292 | + |
|
2293 | + |
|
2294 | + /** |
|
2295 | + * A page for users to preview what exactly will be deleted, and confirm they want to delete it. |
|
2296 | + * |
|
2297 | + * @throws EE_Error |
|
2298 | + * @since 4.10.12.p |
|
2299 | + */ |
|
2300 | + protected function previewDeletion() |
|
2301 | + { |
|
2302 | + $preview_deletion_logic = |
|
2303 | + $this->getLoader()->getShared('\EventEspresso\core\domain\services\admin\events\data\PreviewDeletion'); |
|
2304 | + $this->set_template_args($preview_deletion_logic->handle($this->get_request_data(), $this->admin_base_url())); |
|
2305 | + $this->display_admin_page_with_no_sidebar(); |
|
2306 | + } |
|
2307 | + |
|
2308 | + |
|
2309 | + /** |
|
2310 | + * get total number of events |
|
2311 | + * |
|
2312 | + * @access public |
|
2313 | + * @return int |
|
2314 | + * @throws EE_Error |
|
2315 | + * @throws EE_Error |
|
2316 | + */ |
|
2317 | + public function total_events() |
|
2318 | + { |
|
2319 | + return EEM_Event::instance()->count( |
|
2320 | + ['caps' => 'read_admin'], |
|
2321 | + 'EVT_ID', |
|
2322 | + true |
|
2323 | + ); |
|
2324 | + } |
|
2325 | + |
|
2326 | + |
|
2327 | + /** |
|
2328 | + * get total number of draft events |
|
2329 | + * |
|
2330 | + * @access public |
|
2331 | + * @return int |
|
2332 | + * @throws EE_Error |
|
2333 | + * @throws EE_Error |
|
2334 | + */ |
|
2335 | + public function total_events_draft() |
|
2336 | + { |
|
2337 | + return EEM_Event::instance()->count( |
|
2338 | + [ |
|
2339 | + ['status' => ['IN', ['draft', 'auto-draft']]], |
|
2340 | + 'caps' => 'read_admin', |
|
2341 | + ], |
|
2342 | + 'EVT_ID', |
|
2343 | + true |
|
2344 | + ); |
|
2345 | + } |
|
2346 | + |
|
2347 | + |
|
2348 | + /** |
|
2349 | + * get total number of trashed events |
|
2350 | + * |
|
2351 | + * @access public |
|
2352 | + * @return int |
|
2353 | + * @throws EE_Error |
|
2354 | + * @throws EE_Error |
|
2355 | + */ |
|
2356 | + public function total_trashed_events() |
|
2357 | + { |
|
2358 | + return EEM_Event::instance()->count( |
|
2359 | + [ |
|
2360 | + ['status' => 'trash'], |
|
2361 | + 'caps' => 'read_admin', |
|
2362 | + ], |
|
2363 | + 'EVT_ID', |
|
2364 | + true |
|
2365 | + ); |
|
2366 | + } |
|
2367 | + |
|
2368 | + |
|
2369 | + /** |
|
2370 | + * _default_event_settings |
|
2371 | + * This generates the Default Settings Tab |
|
2372 | + * |
|
2373 | + * @return void |
|
2374 | + * @throws EE_Error |
|
2375 | + */ |
|
2376 | + protected function _default_event_settings() |
|
2377 | + { |
|
2378 | + $this->_set_add_edit_form_tags('update_default_event_settings'); |
|
2379 | + $this->_set_publish_post_box_vars(null, false, false, null, false); |
|
2380 | + $this->_template_args['admin_page_content'] = $this->_default_event_settings_form()->get_html(); |
|
2381 | + $this->display_admin_page_with_sidebar(); |
|
2382 | + } |
|
2383 | + |
|
2384 | + |
|
2385 | + /** |
|
2386 | + * Return the form for event settings. |
|
2387 | + * |
|
2388 | + * @return EE_Form_Section_Proper |
|
2389 | + * @throws EE_Error |
|
2390 | + */ |
|
2391 | + protected function _default_event_settings_form() |
|
2392 | + { |
|
2393 | + $registration_config = EE_Registry::instance()->CFG->registration; |
|
2394 | + $registration_stati_for_selection = EEM_Registration::reg_status_array( |
|
2395 | + // exclude |
|
2396 | + [ |
|
2397 | + EEM_Registration::status_id_cancelled, |
|
2398 | + EEM_Registration::status_id_declined, |
|
2399 | + EEM_Registration::status_id_incomplete, |
|
2400 | + EEM_Registration::status_id_wait_list, |
|
2401 | + ], |
|
2402 | + true |
|
2403 | + ); |
|
2404 | + return new EE_Form_Section_Proper( |
|
2405 | + [ |
|
2406 | + 'name' => 'update_default_event_settings', |
|
2407 | + 'html_id' => 'update_default_event_settings', |
|
2408 | + 'html_class' => 'form-table', |
|
2409 | + 'layout_strategy' => new EE_Admin_Two_Column_Layout(), |
|
2410 | + 'subsections' => apply_filters( |
|
2411 | + 'FHEE__Events_Admin_Page___default_event_settings_form__form_subsections', |
|
2412 | + [ |
|
2413 | + 'default_reg_status' => new EE_Select_Input( |
|
2414 | + $registration_stati_for_selection, |
|
2415 | + [ |
|
2416 | + 'default' => isset($registration_config->default_STS_ID) |
|
2417 | + && array_key_exists( |
|
2418 | + $registration_config->default_STS_ID, |
|
2419 | + $registration_stati_for_selection |
|
2420 | + ) |
|
2421 | + ? sanitize_text_field($registration_config->default_STS_ID) |
|
2422 | + : EEM_Registration::status_id_pending_payment, |
|
2423 | + 'html_label_text' => esc_html__('Default Registration Status', 'event_espresso') |
|
2424 | + . EEH_Template::get_help_tab_link( |
|
2425 | + 'default_settings_status_help_tab' |
|
2426 | + ), |
|
2427 | + 'html_help_text' => esc_html__( |
|
2428 | + 'This setting allows you to preselect what the default registration status setting is when creating an event. Note that changing this setting does NOT retroactively apply it to existing events.', |
|
2429 | + 'event_espresso' |
|
2430 | + ), |
|
2431 | + ] |
|
2432 | + ), |
|
2433 | + 'default_max_tickets' => new EE_Integer_Input( |
|
2434 | + [ |
|
2435 | + 'default' => isset($registration_config->default_maximum_number_of_tickets) |
|
2436 | + ? $registration_config->default_maximum_number_of_tickets |
|
2437 | + : EEM_Event::get_default_additional_limit(), |
|
2438 | + 'html_label_text' => esc_html__( |
|
2439 | + 'Default Maximum Tickets Allowed Per Order:', |
|
2440 | + 'event_espresso' |
|
2441 | + ) |
|
2442 | + . EEH_Template::get_help_tab_link( |
|
2443 | + 'default_maximum_tickets_help_tab"' |
|
2444 | + ), |
|
2445 | + 'html_help_text' => esc_html__( |
|
2446 | + 'This setting allows you to indicate what will be the default for the maximum number of tickets per order when creating new events.', |
|
2447 | + 'event_espresso' |
|
2448 | + ), |
|
2449 | + ] |
|
2450 | + ), |
|
2451 | + ] |
|
2452 | + ), |
|
2453 | + ] |
|
2454 | + ); |
|
2455 | + } |
|
2456 | + |
|
2457 | + |
|
2458 | + /** |
|
2459 | + * _update_default_event_settings |
|
2460 | + * |
|
2461 | + * @access protected |
|
2462 | + * @return void |
|
2463 | + * @throws EE_Error |
|
2464 | + */ |
|
2465 | + protected function _update_default_event_settings() |
|
2466 | + { |
|
2467 | + $registration_config = EE_Registry::instance()->CFG->registration; |
|
2468 | + $form = $this->_default_event_settings_form(); |
|
2469 | + if ($form->was_submitted()) { |
|
2470 | + $form->receive_form_submission(); |
|
2471 | + if ($form->is_valid()) { |
|
2472 | + $valid_data = $form->valid_data(); |
|
2473 | + if (isset($valid_data['default_reg_status'])) { |
|
2474 | + $registration_config->default_STS_ID = $valid_data['default_reg_status']; |
|
2475 | + } |
|
2476 | + if (isset($valid_data['default_max_tickets'])) { |
|
2477 | + $registration_config->default_maximum_number_of_tickets = $valid_data['default_max_tickets']; |
|
2478 | + } |
|
2479 | + // update because data was valid! |
|
2480 | + EE_Registry::instance()->CFG->update_espresso_config(); |
|
2481 | + EE_Error::overwrite_success(); |
|
2482 | + EE_Error::add_success( |
|
2483 | + esc_html__('Default Event Settings were updated', 'event_espresso') |
|
2484 | + ); |
|
2485 | + } |
|
2486 | + } |
|
2487 | + $this->_redirect_after_action(0, '', '', ['action' => 'default_event_settings'], true); |
|
2488 | + } |
|
2489 | + |
|
2490 | + |
|
2491 | + /************* Templates ************* |
|
20 | 2492 | * |
21 | - * @var EE_Event $_event |
|
22 | - */ |
|
23 | - protected $_event; |
|
24 | - |
|
25 | - |
|
26 | - /** |
|
27 | - * This will hold the category object for category_details screen. |
|
28 | - * |
|
29 | - * @var stdClass $_category |
|
30 | - */ |
|
31 | - protected $_category; |
|
32 | - |
|
33 | - |
|
34 | - /** |
|
35 | - * This will hold the event model instance |
|
36 | - * |
|
37 | - * @var EEM_Event $_event_model |
|
38 | - */ |
|
39 | - protected $_event_model; |
|
40 | - |
|
41 | - |
|
42 | - /** |
|
43 | - * @var EE_Event |
|
44 | - */ |
|
45 | - protected $_cpt_model_obj = false; |
|
46 | - |
|
47 | - |
|
48 | - /** |
|
49 | - * @var NodeGroupDao |
|
50 | - */ |
|
51 | - protected $model_obj_node_group_persister; |
|
52 | - |
|
53 | - |
|
54 | - /** |
|
55 | - * Initialize page props for this admin page group. |
|
56 | - */ |
|
57 | - protected function _init_page_props() |
|
58 | - { |
|
59 | - $this->page_slug = EVENTS_PG_SLUG; |
|
60 | - $this->page_label = EVENTS_LABEL; |
|
61 | - $this->_admin_base_url = EVENTS_ADMIN_URL; |
|
62 | - $this->_admin_base_path = EVENTS_ADMIN; |
|
63 | - $this->_cpt_model_names = [ |
|
64 | - 'create_new' => 'EEM_Event', |
|
65 | - 'edit' => 'EEM_Event', |
|
66 | - ]; |
|
67 | - $this->_cpt_edit_routes = [ |
|
68 | - 'espresso_events' => 'edit', |
|
69 | - ]; |
|
70 | - add_action( |
|
71 | - 'AHEE__EE_Admin_Page_CPT__set_model_object__after_set_object', |
|
72 | - [$this, 'verify_event_edit'], |
|
73 | - 10, |
|
74 | - 2 |
|
75 | - ); |
|
76 | - } |
|
77 | - |
|
78 | - |
|
79 | - /** |
|
80 | - * Sets the ajax hooks used for this admin page group. |
|
81 | - */ |
|
82 | - protected function _ajax_hooks() |
|
83 | - { |
|
84 | - add_action('wp_ajax_ee_save_timezone_setting', [$this, 'saveTimezoneString']); |
|
85 | - } |
|
86 | - |
|
87 | - |
|
88 | - /** |
|
89 | - * Sets the page properties for this admin page group. |
|
90 | - */ |
|
91 | - protected function _define_page_props() |
|
92 | - { |
|
93 | - $this->_admin_page_title = EVENTS_LABEL; |
|
94 | - $this->_labels = [ |
|
95 | - 'buttons' => [ |
|
96 | - 'add' => esc_html__('Add New Event', 'event_espresso'), |
|
97 | - 'edit' => esc_html__('Edit Event', 'event_espresso'), |
|
98 | - 'delete' => esc_html__('Delete Event', 'event_espresso'), |
|
99 | - 'add_category' => esc_html__('Add New Category', 'event_espresso'), |
|
100 | - 'edit_category' => esc_html__('Edit Category', 'event_espresso'), |
|
101 | - 'delete_category' => esc_html__('Delete Category', 'event_espresso'), |
|
102 | - ], |
|
103 | - 'editor_title' => [ |
|
104 | - 'espresso_events' => esc_html__('Enter event title here', 'event_espresso'), |
|
105 | - ], |
|
106 | - 'publishbox' => [ |
|
107 | - 'create_new' => esc_html__('Save New Event', 'event_espresso'), |
|
108 | - 'edit' => esc_html__('Update Event', 'event_espresso'), |
|
109 | - 'add_category' => esc_html__('Save New Category', 'event_espresso'), |
|
110 | - 'edit_category' => esc_html__('Update Category', 'event_espresso'), |
|
111 | - 'template_settings' => esc_html__('Update Settings', 'event_espresso'), |
|
112 | - ], |
|
113 | - ]; |
|
114 | - } |
|
115 | - |
|
116 | - |
|
117 | - /** |
|
118 | - * Sets the page routes property for this admin page group. |
|
119 | - */ |
|
120 | - protected function _set_page_routes() |
|
121 | - { |
|
122 | - // load formatter helper |
|
123 | - // load field generator helper |
|
124 | - // is there a evt_id in the request? |
|
125 | - $EVT_ID = $this->request->getRequestParam('EVT_ID', 0, 'int'); |
|
126 | - $EVT_ID = $this->request->getRequestParam('post', $EVT_ID, 'int'); |
|
127 | - |
|
128 | - $this->_page_routes = [ |
|
129 | - 'default' => [ |
|
130 | - 'func' => '_events_overview_list_table', |
|
131 | - 'capability' => 'ee_read_events', |
|
132 | - ], |
|
133 | - 'create_new' => [ |
|
134 | - 'func' => '_create_new_cpt_item', |
|
135 | - 'capability' => 'ee_edit_events', |
|
136 | - ], |
|
137 | - 'edit' => [ |
|
138 | - 'func' => '_edit_cpt_item', |
|
139 | - 'capability' => 'ee_edit_event', |
|
140 | - 'obj_id' => $EVT_ID, |
|
141 | - ], |
|
142 | - 'copy_event' => [ |
|
143 | - 'func' => '_copy_events', |
|
144 | - 'capability' => 'ee_edit_event', |
|
145 | - 'obj_id' => $EVT_ID, |
|
146 | - 'noheader' => true, |
|
147 | - ], |
|
148 | - 'trash_event' => [ |
|
149 | - 'func' => '_trash_or_restore_event', |
|
150 | - 'args' => ['event_status' => 'trash'], |
|
151 | - 'capability' => 'ee_delete_event', |
|
152 | - 'obj_id' => $EVT_ID, |
|
153 | - 'noheader' => true, |
|
154 | - ], |
|
155 | - 'trash_events' => [ |
|
156 | - 'func' => '_trash_or_restore_events', |
|
157 | - 'args' => ['event_status' => 'trash'], |
|
158 | - 'capability' => 'ee_delete_events', |
|
159 | - 'noheader' => true, |
|
160 | - ], |
|
161 | - 'restore_event' => [ |
|
162 | - 'func' => '_trash_or_restore_event', |
|
163 | - 'args' => ['event_status' => 'draft'], |
|
164 | - 'capability' => 'ee_delete_event', |
|
165 | - 'obj_id' => $EVT_ID, |
|
166 | - 'noheader' => true, |
|
167 | - ], |
|
168 | - 'restore_events' => [ |
|
169 | - 'func' => '_trash_or_restore_events', |
|
170 | - 'args' => ['event_status' => 'draft'], |
|
171 | - 'capability' => 'ee_delete_events', |
|
172 | - 'noheader' => true, |
|
173 | - ], |
|
174 | - 'delete_event' => [ |
|
175 | - 'func' => '_delete_event', |
|
176 | - 'capability' => 'ee_delete_event', |
|
177 | - 'obj_id' => $EVT_ID, |
|
178 | - 'noheader' => true, |
|
179 | - ], |
|
180 | - 'delete_events' => [ |
|
181 | - 'func' => '_delete_events', |
|
182 | - 'capability' => 'ee_delete_events', |
|
183 | - 'noheader' => true, |
|
184 | - ], |
|
185 | - 'view_report' => [ |
|
186 | - 'func' => '_view_report', |
|
187 | - 'capability' => 'ee_edit_events', |
|
188 | - ], |
|
189 | - 'default_event_settings' => [ |
|
190 | - 'func' => '_default_event_settings', |
|
191 | - 'capability' => 'manage_options', |
|
192 | - ], |
|
193 | - 'update_default_event_settings' => [ |
|
194 | - 'func' => '_update_default_event_settings', |
|
195 | - 'capability' => 'manage_options', |
|
196 | - 'noheader' => true, |
|
197 | - ], |
|
198 | - 'template_settings' => [ |
|
199 | - 'func' => '_template_settings', |
|
200 | - 'capability' => 'manage_options', |
|
201 | - ], |
|
202 | - // event category tab related |
|
203 | - 'add_category' => [ |
|
204 | - 'func' => '_category_details', |
|
205 | - 'capability' => 'ee_edit_event_category', |
|
206 | - 'args' => ['add'], |
|
207 | - ], |
|
208 | - 'edit_category' => [ |
|
209 | - 'func' => '_category_details', |
|
210 | - 'capability' => 'ee_edit_event_category', |
|
211 | - 'args' => ['edit'], |
|
212 | - ], |
|
213 | - 'delete_categories' => [ |
|
214 | - 'func' => '_delete_categories', |
|
215 | - 'capability' => 'ee_delete_event_category', |
|
216 | - 'noheader' => true, |
|
217 | - ], |
|
218 | - 'delete_category' => [ |
|
219 | - 'func' => '_delete_categories', |
|
220 | - 'capability' => 'ee_delete_event_category', |
|
221 | - 'noheader' => true, |
|
222 | - ], |
|
223 | - 'insert_category' => [ |
|
224 | - 'func' => '_insert_or_update_category', |
|
225 | - 'args' => ['new_category' => true], |
|
226 | - 'capability' => 'ee_edit_event_category', |
|
227 | - 'noheader' => true, |
|
228 | - ], |
|
229 | - 'update_category' => [ |
|
230 | - 'func' => '_insert_or_update_category', |
|
231 | - 'args' => ['new_category' => false], |
|
232 | - 'capability' => 'ee_edit_event_category', |
|
233 | - 'noheader' => true, |
|
234 | - ], |
|
235 | - 'category_list' => [ |
|
236 | - 'func' => '_category_list_table', |
|
237 | - 'capability' => 'ee_manage_event_categories', |
|
238 | - ], |
|
239 | - 'preview_deletion' => [ |
|
240 | - 'func' => 'previewDeletion', |
|
241 | - 'capability' => 'ee_delete_events', |
|
242 | - ], |
|
243 | - 'confirm_deletion' => [ |
|
244 | - 'func' => 'confirmDeletion', |
|
245 | - 'capability' => 'ee_delete_events', |
|
246 | - 'noheader' => true, |
|
247 | - ], |
|
248 | - ]; |
|
249 | - } |
|
250 | - |
|
251 | - |
|
252 | - /** |
|
253 | - * Set the _page_config property for this admin page group. |
|
254 | - */ |
|
255 | - protected function _set_page_config() |
|
256 | - { |
|
257 | - $post_id = $this->request->getRequestParam('post', 0, 'int'); |
|
258 | - $EVT_CAT_ID = $this->request->getRequestParam('EVT_CAT_ID', 0, 'int'); |
|
259 | - $this->_page_config = [ |
|
260 | - 'default' => [ |
|
261 | - 'nav' => [ |
|
262 | - 'label' => esc_html__('Overview', 'event_espresso'), |
|
263 | - 'order' => 10, |
|
264 | - ], |
|
265 | - 'list_table' => 'Events_Admin_List_Table', |
|
266 | - 'help_tabs' => [ |
|
267 | - 'events_overview_help_tab' => [ |
|
268 | - 'title' => esc_html__('Events Overview', 'event_espresso'), |
|
269 | - 'filename' => 'events_overview', |
|
270 | - ], |
|
271 | - 'events_overview_table_column_headings_help_tab' => [ |
|
272 | - 'title' => esc_html__('Events Overview Table Column Headings', 'event_espresso'), |
|
273 | - 'filename' => 'events_overview_table_column_headings', |
|
274 | - ], |
|
275 | - 'events_overview_filters_help_tab' => [ |
|
276 | - 'title' => esc_html__('Events Overview Filters', 'event_espresso'), |
|
277 | - 'filename' => 'events_overview_filters', |
|
278 | - ], |
|
279 | - 'events_overview_view_help_tab' => [ |
|
280 | - 'title' => esc_html__('Events Overview Views', 'event_espresso'), |
|
281 | - 'filename' => 'events_overview_views', |
|
282 | - ], |
|
283 | - 'events_overview_other_help_tab' => [ |
|
284 | - 'title' => esc_html__('Events Overview Other', 'event_espresso'), |
|
285 | - 'filename' => 'events_overview_other', |
|
286 | - ], |
|
287 | - ], |
|
288 | - 'qtips' => [ |
|
289 | - 'EE_Event_List_Table_Tips', |
|
290 | - ], |
|
291 | - 'require_nonce' => false, |
|
292 | - ], |
|
293 | - 'create_new' => [ |
|
294 | - 'nav' => [ |
|
295 | - 'label' => esc_html__('Add Event', 'event_espresso'), |
|
296 | - 'order' => 5, |
|
297 | - 'persistent' => false, |
|
298 | - ], |
|
299 | - 'metaboxes' => ['_register_event_editor_meta_boxes'], |
|
300 | - 'help_tabs' => [ |
|
301 | - 'event_editor_help_tab' => [ |
|
302 | - 'title' => esc_html__('Event Editor', 'event_espresso'), |
|
303 | - 'filename' => 'event_editor', |
|
304 | - ], |
|
305 | - 'event_editor_title_richtexteditor_help_tab' => [ |
|
306 | - 'title' => esc_html__('Event Title & Rich Text Editor', 'event_espresso'), |
|
307 | - 'filename' => 'event_editor_title_richtexteditor', |
|
308 | - ], |
|
309 | - 'event_editor_venue_details_help_tab' => [ |
|
310 | - 'title' => esc_html__('Event Venue Details', 'event_espresso'), |
|
311 | - 'filename' => 'event_editor_venue_details', |
|
312 | - ], |
|
313 | - 'event_editor_event_datetimes_help_tab' => [ |
|
314 | - 'title' => esc_html__('Event Datetimes', 'event_espresso'), |
|
315 | - 'filename' => 'event_editor_event_datetimes', |
|
316 | - ], |
|
317 | - 'event_editor_event_tickets_help_tab' => [ |
|
318 | - 'title' => esc_html__('Event Tickets', 'event_espresso'), |
|
319 | - 'filename' => 'event_editor_event_tickets', |
|
320 | - ], |
|
321 | - 'event_editor_event_registration_options_help_tab' => [ |
|
322 | - 'title' => esc_html__('Event Registration Options', 'event_espresso'), |
|
323 | - 'filename' => 'event_editor_event_registration_options', |
|
324 | - ], |
|
325 | - 'event_editor_tags_categories_help_tab' => [ |
|
326 | - 'title' => esc_html__('Event Tags & Categories', 'event_espresso'), |
|
327 | - 'filename' => 'event_editor_tags_categories', |
|
328 | - ], |
|
329 | - 'event_editor_questions_registrants_help_tab' => [ |
|
330 | - 'title' => esc_html__('Questions for Registrants', 'event_espresso'), |
|
331 | - 'filename' => 'event_editor_questions_registrants', |
|
332 | - ], |
|
333 | - 'event_editor_save_new_event_help_tab' => [ |
|
334 | - 'title' => esc_html__('Save New Event', 'event_espresso'), |
|
335 | - 'filename' => 'event_editor_save_new_event', |
|
336 | - ], |
|
337 | - 'event_editor_other_help_tab' => [ |
|
338 | - 'title' => esc_html__('Event Other', 'event_espresso'), |
|
339 | - 'filename' => 'event_editor_other', |
|
340 | - ], |
|
341 | - ], |
|
342 | - 'qtips' => ['EE_Event_Editor_Decaf_Tips'], |
|
343 | - 'require_nonce' => false, |
|
344 | - ], |
|
345 | - 'edit' => [ |
|
346 | - 'nav' => [ |
|
347 | - 'label' => esc_html__('Edit Event', 'event_espresso'), |
|
348 | - 'order' => 5, |
|
349 | - 'persistent' => false, |
|
350 | - 'url' => $post_id |
|
351 | - ? EE_Admin_Page::add_query_args_and_nonce( |
|
352 | - ['post' => $post_id, 'action' => 'edit'], |
|
353 | - $this->_current_page_view_url |
|
354 | - ) |
|
355 | - : $this->_admin_base_url, |
|
356 | - ], |
|
357 | - 'metaboxes' => ['_register_event_editor_meta_boxes'], |
|
358 | - 'help_tabs' => [ |
|
359 | - 'event_editor_help_tab' => [ |
|
360 | - 'title' => esc_html__('Event Editor', 'event_espresso'), |
|
361 | - 'filename' => 'event_editor', |
|
362 | - ], |
|
363 | - 'event_editor_title_richtexteditor_help_tab' => [ |
|
364 | - 'title' => esc_html__('Event Title & Rich Text Editor', 'event_espresso'), |
|
365 | - 'filename' => 'event_editor_title_richtexteditor', |
|
366 | - ], |
|
367 | - 'event_editor_venue_details_help_tab' => [ |
|
368 | - 'title' => esc_html__('Event Venue Details', 'event_espresso'), |
|
369 | - 'filename' => 'event_editor_venue_details', |
|
370 | - ], |
|
371 | - 'event_editor_event_datetimes_help_tab' => [ |
|
372 | - 'title' => esc_html__('Event Datetimes', 'event_espresso'), |
|
373 | - 'filename' => 'event_editor_event_datetimes', |
|
374 | - ], |
|
375 | - 'event_editor_event_tickets_help_tab' => [ |
|
376 | - 'title' => esc_html__('Event Tickets', 'event_espresso'), |
|
377 | - 'filename' => 'event_editor_event_tickets', |
|
378 | - ], |
|
379 | - 'event_editor_event_registration_options_help_tab' => [ |
|
380 | - 'title' => esc_html__('Event Registration Options', 'event_espresso'), |
|
381 | - 'filename' => 'event_editor_event_registration_options', |
|
382 | - ], |
|
383 | - 'event_editor_tags_categories_help_tab' => [ |
|
384 | - 'title' => esc_html__('Event Tags & Categories', 'event_espresso'), |
|
385 | - 'filename' => 'event_editor_tags_categories', |
|
386 | - ], |
|
387 | - 'event_editor_questions_registrants_help_tab' => [ |
|
388 | - 'title' => esc_html__('Questions for Registrants', 'event_espresso'), |
|
389 | - 'filename' => 'event_editor_questions_registrants', |
|
390 | - ], |
|
391 | - 'event_editor_save_new_event_help_tab' => [ |
|
392 | - 'title' => esc_html__('Save New Event', 'event_espresso'), |
|
393 | - 'filename' => 'event_editor_save_new_event', |
|
394 | - ], |
|
395 | - 'event_editor_other_help_tab' => [ |
|
396 | - 'title' => esc_html__('Event Other', 'event_espresso'), |
|
397 | - 'filename' => 'event_editor_other', |
|
398 | - ], |
|
399 | - ], |
|
400 | - 'qtips' => ['EE_Event_Editor_Decaf_Tips'], |
|
401 | - 'require_nonce' => false, |
|
402 | - ], |
|
403 | - 'default_event_settings' => [ |
|
404 | - 'nav' => [ |
|
405 | - 'label' => esc_html__('Default Settings', 'event_espresso'), |
|
406 | - 'order' => 40, |
|
407 | - ], |
|
408 | - 'metaboxes' => array_merge($this->_default_espresso_metaboxes, ['_publish_post_box']), |
|
409 | - 'labels' => [ |
|
410 | - 'publishbox' => esc_html__('Update Settings', 'event_espresso'), |
|
411 | - ], |
|
412 | - 'help_tabs' => [ |
|
413 | - 'default_settings_help_tab' => [ |
|
414 | - 'title' => esc_html__('Default Event Settings', 'event_espresso'), |
|
415 | - 'filename' => 'events_default_settings', |
|
416 | - ], |
|
417 | - 'default_settings_status_help_tab' => [ |
|
418 | - 'title' => esc_html__('Default Registration Status', 'event_espresso'), |
|
419 | - 'filename' => 'events_default_settings_status', |
|
420 | - ], |
|
421 | - 'default_maximum_tickets_help_tab' => [ |
|
422 | - 'title' => esc_html__('Default Maximum Tickets Per Order', 'event_espresso'), |
|
423 | - 'filename' => 'events_default_settings_max_tickets', |
|
424 | - ], |
|
425 | - ], |
|
426 | - 'require_nonce' => false, |
|
427 | - ], |
|
428 | - // template settings |
|
429 | - 'template_settings' => [ |
|
430 | - 'nav' => [ |
|
431 | - 'label' => esc_html__('Templates', 'event_espresso'), |
|
432 | - 'order' => 30, |
|
433 | - ], |
|
434 | - 'metaboxes' => $this->_default_espresso_metaboxes, |
|
435 | - 'help_tabs' => [ |
|
436 | - 'general_settings_templates_help_tab' => [ |
|
437 | - 'title' => esc_html__('Templates', 'event_espresso'), |
|
438 | - 'filename' => 'general_settings_templates', |
|
439 | - ], |
|
440 | - ], |
|
441 | - 'require_nonce' => false, |
|
442 | - ], |
|
443 | - // event category stuff |
|
444 | - 'add_category' => [ |
|
445 | - 'nav' => [ |
|
446 | - 'label' => esc_html__('Add Category', 'event_espresso'), |
|
447 | - 'order' => 15, |
|
448 | - 'persistent' => false, |
|
449 | - ], |
|
450 | - 'help_tabs' => [ |
|
451 | - 'add_category_help_tab' => [ |
|
452 | - 'title' => esc_html__('Add New Event Category', 'event_espresso'), |
|
453 | - 'filename' => 'events_add_category', |
|
454 | - ], |
|
455 | - ], |
|
456 | - 'metaboxes' => ['_publish_post_box'], |
|
457 | - 'require_nonce' => false, |
|
458 | - ], |
|
459 | - 'edit_category' => [ |
|
460 | - 'nav' => [ |
|
461 | - 'label' => esc_html__('Edit Category', 'event_espresso'), |
|
462 | - 'order' => 15, |
|
463 | - 'persistent' => false, |
|
464 | - 'url' => $EVT_CAT_ID |
|
465 | - ? add_query_arg( |
|
466 | - ['EVT_CAT_ID' => $EVT_CAT_ID], |
|
467 | - $this->_current_page_view_url |
|
468 | - ) |
|
469 | - : $this->_admin_base_url, |
|
470 | - ], |
|
471 | - 'help_tabs' => [ |
|
472 | - 'edit_category_help_tab' => [ |
|
473 | - 'title' => esc_html__('Edit Event Category', 'event_espresso'), |
|
474 | - 'filename' => 'events_edit_category', |
|
475 | - ], |
|
476 | - ], |
|
477 | - 'metaboxes' => ['_publish_post_box'], |
|
478 | - 'require_nonce' => false, |
|
479 | - ], |
|
480 | - 'category_list' => [ |
|
481 | - 'nav' => [ |
|
482 | - 'label' => esc_html__('Categories', 'event_espresso'), |
|
483 | - 'order' => 20, |
|
484 | - ], |
|
485 | - 'list_table' => 'Event_Categories_Admin_List_Table', |
|
486 | - 'help_tabs' => [ |
|
487 | - 'events_categories_help_tab' => [ |
|
488 | - 'title' => esc_html__('Event Categories', 'event_espresso'), |
|
489 | - 'filename' => 'events_categories', |
|
490 | - ], |
|
491 | - 'events_categories_table_column_headings_help_tab' => [ |
|
492 | - 'title' => esc_html__('Event Categories Table Column Headings', 'event_espresso'), |
|
493 | - 'filename' => 'events_categories_table_column_headings', |
|
494 | - ], |
|
495 | - 'events_categories_view_help_tab' => [ |
|
496 | - 'title' => esc_html__('Event Categories Views', 'event_espresso'), |
|
497 | - 'filename' => 'events_categories_views', |
|
498 | - ], |
|
499 | - 'events_categories_other_help_tab' => [ |
|
500 | - 'title' => esc_html__('Event Categories Other', 'event_espresso'), |
|
501 | - 'filename' => 'events_categories_other', |
|
502 | - ], |
|
503 | - ], |
|
504 | - 'metaboxes' => $this->_default_espresso_metaboxes, |
|
505 | - 'require_nonce' => false, |
|
506 | - ], |
|
507 | - 'preview_deletion' => [ |
|
508 | - 'nav' => [ |
|
509 | - 'label' => esc_html__('Preview Deletion', 'event_espresso'), |
|
510 | - 'order' => 15, |
|
511 | - 'persistent' => false, |
|
512 | - 'url' => '', |
|
513 | - ], |
|
514 | - 'require_nonce' => false, |
|
515 | - ], |
|
516 | - ]; |
|
517 | - } |
|
518 | - |
|
519 | - |
|
520 | - /** |
|
521 | - * Used to register any global screen options if necessary for every route in this admin page group. |
|
522 | - */ |
|
523 | - protected function _add_screen_options() |
|
524 | - { |
|
525 | - } |
|
526 | - |
|
527 | - |
|
528 | - /** |
|
529 | - * Implementing the screen options for the 'default' route. |
|
530 | - */ |
|
531 | - protected function _add_screen_options_default() |
|
532 | - { |
|
533 | - $this->_per_page_screen_option(); |
|
534 | - } |
|
535 | - |
|
536 | - |
|
537 | - /** |
|
538 | - * Implementing screen options for the category list route. |
|
539 | - */ |
|
540 | - protected function _add_screen_options_category_list() |
|
541 | - { |
|
542 | - $page_title = $this->_admin_page_title; |
|
543 | - $this->_admin_page_title = esc_html__('Categories', 'event_espresso'); |
|
544 | - $this->_per_page_screen_option(); |
|
545 | - $this->_admin_page_title = $page_title; |
|
546 | - } |
|
547 | - |
|
548 | - |
|
549 | - /** |
|
550 | - * Used to register any global feature pointers for the admin page group. |
|
551 | - */ |
|
552 | - protected function _add_feature_pointers() |
|
553 | - { |
|
554 | - } |
|
555 | - |
|
556 | - |
|
557 | - /** |
|
558 | - * Registers and enqueues any global scripts and styles for the entire admin page group. |
|
559 | - */ |
|
560 | - public function load_scripts_styles() |
|
561 | - { |
|
562 | - wp_register_style( |
|
563 | - 'events-admin-css', |
|
564 | - EVENTS_ASSETS_URL . 'events-admin-page.css', |
|
565 | - [], |
|
566 | - EVENT_ESPRESSO_VERSION |
|
567 | - ); |
|
568 | - wp_register_style('ee-cat-admin', EVENTS_ASSETS_URL . 'ee-cat-admin.css', [], EVENT_ESPRESSO_VERSION); |
|
569 | - wp_enqueue_style('events-admin-css'); |
|
570 | - wp_enqueue_style('ee-cat-admin'); |
|
571 | - // todo note: we also need to load_scripts_styles per view (i.e. default/view_report/event_details |
|
572 | - // registers for all views |
|
573 | - // scripts |
|
574 | - wp_register_script( |
|
575 | - 'event_editor_js', |
|
576 | - EVENTS_ASSETS_URL . 'event_editor.js', |
|
577 | - ['ee_admin_js', 'jquery-ui-slider', 'jquery-ui-timepicker-addon'], |
|
578 | - EVENT_ESPRESSO_VERSION, |
|
579 | - true |
|
580 | - ); |
|
581 | - } |
|
582 | - |
|
583 | - |
|
584 | - /** |
|
585 | - * Enqueuing scripts and styles specific to this view |
|
586 | - */ |
|
587 | - public function load_scripts_styles_create_new() |
|
588 | - { |
|
589 | - $this->load_scripts_styles_edit(); |
|
590 | - } |
|
591 | - |
|
592 | - |
|
593 | - /** |
|
594 | - * Enqueuing scripts and styles specific to this view |
|
595 | - */ |
|
596 | - public function load_scripts_styles_edit() |
|
597 | - { |
|
598 | - // styles |
|
599 | - wp_enqueue_style('espresso-ui-theme'); |
|
600 | - wp_register_style( |
|
601 | - 'event-editor-css', |
|
602 | - EVENTS_ASSETS_URL . 'event-editor.css', |
|
603 | - ['ee-admin-css'], |
|
604 | - EVENT_ESPRESSO_VERSION |
|
605 | - ); |
|
606 | - wp_enqueue_style('event-editor-css'); |
|
607 | - // scripts |
|
608 | - wp_register_script( |
|
609 | - 'event-datetime-metabox', |
|
610 | - EVENTS_ASSETS_URL . 'event-datetime-metabox.js', |
|
611 | - ['event_editor_js', 'ee-datepicker'], |
|
612 | - EVENT_ESPRESSO_VERSION |
|
613 | - ); |
|
614 | - wp_enqueue_script('event-datetime-metabox'); |
|
615 | - } |
|
616 | - |
|
617 | - |
|
618 | - /** |
|
619 | - * Populating the _views property for the category list table view. |
|
620 | - */ |
|
621 | - protected function _set_list_table_views_category_list() |
|
622 | - { |
|
623 | - $this->_views = [ |
|
624 | - 'all' => [ |
|
625 | - 'slug' => 'all', |
|
626 | - 'label' => esc_html__('All', 'event_espresso'), |
|
627 | - 'count' => 0, |
|
628 | - 'bulk_action' => [ |
|
629 | - 'delete_categories' => esc_html__('Delete Permanently', 'event_espresso'), |
|
630 | - ], |
|
631 | - ], |
|
632 | - ]; |
|
633 | - } |
|
634 | - |
|
635 | - |
|
636 | - /** |
|
637 | - * For adding anything that fires on the admin_init hook for any route within this admin page group. |
|
638 | - */ |
|
639 | - public function admin_init() |
|
640 | - { |
|
641 | - EE_Registry::$i18n_js_strings['image_confirm'] = esc_html__( |
|
642 | - 'Do you really want to delete this image? Please remember to update your event to complete the removal.', |
|
643 | - 'event_espresso' |
|
644 | - ); |
|
645 | - } |
|
646 | - |
|
647 | - |
|
648 | - /** |
|
649 | - * For adding anything that should be triggered on the admin_notices hook for any route within this admin page |
|
650 | - * group. |
|
651 | - */ |
|
652 | - public function admin_notices() |
|
653 | - { |
|
654 | - } |
|
655 | - |
|
656 | - |
|
657 | - /** |
|
658 | - * For adding anything that should be triggered on the `admin_print_footer_scripts` hook for any route within |
|
659 | - * this admin page group. |
|
660 | - */ |
|
661 | - public function admin_footer_scripts() |
|
662 | - { |
|
663 | - } |
|
664 | - |
|
665 | - |
|
666 | - /** |
|
667 | - * Call this function to verify if an event is public and has tickets for sale. If it does, then we need to show a |
|
668 | - * warning (via EE_Error::add_error()); |
|
669 | - * |
|
670 | - * @param EE_Event $event Event object |
|
671 | - * @param string $req_type |
|
672 | - * @return void |
|
673 | - * @throws EE_Error |
|
674 | - * @throws ReflectionException |
|
675 | - */ |
|
676 | - public function verify_event_edit($event = null, $req_type = '') |
|
677 | - { |
|
678 | - // don't need to do this when processing |
|
679 | - if (! empty($req_type)) { |
|
680 | - return; |
|
681 | - } |
|
682 | - // no event? |
|
683 | - if (empty($event)) { |
|
684 | - // set event |
|
685 | - $event = $this->_cpt_model_obj; |
|
686 | - } |
|
687 | - // STILL no event? |
|
688 | - if (! $event instanceof EE_Event) { |
|
689 | - return; |
|
690 | - } |
|
691 | - $orig_status = $event->status(); |
|
692 | - // first check if event is active. |
|
693 | - if ( |
|
694 | - $orig_status === EEM_Event::cancelled |
|
695 | - || $orig_status === EEM_Event::postponed |
|
696 | - || $event->is_expired() |
|
697 | - || $event->is_inactive() |
|
698 | - ) { |
|
699 | - return; |
|
700 | - } |
|
701 | - // made it here so it IS active... next check that any of the tickets are sold. |
|
702 | - if ($event->is_sold_out(true)) { |
|
703 | - if ($orig_status !== EEM_Event::sold_out && $event->status() !== $orig_status) { |
|
704 | - EE_Error::add_attention( |
|
705 | - sprintf( |
|
706 | - esc_html__( |
|
707 | - 'Please note that the Event Status has automatically been changed to %s because there are no more spaces available for this event. However, this change is not permanent until you update the event. You can change the status back to something else before updating if you wish.', |
|
708 | - 'event_espresso' |
|
709 | - ), |
|
710 | - EEH_Template::pretty_status(EEM_Event::sold_out, false, 'sentence') |
|
711 | - ) |
|
712 | - ); |
|
713 | - } |
|
714 | - return; |
|
715 | - } elseif ($orig_status === EEM_Event::sold_out) { |
|
716 | - EE_Error::add_attention( |
|
717 | - sprintf( |
|
718 | - esc_html__( |
|
719 | - 'Please note that the Event Status has automatically been changed to %s because more spaces have become available for this event, most likely due to abandoned transactions freeing up reserved tickets. However, this change is not permanent until you update the event. If you wish, you can change the status back to something else before updating.', |
|
720 | - 'event_espresso' |
|
721 | - ), |
|
722 | - EEH_Template::pretty_status($event->status(), false, 'sentence') |
|
723 | - ) |
|
724 | - ); |
|
725 | - } |
|
726 | - // now we need to determine if the event has any tickets on sale. If not then we dont' show the error |
|
727 | - if (! $event->tickets_on_sale()) { |
|
728 | - return; |
|
729 | - } |
|
730 | - // made it here so show warning |
|
731 | - $this->_edit_event_warning(); |
|
732 | - } |
|
733 | - |
|
734 | - |
|
735 | - /** |
|
736 | - * This is the text used for when an event is being edited that is public and has tickets for sale. |
|
737 | - * When needed, hook this into a EE_Error::add_error() notice. |
|
738 | - * |
|
739 | - * @access protected |
|
740 | - * @return void |
|
741 | - */ |
|
742 | - protected function _edit_event_warning() |
|
743 | - { |
|
744 | - // we don't want to add warnings during these requests |
|
745 | - if ($this->request->getRequestParam('action') === 'editpost') { |
|
746 | - return; |
|
747 | - } |
|
748 | - EE_Error::add_attention( |
|
749 | - sprintf( |
|
750 | - esc_html__( |
|
751 | - 'Your event is open for registration. Making changes may disrupt any transactions in progress. %sLearn more%s', |
|
752 | - 'event_espresso' |
|
753 | - ), |
|
754 | - '<a class="espresso-help-tab-lnk">', |
|
755 | - '</a>' |
|
756 | - ) |
|
757 | - ); |
|
758 | - } |
|
759 | - |
|
760 | - |
|
761 | - /** |
|
762 | - * When a user is creating a new event, notify them if they haven't set their timezone. |
|
763 | - * Otherwise, do the normal logic |
|
764 | - * |
|
765 | - * @return void |
|
766 | - * @throws EE_Error |
|
767 | - */ |
|
768 | - protected function _create_new_cpt_item() |
|
769 | - { |
|
770 | - $has_timezone_string = get_option('timezone_string'); |
|
771 | - // only nag them about setting their timezone if it's their first event, and they haven't already done it |
|
772 | - if (! $has_timezone_string && ! EEM_Event::instance()->exists([])) { |
|
773 | - EE_Error::add_attention( |
|
774 | - sprintf( |
|
775 | - esc_html__( |
|
776 | - 'Your website\'s timezone is currently set to a UTC offset. We recommend updating your timezone to a city or region near you before you create an event. Change your timezone now:%1$s%2$s%3$sChange Timezone%4$s', |
|
777 | - 'event_espresso' |
|
778 | - ), |
|
779 | - '<br>', |
|
780 | - '<select id="timezone_string" name="timezone_string" aria-describedby="timezone-description">' |
|
781 | - . EEH_DTT_Helper::wp_timezone_choice('', EEH_DTT_Helper::get_user_locale()) |
|
782 | - . '</select>', |
|
783 | - '<button class="button button-secondary timezone-submit">', |
|
784 | - '</button><span class="spinner"></span>' |
|
785 | - ), |
|
786 | - __FILE__, |
|
787 | - __FUNCTION__, |
|
788 | - __LINE__ |
|
789 | - ); |
|
790 | - } |
|
791 | - parent::_create_new_cpt_item(); |
|
792 | - } |
|
793 | - |
|
794 | - |
|
795 | - /** |
|
796 | - * Sets the _views property for the default route in this admin page group. |
|
797 | - */ |
|
798 | - protected function _set_list_table_views_default() |
|
799 | - { |
|
800 | - $this->_views = [ |
|
801 | - 'all' => [ |
|
802 | - 'slug' => 'all', |
|
803 | - 'label' => esc_html__('View All Events', 'event_espresso'), |
|
804 | - 'count' => 0, |
|
805 | - 'bulk_action' => [ |
|
806 | - 'trash_events' => esc_html__('Move to Trash', 'event_espresso'), |
|
807 | - ], |
|
808 | - ], |
|
809 | - 'draft' => [ |
|
810 | - 'slug' => 'draft', |
|
811 | - 'label' => esc_html__('Draft', 'event_espresso'), |
|
812 | - 'count' => 0, |
|
813 | - 'bulk_action' => [ |
|
814 | - 'trash_events' => esc_html__('Move to Trash', 'event_espresso'), |
|
815 | - ], |
|
816 | - ], |
|
817 | - ]; |
|
818 | - if (EE_Registry::instance()->CAP->current_user_can('ee_delete_events', 'espresso_events_trash_events')) { |
|
819 | - $this->_views['trash'] = [ |
|
820 | - 'slug' => 'trash', |
|
821 | - 'label' => esc_html__('Trash', 'event_espresso'), |
|
822 | - 'count' => 0, |
|
823 | - 'bulk_action' => [ |
|
824 | - 'restore_events' => esc_html__('Restore From Trash', 'event_espresso'), |
|
825 | - 'delete_events' => esc_html__('Delete Permanently', 'event_espresso'), |
|
826 | - ], |
|
827 | - ]; |
|
828 | - } |
|
829 | - } |
|
830 | - |
|
831 | - |
|
832 | - /** |
|
833 | - * Provides the legend item array for the default list table view. |
|
834 | - * |
|
835 | - * @return array |
|
836 | - * @throws EE_Error |
|
837 | - * @throws EE_Error |
|
838 | - */ |
|
839 | - protected function _event_legend_items() |
|
840 | - { |
|
841 | - $items = [ |
|
842 | - 'view_details' => [ |
|
843 | - 'class' => 'dashicons dashicons-search', |
|
844 | - 'desc' => esc_html__('View Event', 'event_espresso'), |
|
845 | - ], |
|
846 | - 'edit_event' => [ |
|
847 | - 'class' => 'ee-icon ee-icon-calendar-edit', |
|
848 | - 'desc' => esc_html__('Edit Event Details', 'event_espresso'), |
|
849 | - ], |
|
850 | - 'view_attendees' => [ |
|
851 | - 'class' => 'dashicons dashicons-groups', |
|
852 | - 'desc' => esc_html__('View Registrations for Event', 'event_espresso'), |
|
853 | - ], |
|
854 | - ]; |
|
855 | - $items = apply_filters('FHEE__Events_Admin_Page___event_legend_items__items', $items); |
|
856 | - $statuses = [ |
|
857 | - 'sold_out_status' => [ |
|
858 | - 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::sold_out, |
|
859 | - 'desc' => EEH_Template::pretty_status(EE_Datetime::sold_out, false, 'sentence'), |
|
860 | - ], |
|
861 | - 'active_status' => [ |
|
862 | - 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::active, |
|
863 | - 'desc' => EEH_Template::pretty_status(EE_Datetime::active, false, 'sentence'), |
|
864 | - ], |
|
865 | - 'upcoming_status' => [ |
|
866 | - 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::upcoming, |
|
867 | - 'desc' => EEH_Template::pretty_status(EE_Datetime::upcoming, false, 'sentence'), |
|
868 | - ], |
|
869 | - 'postponed_status' => [ |
|
870 | - 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::postponed, |
|
871 | - 'desc' => EEH_Template::pretty_status(EE_Datetime::postponed, false, 'sentence'), |
|
872 | - ], |
|
873 | - 'cancelled_status' => [ |
|
874 | - 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::cancelled, |
|
875 | - 'desc' => EEH_Template::pretty_status(EE_Datetime::cancelled, false, 'sentence'), |
|
876 | - ], |
|
877 | - 'expired_status' => [ |
|
878 | - 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::expired, |
|
879 | - 'desc' => EEH_Template::pretty_status(EE_Datetime::expired, false, 'sentence'), |
|
880 | - ], |
|
881 | - 'inactive_status' => [ |
|
882 | - 'class' => 'ee-status-legend ee-status-legend-' . EE_Datetime::inactive, |
|
883 | - 'desc' => EEH_Template::pretty_status(EE_Datetime::inactive, false, 'sentence'), |
|
884 | - ], |
|
885 | - ]; |
|
886 | - $statuses = apply_filters('FHEE__Events_Admin_Page__event_legend_items__statuses', $statuses); |
|
887 | - return array_merge($items, $statuses); |
|
888 | - } |
|
889 | - |
|
890 | - |
|
891 | - /** |
|
892 | - * @return EEM_Event |
|
893 | - * @throws EE_Error |
|
894 | - * @throws ReflectionException |
|
895 | - */ |
|
896 | - private function _event_model() |
|
897 | - { |
|
898 | - if (! $this->_event_model instanceof EEM_Event) { |
|
899 | - $this->_event_model = EE_Registry::instance()->load_model('Event'); |
|
900 | - } |
|
901 | - return $this->_event_model; |
|
902 | - } |
|
903 | - |
|
904 | - |
|
905 | - /** |
|
906 | - * Adds extra buttons to the WP CPT permalink field row. |
|
907 | - * Method is called from parent and is hooked into the wp 'get_sample_permalink_html' filter. |
|
908 | - * |
|
909 | - * @param string $return the current html |
|
910 | - * @param int $id the post id for the page |
|
911 | - * @param string $new_title What the title is |
|
912 | - * @param string $new_slug what the slug is |
|
913 | - * @return string The new html string for the permalink area |
|
914 | - */ |
|
915 | - public function extra_permalink_field_buttons($return, $id, $new_title, $new_slug) |
|
916 | - { |
|
917 | - // make sure this is only when editing |
|
918 | - if (! empty($id)) { |
|
919 | - $post = get_post($id); |
|
920 | - $return .= '<a class="button button-small" onclick="prompt(\'Shortcode:\', jQuery(\'#shortcode\').val()); return false;" href="#" tabindex="-1">' |
|
921 | - . esc_html__('Shortcode', 'event_espresso') |
|
922 | - . '</a> '; |
|
923 | - $return .= '<input id="shortcode" type="hidden" value="[ESPRESSO_TICKET_SELECTOR event_id=' |
|
924 | - . $post->ID |
|
925 | - . ']">'; |
|
926 | - } |
|
927 | - return $return; |
|
928 | - } |
|
929 | - |
|
930 | - |
|
931 | - /** |
|
932 | - * _events_overview_list_table |
|
933 | - * This contains the logic for showing the events_overview list |
|
934 | - * |
|
935 | - * @access protected |
|
936 | - * @return void |
|
937 | - * @throws EE_Error |
|
938 | - */ |
|
939 | - protected function _events_overview_list_table() |
|
940 | - { |
|
941 | - do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
942 | - $this->_template_args['after_list_table'] = |
|
943 | - ! empty($this->_template_args['after_list_table']) |
|
944 | - ? (array) $this->_template_args['after_list_table'] |
|
945 | - : []; |
|
946 | - $this->_template_args['after_list_table']['view_event_list_button'] = EEH_HTML::br() |
|
947 | - . EEH_Template::get_button_or_link( |
|
948 | - get_post_type_archive_link('espresso_events'), |
|
949 | - esc_html__("View Event Archive Page", "event_espresso"), |
|
950 | - 'button' |
|
951 | - ); |
|
952 | - $this->_template_args['after_list_table']['legend'] = $this->_display_legend( |
|
953 | - $this->_event_legend_items() |
|
954 | - ); |
|
955 | - $this->_admin_page_title .= ' ' . $this->get_action_link_or_button( |
|
956 | - 'create_new', |
|
957 | - 'add', |
|
958 | - [], |
|
959 | - 'add-new-h2' |
|
960 | - ); |
|
961 | - $this->display_admin_list_table_page_with_no_sidebar(); |
|
962 | - } |
|
963 | - |
|
964 | - |
|
965 | - /** |
|
966 | - * this allows for extra misc actions in the default WP publish box |
|
967 | - * |
|
968 | - * @return void |
|
969 | - * @throws EE_Error |
|
970 | - * @throws ReflectionException |
|
971 | - */ |
|
972 | - public function extra_misc_actions_publish_box() |
|
973 | - { |
|
974 | - $this->_generate_publish_box_extra_content(); |
|
975 | - } |
|
976 | - |
|
977 | - |
|
978 | - /** |
|
979 | - * This is hooked into the WordPress do_action('save_post') hook and runs after the custom post type has been |
|
980 | - * saved. |
|
981 | - * Typically you would use this to save any additional data. |
|
982 | - * Keep in mind also that "save_post" runs on EVERY post update to the database. |
|
983 | - * ALSO very important. When a post transitions from scheduled to published, |
|
984 | - * the save_post action is fired but you will NOT have any _POST data containing any extra info you may have from |
|
985 | - * other meta saves. So MAKE sure that you handle this accordingly. |
|
986 | - * |
|
987 | - * @access protected |
|
988 | - * @abstract |
|
989 | - * @param string $post_id The ID of the cpt that was saved (so you can link relationally) |
|
990 | - * @param WP_Post $post The post object of the cpt that was saved. |
|
991 | - * @return void |
|
992 | - * @throws EE_Error |
|
993 | - * @throws ReflectionException |
|
994 | - */ |
|
995 | - protected function _insert_update_cpt_item($post_id, $post) |
|
996 | - { |
|
997 | - if ($post instanceof WP_Post && $post->post_type !== 'espresso_events') { |
|
998 | - // get out we're not processing an event save. |
|
999 | - return; |
|
1000 | - } |
|
1001 | - |
|
1002 | - $event_values = [ |
|
1003 | - 'EVT_display_desc' => $this->request->getRequestParam('display_desc', false, 'bool'), |
|
1004 | - 'EVT_display_ticket_selector' => $this->request->getRequestParam( |
|
1005 | - 'display_ticket_selector', |
|
1006 | - false, |
|
1007 | - 'bool' |
|
1008 | - ), |
|
1009 | - 'EVT_additional_limit' => min( |
|
1010 | - apply_filters('FHEE__EE_Events_Admin__insert_update_cpt_item__EVT_additional_limit_max', 255), |
|
1011 | - $this->request->getRequestParam('additional_limit', null, 'int') |
|
1012 | - ), |
|
1013 | - 'EVT_default_registration_status' => $this->request->getRequestParam( |
|
1014 | - 'EVT_default_registration_status', |
|
1015 | - EE_Registry::instance()->CFG->registration->default_STS_ID |
|
1016 | - ), |
|
1017 | - |
|
1018 | - 'EVT_member_only' => $this->request->getRequestParam('member_only', false, 'bool'), |
|
1019 | - 'EVT_allow_overflow' => $this->request->getRequestParam('EVT_allow_overflow', false, 'bool'), |
|
1020 | - 'EVT_timezone_string' => $this->request->getRequestParam('timezone_string'), |
|
1021 | - 'EVT_external_URL' => $this->request->getRequestParam('externalURL'), |
|
1022 | - 'EVT_phone' => $this->request->getRequestParam('event_phone'), |
|
1023 | - ]; |
|
1024 | - // update event |
|
1025 | - $success = $this->_event_model()->update_by_ID($event_values, $post_id); |
|
1026 | - // get event_object for other metaboxes... |
|
1027 | - // though it would seem to make sense to just use $this->_event_model()->get_one_by_ID( $post_id ).. |
|
1028 | - // i have to setup where conditions to override the filters in the model |
|
1029 | - // that filter out autodraft and inherit statuses so we GET the inherit id! |
|
1030 | - $event = $this->_event_model()->get_one( |
|
1031 | - [ |
|
1032 | - [ |
|
1033 | - $this->_event_model()->primary_key_name() => $post_id, |
|
1034 | - 'OR' => [ |
|
1035 | - 'status' => $post->post_status, |
|
1036 | - // if trying to "Publish" a sold out event, it's status will get switched back to "sold_out" in the db, |
|
1037 | - // but the returned object here has a status of "publish", so use the original post status as well |
|
1038 | - 'status*1' => $this->request->getRequestParam('original_post_status'), |
|
1039 | - ], |
|
1040 | - ], |
|
1041 | - ] |
|
1042 | - ); |
|
1043 | - // the following are default callbacks for event attachment updates that can be overridden by caffeinated functionality and/or addons. |
|
1044 | - $event_update_callbacks = apply_filters( |
|
1045 | - 'FHEE__Events_Admin_Page___insert_update_cpt_item__event_update_callbacks', |
|
1046 | - [ |
|
1047 | - [$this, '_default_venue_update'], |
|
1048 | - [$this, '_default_tickets_update'], |
|
1049 | - ] |
|
1050 | - ); |
|
1051 | - $att_success = true; |
|
1052 | - foreach ($event_update_callbacks as $e_callback) { |
|
1053 | - $_success = is_callable($e_callback) |
|
1054 | - ? call_user_func($e_callback, $event, $this->request->requestParams()) |
|
1055 | - : false; |
|
1056 | - // if ANY of these updates fail then we want the appropriate global error message |
|
1057 | - $att_success = ! $att_success ? $att_success : $_success; |
|
1058 | - } |
|
1059 | - // any errors? |
|
1060 | - if ($success && false === $att_success) { |
|
1061 | - EE_Error::add_error( |
|
1062 | - esc_html__( |
|
1063 | - 'Event Details saved successfully but something went wrong with saving attachments.', |
|
1064 | - 'event_espresso' |
|
1065 | - ), |
|
1066 | - __FILE__, |
|
1067 | - __FUNCTION__, |
|
1068 | - __LINE__ |
|
1069 | - ); |
|
1070 | - } elseif ($success === false) { |
|
1071 | - EE_Error::add_error( |
|
1072 | - esc_html__('Event Details did not save successfully.', 'event_espresso'), |
|
1073 | - __FILE__, |
|
1074 | - __FUNCTION__, |
|
1075 | - __LINE__ |
|
1076 | - ); |
|
1077 | - } |
|
1078 | - } |
|
1079 | - |
|
1080 | - |
|
1081 | - /** |
|
1082 | - * @param int $post_id |
|
1083 | - * @param int $revision_id |
|
1084 | - * @throws EE_Error |
|
1085 | - * @throws EE_Error |
|
1086 | - * @throws ReflectionException |
|
1087 | - * @see parent::restore_item() |
|
1088 | - */ |
|
1089 | - protected function _restore_cpt_item($post_id, $revision_id) |
|
1090 | - { |
|
1091 | - // copy existing event meta to new post |
|
1092 | - $post_evt = $this->_event_model()->get_one_by_ID($post_id); |
|
1093 | - if ($post_evt instanceof EE_Event) { |
|
1094 | - // meta revision restore |
|
1095 | - $post_evt->restore_revision($revision_id); |
|
1096 | - // related objs restore |
|
1097 | - $post_evt->restore_revision($revision_id, ['Venue', 'Datetime', 'Price']); |
|
1098 | - } |
|
1099 | - } |
|
1100 | - |
|
1101 | - |
|
1102 | - /** |
|
1103 | - * Attach the venue to the Event |
|
1104 | - * |
|
1105 | - * @param EE_Event $event Event Object to add the venue to |
|
1106 | - * @param array $data The request data from the form |
|
1107 | - * @return bool Success or fail. |
|
1108 | - * @throws EE_Error |
|
1109 | - * @throws ReflectionException |
|
1110 | - */ |
|
1111 | - protected function _default_venue_update(EE_Event $event, $data) |
|
1112 | - { |
|
1113 | - require_once(EE_MODELS . 'EEM_Venue.model.php'); |
|
1114 | - $venue_model = EE_Registry::instance()->load_model('Venue'); |
|
1115 | - $venue_id = ! empty($data['venue_id']) ? $data['venue_id'] : null; |
|
1116 | - // very important. If we don't have a venue name... |
|
1117 | - // then we'll get out because not necessary to create empty venue |
|
1118 | - if (empty($data['venue_title'])) { |
|
1119 | - return false; |
|
1120 | - } |
|
1121 | - $venue_array = [ |
|
1122 | - 'VNU_wp_user' => $event->get('EVT_wp_user'), |
|
1123 | - 'VNU_name' => $data['venue_title'], |
|
1124 | - 'VNU_desc' => ! empty($data['venue_description']) ? $data['venue_description'] : null, |
|
1125 | - 'VNU_identifier' => ! empty($data['venue_identifier']) ? $data['venue_identifier'] : null, |
|
1126 | - 'VNU_short_desc' => ! empty($data['venue_short_description']) |
|
1127 | - ? $data['venue_short_description'] |
|
1128 | - : null, |
|
1129 | - 'VNU_address' => ! empty($data['address']) ? $data['address'] : null, |
|
1130 | - 'VNU_address2' => ! empty($data['address2']) ? $data['address2'] : null, |
|
1131 | - 'VNU_city' => ! empty($data['city']) ? $data['city'] : null, |
|
1132 | - 'STA_ID' => ! empty($data['state']) ? $data['state'] : null, |
|
1133 | - 'CNT_ISO' => ! empty($data['countries']) ? $data['countries'] : null, |
|
1134 | - 'VNU_zip' => ! empty($data['zip']) ? $data['zip'] : null, |
|
1135 | - 'VNU_phone' => ! empty($data['venue_phone']) ? $data['venue_phone'] : null, |
|
1136 | - 'VNU_capacity' => ! empty($data['venue_capacity']) ? $data['venue_capacity'] : null, |
|
1137 | - 'VNU_url' => ! empty($data['venue_url']) ? $data['venue_url'] : null, |
|
1138 | - 'VNU_virtual_phone' => ! empty($data['virtual_phone']) ? $data['virtual_phone'] : null, |
|
1139 | - 'VNU_virtual_url' => ! empty($data['virtual_url']) ? $data['virtual_url'] : null, |
|
1140 | - 'VNU_enable_for_gmap' => isset($data['enable_for_gmap']) ? 1 : 0, |
|
1141 | - 'status' => 'publish', |
|
1142 | - ]; |
|
1143 | - // if we've got the venue_id then we're just updating the existing venue so let's do that and then get out. |
|
1144 | - if (! empty($venue_id)) { |
|
1145 | - $update_where = [$venue_model->primary_key_name() => $venue_id]; |
|
1146 | - $rows_affected = $venue_model->update($venue_array, [$update_where]); |
|
1147 | - // we've gotta make sure that the venue is always attached to a revision.. add_relation_to should take care of making sure that the relation is already present. |
|
1148 | - $event->_add_relation_to($venue_id, 'Venue'); |
|
1149 | - return $rows_affected > 0; |
|
1150 | - } |
|
1151 | - // we insert the venue |
|
1152 | - $venue_id = $venue_model->insert($venue_array); |
|
1153 | - $event->_add_relation_to($venue_id, 'Venue'); |
|
1154 | - return ! empty($venue_id); |
|
1155 | - // when we have the ancestor come in it's already been handled by the revision save. |
|
1156 | - } |
|
1157 | - |
|
1158 | - |
|
1159 | - /** |
|
1160 | - * Handles saving everything related to Tickets (datetimes, tickets, prices) |
|
1161 | - * |
|
1162 | - * @param EE_Event $event The Event object we're attaching data to |
|
1163 | - * @param array $data The request data from the form |
|
1164 | - * @return array |
|
1165 | - * @throws EE_Error |
|
1166 | - * @throws ReflectionException |
|
1167 | - * @throws Exception |
|
1168 | - */ |
|
1169 | - protected function _default_tickets_update(EE_Event $event, $data) |
|
1170 | - { |
|
1171 | - $datetime = null; |
|
1172 | - $saved_tickets = []; |
|
1173 | - $event_timezone = $event->get_timezone(); |
|
1174 | - $date_formats = ['Y-m-d', 'h:i a']; |
|
1175 | - foreach ($data['edit_event_datetimes'] as $row => $datetime_data) { |
|
1176 | - // trim all values to ensure any excess whitespace is removed. |
|
1177 | - $datetime_data = array_map('trim', $datetime_data); |
|
1178 | - $datetime_data['DTT_EVT_end'] = |
|
1179 | - isset($datetime_data['DTT_EVT_end']) && ! empty($datetime_data['DTT_EVT_end']) |
|
1180 | - ? $datetime_data['DTT_EVT_end'] |
|
1181 | - : $datetime_data['DTT_EVT_start']; |
|
1182 | - $datetime_values = [ |
|
1183 | - 'DTT_ID' => ! empty($datetime_data['DTT_ID']) ? $datetime_data['DTT_ID'] : null, |
|
1184 | - 'DTT_EVT_start' => $datetime_data['DTT_EVT_start'], |
|
1185 | - 'DTT_EVT_end' => $datetime_data['DTT_EVT_end'], |
|
1186 | - 'DTT_reg_limit' => empty($datetime_data['DTT_reg_limit']) ? EE_INF : $datetime_data['DTT_reg_limit'], |
|
1187 | - 'DTT_order' => $row, |
|
1188 | - ]; |
|
1189 | - // if we have an id then let's get existing object first and then set the new values. |
|
1190 | - // Otherwise we instantiate a new object for save. |
|
1191 | - if (! empty($datetime_data['DTT_ID'])) { |
|
1192 | - $datetime = EEM_Datetime::instance($event_timezone)->get_one_by_ID($datetime_data['DTT_ID']); |
|
1193 | - if (! $datetime instanceof EE_Datetime) { |
|
1194 | - throw new RuntimeException( |
|
1195 | - sprintf( |
|
1196 | - esc_html__( |
|
1197 | - 'Something went wrong! A valid Datetime could not be retrieved from the database using the supplied ID: %1$d', |
|
1198 | - 'event_espresso' |
|
1199 | - ), |
|
1200 | - $datetime_data['DTT_ID'] |
|
1201 | - ) |
|
1202 | - ); |
|
1203 | - } |
|
1204 | - $datetime->set_date_format($date_formats[0]); |
|
1205 | - $datetime->set_time_format($date_formats[1]); |
|
1206 | - foreach ($datetime_values as $field => $value) { |
|
1207 | - $datetime->set($field, $value); |
|
1208 | - } |
|
1209 | - } else { |
|
1210 | - $datetime = EE_Datetime::new_instance($datetime_values, $event_timezone, $date_formats); |
|
1211 | - } |
|
1212 | - if (! $datetime instanceof EE_Datetime) { |
|
1213 | - throw new RuntimeException( |
|
1214 | - sprintf( |
|
1215 | - esc_html__( |
|
1216 | - 'Something went wrong! A valid Datetime could not be generated or retrieved using the supplied data: %1$s', |
|
1217 | - 'event_espresso' |
|
1218 | - ), |
|
1219 | - print_r($datetime_values, true) |
|
1220 | - ) |
|
1221 | - ); |
|
1222 | - } |
|
1223 | - // before going any further make sure our dates are setup correctly |
|
1224 | - // so that the end date is always equal or greater than the start date. |
|
1225 | - if ($datetime->get_raw('DTT_EVT_start') > $datetime->get_raw('DTT_EVT_end')) { |
|
1226 | - $datetime->set('DTT_EVT_end', $datetime->get('DTT_EVT_start')); |
|
1227 | - $datetime = EEH_DTT_Helper::date_time_add($datetime, 'DTT_EVT_end', 'days'); |
|
1228 | - } |
|
1229 | - $datetime->save(); |
|
1230 | - $event->_add_relation_to($datetime, 'Datetime'); |
|
1231 | - } |
|
1232 | - // no datetimes get deleted so we don't do any of that logic here. |
|
1233 | - // update tickets next |
|
1234 | - $old_tickets = isset($data['ticket_IDs']) ? explode(',', $data['ticket_IDs']) : []; |
|
1235 | - |
|
1236 | - // set up some default start and end dates in case those are not present in the incoming data |
|
1237 | - $default_start_date = new DateTime('now', new DateTimeZone($event->get_timezone())); |
|
1238 | - $default_start_date = $default_start_date->format($date_formats[0] . ' ' . $date_formats[1]); |
|
1239 | - // use the start date of the first datetime for the end date |
|
1240 | - $first_datetime = $event->first_datetime(); |
|
1241 | - $default_end_date = $first_datetime->start_date_and_time($date_formats[0], $date_formats[1]); |
|
1242 | - |
|
1243 | - // now process the incoming data |
|
1244 | - foreach ($data['edit_tickets'] as $row => $ticket_data) { |
|
1245 | - $update_prices = false; |
|
1246 | - $ticket_price = isset($data['edit_prices'][ $row ][1]['PRC_amount']) |
|
1247 | - ? $data['edit_prices'][ $row ][1]['PRC_amount'] |
|
1248 | - : 0; |
|
1249 | - // trim inputs to ensure any excess whitespace is removed. |
|
1250 | - $ticket_data = array_map('trim', $ticket_data); |
|
1251 | - $ticket_values = [ |
|
1252 | - 'TKT_ID' => ! empty($ticket_data['TKT_ID']) ? $ticket_data['TKT_ID'] : null, |
|
1253 | - 'TTM_ID' => ! empty($ticket_data['TTM_ID']) ? $ticket_data['TTM_ID'] : 0, |
|
1254 | - 'TKT_name' => ! empty($ticket_data['TKT_name']) ? $ticket_data['TKT_name'] : '', |
|
1255 | - 'TKT_description' => ! empty($ticket_data['TKT_description']) ? $ticket_data['TKT_description'] : '', |
|
1256 | - 'TKT_start_date' => ! empty($ticket_data['TKT_start_date']) |
|
1257 | - ? $ticket_data['TKT_start_date'] |
|
1258 | - : $default_start_date, |
|
1259 | - 'TKT_end_date' => ! empty($ticket_data['TKT_end_date']) |
|
1260 | - ? $ticket_data['TKT_end_date'] |
|
1261 | - : $default_end_date, |
|
1262 | - 'TKT_qty' => ! empty($ticket_data['TKT_qty']) |
|
1263 | - || (isset($ticket_data['TKT_qty']) && (int) $ticket_data['TKT_qty'] === 0) |
|
1264 | - ? $ticket_data['TKT_qty'] |
|
1265 | - : EE_INF, |
|
1266 | - 'TKT_uses' => ! empty($ticket_data['TKT_uses']) |
|
1267 | - || (isset($ticket_data['TKT_uses']) && (int) $ticket_data['TKT_uses'] === 0) |
|
1268 | - ? $ticket_data['TKT_uses'] |
|
1269 | - : EE_INF, |
|
1270 | - 'TKT_min' => ! empty($ticket_data['TKT_min']) ? $ticket_data['TKT_min'] : 0, |
|
1271 | - 'TKT_max' => ! empty($ticket_data['TKT_max']) ? $ticket_data['TKT_max'] : EE_INF, |
|
1272 | - 'TKT_order' => isset($ticket_data['TKT_order']) ? $ticket_data['TKT_order'] : $row, |
|
1273 | - 'TKT_price' => $ticket_price, |
|
1274 | - 'TKT_row' => $row, |
|
1275 | - ]; |
|
1276 | - // if this is a default ticket, then we need to set the TKT_ID to 0 and update accordingly, |
|
1277 | - // which means in turn that the prices will become new prices as well. |
|
1278 | - if (isset($ticket_data['TKT_is_default']) && $ticket_data['TKT_is_default']) { |
|
1279 | - $ticket_values['TKT_ID'] = 0; |
|
1280 | - $ticket_values['TKT_is_default'] = 0; |
|
1281 | - $update_prices = true; |
|
1282 | - } |
|
1283 | - // if we have a TKT_ID then we need to get that existing TKT_obj and update it |
|
1284 | - // we actually do our saves ahead of adding any relations because its entirely possible that this |
|
1285 | - // ticket didn't get removed or added to any datetime in the session but DID have it's items modified. |
|
1286 | - // keep in mind that if the ticket has been sold (and we have changed pricing information), |
|
1287 | - // then we won't be updating the tkt but instead a new tkt will be created and the old one archived. |
|
1288 | - if (! empty($ticket_data['TKT_ID'])) { |
|
1289 | - $existing_ticket = EEM_Ticket::instance($event_timezone)->get_one_by_ID($ticket_data['TKT_ID']); |
|
1290 | - if (! $existing_ticket instanceof EE_Ticket) { |
|
1291 | - throw new RuntimeException( |
|
1292 | - sprintf( |
|
1293 | - esc_html__( |
|
1294 | - 'Something went wrong! A valid Ticket could not be retrieved from the database using the supplied ID: %1$d', |
|
1295 | - 'event_espresso' |
|
1296 | - ), |
|
1297 | - $ticket_data['TKT_ID'] |
|
1298 | - ) |
|
1299 | - ); |
|
1300 | - } |
|
1301 | - $ticket_sold = $existing_ticket->count_related( |
|
1302 | - 'Registration', |
|
1303 | - [ |
|
1304 | - [ |
|
1305 | - 'STS_ID' => [ |
|
1306 | - 'NOT IN', |
|
1307 | - [EEM_Registration::status_id_incomplete], |
|
1308 | - ], |
|
1309 | - ], |
|
1310 | - ] |
|
1311 | - ) > 0; |
|
1312 | - // let's just check the total price for the existing ticket and determine if it matches the new total price. |
|
1313 | - // if they are different then we create a new ticket (if $ticket_sold) |
|
1314 | - // if they aren't different then we go ahead and modify existing ticket. |
|
1315 | - $create_new_ticket = $ticket_sold |
|
1316 | - && $ticket_price !== $existing_ticket->price() |
|
1317 | - && ! $existing_ticket->deleted(); |
|
1318 | - $existing_ticket->set_date_format($date_formats[0]); |
|
1319 | - $existing_ticket->set_time_format($date_formats[1]); |
|
1320 | - // set new values |
|
1321 | - foreach ($ticket_values as $field => $value) { |
|
1322 | - if ($field == 'TKT_qty') { |
|
1323 | - $existing_ticket->set_qty($value); |
|
1324 | - } elseif ($field == 'TKT_price') { |
|
1325 | - $existing_ticket->set('TKT_price', $ticket_price); |
|
1326 | - } else { |
|
1327 | - $existing_ticket->set($field, $value); |
|
1328 | - } |
|
1329 | - } |
|
1330 | - $ticket = $existing_ticket; |
|
1331 | - // if $create_new_ticket is false then we can safely update the existing ticket. |
|
1332 | - // Otherwise we have to create a new ticket. |
|
1333 | - if ($create_new_ticket) { |
|
1334 | - // archive the old ticket first |
|
1335 | - $existing_ticket->set('TKT_deleted', 1); |
|
1336 | - $existing_ticket->save(); |
|
1337 | - // make sure this ticket is still recorded in our $saved_tickets |
|
1338 | - // so we don't run it through the regular trash routine. |
|
1339 | - $saved_tickets[ $existing_ticket->ID() ] = $existing_ticket; |
|
1340 | - // create new ticket that's a copy of the existing except, |
|
1341 | - // (a new id of course and not archived) AND has the new TKT_price associated with it. |
|
1342 | - $new_ticket = clone $existing_ticket; |
|
1343 | - $new_ticket->set('TKT_ID', 0); |
|
1344 | - $new_ticket->set('TKT_deleted', 0); |
|
1345 | - $new_ticket->set('TKT_sold', 0); |
|
1346 | - // now we need to make sure that $new prices are created as well and attached to new ticket. |
|
1347 | - $update_prices = true; |
|
1348 | - $ticket = $new_ticket; |
|
1349 | - } |
|
1350 | - } else { |
|
1351 | - // no TKT_id so a new ticket |
|
1352 | - $ticket_values['TKT_price'] = $ticket_price; |
|
1353 | - $ticket = EE_Ticket::new_instance($ticket_values, $event_timezone, $date_formats); |
|
1354 | - $update_prices = true; |
|
1355 | - } |
|
1356 | - if (! $ticket instanceof EE_Ticket) { |
|
1357 | - throw new RuntimeException( |
|
1358 | - sprintf( |
|
1359 | - esc_html__( |
|
1360 | - 'Something went wrong! A valid Ticket could not be generated or retrieved using the supplied data: %1$s', |
|
1361 | - 'event_espresso' |
|
1362 | - ), |
|
1363 | - print_r($ticket_values, true) |
|
1364 | - ) |
|
1365 | - ); |
|
1366 | - } |
|
1367 | - // cap ticket qty by datetime reg limits |
|
1368 | - $ticket->set_qty(min($ticket->qty(), $ticket->qty('reg_limit'))); |
|
1369 | - // update ticket. |
|
1370 | - $ticket->save(); |
|
1371 | - // before going any further make sure our dates are setup correctly |
|
1372 | - // so that the end date is always equal or greater than the start date. |
|
1373 | - if ($ticket->get_raw('TKT_start_date') > $ticket->get_raw('TKT_end_date')) { |
|
1374 | - $ticket->set('TKT_end_date', $ticket->get('TKT_start_date')); |
|
1375 | - $ticket = EEH_DTT_Helper::date_time_add($ticket, 'TKT_end_date', 'days'); |
|
1376 | - $ticket->save(); |
|
1377 | - } |
|
1378 | - // initially let's add the ticket to the datetime |
|
1379 | - $datetime->_add_relation_to($ticket, 'Ticket'); |
|
1380 | - $saved_tickets[ $ticket->ID() ] = $ticket; |
|
1381 | - // add prices to ticket |
|
1382 | - $prices_data = isset($data['edit_prices'][ $row ]) && is_array($data['edit_prices'][ $row ]) |
|
1383 | - ? $data['edit_prices'][ $row ] |
|
1384 | - : []; |
|
1385 | - $this->_add_prices_to_ticket($prices_data, $ticket, $update_prices); |
|
1386 | - } |
|
1387 | - // however now we need to handle permanently deleting tickets via the ui. |
|
1388 | - // Keep in mind that the ui does not allow deleting/archiving tickets that have ticket sold. |
|
1389 | - // However, it does allow for deleting tickets that have no tickets sold, |
|
1390 | - // in which case we want to get rid of permanently because there is no need to save in db. |
|
1391 | - $old_tickets = isset($old_tickets[0]) && $old_tickets[0] == '' ? [] : $old_tickets; |
|
1392 | - $tickets_removed = array_diff($old_tickets, array_keys($saved_tickets)); |
|
1393 | - foreach ($tickets_removed as $id) { |
|
1394 | - $id = absint($id); |
|
1395 | - // get the ticket for this id |
|
1396 | - $ticket_to_remove = EEM_Ticket::instance()->get_one_by_ID($id); |
|
1397 | - if (! $ticket_to_remove instanceof EE_Ticket) { |
|
1398 | - continue; |
|
1399 | - } |
|
1400 | - // need to get all the related datetimes on this ticket and remove from every single one of them |
|
1401 | - // (remember this process can ONLY kick off if there are NO tickets sold) |
|
1402 | - $related_datetimes = $ticket_to_remove->get_many_related('Datetime'); |
|
1403 | - foreach ($related_datetimes as $related_datetime) { |
|
1404 | - $ticket_to_remove->_remove_relation_to($related_datetime, 'Datetime'); |
|
1405 | - } |
|
1406 | - // need to do the same for prices (except these prices can also be deleted because again, |
|
1407 | - // tickets can only be trashed if they don't have any TKTs sold (otherwise they are just archived)) |
|
1408 | - $ticket_to_remove->delete_related_permanently('Price'); |
|
1409 | - // finally let's delete this ticket |
|
1410 | - // (which should not be blocked at this point b/c we've removed all our relationships) |
|
1411 | - $ticket_to_remove->delete_permanently(); |
|
1412 | - } |
|
1413 | - return [$datetime, $saved_tickets]; |
|
1414 | - } |
|
1415 | - |
|
1416 | - |
|
1417 | - /** |
|
1418 | - * This attaches a list of given prices to a ticket. |
|
1419 | - * Note we dont' have to worry about ever removing relationships (or archiving prices) because if there is a change |
|
1420 | - * in price information on a ticket, a new ticket is created anyways so the archived ticket will retain the old |
|
1421 | - * price info and prices are automatically "archived" via the ticket. |
|
1422 | - * |
|
1423 | - * @access private |
|
1424 | - * @param array $prices_data Array of prices from the form. |
|
1425 | - * @param EE_Ticket $ticket EE_Ticket object that prices are being attached to. |
|
1426 | - * @param bool $new_prices Whether attach existing incoming prices or create new ones. |
|
1427 | - * @return void |
|
1428 | - * @throws EE_Error |
|
1429 | - * @throws ReflectionException |
|
1430 | - */ |
|
1431 | - private function _add_prices_to_ticket($prices_data, EE_Ticket $ticket, $new_prices = false) |
|
1432 | - { |
|
1433 | - $timezone = $ticket->get_timezone(); |
|
1434 | - foreach ($prices_data as $row => $price_data) { |
|
1435 | - $price_values = [ |
|
1436 | - 'PRC_ID' => ! empty($price_data['PRC_ID']) ? $price_data['PRC_ID'] : null, |
|
1437 | - 'PRT_ID' => ! empty($price_data['PRT_ID']) ? $price_data['PRT_ID'] : null, |
|
1438 | - 'PRC_amount' => ! empty($price_data['PRC_amount']) ? $price_data['PRC_amount'] : 0, |
|
1439 | - 'PRC_name' => ! empty($price_data['PRC_name']) ? $price_data['PRC_name'] : '', |
|
1440 | - 'PRC_desc' => ! empty($price_data['PRC_desc']) ? $price_data['PRC_desc'] : '', |
|
1441 | - 'PRC_is_default' => 0, // make sure prices are NOT set as default from this context |
|
1442 | - 'PRC_order' => $row, |
|
1443 | - ]; |
|
1444 | - if ($new_prices || empty($price_values['PRC_ID'])) { |
|
1445 | - $price_values['PRC_ID'] = 0; |
|
1446 | - $price = EE_Price::new_instance($price_values, $timezone); |
|
1447 | - } else { |
|
1448 | - $price = EEM_Price::instance($timezone)->get_one_by_ID($price_data['PRC_ID']); |
|
1449 | - // update this price with new values |
|
1450 | - foreach ($price_values as $field => $new_price) { |
|
1451 | - $price->set($field, $new_price); |
|
1452 | - } |
|
1453 | - } |
|
1454 | - if (! $price instanceof EE_Price) { |
|
1455 | - throw new RuntimeException( |
|
1456 | - sprintf( |
|
1457 | - esc_html__( |
|
1458 | - 'Something went wrong! A valid Price could not be generated or retrieved using the supplied data: %1$s', |
|
1459 | - 'event_espresso' |
|
1460 | - ), |
|
1461 | - print_r($price_values, true) |
|
1462 | - ) |
|
1463 | - ); |
|
1464 | - } |
|
1465 | - $price->save(); |
|
1466 | - $ticket->_add_relation_to($price, 'Price'); |
|
1467 | - } |
|
1468 | - } |
|
1469 | - |
|
1470 | - |
|
1471 | - /** |
|
1472 | - * Add in our autosave ajax handlers |
|
1473 | - * |
|
1474 | - */ |
|
1475 | - protected function _ee_autosave_create_new() |
|
1476 | - { |
|
1477 | - } |
|
1478 | - |
|
1479 | - |
|
1480 | - /** |
|
1481 | - * More autosave handlers. |
|
1482 | - */ |
|
1483 | - protected function _ee_autosave_edit() |
|
1484 | - { |
|
1485 | - // TEMPORARILY EXITING CAUSE THIS IS A TODO |
|
1486 | - } |
|
1487 | - |
|
1488 | - |
|
1489 | - /** |
|
1490 | - * @throws EE_Error |
|
1491 | - * @throws ReflectionException |
|
1492 | - */ |
|
1493 | - private function _generate_publish_box_extra_content() |
|
1494 | - { |
|
1495 | - // load formatter helper |
|
1496 | - // args for getting related registrations |
|
1497 | - $approved_query_args = [ |
|
1498 | - [ |
|
1499 | - 'REG_deleted' => 0, |
|
1500 | - 'STS_ID' => EEM_Registration::status_id_approved, |
|
1501 | - ], |
|
1502 | - ]; |
|
1503 | - $not_approved_query_args = [ |
|
1504 | - [ |
|
1505 | - 'REG_deleted' => 0, |
|
1506 | - 'STS_ID' => EEM_Registration::status_id_not_approved, |
|
1507 | - ], |
|
1508 | - ]; |
|
1509 | - $pending_payment_query_args = [ |
|
1510 | - [ |
|
1511 | - 'REG_deleted' => 0, |
|
1512 | - 'STS_ID' => EEM_Registration::status_id_pending_payment, |
|
1513 | - ], |
|
1514 | - ]; |
|
1515 | - // publish box |
|
1516 | - $publish_box_extra_args = [ |
|
1517 | - 'view_approved_reg_url' => add_query_arg( |
|
1518 | - [ |
|
1519 | - 'action' => 'default', |
|
1520 | - 'event_id' => $this->_cpt_model_obj->ID(), |
|
1521 | - '_reg_status' => EEM_Registration::status_id_approved, |
|
1522 | - 'use_filters' => true, |
|
1523 | - ], |
|
1524 | - REG_ADMIN_URL |
|
1525 | - ), |
|
1526 | - 'view_not_approved_reg_url' => add_query_arg( |
|
1527 | - [ |
|
1528 | - 'action' => 'default', |
|
1529 | - 'event_id' => $this->_cpt_model_obj->ID(), |
|
1530 | - '_reg_status' => EEM_Registration::status_id_not_approved, |
|
1531 | - 'use_filters' => true, |
|
1532 | - ], |
|
1533 | - REG_ADMIN_URL |
|
1534 | - ), |
|
1535 | - 'view_pending_payment_reg_url' => add_query_arg( |
|
1536 | - [ |
|
1537 | - 'action' => 'default', |
|
1538 | - 'event_id' => $this->_cpt_model_obj->ID(), |
|
1539 | - '_reg_status' => EEM_Registration::status_id_pending_payment, |
|
1540 | - 'use_filters' => true, |
|
1541 | - ], |
|
1542 | - REG_ADMIN_URL |
|
1543 | - ), |
|
1544 | - 'approved_regs' => $this->_cpt_model_obj->count_related( |
|
1545 | - 'Registration', |
|
1546 | - $approved_query_args |
|
1547 | - ), |
|
1548 | - 'not_approved_regs' => $this->_cpt_model_obj->count_related( |
|
1549 | - 'Registration', |
|
1550 | - $not_approved_query_args |
|
1551 | - ), |
|
1552 | - 'pending_payment_regs' => $this->_cpt_model_obj->count_related( |
|
1553 | - 'Registration', |
|
1554 | - $pending_payment_query_args |
|
1555 | - ), |
|
1556 | - 'misc_pub_section_class' => apply_filters( |
|
1557 | - 'FHEE_Events_Admin_Page___generate_publish_box_extra_content__misc_pub_section_class', |
|
1558 | - 'misc-pub-section' |
|
1559 | - ), |
|
1560 | - ]; |
|
1561 | - ob_start(); |
|
1562 | - do_action( |
|
1563 | - 'AHEE__Events_Admin_Page___generate_publish_box_extra_content__event_editor_overview_add', |
|
1564 | - $this->_cpt_model_obj |
|
1565 | - ); |
|
1566 | - $publish_box_extra_args['event_editor_overview_add'] = ob_get_clean(); |
|
1567 | - // load template |
|
1568 | - EEH_Template::display_template( |
|
1569 | - EVENTS_TEMPLATE_PATH . 'event_publish_box_extras.template.php', |
|
1570 | - $publish_box_extra_args |
|
1571 | - ); |
|
1572 | - } |
|
1573 | - |
|
1574 | - |
|
1575 | - /** |
|
1576 | - * @return EE_Event |
|
1577 | - */ |
|
1578 | - public function get_event_object() |
|
1579 | - { |
|
1580 | - return $this->_cpt_model_obj; |
|
1581 | - } |
|
1582 | - |
|
1583 | - |
|
1584 | - |
|
1585 | - |
|
1586 | - /** METABOXES * */ |
|
1587 | - /** |
|
1588 | - * _register_event_editor_meta_boxes |
|
1589 | - * add all metaboxes related to the event_editor |
|
1590 | - * |
|
1591 | - * @return void |
|
1592 | - * @throws EE_Error |
|
1593 | - * @throws ReflectionException |
|
1594 | - */ |
|
1595 | - protected function _register_event_editor_meta_boxes() |
|
1596 | - { |
|
1597 | - $this->verify_cpt_object(); |
|
1598 | - add_meta_box( |
|
1599 | - 'espresso_event_editor_tickets', |
|
1600 | - esc_html__('Event Datetime & Ticket', 'event_espresso'), |
|
1601 | - [$this, 'ticket_metabox'], |
|
1602 | - $this->page_slug, |
|
1603 | - 'normal', |
|
1604 | - 'high' |
|
1605 | - ); |
|
1606 | - add_meta_box( |
|
1607 | - 'espresso_event_editor_event_options', |
|
1608 | - esc_html__('Event Registration Options', 'event_espresso'), |
|
1609 | - [$this, 'registration_options_meta_box'], |
|
1610 | - $this->page_slug, |
|
1611 | - 'side' |
|
1612 | - ); |
|
1613 | - // NOTE: if you're looking for other metaboxes in here, |
|
1614 | - // where a metabox has a related management page in the admin |
|
1615 | - // you will find it setup in the related management page's "_Hooks" file. |
|
1616 | - // i.e. messages metabox is found in "espresso_events_Messages_Hooks.class.php". |
|
1617 | - } |
|
1618 | - |
|
1619 | - |
|
1620 | - /** |
|
1621 | - * @throws DomainException |
|
1622 | - * @throws EE_Error |
|
1623 | - * @throws ReflectionException |
|
1624 | - */ |
|
1625 | - public function ticket_metabox() |
|
1626 | - { |
|
1627 | - $existing_datetime_ids = $existing_ticket_ids = []; |
|
1628 | - // defaults for template args |
|
1629 | - $template_args = [ |
|
1630 | - 'existing_datetime_ids' => '', |
|
1631 | - 'event_datetime_help_link' => '', |
|
1632 | - 'ticket_options_help_link' => '', |
|
1633 | - 'time' => null, |
|
1634 | - 'ticket_rows' => '', |
|
1635 | - 'existing_ticket_ids' => '', |
|
1636 | - 'total_ticket_rows' => 1, |
|
1637 | - 'ticket_js_structure' => '', |
|
1638 | - 'trash_icon' => 'ee-lock-icon', |
|
1639 | - 'disabled' => '', |
|
1640 | - ]; |
|
1641 | - $event_id = is_object($this->_cpt_model_obj) ? $this->_cpt_model_obj->ID() : null; |
|
1642 | - /** |
|
1643 | - * 1. Start with retrieving Datetimes |
|
1644 | - * 2. Fore each datetime get related tickets |
|
1645 | - * 3. For each ticket get related prices |
|
1646 | - */ |
|
1647 | - $times = EEM_Datetime::instance()->get_all_event_dates($event_id); |
|
1648 | - $first_datetime = reset($times); |
|
1649 | - // do we get related tickets? |
|
1650 | - if ( |
|
1651 | - $first_datetime instanceof EE_Datetime |
|
1652 | - && $first_datetime->ID() !== 0 |
|
1653 | - ) { |
|
1654 | - $existing_datetime_ids[] = $first_datetime->get('DTT_ID'); |
|
1655 | - $template_args['time'] = $first_datetime; |
|
1656 | - $related_tickets = $first_datetime->tickets( |
|
1657 | - [ |
|
1658 | - ['OR' => ['TKT_deleted' => 1, 'TKT_deleted*' => 0]], |
|
1659 | - 'default_where_conditions' => 'none', |
|
1660 | - ] |
|
1661 | - ); |
|
1662 | - if (! empty($related_tickets)) { |
|
1663 | - $template_args['total_ticket_rows'] = count($related_tickets); |
|
1664 | - $row = 0; |
|
1665 | - foreach ($related_tickets as $ticket) { |
|
1666 | - $existing_ticket_ids[] = $ticket->get('TKT_ID'); |
|
1667 | - $template_args['ticket_rows'] .= $this->_get_ticket_row($ticket, false, $row); |
|
1668 | - $row++; |
|
1669 | - } |
|
1670 | - } else { |
|
1671 | - $template_args['total_ticket_rows'] = 1; |
|
1672 | - /** @type EE_Ticket $ticket */ |
|
1673 | - $ticket = EEM_Ticket::instance()->create_default_object(); |
|
1674 | - $template_args['ticket_rows'] .= $this->_get_ticket_row($ticket); |
|
1675 | - } |
|
1676 | - } else { |
|
1677 | - $template_args['time'] = $times[0]; |
|
1678 | - $tickets = EEM_Ticket::instance()->get_all_default_tickets(); |
|
1679 | - $template_args['ticket_rows'] .= $this->_get_ticket_row($tickets[1]); |
|
1680 | - // NOTE: we're just sending the first default row |
|
1681 | - // (decaf can't manage default tickets so this should be sufficient); |
|
1682 | - } |
|
1683 | - $template_args['event_datetime_help_link'] = $this->_get_help_tab_link( |
|
1684 | - 'event_editor_event_datetimes_help_tab' |
|
1685 | - ); |
|
1686 | - $template_args['ticket_options_help_link'] = $this->_get_help_tab_link('ticket_options_info'); |
|
1687 | - $template_args['existing_datetime_ids'] = implode(',', $existing_datetime_ids); |
|
1688 | - $template_args['existing_ticket_ids'] = implode(',', $existing_ticket_ids); |
|
1689 | - $template_args['ticket_js_structure'] = $this->_get_ticket_row( |
|
1690 | - EEM_Ticket::instance()->create_default_object(), |
|
1691 | - true |
|
1692 | - ); |
|
1693 | - $template = apply_filters( |
|
1694 | - 'FHEE__Events_Admin_Page__ticket_metabox__template', |
|
1695 | - EVENTS_TEMPLATE_PATH . 'event_tickets_metabox_main.template.php' |
|
1696 | - ); |
|
1697 | - EEH_Template::display_template($template, $template_args); |
|
1698 | - } |
|
1699 | - |
|
1700 | - |
|
1701 | - /** |
|
1702 | - * Setup an individual ticket form for the decaf event editor page |
|
1703 | - * |
|
1704 | - * @access private |
|
1705 | - * @param EE_Ticket $ticket the ticket object |
|
1706 | - * @param boolean $skeleton whether we're generating a skeleton for js manipulation |
|
1707 | - * @param int $row |
|
1708 | - * @return string generated html for the ticket row. |
|
1709 | - * @throws EE_Error |
|
1710 | - * @throws ReflectionException |
|
1711 | - */ |
|
1712 | - private function _get_ticket_row($ticket, $skeleton = false, $row = 0) |
|
1713 | - { |
|
1714 | - $template_args = [ |
|
1715 | - 'tkt_status_class' => ' tkt-status-' . $ticket->ticket_status(), |
|
1716 | - 'tkt_archive_class' => $ticket->ticket_status() === EE_Ticket::archived && ! $skeleton ? ' tkt-archived' |
|
1717 | - : '', |
|
1718 | - 'ticketrow' => $skeleton ? 'TICKETNUM' : $row, |
|
1719 | - 'TKT_ID' => $ticket->get('TKT_ID'), |
|
1720 | - 'TKT_name' => $ticket->get('TKT_name'), |
|
1721 | - 'TKT_start_date' => $skeleton ? '' : $ticket->get_date('TKT_start_date', 'Y-m-d h:i a'), |
|
1722 | - 'TKT_end_date' => $skeleton ? '' : $ticket->get_date('TKT_end_date', 'Y-m-d h:i a'), |
|
1723 | - 'TKT_is_default' => $ticket->get('TKT_is_default'), |
|
1724 | - 'TKT_qty' => $ticket->get_pretty('TKT_qty', 'input'), |
|
1725 | - 'edit_ticketrow_name' => $skeleton ? 'TICKETNAMEATTR' : 'edit_tickets', |
|
1726 | - 'TKT_sold' => $skeleton ? 0 : $ticket->get('TKT_sold'), |
|
1727 | - 'trash_icon' => ($skeleton || (! empty($ticket) && ! $ticket->get('TKT_deleted'))) |
|
1728 | - && (! empty($ticket) && $ticket->get('TKT_sold') === 0) |
|
1729 | - ? 'trash-icon dashicons dashicons-post-trash clickable' : 'ee-lock-icon', |
|
1730 | - 'disabled' => $skeleton || (! empty($ticket) && ! $ticket->get('TKT_deleted')) ? '' |
|
1731 | - : ' disabled=disabled', |
|
1732 | - ]; |
|
1733 | - $price = $ticket->ID() !== 0 |
|
1734 | - ? $ticket->get_first_related('Price', ['default_where_conditions' => 'none']) |
|
1735 | - : null; |
|
1736 | - $price = $price instanceof EE_Price |
|
1737 | - ? $price |
|
1738 | - : EEM_Price::instance()->create_default_object(); |
|
1739 | - $price_args = [ |
|
1740 | - 'price_currency_symbol' => EE_Registry::instance()->CFG->currency->sign, |
|
1741 | - 'PRC_amount' => $price->get('PRC_amount'), |
|
1742 | - 'PRT_ID' => $price->get('PRT_ID'), |
|
1743 | - 'PRC_ID' => $price->get('PRC_ID'), |
|
1744 | - 'PRC_is_default' => $price->get('PRC_is_default'), |
|
1745 | - ]; |
|
1746 | - // make sure we have default start and end dates if skeleton |
|
1747 | - // handle rows that should NOT be empty |
|
1748 | - if (empty($template_args['TKT_start_date'])) { |
|
1749 | - // if empty then the start date will be now. |
|
1750 | - $template_args['TKT_start_date'] = date('Y-m-d h:i a', current_time('timestamp')); |
|
1751 | - } |
|
1752 | - if (empty($template_args['TKT_end_date'])) { |
|
1753 | - // get the earliest datetime (if present); |
|
1754 | - $earliest_datetime = $this->_cpt_model_obj->ID() > 0 |
|
1755 | - ? $this->_cpt_model_obj->get_first_related( |
|
1756 | - 'Datetime', |
|
1757 | - ['order_by' => ['DTT_EVT_start' => 'ASC']] |
|
1758 | - ) |
|
1759 | - : null; |
|
1760 | - $template_args['TKT_end_date'] = $earliest_datetime instanceof EE_Datetime |
|
1761 | - ? $earliest_datetime->get_datetime('DTT_EVT_start', 'Y-m-d', 'h:i a') |
|
1762 | - : date('Y-m-d h:i a', mktime(0, 0, 0, date('m'), date('d') + 7, date('Y'))); |
|
1763 | - } |
|
1764 | - $template_args = array_merge($template_args, $price_args); |
|
1765 | - $template = apply_filters( |
|
1766 | - 'FHEE__Events_Admin_Page__get_ticket_row__template', |
|
1767 | - EVENTS_TEMPLATE_PATH . 'event_tickets_metabox_ticket_row.template.php', |
|
1768 | - $ticket |
|
1769 | - ); |
|
1770 | - return EEH_Template::display_template($template, $template_args, true); |
|
1771 | - } |
|
1772 | - |
|
1773 | - |
|
1774 | - /** |
|
1775 | - * @throws EE_Error |
|
1776 | - * @throws ReflectionException |
|
1777 | - */ |
|
1778 | - public function registration_options_meta_box() |
|
1779 | - { |
|
1780 | - $yes_no_values = [ |
|
1781 | - ['id' => true, 'text' => esc_html__('Yes', 'event_espresso')], |
|
1782 | - ['id' => false, 'text' => esc_html__('No', 'event_espresso')], |
|
1783 | - ]; |
|
1784 | - $default_reg_status_values = EEM_Registration::reg_status_array( |
|
1785 | - [ |
|
1786 | - EEM_Registration::status_id_cancelled, |
|
1787 | - EEM_Registration::status_id_declined, |
|
1788 | - EEM_Registration::status_id_incomplete, |
|
1789 | - ], |
|
1790 | - true |
|
1791 | - ); |
|
1792 | - // $template_args['is_active_select'] = EEH_Form_Fields::select_input('is_active', $yes_no_values, $this->_cpt_model_obj->is_active()); |
|
1793 | - $template_args['_event'] = $this->_cpt_model_obj; |
|
1794 | - $template_args['event'] = $this->_cpt_model_obj; |
|
1795 | - $template_args['active_status'] = $this->_cpt_model_obj->pretty_active_status(false); |
|
1796 | - $template_args['additional_limit'] = $this->_cpt_model_obj->additional_limit(); |
|
1797 | - $template_args['default_registration_status'] = EEH_Form_Fields::select_input( |
|
1798 | - 'default_reg_status', |
|
1799 | - $default_reg_status_values, |
|
1800 | - $this->_cpt_model_obj->default_registration_status() |
|
1801 | - ); |
|
1802 | - $template_args['display_description'] = EEH_Form_Fields::select_input( |
|
1803 | - 'display_desc', |
|
1804 | - $yes_no_values, |
|
1805 | - $this->_cpt_model_obj->display_description() |
|
1806 | - ); |
|
1807 | - $template_args['display_ticket_selector'] = EEH_Form_Fields::select_input( |
|
1808 | - 'display_ticket_selector', |
|
1809 | - $yes_no_values, |
|
1810 | - $this->_cpt_model_obj->display_ticket_selector(), |
|
1811 | - '', |
|
1812 | - '', |
|
1813 | - false |
|
1814 | - ); |
|
1815 | - $template_args['additional_registration_options'] = apply_filters( |
|
1816 | - 'FHEE__Events_Admin_Page__registration_options_meta_box__additional_registration_options', |
|
1817 | - '', |
|
1818 | - $template_args, |
|
1819 | - $yes_no_values, |
|
1820 | - $default_reg_status_values |
|
1821 | - ); |
|
1822 | - EEH_Template::display_template( |
|
1823 | - EVENTS_TEMPLATE_PATH . 'event_registration_options.template.php', |
|
1824 | - $template_args |
|
1825 | - ); |
|
1826 | - } |
|
1827 | - |
|
1828 | - |
|
1829 | - /** |
|
1830 | - * _get_events() |
|
1831 | - * This method simply returns all the events (for the given _view and paging) |
|
1832 | - * |
|
1833 | - * @access public |
|
1834 | - * @param int $per_page count of items per page (20 default); |
|
1835 | - * @param int $current_page what is the current page being viewed. |
|
1836 | - * @param bool $count if TRUE then we just return a count of ALL events matching the given _view. |
|
1837 | - * If FALSE then we return an array of event objects |
|
1838 | - * that match the given _view and paging parameters. |
|
1839 | - * @return array|int an array of event objects or a count of them. |
|
1840 | - * @throws Exception |
|
1841 | - */ |
|
1842 | - public function get_events($per_page = 10, $current_page = 1, $count = false) |
|
1843 | - { |
|
1844 | - $EEM_Event = $this->_event_model(); |
|
1845 | - $offset = ($current_page - 1) * $per_page; |
|
1846 | - $limit = $count ? null : $offset . ',' . $per_page; |
|
1847 | - $orderby = $this->request->getRequestParam('orderby', 'EVT_ID'); |
|
1848 | - $order = $this->request->getRequestParam('order', 'DESC'); |
|
1849 | - $month_range = $this->request->getRequestParam('month_range'); |
|
1850 | - if ($month_range) { |
|
1851 | - $pieces = explode(' ', $month_range, 3); |
|
1852 | - // simulate the FIRST day of the month, that fixes issues for months like February |
|
1853 | - // where PHP doesn't know what to assume for date. |
|
1854 | - // @see https://events.codebasehq.com/projects/event-espresso/tickets/10437 |
|
1855 | - $month_r = ! empty($pieces[0]) ? date('m', EEH_DTT_Helper::first_of_month_timestamp($pieces[0])) : ''; |
|
1856 | - $year_r = ! empty($pieces[1]) ? $pieces[1] : ''; |
|
1857 | - } |
|
1858 | - $where = []; |
|
1859 | - $status = $this->request->getRequestParam('status'); |
|
1860 | - // determine what post_status our condition will have for the query. |
|
1861 | - switch ($status) { |
|
1862 | - case 'month': |
|
1863 | - case 'today': |
|
1864 | - case null: |
|
1865 | - case 'all': |
|
1866 | - break; |
|
1867 | - case 'draft': |
|
1868 | - $where['status'] = ['IN', ['draft', 'auto-draft']]; |
|
1869 | - break; |
|
1870 | - default: |
|
1871 | - $where['status'] = $status; |
|
1872 | - } |
|
1873 | - // categories? The default for all categories is -1 |
|
1874 | - $category = $this->request->getRequestParam('EVT_CAT', -1, 'int'); |
|
1875 | - if ($category !== -1) { |
|
1876 | - $where['Term_Taxonomy.taxonomy'] = EEM_CPT_Base::EVENT_CATEGORY_TAXONOMY; |
|
1877 | - $where['Term_Taxonomy.term_id'] = $category; |
|
1878 | - } |
|
1879 | - // date where conditions |
|
1880 | - $start_formats = EEM_Datetime::instance()->get_formats_for('DTT_EVT_start'); |
|
1881 | - if ($month_range) { |
|
1882 | - $DateTime = new DateTime( |
|
1883 | - $year_r . '-' . $month_r . '-01 00:00:00', |
|
1884 | - new DateTimeZone('UTC') |
|
1885 | - ); |
|
1886 | - $start = $DateTime->getTimestamp(); |
|
1887 | - // set the datetime to be the end of the month |
|
1888 | - $DateTime->setDate( |
|
1889 | - $year_r, |
|
1890 | - $month_r, |
|
1891 | - $DateTime->format('t') |
|
1892 | - )->setTime(23, 59, 59); |
|
1893 | - $end = $DateTime->getTimestamp(); |
|
1894 | - $where['Datetime.DTT_EVT_start'] = ['BETWEEN', [$start, $end]]; |
|
1895 | - } elseif ($status === 'today') { |
|
1896 | - $DateTime = |
|
1897 | - new DateTime('now', new DateTimeZone(EEM_Event::instance()->get_timezone())); |
|
1898 | - $start = $DateTime->setTime(0, 0)->format(implode(' ', $start_formats)); |
|
1899 | - $end = $DateTime->setTime(23, 59, 59)->format(implode(' ', $start_formats)); |
|
1900 | - $where['Datetime.DTT_EVT_start'] = ['BETWEEN', [$start, $end]]; |
|
1901 | - } elseif ($status === 'month') { |
|
1902 | - $now = date('Y-m-01'); |
|
1903 | - $DateTime = |
|
1904 | - new DateTime($now, new DateTimeZone(EEM_Event::instance()->get_timezone())); |
|
1905 | - $start = $DateTime->setTime(0, 0)->format(implode(' ', $start_formats)); |
|
1906 | - $end = $DateTime->setDate(date('Y'), date('m'), $DateTime->format('t')) |
|
1907 | - ->setTime(23, 59, 59) |
|
1908 | - ->format(implode(' ', $start_formats)); |
|
1909 | - $where['Datetime.DTT_EVT_start'] = ['BETWEEN', [$start, $end]]; |
|
1910 | - } |
|
1911 | - if (! EE_Registry::instance()->CAP->current_user_can('ee_read_others_events', 'get_events')) { |
|
1912 | - $where['EVT_wp_user'] = get_current_user_id(); |
|
1913 | - } else { |
|
1914 | - if (! isset($where['status'])) { |
|
1915 | - if (! EE_Registry::instance()->CAP->current_user_can('ee_read_private_events', 'get_events')) { |
|
1916 | - $where['OR'] = [ |
|
1917 | - 'status*restrict_private' => ['!=', 'private'], |
|
1918 | - 'AND' => [ |
|
1919 | - 'status*inclusive' => ['=', 'private'], |
|
1920 | - 'EVT_wp_user' => get_current_user_id(), |
|
1921 | - ], |
|
1922 | - ]; |
|
1923 | - } |
|
1924 | - } |
|
1925 | - } |
|
1926 | - $wp_user = $this->request->getRequestParam('EVT_wp_user', 0, 'int'); |
|
1927 | - if ( |
|
1928 | - $wp_user |
|
1929 | - && $wp_user !== get_current_user_id() |
|
1930 | - && EE_Registry::instance()->CAP->current_user_can('ee_read_others_events', 'get_events') |
|
1931 | - ) { |
|
1932 | - $where['EVT_wp_user'] = $wp_user; |
|
1933 | - } |
|
1934 | - // search query handling |
|
1935 | - $search_term = $this->request->getRequestParam('s'); |
|
1936 | - if ($search_term) { |
|
1937 | - $search_term = '%' . $search_term . '%'; |
|
1938 | - $where['OR'] = [ |
|
1939 | - 'EVT_name' => ['LIKE', $search_term], |
|
1940 | - 'EVT_desc' => ['LIKE', $search_term], |
|
1941 | - 'EVT_short_desc' => ['LIKE', $search_term], |
|
1942 | - ]; |
|
1943 | - } |
|
1944 | - // filter events by venue. |
|
1945 | - $venue = $this->request->getRequestParam('venue', 0, 'int'); |
|
1946 | - if ($venue) { |
|
1947 | - $where['Venue.VNU_ID'] = $venue; |
|
1948 | - } |
|
1949 | - $request_params = $this->request->requestParams(); |
|
1950 | - $where = apply_filters('FHEE__Events_Admin_Page__get_events__where', $where, $request_params); |
|
1951 | - $query_params = apply_filters( |
|
1952 | - 'FHEE__Events_Admin_Page__get_events__query_params', |
|
1953 | - [ |
|
1954 | - $where, |
|
1955 | - 'limit' => $limit, |
|
1956 | - 'order_by' => $orderby, |
|
1957 | - 'order' => $order, |
|
1958 | - 'group_by' => 'EVT_ID', |
|
1959 | - ], |
|
1960 | - $request_params |
|
1961 | - ); |
|
1962 | - |
|
1963 | - // let's first check if we have special requests coming in. |
|
1964 | - $active_status = $this->request->getRequestParam('active_status'); |
|
1965 | - if ($active_status) { |
|
1966 | - switch ($active_status) { |
|
1967 | - case 'upcoming': |
|
1968 | - return $EEM_Event->get_upcoming_events($query_params, $count); |
|
1969 | - case 'expired': |
|
1970 | - return $EEM_Event->get_expired_events($query_params, $count); |
|
1971 | - case 'active': |
|
1972 | - return $EEM_Event->get_active_events($query_params, $count); |
|
1973 | - case 'inactive': |
|
1974 | - return $EEM_Event->get_inactive_events($query_params, $count); |
|
1975 | - } |
|
1976 | - } |
|
1977 | - |
|
1978 | - return $count ? $EEM_Event->count([$where], 'EVT_ID', true) : $EEM_Event->get_all($query_params); |
|
1979 | - } |
|
1980 | - |
|
1981 | - |
|
1982 | - /** |
|
1983 | - * handling for WordPress CPT actions (trash, restore, delete) |
|
1984 | - * |
|
1985 | - * @param string $post_id |
|
1986 | - * @throws EE_Error |
|
1987 | - * @throws ReflectionException |
|
1988 | - */ |
|
1989 | - public function trash_cpt_item($post_id) |
|
1990 | - { |
|
1991 | - $this->request->setRequestParam('EVT_ID', $post_id); |
|
1992 | - $this->_trash_or_restore_event('trash', false); |
|
1993 | - } |
|
1994 | - |
|
1995 | - |
|
1996 | - /** |
|
1997 | - * @param string $post_id |
|
1998 | - * @throws EE_Error |
|
1999 | - * @throws ReflectionException |
|
2000 | - */ |
|
2001 | - public function restore_cpt_item($post_id) |
|
2002 | - { |
|
2003 | - $this->request->setRequestParam('EVT_ID', $post_id); |
|
2004 | - $this->_trash_or_restore_event('draft', false); |
|
2005 | - } |
|
2006 | - |
|
2007 | - |
|
2008 | - /** |
|
2009 | - * @param string $post_id |
|
2010 | - * @throws EE_Error |
|
2011 | - * @throws EE_Error |
|
2012 | - */ |
|
2013 | - public function delete_cpt_item($post_id) |
|
2014 | - { |
|
2015 | - throw new EE_Error( |
|
2016 | - esc_html__( |
|
2017 | - 'Please contact Event Espresso support with the details of the steps taken to produce this error.', |
|
2018 | - 'event_espresso' |
|
2019 | - ) |
|
2020 | - ); |
|
2021 | - // $this->request->setRequestParam('EVT_ID', $post_id); |
|
2022 | - // $this->_delete_event(); |
|
2023 | - } |
|
2024 | - |
|
2025 | - |
|
2026 | - /** |
|
2027 | - * _trash_or_restore_event |
|
2028 | - * |
|
2029 | - * @access protected |
|
2030 | - * @param string $event_status |
|
2031 | - * @param bool $redirect_after |
|
2032 | - * @throws EE_Error |
|
2033 | - * @throws EE_Error |
|
2034 | - * @throws ReflectionException |
|
2035 | - */ |
|
2036 | - protected function _trash_or_restore_event($event_status = 'trash', $redirect_after = true) |
|
2037 | - { |
|
2038 | - // determine the event id and set to array. |
|
2039 | - $EVT_ID = $this->request->getRequestParam('EVT_ID', 0, 'int'); |
|
2040 | - // loop thru events |
|
2041 | - if ($EVT_ID) { |
|
2042 | - // clean status |
|
2043 | - $event_status = sanitize_key($event_status); |
|
2044 | - // grab status |
|
2045 | - if (! empty($event_status)) { |
|
2046 | - $success = $this->_change_event_status($EVT_ID, $event_status); |
|
2047 | - } else { |
|
2048 | - $success = false; |
|
2049 | - $msg = esc_html__( |
|
2050 | - 'An error occurred. The event could not be moved to the trash because a valid event status was not not supplied.', |
|
2051 | - 'event_espresso' |
|
2052 | - ); |
|
2053 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2054 | - } |
|
2055 | - } else { |
|
2056 | - $success = false; |
|
2057 | - $msg = esc_html__( |
|
2058 | - 'An error occurred. The event could not be moved to the trash because a valid event ID was not not supplied.', |
|
2059 | - 'event_espresso' |
|
2060 | - ); |
|
2061 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2062 | - } |
|
2063 | - $action = $event_status == 'trash' ? 'moved to the trash' : 'restored from the trash'; |
|
2064 | - if ($redirect_after) { |
|
2065 | - $this->_redirect_after_action($success, 'Event', $action, ['action' => 'default']); |
|
2066 | - } |
|
2067 | - } |
|
2068 | - |
|
2069 | - |
|
2070 | - /** |
|
2071 | - * _trash_or_restore_events |
|
2072 | - * |
|
2073 | - * @access protected |
|
2074 | - * @param string $event_status |
|
2075 | - * @return void |
|
2076 | - * @throws EE_Error |
|
2077 | - * @throws EE_Error |
|
2078 | - * @throws ReflectionException |
|
2079 | - */ |
|
2080 | - protected function _trash_or_restore_events($event_status = 'trash') |
|
2081 | - { |
|
2082 | - // clean status |
|
2083 | - $event_status = sanitize_key($event_status); |
|
2084 | - // grab status |
|
2085 | - if (! empty($event_status)) { |
|
2086 | - $success = true; |
|
2087 | - // determine the event id and set to array. |
|
2088 | - $EVT_IDs = $this->request->getRequestParam('EVT_IDs', [], 'int', true); |
|
2089 | - // loop thru events |
|
2090 | - foreach ($EVT_IDs as $EVT_ID) { |
|
2091 | - if ($EVT_ID = absint($EVT_ID)) { |
|
2092 | - $results = $this->_change_event_status($EVT_ID, $event_status); |
|
2093 | - $success = $results !== false ? $success : false; |
|
2094 | - } else { |
|
2095 | - $msg = sprintf( |
|
2096 | - esc_html__( |
|
2097 | - 'An error occurred. Event #%d could not be moved to the trash because a valid event ID was not not supplied.', |
|
2098 | - 'event_espresso' |
|
2099 | - ), |
|
2100 | - $EVT_ID |
|
2101 | - ); |
|
2102 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2103 | - $success = false; |
|
2104 | - } |
|
2105 | - } |
|
2106 | - } else { |
|
2107 | - $success = false; |
|
2108 | - $msg = esc_html__( |
|
2109 | - 'An error occurred. The event could not be moved to the trash because a valid event status was not not supplied.', |
|
2110 | - 'event_espresso' |
|
2111 | - ); |
|
2112 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2113 | - } |
|
2114 | - // in order to force a pluralized result message we need to send back a success status greater than 1 |
|
2115 | - $success = $success ? 2 : false; |
|
2116 | - $action = $event_status == 'trash' ? 'moved to the trash' : 'restored from the trash'; |
|
2117 | - $this->_redirect_after_action($success, 'Events', $action, ['action' => 'default']); |
|
2118 | - } |
|
2119 | - |
|
2120 | - |
|
2121 | - /** |
|
2122 | - * @param int $EVT_ID |
|
2123 | - * @param string $event_status |
|
2124 | - * @return bool |
|
2125 | - * @throws EE_Error |
|
2126 | - * @throws ReflectionException |
|
2127 | - */ |
|
2128 | - private function _change_event_status($EVT_ID = 0, $event_status = '') |
|
2129 | - { |
|
2130 | - // grab event id |
|
2131 | - if (! $EVT_ID) { |
|
2132 | - $msg = esc_html__( |
|
2133 | - 'An error occurred. No Event ID or an invalid Event ID was received.', |
|
2134 | - 'event_espresso' |
|
2135 | - ); |
|
2136 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2137 | - return false; |
|
2138 | - } |
|
2139 | - $this->_cpt_model_obj = EEM_Event::instance()->get_one_by_ID($EVT_ID); |
|
2140 | - // clean status |
|
2141 | - $event_status = sanitize_key($event_status); |
|
2142 | - // grab status |
|
2143 | - if (empty($event_status)) { |
|
2144 | - $msg = esc_html__( |
|
2145 | - 'An error occurred. No Event Status or an invalid Event Status was received.', |
|
2146 | - 'event_espresso' |
|
2147 | - ); |
|
2148 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2149 | - return false; |
|
2150 | - } |
|
2151 | - // was event trashed or restored ? |
|
2152 | - switch ($event_status) { |
|
2153 | - case 'draft': |
|
2154 | - $action = 'restored from the trash'; |
|
2155 | - $hook = 'AHEE_event_restored_from_trash'; |
|
2156 | - break; |
|
2157 | - case 'trash': |
|
2158 | - $action = 'moved to the trash'; |
|
2159 | - $hook = 'AHEE_event_moved_to_trash'; |
|
2160 | - break; |
|
2161 | - default: |
|
2162 | - $action = 'updated'; |
|
2163 | - $hook = false; |
|
2164 | - } |
|
2165 | - // use class to change status |
|
2166 | - $this->_cpt_model_obj->set_status($event_status); |
|
2167 | - $success = $this->_cpt_model_obj->save(); |
|
2168 | - if (! $success) { |
|
2169 | - $msg = sprintf(esc_html__('An error occurred. The event could not be %s.', 'event_espresso'), $action); |
|
2170 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2171 | - return false; |
|
2172 | - } |
|
2173 | - if ($hook) { |
|
2174 | - do_action($hook); |
|
2175 | - } |
|
2176 | - return true; |
|
2177 | - } |
|
2178 | - |
|
2179 | - |
|
2180 | - /** |
|
2181 | - * @param array $event_ids |
|
2182 | - * @return array |
|
2183 | - * @since 4.10.23.p |
|
2184 | - */ |
|
2185 | - private function cleanEventIds(array $event_ids) |
|
2186 | - { |
|
2187 | - return array_map('absint', $event_ids); |
|
2188 | - } |
|
2189 | - |
|
2190 | - |
|
2191 | - /** |
|
2192 | - * @return array |
|
2193 | - * @since 4.10.23.p |
|
2194 | - */ |
|
2195 | - private function getEventIdsFromRequest() |
|
2196 | - { |
|
2197 | - if ($this->request->requestParamIsSet('EVT_IDs')) { |
|
2198 | - return $this->request->getRequestParam('EVT_IDs', [], 'int', true); |
|
2199 | - } else { |
|
2200 | - return $this->request->getRequestParam('EVT_ID', [], 'int', true); |
|
2201 | - } |
|
2202 | - } |
|
2203 | - |
|
2204 | - |
|
2205 | - /** |
|
2206 | - * @param bool $preview_delete |
|
2207 | - * @throws EE_Error |
|
2208 | - */ |
|
2209 | - protected function _delete_event($preview_delete = true) |
|
2210 | - { |
|
2211 | - $this->_delete_events($preview_delete); |
|
2212 | - } |
|
2213 | - |
|
2214 | - |
|
2215 | - /** |
|
2216 | - * Gets the tree traversal batch persister. |
|
2217 | - * |
|
2218 | - * @return NodeGroupDao |
|
2219 | - * @throws InvalidArgumentException |
|
2220 | - * @throws InvalidDataTypeException |
|
2221 | - * @throws InvalidInterfaceException |
|
2222 | - * @since 4.10.12.p |
|
2223 | - */ |
|
2224 | - protected function getModelObjNodeGroupPersister() |
|
2225 | - { |
|
2226 | - if (! $this->model_obj_node_group_persister instanceof NodeGroupDao) { |
|
2227 | - $this->model_obj_node_group_persister = |
|
2228 | - $this->getLoader()->load('\EventEspresso\core\services\orm\tree_traversal\NodeGroupDao'); |
|
2229 | - } |
|
2230 | - return $this->model_obj_node_group_persister; |
|
2231 | - } |
|
2232 | - |
|
2233 | - |
|
2234 | - /** |
|
2235 | - * @param bool $preview_delete |
|
2236 | - * @return void |
|
2237 | - * @throws EE_Error |
|
2238 | - */ |
|
2239 | - protected function _delete_events($preview_delete = true) |
|
2240 | - { |
|
2241 | - $event_ids = $this->getEventIdsFromRequest(); |
|
2242 | - if ($preview_delete) { |
|
2243 | - $this->generateDeletionPreview($event_ids); |
|
2244 | - } else { |
|
2245 | - EEM_Event::instance()->delete_permanently([['EVT_ID' => ['IN', $event_ids]]]); |
|
2246 | - } |
|
2247 | - } |
|
2248 | - |
|
2249 | - |
|
2250 | - /** |
|
2251 | - * @param array $event_ids |
|
2252 | - */ |
|
2253 | - protected function generateDeletionPreview(array $event_ids) |
|
2254 | - { |
|
2255 | - $event_ids = $this->cleanEventIds($event_ids); |
|
2256 | - // Set a code we can use to reference this deletion task in the batch jobs and preview page. |
|
2257 | - $deletion_job_code = $this->getModelObjNodeGroupPersister()->generateGroupCode(); |
|
2258 | - $return_url = EE_Admin_Page::add_query_args_and_nonce( |
|
2259 | - [ |
|
2260 | - 'action' => 'preview_deletion', |
|
2261 | - 'deletion_job_code' => $deletion_job_code, |
|
2262 | - ], |
|
2263 | - $this->_admin_base_url |
|
2264 | - ); |
|
2265 | - EEH_URL::safeRedirectAndExit( |
|
2266 | - EE_Admin_Page::add_query_args_and_nonce( |
|
2267 | - [ |
|
2268 | - 'page' => 'espresso_batch', |
|
2269 | - 'batch' => EED_Batch::batch_job, |
|
2270 | - 'EVT_IDs' => $event_ids, |
|
2271 | - 'deletion_job_code' => $deletion_job_code, |
|
2272 | - 'job_handler' => urlencode('EventEspressoBatchRequest\JobHandlers\PreviewEventDeletion'), |
|
2273 | - 'return_url' => urlencode($return_url), |
|
2274 | - ], |
|
2275 | - admin_url() |
|
2276 | - ) |
|
2277 | - ); |
|
2278 | - } |
|
2279 | - |
|
2280 | - |
|
2281 | - /** |
|
2282 | - * Checks for a POST submission |
|
2283 | - * |
|
2284 | - * @since 4.10.12.p |
|
2285 | - */ |
|
2286 | - protected function confirmDeletion() |
|
2287 | - { |
|
2288 | - $deletion_redirect_logic = |
|
2289 | - $this->getLoader()->getShared('\EventEspresso\core\domain\services\admin\events\data\ConfirmDeletion'); |
|
2290 | - $deletion_redirect_logic->handle($this->get_request_data(), $this->admin_base_url()); |
|
2291 | - } |
|
2292 | - |
|
2293 | - |
|
2294 | - /** |
|
2295 | - * A page for users to preview what exactly will be deleted, and confirm they want to delete it. |
|
2296 | - * |
|
2297 | - * @throws EE_Error |
|
2298 | - * @since 4.10.12.p |
|
2299 | - */ |
|
2300 | - protected function previewDeletion() |
|
2301 | - { |
|
2302 | - $preview_deletion_logic = |
|
2303 | - $this->getLoader()->getShared('\EventEspresso\core\domain\services\admin\events\data\PreviewDeletion'); |
|
2304 | - $this->set_template_args($preview_deletion_logic->handle($this->get_request_data(), $this->admin_base_url())); |
|
2305 | - $this->display_admin_page_with_no_sidebar(); |
|
2306 | - } |
|
2307 | - |
|
2308 | - |
|
2309 | - /** |
|
2310 | - * get total number of events |
|
2311 | - * |
|
2312 | - * @access public |
|
2313 | - * @return int |
|
2314 | - * @throws EE_Error |
|
2315 | - * @throws EE_Error |
|
2316 | - */ |
|
2317 | - public function total_events() |
|
2318 | - { |
|
2319 | - return EEM_Event::instance()->count( |
|
2320 | - ['caps' => 'read_admin'], |
|
2321 | - 'EVT_ID', |
|
2322 | - true |
|
2323 | - ); |
|
2324 | - } |
|
2325 | - |
|
2326 | - |
|
2327 | - /** |
|
2328 | - * get total number of draft events |
|
2329 | - * |
|
2330 | - * @access public |
|
2331 | - * @return int |
|
2332 | - * @throws EE_Error |
|
2333 | - * @throws EE_Error |
|
2334 | - */ |
|
2335 | - public function total_events_draft() |
|
2336 | - { |
|
2337 | - return EEM_Event::instance()->count( |
|
2338 | - [ |
|
2339 | - ['status' => ['IN', ['draft', 'auto-draft']]], |
|
2340 | - 'caps' => 'read_admin', |
|
2341 | - ], |
|
2342 | - 'EVT_ID', |
|
2343 | - true |
|
2344 | - ); |
|
2345 | - } |
|
2346 | - |
|
2347 | - |
|
2348 | - /** |
|
2349 | - * get total number of trashed events |
|
2350 | - * |
|
2351 | - * @access public |
|
2352 | - * @return int |
|
2353 | - * @throws EE_Error |
|
2354 | - * @throws EE_Error |
|
2355 | - */ |
|
2356 | - public function total_trashed_events() |
|
2357 | - { |
|
2358 | - return EEM_Event::instance()->count( |
|
2359 | - [ |
|
2360 | - ['status' => 'trash'], |
|
2361 | - 'caps' => 'read_admin', |
|
2362 | - ], |
|
2363 | - 'EVT_ID', |
|
2364 | - true |
|
2365 | - ); |
|
2366 | - } |
|
2367 | - |
|
2368 | - |
|
2369 | - /** |
|
2370 | - * _default_event_settings |
|
2371 | - * This generates the Default Settings Tab |
|
2372 | - * |
|
2373 | - * @return void |
|
2374 | - * @throws EE_Error |
|
2375 | - */ |
|
2376 | - protected function _default_event_settings() |
|
2377 | - { |
|
2378 | - $this->_set_add_edit_form_tags('update_default_event_settings'); |
|
2379 | - $this->_set_publish_post_box_vars(null, false, false, null, false); |
|
2380 | - $this->_template_args['admin_page_content'] = $this->_default_event_settings_form()->get_html(); |
|
2381 | - $this->display_admin_page_with_sidebar(); |
|
2382 | - } |
|
2383 | - |
|
2384 | - |
|
2385 | - /** |
|
2386 | - * Return the form for event settings. |
|
2387 | - * |
|
2388 | - * @return EE_Form_Section_Proper |
|
2389 | - * @throws EE_Error |
|
2390 | - */ |
|
2391 | - protected function _default_event_settings_form() |
|
2392 | - { |
|
2393 | - $registration_config = EE_Registry::instance()->CFG->registration; |
|
2394 | - $registration_stati_for_selection = EEM_Registration::reg_status_array( |
|
2395 | - // exclude |
|
2396 | - [ |
|
2397 | - EEM_Registration::status_id_cancelled, |
|
2398 | - EEM_Registration::status_id_declined, |
|
2399 | - EEM_Registration::status_id_incomplete, |
|
2400 | - EEM_Registration::status_id_wait_list, |
|
2401 | - ], |
|
2402 | - true |
|
2403 | - ); |
|
2404 | - return new EE_Form_Section_Proper( |
|
2405 | - [ |
|
2406 | - 'name' => 'update_default_event_settings', |
|
2407 | - 'html_id' => 'update_default_event_settings', |
|
2408 | - 'html_class' => 'form-table', |
|
2409 | - 'layout_strategy' => new EE_Admin_Two_Column_Layout(), |
|
2410 | - 'subsections' => apply_filters( |
|
2411 | - 'FHEE__Events_Admin_Page___default_event_settings_form__form_subsections', |
|
2412 | - [ |
|
2413 | - 'default_reg_status' => new EE_Select_Input( |
|
2414 | - $registration_stati_for_selection, |
|
2415 | - [ |
|
2416 | - 'default' => isset($registration_config->default_STS_ID) |
|
2417 | - && array_key_exists( |
|
2418 | - $registration_config->default_STS_ID, |
|
2419 | - $registration_stati_for_selection |
|
2420 | - ) |
|
2421 | - ? sanitize_text_field($registration_config->default_STS_ID) |
|
2422 | - : EEM_Registration::status_id_pending_payment, |
|
2423 | - 'html_label_text' => esc_html__('Default Registration Status', 'event_espresso') |
|
2424 | - . EEH_Template::get_help_tab_link( |
|
2425 | - 'default_settings_status_help_tab' |
|
2426 | - ), |
|
2427 | - 'html_help_text' => esc_html__( |
|
2428 | - 'This setting allows you to preselect what the default registration status setting is when creating an event. Note that changing this setting does NOT retroactively apply it to existing events.', |
|
2429 | - 'event_espresso' |
|
2430 | - ), |
|
2431 | - ] |
|
2432 | - ), |
|
2433 | - 'default_max_tickets' => new EE_Integer_Input( |
|
2434 | - [ |
|
2435 | - 'default' => isset($registration_config->default_maximum_number_of_tickets) |
|
2436 | - ? $registration_config->default_maximum_number_of_tickets |
|
2437 | - : EEM_Event::get_default_additional_limit(), |
|
2438 | - 'html_label_text' => esc_html__( |
|
2439 | - 'Default Maximum Tickets Allowed Per Order:', |
|
2440 | - 'event_espresso' |
|
2441 | - ) |
|
2442 | - . EEH_Template::get_help_tab_link( |
|
2443 | - 'default_maximum_tickets_help_tab"' |
|
2444 | - ), |
|
2445 | - 'html_help_text' => esc_html__( |
|
2446 | - 'This setting allows you to indicate what will be the default for the maximum number of tickets per order when creating new events.', |
|
2447 | - 'event_espresso' |
|
2448 | - ), |
|
2449 | - ] |
|
2450 | - ), |
|
2451 | - ] |
|
2452 | - ), |
|
2453 | - ] |
|
2454 | - ); |
|
2455 | - } |
|
2456 | - |
|
2457 | - |
|
2458 | - /** |
|
2459 | - * _update_default_event_settings |
|
2460 | - * |
|
2461 | - * @access protected |
|
2462 | - * @return void |
|
2463 | - * @throws EE_Error |
|
2464 | - */ |
|
2465 | - protected function _update_default_event_settings() |
|
2466 | - { |
|
2467 | - $registration_config = EE_Registry::instance()->CFG->registration; |
|
2468 | - $form = $this->_default_event_settings_form(); |
|
2469 | - if ($form->was_submitted()) { |
|
2470 | - $form->receive_form_submission(); |
|
2471 | - if ($form->is_valid()) { |
|
2472 | - $valid_data = $form->valid_data(); |
|
2473 | - if (isset($valid_data['default_reg_status'])) { |
|
2474 | - $registration_config->default_STS_ID = $valid_data['default_reg_status']; |
|
2475 | - } |
|
2476 | - if (isset($valid_data['default_max_tickets'])) { |
|
2477 | - $registration_config->default_maximum_number_of_tickets = $valid_data['default_max_tickets']; |
|
2478 | - } |
|
2479 | - // update because data was valid! |
|
2480 | - EE_Registry::instance()->CFG->update_espresso_config(); |
|
2481 | - EE_Error::overwrite_success(); |
|
2482 | - EE_Error::add_success( |
|
2483 | - esc_html__('Default Event Settings were updated', 'event_espresso') |
|
2484 | - ); |
|
2485 | - } |
|
2486 | - } |
|
2487 | - $this->_redirect_after_action(0, '', '', ['action' => 'default_event_settings'], true); |
|
2488 | - } |
|
2489 | - |
|
2490 | - |
|
2491 | - /************* Templates ************* |
|
2492 | - * |
|
2493 | - * @throws EE_Error |
|
2494 | - */ |
|
2495 | - protected function _template_settings() |
|
2496 | - { |
|
2497 | - $this->_admin_page_title = esc_html__('Template Settings (Preview)', 'event_espresso'); |
|
2498 | - $this->_template_args['preview_img'] = '<img src="' |
|
2499 | - . EVENTS_ASSETS_URL |
|
2500 | - . '/images/' |
|
2501 | - . 'caffeinated_template_features.jpg" alt="' |
|
2502 | - . esc_attr__('Template Settings Preview screenshot', 'event_espresso') |
|
2503 | - . '" />'; |
|
2504 | - $this->_template_args['preview_text'] = '<strong>' |
|
2505 | - . esc_html__( |
|
2506 | - 'Template Settings is a feature that is only available in the premium version of Event Espresso 4 which is available with a support license purchase on EventEspresso.com. Template Settings allow you to configure some of the appearance options for both the Event List and Event Details pages.', |
|
2507 | - 'event_espresso' |
|
2508 | - ) . '</strong>'; |
|
2509 | - $this->display_admin_caf_preview_page('template_settings_tab'); |
|
2510 | - } |
|
2511 | - |
|
2512 | - |
|
2513 | - /** Event Category Stuff **/ |
|
2514 | - /** |
|
2515 | - * set the _category property with the category object for the loaded page. |
|
2516 | - * |
|
2517 | - * @access private |
|
2518 | - * @return void |
|
2519 | - */ |
|
2520 | - private function _set_category_object() |
|
2521 | - { |
|
2522 | - if (isset($this->_category->id) && ! empty($this->_category->id)) { |
|
2523 | - return; |
|
2524 | - } //already have the category object so get out. |
|
2525 | - // set default category object |
|
2526 | - $this->_set_empty_category_object(); |
|
2527 | - // only set if we've got an id |
|
2528 | - $category_ID = $this->request->getRequestParam('EVT_CAT_ID', 0, 'int'); |
|
2529 | - if (! $category_ID) { |
|
2530 | - return; |
|
2531 | - } |
|
2532 | - $term = get_term($category_ID, EEM_CPT_Base::EVENT_CATEGORY_TAXONOMY); |
|
2533 | - if (! empty($term)) { |
|
2534 | - $this->_category->category_name = $term->name; |
|
2535 | - $this->_category->category_identifier = $term->slug; |
|
2536 | - $this->_category->category_desc = $term->description; |
|
2537 | - $this->_category->id = $term->term_id; |
|
2538 | - $this->_category->parent = $term->parent; |
|
2539 | - } |
|
2540 | - } |
|
2541 | - |
|
2542 | - |
|
2543 | - /** |
|
2544 | - * Clears out category properties. |
|
2545 | - */ |
|
2546 | - private function _set_empty_category_object() |
|
2547 | - { |
|
2548 | - $this->_category = new stdClass(); |
|
2549 | - $this->_category->category_name = $this->_category->category_identifier = $this->_category->category_desc = ''; |
|
2550 | - $this->_category->id = $this->_category->parent = 0; |
|
2551 | - } |
|
2552 | - |
|
2553 | - |
|
2554 | - /** |
|
2555 | - * @throws EE_Error |
|
2556 | - */ |
|
2557 | - protected function _category_list_table() |
|
2558 | - { |
|
2559 | - do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
2560 | - $this->_search_btn_label = esc_html__('Categories', 'event_espresso'); |
|
2561 | - $this->_admin_page_title .= ' ' . $this->get_action_link_or_button( |
|
2562 | - 'add_category', |
|
2563 | - 'add_category', |
|
2564 | - [], |
|
2565 | - 'add-new-h2' |
|
2566 | - ); |
|
2567 | - $this->display_admin_list_table_page_with_sidebar(); |
|
2568 | - } |
|
2569 | - |
|
2570 | - |
|
2571 | - /** |
|
2572 | - * Output category details view. |
|
2573 | - * |
|
2574 | - * @throws EE_Error |
|
2575 | - * @throws EE_Error |
|
2576 | - */ |
|
2577 | - protected function _category_details($view) |
|
2578 | - { |
|
2579 | - // load formatter helper |
|
2580 | - // load field generator helper |
|
2581 | - $route = $view == 'edit' ? 'update_category' : 'insert_category'; |
|
2582 | - $this->_set_add_edit_form_tags($route); |
|
2583 | - $this->_set_category_object(); |
|
2584 | - $id = ! empty($this->_category->id) ? $this->_category->id : ''; |
|
2585 | - $delete_action = 'delete_category'; |
|
2586 | - // custom redirect |
|
2587 | - $redirect = EE_Admin_Page::add_query_args_and_nonce( |
|
2588 | - ['action' => 'category_list'], |
|
2589 | - $this->_admin_base_url |
|
2590 | - ); |
|
2591 | - $this->_set_publish_post_box_vars('EVT_CAT_ID', $id, $delete_action, $redirect); |
|
2592 | - // take care of contents |
|
2593 | - $this->_template_args['admin_page_content'] = $this->_category_details_content(); |
|
2594 | - $this->display_admin_page_with_sidebar(); |
|
2595 | - } |
|
2596 | - |
|
2597 | - |
|
2598 | - /** |
|
2599 | - * Output category details content. |
|
2600 | - */ |
|
2601 | - protected function _category_details_content() |
|
2602 | - { |
|
2603 | - $editor_args['category_desc'] = [ |
|
2604 | - 'type' => 'wp_editor', |
|
2605 | - 'value' => EEH_Formatter::admin_format_content($this->_category->category_desc), |
|
2606 | - 'class' => 'my_editor_custom', |
|
2607 | - 'wpeditor_args' => ['media_buttons' => false], |
|
2608 | - ]; |
|
2609 | - $_wp_editor = $this->_generate_admin_form_fields($editor_args, 'array'); |
|
2610 | - $all_terms = get_terms( |
|
2611 | - [EEM_CPT_Base::EVENT_CATEGORY_TAXONOMY], |
|
2612 | - ['hide_empty' => 0, 'exclude' => [$this->_category->id]] |
|
2613 | - ); |
|
2614 | - // setup category select for term parents. |
|
2615 | - $category_select_values[] = [ |
|
2616 | - 'text' => esc_html__('No Parent', 'event_espresso'), |
|
2617 | - 'id' => 0, |
|
2618 | - ]; |
|
2619 | - foreach ($all_terms as $term) { |
|
2620 | - $category_select_values[] = [ |
|
2621 | - 'text' => $term->name, |
|
2622 | - 'id' => $term->term_id, |
|
2623 | - ]; |
|
2624 | - } |
|
2625 | - $category_select = EEH_Form_Fields::select_input( |
|
2626 | - 'category_parent', |
|
2627 | - $category_select_values, |
|
2628 | - $this->_category->parent |
|
2629 | - ); |
|
2630 | - $template_args = [ |
|
2631 | - 'category' => $this->_category, |
|
2632 | - 'category_select' => $category_select, |
|
2633 | - 'unique_id_info_help_link' => $this->_get_help_tab_link('unique_id_info'), |
|
2634 | - 'category_desc_editor' => $_wp_editor['category_desc']['field'], |
|
2635 | - 'disable' => '', |
|
2636 | - 'disabled_message' => false, |
|
2637 | - ]; |
|
2638 | - $template = EVENTS_TEMPLATE_PATH . 'event_category_details.template.php'; |
|
2639 | - return EEH_Template::display_template($template, $template_args, true); |
|
2640 | - } |
|
2641 | - |
|
2642 | - |
|
2643 | - /** |
|
2644 | - * Handles deleting categories. |
|
2645 | - * |
|
2646 | - * @throws EE_Error |
|
2647 | - */ |
|
2648 | - protected function _delete_categories() |
|
2649 | - { |
|
2650 | - $category_IDs = $this->request->getRequestParam('EVT_CAT_ID', 0, 'int', true); |
|
2651 | - foreach ($category_IDs as $category_ID) { |
|
2652 | - $this->_delete_category($category_ID); |
|
2653 | - } |
|
2654 | - // doesn't matter what page we're coming from... we're going to the same place after delete. |
|
2655 | - $query_args = [ |
|
2656 | - 'action' => 'category_list', |
|
2657 | - ]; |
|
2658 | - $this->_redirect_after_action(0, '', '', $query_args); |
|
2659 | - } |
|
2660 | - |
|
2661 | - |
|
2662 | - /** |
|
2663 | - * Handles deleting specific category. |
|
2664 | - * |
|
2665 | - * @param int $cat_id |
|
2666 | - */ |
|
2667 | - protected function _delete_category($cat_id) |
|
2668 | - { |
|
2669 | - $cat_id = absint($cat_id); |
|
2670 | - wp_delete_term($cat_id, EEM_CPT_Base::EVENT_CATEGORY_TAXONOMY); |
|
2671 | - } |
|
2672 | - |
|
2673 | - |
|
2674 | - /** |
|
2675 | - * Handles triggering the update or insertion of a new category. |
|
2676 | - * |
|
2677 | - * @param bool $new_category true means we're triggering the insert of a new category. |
|
2678 | - * @throws EE_Error |
|
2679 | - * @throws EE_Error |
|
2680 | - */ |
|
2681 | - protected function _insert_or_update_category($new_category) |
|
2682 | - { |
|
2683 | - $cat_id = $new_category ? $this->_insert_category() : $this->_insert_category(true); |
|
2684 | - $success = 0; // we already have a success message so lets not send another. |
|
2685 | - if ($cat_id) { |
|
2686 | - $query_args = [ |
|
2687 | - 'action' => 'edit_category', |
|
2688 | - 'EVT_CAT_ID' => $cat_id, |
|
2689 | - ]; |
|
2690 | - } else { |
|
2691 | - $query_args = ['action' => 'add_category']; |
|
2692 | - } |
|
2693 | - $this->_redirect_after_action($success, '', '', $query_args, true); |
|
2694 | - } |
|
2695 | - |
|
2696 | - |
|
2697 | - /** |
|
2698 | - * Inserts or updates category |
|
2699 | - * |
|
2700 | - * @param bool $update (true indicates we're updating a category). |
|
2701 | - * @return bool|mixed|string |
|
2702 | - */ |
|
2703 | - private function _insert_category($update = false) |
|
2704 | - { |
|
2705 | - $category_ID = $update ? $this->request->getRequestParam('EVT_CAT_ID', 0, 'int') : 0; |
|
2706 | - $category_name = $this->request->getRequestParam('category_name', ''); |
|
2707 | - $category_desc = $this->request->getRequestParam('category_desc', ''); |
|
2708 | - $category_parent = $this->request->getRequestParam('category_parent', 0, 'int'); |
|
2709 | - $category_identifier = $this->request->getRequestParam('category_identifier', ''); |
|
2710 | - |
|
2711 | - if (empty($category_name)) { |
|
2712 | - $msg = esc_html__('You must add a name for the category.', 'event_espresso'); |
|
2713 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2714 | - return false; |
|
2715 | - } |
|
2716 | - $term_args = [ |
|
2717 | - 'name' => $category_name, |
|
2718 | - 'description' => $category_desc, |
|
2719 | - 'parent' => $category_parent, |
|
2720 | - ]; |
|
2721 | - // was the category_identifier input disabled? |
|
2722 | - if ($category_identifier) { |
|
2723 | - $term_args['slug'] = $category_identifier; |
|
2724 | - } |
|
2725 | - $insert_ids = $update |
|
2726 | - ? wp_update_term($category_ID, EEM_CPT_Base::EVENT_CATEGORY_TAXONOMY, $term_args) |
|
2727 | - : wp_insert_term($category_name, EEM_CPT_Base::EVENT_CATEGORY_TAXONOMY, $term_args); |
|
2728 | - if (! is_array($insert_ids)) { |
|
2729 | - $msg = esc_html__( |
|
2730 | - 'An error occurred and the category has not been saved to the database.', |
|
2731 | - 'event_espresso' |
|
2732 | - ); |
|
2733 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2734 | - } else { |
|
2735 | - $category_ID = $insert_ids['term_id']; |
|
2736 | - $msg = |
|
2737 | - sprintf(esc_html__('The category %s was successfully saved', 'event_espresso'), $category_name); |
|
2738 | - EE_Error::add_success($msg); |
|
2739 | - } |
|
2740 | - return $category_ID; |
|
2741 | - } |
|
2742 | - |
|
2743 | - |
|
2744 | - /** |
|
2745 | - * Gets categories or count of categories matching the arguments in the request. |
|
2746 | - * |
|
2747 | - * @param int $per_page |
|
2748 | - * @param int $current_page |
|
2749 | - * @param bool $count |
|
2750 | - * @return EE_Term_Taxonomy[]|int |
|
2751 | - * @throws EE_Error |
|
2752 | - * @throws EE_Error |
|
2753 | - */ |
|
2754 | - public function get_categories($per_page = 10, $current_page = 1, $count = false) |
|
2755 | - { |
|
2756 | - // testing term stuff |
|
2757 | - $orderby = $this->request->getRequestParam('orderby', 'Term.term_id'); |
|
2758 | - $order = $this->request->getRequestParam('order', 'DESC'); |
|
2759 | - $limit = ($current_page - 1) * $per_page; |
|
2760 | - $where = ['taxonomy' => EEM_CPT_Base::EVENT_CATEGORY_TAXONOMY]; |
|
2761 | - $search_term = $this->request->getRequestParam('s'); |
|
2762 | - if ($search_term) { |
|
2763 | - $search_term = '%' . $search_term . '%'; |
|
2764 | - $where['OR'] = [ |
|
2765 | - 'Term.name' => ['LIKE', $search_term], |
|
2766 | - 'description' => ['LIKE', $search_term], |
|
2767 | - ]; |
|
2768 | - } |
|
2769 | - $query_params = [ |
|
2770 | - $where, |
|
2771 | - 'order_by' => [$orderby => $order], |
|
2772 | - 'limit' => $limit . ',' . $per_page, |
|
2773 | - 'force_join' => ['Term'], |
|
2774 | - ]; |
|
2775 | - return $count |
|
2776 | - ? EEM_Term_Taxonomy::instance()->count($query_params, 'term_id') |
|
2777 | - : EEM_Term_Taxonomy::instance()->get_all($query_params); |
|
2778 | - } |
|
2779 | - |
|
2780 | - /* end category stuff */ |
|
2781 | - /**************/ |
|
2782 | - |
|
2783 | - |
|
2784 | - /** |
|
2785 | - * Callback for the `ee_save_timezone_setting` ajax action. |
|
2786 | - * |
|
2787 | - * @throws EE_Error |
|
2788 | - */ |
|
2789 | - public function saveTimezoneString() |
|
2790 | - { |
|
2791 | - $timezone_string = $this->request->getRequestParam('timezone_selected'); |
|
2792 | - if (empty($timezone_string) || ! EEH_DTT_Helper::validate_timezone($timezone_string, false)) { |
|
2793 | - EE_Error::add_error( |
|
2794 | - esc_html__('An invalid timezone string submitted.', 'event_espresso'), |
|
2795 | - __FILE__, |
|
2796 | - __FUNCTION__, |
|
2797 | - __LINE__ |
|
2798 | - ); |
|
2799 | - $this->_template_args['error'] = true; |
|
2800 | - $this->_return_json(); |
|
2801 | - } |
|
2802 | - |
|
2803 | - update_option('timezone_string', $timezone_string); |
|
2804 | - EE_Error::add_success( |
|
2805 | - esc_html__('Your timezone string was updated.', 'event_espresso') |
|
2806 | - ); |
|
2807 | - $this->_template_args['success'] = true; |
|
2808 | - $this->_return_json(true, ['action' => 'create_new']); |
|
2809 | - } |
|
2810 | - |
|
2811 | - |
|
2812 | - /** |
|
2813 | 2493 | * @throws EE_Error |
2814 | - * @deprecated 4.10.25.p |
|
2815 | 2494 | */ |
2816 | - public function save_timezonestring_setting() |
|
2817 | - { |
|
2818 | - $this->saveTimezoneString(); |
|
2819 | - } |
|
2495 | + protected function _template_settings() |
|
2496 | + { |
|
2497 | + $this->_admin_page_title = esc_html__('Template Settings (Preview)', 'event_espresso'); |
|
2498 | + $this->_template_args['preview_img'] = '<img src="' |
|
2499 | + . EVENTS_ASSETS_URL |
|
2500 | + . '/images/' |
|
2501 | + . 'caffeinated_template_features.jpg" alt="' |
|
2502 | + . esc_attr__('Template Settings Preview screenshot', 'event_espresso') |
|
2503 | + . '" />'; |
|
2504 | + $this->_template_args['preview_text'] = '<strong>' |
|
2505 | + . esc_html__( |
|
2506 | + 'Template Settings is a feature that is only available in the premium version of Event Espresso 4 which is available with a support license purchase on EventEspresso.com. Template Settings allow you to configure some of the appearance options for both the Event List and Event Details pages.', |
|
2507 | + 'event_espresso' |
|
2508 | + ) . '</strong>'; |
|
2509 | + $this->display_admin_caf_preview_page('template_settings_tab'); |
|
2510 | + } |
|
2511 | + |
|
2512 | + |
|
2513 | + /** Event Category Stuff **/ |
|
2514 | + /** |
|
2515 | + * set the _category property with the category object for the loaded page. |
|
2516 | + * |
|
2517 | + * @access private |
|
2518 | + * @return void |
|
2519 | + */ |
|
2520 | + private function _set_category_object() |
|
2521 | + { |
|
2522 | + if (isset($this->_category->id) && ! empty($this->_category->id)) { |
|
2523 | + return; |
|
2524 | + } //already have the category object so get out. |
|
2525 | + // set default category object |
|
2526 | + $this->_set_empty_category_object(); |
|
2527 | + // only set if we've got an id |
|
2528 | + $category_ID = $this->request->getRequestParam('EVT_CAT_ID', 0, 'int'); |
|
2529 | + if (! $category_ID) { |
|
2530 | + return; |
|
2531 | + } |
|
2532 | + $term = get_term($category_ID, EEM_CPT_Base::EVENT_CATEGORY_TAXONOMY); |
|
2533 | + if (! empty($term)) { |
|
2534 | + $this->_category->category_name = $term->name; |
|
2535 | + $this->_category->category_identifier = $term->slug; |
|
2536 | + $this->_category->category_desc = $term->description; |
|
2537 | + $this->_category->id = $term->term_id; |
|
2538 | + $this->_category->parent = $term->parent; |
|
2539 | + } |
|
2540 | + } |
|
2541 | + |
|
2542 | + |
|
2543 | + /** |
|
2544 | + * Clears out category properties. |
|
2545 | + */ |
|
2546 | + private function _set_empty_category_object() |
|
2547 | + { |
|
2548 | + $this->_category = new stdClass(); |
|
2549 | + $this->_category->category_name = $this->_category->category_identifier = $this->_category->category_desc = ''; |
|
2550 | + $this->_category->id = $this->_category->parent = 0; |
|
2551 | + } |
|
2552 | + |
|
2553 | + |
|
2554 | + /** |
|
2555 | + * @throws EE_Error |
|
2556 | + */ |
|
2557 | + protected function _category_list_table() |
|
2558 | + { |
|
2559 | + do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
2560 | + $this->_search_btn_label = esc_html__('Categories', 'event_espresso'); |
|
2561 | + $this->_admin_page_title .= ' ' . $this->get_action_link_or_button( |
|
2562 | + 'add_category', |
|
2563 | + 'add_category', |
|
2564 | + [], |
|
2565 | + 'add-new-h2' |
|
2566 | + ); |
|
2567 | + $this->display_admin_list_table_page_with_sidebar(); |
|
2568 | + } |
|
2569 | + |
|
2570 | + |
|
2571 | + /** |
|
2572 | + * Output category details view. |
|
2573 | + * |
|
2574 | + * @throws EE_Error |
|
2575 | + * @throws EE_Error |
|
2576 | + */ |
|
2577 | + protected function _category_details($view) |
|
2578 | + { |
|
2579 | + // load formatter helper |
|
2580 | + // load field generator helper |
|
2581 | + $route = $view == 'edit' ? 'update_category' : 'insert_category'; |
|
2582 | + $this->_set_add_edit_form_tags($route); |
|
2583 | + $this->_set_category_object(); |
|
2584 | + $id = ! empty($this->_category->id) ? $this->_category->id : ''; |
|
2585 | + $delete_action = 'delete_category'; |
|
2586 | + // custom redirect |
|
2587 | + $redirect = EE_Admin_Page::add_query_args_and_nonce( |
|
2588 | + ['action' => 'category_list'], |
|
2589 | + $this->_admin_base_url |
|
2590 | + ); |
|
2591 | + $this->_set_publish_post_box_vars('EVT_CAT_ID', $id, $delete_action, $redirect); |
|
2592 | + // take care of contents |
|
2593 | + $this->_template_args['admin_page_content'] = $this->_category_details_content(); |
|
2594 | + $this->display_admin_page_with_sidebar(); |
|
2595 | + } |
|
2596 | + |
|
2597 | + |
|
2598 | + /** |
|
2599 | + * Output category details content. |
|
2600 | + */ |
|
2601 | + protected function _category_details_content() |
|
2602 | + { |
|
2603 | + $editor_args['category_desc'] = [ |
|
2604 | + 'type' => 'wp_editor', |
|
2605 | + 'value' => EEH_Formatter::admin_format_content($this->_category->category_desc), |
|
2606 | + 'class' => 'my_editor_custom', |
|
2607 | + 'wpeditor_args' => ['media_buttons' => false], |
|
2608 | + ]; |
|
2609 | + $_wp_editor = $this->_generate_admin_form_fields($editor_args, 'array'); |
|
2610 | + $all_terms = get_terms( |
|
2611 | + [EEM_CPT_Base::EVENT_CATEGORY_TAXONOMY], |
|
2612 | + ['hide_empty' => 0, 'exclude' => [$this->_category->id]] |
|
2613 | + ); |
|
2614 | + // setup category select for term parents. |
|
2615 | + $category_select_values[] = [ |
|
2616 | + 'text' => esc_html__('No Parent', 'event_espresso'), |
|
2617 | + 'id' => 0, |
|
2618 | + ]; |
|
2619 | + foreach ($all_terms as $term) { |
|
2620 | + $category_select_values[] = [ |
|
2621 | + 'text' => $term->name, |
|
2622 | + 'id' => $term->term_id, |
|
2623 | + ]; |
|
2624 | + } |
|
2625 | + $category_select = EEH_Form_Fields::select_input( |
|
2626 | + 'category_parent', |
|
2627 | + $category_select_values, |
|
2628 | + $this->_category->parent |
|
2629 | + ); |
|
2630 | + $template_args = [ |
|
2631 | + 'category' => $this->_category, |
|
2632 | + 'category_select' => $category_select, |
|
2633 | + 'unique_id_info_help_link' => $this->_get_help_tab_link('unique_id_info'), |
|
2634 | + 'category_desc_editor' => $_wp_editor['category_desc']['field'], |
|
2635 | + 'disable' => '', |
|
2636 | + 'disabled_message' => false, |
|
2637 | + ]; |
|
2638 | + $template = EVENTS_TEMPLATE_PATH . 'event_category_details.template.php'; |
|
2639 | + return EEH_Template::display_template($template, $template_args, true); |
|
2640 | + } |
|
2641 | + |
|
2642 | + |
|
2643 | + /** |
|
2644 | + * Handles deleting categories. |
|
2645 | + * |
|
2646 | + * @throws EE_Error |
|
2647 | + */ |
|
2648 | + protected function _delete_categories() |
|
2649 | + { |
|
2650 | + $category_IDs = $this->request->getRequestParam('EVT_CAT_ID', 0, 'int', true); |
|
2651 | + foreach ($category_IDs as $category_ID) { |
|
2652 | + $this->_delete_category($category_ID); |
|
2653 | + } |
|
2654 | + // doesn't matter what page we're coming from... we're going to the same place after delete. |
|
2655 | + $query_args = [ |
|
2656 | + 'action' => 'category_list', |
|
2657 | + ]; |
|
2658 | + $this->_redirect_after_action(0, '', '', $query_args); |
|
2659 | + } |
|
2660 | + |
|
2661 | + |
|
2662 | + /** |
|
2663 | + * Handles deleting specific category. |
|
2664 | + * |
|
2665 | + * @param int $cat_id |
|
2666 | + */ |
|
2667 | + protected function _delete_category($cat_id) |
|
2668 | + { |
|
2669 | + $cat_id = absint($cat_id); |
|
2670 | + wp_delete_term($cat_id, EEM_CPT_Base::EVENT_CATEGORY_TAXONOMY); |
|
2671 | + } |
|
2672 | + |
|
2673 | + |
|
2674 | + /** |
|
2675 | + * Handles triggering the update or insertion of a new category. |
|
2676 | + * |
|
2677 | + * @param bool $new_category true means we're triggering the insert of a new category. |
|
2678 | + * @throws EE_Error |
|
2679 | + * @throws EE_Error |
|
2680 | + */ |
|
2681 | + protected function _insert_or_update_category($new_category) |
|
2682 | + { |
|
2683 | + $cat_id = $new_category ? $this->_insert_category() : $this->_insert_category(true); |
|
2684 | + $success = 0; // we already have a success message so lets not send another. |
|
2685 | + if ($cat_id) { |
|
2686 | + $query_args = [ |
|
2687 | + 'action' => 'edit_category', |
|
2688 | + 'EVT_CAT_ID' => $cat_id, |
|
2689 | + ]; |
|
2690 | + } else { |
|
2691 | + $query_args = ['action' => 'add_category']; |
|
2692 | + } |
|
2693 | + $this->_redirect_after_action($success, '', '', $query_args, true); |
|
2694 | + } |
|
2695 | + |
|
2696 | + |
|
2697 | + /** |
|
2698 | + * Inserts or updates category |
|
2699 | + * |
|
2700 | + * @param bool $update (true indicates we're updating a category). |
|
2701 | + * @return bool|mixed|string |
|
2702 | + */ |
|
2703 | + private function _insert_category($update = false) |
|
2704 | + { |
|
2705 | + $category_ID = $update ? $this->request->getRequestParam('EVT_CAT_ID', 0, 'int') : 0; |
|
2706 | + $category_name = $this->request->getRequestParam('category_name', ''); |
|
2707 | + $category_desc = $this->request->getRequestParam('category_desc', ''); |
|
2708 | + $category_parent = $this->request->getRequestParam('category_parent', 0, 'int'); |
|
2709 | + $category_identifier = $this->request->getRequestParam('category_identifier', ''); |
|
2710 | + |
|
2711 | + if (empty($category_name)) { |
|
2712 | + $msg = esc_html__('You must add a name for the category.', 'event_espresso'); |
|
2713 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2714 | + return false; |
|
2715 | + } |
|
2716 | + $term_args = [ |
|
2717 | + 'name' => $category_name, |
|
2718 | + 'description' => $category_desc, |
|
2719 | + 'parent' => $category_parent, |
|
2720 | + ]; |
|
2721 | + // was the category_identifier input disabled? |
|
2722 | + if ($category_identifier) { |
|
2723 | + $term_args['slug'] = $category_identifier; |
|
2724 | + } |
|
2725 | + $insert_ids = $update |
|
2726 | + ? wp_update_term($category_ID, EEM_CPT_Base::EVENT_CATEGORY_TAXONOMY, $term_args) |
|
2727 | + : wp_insert_term($category_name, EEM_CPT_Base::EVENT_CATEGORY_TAXONOMY, $term_args); |
|
2728 | + if (! is_array($insert_ids)) { |
|
2729 | + $msg = esc_html__( |
|
2730 | + 'An error occurred and the category has not been saved to the database.', |
|
2731 | + 'event_espresso' |
|
2732 | + ); |
|
2733 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
2734 | + } else { |
|
2735 | + $category_ID = $insert_ids['term_id']; |
|
2736 | + $msg = |
|
2737 | + sprintf(esc_html__('The category %s was successfully saved', 'event_espresso'), $category_name); |
|
2738 | + EE_Error::add_success($msg); |
|
2739 | + } |
|
2740 | + return $category_ID; |
|
2741 | + } |
|
2742 | + |
|
2743 | + |
|
2744 | + /** |
|
2745 | + * Gets categories or count of categories matching the arguments in the request. |
|
2746 | + * |
|
2747 | + * @param int $per_page |
|
2748 | + * @param int $current_page |
|
2749 | + * @param bool $count |
|
2750 | + * @return EE_Term_Taxonomy[]|int |
|
2751 | + * @throws EE_Error |
|
2752 | + * @throws EE_Error |
|
2753 | + */ |
|
2754 | + public function get_categories($per_page = 10, $current_page = 1, $count = false) |
|
2755 | + { |
|
2756 | + // testing term stuff |
|
2757 | + $orderby = $this->request->getRequestParam('orderby', 'Term.term_id'); |
|
2758 | + $order = $this->request->getRequestParam('order', 'DESC'); |
|
2759 | + $limit = ($current_page - 1) * $per_page; |
|
2760 | + $where = ['taxonomy' => EEM_CPT_Base::EVENT_CATEGORY_TAXONOMY]; |
|
2761 | + $search_term = $this->request->getRequestParam('s'); |
|
2762 | + if ($search_term) { |
|
2763 | + $search_term = '%' . $search_term . '%'; |
|
2764 | + $where['OR'] = [ |
|
2765 | + 'Term.name' => ['LIKE', $search_term], |
|
2766 | + 'description' => ['LIKE', $search_term], |
|
2767 | + ]; |
|
2768 | + } |
|
2769 | + $query_params = [ |
|
2770 | + $where, |
|
2771 | + 'order_by' => [$orderby => $order], |
|
2772 | + 'limit' => $limit . ',' . $per_page, |
|
2773 | + 'force_join' => ['Term'], |
|
2774 | + ]; |
|
2775 | + return $count |
|
2776 | + ? EEM_Term_Taxonomy::instance()->count($query_params, 'term_id') |
|
2777 | + : EEM_Term_Taxonomy::instance()->get_all($query_params); |
|
2778 | + } |
|
2779 | + |
|
2780 | + /* end category stuff */ |
|
2781 | + /**************/ |
|
2782 | + |
|
2783 | + |
|
2784 | + /** |
|
2785 | + * Callback for the `ee_save_timezone_setting` ajax action. |
|
2786 | + * |
|
2787 | + * @throws EE_Error |
|
2788 | + */ |
|
2789 | + public function saveTimezoneString() |
|
2790 | + { |
|
2791 | + $timezone_string = $this->request->getRequestParam('timezone_selected'); |
|
2792 | + if (empty($timezone_string) || ! EEH_DTT_Helper::validate_timezone($timezone_string, false)) { |
|
2793 | + EE_Error::add_error( |
|
2794 | + esc_html__('An invalid timezone string submitted.', 'event_espresso'), |
|
2795 | + __FILE__, |
|
2796 | + __FUNCTION__, |
|
2797 | + __LINE__ |
|
2798 | + ); |
|
2799 | + $this->_template_args['error'] = true; |
|
2800 | + $this->_return_json(); |
|
2801 | + } |
|
2802 | + |
|
2803 | + update_option('timezone_string', $timezone_string); |
|
2804 | + EE_Error::add_success( |
|
2805 | + esc_html__('Your timezone string was updated.', 'event_espresso') |
|
2806 | + ); |
|
2807 | + $this->_template_args['success'] = true; |
|
2808 | + $this->_return_json(true, ['action' => 'create_new']); |
|
2809 | + } |
|
2810 | + |
|
2811 | + |
|
2812 | + /** |
|
2813 | + * @throws EE_Error |
|
2814 | + * @deprecated 4.10.25.p |
|
2815 | + */ |
|
2816 | + public function save_timezonestring_setting() |
|
2817 | + { |
|
2818 | + $this->saveTimezoneString(); |
|
2819 | + } |
|
2820 | 2820 | } |
@@ -38,103 +38,103 @@ |
||
38 | 38 | * @since 4.0 |
39 | 39 | */ |
40 | 40 | if (function_exists('espresso_version')) { |
41 | - if (! function_exists('espresso_duplicate_plugin_error')) { |
|
42 | - /** |
|
43 | - * espresso_duplicate_plugin_error |
|
44 | - * displays if more than one version of EE is activated at the same time |
|
45 | - */ |
|
46 | - function espresso_duplicate_plugin_error() |
|
47 | - { |
|
48 | - ?> |
|
41 | + if (! function_exists('espresso_duplicate_plugin_error')) { |
|
42 | + /** |
|
43 | + * espresso_duplicate_plugin_error |
|
44 | + * displays if more than one version of EE is activated at the same time |
|
45 | + */ |
|
46 | + function espresso_duplicate_plugin_error() |
|
47 | + { |
|
48 | + ?> |
|
49 | 49 | <div class="error"> |
50 | 50 | <p> |
51 | 51 | <?php |
52 | - echo esc_html__( |
|
53 | - 'Can not run multiple versions of Event Espresso! One version has been automatically deactivated. Please verify that you have the correct version you want still active.', |
|
54 | - 'event_espresso' |
|
55 | - ); ?> |
|
52 | + echo esc_html__( |
|
53 | + 'Can not run multiple versions of Event Espresso! One version has been automatically deactivated. Please verify that you have the correct version you want still active.', |
|
54 | + 'event_espresso' |
|
55 | + ); ?> |
|
56 | 56 | </p> |
57 | 57 | </div> |
58 | 58 | <?php |
59 | - espresso_deactivate_plugin(plugin_basename(__FILE__)); |
|
60 | - } |
|
61 | - } |
|
62 | - add_action('admin_notices', 'espresso_duplicate_plugin_error', 1); |
|
59 | + espresso_deactivate_plugin(plugin_basename(__FILE__)); |
|
60 | + } |
|
61 | + } |
|
62 | + add_action('admin_notices', 'espresso_duplicate_plugin_error', 1); |
|
63 | 63 | } else { |
64 | - define('EE_MIN_PHP_VER_REQUIRED', '5.6.2'); |
|
65 | - if (! version_compare(PHP_VERSION, EE_MIN_PHP_VER_REQUIRED, '>=')) { |
|
66 | - /** |
|
67 | - * espresso_minimum_php_version_error |
|
68 | - * |
|
69 | - * @return void |
|
70 | - */ |
|
71 | - function espresso_minimum_php_version_error() |
|
72 | - { |
|
73 | - ?> |
|
64 | + define('EE_MIN_PHP_VER_REQUIRED', '5.6.2'); |
|
65 | + if (! version_compare(PHP_VERSION, EE_MIN_PHP_VER_REQUIRED, '>=')) { |
|
66 | + /** |
|
67 | + * espresso_minimum_php_version_error |
|
68 | + * |
|
69 | + * @return void |
|
70 | + */ |
|
71 | + function espresso_minimum_php_version_error() |
|
72 | + { |
|
73 | + ?> |
|
74 | 74 | <div class="error"> |
75 | 75 | <p> |
76 | 76 | <?php |
77 | - printf( |
|
78 | - esc_html__( |
|
79 | - 'We\'re sorry, but Event Espresso requires PHP version %1$s or greater in order to operate. You are currently running version %2$s.%3$sIn order to update your version of PHP, you will need to contact your current hosting provider.%3$sFor information on stable PHP versions, please go to %4$s.', |
|
80 | - 'event_espresso' |
|
81 | - ), |
|
82 | - EE_MIN_PHP_VER_REQUIRED, |
|
83 | - PHP_VERSION, |
|
84 | - '<br/>', |
|
85 | - '<a href="http://php.net/downloads.php">http://php.net/downloads.php</a>' |
|
86 | - ); |
|
87 | - ?> |
|
77 | + printf( |
|
78 | + esc_html__( |
|
79 | + 'We\'re sorry, but Event Espresso requires PHP version %1$s or greater in order to operate. You are currently running version %2$s.%3$sIn order to update your version of PHP, you will need to contact your current hosting provider.%3$sFor information on stable PHP versions, please go to %4$s.', |
|
80 | + 'event_espresso' |
|
81 | + ), |
|
82 | + EE_MIN_PHP_VER_REQUIRED, |
|
83 | + PHP_VERSION, |
|
84 | + '<br/>', |
|
85 | + '<a href="http://php.net/downloads.php">http://php.net/downloads.php</a>' |
|
86 | + ); |
|
87 | + ?> |
|
88 | 88 | </p> |
89 | 89 | </div> |
90 | 90 | <?php |
91 | - espresso_deactivate_plugin(plugin_basename(__FILE__)); |
|
92 | - } |
|
91 | + espresso_deactivate_plugin(plugin_basename(__FILE__)); |
|
92 | + } |
|
93 | 93 | |
94 | - add_action('admin_notices', 'espresso_minimum_php_version_error', 1); |
|
95 | - } else { |
|
96 | - define('EVENT_ESPRESSO_MAIN_FILE', __FILE__); |
|
97 | - /** |
|
98 | - * espresso_version |
|
99 | - * Returns the plugin version |
|
100 | - * |
|
101 | - * @return string |
|
102 | - */ |
|
103 | - function espresso_version() |
|
104 | - { |
|
105 | - return apply_filters('FHEE__espresso__espresso_version', '4.10.36.rc.001'); |
|
106 | - } |
|
94 | + add_action('admin_notices', 'espresso_minimum_php_version_error', 1); |
|
95 | + } else { |
|
96 | + define('EVENT_ESPRESSO_MAIN_FILE', __FILE__); |
|
97 | + /** |
|
98 | + * espresso_version |
|
99 | + * Returns the plugin version |
|
100 | + * |
|
101 | + * @return string |
|
102 | + */ |
|
103 | + function espresso_version() |
|
104 | + { |
|
105 | + return apply_filters('FHEE__espresso__espresso_version', '4.10.36.rc.001'); |
|
106 | + } |
|
107 | 107 | |
108 | - /** |
|
109 | - * espresso_plugin_activation |
|
110 | - * adds a wp-option to indicate that EE has been activated via the WP admin plugins page |
|
111 | - */ |
|
112 | - function espresso_plugin_activation() |
|
113 | - { |
|
114 | - update_option('ee_espresso_activation', true); |
|
115 | - } |
|
108 | + /** |
|
109 | + * espresso_plugin_activation |
|
110 | + * adds a wp-option to indicate that EE has been activated via the WP admin plugins page |
|
111 | + */ |
|
112 | + function espresso_plugin_activation() |
|
113 | + { |
|
114 | + update_option('ee_espresso_activation', true); |
|
115 | + } |
|
116 | 116 | |
117 | - register_activation_hook(EVENT_ESPRESSO_MAIN_FILE, 'espresso_plugin_activation'); |
|
117 | + register_activation_hook(EVENT_ESPRESSO_MAIN_FILE, 'espresso_plugin_activation'); |
|
118 | 118 | |
119 | - require_once __DIR__ . '/core/bootstrap_espresso.php'; |
|
120 | - bootstrap_espresso(); |
|
121 | - } |
|
119 | + require_once __DIR__ . '/core/bootstrap_espresso.php'; |
|
120 | + bootstrap_espresso(); |
|
121 | + } |
|
122 | 122 | } |
123 | 123 | if (! function_exists('espresso_deactivate_plugin')) { |
124 | - /** |
|
125 | - * deactivate_plugin |
|
126 | - * usage: espresso_deactivate_plugin( plugin_basename( __FILE__ )); |
|
127 | - * |
|
128 | - * @access public |
|
129 | - * @param string $plugin_basename - the results of plugin_basename( __FILE__ ) for the plugin's main file |
|
130 | - * @return void |
|
131 | - */ |
|
132 | - function espresso_deactivate_plugin($plugin_basename = '') |
|
133 | - { |
|
134 | - if (! function_exists('deactivate_plugins')) { |
|
135 | - require_once ABSPATH . 'wp-admin/includes/plugin.php'; |
|
136 | - } |
|
137 | - unset($_GET['activate'], $_REQUEST['activate']); |
|
138 | - deactivate_plugins($plugin_basename); |
|
139 | - } |
|
124 | + /** |
|
125 | + * deactivate_plugin |
|
126 | + * usage: espresso_deactivate_plugin( plugin_basename( __FILE__ )); |
|
127 | + * |
|
128 | + * @access public |
|
129 | + * @param string $plugin_basename - the results of plugin_basename( __FILE__ ) for the plugin's main file |
|
130 | + * @return void |
|
131 | + */ |
|
132 | + function espresso_deactivate_plugin($plugin_basename = '') |
|
133 | + { |
|
134 | + if (! function_exists('deactivate_plugins')) { |
|
135 | + require_once ABSPATH . 'wp-admin/includes/plugin.php'; |
|
136 | + } |
|
137 | + unset($_GET['activate'], $_REQUEST['activate']); |
|
138 | + deactivate_plugins($plugin_basename); |
|
139 | + } |
|
140 | 140 | } |
141 | 141 | \ No newline at end of file |