@@ -470,7 +470,7 @@ discard block |
||
470 | 470 | * |
471 | 471 | * @access protected |
472 | 472 | * @param \EE_Payment_Method $payment_method |
473 | - * @return \EE_Form_Section_Proper |
|
473 | + * @return EE_Form_Section_HTML |
|
474 | 474 | */ |
475 | 475 | protected function _pci_dss_compliance(EE_Payment_Method $payment_method) |
476 | 476 | { |
@@ -506,7 +506,7 @@ discard block |
||
506 | 506 | * |
507 | 507 | * @access protected |
508 | 508 | * @param \EE_Payment_Method $payment_method |
509 | - * @return \EE_Form_Section_Proper |
|
509 | + * @return EE_Form_Section_HTML |
|
510 | 510 | */ |
511 | 511 | protected function _currency_support(EE_Payment_Method $payment_method) |
512 | 512 | { |
@@ -541,7 +541,7 @@ discard block |
||
541 | 541 | * |
542 | 542 | * @access protected |
543 | 543 | * @param \EE_Payment_Method $payment_method |
544 | - * @return \EE_Form_Section_HTML |
|
544 | + * @return EE_Payment_Method_Form |
|
545 | 545 | */ |
546 | 546 | protected function _payment_method_settings(EE_Payment_Method $payment_method) |
547 | 547 | { |
@@ -615,7 +615,7 @@ discard block |
||
615 | 615 | * |
616 | 616 | * @access protected |
617 | 617 | * @param \EE_Payment_Method $payment_method |
618 | - * @return \EE_Form_Section_Proper |
|
618 | + * @return EE_Form_Section_HTML |
|
619 | 619 | */ |
620 | 620 | protected function _deactivate_payment_method_button(EE_Payment_Method $payment_method) |
621 | 621 | { |
@@ -170,7 +170,7 @@ discard block |
||
170 | 170 | $payment_method_types = EE_Payment_Method_Manager::instance()->payment_method_types(); |
171 | 171 | $all_pmt_help_tabs_config = array(); |
172 | 172 | foreach ($payment_method_types as $payment_method_type) { |
173 | - if (! EE_Registry::instance()->CAP->current_user_can( |
|
173 | + if ( ! EE_Registry::instance()->CAP->current_user_can( |
|
174 | 174 | $payment_method_type->cap_name(), |
175 | 175 | 'specific_payment_method_type_access' |
176 | 176 | ) |
@@ -180,10 +180,10 @@ discard block |
||
180 | 180 | foreach ($payment_method_type->help_tabs_config() as $help_tab_name => $config) { |
181 | 181 | $template_args = isset($config['template_args']) ? $config['template_args'] : array(); |
182 | 182 | $template_args['admin_page_obj'] = $this; |
183 | - $all_pmt_help_tabs_config[ $help_tab_name ] = array( |
|
183 | + $all_pmt_help_tabs_config[$help_tab_name] = array( |
|
184 | 184 | 'title' => $config['title'], |
185 | 185 | 'content' => EEH_Template::display_template( |
186 | - $payment_method_type->file_folder() . 'help_tabs' . DS . $config['filename'] . '.help_tab.php', |
|
186 | + $payment_method_type->file_folder().'help_tabs'.DS.$config['filename'].'.help_tab.php', |
|
187 | 187 | $template_args, |
188 | 188 | true |
189 | 189 | ), |
@@ -226,7 +226,7 @@ discard block |
||
226 | 226 | wp_enqueue_script('ee-text-links'); |
227 | 227 | wp_enqueue_script( |
228 | 228 | 'espresso_payments', |
229 | - EE_PAYMENTS_ASSETS_URL . 'espresso_payments_admin.js', |
|
229 | + EE_PAYMENTS_ASSETS_URL.'espresso_payments_admin.js', |
|
230 | 230 | array('espresso-ui-theme', 'ee-datepicker'), |
231 | 231 | EVENT_ESPRESSO_VERSION, |
232 | 232 | true |
@@ -239,7 +239,7 @@ discard block |
||
239 | 239 | // styles |
240 | 240 | wp_register_style( |
241 | 241 | 'espresso_payments', |
242 | - EE_PAYMENTS_ASSETS_URL . 'ee-payments.css', |
|
242 | + EE_PAYMENTS_ASSETS_URL.'ee-payments.css', |
|
243 | 243 | array(), |
244 | 244 | EVENT_ESPRESSO_VERSION |
245 | 245 | ); |
@@ -268,7 +268,7 @@ discard block |
||
268 | 268 | continue; |
269 | 269 | } |
270 | 270 | // check access |
271 | - if (! EE_Registry::instance()->CAP->current_user_can( |
|
271 | + if ( ! EE_Registry::instance()->CAP->current_user_can( |
|
272 | 272 | $pmt_obj->cap_name(), |
273 | 273 | 'specific_payment_method_type_access' |
274 | 274 | ) |
@@ -277,7 +277,7 @@ discard block |
||
277 | 277 | } |
278 | 278 | // check for any active pms of that type |
279 | 279 | $payment_method = EEM_Payment_Method::instance()->get_one_of_type($pmt_obj->system_name()); |
280 | - if (! $payment_method instanceof EE_Payment_Method) { |
|
280 | + if ( ! $payment_method instanceof EE_Payment_Method) { |
|
281 | 281 | $payment_method = EE_Payment_Method::new_instance( |
282 | 282 | array( |
283 | 283 | 'PMD_slug' => sanitize_key($pmt_obj->system_name()), |
@@ -287,7 +287,7 @@ discard block |
||
287 | 287 | ) |
288 | 288 | ); |
289 | 289 | } |
290 | - $payment_methods[ $payment_method->slug() ] = $payment_method; |
|
290 | + $payment_methods[$payment_method->slug()] = $payment_method; |
|
291 | 291 | } |
292 | 292 | $payment_methods = apply_filters( |
293 | 293 | 'FHEE__Payments_Admin_Page___payment_methods_list__payment_methods', |
@@ -297,7 +297,7 @@ discard block |
||
297 | 297 | if ($payment_method instanceof EE_Payment_Method) { |
298 | 298 | add_meta_box( |
299 | 299 | // html id |
300 | - 'espresso_' . $payment_method->slug() . '_payment_settings', |
|
300 | + 'espresso_'.$payment_method->slug().'_payment_settings', |
|
301 | 301 | // title |
302 | 302 | sprintf(__('%s Settings', 'event_espresso'), $payment_method->admin_name()), |
303 | 303 | // callback |
@@ -312,10 +312,10 @@ discard block |
||
312 | 312 | array('payment_method' => $payment_method) |
313 | 313 | ); |
314 | 314 | // setup for tabbed content |
315 | - $tabs[ $payment_method->slug() ] = array( |
|
315 | + $tabs[$payment_method->slug()] = array( |
|
316 | 316 | 'label' => $payment_method->admin_name(), |
317 | 317 | 'class' => $payment_method->active() ? 'gateway-active' : '', |
318 | - 'href' => 'espresso_' . $payment_method->slug() . '_payment_settings', |
|
318 | + 'href' => 'espresso_'.$payment_method->slug().'_payment_settings', |
|
319 | 319 | 'title' => __('Modify this Payment Method', 'event_espresso'), |
320 | 320 | 'slug' => $payment_method->slug(), |
321 | 321 | ); |
@@ -346,7 +346,7 @@ discard block |
||
346 | 346 | } |
347 | 347 | $payment_method = EEM_Payment_Method::instance()->get_one(array(array('PMD_slug' => $payment_method_slug))); |
348 | 348 | // if that didn't work or wasn't provided, find another way to select the current pm |
349 | - if (! $this->_verify_payment_method($payment_method)) { |
|
349 | + if ( ! $this->_verify_payment_method($payment_method)) { |
|
350 | 350 | // like, looking for an active one |
351 | 351 | $payment_method = EEM_Payment_Method::instance()->get_one_active('CART'); |
352 | 352 | // test that one as well |
@@ -395,7 +395,7 @@ discard block |
||
395 | 395 | { |
396 | 396 | $payment_method = isset($metabox['args'], $metabox['args']['payment_method']) |
397 | 397 | ? $metabox['args']['payment_method'] : null; |
398 | - if (! $payment_method instanceof EE_Payment_Method) { |
|
398 | + if ( ! $payment_method instanceof EE_Payment_Method) { |
|
399 | 399 | throw new EE_Error( |
400 | 400 | sprintf( |
401 | 401 | __( |
@@ -412,7 +412,7 @@ discard block |
||
412 | 412 | if ($form->form_data_present_in($this->_req_data)) { |
413 | 413 | $form->receive_form_submission($this->_req_data); |
414 | 414 | } |
415 | - echo $form->form_open() . $form->get_html_and_js() . $form->form_close(); |
|
415 | + echo $form->form_open().$form->get_html_and_js().$form->form_close(); |
|
416 | 416 | } else { |
417 | 417 | echo $this->_activate_payment_method_button($payment_method)->get_html_and_js(); |
418 | 418 | } |
@@ -428,13 +428,13 @@ discard block |
||
428 | 428 | */ |
429 | 429 | protected function _generate_payment_method_settings_form(EE_Payment_Method $payment_method) |
430 | 430 | { |
431 | - if (! $payment_method instanceof EE_Payment_Method) { |
|
431 | + if ( ! $payment_method instanceof EE_Payment_Method) { |
|
432 | 432 | return new EE_Form_Section_Proper(); |
433 | 433 | } |
434 | 434 | return new EE_Form_Section_Proper( |
435 | 435 | array( |
436 | - 'name' => $payment_method->slug() . '_settings_form', |
|
437 | - 'html_id' => $payment_method->slug() . '_settings_form', |
|
436 | + 'name' => $payment_method->slug().'_settings_form', |
|
437 | + 'html_id' => $payment_method->slug().'_settings_form', |
|
438 | 438 | 'action' => EE_Admin_Page::add_query_args_and_nonce( |
439 | 439 | array( |
440 | 440 | 'action' => 'update_payment_method', |
@@ -476,7 +476,7 @@ discard block |
||
476 | 476 | EEH_HTML::label( |
477 | 477 | EEH_HTML::strong(__('IMPORTANT', 'event_espresso'), '', 'important-notice') |
478 | 478 | ) |
479 | - ) . |
|
479 | + ). |
|
480 | 480 | EEH_HTML::td( |
481 | 481 | EEH_HTML::strong( |
482 | 482 | __( |
@@ -510,14 +510,14 @@ discard block |
||
510 | 510 | */ |
511 | 511 | protected function _currency_support(EE_Payment_Method $payment_method) |
512 | 512 | { |
513 | - if (! $payment_method->usable_for_currency(EE_Config::instance()->currency->code)) { |
|
513 | + if ( ! $payment_method->usable_for_currency(EE_Config::instance()->currency->code)) { |
|
514 | 514 | return new EE_Form_Section_HTML( |
515 | 515 | EEH_HTML::tr( |
516 | 516 | EEH_HTML::th( |
517 | 517 | EEH_HTML::label( |
518 | 518 | EEH_HTML::strong(__('IMPORTANT', 'event_espresso'), '', 'important-notice') |
519 | 519 | ) |
520 | - ) . |
|
520 | + ). |
|
521 | 521 | EEH_HTML::td( |
522 | 522 | EEH_HTML::strong( |
523 | 523 | sprintf( |
@@ -597,7 +597,7 @@ discard block |
||
597 | 597 | $update_button = new EE_Submit_Input( |
598 | 598 | array( |
599 | 599 | 'name' => 'submit', |
600 | - 'html_id' => 'save_' . $payment_method->slug() . '_settings', |
|
600 | + 'html_id' => 'save_'.$payment_method->slug().'_settings', |
|
601 | 601 | 'default' => sprintf( |
602 | 602 | __('Update %s Payment Settings', 'event_espresso'), |
603 | 603 | $payment_method->admin_name() |
@@ -606,9 +606,9 @@ discard block |
||
606 | 606 | ) |
607 | 607 | ); |
608 | 608 | return new EE_Form_Section_HTML( |
609 | - EEH_HTML::no_row(EEH_HTML::br(2)) . |
|
609 | + EEH_HTML::no_row(EEH_HTML::br(2)). |
|
610 | 610 | EEH_HTML::tr( |
611 | - EEH_HTML::th(__('Update Settings', 'event_espresso')) . |
|
611 | + EEH_HTML::th(__('Update Settings', 'event_espresso')). |
|
612 | 612 | EEH_HTML::td( |
613 | 613 | $update_button->get_html_for_input() |
614 | 614 | ) |
@@ -632,7 +632,7 @@ discard block |
||
632 | 632 | ); |
633 | 633 | return new EE_Form_Section_HTML( |
634 | 634 | EEH_HTML::tr( |
635 | - EEH_HTML::th(__('Deactivate Payment Method', 'event_espresso')) . |
|
635 | + EEH_HTML::th(__('Deactivate Payment Method', 'event_espresso')). |
|
636 | 636 | EEH_HTML::td( |
637 | 637 | EEH_HTML::link( |
638 | 638 | EE_Admin_Page::add_query_args_and_nonce( |
@@ -644,7 +644,7 @@ discard block |
||
644 | 644 | ), |
645 | 645 | $link_text_and_title, |
646 | 646 | $link_text_and_title, |
647 | - 'deactivate_' . $payment_method->slug(), |
|
647 | + 'deactivate_'.$payment_method->slug(), |
|
648 | 648 | 'espresso-button button-secondary' |
649 | 649 | ) |
650 | 650 | ) |
@@ -668,8 +668,8 @@ discard block |
||
668 | 668 | ); |
669 | 669 | return new EE_Form_Section_Proper( |
670 | 670 | array( |
671 | - 'name' => 'activate_' . $payment_method->slug() . '_settings_form', |
|
672 | - 'html_id' => 'activate_' . $payment_method->slug() . '_settings_form', |
|
671 | + 'name' => 'activate_'.$payment_method->slug().'_settings_form', |
|
672 | + 'html_id' => 'activate_'.$payment_method->slug().'_settings_form', |
|
673 | 673 | 'action' => '#', |
674 | 674 | 'layout_strategy' => new EE_Admin_Two_Column_Layout(), |
675 | 675 | 'subsections' => apply_filters( |
@@ -684,11 +684,11 @@ discard block |
||
684 | 684 | '', |
685 | 685 | 'colspan="2"' |
686 | 686 | ) |
687 | - ) . |
|
687 | + ). |
|
688 | 688 | EEH_HTML::tr( |
689 | 689 | EEH_HTML::th( |
690 | 690 | EEH_HTML::label(__('Click to Activate ', 'event_espresso')) |
691 | - ) . |
|
691 | + ). |
|
692 | 692 | EEH_HTML::td( |
693 | 693 | EEH_HTML::link( |
694 | 694 | EE_Admin_Page::add_query_args_and_nonce( |
@@ -700,7 +700,7 @@ discard block |
||
700 | 700 | ), |
701 | 701 | $link_text_and_title, |
702 | 702 | $link_text_and_title, |
703 | - 'activate_' . $payment_method->slug(), |
|
703 | + 'activate_'.$payment_method->slug(), |
|
704 | 704 | 'espresso-button-green button-primary' |
705 | 705 | ) |
706 | 706 | ) |
@@ -724,7 +724,7 @@ discard block |
||
724 | 724 | { |
725 | 725 | return new EE_Form_Section_HTML( |
726 | 726 | EEH_HTML::tr( |
727 | - EEH_HTML::th() . |
|
727 | + EEH_HTML::th(). |
|
728 | 728 | EEH_HTML::td( |
729 | 729 | EEH_HTML::p(__('All fields marked with a * are required fields', 'event_espresso'), '', 'grey-text') |
730 | 730 | ) |
@@ -807,7 +807,7 @@ discard block |
||
807 | 807 | } |
808 | 808 | } |
809 | 809 | // if we couldn't find the correct payment method type... |
810 | - if (! $correct_pmt_form_to_use) { |
|
810 | + if ( ! $correct_pmt_form_to_use) { |
|
811 | 811 | EE_Error::add_error( |
812 | 812 | __( |
813 | 813 | "We could not find which payment method type your form submission related to. Please contact support", |
@@ -822,7 +822,7 @@ discard block |
||
822 | 822 | $correct_pmt_form_to_use->receive_form_submission($this->_req_data); |
823 | 823 | if ($correct_pmt_form_to_use->is_valid()) { |
824 | 824 | $payment_settings_subform = $correct_pmt_form_to_use->get_subsection('payment_method_settings'); |
825 | - if (! $payment_settings_subform instanceof EE_Payment_Method_Form) { |
|
825 | + if ( ! $payment_settings_subform instanceof EE_Payment_Method_Form) { |
|
826 | 826 | throw new EE_Error( |
827 | 827 | sprintf( |
828 | 828 | __( |
@@ -874,7 +874,7 @@ discard block |
||
874 | 874 | $form = $this->getPaymentSettingsForm(); |
875 | 875 | $this->_set_add_edit_form_tags('update_payment_settings'); |
876 | 876 | $this->_set_publish_post_box_vars(null, false, false, null, false); |
877 | - $this->_template_args['admin_page_content'] = $form->get_html_and_js(); |
|
877 | + $this->_template_args['admin_page_content'] = $form->get_html_and_js(); |
|
878 | 878 | $this->display_admin_page_with_sidebar(); |
879 | 879 | } |
880 | 880 | |
@@ -910,7 +910,7 @@ discard block |
||
910 | 910 | EE_Registry::instance()->CFG |
911 | 911 | ); |
912 | 912 | |
913 | - $cfg = EE_Registry::instance()->CFG ; |
|
913 | + $cfg = EE_Registry::instance()->CFG; |
|
914 | 914 | |
915 | 915 | $what = __('Payment Settings', 'event_espresso'); |
916 | 916 | $success = $this->_update_espresso_configuration( |
@@ -1011,7 +1011,7 @@ discard block |
||
1011 | 1011 | } |
1012 | 1012 | // take into account search |
1013 | 1013 | if (isset($this->_req_data['s']) && $this->_req_data['s']) { |
1014 | - $similarity_string = array('LIKE', '%' . str_replace("", "%", $this->_req_data['s']) . '%'); |
|
1014 | + $similarity_string = array('LIKE', '%'.str_replace("", "%", $this->_req_data['s']).'%'); |
|
1015 | 1015 | $query_params[0]['OR*s']['Payment.Transaction.Registration.Attendee.ATT_fname'] = $similarity_string; |
1016 | 1016 | $query_params[0]['OR*s']['Payment.Transaction.Registration.Attendee.ATT_lname'] = $similarity_string; |
1017 | 1017 | $query_params[0]['OR*s']['Payment.Transaction.Registration.Attendee.ATT_email'] = $similarity_string; |
@@ -1031,8 +1031,8 @@ discard block |
||
1031 | 1031 | $start_date = wp_strip_all_tags($this->_req_data['payment-filter-start-date']); |
1032 | 1032 | $end_date = wp_strip_all_tags($this->_req_data['payment-filter-end-date']); |
1033 | 1033 | // make sure our timestamps start and end right at the boundaries for each day |
1034 | - $start_date = date('Y-m-d', strtotime($start_date)) . ' 00:00:00'; |
|
1035 | - $end_date = date('Y-m-d', strtotime($end_date)) . ' 23:59:59'; |
|
1034 | + $start_date = date('Y-m-d', strtotime($start_date)).' 00:00:00'; |
|
1035 | + $end_date = date('Y-m-d', strtotime($end_date)).' 23:59:59'; |
|
1036 | 1036 | // convert to timestamps |
1037 | 1037 | $start_date = strtotime($start_date); |
1038 | 1038 | $end_date = strtotime($end_date); |
@@ -1065,15 +1065,15 @@ discard block |
||
1065 | 1065 | $query_params['order_by'] = array('LOG_time' => 'DESC'); |
1066 | 1066 | } |
1067 | 1067 | $offset = ($current_page - 1) * $per_page; |
1068 | - if (! isset($this->_req_data['download_results'])) { |
|
1068 | + if ( ! isset($this->_req_data['download_results'])) { |
|
1069 | 1069 | $query_params['limit'] = array($offset, $per_page); |
1070 | 1070 | } |
1071 | 1071 | // now they've requested to instead just download the file instead of viewing it. |
1072 | 1072 | if (isset($this->_req_data['download_results'])) { |
1073 | 1073 | $wpdb_results = EEM_Change_Log::instance()->get_all_efficiently($query_params); |
1074 | 1074 | header('Content-Disposition: attachment'); |
1075 | - header("Content-Disposition: attachment; filename=ee_payment_logs_for_" . sanitize_key(site_url())); |
|
1076 | - echo "<h1>Payment Logs for " . site_url() . "</h1>"; |
|
1075 | + header("Content-Disposition: attachment; filename=ee_payment_logs_for_".sanitize_key(site_url())); |
|
1076 | + echo "<h1>Payment Logs for ".site_url()."</h1>"; |
|
1077 | 1077 | echo "<h3>Query:</h3>"; |
1078 | 1078 | var_dump($query_params); |
1079 | 1079 | echo "<h3>Results:</h3>"; |
@@ -1125,7 +1125,7 @@ discard block |
||
1125 | 1125 | } |
1126 | 1126 | } |
1127 | 1127 | $this->_template_args['admin_page_content'] = EEH_Template::display_template( |
1128 | - EE_PAYMENTS_TEMPLATE_PATH . 'payment_log_details.template.php', |
|
1128 | + EE_PAYMENTS_TEMPLATE_PATH.'payment_log_details.template.php', |
|
1129 | 1129 | array( |
1130 | 1130 | 'payment_log' => $payment_log, |
1131 | 1131 | 'payment_method' => $payment_method, |
@@ -14,1128 +14,1128 @@ |
||
14 | 14 | class Payments_Admin_Page extends EE_Admin_Page |
15 | 15 | { |
16 | 16 | |
17 | - /** |
|
18 | - * Variables used for when we're re-sorting the logs results, in case |
|
19 | - * we needed to do two queries and we need to resort |
|
20 | - * |
|
21 | - * @var string |
|
22 | - */ |
|
23 | - private $_sort_logs_again_direction; |
|
24 | - |
|
25 | - |
|
26 | - /** |
|
27 | - * @Constructor |
|
28 | - * @access public |
|
29 | - * @param bool $routing indicate whether we want to just load the object and handle routing or just load the object. |
|
30 | - * @return \Payments_Admin_Page |
|
31 | - */ |
|
32 | - public function __construct($routing = true) |
|
33 | - { |
|
34 | - parent::__construct($routing); |
|
35 | - } |
|
36 | - |
|
37 | - |
|
38 | - protected function _init_page_props() |
|
39 | - { |
|
40 | - $this->page_slug = EE_PAYMENTS_PG_SLUG; |
|
41 | - $this->page_label = __('Payment Methods', 'event_espresso'); |
|
42 | - $this->_admin_base_url = EE_PAYMENTS_ADMIN_URL; |
|
43 | - $this->_admin_base_path = EE_PAYMENTS_ADMIN; |
|
44 | - } |
|
45 | - |
|
46 | - |
|
47 | - protected function _ajax_hooks() |
|
48 | - { |
|
49 | - // todo: all hooks for ajax goes here. |
|
50 | - } |
|
51 | - |
|
52 | - |
|
53 | - protected function _define_page_props() |
|
54 | - { |
|
55 | - $this->_admin_page_title = $this->page_label; |
|
56 | - $this->_labels = array( |
|
57 | - 'publishbox' => __('Update Settings', 'event_espresso'), |
|
58 | - ); |
|
59 | - } |
|
60 | - |
|
61 | - |
|
62 | - protected function _set_page_routes() |
|
63 | - { |
|
64 | - /** |
|
65 | - * note that with payment method capabilities, although we've implemented |
|
66 | - * capability mapping which will be used for accessing payment methods owned by |
|
67 | - * other users. This is not fully implemented yet in the payment method ui. |
|
68 | - * Currently only the "plural" caps are in active use. |
|
69 | - * When cap mapping is implemented, some routes will need to use the singular form of |
|
70 | - * capability method and also include the $id of the payment method for the route. |
|
71 | - **/ |
|
72 | - $this->_page_routes = array( |
|
73 | - 'default' => array( |
|
74 | - 'func' => '_payment_methods_list', |
|
75 | - 'capability' => 'ee_edit_payment_methods', |
|
76 | - ), |
|
77 | - 'payment_settings' => array( |
|
78 | - 'func' => '_payment_settings', |
|
79 | - 'capability' => 'ee_manage_gateways', |
|
80 | - ), |
|
81 | - 'activate_payment_method' => array( |
|
82 | - 'func' => '_activate_payment_method', |
|
83 | - 'noheader' => true, |
|
84 | - 'capability' => 'ee_edit_payment_methods', |
|
85 | - ), |
|
86 | - 'deactivate_payment_method' => array( |
|
87 | - 'func' => '_deactivate_payment_method', |
|
88 | - 'noheader' => true, |
|
89 | - 'capability' => 'ee_delete_payment_methods', |
|
90 | - ), |
|
91 | - 'update_payment_method' => array( |
|
92 | - 'func' => '_update_payment_method', |
|
93 | - 'noheader' => true, |
|
94 | - 'headers_sent_route' => 'default', |
|
95 | - 'capability' => 'ee_edit_payment_methods', |
|
96 | - ), |
|
97 | - 'update_payment_settings' => array( |
|
98 | - 'func' => '_update_payment_settings', |
|
99 | - 'noheader' => true, |
|
100 | - 'capability' => 'ee_manage_gateways', |
|
101 | - ), |
|
102 | - 'payment_log' => array( |
|
103 | - 'func' => '_payment_log_overview_list_table', |
|
104 | - 'capability' => 'ee_read_payment_methods', |
|
105 | - ), |
|
106 | - 'payment_log_details' => array( |
|
107 | - 'func' => '_payment_log_details', |
|
108 | - 'capability' => 'ee_read_payment_methods', |
|
109 | - ), |
|
110 | - ); |
|
111 | - } |
|
112 | - |
|
113 | - |
|
114 | - protected function _set_page_config() |
|
115 | - { |
|
116 | - $payment_method_list_config = array( |
|
117 | - 'nav' => array( |
|
118 | - 'label' => __('Payment Methods', 'event_espresso'), |
|
119 | - 'order' => 10, |
|
120 | - ), |
|
121 | - 'metaboxes' => $this->_default_espresso_metaboxes, |
|
122 | - 'help_tabs' => array_merge( |
|
123 | - array( |
|
124 | - 'payment_methods_overview_help_tab' => array( |
|
125 | - 'title' => __('Payment Methods Overview', 'event_espresso'), |
|
126 | - 'filename' => 'payment_methods_overview', |
|
127 | - ), |
|
128 | - ), |
|
129 | - $this->_add_payment_method_help_tabs() |
|
130 | - ), |
|
131 | - 'help_tour' => array('Payment_Methods_Selection_Help_Tour'), |
|
132 | - 'require_nonce' => false, |
|
133 | - ); |
|
134 | - $this->_page_config = array( |
|
135 | - 'default' => $payment_method_list_config, |
|
136 | - 'payment_settings' => array( |
|
137 | - 'nav' => array( |
|
138 | - 'label' => __('Settings', 'event_espresso'), |
|
139 | - 'order' => 20, |
|
140 | - ), |
|
141 | - 'help_tabs' => array( |
|
142 | - 'payment_methods_settings_help_tab' => array( |
|
143 | - 'title' => __('Payment Method Settings', 'event_espresso'), |
|
144 | - 'filename' => 'payment_methods_settings', |
|
145 | - ), |
|
146 | - ), |
|
147 | - // 'help_tour' => array( 'Payment_Methods_Settings_Help_Tour' ), |
|
148 | - 'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_publish_post_box')), |
|
149 | - 'require_nonce' => false, |
|
150 | - ), |
|
151 | - 'payment_log' => array( |
|
152 | - 'nav' => array( |
|
153 | - 'label' => __("Logs", 'event_espresso'), |
|
154 | - 'order' => 30, |
|
155 | - ), |
|
156 | - 'list_table' => 'Payment_Log_Admin_List_Table', |
|
157 | - 'metaboxes' => $this->_default_espresso_metaboxes, |
|
158 | - 'require_nonce' => false, |
|
159 | - ), |
|
160 | - ); |
|
161 | - } |
|
162 | - |
|
163 | - |
|
164 | - /** |
|
165 | - * @return array |
|
166 | - */ |
|
167 | - protected function _add_payment_method_help_tabs() |
|
168 | - { |
|
169 | - EE_Registry::instance()->load_lib('Payment_Method_Manager'); |
|
170 | - $payment_method_types = EE_Payment_Method_Manager::instance()->payment_method_types(); |
|
171 | - $all_pmt_help_tabs_config = array(); |
|
172 | - foreach ($payment_method_types as $payment_method_type) { |
|
173 | - if (! EE_Registry::instance()->CAP->current_user_can( |
|
174 | - $payment_method_type->cap_name(), |
|
175 | - 'specific_payment_method_type_access' |
|
176 | - ) |
|
177 | - ) { |
|
178 | - continue; |
|
179 | - } |
|
180 | - foreach ($payment_method_type->help_tabs_config() as $help_tab_name => $config) { |
|
181 | - $template_args = isset($config['template_args']) ? $config['template_args'] : array(); |
|
182 | - $template_args['admin_page_obj'] = $this; |
|
183 | - $all_pmt_help_tabs_config[ $help_tab_name ] = array( |
|
184 | - 'title' => $config['title'], |
|
185 | - 'content' => EEH_Template::display_template( |
|
186 | - $payment_method_type->file_folder() . 'help_tabs' . DS . $config['filename'] . '.help_tab.php', |
|
187 | - $template_args, |
|
188 | - true |
|
189 | - ), |
|
190 | - ); |
|
191 | - } |
|
192 | - } |
|
193 | - return $all_pmt_help_tabs_config; |
|
194 | - } |
|
195 | - |
|
196 | - |
|
197 | - // none of the below group are currently used for Gateway Settings |
|
198 | - protected function _add_screen_options() |
|
199 | - { |
|
200 | - } |
|
201 | - |
|
202 | - |
|
203 | - protected function _add_feature_pointers() |
|
204 | - { |
|
205 | - } |
|
206 | - |
|
207 | - |
|
208 | - public function admin_init() |
|
209 | - { |
|
210 | - } |
|
211 | - |
|
212 | - |
|
213 | - public function admin_notices() |
|
214 | - { |
|
215 | - } |
|
216 | - |
|
217 | - |
|
218 | - public function admin_footer_scripts() |
|
219 | - { |
|
220 | - } |
|
221 | - |
|
222 | - |
|
223 | - public function load_scripts_styles() |
|
224 | - { |
|
225 | - wp_enqueue_script('ee_admin_js'); |
|
226 | - wp_enqueue_script('ee-text-links'); |
|
227 | - wp_enqueue_script( |
|
228 | - 'espresso_payments', |
|
229 | - EE_PAYMENTS_ASSETS_URL . 'espresso_payments_admin.js', |
|
230 | - array('espresso-ui-theme', 'ee-datepicker'), |
|
231 | - EVENT_ESPRESSO_VERSION, |
|
232 | - true |
|
233 | - ); |
|
234 | - } |
|
235 | - |
|
236 | - |
|
237 | - public function load_scripts_styles_default() |
|
238 | - { |
|
239 | - // styles |
|
240 | - wp_register_style( |
|
241 | - 'espresso_payments', |
|
242 | - EE_PAYMENTS_ASSETS_URL . 'ee-payments.css', |
|
243 | - array(), |
|
244 | - EVENT_ESPRESSO_VERSION |
|
245 | - ); |
|
246 | - wp_enqueue_style('espresso_payments'); |
|
247 | - wp_enqueue_style('ee-text-links'); |
|
248 | - // scripts |
|
249 | - } |
|
250 | - |
|
251 | - |
|
252 | - protected function _payment_methods_list() |
|
253 | - { |
|
254 | - /** |
|
255 | - * first let's ensure payment methods have been setup. We do this here because when people activate a |
|
256 | - * payment method for the first time (as an addon), it may not setup its capabilities or get registered correctly due |
|
257 | - * to the loading process. However, people MUST setup the details for the payment method so its safe to do a |
|
258 | - * recheck here. |
|
259 | - */ |
|
260 | - EE_Registry::instance()->load_lib('Payment_Method_Manager'); |
|
261 | - EEM_Payment_Method::instance()->verify_button_urls(); |
|
262 | - // setup tabs, one for each payment method type |
|
263 | - $tabs = array(); |
|
264 | - $payment_methods = array(); |
|
265 | - foreach (EE_Payment_Method_Manager::instance()->payment_method_types() as $pmt_obj) { |
|
266 | - // we don't want to show admin-only PMTs for now |
|
267 | - if ($pmt_obj instanceof EE_PMT_Admin_Only) { |
|
268 | - continue; |
|
269 | - } |
|
270 | - // check access |
|
271 | - if (! EE_Registry::instance()->CAP->current_user_can( |
|
272 | - $pmt_obj->cap_name(), |
|
273 | - 'specific_payment_method_type_access' |
|
274 | - ) |
|
275 | - ) { |
|
276 | - continue; |
|
277 | - } |
|
278 | - // check for any active pms of that type |
|
279 | - $payment_method = EEM_Payment_Method::instance()->get_one_of_type($pmt_obj->system_name()); |
|
280 | - if (! $payment_method instanceof EE_Payment_Method) { |
|
281 | - $payment_method = EE_Payment_Method::new_instance( |
|
282 | - array( |
|
283 | - 'PMD_slug' => sanitize_key($pmt_obj->system_name()), |
|
284 | - 'PMD_type' => $pmt_obj->system_name(), |
|
285 | - 'PMD_name' => $pmt_obj->pretty_name(), |
|
286 | - 'PMD_admin_name' => $pmt_obj->pretty_name(), |
|
287 | - ) |
|
288 | - ); |
|
289 | - } |
|
290 | - $payment_methods[ $payment_method->slug() ] = $payment_method; |
|
291 | - } |
|
292 | - $payment_methods = apply_filters( |
|
293 | - 'FHEE__Payments_Admin_Page___payment_methods_list__payment_methods', |
|
294 | - $payment_methods |
|
295 | - ); |
|
296 | - foreach ($payment_methods as $payment_method) { |
|
297 | - if ($payment_method instanceof EE_Payment_Method) { |
|
298 | - add_meta_box( |
|
299 | - // html id |
|
300 | - 'espresso_' . $payment_method->slug() . '_payment_settings', |
|
301 | - // title |
|
302 | - sprintf(__('%s Settings', 'event_espresso'), $payment_method->admin_name()), |
|
303 | - // callback |
|
304 | - array($this, 'payment_method_settings_meta_box'), |
|
305 | - // post type |
|
306 | - null, |
|
307 | - // context |
|
308 | - 'normal', |
|
309 | - // priority |
|
310 | - 'default', |
|
311 | - // callback args |
|
312 | - array('payment_method' => $payment_method) |
|
313 | - ); |
|
314 | - // setup for tabbed content |
|
315 | - $tabs[ $payment_method->slug() ] = array( |
|
316 | - 'label' => $payment_method->admin_name(), |
|
317 | - 'class' => $payment_method->active() ? 'gateway-active' : '', |
|
318 | - 'href' => 'espresso_' . $payment_method->slug() . '_payment_settings', |
|
319 | - 'title' => __('Modify this Payment Method', 'event_espresso'), |
|
320 | - 'slug' => $payment_method->slug(), |
|
321 | - ); |
|
322 | - } |
|
323 | - } |
|
324 | - $this->_template_args['admin_page_header'] = EEH_Tabbed_Content::tab_text_links( |
|
325 | - $tabs, |
|
326 | - 'payment_method_links', |
|
327 | - '|', |
|
328 | - $this->_get_active_payment_method_slug() |
|
329 | - ); |
|
330 | - $this->display_admin_page_with_sidebar(); |
|
331 | - } |
|
332 | - |
|
333 | - |
|
334 | - /** |
|
335 | - * _get_active_payment_method_slug |
|
336 | - * |
|
337 | - * @return string |
|
338 | - */ |
|
339 | - protected function _get_active_payment_method_slug() |
|
340 | - { |
|
341 | - $payment_method_slug = false; |
|
342 | - // decide which payment method tab to open first, as dictated by the request's 'payment_method' |
|
343 | - if (isset($this->_req_data['payment_method'])) { |
|
344 | - // if they provided the current payment method, use it |
|
345 | - $payment_method_slug = sanitize_key($this->_req_data['payment_method']); |
|
346 | - } |
|
347 | - $payment_method = EEM_Payment_Method::instance()->get_one(array(array('PMD_slug' => $payment_method_slug))); |
|
348 | - // if that didn't work or wasn't provided, find another way to select the current pm |
|
349 | - if (! $this->_verify_payment_method($payment_method)) { |
|
350 | - // like, looking for an active one |
|
351 | - $payment_method = EEM_Payment_Method::instance()->get_one_active('CART'); |
|
352 | - // test that one as well |
|
353 | - if ($this->_verify_payment_method($payment_method)) { |
|
354 | - $payment_method_slug = $payment_method->slug(); |
|
355 | - } else { |
|
356 | - $payment_method_slug = 'paypal_standard'; |
|
357 | - } |
|
358 | - } |
|
359 | - return $payment_method_slug; |
|
360 | - } |
|
361 | - |
|
362 | - |
|
363 | - /** |
|
364 | - * payment_method_settings_meta_box |
|
365 | - * returns TRUE if the passed payment method is properly constructed and the logged in user has the correct |
|
366 | - * capabilities to access it |
|
367 | - * |
|
368 | - * @param \EE_Payment_Method $payment_method |
|
369 | - * @return boolean |
|
370 | - */ |
|
371 | - protected function _verify_payment_method($payment_method) |
|
372 | - { |
|
373 | - if ($payment_method instanceof EE_Payment_Method && $payment_method->type_obj() instanceof EE_PMT_Base |
|
374 | - && EE_Registry::instance()->CAP->current_user_can( |
|
375 | - $payment_method->type_obj()->cap_name(), |
|
376 | - 'specific_payment_method_type_access' |
|
377 | - ) |
|
378 | - ) { |
|
379 | - return true; |
|
380 | - } |
|
381 | - return false; |
|
382 | - } |
|
383 | - |
|
384 | - |
|
385 | - /** |
|
386 | - * payment_method_settings_meta_box |
|
387 | - * |
|
388 | - * @param NULL $post_obj_which_is_null is an object containing the current post (as a $post object) |
|
389 | - * @param array $metabox is an array with metabox id, title, callback, and args elements. the value |
|
390 | - * at 'args' has key 'payment_method', as set within _payment_methods_list |
|
391 | - * @return string |
|
392 | - * @throws EE_Error |
|
393 | - */ |
|
394 | - public function payment_method_settings_meta_box($post_obj_which_is_null, $metabox) |
|
395 | - { |
|
396 | - $payment_method = isset($metabox['args'], $metabox['args']['payment_method']) |
|
397 | - ? $metabox['args']['payment_method'] : null; |
|
398 | - if (! $payment_method instanceof EE_Payment_Method) { |
|
399 | - throw new EE_Error( |
|
400 | - sprintf( |
|
401 | - __( |
|
402 | - 'Payment method metabox setup incorrectly. No Payment method object was supplied', |
|
403 | - 'event_espresso' |
|
404 | - ) |
|
405 | - ) |
|
406 | - ); |
|
407 | - } |
|
408 | - $payment_method_scopes = $payment_method->active(); |
|
409 | - // if the payment method really exists show its form, otherwise the activation template |
|
410 | - if ($payment_method->ID() && ! empty($payment_method_scopes)) { |
|
411 | - $form = $this->_generate_payment_method_settings_form($payment_method); |
|
412 | - if ($form->form_data_present_in($this->_req_data)) { |
|
413 | - $form->receive_form_submission($this->_req_data); |
|
414 | - } |
|
415 | - echo $form->form_open() . $form->get_html_and_js() . $form->form_close(); |
|
416 | - } else { |
|
417 | - echo $this->_activate_payment_method_button($payment_method)->get_html_and_js(); |
|
418 | - } |
|
419 | - } |
|
420 | - |
|
421 | - |
|
422 | - /** |
|
423 | - * Gets the form for all the settings related to this payment method type |
|
424 | - * |
|
425 | - * @access protected |
|
426 | - * @param \EE_Payment_Method $payment_method |
|
427 | - * @return \EE_Form_Section_Proper |
|
428 | - */ |
|
429 | - protected function _generate_payment_method_settings_form(EE_Payment_Method $payment_method) |
|
430 | - { |
|
431 | - if (! $payment_method instanceof EE_Payment_Method) { |
|
432 | - return new EE_Form_Section_Proper(); |
|
433 | - } |
|
434 | - return new EE_Form_Section_Proper( |
|
435 | - array( |
|
436 | - 'name' => $payment_method->slug() . '_settings_form', |
|
437 | - 'html_id' => $payment_method->slug() . '_settings_form', |
|
438 | - 'action' => EE_Admin_Page::add_query_args_and_nonce( |
|
439 | - array( |
|
440 | - 'action' => 'update_payment_method', |
|
441 | - 'payment_method' => $payment_method->slug(), |
|
442 | - ), |
|
443 | - EE_PAYMENTS_ADMIN_URL |
|
444 | - ), |
|
445 | - 'layout_strategy' => new EE_Admin_Two_Column_Layout(), |
|
446 | - 'subsections' => apply_filters( |
|
447 | - 'FHEE__Payments_Admin_Page___generate_payment_method_settings_form__form_subsections', |
|
448 | - array( |
|
449 | - 'pci_dss_compliance' => $this->_pci_dss_compliance($payment_method), |
|
450 | - 'currency_support' => $this->_currency_support($payment_method), |
|
451 | - 'payment_method_settings' => $this->_payment_method_settings($payment_method), |
|
452 | - 'update' => $this->_update_payment_method_button($payment_method), |
|
453 | - 'deactivate' => $this->_deactivate_payment_method_button($payment_method), |
|
454 | - 'fine_print' => $this->_fine_print(), |
|
455 | - ), |
|
456 | - $payment_method |
|
457 | - ), |
|
458 | - ) |
|
459 | - ); |
|
460 | - } |
|
461 | - |
|
462 | - |
|
463 | - /** |
|
464 | - * _pci_dss_compliance |
|
465 | - * |
|
466 | - * @access protected |
|
467 | - * @param \EE_Payment_Method $payment_method |
|
468 | - * @return \EE_Form_Section_Proper |
|
469 | - */ |
|
470 | - protected function _pci_dss_compliance(EE_Payment_Method $payment_method) |
|
471 | - { |
|
472 | - if ($payment_method->type_obj()->requires_https()) { |
|
473 | - return new EE_Form_Section_HTML( |
|
474 | - EEH_HTML::tr( |
|
475 | - EEH_HTML::th( |
|
476 | - EEH_HTML::label( |
|
477 | - EEH_HTML::strong(__('IMPORTANT', 'event_espresso'), '', 'important-notice') |
|
478 | - ) |
|
479 | - ) . |
|
480 | - EEH_HTML::td( |
|
481 | - EEH_HTML::strong( |
|
482 | - __( |
|
483 | - 'You are responsible for your own website security and Payment Card Industry Data Security Standards (PCI DSS) compliance.', |
|
484 | - 'event_espresso' |
|
485 | - ) |
|
486 | - ) |
|
487 | - . |
|
488 | - EEH_HTML::br() |
|
489 | - . |
|
490 | - __('Learn more about ', 'event_espresso') |
|
491 | - . EEH_HTML::link( |
|
492 | - 'https://www.pcisecuritystandards.org/merchants/index.php', |
|
493 | - __('PCI DSS compliance', 'event_espresso') |
|
494 | - ) |
|
495 | - ) |
|
496 | - ) |
|
497 | - ); |
|
498 | - } else { |
|
499 | - return new EE_Form_Section_HTML(''); |
|
500 | - } |
|
501 | - } |
|
502 | - |
|
503 | - |
|
504 | - /** |
|
505 | - * _currency_support |
|
506 | - * |
|
507 | - * @access protected |
|
508 | - * @param \EE_Payment_Method $payment_method |
|
509 | - * @return \EE_Form_Section_Proper |
|
510 | - */ |
|
511 | - protected function _currency_support(EE_Payment_Method $payment_method) |
|
512 | - { |
|
513 | - if (! $payment_method->usable_for_currency(EE_Config::instance()->currency->code)) { |
|
514 | - return new EE_Form_Section_HTML( |
|
515 | - EEH_HTML::tr( |
|
516 | - EEH_HTML::th( |
|
517 | - EEH_HTML::label( |
|
518 | - EEH_HTML::strong(__('IMPORTANT', 'event_espresso'), '', 'important-notice') |
|
519 | - ) |
|
520 | - ) . |
|
521 | - EEH_HTML::td( |
|
522 | - EEH_HTML::strong( |
|
523 | - sprintf( |
|
524 | - __( |
|
525 | - 'This payment method does not support the currency set on your site (%1$s). Please activate a different payment method or change your site\'s country and associated currency.', |
|
526 | - 'event_espresso' |
|
527 | - ), |
|
528 | - EE_Config::instance()->currency->code |
|
529 | - ) |
|
530 | - ) |
|
531 | - ) |
|
532 | - ) |
|
533 | - ); |
|
534 | - } else { |
|
535 | - return new EE_Form_Section_HTML(''); |
|
536 | - } |
|
537 | - } |
|
538 | - |
|
539 | - |
|
540 | - /** |
|
541 | - * _update_payment_method_button |
|
542 | - * |
|
543 | - * @access protected |
|
544 | - * @param \EE_Payment_Method $payment_method |
|
545 | - * @return \EE_Form_Section_HTML |
|
546 | - */ |
|
547 | - protected function _payment_method_settings(EE_Payment_Method $payment_method) |
|
548 | - { |
|
549 | - // modify the form so we only have/show fields that will be implemented for this version |
|
550 | - return $this->_simplify_form($payment_method->type_obj()->settings_form(), $payment_method->name()); |
|
551 | - } |
|
552 | - |
|
553 | - |
|
554 | - /** |
|
555 | - * Simplifies the form to merely reproduce 4.1's gateway settings functionality |
|
556 | - * |
|
557 | - * @param EE_Form_Section_Proper $form_section |
|
558 | - * @param string $payment_method_name |
|
559 | - * @return \EE_Payment_Method_Form |
|
560 | - * @throws \EE_Error |
|
561 | - */ |
|
562 | - protected function _simplify_form($form_section, $payment_method_name = '') |
|
563 | - { |
|
564 | - if ($form_section instanceof EE_Payment_Method_Form) { |
|
565 | - $form_section->exclude( |
|
566 | - array( |
|
567 | - 'PMD_type', // dont want them changing the type |
|
568 | - 'PMD_slug', // or the slug (probably never) |
|
569 | - 'PMD_wp_user', // or the user's ID |
|
570 | - 'Currency' // or the currency, until the rest of EE supports simultaneous currencies |
|
571 | - ) |
|
572 | - ); |
|
573 | - return $form_section; |
|
574 | - } else { |
|
575 | - throw new EE_Error( |
|
576 | - sprintf( |
|
577 | - __( |
|
578 | - 'The EE_Payment_Method_Form for the "%1$s" payment method is missing or invalid.', |
|
579 | - 'event_espresso' |
|
580 | - ), |
|
581 | - $payment_method_name |
|
582 | - ) |
|
583 | - ); |
|
584 | - } |
|
585 | - } |
|
586 | - |
|
587 | - |
|
588 | - /** |
|
589 | - * _update_payment_method_button |
|
590 | - * |
|
591 | - * @access protected |
|
592 | - * @param \EE_Payment_Method $payment_method |
|
593 | - * @return \EE_Form_Section_HTML |
|
594 | - */ |
|
595 | - protected function _update_payment_method_button(EE_Payment_Method $payment_method) |
|
596 | - { |
|
597 | - $update_button = new EE_Submit_Input( |
|
598 | - array( |
|
599 | - 'name' => 'submit', |
|
600 | - 'html_id' => 'save_' . $payment_method->slug() . '_settings', |
|
601 | - 'default' => sprintf( |
|
602 | - __('Update %s Payment Settings', 'event_espresso'), |
|
603 | - $payment_method->admin_name() |
|
604 | - ), |
|
605 | - 'html_label' => EEH_HTML::nbsp(), |
|
606 | - ) |
|
607 | - ); |
|
608 | - return new EE_Form_Section_HTML( |
|
609 | - EEH_HTML::no_row(EEH_HTML::br(2)) . |
|
610 | - EEH_HTML::tr( |
|
611 | - EEH_HTML::th(__('Update Settings', 'event_espresso')) . |
|
612 | - EEH_HTML::td( |
|
613 | - $update_button->get_html_for_input() |
|
614 | - ) |
|
615 | - ) |
|
616 | - ); |
|
617 | - } |
|
618 | - |
|
619 | - |
|
620 | - /** |
|
621 | - * _deactivate_payment_method_button |
|
622 | - * |
|
623 | - * @access protected |
|
624 | - * @param \EE_Payment_Method $payment_method |
|
625 | - * @return \EE_Form_Section_Proper |
|
626 | - */ |
|
627 | - protected function _deactivate_payment_method_button(EE_Payment_Method $payment_method) |
|
628 | - { |
|
629 | - $link_text_and_title = sprintf( |
|
630 | - __('Deactivate %1$s Payments?', 'event_espresso'), |
|
631 | - $payment_method->admin_name() |
|
632 | - ); |
|
633 | - return new EE_Form_Section_HTML( |
|
634 | - EEH_HTML::tr( |
|
635 | - EEH_HTML::th(__('Deactivate Payment Method', 'event_espresso')) . |
|
636 | - EEH_HTML::td( |
|
637 | - EEH_HTML::link( |
|
638 | - EE_Admin_Page::add_query_args_and_nonce( |
|
639 | - array( |
|
640 | - 'action' => 'deactivate_payment_method', |
|
641 | - 'payment_method' => $payment_method->slug(), |
|
642 | - ), |
|
643 | - EE_PAYMENTS_ADMIN_URL |
|
644 | - ), |
|
645 | - $link_text_and_title, |
|
646 | - $link_text_and_title, |
|
647 | - 'deactivate_' . $payment_method->slug(), |
|
648 | - 'espresso-button button-secondary' |
|
649 | - ) |
|
650 | - ) |
|
651 | - ) |
|
652 | - ); |
|
653 | - } |
|
654 | - |
|
655 | - |
|
656 | - /** |
|
657 | - * _activate_payment_method_button |
|
658 | - * |
|
659 | - * @access protected |
|
660 | - * @param \EE_Payment_Method $payment_method |
|
661 | - * @return \EE_Form_Section_Proper |
|
662 | - */ |
|
663 | - protected function _activate_payment_method_button(EE_Payment_Method $payment_method) |
|
664 | - { |
|
665 | - $link_text_and_title = sprintf( |
|
666 | - __('Activate %1$s Payment Method?', 'event_espresso'), |
|
667 | - $payment_method->admin_name() |
|
668 | - ); |
|
669 | - return new EE_Form_Section_Proper( |
|
670 | - array( |
|
671 | - 'name' => 'activate_' . $payment_method->slug() . '_settings_form', |
|
672 | - 'html_id' => 'activate_' . $payment_method->slug() . '_settings_form', |
|
673 | - 'action' => '#', |
|
674 | - 'layout_strategy' => new EE_Admin_Two_Column_Layout(), |
|
675 | - 'subsections' => apply_filters( |
|
676 | - 'FHEE__Payments_Admin_Page___activate_payment_method_button__form_subsections', |
|
677 | - array( |
|
678 | - new EE_Form_Section_HTML( |
|
679 | - EEH_HTML::tr( |
|
680 | - EEH_HTML::td( |
|
681 | - $payment_method->type_obj()->introductory_html(), |
|
682 | - '', |
|
683 | - '', |
|
684 | - '', |
|
685 | - 'colspan="2"' |
|
686 | - ) |
|
687 | - ) . |
|
688 | - EEH_HTML::tr( |
|
689 | - EEH_HTML::th( |
|
690 | - EEH_HTML::label(__('Click to Activate ', 'event_espresso')) |
|
691 | - ) . |
|
692 | - EEH_HTML::td( |
|
693 | - EEH_HTML::link( |
|
694 | - EE_Admin_Page::add_query_args_and_nonce( |
|
695 | - array( |
|
696 | - 'action' => 'activate_payment_method', |
|
697 | - 'payment_method_type' => $payment_method->type(), |
|
698 | - ), |
|
699 | - EE_PAYMENTS_ADMIN_URL |
|
700 | - ), |
|
701 | - $link_text_and_title, |
|
702 | - $link_text_and_title, |
|
703 | - 'activate_' . $payment_method->slug(), |
|
704 | - 'espresso-button-green button-primary' |
|
705 | - ) |
|
706 | - ) |
|
707 | - ) |
|
708 | - ), |
|
709 | - ), |
|
710 | - $payment_method |
|
711 | - ), |
|
712 | - ) |
|
713 | - ); |
|
714 | - } |
|
715 | - |
|
716 | - |
|
717 | - /** |
|
718 | - * _fine_print |
|
719 | - * |
|
720 | - * @access protected |
|
721 | - * @return \EE_Form_Section_HTML |
|
722 | - */ |
|
723 | - protected function _fine_print() |
|
724 | - { |
|
725 | - return new EE_Form_Section_HTML( |
|
726 | - EEH_HTML::tr( |
|
727 | - EEH_HTML::th() . |
|
728 | - EEH_HTML::td( |
|
729 | - EEH_HTML::p(__('All fields marked with a * are required fields', 'event_espresso'), '', 'grey-text') |
|
730 | - ) |
|
731 | - ) |
|
732 | - ); |
|
733 | - } |
|
734 | - |
|
735 | - |
|
736 | - /** |
|
737 | - * Activates a payment method of that type. Mostly assuming there is only 1 of that type (or none so far) |
|
738 | - * |
|
739 | - * @global WP_User $current_user |
|
740 | - */ |
|
741 | - protected function _activate_payment_method() |
|
742 | - { |
|
743 | - if (isset($this->_req_data['payment_method_type'])) { |
|
744 | - $payment_method_type = sanitize_text_field($this->_req_data['payment_method_type']); |
|
745 | - // see if one exists |
|
746 | - EE_Registry::instance()->load_lib('Payment_Method_Manager'); |
|
747 | - $payment_method = EE_Payment_Method_Manager::instance() |
|
748 | - ->activate_a_payment_method_of_type($payment_method_type); |
|
749 | - $this->_redirect_after_action( |
|
750 | - 1, |
|
751 | - 'Payment Method', |
|
752 | - 'activated', |
|
753 | - array('action' => 'default', 'payment_method' => $payment_method->slug()) |
|
754 | - ); |
|
755 | - } else { |
|
756 | - $this->_redirect_after_action(false, 'Payment Method', 'activated', array('action' => 'default')); |
|
757 | - } |
|
758 | - } |
|
759 | - |
|
760 | - |
|
761 | - /** |
|
762 | - * Deactivates the payment method with the specified slug, and redirects. |
|
763 | - */ |
|
764 | - protected function _deactivate_payment_method() |
|
765 | - { |
|
766 | - if (isset($this->_req_data['payment_method'])) { |
|
767 | - $payment_method_slug = sanitize_key($this->_req_data['payment_method']); |
|
768 | - // deactivate it |
|
769 | - EE_Registry::instance()->load_lib('Payment_Method_Manager'); |
|
770 | - $count_updated = EE_Payment_Method_Manager::instance()->deactivate_payment_method($payment_method_slug); |
|
771 | - $this->_redirect_after_action( |
|
772 | - $count_updated, |
|
773 | - 'Payment Method', |
|
774 | - 'deactivated', |
|
775 | - array('action' => 'default', 'payment_method' => $payment_method_slug) |
|
776 | - ); |
|
777 | - } else { |
|
778 | - $this->_redirect_after_action(false, 'Payment Method', 'deactivated', array('action' => 'default')); |
|
779 | - } |
|
780 | - } |
|
781 | - |
|
782 | - |
|
783 | - /** |
|
784 | - * Processes the payment method form that was submitted. This is slightly trickier than usual form |
|
785 | - * processing because we first need to identify WHICH form was processed and which payment method |
|
786 | - * it corresponds to. Once we have done that, we see if the form is valid. If it is, the |
|
787 | - * form's data is saved and we redirect to the default payment methods page, setting the updated payment method |
|
788 | - * as the currently-selected one. If it DOESN'T validate, we render the page with the form's errors (in the |
|
789 | - * subsequently called 'headers_sent_func' which is _payment_methods_list) |
|
790 | - * |
|
791 | - * @return void |
|
792 | - */ |
|
793 | - protected function _update_payment_method() |
|
794 | - { |
|
795 | - if ($_SERVER['REQUEST_METHOD'] == 'POST') { |
|
796 | - // ok let's find which gateway form to use based on the form input |
|
797 | - EE_Registry::instance()->load_lib('Payment_Method_Manager'); |
|
798 | - /** @var $correct_pmt_form_to_use EE_Payment_Method_Form */ |
|
799 | - $correct_pmt_form_to_use = null; |
|
800 | - $payment_method = null; |
|
801 | - foreach (EEM_Payment_Method::instance()->get_all() as $payment_method) { |
|
802 | - // get the form and simplify it, like what we do when we display it |
|
803 | - $pmt_form = $this->_generate_payment_method_settings_form($payment_method); |
|
804 | - if ($pmt_form->form_data_present_in($this->_req_data)) { |
|
805 | - $correct_pmt_form_to_use = $pmt_form; |
|
806 | - break; |
|
807 | - } |
|
808 | - } |
|
809 | - // if we couldn't find the correct payment method type... |
|
810 | - if (! $correct_pmt_form_to_use) { |
|
811 | - EE_Error::add_error( |
|
812 | - __( |
|
813 | - "We could not find which payment method type your form submission related to. Please contact support", |
|
814 | - 'event_espresso' |
|
815 | - ), |
|
816 | - __FILE__, |
|
817 | - __FUNCTION__, |
|
818 | - __LINE__ |
|
819 | - ); |
|
820 | - $this->_redirect_after_action(false, 'Payment Method', 'activated', array('action' => 'default')); |
|
821 | - } |
|
822 | - $correct_pmt_form_to_use->receive_form_submission($this->_req_data); |
|
823 | - if ($correct_pmt_form_to_use->is_valid()) { |
|
824 | - $payment_settings_subform = $correct_pmt_form_to_use->get_subsection('payment_method_settings'); |
|
825 | - if (! $payment_settings_subform instanceof EE_Payment_Method_Form) { |
|
826 | - throw new EE_Error( |
|
827 | - sprintf( |
|
828 | - __( |
|
829 | - 'The payment method could not be saved because the form sections were misnamed. We expected to find %1$s, but did not.', |
|
830 | - 'event_espresso' |
|
831 | - ), |
|
832 | - 'payment_method_settings' |
|
833 | - ) |
|
834 | - ); |
|
835 | - } |
|
836 | - $payment_settings_subform->save(); |
|
837 | - /** @var $pm EE_Payment_Method */ |
|
838 | - $this->_redirect_after_action( |
|
839 | - true, |
|
840 | - 'Payment Method', |
|
841 | - 'updated', |
|
842 | - array('action' => 'default', 'payment_method' => $payment_method->slug()) |
|
843 | - ); |
|
844 | - } else { |
|
845 | - EE_Error::add_error( |
|
846 | - sprintf( |
|
847 | - __( |
|
848 | - 'Payment method of type %s was not saved because there were validation errors. They have been marked in the form', |
|
849 | - 'event_espresso' |
|
850 | - ), |
|
851 | - $payment_method instanceof EE_Payment_Method ? $payment_method->type_obj()->pretty_name() |
|
852 | - : __('"(unknown)"', 'event_espresso') |
|
853 | - ), |
|
854 | - __FILE__, |
|
855 | - __FUNCTION__, |
|
856 | - __LINE__ |
|
857 | - ); |
|
858 | - } |
|
859 | - } |
|
860 | - return; |
|
861 | - } |
|
862 | - |
|
863 | - |
|
864 | - /** |
|
865 | - * Displays payment settings (not payment METHOD settings, that's _payment_method_settings) |
|
866 | - * @throws DomainException |
|
867 | - * @throws EE_Error |
|
868 | - * @throws InvalidArgumentException |
|
869 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
870 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
871 | - */ |
|
872 | - protected function _payment_settings() |
|
873 | - { |
|
874 | - $form = $this->getPaymentSettingsForm(); |
|
875 | - $this->_set_add_edit_form_tags('update_payment_settings'); |
|
876 | - $this->_set_publish_post_box_vars(null, false, false, null, false); |
|
877 | - $this->_template_args['admin_page_content'] = $form->get_html_and_js(); |
|
878 | - $this->display_admin_page_with_sidebar(); |
|
879 | - } |
|
880 | - |
|
881 | - |
|
882 | - /** |
|
883 | - * _update_payment_settings |
|
884 | - * |
|
885 | - * @access protected |
|
886 | - * @return void |
|
887 | - * @throws EE_Error |
|
888 | - * @throws InvalidArgumentException |
|
889 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
890 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
891 | - */ |
|
892 | - protected function _update_payment_settings() |
|
893 | - { |
|
894 | - $form = $this->getPaymentSettingsForm(); |
|
895 | - if ($form->was_submitted($this->_req_data)) { |
|
896 | - $form->receive_form_submission($this->_req_data); |
|
897 | - if ($form->is_valid()) { |
|
898 | - /** |
|
899 | - * @var $reg_config EE_Registration_Config |
|
900 | - */ |
|
901 | - $loader = LoaderFactory::getLoader(); |
|
902 | - $reg_config = $loader->getShared('EE_Registration_Config'); |
|
903 | - $valid_data = $form->valid_data(); |
|
904 | - $reg_config->show_pending_payment_options = $valid_data['show_pending_payment_options']; |
|
905 | - $reg_config->gateway_log_lifespan = $valid_data['gateway_log_lifespan']; |
|
906 | - } |
|
907 | - } |
|
908 | - EE_Registry::instance()->CFG = apply_filters( |
|
909 | - 'FHEE__Payments_Admin_Page___update_payment_settings__CFG', |
|
910 | - EE_Registry::instance()->CFG |
|
911 | - ); |
|
912 | - |
|
913 | - $cfg = EE_Registry::instance()->CFG ; |
|
914 | - |
|
915 | - $what = __('Payment Settings', 'event_espresso'); |
|
916 | - $success = $this->_update_espresso_configuration( |
|
917 | - $what, |
|
918 | - EE_Registry::instance()->CFG, |
|
919 | - __FILE__, |
|
920 | - __FUNCTION__, |
|
921 | - __LINE__ |
|
922 | - ); |
|
923 | - $this->_redirect_after_action( |
|
924 | - $success, |
|
925 | - $what, |
|
926 | - __('updated', 'event_espresso'), |
|
927 | - array('action' => 'payment_settings') |
|
928 | - ); |
|
929 | - } |
|
930 | - |
|
931 | - |
|
932 | - /** |
|
933 | - * Gets the form used for updating payment settings |
|
934 | - * |
|
935 | - * @return EE_Form_Section_Proper |
|
936 | - * @throws EE_Error |
|
937 | - * @throws InvalidArgumentException |
|
938 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
939 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
940 | - */ |
|
941 | - protected function getPaymentSettingsForm() |
|
942 | - { |
|
943 | - /** |
|
944 | - * @var $reg_config EE_Registration_Config |
|
945 | - */ |
|
946 | - $reg_config = LoaderFactory::getLoader()->getShared('EE_Registration_Config'); |
|
947 | - return new EE_Form_Section_Proper( |
|
948 | - array( |
|
949 | - 'name' => 'payment-settings', |
|
950 | - 'layout_strategy' => new EE_Admin_Two_Column_Layout(), |
|
951 | - 'subsections' => array( |
|
952 | - 'show_pending_payment_options' => new EE_Yes_No_Input( |
|
953 | - array( |
|
954 | - 'html_name' => 'show_pending_payment_options', |
|
955 | - 'default' => $reg_config->show_pending_payment_options, |
|
956 | - 'html_help_text' => esc_html__( |
|
957 | - "If a payment is marked as 'Pending Payment', or if payment is deferred (ie, an offline gateway like Check, Bank, or Invoice is used), then give registrants the option to retry payment. ", |
|
958 | - 'event_espresso' |
|
959 | - ) |
|
960 | - ) |
|
961 | - ), |
|
962 | - 'gateway_log_lifespan' => new \EE_Select_Input( |
|
963 | - $reg_config->gatewayLogLifespanOptions(), |
|
964 | - array( |
|
965 | - 'html_label_text' => esc_html__('Gateway Logs Lifespan', 'event_espresso'), |
|
966 | - 'html_help_text' => esc_html__('If issues arise with payments being made through a payment gateway, it\'s helpful to log non-sensitive communications with the payment gateway. But it\'s a security responsibility, so it\'s a good idea to not keep them for any longer than necessary.', 'event_espresso'), |
|
967 | - 'default' => $reg_config->gateway_log_lifespan, |
|
968 | - ) |
|
969 | - ) |
|
970 | - ) |
|
971 | - ) |
|
972 | - ); |
|
973 | - } |
|
974 | - |
|
975 | - |
|
976 | - protected function _payment_log_overview_list_table() |
|
977 | - { |
|
978 | - $this->display_admin_list_table_page_with_sidebar(); |
|
979 | - } |
|
980 | - |
|
981 | - |
|
982 | - protected function _set_list_table_views_payment_log() |
|
983 | - { |
|
984 | - $this->_views = array( |
|
985 | - 'all' => array( |
|
986 | - 'slug' => 'all', |
|
987 | - 'label' => __('View All Logs', 'event_espresso'), |
|
988 | - 'count' => 0, |
|
989 | - ), |
|
990 | - ); |
|
991 | - } |
|
992 | - |
|
993 | - |
|
994 | - /** |
|
995 | - * @param int $per_page |
|
996 | - * @param int $current_page |
|
997 | - * @param bool $count |
|
998 | - * @return array |
|
999 | - */ |
|
1000 | - public function get_payment_logs($per_page = 50, $current_page = 0, $count = false) |
|
1001 | - { |
|
1002 | - EE_Registry::instance()->load_model('Change_Log'); |
|
1003 | - // we may need to do multiple queries (joining differently), so we actually wan tan array of query params |
|
1004 | - $query_params = array(array('LOG_type' => EEM_Change_Log::type_gateway)); |
|
1005 | - // check if they've selected a specific payment method |
|
1006 | - if (isset($this->_req_data['_payment_method']) && $this->_req_data['_payment_method'] !== 'all') { |
|
1007 | - $query_params[0]['OR*pm_or_pay_pm'] = array( |
|
1008 | - 'Payment.Payment_Method.PMD_ID' => $this->_req_data['_payment_method'], |
|
1009 | - 'Payment_Method.PMD_ID' => $this->_req_data['_payment_method'], |
|
1010 | - ); |
|
1011 | - } |
|
1012 | - // take into account search |
|
1013 | - if (isset($this->_req_data['s']) && $this->_req_data['s']) { |
|
1014 | - $similarity_string = array('LIKE', '%' . str_replace("", "%", $this->_req_data['s']) . '%'); |
|
1015 | - $query_params[0]['OR*s']['Payment.Transaction.Registration.Attendee.ATT_fname'] = $similarity_string; |
|
1016 | - $query_params[0]['OR*s']['Payment.Transaction.Registration.Attendee.ATT_lname'] = $similarity_string; |
|
1017 | - $query_params[0]['OR*s']['Payment.Transaction.Registration.Attendee.ATT_email'] = $similarity_string; |
|
1018 | - $query_params[0]['OR*s']['Payment.Payment_Method.PMD_name'] = $similarity_string; |
|
1019 | - $query_params[0]['OR*s']['Payment.Payment_Method.PMD_admin_name'] = $similarity_string; |
|
1020 | - $query_params[0]['OR*s']['Payment.Payment_Method.PMD_type'] = $similarity_string; |
|
1021 | - $query_params[0]['OR*s']['LOG_message'] = $similarity_string; |
|
1022 | - $query_params[0]['OR*s']['Payment_Method.PMD_name'] = $similarity_string; |
|
1023 | - $query_params[0]['OR*s']['Payment_Method.PMD_admin_name'] = $similarity_string; |
|
1024 | - $query_params[0]['OR*s']['Payment_Method.PMD_type'] = $similarity_string; |
|
1025 | - $query_params[0]['OR*s']['LOG_message'] = $similarity_string; |
|
1026 | - } |
|
1027 | - if (isset($this->_req_data['payment-filter-start-date']) |
|
1028 | - && isset($this->_req_data['payment-filter-end-date']) |
|
1029 | - ) { |
|
1030 | - // add date |
|
1031 | - $start_date = wp_strip_all_tags($this->_req_data['payment-filter-start-date']); |
|
1032 | - $end_date = wp_strip_all_tags($this->_req_data['payment-filter-end-date']); |
|
1033 | - // make sure our timestamps start and end right at the boundaries for each day |
|
1034 | - $start_date = date('Y-m-d', strtotime($start_date)) . ' 00:00:00'; |
|
1035 | - $end_date = date('Y-m-d', strtotime($end_date)) . ' 23:59:59'; |
|
1036 | - // convert to timestamps |
|
1037 | - $start_date = strtotime($start_date); |
|
1038 | - $end_date = strtotime($end_date); |
|
1039 | - // makes sure start date is the lowest value and vice versa |
|
1040 | - $start_date = min($start_date, $end_date); |
|
1041 | - $end_date = max($start_date, $end_date); |
|
1042 | - // convert for query |
|
1043 | - $start_date = EEM_Change_Log::instance() |
|
1044 | - ->convert_datetime_for_query( |
|
1045 | - 'LOG_time', |
|
1046 | - date('Y-m-d H:i:s', $start_date), |
|
1047 | - 'Y-m-d H:i:s' |
|
1048 | - ); |
|
1049 | - $end_date = EEM_Change_Log::instance() |
|
1050 | - ->convert_datetime_for_query( |
|
1051 | - 'LOG_time', |
|
1052 | - date('Y-m-d H:i:s', $end_date), |
|
1053 | - 'Y-m-d H:i:s' |
|
1054 | - ); |
|
1055 | - $query_params[0]['LOG_time'] = array('BETWEEN', array($start_date, $end_date)); |
|
1056 | - } |
|
1057 | - if ($count) { |
|
1058 | - return EEM_Change_Log::instance()->count($query_params); |
|
1059 | - } |
|
1060 | - if (isset($this->_req_data['order'])) { |
|
1061 | - $sort = (isset($this->_req_data['order']) && ! empty($this->_req_data['order'])) ? $this->_req_data['order'] |
|
1062 | - : 'DESC'; |
|
1063 | - $query_params['order_by'] = array('LOG_time' => $sort); |
|
1064 | - } else { |
|
1065 | - $query_params['order_by'] = array('LOG_time' => 'DESC'); |
|
1066 | - } |
|
1067 | - $offset = ($current_page - 1) * $per_page; |
|
1068 | - if (! isset($this->_req_data['download_results'])) { |
|
1069 | - $query_params['limit'] = array($offset, $per_page); |
|
1070 | - } |
|
1071 | - // now they've requested to instead just download the file instead of viewing it. |
|
1072 | - if (isset($this->_req_data['download_results'])) { |
|
1073 | - $wpdb_results = EEM_Change_Log::instance()->get_all_efficiently($query_params); |
|
1074 | - header('Content-Disposition: attachment'); |
|
1075 | - header("Content-Disposition: attachment; filename=ee_payment_logs_for_" . sanitize_key(site_url())); |
|
1076 | - echo "<h1>Payment Logs for " . site_url() . "</h1>"; |
|
1077 | - echo "<h3>Query:</h3>"; |
|
1078 | - var_dump($query_params); |
|
1079 | - echo "<h3>Results:</h3>"; |
|
1080 | - var_dump($wpdb_results); |
|
1081 | - die; |
|
1082 | - } |
|
1083 | - $results = EEM_Change_Log::instance()->get_all($query_params); |
|
1084 | - return $results; |
|
1085 | - } |
|
1086 | - |
|
1087 | - |
|
1088 | - /** |
|
1089 | - * Used by usort to RE-sort log query results, because we lose the ordering |
|
1090 | - * because we're possibly combining the results from two queries |
|
1091 | - * |
|
1092 | - * @param EE_Change_Log $logA |
|
1093 | - * @param EE_Change_Log $logB |
|
1094 | - * @return int |
|
1095 | - */ |
|
1096 | - protected function _sort_logs_again($logA, $logB) |
|
1097 | - { |
|
1098 | - $timeA = $logA->get_raw('LOG_time'); |
|
1099 | - $timeB = $logB->get_raw('LOG_time'); |
|
1100 | - if ($timeA == $timeB) { |
|
1101 | - return 0; |
|
1102 | - } |
|
1103 | - $comparison = $timeA < $timeB ? -1 : 1; |
|
1104 | - if (strtoupper($this->_sort_logs_again_direction) == 'DESC') { |
|
1105 | - return $comparison * -1; |
|
1106 | - } else { |
|
1107 | - return $comparison; |
|
1108 | - } |
|
1109 | - } |
|
1110 | - |
|
1111 | - |
|
1112 | - protected function _payment_log_details() |
|
1113 | - { |
|
1114 | - EE_Registry::instance()->load_model('Change_Log'); |
|
1115 | - /** @var $payment_log EE_Change_Log */ |
|
1116 | - $payment_log = EEM_Change_Log::instance()->get_one_by_ID($this->_req_data['ID']); |
|
1117 | - $payment_method = null; |
|
1118 | - $transaction = null; |
|
1119 | - if ($payment_log instanceof EE_Change_Log) { |
|
1120 | - if ($payment_log->object() instanceof EE_Payment) { |
|
1121 | - $payment_method = $payment_log->object()->payment_method(); |
|
1122 | - $transaction = $payment_log->object()->transaction(); |
|
1123 | - } elseif ($payment_log->object() instanceof EE_Payment_Method) { |
|
1124 | - $payment_method = $payment_log->object(); |
|
1125 | - } elseif ($payment_log->object() instanceof EE_Transaction) { |
|
1126 | - $transaction = $payment_log->object(); |
|
1127 | - $payment_method = $transaction->payment_method(); |
|
1128 | - } |
|
1129 | - } |
|
1130 | - $this->_template_args['admin_page_content'] = EEH_Template::display_template( |
|
1131 | - EE_PAYMENTS_TEMPLATE_PATH . 'payment_log_details.template.php', |
|
1132 | - array( |
|
1133 | - 'payment_log' => $payment_log, |
|
1134 | - 'payment_method' => $payment_method, |
|
1135 | - 'transaction' => $transaction, |
|
1136 | - ), |
|
1137 | - true |
|
1138 | - ); |
|
1139 | - $this->display_admin_page_with_sidebar(); |
|
1140 | - } |
|
17 | + /** |
|
18 | + * Variables used for when we're re-sorting the logs results, in case |
|
19 | + * we needed to do two queries and we need to resort |
|
20 | + * |
|
21 | + * @var string |
|
22 | + */ |
|
23 | + private $_sort_logs_again_direction; |
|
24 | + |
|
25 | + |
|
26 | + /** |
|
27 | + * @Constructor |
|
28 | + * @access public |
|
29 | + * @param bool $routing indicate whether we want to just load the object and handle routing or just load the object. |
|
30 | + * @return \Payments_Admin_Page |
|
31 | + */ |
|
32 | + public function __construct($routing = true) |
|
33 | + { |
|
34 | + parent::__construct($routing); |
|
35 | + } |
|
36 | + |
|
37 | + |
|
38 | + protected function _init_page_props() |
|
39 | + { |
|
40 | + $this->page_slug = EE_PAYMENTS_PG_SLUG; |
|
41 | + $this->page_label = __('Payment Methods', 'event_espresso'); |
|
42 | + $this->_admin_base_url = EE_PAYMENTS_ADMIN_URL; |
|
43 | + $this->_admin_base_path = EE_PAYMENTS_ADMIN; |
|
44 | + } |
|
45 | + |
|
46 | + |
|
47 | + protected function _ajax_hooks() |
|
48 | + { |
|
49 | + // todo: all hooks for ajax goes here. |
|
50 | + } |
|
51 | + |
|
52 | + |
|
53 | + protected function _define_page_props() |
|
54 | + { |
|
55 | + $this->_admin_page_title = $this->page_label; |
|
56 | + $this->_labels = array( |
|
57 | + 'publishbox' => __('Update Settings', 'event_espresso'), |
|
58 | + ); |
|
59 | + } |
|
60 | + |
|
61 | + |
|
62 | + protected function _set_page_routes() |
|
63 | + { |
|
64 | + /** |
|
65 | + * note that with payment method capabilities, although we've implemented |
|
66 | + * capability mapping which will be used for accessing payment methods owned by |
|
67 | + * other users. This is not fully implemented yet in the payment method ui. |
|
68 | + * Currently only the "plural" caps are in active use. |
|
69 | + * When cap mapping is implemented, some routes will need to use the singular form of |
|
70 | + * capability method and also include the $id of the payment method for the route. |
|
71 | + **/ |
|
72 | + $this->_page_routes = array( |
|
73 | + 'default' => array( |
|
74 | + 'func' => '_payment_methods_list', |
|
75 | + 'capability' => 'ee_edit_payment_methods', |
|
76 | + ), |
|
77 | + 'payment_settings' => array( |
|
78 | + 'func' => '_payment_settings', |
|
79 | + 'capability' => 'ee_manage_gateways', |
|
80 | + ), |
|
81 | + 'activate_payment_method' => array( |
|
82 | + 'func' => '_activate_payment_method', |
|
83 | + 'noheader' => true, |
|
84 | + 'capability' => 'ee_edit_payment_methods', |
|
85 | + ), |
|
86 | + 'deactivate_payment_method' => array( |
|
87 | + 'func' => '_deactivate_payment_method', |
|
88 | + 'noheader' => true, |
|
89 | + 'capability' => 'ee_delete_payment_methods', |
|
90 | + ), |
|
91 | + 'update_payment_method' => array( |
|
92 | + 'func' => '_update_payment_method', |
|
93 | + 'noheader' => true, |
|
94 | + 'headers_sent_route' => 'default', |
|
95 | + 'capability' => 'ee_edit_payment_methods', |
|
96 | + ), |
|
97 | + 'update_payment_settings' => array( |
|
98 | + 'func' => '_update_payment_settings', |
|
99 | + 'noheader' => true, |
|
100 | + 'capability' => 'ee_manage_gateways', |
|
101 | + ), |
|
102 | + 'payment_log' => array( |
|
103 | + 'func' => '_payment_log_overview_list_table', |
|
104 | + 'capability' => 'ee_read_payment_methods', |
|
105 | + ), |
|
106 | + 'payment_log_details' => array( |
|
107 | + 'func' => '_payment_log_details', |
|
108 | + 'capability' => 'ee_read_payment_methods', |
|
109 | + ), |
|
110 | + ); |
|
111 | + } |
|
112 | + |
|
113 | + |
|
114 | + protected function _set_page_config() |
|
115 | + { |
|
116 | + $payment_method_list_config = array( |
|
117 | + 'nav' => array( |
|
118 | + 'label' => __('Payment Methods', 'event_espresso'), |
|
119 | + 'order' => 10, |
|
120 | + ), |
|
121 | + 'metaboxes' => $this->_default_espresso_metaboxes, |
|
122 | + 'help_tabs' => array_merge( |
|
123 | + array( |
|
124 | + 'payment_methods_overview_help_tab' => array( |
|
125 | + 'title' => __('Payment Methods Overview', 'event_espresso'), |
|
126 | + 'filename' => 'payment_methods_overview', |
|
127 | + ), |
|
128 | + ), |
|
129 | + $this->_add_payment_method_help_tabs() |
|
130 | + ), |
|
131 | + 'help_tour' => array('Payment_Methods_Selection_Help_Tour'), |
|
132 | + 'require_nonce' => false, |
|
133 | + ); |
|
134 | + $this->_page_config = array( |
|
135 | + 'default' => $payment_method_list_config, |
|
136 | + 'payment_settings' => array( |
|
137 | + 'nav' => array( |
|
138 | + 'label' => __('Settings', 'event_espresso'), |
|
139 | + 'order' => 20, |
|
140 | + ), |
|
141 | + 'help_tabs' => array( |
|
142 | + 'payment_methods_settings_help_tab' => array( |
|
143 | + 'title' => __('Payment Method Settings', 'event_espresso'), |
|
144 | + 'filename' => 'payment_methods_settings', |
|
145 | + ), |
|
146 | + ), |
|
147 | + // 'help_tour' => array( 'Payment_Methods_Settings_Help_Tour' ), |
|
148 | + 'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_publish_post_box')), |
|
149 | + 'require_nonce' => false, |
|
150 | + ), |
|
151 | + 'payment_log' => array( |
|
152 | + 'nav' => array( |
|
153 | + 'label' => __("Logs", 'event_espresso'), |
|
154 | + 'order' => 30, |
|
155 | + ), |
|
156 | + 'list_table' => 'Payment_Log_Admin_List_Table', |
|
157 | + 'metaboxes' => $this->_default_espresso_metaboxes, |
|
158 | + 'require_nonce' => false, |
|
159 | + ), |
|
160 | + ); |
|
161 | + } |
|
162 | + |
|
163 | + |
|
164 | + /** |
|
165 | + * @return array |
|
166 | + */ |
|
167 | + protected function _add_payment_method_help_tabs() |
|
168 | + { |
|
169 | + EE_Registry::instance()->load_lib('Payment_Method_Manager'); |
|
170 | + $payment_method_types = EE_Payment_Method_Manager::instance()->payment_method_types(); |
|
171 | + $all_pmt_help_tabs_config = array(); |
|
172 | + foreach ($payment_method_types as $payment_method_type) { |
|
173 | + if (! EE_Registry::instance()->CAP->current_user_can( |
|
174 | + $payment_method_type->cap_name(), |
|
175 | + 'specific_payment_method_type_access' |
|
176 | + ) |
|
177 | + ) { |
|
178 | + continue; |
|
179 | + } |
|
180 | + foreach ($payment_method_type->help_tabs_config() as $help_tab_name => $config) { |
|
181 | + $template_args = isset($config['template_args']) ? $config['template_args'] : array(); |
|
182 | + $template_args['admin_page_obj'] = $this; |
|
183 | + $all_pmt_help_tabs_config[ $help_tab_name ] = array( |
|
184 | + 'title' => $config['title'], |
|
185 | + 'content' => EEH_Template::display_template( |
|
186 | + $payment_method_type->file_folder() . 'help_tabs' . DS . $config['filename'] . '.help_tab.php', |
|
187 | + $template_args, |
|
188 | + true |
|
189 | + ), |
|
190 | + ); |
|
191 | + } |
|
192 | + } |
|
193 | + return $all_pmt_help_tabs_config; |
|
194 | + } |
|
195 | + |
|
196 | + |
|
197 | + // none of the below group are currently used for Gateway Settings |
|
198 | + protected function _add_screen_options() |
|
199 | + { |
|
200 | + } |
|
201 | + |
|
202 | + |
|
203 | + protected function _add_feature_pointers() |
|
204 | + { |
|
205 | + } |
|
206 | + |
|
207 | + |
|
208 | + public function admin_init() |
|
209 | + { |
|
210 | + } |
|
211 | + |
|
212 | + |
|
213 | + public function admin_notices() |
|
214 | + { |
|
215 | + } |
|
216 | + |
|
217 | + |
|
218 | + public function admin_footer_scripts() |
|
219 | + { |
|
220 | + } |
|
221 | + |
|
222 | + |
|
223 | + public function load_scripts_styles() |
|
224 | + { |
|
225 | + wp_enqueue_script('ee_admin_js'); |
|
226 | + wp_enqueue_script('ee-text-links'); |
|
227 | + wp_enqueue_script( |
|
228 | + 'espresso_payments', |
|
229 | + EE_PAYMENTS_ASSETS_URL . 'espresso_payments_admin.js', |
|
230 | + array('espresso-ui-theme', 'ee-datepicker'), |
|
231 | + EVENT_ESPRESSO_VERSION, |
|
232 | + true |
|
233 | + ); |
|
234 | + } |
|
235 | + |
|
236 | + |
|
237 | + public function load_scripts_styles_default() |
|
238 | + { |
|
239 | + // styles |
|
240 | + wp_register_style( |
|
241 | + 'espresso_payments', |
|
242 | + EE_PAYMENTS_ASSETS_URL . 'ee-payments.css', |
|
243 | + array(), |
|
244 | + EVENT_ESPRESSO_VERSION |
|
245 | + ); |
|
246 | + wp_enqueue_style('espresso_payments'); |
|
247 | + wp_enqueue_style('ee-text-links'); |
|
248 | + // scripts |
|
249 | + } |
|
250 | + |
|
251 | + |
|
252 | + protected function _payment_methods_list() |
|
253 | + { |
|
254 | + /** |
|
255 | + * first let's ensure payment methods have been setup. We do this here because when people activate a |
|
256 | + * payment method for the first time (as an addon), it may not setup its capabilities or get registered correctly due |
|
257 | + * to the loading process. However, people MUST setup the details for the payment method so its safe to do a |
|
258 | + * recheck here. |
|
259 | + */ |
|
260 | + EE_Registry::instance()->load_lib('Payment_Method_Manager'); |
|
261 | + EEM_Payment_Method::instance()->verify_button_urls(); |
|
262 | + // setup tabs, one for each payment method type |
|
263 | + $tabs = array(); |
|
264 | + $payment_methods = array(); |
|
265 | + foreach (EE_Payment_Method_Manager::instance()->payment_method_types() as $pmt_obj) { |
|
266 | + // we don't want to show admin-only PMTs for now |
|
267 | + if ($pmt_obj instanceof EE_PMT_Admin_Only) { |
|
268 | + continue; |
|
269 | + } |
|
270 | + // check access |
|
271 | + if (! EE_Registry::instance()->CAP->current_user_can( |
|
272 | + $pmt_obj->cap_name(), |
|
273 | + 'specific_payment_method_type_access' |
|
274 | + ) |
|
275 | + ) { |
|
276 | + continue; |
|
277 | + } |
|
278 | + // check for any active pms of that type |
|
279 | + $payment_method = EEM_Payment_Method::instance()->get_one_of_type($pmt_obj->system_name()); |
|
280 | + if (! $payment_method instanceof EE_Payment_Method) { |
|
281 | + $payment_method = EE_Payment_Method::new_instance( |
|
282 | + array( |
|
283 | + 'PMD_slug' => sanitize_key($pmt_obj->system_name()), |
|
284 | + 'PMD_type' => $pmt_obj->system_name(), |
|
285 | + 'PMD_name' => $pmt_obj->pretty_name(), |
|
286 | + 'PMD_admin_name' => $pmt_obj->pretty_name(), |
|
287 | + ) |
|
288 | + ); |
|
289 | + } |
|
290 | + $payment_methods[ $payment_method->slug() ] = $payment_method; |
|
291 | + } |
|
292 | + $payment_methods = apply_filters( |
|
293 | + 'FHEE__Payments_Admin_Page___payment_methods_list__payment_methods', |
|
294 | + $payment_methods |
|
295 | + ); |
|
296 | + foreach ($payment_methods as $payment_method) { |
|
297 | + if ($payment_method instanceof EE_Payment_Method) { |
|
298 | + add_meta_box( |
|
299 | + // html id |
|
300 | + 'espresso_' . $payment_method->slug() . '_payment_settings', |
|
301 | + // title |
|
302 | + sprintf(__('%s Settings', 'event_espresso'), $payment_method->admin_name()), |
|
303 | + // callback |
|
304 | + array($this, 'payment_method_settings_meta_box'), |
|
305 | + // post type |
|
306 | + null, |
|
307 | + // context |
|
308 | + 'normal', |
|
309 | + // priority |
|
310 | + 'default', |
|
311 | + // callback args |
|
312 | + array('payment_method' => $payment_method) |
|
313 | + ); |
|
314 | + // setup for tabbed content |
|
315 | + $tabs[ $payment_method->slug() ] = array( |
|
316 | + 'label' => $payment_method->admin_name(), |
|
317 | + 'class' => $payment_method->active() ? 'gateway-active' : '', |
|
318 | + 'href' => 'espresso_' . $payment_method->slug() . '_payment_settings', |
|
319 | + 'title' => __('Modify this Payment Method', 'event_espresso'), |
|
320 | + 'slug' => $payment_method->slug(), |
|
321 | + ); |
|
322 | + } |
|
323 | + } |
|
324 | + $this->_template_args['admin_page_header'] = EEH_Tabbed_Content::tab_text_links( |
|
325 | + $tabs, |
|
326 | + 'payment_method_links', |
|
327 | + '|', |
|
328 | + $this->_get_active_payment_method_slug() |
|
329 | + ); |
|
330 | + $this->display_admin_page_with_sidebar(); |
|
331 | + } |
|
332 | + |
|
333 | + |
|
334 | + /** |
|
335 | + * _get_active_payment_method_slug |
|
336 | + * |
|
337 | + * @return string |
|
338 | + */ |
|
339 | + protected function _get_active_payment_method_slug() |
|
340 | + { |
|
341 | + $payment_method_slug = false; |
|
342 | + // decide which payment method tab to open first, as dictated by the request's 'payment_method' |
|
343 | + if (isset($this->_req_data['payment_method'])) { |
|
344 | + // if they provided the current payment method, use it |
|
345 | + $payment_method_slug = sanitize_key($this->_req_data['payment_method']); |
|
346 | + } |
|
347 | + $payment_method = EEM_Payment_Method::instance()->get_one(array(array('PMD_slug' => $payment_method_slug))); |
|
348 | + // if that didn't work or wasn't provided, find another way to select the current pm |
|
349 | + if (! $this->_verify_payment_method($payment_method)) { |
|
350 | + // like, looking for an active one |
|
351 | + $payment_method = EEM_Payment_Method::instance()->get_one_active('CART'); |
|
352 | + // test that one as well |
|
353 | + if ($this->_verify_payment_method($payment_method)) { |
|
354 | + $payment_method_slug = $payment_method->slug(); |
|
355 | + } else { |
|
356 | + $payment_method_slug = 'paypal_standard'; |
|
357 | + } |
|
358 | + } |
|
359 | + return $payment_method_slug; |
|
360 | + } |
|
361 | + |
|
362 | + |
|
363 | + /** |
|
364 | + * payment_method_settings_meta_box |
|
365 | + * returns TRUE if the passed payment method is properly constructed and the logged in user has the correct |
|
366 | + * capabilities to access it |
|
367 | + * |
|
368 | + * @param \EE_Payment_Method $payment_method |
|
369 | + * @return boolean |
|
370 | + */ |
|
371 | + protected function _verify_payment_method($payment_method) |
|
372 | + { |
|
373 | + if ($payment_method instanceof EE_Payment_Method && $payment_method->type_obj() instanceof EE_PMT_Base |
|
374 | + && EE_Registry::instance()->CAP->current_user_can( |
|
375 | + $payment_method->type_obj()->cap_name(), |
|
376 | + 'specific_payment_method_type_access' |
|
377 | + ) |
|
378 | + ) { |
|
379 | + return true; |
|
380 | + } |
|
381 | + return false; |
|
382 | + } |
|
383 | + |
|
384 | + |
|
385 | + /** |
|
386 | + * payment_method_settings_meta_box |
|
387 | + * |
|
388 | + * @param NULL $post_obj_which_is_null is an object containing the current post (as a $post object) |
|
389 | + * @param array $metabox is an array with metabox id, title, callback, and args elements. the value |
|
390 | + * at 'args' has key 'payment_method', as set within _payment_methods_list |
|
391 | + * @return string |
|
392 | + * @throws EE_Error |
|
393 | + */ |
|
394 | + public function payment_method_settings_meta_box($post_obj_which_is_null, $metabox) |
|
395 | + { |
|
396 | + $payment_method = isset($metabox['args'], $metabox['args']['payment_method']) |
|
397 | + ? $metabox['args']['payment_method'] : null; |
|
398 | + if (! $payment_method instanceof EE_Payment_Method) { |
|
399 | + throw new EE_Error( |
|
400 | + sprintf( |
|
401 | + __( |
|
402 | + 'Payment method metabox setup incorrectly. No Payment method object was supplied', |
|
403 | + 'event_espresso' |
|
404 | + ) |
|
405 | + ) |
|
406 | + ); |
|
407 | + } |
|
408 | + $payment_method_scopes = $payment_method->active(); |
|
409 | + // if the payment method really exists show its form, otherwise the activation template |
|
410 | + if ($payment_method->ID() && ! empty($payment_method_scopes)) { |
|
411 | + $form = $this->_generate_payment_method_settings_form($payment_method); |
|
412 | + if ($form->form_data_present_in($this->_req_data)) { |
|
413 | + $form->receive_form_submission($this->_req_data); |
|
414 | + } |
|
415 | + echo $form->form_open() . $form->get_html_and_js() . $form->form_close(); |
|
416 | + } else { |
|
417 | + echo $this->_activate_payment_method_button($payment_method)->get_html_and_js(); |
|
418 | + } |
|
419 | + } |
|
420 | + |
|
421 | + |
|
422 | + /** |
|
423 | + * Gets the form for all the settings related to this payment method type |
|
424 | + * |
|
425 | + * @access protected |
|
426 | + * @param \EE_Payment_Method $payment_method |
|
427 | + * @return \EE_Form_Section_Proper |
|
428 | + */ |
|
429 | + protected function _generate_payment_method_settings_form(EE_Payment_Method $payment_method) |
|
430 | + { |
|
431 | + if (! $payment_method instanceof EE_Payment_Method) { |
|
432 | + return new EE_Form_Section_Proper(); |
|
433 | + } |
|
434 | + return new EE_Form_Section_Proper( |
|
435 | + array( |
|
436 | + 'name' => $payment_method->slug() . '_settings_form', |
|
437 | + 'html_id' => $payment_method->slug() . '_settings_form', |
|
438 | + 'action' => EE_Admin_Page::add_query_args_and_nonce( |
|
439 | + array( |
|
440 | + 'action' => 'update_payment_method', |
|
441 | + 'payment_method' => $payment_method->slug(), |
|
442 | + ), |
|
443 | + EE_PAYMENTS_ADMIN_URL |
|
444 | + ), |
|
445 | + 'layout_strategy' => new EE_Admin_Two_Column_Layout(), |
|
446 | + 'subsections' => apply_filters( |
|
447 | + 'FHEE__Payments_Admin_Page___generate_payment_method_settings_form__form_subsections', |
|
448 | + array( |
|
449 | + 'pci_dss_compliance' => $this->_pci_dss_compliance($payment_method), |
|
450 | + 'currency_support' => $this->_currency_support($payment_method), |
|
451 | + 'payment_method_settings' => $this->_payment_method_settings($payment_method), |
|
452 | + 'update' => $this->_update_payment_method_button($payment_method), |
|
453 | + 'deactivate' => $this->_deactivate_payment_method_button($payment_method), |
|
454 | + 'fine_print' => $this->_fine_print(), |
|
455 | + ), |
|
456 | + $payment_method |
|
457 | + ), |
|
458 | + ) |
|
459 | + ); |
|
460 | + } |
|
461 | + |
|
462 | + |
|
463 | + /** |
|
464 | + * _pci_dss_compliance |
|
465 | + * |
|
466 | + * @access protected |
|
467 | + * @param \EE_Payment_Method $payment_method |
|
468 | + * @return \EE_Form_Section_Proper |
|
469 | + */ |
|
470 | + protected function _pci_dss_compliance(EE_Payment_Method $payment_method) |
|
471 | + { |
|
472 | + if ($payment_method->type_obj()->requires_https()) { |
|
473 | + return new EE_Form_Section_HTML( |
|
474 | + EEH_HTML::tr( |
|
475 | + EEH_HTML::th( |
|
476 | + EEH_HTML::label( |
|
477 | + EEH_HTML::strong(__('IMPORTANT', 'event_espresso'), '', 'important-notice') |
|
478 | + ) |
|
479 | + ) . |
|
480 | + EEH_HTML::td( |
|
481 | + EEH_HTML::strong( |
|
482 | + __( |
|
483 | + 'You are responsible for your own website security and Payment Card Industry Data Security Standards (PCI DSS) compliance.', |
|
484 | + 'event_espresso' |
|
485 | + ) |
|
486 | + ) |
|
487 | + . |
|
488 | + EEH_HTML::br() |
|
489 | + . |
|
490 | + __('Learn more about ', 'event_espresso') |
|
491 | + . EEH_HTML::link( |
|
492 | + 'https://www.pcisecuritystandards.org/merchants/index.php', |
|
493 | + __('PCI DSS compliance', 'event_espresso') |
|
494 | + ) |
|
495 | + ) |
|
496 | + ) |
|
497 | + ); |
|
498 | + } else { |
|
499 | + return new EE_Form_Section_HTML(''); |
|
500 | + } |
|
501 | + } |
|
502 | + |
|
503 | + |
|
504 | + /** |
|
505 | + * _currency_support |
|
506 | + * |
|
507 | + * @access protected |
|
508 | + * @param \EE_Payment_Method $payment_method |
|
509 | + * @return \EE_Form_Section_Proper |
|
510 | + */ |
|
511 | + protected function _currency_support(EE_Payment_Method $payment_method) |
|
512 | + { |
|
513 | + if (! $payment_method->usable_for_currency(EE_Config::instance()->currency->code)) { |
|
514 | + return new EE_Form_Section_HTML( |
|
515 | + EEH_HTML::tr( |
|
516 | + EEH_HTML::th( |
|
517 | + EEH_HTML::label( |
|
518 | + EEH_HTML::strong(__('IMPORTANT', 'event_espresso'), '', 'important-notice') |
|
519 | + ) |
|
520 | + ) . |
|
521 | + EEH_HTML::td( |
|
522 | + EEH_HTML::strong( |
|
523 | + sprintf( |
|
524 | + __( |
|
525 | + 'This payment method does not support the currency set on your site (%1$s). Please activate a different payment method or change your site\'s country and associated currency.', |
|
526 | + 'event_espresso' |
|
527 | + ), |
|
528 | + EE_Config::instance()->currency->code |
|
529 | + ) |
|
530 | + ) |
|
531 | + ) |
|
532 | + ) |
|
533 | + ); |
|
534 | + } else { |
|
535 | + return new EE_Form_Section_HTML(''); |
|
536 | + } |
|
537 | + } |
|
538 | + |
|
539 | + |
|
540 | + /** |
|
541 | + * _update_payment_method_button |
|
542 | + * |
|
543 | + * @access protected |
|
544 | + * @param \EE_Payment_Method $payment_method |
|
545 | + * @return \EE_Form_Section_HTML |
|
546 | + */ |
|
547 | + protected function _payment_method_settings(EE_Payment_Method $payment_method) |
|
548 | + { |
|
549 | + // modify the form so we only have/show fields that will be implemented for this version |
|
550 | + return $this->_simplify_form($payment_method->type_obj()->settings_form(), $payment_method->name()); |
|
551 | + } |
|
552 | + |
|
553 | + |
|
554 | + /** |
|
555 | + * Simplifies the form to merely reproduce 4.1's gateway settings functionality |
|
556 | + * |
|
557 | + * @param EE_Form_Section_Proper $form_section |
|
558 | + * @param string $payment_method_name |
|
559 | + * @return \EE_Payment_Method_Form |
|
560 | + * @throws \EE_Error |
|
561 | + */ |
|
562 | + protected function _simplify_form($form_section, $payment_method_name = '') |
|
563 | + { |
|
564 | + if ($form_section instanceof EE_Payment_Method_Form) { |
|
565 | + $form_section->exclude( |
|
566 | + array( |
|
567 | + 'PMD_type', // dont want them changing the type |
|
568 | + 'PMD_slug', // or the slug (probably never) |
|
569 | + 'PMD_wp_user', // or the user's ID |
|
570 | + 'Currency' // or the currency, until the rest of EE supports simultaneous currencies |
|
571 | + ) |
|
572 | + ); |
|
573 | + return $form_section; |
|
574 | + } else { |
|
575 | + throw new EE_Error( |
|
576 | + sprintf( |
|
577 | + __( |
|
578 | + 'The EE_Payment_Method_Form for the "%1$s" payment method is missing or invalid.', |
|
579 | + 'event_espresso' |
|
580 | + ), |
|
581 | + $payment_method_name |
|
582 | + ) |
|
583 | + ); |
|
584 | + } |
|
585 | + } |
|
586 | + |
|
587 | + |
|
588 | + /** |
|
589 | + * _update_payment_method_button |
|
590 | + * |
|
591 | + * @access protected |
|
592 | + * @param \EE_Payment_Method $payment_method |
|
593 | + * @return \EE_Form_Section_HTML |
|
594 | + */ |
|
595 | + protected function _update_payment_method_button(EE_Payment_Method $payment_method) |
|
596 | + { |
|
597 | + $update_button = new EE_Submit_Input( |
|
598 | + array( |
|
599 | + 'name' => 'submit', |
|
600 | + 'html_id' => 'save_' . $payment_method->slug() . '_settings', |
|
601 | + 'default' => sprintf( |
|
602 | + __('Update %s Payment Settings', 'event_espresso'), |
|
603 | + $payment_method->admin_name() |
|
604 | + ), |
|
605 | + 'html_label' => EEH_HTML::nbsp(), |
|
606 | + ) |
|
607 | + ); |
|
608 | + return new EE_Form_Section_HTML( |
|
609 | + EEH_HTML::no_row(EEH_HTML::br(2)) . |
|
610 | + EEH_HTML::tr( |
|
611 | + EEH_HTML::th(__('Update Settings', 'event_espresso')) . |
|
612 | + EEH_HTML::td( |
|
613 | + $update_button->get_html_for_input() |
|
614 | + ) |
|
615 | + ) |
|
616 | + ); |
|
617 | + } |
|
618 | + |
|
619 | + |
|
620 | + /** |
|
621 | + * _deactivate_payment_method_button |
|
622 | + * |
|
623 | + * @access protected |
|
624 | + * @param \EE_Payment_Method $payment_method |
|
625 | + * @return \EE_Form_Section_Proper |
|
626 | + */ |
|
627 | + protected function _deactivate_payment_method_button(EE_Payment_Method $payment_method) |
|
628 | + { |
|
629 | + $link_text_and_title = sprintf( |
|
630 | + __('Deactivate %1$s Payments?', 'event_espresso'), |
|
631 | + $payment_method->admin_name() |
|
632 | + ); |
|
633 | + return new EE_Form_Section_HTML( |
|
634 | + EEH_HTML::tr( |
|
635 | + EEH_HTML::th(__('Deactivate Payment Method', 'event_espresso')) . |
|
636 | + EEH_HTML::td( |
|
637 | + EEH_HTML::link( |
|
638 | + EE_Admin_Page::add_query_args_and_nonce( |
|
639 | + array( |
|
640 | + 'action' => 'deactivate_payment_method', |
|
641 | + 'payment_method' => $payment_method->slug(), |
|
642 | + ), |
|
643 | + EE_PAYMENTS_ADMIN_URL |
|
644 | + ), |
|
645 | + $link_text_and_title, |
|
646 | + $link_text_and_title, |
|
647 | + 'deactivate_' . $payment_method->slug(), |
|
648 | + 'espresso-button button-secondary' |
|
649 | + ) |
|
650 | + ) |
|
651 | + ) |
|
652 | + ); |
|
653 | + } |
|
654 | + |
|
655 | + |
|
656 | + /** |
|
657 | + * _activate_payment_method_button |
|
658 | + * |
|
659 | + * @access protected |
|
660 | + * @param \EE_Payment_Method $payment_method |
|
661 | + * @return \EE_Form_Section_Proper |
|
662 | + */ |
|
663 | + protected function _activate_payment_method_button(EE_Payment_Method $payment_method) |
|
664 | + { |
|
665 | + $link_text_and_title = sprintf( |
|
666 | + __('Activate %1$s Payment Method?', 'event_espresso'), |
|
667 | + $payment_method->admin_name() |
|
668 | + ); |
|
669 | + return new EE_Form_Section_Proper( |
|
670 | + array( |
|
671 | + 'name' => 'activate_' . $payment_method->slug() . '_settings_form', |
|
672 | + 'html_id' => 'activate_' . $payment_method->slug() . '_settings_form', |
|
673 | + 'action' => '#', |
|
674 | + 'layout_strategy' => new EE_Admin_Two_Column_Layout(), |
|
675 | + 'subsections' => apply_filters( |
|
676 | + 'FHEE__Payments_Admin_Page___activate_payment_method_button__form_subsections', |
|
677 | + array( |
|
678 | + new EE_Form_Section_HTML( |
|
679 | + EEH_HTML::tr( |
|
680 | + EEH_HTML::td( |
|
681 | + $payment_method->type_obj()->introductory_html(), |
|
682 | + '', |
|
683 | + '', |
|
684 | + '', |
|
685 | + 'colspan="2"' |
|
686 | + ) |
|
687 | + ) . |
|
688 | + EEH_HTML::tr( |
|
689 | + EEH_HTML::th( |
|
690 | + EEH_HTML::label(__('Click to Activate ', 'event_espresso')) |
|
691 | + ) . |
|
692 | + EEH_HTML::td( |
|
693 | + EEH_HTML::link( |
|
694 | + EE_Admin_Page::add_query_args_and_nonce( |
|
695 | + array( |
|
696 | + 'action' => 'activate_payment_method', |
|
697 | + 'payment_method_type' => $payment_method->type(), |
|
698 | + ), |
|
699 | + EE_PAYMENTS_ADMIN_URL |
|
700 | + ), |
|
701 | + $link_text_and_title, |
|
702 | + $link_text_and_title, |
|
703 | + 'activate_' . $payment_method->slug(), |
|
704 | + 'espresso-button-green button-primary' |
|
705 | + ) |
|
706 | + ) |
|
707 | + ) |
|
708 | + ), |
|
709 | + ), |
|
710 | + $payment_method |
|
711 | + ), |
|
712 | + ) |
|
713 | + ); |
|
714 | + } |
|
715 | + |
|
716 | + |
|
717 | + /** |
|
718 | + * _fine_print |
|
719 | + * |
|
720 | + * @access protected |
|
721 | + * @return \EE_Form_Section_HTML |
|
722 | + */ |
|
723 | + protected function _fine_print() |
|
724 | + { |
|
725 | + return new EE_Form_Section_HTML( |
|
726 | + EEH_HTML::tr( |
|
727 | + EEH_HTML::th() . |
|
728 | + EEH_HTML::td( |
|
729 | + EEH_HTML::p(__('All fields marked with a * are required fields', 'event_espresso'), '', 'grey-text') |
|
730 | + ) |
|
731 | + ) |
|
732 | + ); |
|
733 | + } |
|
734 | + |
|
735 | + |
|
736 | + /** |
|
737 | + * Activates a payment method of that type. Mostly assuming there is only 1 of that type (or none so far) |
|
738 | + * |
|
739 | + * @global WP_User $current_user |
|
740 | + */ |
|
741 | + protected function _activate_payment_method() |
|
742 | + { |
|
743 | + if (isset($this->_req_data['payment_method_type'])) { |
|
744 | + $payment_method_type = sanitize_text_field($this->_req_data['payment_method_type']); |
|
745 | + // see if one exists |
|
746 | + EE_Registry::instance()->load_lib('Payment_Method_Manager'); |
|
747 | + $payment_method = EE_Payment_Method_Manager::instance() |
|
748 | + ->activate_a_payment_method_of_type($payment_method_type); |
|
749 | + $this->_redirect_after_action( |
|
750 | + 1, |
|
751 | + 'Payment Method', |
|
752 | + 'activated', |
|
753 | + array('action' => 'default', 'payment_method' => $payment_method->slug()) |
|
754 | + ); |
|
755 | + } else { |
|
756 | + $this->_redirect_after_action(false, 'Payment Method', 'activated', array('action' => 'default')); |
|
757 | + } |
|
758 | + } |
|
759 | + |
|
760 | + |
|
761 | + /** |
|
762 | + * Deactivates the payment method with the specified slug, and redirects. |
|
763 | + */ |
|
764 | + protected function _deactivate_payment_method() |
|
765 | + { |
|
766 | + if (isset($this->_req_data['payment_method'])) { |
|
767 | + $payment_method_slug = sanitize_key($this->_req_data['payment_method']); |
|
768 | + // deactivate it |
|
769 | + EE_Registry::instance()->load_lib('Payment_Method_Manager'); |
|
770 | + $count_updated = EE_Payment_Method_Manager::instance()->deactivate_payment_method($payment_method_slug); |
|
771 | + $this->_redirect_after_action( |
|
772 | + $count_updated, |
|
773 | + 'Payment Method', |
|
774 | + 'deactivated', |
|
775 | + array('action' => 'default', 'payment_method' => $payment_method_slug) |
|
776 | + ); |
|
777 | + } else { |
|
778 | + $this->_redirect_after_action(false, 'Payment Method', 'deactivated', array('action' => 'default')); |
|
779 | + } |
|
780 | + } |
|
781 | + |
|
782 | + |
|
783 | + /** |
|
784 | + * Processes the payment method form that was submitted. This is slightly trickier than usual form |
|
785 | + * processing because we first need to identify WHICH form was processed and which payment method |
|
786 | + * it corresponds to. Once we have done that, we see if the form is valid. If it is, the |
|
787 | + * form's data is saved and we redirect to the default payment methods page, setting the updated payment method |
|
788 | + * as the currently-selected one. If it DOESN'T validate, we render the page with the form's errors (in the |
|
789 | + * subsequently called 'headers_sent_func' which is _payment_methods_list) |
|
790 | + * |
|
791 | + * @return void |
|
792 | + */ |
|
793 | + protected function _update_payment_method() |
|
794 | + { |
|
795 | + if ($_SERVER['REQUEST_METHOD'] == 'POST') { |
|
796 | + // ok let's find which gateway form to use based on the form input |
|
797 | + EE_Registry::instance()->load_lib('Payment_Method_Manager'); |
|
798 | + /** @var $correct_pmt_form_to_use EE_Payment_Method_Form */ |
|
799 | + $correct_pmt_form_to_use = null; |
|
800 | + $payment_method = null; |
|
801 | + foreach (EEM_Payment_Method::instance()->get_all() as $payment_method) { |
|
802 | + // get the form and simplify it, like what we do when we display it |
|
803 | + $pmt_form = $this->_generate_payment_method_settings_form($payment_method); |
|
804 | + if ($pmt_form->form_data_present_in($this->_req_data)) { |
|
805 | + $correct_pmt_form_to_use = $pmt_form; |
|
806 | + break; |
|
807 | + } |
|
808 | + } |
|
809 | + // if we couldn't find the correct payment method type... |
|
810 | + if (! $correct_pmt_form_to_use) { |
|
811 | + EE_Error::add_error( |
|
812 | + __( |
|
813 | + "We could not find which payment method type your form submission related to. Please contact support", |
|
814 | + 'event_espresso' |
|
815 | + ), |
|
816 | + __FILE__, |
|
817 | + __FUNCTION__, |
|
818 | + __LINE__ |
|
819 | + ); |
|
820 | + $this->_redirect_after_action(false, 'Payment Method', 'activated', array('action' => 'default')); |
|
821 | + } |
|
822 | + $correct_pmt_form_to_use->receive_form_submission($this->_req_data); |
|
823 | + if ($correct_pmt_form_to_use->is_valid()) { |
|
824 | + $payment_settings_subform = $correct_pmt_form_to_use->get_subsection('payment_method_settings'); |
|
825 | + if (! $payment_settings_subform instanceof EE_Payment_Method_Form) { |
|
826 | + throw new EE_Error( |
|
827 | + sprintf( |
|
828 | + __( |
|
829 | + 'The payment method could not be saved because the form sections were misnamed. We expected to find %1$s, but did not.', |
|
830 | + 'event_espresso' |
|
831 | + ), |
|
832 | + 'payment_method_settings' |
|
833 | + ) |
|
834 | + ); |
|
835 | + } |
|
836 | + $payment_settings_subform->save(); |
|
837 | + /** @var $pm EE_Payment_Method */ |
|
838 | + $this->_redirect_after_action( |
|
839 | + true, |
|
840 | + 'Payment Method', |
|
841 | + 'updated', |
|
842 | + array('action' => 'default', 'payment_method' => $payment_method->slug()) |
|
843 | + ); |
|
844 | + } else { |
|
845 | + EE_Error::add_error( |
|
846 | + sprintf( |
|
847 | + __( |
|
848 | + 'Payment method of type %s was not saved because there were validation errors. They have been marked in the form', |
|
849 | + 'event_espresso' |
|
850 | + ), |
|
851 | + $payment_method instanceof EE_Payment_Method ? $payment_method->type_obj()->pretty_name() |
|
852 | + : __('"(unknown)"', 'event_espresso') |
|
853 | + ), |
|
854 | + __FILE__, |
|
855 | + __FUNCTION__, |
|
856 | + __LINE__ |
|
857 | + ); |
|
858 | + } |
|
859 | + } |
|
860 | + return; |
|
861 | + } |
|
862 | + |
|
863 | + |
|
864 | + /** |
|
865 | + * Displays payment settings (not payment METHOD settings, that's _payment_method_settings) |
|
866 | + * @throws DomainException |
|
867 | + * @throws EE_Error |
|
868 | + * @throws InvalidArgumentException |
|
869 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
870 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
871 | + */ |
|
872 | + protected function _payment_settings() |
|
873 | + { |
|
874 | + $form = $this->getPaymentSettingsForm(); |
|
875 | + $this->_set_add_edit_form_tags('update_payment_settings'); |
|
876 | + $this->_set_publish_post_box_vars(null, false, false, null, false); |
|
877 | + $this->_template_args['admin_page_content'] = $form->get_html_and_js(); |
|
878 | + $this->display_admin_page_with_sidebar(); |
|
879 | + } |
|
880 | + |
|
881 | + |
|
882 | + /** |
|
883 | + * _update_payment_settings |
|
884 | + * |
|
885 | + * @access protected |
|
886 | + * @return void |
|
887 | + * @throws EE_Error |
|
888 | + * @throws InvalidArgumentException |
|
889 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
890 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
891 | + */ |
|
892 | + protected function _update_payment_settings() |
|
893 | + { |
|
894 | + $form = $this->getPaymentSettingsForm(); |
|
895 | + if ($form->was_submitted($this->_req_data)) { |
|
896 | + $form->receive_form_submission($this->_req_data); |
|
897 | + if ($form->is_valid()) { |
|
898 | + /** |
|
899 | + * @var $reg_config EE_Registration_Config |
|
900 | + */ |
|
901 | + $loader = LoaderFactory::getLoader(); |
|
902 | + $reg_config = $loader->getShared('EE_Registration_Config'); |
|
903 | + $valid_data = $form->valid_data(); |
|
904 | + $reg_config->show_pending_payment_options = $valid_data['show_pending_payment_options']; |
|
905 | + $reg_config->gateway_log_lifespan = $valid_data['gateway_log_lifespan']; |
|
906 | + } |
|
907 | + } |
|
908 | + EE_Registry::instance()->CFG = apply_filters( |
|
909 | + 'FHEE__Payments_Admin_Page___update_payment_settings__CFG', |
|
910 | + EE_Registry::instance()->CFG |
|
911 | + ); |
|
912 | + |
|
913 | + $cfg = EE_Registry::instance()->CFG ; |
|
914 | + |
|
915 | + $what = __('Payment Settings', 'event_espresso'); |
|
916 | + $success = $this->_update_espresso_configuration( |
|
917 | + $what, |
|
918 | + EE_Registry::instance()->CFG, |
|
919 | + __FILE__, |
|
920 | + __FUNCTION__, |
|
921 | + __LINE__ |
|
922 | + ); |
|
923 | + $this->_redirect_after_action( |
|
924 | + $success, |
|
925 | + $what, |
|
926 | + __('updated', 'event_espresso'), |
|
927 | + array('action' => 'payment_settings') |
|
928 | + ); |
|
929 | + } |
|
930 | + |
|
931 | + |
|
932 | + /** |
|
933 | + * Gets the form used for updating payment settings |
|
934 | + * |
|
935 | + * @return EE_Form_Section_Proper |
|
936 | + * @throws EE_Error |
|
937 | + * @throws InvalidArgumentException |
|
938 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
939 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
940 | + */ |
|
941 | + protected function getPaymentSettingsForm() |
|
942 | + { |
|
943 | + /** |
|
944 | + * @var $reg_config EE_Registration_Config |
|
945 | + */ |
|
946 | + $reg_config = LoaderFactory::getLoader()->getShared('EE_Registration_Config'); |
|
947 | + return new EE_Form_Section_Proper( |
|
948 | + array( |
|
949 | + 'name' => 'payment-settings', |
|
950 | + 'layout_strategy' => new EE_Admin_Two_Column_Layout(), |
|
951 | + 'subsections' => array( |
|
952 | + 'show_pending_payment_options' => new EE_Yes_No_Input( |
|
953 | + array( |
|
954 | + 'html_name' => 'show_pending_payment_options', |
|
955 | + 'default' => $reg_config->show_pending_payment_options, |
|
956 | + 'html_help_text' => esc_html__( |
|
957 | + "If a payment is marked as 'Pending Payment', or if payment is deferred (ie, an offline gateway like Check, Bank, or Invoice is used), then give registrants the option to retry payment. ", |
|
958 | + 'event_espresso' |
|
959 | + ) |
|
960 | + ) |
|
961 | + ), |
|
962 | + 'gateway_log_lifespan' => new \EE_Select_Input( |
|
963 | + $reg_config->gatewayLogLifespanOptions(), |
|
964 | + array( |
|
965 | + 'html_label_text' => esc_html__('Gateway Logs Lifespan', 'event_espresso'), |
|
966 | + 'html_help_text' => esc_html__('If issues arise with payments being made through a payment gateway, it\'s helpful to log non-sensitive communications with the payment gateway. But it\'s a security responsibility, so it\'s a good idea to not keep them for any longer than necessary.', 'event_espresso'), |
|
967 | + 'default' => $reg_config->gateway_log_lifespan, |
|
968 | + ) |
|
969 | + ) |
|
970 | + ) |
|
971 | + ) |
|
972 | + ); |
|
973 | + } |
|
974 | + |
|
975 | + |
|
976 | + protected function _payment_log_overview_list_table() |
|
977 | + { |
|
978 | + $this->display_admin_list_table_page_with_sidebar(); |
|
979 | + } |
|
980 | + |
|
981 | + |
|
982 | + protected function _set_list_table_views_payment_log() |
|
983 | + { |
|
984 | + $this->_views = array( |
|
985 | + 'all' => array( |
|
986 | + 'slug' => 'all', |
|
987 | + 'label' => __('View All Logs', 'event_espresso'), |
|
988 | + 'count' => 0, |
|
989 | + ), |
|
990 | + ); |
|
991 | + } |
|
992 | + |
|
993 | + |
|
994 | + /** |
|
995 | + * @param int $per_page |
|
996 | + * @param int $current_page |
|
997 | + * @param bool $count |
|
998 | + * @return array |
|
999 | + */ |
|
1000 | + public function get_payment_logs($per_page = 50, $current_page = 0, $count = false) |
|
1001 | + { |
|
1002 | + EE_Registry::instance()->load_model('Change_Log'); |
|
1003 | + // we may need to do multiple queries (joining differently), so we actually wan tan array of query params |
|
1004 | + $query_params = array(array('LOG_type' => EEM_Change_Log::type_gateway)); |
|
1005 | + // check if they've selected a specific payment method |
|
1006 | + if (isset($this->_req_data['_payment_method']) && $this->_req_data['_payment_method'] !== 'all') { |
|
1007 | + $query_params[0]['OR*pm_or_pay_pm'] = array( |
|
1008 | + 'Payment.Payment_Method.PMD_ID' => $this->_req_data['_payment_method'], |
|
1009 | + 'Payment_Method.PMD_ID' => $this->_req_data['_payment_method'], |
|
1010 | + ); |
|
1011 | + } |
|
1012 | + // take into account search |
|
1013 | + if (isset($this->_req_data['s']) && $this->_req_data['s']) { |
|
1014 | + $similarity_string = array('LIKE', '%' . str_replace("", "%", $this->_req_data['s']) . '%'); |
|
1015 | + $query_params[0]['OR*s']['Payment.Transaction.Registration.Attendee.ATT_fname'] = $similarity_string; |
|
1016 | + $query_params[0]['OR*s']['Payment.Transaction.Registration.Attendee.ATT_lname'] = $similarity_string; |
|
1017 | + $query_params[0]['OR*s']['Payment.Transaction.Registration.Attendee.ATT_email'] = $similarity_string; |
|
1018 | + $query_params[0]['OR*s']['Payment.Payment_Method.PMD_name'] = $similarity_string; |
|
1019 | + $query_params[0]['OR*s']['Payment.Payment_Method.PMD_admin_name'] = $similarity_string; |
|
1020 | + $query_params[0]['OR*s']['Payment.Payment_Method.PMD_type'] = $similarity_string; |
|
1021 | + $query_params[0]['OR*s']['LOG_message'] = $similarity_string; |
|
1022 | + $query_params[0]['OR*s']['Payment_Method.PMD_name'] = $similarity_string; |
|
1023 | + $query_params[0]['OR*s']['Payment_Method.PMD_admin_name'] = $similarity_string; |
|
1024 | + $query_params[0]['OR*s']['Payment_Method.PMD_type'] = $similarity_string; |
|
1025 | + $query_params[0]['OR*s']['LOG_message'] = $similarity_string; |
|
1026 | + } |
|
1027 | + if (isset($this->_req_data['payment-filter-start-date']) |
|
1028 | + && isset($this->_req_data['payment-filter-end-date']) |
|
1029 | + ) { |
|
1030 | + // add date |
|
1031 | + $start_date = wp_strip_all_tags($this->_req_data['payment-filter-start-date']); |
|
1032 | + $end_date = wp_strip_all_tags($this->_req_data['payment-filter-end-date']); |
|
1033 | + // make sure our timestamps start and end right at the boundaries for each day |
|
1034 | + $start_date = date('Y-m-d', strtotime($start_date)) . ' 00:00:00'; |
|
1035 | + $end_date = date('Y-m-d', strtotime($end_date)) . ' 23:59:59'; |
|
1036 | + // convert to timestamps |
|
1037 | + $start_date = strtotime($start_date); |
|
1038 | + $end_date = strtotime($end_date); |
|
1039 | + // makes sure start date is the lowest value and vice versa |
|
1040 | + $start_date = min($start_date, $end_date); |
|
1041 | + $end_date = max($start_date, $end_date); |
|
1042 | + // convert for query |
|
1043 | + $start_date = EEM_Change_Log::instance() |
|
1044 | + ->convert_datetime_for_query( |
|
1045 | + 'LOG_time', |
|
1046 | + date('Y-m-d H:i:s', $start_date), |
|
1047 | + 'Y-m-d H:i:s' |
|
1048 | + ); |
|
1049 | + $end_date = EEM_Change_Log::instance() |
|
1050 | + ->convert_datetime_for_query( |
|
1051 | + 'LOG_time', |
|
1052 | + date('Y-m-d H:i:s', $end_date), |
|
1053 | + 'Y-m-d H:i:s' |
|
1054 | + ); |
|
1055 | + $query_params[0]['LOG_time'] = array('BETWEEN', array($start_date, $end_date)); |
|
1056 | + } |
|
1057 | + if ($count) { |
|
1058 | + return EEM_Change_Log::instance()->count($query_params); |
|
1059 | + } |
|
1060 | + if (isset($this->_req_data['order'])) { |
|
1061 | + $sort = (isset($this->_req_data['order']) && ! empty($this->_req_data['order'])) ? $this->_req_data['order'] |
|
1062 | + : 'DESC'; |
|
1063 | + $query_params['order_by'] = array('LOG_time' => $sort); |
|
1064 | + } else { |
|
1065 | + $query_params['order_by'] = array('LOG_time' => 'DESC'); |
|
1066 | + } |
|
1067 | + $offset = ($current_page - 1) * $per_page; |
|
1068 | + if (! isset($this->_req_data['download_results'])) { |
|
1069 | + $query_params['limit'] = array($offset, $per_page); |
|
1070 | + } |
|
1071 | + // now they've requested to instead just download the file instead of viewing it. |
|
1072 | + if (isset($this->_req_data['download_results'])) { |
|
1073 | + $wpdb_results = EEM_Change_Log::instance()->get_all_efficiently($query_params); |
|
1074 | + header('Content-Disposition: attachment'); |
|
1075 | + header("Content-Disposition: attachment; filename=ee_payment_logs_for_" . sanitize_key(site_url())); |
|
1076 | + echo "<h1>Payment Logs for " . site_url() . "</h1>"; |
|
1077 | + echo "<h3>Query:</h3>"; |
|
1078 | + var_dump($query_params); |
|
1079 | + echo "<h3>Results:</h3>"; |
|
1080 | + var_dump($wpdb_results); |
|
1081 | + die; |
|
1082 | + } |
|
1083 | + $results = EEM_Change_Log::instance()->get_all($query_params); |
|
1084 | + return $results; |
|
1085 | + } |
|
1086 | + |
|
1087 | + |
|
1088 | + /** |
|
1089 | + * Used by usort to RE-sort log query results, because we lose the ordering |
|
1090 | + * because we're possibly combining the results from two queries |
|
1091 | + * |
|
1092 | + * @param EE_Change_Log $logA |
|
1093 | + * @param EE_Change_Log $logB |
|
1094 | + * @return int |
|
1095 | + */ |
|
1096 | + protected function _sort_logs_again($logA, $logB) |
|
1097 | + { |
|
1098 | + $timeA = $logA->get_raw('LOG_time'); |
|
1099 | + $timeB = $logB->get_raw('LOG_time'); |
|
1100 | + if ($timeA == $timeB) { |
|
1101 | + return 0; |
|
1102 | + } |
|
1103 | + $comparison = $timeA < $timeB ? -1 : 1; |
|
1104 | + if (strtoupper($this->_sort_logs_again_direction) == 'DESC') { |
|
1105 | + return $comparison * -1; |
|
1106 | + } else { |
|
1107 | + return $comparison; |
|
1108 | + } |
|
1109 | + } |
|
1110 | + |
|
1111 | + |
|
1112 | + protected function _payment_log_details() |
|
1113 | + { |
|
1114 | + EE_Registry::instance()->load_model('Change_Log'); |
|
1115 | + /** @var $payment_log EE_Change_Log */ |
|
1116 | + $payment_log = EEM_Change_Log::instance()->get_one_by_ID($this->_req_data['ID']); |
|
1117 | + $payment_method = null; |
|
1118 | + $transaction = null; |
|
1119 | + if ($payment_log instanceof EE_Change_Log) { |
|
1120 | + if ($payment_log->object() instanceof EE_Payment) { |
|
1121 | + $payment_method = $payment_log->object()->payment_method(); |
|
1122 | + $transaction = $payment_log->object()->transaction(); |
|
1123 | + } elseif ($payment_log->object() instanceof EE_Payment_Method) { |
|
1124 | + $payment_method = $payment_log->object(); |
|
1125 | + } elseif ($payment_log->object() instanceof EE_Transaction) { |
|
1126 | + $transaction = $payment_log->object(); |
|
1127 | + $payment_method = $transaction->payment_method(); |
|
1128 | + } |
|
1129 | + } |
|
1130 | + $this->_template_args['admin_page_content'] = EEH_Template::display_template( |
|
1131 | + EE_PAYMENTS_TEMPLATE_PATH . 'payment_log_details.template.php', |
|
1132 | + array( |
|
1133 | + 'payment_log' => $payment_log, |
|
1134 | + 'payment_method' => $payment_method, |
|
1135 | + 'transaction' => $transaction, |
|
1136 | + ), |
|
1137 | + true |
|
1138 | + ); |
|
1139 | + $this->display_admin_page_with_sidebar(); |
|
1140 | + } |
|
1141 | 1141 | } |
@@ -57,7 +57,7 @@ |
||
57 | 57 | public function getCapCheck() |
58 | 58 | { |
59 | 59 | // need cap for non-AJAX admin requests |
60 | - if (! (defined('DOING_AJAX') && DOING_AJAX) && is_admin()) { |
|
60 | + if ( ! (defined('DOING_AJAX') && DOING_AJAX) && is_admin()) { |
|
61 | 61 | // there's no specific caps for editing/creating transactions, |
62 | 62 | // so that's why we are using ee_edit_registrations |
63 | 63 | return new CapCheck('ee_edit_registrations', 'create_new_transaction'); |
@@ -20,60 +20,60 @@ |
||
20 | 20 | class CreateTransactionCommand extends Command implements CommandRequiresCapCheckInterface |
21 | 21 | { |
22 | 22 | |
23 | - /** |
|
24 | - * @var EE_Checkout $checkout |
|
25 | - */ |
|
26 | - protected $checkout; |
|
23 | + /** |
|
24 | + * @var EE_Checkout $checkout |
|
25 | + */ |
|
26 | + protected $checkout; |
|
27 | 27 | |
28 | - /** |
|
29 | - * @var array $transaction_details |
|
30 | - */ |
|
31 | - protected $transaction_details; |
|
28 | + /** |
|
29 | + * @var array $transaction_details |
|
30 | + */ |
|
31 | + protected $transaction_details; |
|
32 | 32 | |
33 | 33 | |
34 | - /** |
|
35 | - * CreateTransactionCommand constructor. |
|
36 | - * |
|
37 | - * @param EE_Checkout $checkout |
|
38 | - * @param array $transaction_details |
|
39 | - */ |
|
40 | - public function __construct(EE_Checkout $checkout = null, array $transaction_details = array()) |
|
41 | - { |
|
42 | - $this->checkout = $checkout; |
|
43 | - $this->transaction_details = $transaction_details; |
|
44 | - } |
|
34 | + /** |
|
35 | + * CreateTransactionCommand constructor. |
|
36 | + * |
|
37 | + * @param EE_Checkout $checkout |
|
38 | + * @param array $transaction_details |
|
39 | + */ |
|
40 | + public function __construct(EE_Checkout $checkout = null, array $transaction_details = array()) |
|
41 | + { |
|
42 | + $this->checkout = $checkout; |
|
43 | + $this->transaction_details = $transaction_details; |
|
44 | + } |
|
45 | 45 | |
46 | 46 | |
47 | - /** |
|
48 | - * @return CapCheckInterface |
|
49 | - * @throws InvalidDataTypeException |
|
50 | - */ |
|
51 | - public function getCapCheck() |
|
52 | - { |
|
53 | - // need cap for non-AJAX admin requests |
|
54 | - if (! (defined('DOING_AJAX') && DOING_AJAX) && is_admin()) { |
|
55 | - // there's no specific caps for editing/creating transactions, |
|
56 | - // so that's why we are using ee_edit_registrations |
|
57 | - return new CapCheck('ee_edit_registrations', 'create_new_transaction'); |
|
58 | - } |
|
59 | - return new PublicCapabilities('', 'create_new_transaction'); |
|
60 | - } |
|
47 | + /** |
|
48 | + * @return CapCheckInterface |
|
49 | + * @throws InvalidDataTypeException |
|
50 | + */ |
|
51 | + public function getCapCheck() |
|
52 | + { |
|
53 | + // need cap for non-AJAX admin requests |
|
54 | + if (! (defined('DOING_AJAX') && DOING_AJAX) && is_admin()) { |
|
55 | + // there's no specific caps for editing/creating transactions, |
|
56 | + // so that's why we are using ee_edit_registrations |
|
57 | + return new CapCheck('ee_edit_registrations', 'create_new_transaction'); |
|
58 | + } |
|
59 | + return new PublicCapabilities('', 'create_new_transaction'); |
|
60 | + } |
|
61 | 61 | |
62 | 62 | |
63 | - /** |
|
64 | - * @return EE_Checkout |
|
65 | - */ |
|
66 | - public function checkout() |
|
67 | - { |
|
68 | - return $this->checkout; |
|
69 | - } |
|
63 | + /** |
|
64 | + * @return EE_Checkout |
|
65 | + */ |
|
66 | + public function checkout() |
|
67 | + { |
|
68 | + return $this->checkout; |
|
69 | + } |
|
70 | 70 | |
71 | 71 | |
72 | - /** |
|
73 | - * @return array |
|
74 | - */ |
|
75 | - public function transactionDetails() |
|
76 | - { |
|
77 | - return $this->transaction_details; |
|
78 | - } |
|
72 | + /** |
|
73 | + * @return array |
|
74 | + */ |
|
75 | + public function transactionDetails() |
|
76 | + { |
|
77 | + return $this->transaction_details; |
|
78 | + } |
|
79 | 79 | } |
@@ -81,7 +81,7 @@ |
||
81 | 81 | public function getCapCheck() |
82 | 82 | { |
83 | 83 | // need cap for non-AJAX admin requests |
84 | - if (! (defined('DOING_AJAX') && DOING_AJAX) && is_admin()) { |
|
84 | + if ( ! (defined('DOING_AJAX') && DOING_AJAX) && is_admin()) { |
|
85 | 85 | return new CapCheck('ee_edit_contacts', 'create_new_contact'); |
86 | 86 | } |
87 | 87 | return new PublicCapabilities('', 'create_new_contact'); |
@@ -20,62 +20,62 @@ |
||
20 | 20 | class CreateAttendeeCommand extends Command implements CommandRequiresCapCheckInterface |
21 | 21 | { |
22 | 22 | |
23 | - /** |
|
24 | - * array of details where keys are names of EEM_Attendee model fields |
|
25 | - * |
|
26 | - * @var array $attendee_details |
|
27 | - */ |
|
28 | - protected $attendee_details; |
|
23 | + /** |
|
24 | + * array of details where keys are names of EEM_Attendee model fields |
|
25 | + * |
|
26 | + * @var array $attendee_details |
|
27 | + */ |
|
28 | + protected $attendee_details; |
|
29 | 29 | |
30 | - /** |
|
31 | - * an existing registration to associate this attendee with |
|
32 | - * |
|
33 | - * @var EE_Registration $registration |
|
34 | - */ |
|
35 | - protected $registration; |
|
30 | + /** |
|
31 | + * an existing registration to associate this attendee with |
|
32 | + * |
|
33 | + * @var EE_Registration $registration |
|
34 | + */ |
|
35 | + protected $registration; |
|
36 | 36 | |
37 | 37 | |
38 | - /** |
|
39 | - * CreateAttendeeCommand constructor. |
|
40 | - * |
|
41 | - * @param array $attendee_details |
|
42 | - * @param EE_Registration $registration |
|
43 | - */ |
|
44 | - public function __construct(array $attendee_details, EE_Registration $registration) |
|
45 | - { |
|
46 | - $this->attendee_details = $attendee_details; |
|
47 | - $this->registration = $registration; |
|
48 | - } |
|
38 | + /** |
|
39 | + * CreateAttendeeCommand constructor. |
|
40 | + * |
|
41 | + * @param array $attendee_details |
|
42 | + * @param EE_Registration $registration |
|
43 | + */ |
|
44 | + public function __construct(array $attendee_details, EE_Registration $registration) |
|
45 | + { |
|
46 | + $this->attendee_details = $attendee_details; |
|
47 | + $this->registration = $registration; |
|
48 | + } |
|
49 | 49 | |
50 | 50 | |
51 | - /** |
|
52 | - * @return array |
|
53 | - */ |
|
54 | - public function attendeeDetails() |
|
55 | - { |
|
56 | - return $this->attendee_details; |
|
57 | - } |
|
51 | + /** |
|
52 | + * @return array |
|
53 | + */ |
|
54 | + public function attendeeDetails() |
|
55 | + { |
|
56 | + return $this->attendee_details; |
|
57 | + } |
|
58 | 58 | |
59 | 59 | |
60 | - /** |
|
61 | - * @return EE_Registration |
|
62 | - */ |
|
63 | - public function registration() |
|
64 | - { |
|
65 | - return $this->registration; |
|
66 | - } |
|
60 | + /** |
|
61 | + * @return EE_Registration |
|
62 | + */ |
|
63 | + public function registration() |
|
64 | + { |
|
65 | + return $this->registration; |
|
66 | + } |
|
67 | 67 | |
68 | 68 | |
69 | - /** |
|
70 | - * @return CapCheckInterface |
|
71 | - * @throws InvalidDataTypeException |
|
72 | - */ |
|
73 | - public function getCapCheck() |
|
74 | - { |
|
75 | - // need cap for non-AJAX admin requests |
|
76 | - if (! (defined('DOING_AJAX') && DOING_AJAX) && is_admin()) { |
|
77 | - return new CapCheck('ee_edit_contacts', 'create_new_contact'); |
|
78 | - } |
|
79 | - return new PublicCapabilities('', 'create_new_contact'); |
|
80 | - } |
|
69 | + /** |
|
70 | + * @return CapCheckInterface |
|
71 | + * @throws InvalidDataTypeException |
|
72 | + */ |
|
73 | + public function getCapCheck() |
|
74 | + { |
|
75 | + // need cap for non-AJAX admin requests |
|
76 | + if (! (defined('DOING_AJAX') && DOING_AJAX) && is_admin()) { |
|
77 | + return new CapCheck('ee_edit_contacts', 'create_new_contact'); |
|
78 | + } |
|
79 | + return new PublicCapabilities('', 'create_new_contact'); |
|
80 | + } |
|
81 | 81 | } |
@@ -9,12 +9,12 @@ |
||
9 | 9 | interface EEI_Line_Item_Display |
10 | 10 | { |
11 | 11 | |
12 | - /** |
|
13 | - * @param EE_Line_Item $line_item |
|
14 | - * @param array $options |
|
15 | - * @return mixed |
|
16 | - */ |
|
17 | - public function display_line_item(EE_Line_Item $line_item, $options = array()); |
|
12 | + /** |
|
13 | + * @param EE_Line_Item $line_item |
|
14 | + * @param array $options |
|
15 | + * @return mixed |
|
16 | + */ |
|
17 | + public function display_line_item(EE_Line_Item $line_item, $options = array()); |
|
18 | 18 | |
19 | 19 | } |
20 | 20 |
@@ -217,7 +217,7 @@ |
||
217 | 217 | |
218 | 218 | /** |
219 | 219 | * Used to override the default for the additional limit field. |
220 | - * @param $additional_limit |
|
220 | + * @param integer $additional_limit |
|
221 | 221 | */ |
222 | 222 | public static function set_default_additional_limit($additional_limit) |
223 | 223 | { |
@@ -1,7 +1,5 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -use EventEspresso\core\services\orm\ModelFieldFactory; |
|
4 | - |
|
5 | 3 | /** |
6 | 4 | * EEM_Event Model |
7 | 5 | * extends EEM_CPT_Base which extends EEM_Base |
@@ -13,899 +13,899 @@ |
||
13 | 13 | class EEM_Event extends EEM_CPT_Base |
14 | 14 | { |
15 | 15 | |
16 | - /** |
|
17 | - * constant used by status(), indicating that no more tickets can be purchased for any of the datetimes for the |
|
18 | - * event |
|
19 | - */ |
|
20 | - const sold_out = 'sold_out'; |
|
21 | - |
|
22 | - /** |
|
23 | - * constant used by status(), indicating that upcoming event dates have been postponed (may be pushed to a later |
|
24 | - * date) |
|
25 | - */ |
|
26 | - const postponed = 'postponed'; |
|
27 | - |
|
28 | - /** |
|
29 | - * constant used by status(), indicating that the event will no longer occur |
|
30 | - */ |
|
31 | - const cancelled = 'cancelled'; |
|
32 | - |
|
33 | - |
|
34 | - /** |
|
35 | - * @var string |
|
36 | - */ |
|
37 | - protected static $_default_reg_status; |
|
38 | - |
|
39 | - |
|
40 | - /** |
|
41 | - * This is the default for the additional limit field. |
|
42 | - * @var int |
|
43 | - */ |
|
44 | - protected static $_default_additional_limit = 10; |
|
45 | - |
|
46 | - |
|
47 | - /** |
|
48 | - * private instance of the Event object |
|
49 | - * |
|
50 | - * @var EEM_Event |
|
51 | - */ |
|
52 | - protected static $_instance; |
|
53 | - |
|
54 | - |
|
55 | - |
|
56 | - |
|
57 | - /** |
|
58 | - * Adds a relationship to Term_Taxonomy for each CPT_Base |
|
59 | - * |
|
60 | - * @param string $timezone |
|
61 | - * @throws \EE_Error |
|
62 | - */ |
|
63 | - protected function __construct($timezone = null) |
|
64 | - { |
|
65 | - EE_Registry::instance()->load_model('Registration'); |
|
66 | - $this->singular_item = esc_html__('Event', 'event_espresso'); |
|
67 | - $this->plural_item = esc_html__('Events', 'event_espresso'); |
|
68 | - // to remove Cancelled events from the frontend, copy the following filter to your functions.php file |
|
69 | - // add_filter( 'AFEE__EEM_Event__construct___custom_stati__cancelled__Public', '__return_false' ); |
|
70 | - // to remove Postponed events from the frontend, copy the following filter to your functions.php file |
|
71 | - // add_filter( 'AFEE__EEM_Event__construct___custom_stati__postponed__Public', '__return_false' ); |
|
72 | - // to remove Sold Out events from the frontend, copy the following filter to your functions.php file |
|
73 | - // add_filter( 'AFEE__EEM_Event__construct___custom_stati__sold_out__Public', '__return_false' ); |
|
74 | - $this->_custom_stati = apply_filters( |
|
75 | - 'AFEE__EEM_Event__construct___custom_stati', |
|
76 | - array( |
|
77 | - EEM_Event::cancelled => array( |
|
78 | - 'label' => esc_html__('Cancelled', 'event_espresso'), |
|
79 | - 'public' => apply_filters('AFEE__EEM_Event__construct___custom_stati__cancelled__Public', true), |
|
80 | - ), |
|
81 | - EEM_Event::postponed => array( |
|
82 | - 'label' => esc_html__('Postponed', 'event_espresso'), |
|
83 | - 'public' => apply_filters('AFEE__EEM_Event__construct___custom_stati__postponed__Public', true), |
|
84 | - ), |
|
85 | - EEM_Event::sold_out => array( |
|
86 | - 'label' => esc_html__('Sold Out', 'event_espresso'), |
|
87 | - 'public' => apply_filters('AFEE__EEM_Event__construct___custom_stati__sold_out__Public', true), |
|
88 | - ), |
|
89 | - ) |
|
90 | - ); |
|
91 | - self::$_default_reg_status = empty(self::$_default_reg_status) ? EEM_Registration::status_id_pending_payment |
|
92 | - : self::$_default_reg_status; |
|
93 | - $this->_tables = array( |
|
94 | - 'Event_CPT' => new EE_Primary_Table('posts', 'ID'), |
|
95 | - 'Event_Meta' => new EE_Secondary_Table('esp_event_meta', 'EVTM_ID', 'EVT_ID'), |
|
96 | - ); |
|
97 | - $this->_fields = array( |
|
98 | - 'Event_CPT' => array( |
|
99 | - 'EVT_ID' => new EE_Primary_Key_Int_Field( |
|
100 | - 'ID', |
|
101 | - esc_html__('Post ID for Event', 'event_espresso') |
|
102 | - ), |
|
103 | - 'EVT_name' => new EE_Plain_Text_Field( |
|
104 | - 'post_title', |
|
105 | - esc_html__('Event Name', 'event_espresso'), |
|
106 | - false, |
|
107 | - '' |
|
108 | - ), |
|
109 | - 'EVT_desc' => new EE_Post_Content_Field( |
|
110 | - 'post_content', |
|
111 | - esc_html__('Event Description', 'event_espresso'), |
|
112 | - false, |
|
113 | - '' |
|
114 | - ), |
|
115 | - 'EVT_slug' => new EE_Slug_Field( |
|
116 | - 'post_name', |
|
117 | - esc_html__('Event Slug', 'event_espresso'), |
|
118 | - false, |
|
119 | - '' |
|
120 | - ), |
|
121 | - 'EVT_created' => new EE_Datetime_Field( |
|
122 | - 'post_date', |
|
123 | - esc_html__('Date/Time Event Created', 'event_espresso'), |
|
124 | - false, |
|
125 | - EE_Datetime_Field::now |
|
126 | - ), |
|
127 | - 'EVT_short_desc' => new EE_Simple_HTML_Field( |
|
128 | - 'post_excerpt', |
|
129 | - esc_html__('Event Short Description', 'event_espresso'), |
|
130 | - false, |
|
131 | - '' |
|
132 | - ), |
|
133 | - 'EVT_modified' => new EE_Datetime_Field( |
|
134 | - 'post_modified', |
|
135 | - esc_html__('Date/Time Event Modified', 'event_espresso'), |
|
136 | - false, |
|
137 | - EE_Datetime_Field::now |
|
138 | - ), |
|
139 | - 'EVT_wp_user' => new EE_WP_User_Field( |
|
140 | - 'post_author', |
|
141 | - esc_html__('Event Creator ID', 'event_espresso'), |
|
142 | - false |
|
143 | - ), |
|
144 | - 'parent' => new EE_Integer_Field( |
|
145 | - 'post_parent', |
|
146 | - esc_html__('Event Parent ID', 'event_espresso'), |
|
147 | - false, |
|
148 | - 0 |
|
149 | - ), |
|
150 | - 'EVT_order' => new EE_Integer_Field( |
|
151 | - 'menu_order', |
|
152 | - esc_html__('Event Menu Order', 'event_espresso'), |
|
153 | - false, |
|
154 | - 1 |
|
155 | - ), |
|
156 | - 'post_type' => new EE_WP_Post_Type_Field('espresso_events'), |
|
157 | - // EE_Plain_Text_Field( 'post_type', esc_html__( 'Event Post Type', 'event_espresso' ), FALSE, 'espresso_events' ), |
|
158 | - 'status' => new EE_WP_Post_Status_Field( |
|
159 | - 'post_status', |
|
160 | - esc_html__('Event Status', 'event_espresso'), |
|
161 | - false, |
|
162 | - 'draft', |
|
163 | - $this->_custom_stati |
|
164 | - ), |
|
165 | - 'password' => new EE_Password_Field( |
|
166 | - 'post_password', |
|
167 | - __('Password', 'event_espresso'), |
|
168 | - false, |
|
169 | - '', |
|
170 | - array( |
|
171 | - 'EVT_desc', |
|
172 | - 'EVT_short_desc', |
|
173 | - 'EVT_display_desc', |
|
174 | - 'EVT_display_ticket_selector', |
|
175 | - 'EVT_visible_on', |
|
176 | - 'EVT_additional_limit', |
|
177 | - 'EVT_default_registration_status', |
|
178 | - 'EVT_member_only', |
|
179 | - 'EVT_phone', |
|
180 | - 'EVT_allow_overflow', |
|
181 | - 'EVT_timezone_string', |
|
182 | - 'EVT_external_URL', |
|
183 | - 'EVT_donations' |
|
184 | - ) |
|
185 | - ) |
|
186 | - ), |
|
187 | - 'Event_Meta' => array( |
|
188 | - 'EVTM_ID' => new EE_DB_Only_Float_Field( |
|
189 | - 'EVTM_ID', |
|
190 | - esc_html__('Event Meta Row ID', 'event_espresso'), |
|
191 | - false |
|
192 | - ), |
|
193 | - 'EVT_ID_fk' => new EE_DB_Only_Int_Field( |
|
194 | - 'EVT_ID', |
|
195 | - esc_html__('Foreign key to Event ID from Event Meta table', 'event_espresso'), |
|
196 | - false |
|
197 | - ), |
|
198 | - 'EVT_display_desc' => new EE_Boolean_Field( |
|
199 | - 'EVT_display_desc', |
|
200 | - esc_html__('Display Description Flag', 'event_espresso'), |
|
201 | - false, |
|
202 | - true |
|
203 | - ), |
|
204 | - 'EVT_display_ticket_selector' => new EE_Boolean_Field( |
|
205 | - 'EVT_display_ticket_selector', |
|
206 | - esc_html__('Display Ticket Selector Flag', 'event_espresso'), |
|
207 | - false, |
|
208 | - true |
|
209 | - ), |
|
210 | - 'EVT_visible_on' => new EE_Datetime_Field( |
|
211 | - 'EVT_visible_on', |
|
212 | - esc_html__('Event Visible Date', 'event_espresso'), |
|
213 | - true, |
|
214 | - EE_Datetime_Field::now |
|
215 | - ), |
|
216 | - 'EVT_additional_limit' => new EE_Integer_Field( |
|
217 | - 'EVT_additional_limit', |
|
218 | - esc_html__('Limit of Additional Registrations on Same Transaction', 'event_espresso'), |
|
219 | - true, |
|
220 | - self::$_default_additional_limit |
|
221 | - ), |
|
222 | - 'EVT_default_registration_status' => new EE_Enum_Text_Field( |
|
223 | - 'EVT_default_registration_status', |
|
224 | - esc_html__('Default Registration Status on this Event', 'event_espresso'), |
|
225 | - false, |
|
226 | - EEM_Event::$_default_reg_status, |
|
227 | - EEM_Registration::reg_status_array() |
|
228 | - ), |
|
229 | - 'EVT_member_only' => new EE_Boolean_Field( |
|
230 | - 'EVT_member_only', |
|
231 | - esc_html__('Member-Only Event Flag', 'event_espresso'), |
|
232 | - false, |
|
233 | - false |
|
234 | - ), |
|
235 | - 'EVT_phone' => new EE_Plain_Text_Field( |
|
236 | - 'EVT_phone', |
|
237 | - esc_html__('Event Phone Number', 'event_espresso'), |
|
238 | - false, |
|
239 | - '' |
|
240 | - ), |
|
241 | - 'EVT_allow_overflow' => new EE_Boolean_Field( |
|
242 | - 'EVT_allow_overflow', |
|
243 | - esc_html__('Allow Overflow on Event', 'event_espresso'), |
|
244 | - false, |
|
245 | - false |
|
246 | - ), |
|
247 | - 'EVT_timezone_string' => new EE_Plain_Text_Field( |
|
248 | - 'EVT_timezone_string', |
|
249 | - esc_html__('Timezone (name) for Event times', 'event_espresso'), |
|
250 | - false, |
|
251 | - '' |
|
252 | - ), |
|
253 | - 'EVT_external_URL' => new EE_Plain_Text_Field( |
|
254 | - 'EVT_external_URL', |
|
255 | - esc_html__('URL of Event Page if hosted elsewhere', 'event_espresso'), |
|
256 | - true |
|
257 | - ), |
|
258 | - 'EVT_donations' => new EE_Boolean_Field( |
|
259 | - 'EVT_donations', |
|
260 | - esc_html__('Accept Donations?', 'event_espresso'), |
|
261 | - false, |
|
262 | - false |
|
263 | - ), |
|
264 | - ), |
|
265 | - ); |
|
266 | - $this->_model_relations = array( |
|
267 | - 'Registration' => new EE_Has_Many_Relation(), |
|
268 | - 'Datetime' => new EE_Has_Many_Relation(), |
|
269 | - 'Question_Group' => new EE_HABTM_Relation('Event_Question_Group'), |
|
270 | - 'Venue' => new EE_HABTM_Relation('Event_Venue'), |
|
271 | - 'Term_Relationship' => new EE_Has_Many_Relation(), |
|
272 | - 'Term_Taxonomy' => new EE_HABTM_Relation('Term_Relationship'), |
|
273 | - 'Message_Template_Group' => new EE_HABTM_Relation('Event_Message_Template'), |
|
274 | - 'Attendee' => new EE_HABTM_Relation('Registration'), |
|
275 | - 'WP_User' => new EE_Belongs_To_Relation(), |
|
276 | - ); |
|
277 | - // this model is generally available for reading |
|
278 | - $this->_cap_restriction_generators[ EEM_Base::caps_read ] = new EE_Restriction_Generator_Public(); |
|
279 | - $this->model_chain_to_password = ''; |
|
280 | - parent::__construct($timezone); |
|
281 | - } |
|
282 | - |
|
283 | - |
|
284 | - |
|
285 | - /** |
|
286 | - * @param string $default_reg_status |
|
287 | - */ |
|
288 | - public static function set_default_reg_status($default_reg_status) |
|
289 | - { |
|
290 | - self::$_default_reg_status = $default_reg_status; |
|
291 | - // if EEM_Event has already been instantiated, |
|
292 | - // then we need to reset the `EVT_default_reg_status` field to use the new default. |
|
293 | - if (self::$_instance instanceof EEM_Event) { |
|
294 | - $default_reg_status = new EE_Enum_Text_Field( |
|
295 | - 'EVT_default_registration_status', |
|
296 | - esc_html__('Default Registration Status on this Event', 'event_espresso'), |
|
297 | - false, |
|
298 | - $default_reg_status, |
|
299 | - EEM_Registration::reg_status_array() |
|
300 | - ); |
|
301 | - $default_reg_status->_construct_finalize( |
|
302 | - 'Event_Meta', |
|
303 | - 'EVT_default_registration_status', |
|
304 | - 'EEM_Event' |
|
305 | - ); |
|
306 | - self::$_instance->_fields['Event_Meta']['EVT_default_registration_status'] = $default_reg_status; |
|
307 | - } |
|
308 | - } |
|
309 | - |
|
310 | - |
|
311 | - /** |
|
312 | - * Used to override the default for the additional limit field. |
|
313 | - * @param $additional_limit |
|
314 | - */ |
|
315 | - public static function set_default_additional_limit($additional_limit) |
|
316 | - { |
|
317 | - self::$_default_additional_limit = (int) $additional_limit; |
|
318 | - if (self::$_instance instanceof EEM_Event) { |
|
319 | - self::$_instance->_fields['Event_Meta']['EVT_additional_limit'] = new EE_Integer_Field( |
|
320 | - 'EVT_additional_limit', |
|
321 | - __('Limit of Additional Registrations on Same Transaction', 'event_espresso'), |
|
322 | - true, |
|
323 | - self::$_default_additional_limit |
|
324 | - ); |
|
325 | - self::$_instance->_fields['Event_Meta']['EVT_additional_limit']->_construct_finalize( |
|
326 | - 'Event_Meta', |
|
327 | - 'EVT_additional_limit', |
|
328 | - 'EEM_Event' |
|
329 | - ); |
|
330 | - } |
|
331 | - } |
|
332 | - |
|
333 | - |
|
334 | - /** |
|
335 | - * Return what is currently set as the default additional limit for the event. |
|
336 | - * @return int |
|
337 | - */ |
|
338 | - public static function get_default_additional_limit() |
|
339 | - { |
|
340 | - return apply_filters('FHEE__EEM_Event__get_default_additional_limit', self::$_default_additional_limit); |
|
341 | - } |
|
342 | - |
|
343 | - |
|
344 | - /** |
|
345 | - * get_question_groups |
|
346 | - * |
|
347 | - * @return array |
|
348 | - * @throws \EE_Error |
|
349 | - */ |
|
350 | - public function get_all_question_groups() |
|
351 | - { |
|
352 | - return EE_Registry::instance()->load_model('Question_Group')->get_all( |
|
353 | - array( |
|
354 | - array('QSG_deleted' => false), |
|
355 | - 'order_by' => array('QSG_order' => 'ASC'), |
|
356 | - ) |
|
357 | - ); |
|
358 | - } |
|
359 | - |
|
360 | - |
|
361 | - |
|
362 | - /** |
|
363 | - * get_question_groups |
|
364 | - * |
|
365 | - * @param int $EVT_ID |
|
366 | - * @return array|bool |
|
367 | - * @throws \EE_Error |
|
368 | - */ |
|
369 | - public function get_all_event_question_groups($EVT_ID = 0) |
|
370 | - { |
|
371 | - if (! isset($EVT_ID) || ! absint($EVT_ID)) { |
|
372 | - EE_Error::add_error( |
|
373 | - esc_html__( |
|
374 | - 'An error occurred. No Event Question Groups could be retrieved because an Event ID was not received.', |
|
375 | - 'event_espresso' |
|
376 | - ), |
|
377 | - __FILE__, |
|
378 | - __FUNCTION__, |
|
379 | - __LINE__ |
|
380 | - ); |
|
381 | - return false; |
|
382 | - } |
|
383 | - return EE_Registry::instance()->load_model('Event_Question_Group')->get_all( |
|
384 | - array( |
|
385 | - array('EVT_ID' => $EVT_ID), |
|
386 | - ) |
|
387 | - ); |
|
388 | - } |
|
389 | - |
|
390 | - |
|
391 | - |
|
392 | - /** |
|
393 | - * get_question_groups |
|
394 | - * |
|
395 | - * @param int $EVT_ID |
|
396 | - * @param boolean $for_primary_attendee |
|
397 | - * @return array|bool |
|
398 | - * @throws \EE_Error |
|
399 | - */ |
|
400 | - public function get_event_question_groups($EVT_ID = 0, $for_primary_attendee = true) |
|
401 | - { |
|
402 | - if (! isset($EVT_ID) || ! absint($EVT_ID)) { |
|
403 | - EE_Error::add_error( |
|
404 | - esc_html__( |
|
405 | - 'An error occurred. No Event Question Groups could be retrieved because an Event ID was not received.', |
|
406 | - 'event_espresso' |
|
407 | - ), |
|
408 | - __FILE__, |
|
409 | - __FUNCTION__, |
|
410 | - __LINE__ |
|
411 | - ); |
|
412 | - return false; |
|
413 | - } |
|
414 | - return EE_Registry::instance()->load_model('Event_Question_Group')->get_all( |
|
415 | - array( |
|
416 | - array( |
|
417 | - 'EVT_ID' => $EVT_ID, |
|
418 | - 'EQG_primary' => $for_primary_attendee, |
|
419 | - ), |
|
420 | - ) |
|
421 | - ); |
|
422 | - } |
|
423 | - |
|
424 | - |
|
425 | - |
|
426 | - /** |
|
427 | - * get_question_groups |
|
428 | - * |
|
429 | - * @param int $EVT_ID |
|
430 | - * @param EE_Registration $registration |
|
431 | - * @return array|bool |
|
432 | - * @throws \EE_Error |
|
433 | - */ |
|
434 | - public function get_question_groups_for_event($EVT_ID = 0, EE_Registration $registration) |
|
435 | - { |
|
436 | - if (! isset($EVT_ID) || ! absint($EVT_ID)) { |
|
437 | - EE_Error::add_error( |
|
438 | - esc_html__( |
|
439 | - 'An error occurred. No Question Groups could be retrieved because an Event ID was not received.', |
|
440 | - 'event_espresso' |
|
441 | - ), |
|
442 | - __FILE__, |
|
443 | - __FUNCTION__, |
|
444 | - __LINE__ |
|
445 | - ); |
|
446 | - return false; |
|
447 | - } |
|
448 | - $where_params = array( |
|
449 | - 'Event_Question_Group.EVT_ID' => $EVT_ID, |
|
450 | - 'Event_Question_Group.EQG_primary' => $registration->count() === 1 ? true : false, |
|
451 | - 'QSG_deleted' => false, |
|
452 | - ); |
|
453 | - return EE_Registry::instance()->load_model('Question_Group')->get_all( |
|
454 | - array( |
|
455 | - $where_params, |
|
456 | - 'order_by' => array('QSG_order' => 'ASC'), |
|
457 | - ) |
|
458 | - ); |
|
459 | - } |
|
460 | - |
|
461 | - |
|
462 | - |
|
463 | - /** |
|
464 | - * get_question_target_db_column |
|
465 | - * |
|
466 | - * @param string $QSG_IDs csv list of $QSG IDs |
|
467 | - * @return array|bool |
|
468 | - * @throws \EE_Error |
|
469 | - */ |
|
470 | - public function get_questions_in_groups($QSG_IDs = '') |
|
471 | - { |
|
472 | - if (empty($QSG_IDs)) { |
|
473 | - EE_Error::add_error( |
|
474 | - esc_html__('An error occurred. No Question Group IDs were received.', 'event_espresso'), |
|
475 | - __FILE__, |
|
476 | - __FUNCTION__, |
|
477 | - __LINE__ |
|
478 | - ); |
|
479 | - return false; |
|
480 | - } |
|
481 | - return EE_Registry::instance()->load_model('Question')->get_all( |
|
482 | - array( |
|
483 | - array( |
|
484 | - 'Question_Group.QSG_ID' => array('IN', $QSG_IDs), |
|
485 | - 'QST_deleted' => false, |
|
486 | - 'QST_admin_only' => is_admin(), |
|
487 | - ), |
|
488 | - 'order_by' => 'QST_order', |
|
489 | - ) |
|
490 | - ); |
|
491 | - } |
|
492 | - |
|
493 | - |
|
494 | - |
|
495 | - /** |
|
496 | - * get_options_for_question |
|
497 | - * |
|
498 | - * @param string $QST_IDs csv list of $QST IDs |
|
499 | - * @return array|bool |
|
500 | - * @throws \EE_Error |
|
501 | - */ |
|
502 | - public function get_options_for_question($QST_IDs) |
|
503 | - { |
|
504 | - if (empty($QST_IDs)) { |
|
505 | - EE_Error::add_error( |
|
506 | - esc_html__('An error occurred. No Question IDs were received.', 'event_espresso'), |
|
507 | - __FILE__, |
|
508 | - __FUNCTION__, |
|
509 | - __LINE__ |
|
510 | - ); |
|
511 | - return false; |
|
512 | - } |
|
513 | - return EE_Registry::instance()->load_model('Question_Option')->get_all( |
|
514 | - array( |
|
515 | - array( |
|
516 | - 'Question.QST_ID' => array('IN', $QST_IDs), |
|
517 | - 'QSO_deleted' => false, |
|
518 | - ), |
|
519 | - 'order_by' => 'QSO_ID', |
|
520 | - ) |
|
521 | - ); |
|
522 | - } |
|
523 | - |
|
524 | - |
|
525 | - |
|
526 | - |
|
527 | - |
|
528 | - |
|
529 | - |
|
530 | - /** |
|
531 | - * Gets all events that are published |
|
532 | - * and have event start time earlier than now and an event end time later than now |
|
533 | - * |
|
534 | - * @param array $query_params An array of query params to further filter on |
|
535 | - * (note that status and DTT_EVT_start and DTT_EVT_end will be overridden) |
|
536 | - * @param bool $count whether to return the count or not (default FALSE) |
|
537 | - * @return EE_Event[]|int |
|
538 | - * @throws \EE_Error |
|
539 | - */ |
|
540 | - public function get_active_events($query_params, $count = false) |
|
541 | - { |
|
542 | - if (array_key_exists(0, $query_params)) { |
|
543 | - $where_params = $query_params[0]; |
|
544 | - unset($query_params[0]); |
|
545 | - } else { |
|
546 | - $where_params = array(); |
|
547 | - } |
|
548 | - // if we have count make sure we don't include group by |
|
549 | - if ($count && isset($query_params['group_by'])) { |
|
550 | - unset($query_params['group_by']); |
|
551 | - } |
|
552 | - // let's add specific query_params for active_events |
|
553 | - // keep in mind this will override any sent status in the query AND any date queries. |
|
554 | - $where_params['status'] = array('IN', array('publish', EEM_Event::sold_out)); |
|
555 | - // if already have where params for DTT_EVT_start or DTT_EVT_end then append these conditions |
|
556 | - if (isset($where_params['Datetime.DTT_EVT_start'])) { |
|
557 | - $where_params['Datetime.DTT_EVT_start******'] = array( |
|
558 | - '<', |
|
559 | - EEM_Datetime::instance()->current_time_for_query('DTT_EVT_start'), |
|
560 | - ); |
|
561 | - } else { |
|
562 | - $where_params['Datetime.DTT_EVT_start'] = array( |
|
563 | - '<', |
|
564 | - EEM_Datetime::instance()->current_time_for_query('DTT_EVT_start'), |
|
565 | - ); |
|
566 | - } |
|
567 | - if (isset($where_params['Datetime.DTT_EVT_end'])) { |
|
568 | - $where_params['Datetime.DTT_EVT_end*****'] = array( |
|
569 | - '>', |
|
570 | - EEM_Datetime::instance()->current_time_for_query('DTT_EVT_end'), |
|
571 | - ); |
|
572 | - } else { |
|
573 | - $where_params['Datetime.DTT_EVT_end'] = array( |
|
574 | - '>', |
|
575 | - EEM_Datetime::instance()->current_time_for_query('DTT_EVT_end'), |
|
576 | - ); |
|
577 | - } |
|
578 | - $query_params[0] = $where_params; |
|
579 | - // don't use $query_params with count() |
|
580 | - // because we don't want to include additional query clauses like "GROUP BY" |
|
581 | - return $count |
|
582 | - ? $this->count(array($where_params), 'EVT_ID', true) |
|
583 | - : $this->get_all($query_params); |
|
584 | - } |
|
585 | - |
|
586 | - |
|
587 | - |
|
588 | - /** |
|
589 | - * get all events that are published and have an event start time later than now |
|
590 | - * |
|
591 | - * @param array $query_params An array of query params to further filter on |
|
592 | - * (Note that status and DTT_EVT_start will be overridden) |
|
593 | - * @param bool $count whether to return the count or not (default FALSE) |
|
594 | - * @return EE_Event[]|int |
|
595 | - * @throws \EE_Error |
|
596 | - */ |
|
597 | - public function get_upcoming_events($query_params, $count = false) |
|
598 | - { |
|
599 | - if (array_key_exists(0, $query_params)) { |
|
600 | - $where_params = $query_params[0]; |
|
601 | - unset($query_params[0]); |
|
602 | - } else { |
|
603 | - $where_params = array(); |
|
604 | - } |
|
605 | - // if we have count make sure we don't include group by |
|
606 | - if ($count && isset($query_params['group_by'])) { |
|
607 | - unset($query_params['group_by']); |
|
608 | - } |
|
609 | - // let's add specific query_params for active_events |
|
610 | - // keep in mind this will override any sent status in the query AND any date queries. |
|
611 | - $where_params['status'] = array('IN', array('publish', EEM_Event::sold_out)); |
|
612 | - // if there are already query_params matching DTT_EVT_start then we need to modify that to add them. |
|
613 | - if (isset($where_params['Datetime.DTT_EVT_start'])) { |
|
614 | - $where_params['Datetime.DTT_EVT_start*****'] = array( |
|
615 | - '>', |
|
616 | - EEM_Datetime::instance()->current_time_for_query('DTT_EVT_start'), |
|
617 | - ); |
|
618 | - } else { |
|
619 | - $where_params['Datetime.DTT_EVT_start'] = array( |
|
620 | - '>', |
|
621 | - EEM_Datetime::instance()->current_time_for_query('DTT_EVT_start'), |
|
622 | - ); |
|
623 | - } |
|
624 | - $query_params[0] = $where_params; |
|
625 | - // don't use $query_params with count() |
|
626 | - // because we don't want to include additional query clauses like "GROUP BY" |
|
627 | - return $count |
|
628 | - ? $this->count(array($where_params), 'EVT_ID', true) |
|
629 | - : $this->get_all($query_params); |
|
630 | - } |
|
631 | - |
|
632 | - |
|
633 | - |
|
634 | - /** |
|
635 | - * Gets all events that are published |
|
636 | - * and have an event end time later than now |
|
637 | - * |
|
638 | - * @param array $query_params An array of query params to further filter on |
|
639 | - * (note that status and DTT_EVT_end will be overridden) |
|
640 | - * @param bool $count whether to return the count or not (default FALSE) |
|
641 | - * @return EE_Event[]|int |
|
642 | - * @throws \EE_Error |
|
643 | - */ |
|
644 | - public function get_active_and_upcoming_events($query_params, $count = false) |
|
645 | - { |
|
646 | - if (array_key_exists(0, $query_params)) { |
|
647 | - $where_params = $query_params[0]; |
|
648 | - unset($query_params[0]); |
|
649 | - } else { |
|
650 | - $where_params = array(); |
|
651 | - } |
|
652 | - // if we have count make sure we don't include group by |
|
653 | - if ($count && isset($query_params['group_by'])) { |
|
654 | - unset($query_params['group_by']); |
|
655 | - } |
|
656 | - // let's add specific query_params for active_events |
|
657 | - // keep in mind this will override any sent status in the query AND any date queries. |
|
658 | - $where_params['status'] = array('IN', array('publish', EEM_Event::sold_out)); |
|
659 | - // add where params for DTT_EVT_end |
|
660 | - if (isset($where_params['Datetime.DTT_EVT_end'])) { |
|
661 | - $where_params['Datetime.DTT_EVT_end*****'] = array( |
|
662 | - '>', |
|
663 | - EEM_Datetime::instance()->current_time_for_query('DTT_EVT_end'), |
|
664 | - ); |
|
665 | - } else { |
|
666 | - $where_params['Datetime.DTT_EVT_end'] = array( |
|
667 | - '>', |
|
668 | - EEM_Datetime::instance()->current_time_for_query('DTT_EVT_end'), |
|
669 | - ); |
|
670 | - } |
|
671 | - $query_params[0] = $where_params; |
|
672 | - // don't use $query_params with count() |
|
673 | - // because we don't want to include additional query clauses like "GROUP BY" |
|
674 | - return $count |
|
675 | - ? $this->count(array($where_params), 'EVT_ID', true) |
|
676 | - : $this->get_all($query_params); |
|
677 | - } |
|
678 | - |
|
679 | - |
|
680 | - |
|
681 | - /** |
|
682 | - * This only returns events that are expired. |
|
683 | - * They may still be published but all their datetimes have expired. |
|
684 | - * |
|
685 | - * @param array $query_params An array of query params to further filter on |
|
686 | - * (note that status and DTT_EVT_end will be overridden) |
|
687 | - * @param bool $count whether to return the count or not (default FALSE) |
|
688 | - * @return EE_Event[]|int |
|
689 | - * @throws \EE_Error |
|
690 | - */ |
|
691 | - public function get_expired_events($query_params, $count = false) |
|
692 | - { |
|
693 | - $where_params = isset($query_params[0]) ? $query_params[0] : array(); |
|
694 | - // if we have count make sure we don't include group by |
|
695 | - if ($count && isset($query_params['group_by'])) { |
|
696 | - unset($query_params['group_by']); |
|
697 | - } |
|
698 | - // let's add specific query_params for active_events |
|
699 | - // keep in mind this will override any sent status in the query AND any date queries. |
|
700 | - if (isset($where_params['status'])) { |
|
701 | - unset($where_params['status']); |
|
702 | - } |
|
703 | - $exclude_query = $query_params; |
|
704 | - if (isset($exclude_query[0])) { |
|
705 | - unset($exclude_query[0]); |
|
706 | - } |
|
707 | - $exclude_query[0] = array( |
|
708 | - 'Datetime.DTT_EVT_end' => array( |
|
709 | - '>', |
|
710 | - EEM_Datetime::instance()->current_time_for_query('DTT_EVT_end'), |
|
711 | - ), |
|
712 | - ); |
|
713 | - // first get all events that have datetimes where its not expired. |
|
714 | - $event_ids = $this->_get_all_wpdb_results($exclude_query, OBJECT_K, 'Event_CPT.ID'); |
|
715 | - $event_ids = array_keys($event_ids); |
|
716 | - // if we have any additional query_params, let's add them to the 'AND' condition |
|
717 | - $and_condition = array( |
|
718 | - 'Datetime.DTT_EVT_end' => array('<', EEM_Datetime::instance()->current_time_for_query('DTT_EVT_end')), |
|
719 | - 'EVT_ID' => array('NOT IN', $event_ids), |
|
720 | - ); |
|
721 | - if (isset($where_params['OR'])) { |
|
722 | - $and_condition['OR'] = $where_params['OR']; |
|
723 | - unset($where_params['OR']); |
|
724 | - } |
|
725 | - if (isset($where_params['Datetime.DTT_EVT_end'])) { |
|
726 | - $and_condition['Datetime.DTT_EVT_end****'] = $where_params['Datetime.DTT_EVT_end']; |
|
727 | - unset($where_params['Datetime.DTT_EVT_end']); |
|
728 | - } |
|
729 | - if (isset($where_params['Datetime.DTT_EVT_start'])) { |
|
730 | - $and_condition['Datetime.DTT_EVT_start'] = $where_params['Datetime.DTT_EVT_start']; |
|
731 | - unset($where_params['Datetime.DTT_EVT_start']); |
|
732 | - } |
|
733 | - // merge remaining $where params with the and conditions. |
|
734 | - $where_params['AND'] = array_merge($and_condition, $where_params); |
|
735 | - $query_params[0] = $where_params; |
|
736 | - // don't use $query_params with count() |
|
737 | - // because we don't want to include additional query clauses like "GROUP BY" |
|
738 | - return $count |
|
739 | - ? $this->count(array($where_params), 'EVT_ID', true) |
|
740 | - : $this->get_all($query_params); |
|
741 | - } |
|
742 | - |
|
743 | - |
|
744 | - |
|
745 | - /** |
|
746 | - * This basically just returns the events that do not have the publish status. |
|
747 | - * |
|
748 | - * @param array $query_params An array of query params to further filter on |
|
749 | - * (note that status will be overwritten) |
|
750 | - * @param boolean $count whether to return the count or not (default FALSE) |
|
751 | - * @return EE_Event[]|int |
|
752 | - * @throws \EE_Error |
|
753 | - */ |
|
754 | - public function get_inactive_events($query_params, $count = false) |
|
755 | - { |
|
756 | - $where_params = isset($query_params[0]) ? $query_params[0] : array(); |
|
757 | - // let's add in specific query_params for inactive events. |
|
758 | - if (isset($where_params['status'])) { |
|
759 | - unset($where_params['status']); |
|
760 | - } |
|
761 | - // if we have count make sure we don't include group by |
|
762 | - if ($count && isset($query_params['group_by'])) { |
|
763 | - unset($query_params['group_by']); |
|
764 | - } |
|
765 | - // if we have any additional query_params, let's add them to the 'AND' condition |
|
766 | - $where_params['AND']['status'] = array('!=', 'publish'); |
|
767 | - if (isset($where_params['OR'])) { |
|
768 | - $where_params['AND']['OR'] = $where_params['OR']; |
|
769 | - unset($where_params['OR']); |
|
770 | - } |
|
771 | - if (isset($where_params['Datetime.DTT_EVT_end'])) { |
|
772 | - $where_params['AND']['Datetime.DTT_EVT_end****'] = $where_params['Datetime.DTT_EVT_end']; |
|
773 | - unset($where_params['Datetime.DTT_EVT_end']); |
|
774 | - } |
|
775 | - if (isset($where_params['Datetime.DTT_EVT_start'])) { |
|
776 | - $where_params['AND']['Datetime.DTT_EVT_start'] = $where_params['Datetime.DTT_EVT_start']; |
|
777 | - unset($where_params['Datetime.DTT_EVT_start']); |
|
778 | - } |
|
779 | - $query_params[0] = $where_params; |
|
780 | - // don't use $query_params with count() |
|
781 | - // because we don't want to include additional query clauses like "GROUP BY" |
|
782 | - return $count |
|
783 | - ? $this->count(array($where_params), 'EVT_ID', true) |
|
784 | - : $this->get_all($query_params); |
|
785 | - } |
|
786 | - |
|
787 | - |
|
788 | - |
|
789 | - /** |
|
790 | - * This is just injecting into the parent add_relationship_to so we do special handling on price relationships |
|
791 | - * because we don't want to override any existing global default prices but instead insert NEW prices that get |
|
792 | - * attached to the event. See parent for param descriptions |
|
793 | - * |
|
794 | - * @param $id_or_obj |
|
795 | - * @param $other_model_id_or_obj |
|
796 | - * @param string $relationName |
|
797 | - * @param array $where_query |
|
798 | - * @return EE_Base_Class |
|
799 | - * @throws EE_Error |
|
800 | - */ |
|
801 | - public function add_relationship_to($id_or_obj, $other_model_id_or_obj, $relationName, $where_query = array()) |
|
802 | - { |
|
803 | - if ($relationName === 'Price') { |
|
804 | - // let's get the PRC object for the given ID to make sure that we aren't dealing with a default |
|
805 | - $prc_chk = $this->get_related_model_obj($relationName)->ensure_is_obj($other_model_id_or_obj); |
|
806 | - // if EVT_ID = 0, then this is a default |
|
807 | - if ((int) $prc_chk->get('EVT_ID') === 0) { |
|
808 | - // let's set the prc_id as 0 so we force an insert on the add_relation_to carried out by relation |
|
809 | - $prc_chk->set('PRC_ID', 0); |
|
810 | - } |
|
811 | - // run parent |
|
812 | - return parent::add_relationship_to($id_or_obj, $prc_chk, $relationName, $where_query); |
|
813 | - } |
|
814 | - // otherwise carry on as normal |
|
815 | - return parent::add_relationship_to($id_or_obj, $other_model_id_or_obj, $relationName, $where_query); |
|
816 | - } |
|
817 | - |
|
818 | - |
|
819 | - |
|
820 | - /******************** DEPRECATED METHODS ********************/ |
|
821 | - |
|
822 | - |
|
823 | - |
|
824 | - /** |
|
825 | - * _get_question_target_db_column |
|
826 | - * |
|
827 | - * @deprecated as of 4.8.32.rc.001. Instead consider using |
|
828 | - * EE_Registration_Custom_Questions_Form located in |
|
829 | - * admin_pages/registrations/form_sections/EE_Registration_Custom_Questions_Form.form.php |
|
830 | - * @access public |
|
831 | - * @param EE_Registration $registration (so existing answers for registration are included) |
|
832 | - * @param int $EVT_ID so all question groups are included for event (not just answers from |
|
833 | - * registration). |
|
834 | - * @throws EE_Error |
|
835 | - * @return array |
|
836 | - */ |
|
837 | - public function assemble_array_of_groups_questions_and_options(EE_Registration $registration, $EVT_ID = 0) |
|
838 | - { |
|
839 | - if (empty($EVT_ID)) { |
|
840 | - throw new EE_Error(__( |
|
841 | - 'An error occurred. No EVT_ID is included. Needed to know which question groups to retrieve.', |
|
842 | - 'event_espresso' |
|
843 | - )); |
|
844 | - } |
|
845 | - $questions = array(); |
|
846 | - // get all question groups for event |
|
847 | - $qgs = $this->get_question_groups_for_event($EVT_ID, $registration); |
|
848 | - if (! empty($qgs)) { |
|
849 | - foreach ($qgs as $qg) { |
|
850 | - $qsts = $qg->questions(); |
|
851 | - $questions[ $qg->ID() ] = $qg->model_field_array(); |
|
852 | - $questions[ $qg->ID() ]['QSG_questions'] = array(); |
|
853 | - foreach ($qsts as $qst) { |
|
854 | - if ($qst->is_system_question()) { |
|
855 | - continue; |
|
856 | - } |
|
857 | - $answer = EEM_Answer::instance()->get_one(array( |
|
858 | - array( |
|
859 | - 'QST_ID' => $qst->ID(), |
|
860 | - 'REG_ID' => $registration->ID(), |
|
861 | - ), |
|
862 | - )); |
|
863 | - $answer = $answer instanceof EE_Answer ? $answer : EEM_Answer::instance()->create_default_object(); |
|
864 | - $qst_name = $qstn_id = $qst->ID(); |
|
865 | - $ans_id = $answer->ID(); |
|
866 | - $qst_name = ! empty($ans_id) ? '[' . $qst_name . '][' . $ans_id . ']' : '[' . $qst_name . ']'; |
|
867 | - $input_name = ''; |
|
868 | - $input_id = sanitize_key($qst->display_text()); |
|
869 | - $input_class = ''; |
|
870 | - $questions[ $qg->ID() ]['QSG_questions'][ $qst->ID() ] = $qst->model_field_array(); |
|
871 | - $questions[ $qg->ID() ]['QSG_questions'][ $qst->ID() ]['QST_input_name'] = 'qstn' |
|
872 | - . $input_name |
|
873 | - . $qst_name; |
|
874 | - $questions[ $qg->ID() ]['QSG_questions'][ $qst->ID() ]['QST_input_id'] = $input_id . '-' . $qstn_id; |
|
875 | - $questions[ $qg->ID() ]['QSG_questions'][ $qst->ID() ]['QST_input_class'] = $input_class; |
|
876 | - $questions[ $qg->ID() ]['QSG_questions'][ $qst->ID() ]['QST_options'] = array(); |
|
877 | - $questions[ $qg->ID() ]['QSG_questions'][ $qst->ID() ]['qst_obj'] = $qst; |
|
878 | - $questions[ $qg->ID() ]['QSG_questions'][ $qst->ID() ]['ans_obj'] = $answer; |
|
879 | - // leave responses as-is, don't convert stuff into html entities please! |
|
880 | - $questions[ $qg->ID() ]['QSG_questions'][ $qst->ID() ]['htmlentities'] = false; |
|
881 | - if ($qst->type() == 'RADIO_BTN' || $qst->type() == 'CHECKBOX' || $qst->type() == 'DROPDOWN') { |
|
882 | - $QSOs = $qst->options(true, $answer->value()); |
|
883 | - if (is_array($QSOs)) { |
|
884 | - foreach ($QSOs as $QSO_ID => $QSO) { |
|
885 | - $questions[ $qg->ID() ]['QSG_questions'][ $qst->ID() ]['QST_options'][ $QSO_ID ] = $QSO->model_field_array(); |
|
886 | - } |
|
887 | - } |
|
888 | - } |
|
889 | - } |
|
890 | - } |
|
891 | - } |
|
892 | - return $questions; |
|
893 | - } |
|
894 | - |
|
895 | - |
|
896 | - /** |
|
897 | - * @param mixed $cols_n_values either an array of where each key is the name of a field, and the value is its value |
|
898 | - * or an stdClass where each property is the name of a column, |
|
899 | - * @return EE_Base_Class |
|
900 | - * @throws \EE_Error |
|
901 | - */ |
|
902 | - public function instantiate_class_from_array_or_object($cols_n_values) |
|
903 | - { |
|
904 | - $classInstance = parent::instantiate_class_from_array_or_object($cols_n_values); |
|
905 | - if ($classInstance instanceof EE_Event) { |
|
906 | - // events have their timezone defined in the DB, so use it immediately |
|
907 | - $this->set_timezone($classInstance->get_timezone()); |
|
908 | - } |
|
909 | - return $classInstance; |
|
910 | - } |
|
16 | + /** |
|
17 | + * constant used by status(), indicating that no more tickets can be purchased for any of the datetimes for the |
|
18 | + * event |
|
19 | + */ |
|
20 | + const sold_out = 'sold_out'; |
|
21 | + |
|
22 | + /** |
|
23 | + * constant used by status(), indicating that upcoming event dates have been postponed (may be pushed to a later |
|
24 | + * date) |
|
25 | + */ |
|
26 | + const postponed = 'postponed'; |
|
27 | + |
|
28 | + /** |
|
29 | + * constant used by status(), indicating that the event will no longer occur |
|
30 | + */ |
|
31 | + const cancelled = 'cancelled'; |
|
32 | + |
|
33 | + |
|
34 | + /** |
|
35 | + * @var string |
|
36 | + */ |
|
37 | + protected static $_default_reg_status; |
|
38 | + |
|
39 | + |
|
40 | + /** |
|
41 | + * This is the default for the additional limit field. |
|
42 | + * @var int |
|
43 | + */ |
|
44 | + protected static $_default_additional_limit = 10; |
|
45 | + |
|
46 | + |
|
47 | + /** |
|
48 | + * private instance of the Event object |
|
49 | + * |
|
50 | + * @var EEM_Event |
|
51 | + */ |
|
52 | + protected static $_instance; |
|
53 | + |
|
54 | + |
|
55 | + |
|
56 | + |
|
57 | + /** |
|
58 | + * Adds a relationship to Term_Taxonomy for each CPT_Base |
|
59 | + * |
|
60 | + * @param string $timezone |
|
61 | + * @throws \EE_Error |
|
62 | + */ |
|
63 | + protected function __construct($timezone = null) |
|
64 | + { |
|
65 | + EE_Registry::instance()->load_model('Registration'); |
|
66 | + $this->singular_item = esc_html__('Event', 'event_espresso'); |
|
67 | + $this->plural_item = esc_html__('Events', 'event_espresso'); |
|
68 | + // to remove Cancelled events from the frontend, copy the following filter to your functions.php file |
|
69 | + // add_filter( 'AFEE__EEM_Event__construct___custom_stati__cancelled__Public', '__return_false' ); |
|
70 | + // to remove Postponed events from the frontend, copy the following filter to your functions.php file |
|
71 | + // add_filter( 'AFEE__EEM_Event__construct___custom_stati__postponed__Public', '__return_false' ); |
|
72 | + // to remove Sold Out events from the frontend, copy the following filter to your functions.php file |
|
73 | + // add_filter( 'AFEE__EEM_Event__construct___custom_stati__sold_out__Public', '__return_false' ); |
|
74 | + $this->_custom_stati = apply_filters( |
|
75 | + 'AFEE__EEM_Event__construct___custom_stati', |
|
76 | + array( |
|
77 | + EEM_Event::cancelled => array( |
|
78 | + 'label' => esc_html__('Cancelled', 'event_espresso'), |
|
79 | + 'public' => apply_filters('AFEE__EEM_Event__construct___custom_stati__cancelled__Public', true), |
|
80 | + ), |
|
81 | + EEM_Event::postponed => array( |
|
82 | + 'label' => esc_html__('Postponed', 'event_espresso'), |
|
83 | + 'public' => apply_filters('AFEE__EEM_Event__construct___custom_stati__postponed__Public', true), |
|
84 | + ), |
|
85 | + EEM_Event::sold_out => array( |
|
86 | + 'label' => esc_html__('Sold Out', 'event_espresso'), |
|
87 | + 'public' => apply_filters('AFEE__EEM_Event__construct___custom_stati__sold_out__Public', true), |
|
88 | + ), |
|
89 | + ) |
|
90 | + ); |
|
91 | + self::$_default_reg_status = empty(self::$_default_reg_status) ? EEM_Registration::status_id_pending_payment |
|
92 | + : self::$_default_reg_status; |
|
93 | + $this->_tables = array( |
|
94 | + 'Event_CPT' => new EE_Primary_Table('posts', 'ID'), |
|
95 | + 'Event_Meta' => new EE_Secondary_Table('esp_event_meta', 'EVTM_ID', 'EVT_ID'), |
|
96 | + ); |
|
97 | + $this->_fields = array( |
|
98 | + 'Event_CPT' => array( |
|
99 | + 'EVT_ID' => new EE_Primary_Key_Int_Field( |
|
100 | + 'ID', |
|
101 | + esc_html__('Post ID for Event', 'event_espresso') |
|
102 | + ), |
|
103 | + 'EVT_name' => new EE_Plain_Text_Field( |
|
104 | + 'post_title', |
|
105 | + esc_html__('Event Name', 'event_espresso'), |
|
106 | + false, |
|
107 | + '' |
|
108 | + ), |
|
109 | + 'EVT_desc' => new EE_Post_Content_Field( |
|
110 | + 'post_content', |
|
111 | + esc_html__('Event Description', 'event_espresso'), |
|
112 | + false, |
|
113 | + '' |
|
114 | + ), |
|
115 | + 'EVT_slug' => new EE_Slug_Field( |
|
116 | + 'post_name', |
|
117 | + esc_html__('Event Slug', 'event_espresso'), |
|
118 | + false, |
|
119 | + '' |
|
120 | + ), |
|
121 | + 'EVT_created' => new EE_Datetime_Field( |
|
122 | + 'post_date', |
|
123 | + esc_html__('Date/Time Event Created', 'event_espresso'), |
|
124 | + false, |
|
125 | + EE_Datetime_Field::now |
|
126 | + ), |
|
127 | + 'EVT_short_desc' => new EE_Simple_HTML_Field( |
|
128 | + 'post_excerpt', |
|
129 | + esc_html__('Event Short Description', 'event_espresso'), |
|
130 | + false, |
|
131 | + '' |
|
132 | + ), |
|
133 | + 'EVT_modified' => new EE_Datetime_Field( |
|
134 | + 'post_modified', |
|
135 | + esc_html__('Date/Time Event Modified', 'event_espresso'), |
|
136 | + false, |
|
137 | + EE_Datetime_Field::now |
|
138 | + ), |
|
139 | + 'EVT_wp_user' => new EE_WP_User_Field( |
|
140 | + 'post_author', |
|
141 | + esc_html__('Event Creator ID', 'event_espresso'), |
|
142 | + false |
|
143 | + ), |
|
144 | + 'parent' => new EE_Integer_Field( |
|
145 | + 'post_parent', |
|
146 | + esc_html__('Event Parent ID', 'event_espresso'), |
|
147 | + false, |
|
148 | + 0 |
|
149 | + ), |
|
150 | + 'EVT_order' => new EE_Integer_Field( |
|
151 | + 'menu_order', |
|
152 | + esc_html__('Event Menu Order', 'event_espresso'), |
|
153 | + false, |
|
154 | + 1 |
|
155 | + ), |
|
156 | + 'post_type' => new EE_WP_Post_Type_Field('espresso_events'), |
|
157 | + // EE_Plain_Text_Field( 'post_type', esc_html__( 'Event Post Type', 'event_espresso' ), FALSE, 'espresso_events' ), |
|
158 | + 'status' => new EE_WP_Post_Status_Field( |
|
159 | + 'post_status', |
|
160 | + esc_html__('Event Status', 'event_espresso'), |
|
161 | + false, |
|
162 | + 'draft', |
|
163 | + $this->_custom_stati |
|
164 | + ), |
|
165 | + 'password' => new EE_Password_Field( |
|
166 | + 'post_password', |
|
167 | + __('Password', 'event_espresso'), |
|
168 | + false, |
|
169 | + '', |
|
170 | + array( |
|
171 | + 'EVT_desc', |
|
172 | + 'EVT_short_desc', |
|
173 | + 'EVT_display_desc', |
|
174 | + 'EVT_display_ticket_selector', |
|
175 | + 'EVT_visible_on', |
|
176 | + 'EVT_additional_limit', |
|
177 | + 'EVT_default_registration_status', |
|
178 | + 'EVT_member_only', |
|
179 | + 'EVT_phone', |
|
180 | + 'EVT_allow_overflow', |
|
181 | + 'EVT_timezone_string', |
|
182 | + 'EVT_external_URL', |
|
183 | + 'EVT_donations' |
|
184 | + ) |
|
185 | + ) |
|
186 | + ), |
|
187 | + 'Event_Meta' => array( |
|
188 | + 'EVTM_ID' => new EE_DB_Only_Float_Field( |
|
189 | + 'EVTM_ID', |
|
190 | + esc_html__('Event Meta Row ID', 'event_espresso'), |
|
191 | + false |
|
192 | + ), |
|
193 | + 'EVT_ID_fk' => new EE_DB_Only_Int_Field( |
|
194 | + 'EVT_ID', |
|
195 | + esc_html__('Foreign key to Event ID from Event Meta table', 'event_espresso'), |
|
196 | + false |
|
197 | + ), |
|
198 | + 'EVT_display_desc' => new EE_Boolean_Field( |
|
199 | + 'EVT_display_desc', |
|
200 | + esc_html__('Display Description Flag', 'event_espresso'), |
|
201 | + false, |
|
202 | + true |
|
203 | + ), |
|
204 | + 'EVT_display_ticket_selector' => new EE_Boolean_Field( |
|
205 | + 'EVT_display_ticket_selector', |
|
206 | + esc_html__('Display Ticket Selector Flag', 'event_espresso'), |
|
207 | + false, |
|
208 | + true |
|
209 | + ), |
|
210 | + 'EVT_visible_on' => new EE_Datetime_Field( |
|
211 | + 'EVT_visible_on', |
|
212 | + esc_html__('Event Visible Date', 'event_espresso'), |
|
213 | + true, |
|
214 | + EE_Datetime_Field::now |
|
215 | + ), |
|
216 | + 'EVT_additional_limit' => new EE_Integer_Field( |
|
217 | + 'EVT_additional_limit', |
|
218 | + esc_html__('Limit of Additional Registrations on Same Transaction', 'event_espresso'), |
|
219 | + true, |
|
220 | + self::$_default_additional_limit |
|
221 | + ), |
|
222 | + 'EVT_default_registration_status' => new EE_Enum_Text_Field( |
|
223 | + 'EVT_default_registration_status', |
|
224 | + esc_html__('Default Registration Status on this Event', 'event_espresso'), |
|
225 | + false, |
|
226 | + EEM_Event::$_default_reg_status, |
|
227 | + EEM_Registration::reg_status_array() |
|
228 | + ), |
|
229 | + 'EVT_member_only' => new EE_Boolean_Field( |
|
230 | + 'EVT_member_only', |
|
231 | + esc_html__('Member-Only Event Flag', 'event_espresso'), |
|
232 | + false, |
|
233 | + false |
|
234 | + ), |
|
235 | + 'EVT_phone' => new EE_Plain_Text_Field( |
|
236 | + 'EVT_phone', |
|
237 | + esc_html__('Event Phone Number', 'event_espresso'), |
|
238 | + false, |
|
239 | + '' |
|
240 | + ), |
|
241 | + 'EVT_allow_overflow' => new EE_Boolean_Field( |
|
242 | + 'EVT_allow_overflow', |
|
243 | + esc_html__('Allow Overflow on Event', 'event_espresso'), |
|
244 | + false, |
|
245 | + false |
|
246 | + ), |
|
247 | + 'EVT_timezone_string' => new EE_Plain_Text_Field( |
|
248 | + 'EVT_timezone_string', |
|
249 | + esc_html__('Timezone (name) for Event times', 'event_espresso'), |
|
250 | + false, |
|
251 | + '' |
|
252 | + ), |
|
253 | + 'EVT_external_URL' => new EE_Plain_Text_Field( |
|
254 | + 'EVT_external_URL', |
|
255 | + esc_html__('URL of Event Page if hosted elsewhere', 'event_espresso'), |
|
256 | + true |
|
257 | + ), |
|
258 | + 'EVT_donations' => new EE_Boolean_Field( |
|
259 | + 'EVT_donations', |
|
260 | + esc_html__('Accept Donations?', 'event_espresso'), |
|
261 | + false, |
|
262 | + false |
|
263 | + ), |
|
264 | + ), |
|
265 | + ); |
|
266 | + $this->_model_relations = array( |
|
267 | + 'Registration' => new EE_Has_Many_Relation(), |
|
268 | + 'Datetime' => new EE_Has_Many_Relation(), |
|
269 | + 'Question_Group' => new EE_HABTM_Relation('Event_Question_Group'), |
|
270 | + 'Venue' => new EE_HABTM_Relation('Event_Venue'), |
|
271 | + 'Term_Relationship' => new EE_Has_Many_Relation(), |
|
272 | + 'Term_Taxonomy' => new EE_HABTM_Relation('Term_Relationship'), |
|
273 | + 'Message_Template_Group' => new EE_HABTM_Relation('Event_Message_Template'), |
|
274 | + 'Attendee' => new EE_HABTM_Relation('Registration'), |
|
275 | + 'WP_User' => new EE_Belongs_To_Relation(), |
|
276 | + ); |
|
277 | + // this model is generally available for reading |
|
278 | + $this->_cap_restriction_generators[ EEM_Base::caps_read ] = new EE_Restriction_Generator_Public(); |
|
279 | + $this->model_chain_to_password = ''; |
|
280 | + parent::__construct($timezone); |
|
281 | + } |
|
282 | + |
|
283 | + |
|
284 | + |
|
285 | + /** |
|
286 | + * @param string $default_reg_status |
|
287 | + */ |
|
288 | + public static function set_default_reg_status($default_reg_status) |
|
289 | + { |
|
290 | + self::$_default_reg_status = $default_reg_status; |
|
291 | + // if EEM_Event has already been instantiated, |
|
292 | + // then we need to reset the `EVT_default_reg_status` field to use the new default. |
|
293 | + if (self::$_instance instanceof EEM_Event) { |
|
294 | + $default_reg_status = new EE_Enum_Text_Field( |
|
295 | + 'EVT_default_registration_status', |
|
296 | + esc_html__('Default Registration Status on this Event', 'event_espresso'), |
|
297 | + false, |
|
298 | + $default_reg_status, |
|
299 | + EEM_Registration::reg_status_array() |
|
300 | + ); |
|
301 | + $default_reg_status->_construct_finalize( |
|
302 | + 'Event_Meta', |
|
303 | + 'EVT_default_registration_status', |
|
304 | + 'EEM_Event' |
|
305 | + ); |
|
306 | + self::$_instance->_fields['Event_Meta']['EVT_default_registration_status'] = $default_reg_status; |
|
307 | + } |
|
308 | + } |
|
309 | + |
|
310 | + |
|
311 | + /** |
|
312 | + * Used to override the default for the additional limit field. |
|
313 | + * @param $additional_limit |
|
314 | + */ |
|
315 | + public static function set_default_additional_limit($additional_limit) |
|
316 | + { |
|
317 | + self::$_default_additional_limit = (int) $additional_limit; |
|
318 | + if (self::$_instance instanceof EEM_Event) { |
|
319 | + self::$_instance->_fields['Event_Meta']['EVT_additional_limit'] = new EE_Integer_Field( |
|
320 | + 'EVT_additional_limit', |
|
321 | + __('Limit of Additional Registrations on Same Transaction', 'event_espresso'), |
|
322 | + true, |
|
323 | + self::$_default_additional_limit |
|
324 | + ); |
|
325 | + self::$_instance->_fields['Event_Meta']['EVT_additional_limit']->_construct_finalize( |
|
326 | + 'Event_Meta', |
|
327 | + 'EVT_additional_limit', |
|
328 | + 'EEM_Event' |
|
329 | + ); |
|
330 | + } |
|
331 | + } |
|
332 | + |
|
333 | + |
|
334 | + /** |
|
335 | + * Return what is currently set as the default additional limit for the event. |
|
336 | + * @return int |
|
337 | + */ |
|
338 | + public static function get_default_additional_limit() |
|
339 | + { |
|
340 | + return apply_filters('FHEE__EEM_Event__get_default_additional_limit', self::$_default_additional_limit); |
|
341 | + } |
|
342 | + |
|
343 | + |
|
344 | + /** |
|
345 | + * get_question_groups |
|
346 | + * |
|
347 | + * @return array |
|
348 | + * @throws \EE_Error |
|
349 | + */ |
|
350 | + public function get_all_question_groups() |
|
351 | + { |
|
352 | + return EE_Registry::instance()->load_model('Question_Group')->get_all( |
|
353 | + array( |
|
354 | + array('QSG_deleted' => false), |
|
355 | + 'order_by' => array('QSG_order' => 'ASC'), |
|
356 | + ) |
|
357 | + ); |
|
358 | + } |
|
359 | + |
|
360 | + |
|
361 | + |
|
362 | + /** |
|
363 | + * get_question_groups |
|
364 | + * |
|
365 | + * @param int $EVT_ID |
|
366 | + * @return array|bool |
|
367 | + * @throws \EE_Error |
|
368 | + */ |
|
369 | + public function get_all_event_question_groups($EVT_ID = 0) |
|
370 | + { |
|
371 | + if (! isset($EVT_ID) || ! absint($EVT_ID)) { |
|
372 | + EE_Error::add_error( |
|
373 | + esc_html__( |
|
374 | + 'An error occurred. No Event Question Groups could be retrieved because an Event ID was not received.', |
|
375 | + 'event_espresso' |
|
376 | + ), |
|
377 | + __FILE__, |
|
378 | + __FUNCTION__, |
|
379 | + __LINE__ |
|
380 | + ); |
|
381 | + return false; |
|
382 | + } |
|
383 | + return EE_Registry::instance()->load_model('Event_Question_Group')->get_all( |
|
384 | + array( |
|
385 | + array('EVT_ID' => $EVT_ID), |
|
386 | + ) |
|
387 | + ); |
|
388 | + } |
|
389 | + |
|
390 | + |
|
391 | + |
|
392 | + /** |
|
393 | + * get_question_groups |
|
394 | + * |
|
395 | + * @param int $EVT_ID |
|
396 | + * @param boolean $for_primary_attendee |
|
397 | + * @return array|bool |
|
398 | + * @throws \EE_Error |
|
399 | + */ |
|
400 | + public function get_event_question_groups($EVT_ID = 0, $for_primary_attendee = true) |
|
401 | + { |
|
402 | + if (! isset($EVT_ID) || ! absint($EVT_ID)) { |
|
403 | + EE_Error::add_error( |
|
404 | + esc_html__( |
|
405 | + 'An error occurred. No Event Question Groups could be retrieved because an Event ID was not received.', |
|
406 | + 'event_espresso' |
|
407 | + ), |
|
408 | + __FILE__, |
|
409 | + __FUNCTION__, |
|
410 | + __LINE__ |
|
411 | + ); |
|
412 | + return false; |
|
413 | + } |
|
414 | + return EE_Registry::instance()->load_model('Event_Question_Group')->get_all( |
|
415 | + array( |
|
416 | + array( |
|
417 | + 'EVT_ID' => $EVT_ID, |
|
418 | + 'EQG_primary' => $for_primary_attendee, |
|
419 | + ), |
|
420 | + ) |
|
421 | + ); |
|
422 | + } |
|
423 | + |
|
424 | + |
|
425 | + |
|
426 | + /** |
|
427 | + * get_question_groups |
|
428 | + * |
|
429 | + * @param int $EVT_ID |
|
430 | + * @param EE_Registration $registration |
|
431 | + * @return array|bool |
|
432 | + * @throws \EE_Error |
|
433 | + */ |
|
434 | + public function get_question_groups_for_event($EVT_ID = 0, EE_Registration $registration) |
|
435 | + { |
|
436 | + if (! isset($EVT_ID) || ! absint($EVT_ID)) { |
|
437 | + EE_Error::add_error( |
|
438 | + esc_html__( |
|
439 | + 'An error occurred. No Question Groups could be retrieved because an Event ID was not received.', |
|
440 | + 'event_espresso' |
|
441 | + ), |
|
442 | + __FILE__, |
|
443 | + __FUNCTION__, |
|
444 | + __LINE__ |
|
445 | + ); |
|
446 | + return false; |
|
447 | + } |
|
448 | + $where_params = array( |
|
449 | + 'Event_Question_Group.EVT_ID' => $EVT_ID, |
|
450 | + 'Event_Question_Group.EQG_primary' => $registration->count() === 1 ? true : false, |
|
451 | + 'QSG_deleted' => false, |
|
452 | + ); |
|
453 | + return EE_Registry::instance()->load_model('Question_Group')->get_all( |
|
454 | + array( |
|
455 | + $where_params, |
|
456 | + 'order_by' => array('QSG_order' => 'ASC'), |
|
457 | + ) |
|
458 | + ); |
|
459 | + } |
|
460 | + |
|
461 | + |
|
462 | + |
|
463 | + /** |
|
464 | + * get_question_target_db_column |
|
465 | + * |
|
466 | + * @param string $QSG_IDs csv list of $QSG IDs |
|
467 | + * @return array|bool |
|
468 | + * @throws \EE_Error |
|
469 | + */ |
|
470 | + public function get_questions_in_groups($QSG_IDs = '') |
|
471 | + { |
|
472 | + if (empty($QSG_IDs)) { |
|
473 | + EE_Error::add_error( |
|
474 | + esc_html__('An error occurred. No Question Group IDs were received.', 'event_espresso'), |
|
475 | + __FILE__, |
|
476 | + __FUNCTION__, |
|
477 | + __LINE__ |
|
478 | + ); |
|
479 | + return false; |
|
480 | + } |
|
481 | + return EE_Registry::instance()->load_model('Question')->get_all( |
|
482 | + array( |
|
483 | + array( |
|
484 | + 'Question_Group.QSG_ID' => array('IN', $QSG_IDs), |
|
485 | + 'QST_deleted' => false, |
|
486 | + 'QST_admin_only' => is_admin(), |
|
487 | + ), |
|
488 | + 'order_by' => 'QST_order', |
|
489 | + ) |
|
490 | + ); |
|
491 | + } |
|
492 | + |
|
493 | + |
|
494 | + |
|
495 | + /** |
|
496 | + * get_options_for_question |
|
497 | + * |
|
498 | + * @param string $QST_IDs csv list of $QST IDs |
|
499 | + * @return array|bool |
|
500 | + * @throws \EE_Error |
|
501 | + */ |
|
502 | + public function get_options_for_question($QST_IDs) |
|
503 | + { |
|
504 | + if (empty($QST_IDs)) { |
|
505 | + EE_Error::add_error( |
|
506 | + esc_html__('An error occurred. No Question IDs were received.', 'event_espresso'), |
|
507 | + __FILE__, |
|
508 | + __FUNCTION__, |
|
509 | + __LINE__ |
|
510 | + ); |
|
511 | + return false; |
|
512 | + } |
|
513 | + return EE_Registry::instance()->load_model('Question_Option')->get_all( |
|
514 | + array( |
|
515 | + array( |
|
516 | + 'Question.QST_ID' => array('IN', $QST_IDs), |
|
517 | + 'QSO_deleted' => false, |
|
518 | + ), |
|
519 | + 'order_by' => 'QSO_ID', |
|
520 | + ) |
|
521 | + ); |
|
522 | + } |
|
523 | + |
|
524 | + |
|
525 | + |
|
526 | + |
|
527 | + |
|
528 | + |
|
529 | + |
|
530 | + /** |
|
531 | + * Gets all events that are published |
|
532 | + * and have event start time earlier than now and an event end time later than now |
|
533 | + * |
|
534 | + * @param array $query_params An array of query params to further filter on |
|
535 | + * (note that status and DTT_EVT_start and DTT_EVT_end will be overridden) |
|
536 | + * @param bool $count whether to return the count or not (default FALSE) |
|
537 | + * @return EE_Event[]|int |
|
538 | + * @throws \EE_Error |
|
539 | + */ |
|
540 | + public function get_active_events($query_params, $count = false) |
|
541 | + { |
|
542 | + if (array_key_exists(0, $query_params)) { |
|
543 | + $where_params = $query_params[0]; |
|
544 | + unset($query_params[0]); |
|
545 | + } else { |
|
546 | + $where_params = array(); |
|
547 | + } |
|
548 | + // if we have count make sure we don't include group by |
|
549 | + if ($count && isset($query_params['group_by'])) { |
|
550 | + unset($query_params['group_by']); |
|
551 | + } |
|
552 | + // let's add specific query_params for active_events |
|
553 | + // keep in mind this will override any sent status in the query AND any date queries. |
|
554 | + $where_params['status'] = array('IN', array('publish', EEM_Event::sold_out)); |
|
555 | + // if already have where params for DTT_EVT_start or DTT_EVT_end then append these conditions |
|
556 | + if (isset($where_params['Datetime.DTT_EVT_start'])) { |
|
557 | + $where_params['Datetime.DTT_EVT_start******'] = array( |
|
558 | + '<', |
|
559 | + EEM_Datetime::instance()->current_time_for_query('DTT_EVT_start'), |
|
560 | + ); |
|
561 | + } else { |
|
562 | + $where_params['Datetime.DTT_EVT_start'] = array( |
|
563 | + '<', |
|
564 | + EEM_Datetime::instance()->current_time_for_query('DTT_EVT_start'), |
|
565 | + ); |
|
566 | + } |
|
567 | + if (isset($where_params['Datetime.DTT_EVT_end'])) { |
|
568 | + $where_params['Datetime.DTT_EVT_end*****'] = array( |
|
569 | + '>', |
|
570 | + EEM_Datetime::instance()->current_time_for_query('DTT_EVT_end'), |
|
571 | + ); |
|
572 | + } else { |
|
573 | + $where_params['Datetime.DTT_EVT_end'] = array( |
|
574 | + '>', |
|
575 | + EEM_Datetime::instance()->current_time_for_query('DTT_EVT_end'), |
|
576 | + ); |
|
577 | + } |
|
578 | + $query_params[0] = $where_params; |
|
579 | + // don't use $query_params with count() |
|
580 | + // because we don't want to include additional query clauses like "GROUP BY" |
|
581 | + return $count |
|
582 | + ? $this->count(array($where_params), 'EVT_ID', true) |
|
583 | + : $this->get_all($query_params); |
|
584 | + } |
|
585 | + |
|
586 | + |
|
587 | + |
|
588 | + /** |
|
589 | + * get all events that are published and have an event start time later than now |
|
590 | + * |
|
591 | + * @param array $query_params An array of query params to further filter on |
|
592 | + * (Note that status and DTT_EVT_start will be overridden) |
|
593 | + * @param bool $count whether to return the count or not (default FALSE) |
|
594 | + * @return EE_Event[]|int |
|
595 | + * @throws \EE_Error |
|
596 | + */ |
|
597 | + public function get_upcoming_events($query_params, $count = false) |
|
598 | + { |
|
599 | + if (array_key_exists(0, $query_params)) { |
|
600 | + $where_params = $query_params[0]; |
|
601 | + unset($query_params[0]); |
|
602 | + } else { |
|
603 | + $where_params = array(); |
|
604 | + } |
|
605 | + // if we have count make sure we don't include group by |
|
606 | + if ($count && isset($query_params['group_by'])) { |
|
607 | + unset($query_params['group_by']); |
|
608 | + } |
|
609 | + // let's add specific query_params for active_events |
|
610 | + // keep in mind this will override any sent status in the query AND any date queries. |
|
611 | + $where_params['status'] = array('IN', array('publish', EEM_Event::sold_out)); |
|
612 | + // if there are already query_params matching DTT_EVT_start then we need to modify that to add them. |
|
613 | + if (isset($where_params['Datetime.DTT_EVT_start'])) { |
|
614 | + $where_params['Datetime.DTT_EVT_start*****'] = array( |
|
615 | + '>', |
|
616 | + EEM_Datetime::instance()->current_time_for_query('DTT_EVT_start'), |
|
617 | + ); |
|
618 | + } else { |
|
619 | + $where_params['Datetime.DTT_EVT_start'] = array( |
|
620 | + '>', |
|
621 | + EEM_Datetime::instance()->current_time_for_query('DTT_EVT_start'), |
|
622 | + ); |
|
623 | + } |
|
624 | + $query_params[0] = $where_params; |
|
625 | + // don't use $query_params with count() |
|
626 | + // because we don't want to include additional query clauses like "GROUP BY" |
|
627 | + return $count |
|
628 | + ? $this->count(array($where_params), 'EVT_ID', true) |
|
629 | + : $this->get_all($query_params); |
|
630 | + } |
|
631 | + |
|
632 | + |
|
633 | + |
|
634 | + /** |
|
635 | + * Gets all events that are published |
|
636 | + * and have an event end time later than now |
|
637 | + * |
|
638 | + * @param array $query_params An array of query params to further filter on |
|
639 | + * (note that status and DTT_EVT_end will be overridden) |
|
640 | + * @param bool $count whether to return the count or not (default FALSE) |
|
641 | + * @return EE_Event[]|int |
|
642 | + * @throws \EE_Error |
|
643 | + */ |
|
644 | + public function get_active_and_upcoming_events($query_params, $count = false) |
|
645 | + { |
|
646 | + if (array_key_exists(0, $query_params)) { |
|
647 | + $where_params = $query_params[0]; |
|
648 | + unset($query_params[0]); |
|
649 | + } else { |
|
650 | + $where_params = array(); |
|
651 | + } |
|
652 | + // if we have count make sure we don't include group by |
|
653 | + if ($count && isset($query_params['group_by'])) { |
|
654 | + unset($query_params['group_by']); |
|
655 | + } |
|
656 | + // let's add specific query_params for active_events |
|
657 | + // keep in mind this will override any sent status in the query AND any date queries. |
|
658 | + $where_params['status'] = array('IN', array('publish', EEM_Event::sold_out)); |
|
659 | + // add where params for DTT_EVT_end |
|
660 | + if (isset($where_params['Datetime.DTT_EVT_end'])) { |
|
661 | + $where_params['Datetime.DTT_EVT_end*****'] = array( |
|
662 | + '>', |
|
663 | + EEM_Datetime::instance()->current_time_for_query('DTT_EVT_end'), |
|
664 | + ); |
|
665 | + } else { |
|
666 | + $where_params['Datetime.DTT_EVT_end'] = array( |
|
667 | + '>', |
|
668 | + EEM_Datetime::instance()->current_time_for_query('DTT_EVT_end'), |
|
669 | + ); |
|
670 | + } |
|
671 | + $query_params[0] = $where_params; |
|
672 | + // don't use $query_params with count() |
|
673 | + // because we don't want to include additional query clauses like "GROUP BY" |
|
674 | + return $count |
|
675 | + ? $this->count(array($where_params), 'EVT_ID', true) |
|
676 | + : $this->get_all($query_params); |
|
677 | + } |
|
678 | + |
|
679 | + |
|
680 | + |
|
681 | + /** |
|
682 | + * This only returns events that are expired. |
|
683 | + * They may still be published but all their datetimes have expired. |
|
684 | + * |
|
685 | + * @param array $query_params An array of query params to further filter on |
|
686 | + * (note that status and DTT_EVT_end will be overridden) |
|
687 | + * @param bool $count whether to return the count or not (default FALSE) |
|
688 | + * @return EE_Event[]|int |
|
689 | + * @throws \EE_Error |
|
690 | + */ |
|
691 | + public function get_expired_events($query_params, $count = false) |
|
692 | + { |
|
693 | + $where_params = isset($query_params[0]) ? $query_params[0] : array(); |
|
694 | + // if we have count make sure we don't include group by |
|
695 | + if ($count && isset($query_params['group_by'])) { |
|
696 | + unset($query_params['group_by']); |
|
697 | + } |
|
698 | + // let's add specific query_params for active_events |
|
699 | + // keep in mind this will override any sent status in the query AND any date queries. |
|
700 | + if (isset($where_params['status'])) { |
|
701 | + unset($where_params['status']); |
|
702 | + } |
|
703 | + $exclude_query = $query_params; |
|
704 | + if (isset($exclude_query[0])) { |
|
705 | + unset($exclude_query[0]); |
|
706 | + } |
|
707 | + $exclude_query[0] = array( |
|
708 | + 'Datetime.DTT_EVT_end' => array( |
|
709 | + '>', |
|
710 | + EEM_Datetime::instance()->current_time_for_query('DTT_EVT_end'), |
|
711 | + ), |
|
712 | + ); |
|
713 | + // first get all events that have datetimes where its not expired. |
|
714 | + $event_ids = $this->_get_all_wpdb_results($exclude_query, OBJECT_K, 'Event_CPT.ID'); |
|
715 | + $event_ids = array_keys($event_ids); |
|
716 | + // if we have any additional query_params, let's add them to the 'AND' condition |
|
717 | + $and_condition = array( |
|
718 | + 'Datetime.DTT_EVT_end' => array('<', EEM_Datetime::instance()->current_time_for_query('DTT_EVT_end')), |
|
719 | + 'EVT_ID' => array('NOT IN', $event_ids), |
|
720 | + ); |
|
721 | + if (isset($where_params['OR'])) { |
|
722 | + $and_condition['OR'] = $where_params['OR']; |
|
723 | + unset($where_params['OR']); |
|
724 | + } |
|
725 | + if (isset($where_params['Datetime.DTT_EVT_end'])) { |
|
726 | + $and_condition['Datetime.DTT_EVT_end****'] = $where_params['Datetime.DTT_EVT_end']; |
|
727 | + unset($where_params['Datetime.DTT_EVT_end']); |
|
728 | + } |
|
729 | + if (isset($where_params['Datetime.DTT_EVT_start'])) { |
|
730 | + $and_condition['Datetime.DTT_EVT_start'] = $where_params['Datetime.DTT_EVT_start']; |
|
731 | + unset($where_params['Datetime.DTT_EVT_start']); |
|
732 | + } |
|
733 | + // merge remaining $where params with the and conditions. |
|
734 | + $where_params['AND'] = array_merge($and_condition, $where_params); |
|
735 | + $query_params[0] = $where_params; |
|
736 | + // don't use $query_params with count() |
|
737 | + // because we don't want to include additional query clauses like "GROUP BY" |
|
738 | + return $count |
|
739 | + ? $this->count(array($where_params), 'EVT_ID', true) |
|
740 | + : $this->get_all($query_params); |
|
741 | + } |
|
742 | + |
|
743 | + |
|
744 | + |
|
745 | + /** |
|
746 | + * This basically just returns the events that do not have the publish status. |
|
747 | + * |
|
748 | + * @param array $query_params An array of query params to further filter on |
|
749 | + * (note that status will be overwritten) |
|
750 | + * @param boolean $count whether to return the count or not (default FALSE) |
|
751 | + * @return EE_Event[]|int |
|
752 | + * @throws \EE_Error |
|
753 | + */ |
|
754 | + public function get_inactive_events($query_params, $count = false) |
|
755 | + { |
|
756 | + $where_params = isset($query_params[0]) ? $query_params[0] : array(); |
|
757 | + // let's add in specific query_params for inactive events. |
|
758 | + if (isset($where_params['status'])) { |
|
759 | + unset($where_params['status']); |
|
760 | + } |
|
761 | + // if we have count make sure we don't include group by |
|
762 | + if ($count && isset($query_params['group_by'])) { |
|
763 | + unset($query_params['group_by']); |
|
764 | + } |
|
765 | + // if we have any additional query_params, let's add them to the 'AND' condition |
|
766 | + $where_params['AND']['status'] = array('!=', 'publish'); |
|
767 | + if (isset($where_params['OR'])) { |
|
768 | + $where_params['AND']['OR'] = $where_params['OR']; |
|
769 | + unset($where_params['OR']); |
|
770 | + } |
|
771 | + if (isset($where_params['Datetime.DTT_EVT_end'])) { |
|
772 | + $where_params['AND']['Datetime.DTT_EVT_end****'] = $where_params['Datetime.DTT_EVT_end']; |
|
773 | + unset($where_params['Datetime.DTT_EVT_end']); |
|
774 | + } |
|
775 | + if (isset($where_params['Datetime.DTT_EVT_start'])) { |
|
776 | + $where_params['AND']['Datetime.DTT_EVT_start'] = $where_params['Datetime.DTT_EVT_start']; |
|
777 | + unset($where_params['Datetime.DTT_EVT_start']); |
|
778 | + } |
|
779 | + $query_params[0] = $where_params; |
|
780 | + // don't use $query_params with count() |
|
781 | + // because we don't want to include additional query clauses like "GROUP BY" |
|
782 | + return $count |
|
783 | + ? $this->count(array($where_params), 'EVT_ID', true) |
|
784 | + : $this->get_all($query_params); |
|
785 | + } |
|
786 | + |
|
787 | + |
|
788 | + |
|
789 | + /** |
|
790 | + * This is just injecting into the parent add_relationship_to so we do special handling on price relationships |
|
791 | + * because we don't want to override any existing global default prices but instead insert NEW prices that get |
|
792 | + * attached to the event. See parent for param descriptions |
|
793 | + * |
|
794 | + * @param $id_or_obj |
|
795 | + * @param $other_model_id_or_obj |
|
796 | + * @param string $relationName |
|
797 | + * @param array $where_query |
|
798 | + * @return EE_Base_Class |
|
799 | + * @throws EE_Error |
|
800 | + */ |
|
801 | + public function add_relationship_to($id_or_obj, $other_model_id_or_obj, $relationName, $where_query = array()) |
|
802 | + { |
|
803 | + if ($relationName === 'Price') { |
|
804 | + // let's get the PRC object for the given ID to make sure that we aren't dealing with a default |
|
805 | + $prc_chk = $this->get_related_model_obj($relationName)->ensure_is_obj($other_model_id_or_obj); |
|
806 | + // if EVT_ID = 0, then this is a default |
|
807 | + if ((int) $prc_chk->get('EVT_ID') === 0) { |
|
808 | + // let's set the prc_id as 0 so we force an insert on the add_relation_to carried out by relation |
|
809 | + $prc_chk->set('PRC_ID', 0); |
|
810 | + } |
|
811 | + // run parent |
|
812 | + return parent::add_relationship_to($id_or_obj, $prc_chk, $relationName, $where_query); |
|
813 | + } |
|
814 | + // otherwise carry on as normal |
|
815 | + return parent::add_relationship_to($id_or_obj, $other_model_id_or_obj, $relationName, $where_query); |
|
816 | + } |
|
817 | + |
|
818 | + |
|
819 | + |
|
820 | + /******************** DEPRECATED METHODS ********************/ |
|
821 | + |
|
822 | + |
|
823 | + |
|
824 | + /** |
|
825 | + * _get_question_target_db_column |
|
826 | + * |
|
827 | + * @deprecated as of 4.8.32.rc.001. Instead consider using |
|
828 | + * EE_Registration_Custom_Questions_Form located in |
|
829 | + * admin_pages/registrations/form_sections/EE_Registration_Custom_Questions_Form.form.php |
|
830 | + * @access public |
|
831 | + * @param EE_Registration $registration (so existing answers for registration are included) |
|
832 | + * @param int $EVT_ID so all question groups are included for event (not just answers from |
|
833 | + * registration). |
|
834 | + * @throws EE_Error |
|
835 | + * @return array |
|
836 | + */ |
|
837 | + public function assemble_array_of_groups_questions_and_options(EE_Registration $registration, $EVT_ID = 0) |
|
838 | + { |
|
839 | + if (empty($EVT_ID)) { |
|
840 | + throw new EE_Error(__( |
|
841 | + 'An error occurred. No EVT_ID is included. Needed to know which question groups to retrieve.', |
|
842 | + 'event_espresso' |
|
843 | + )); |
|
844 | + } |
|
845 | + $questions = array(); |
|
846 | + // get all question groups for event |
|
847 | + $qgs = $this->get_question_groups_for_event($EVT_ID, $registration); |
|
848 | + if (! empty($qgs)) { |
|
849 | + foreach ($qgs as $qg) { |
|
850 | + $qsts = $qg->questions(); |
|
851 | + $questions[ $qg->ID() ] = $qg->model_field_array(); |
|
852 | + $questions[ $qg->ID() ]['QSG_questions'] = array(); |
|
853 | + foreach ($qsts as $qst) { |
|
854 | + if ($qst->is_system_question()) { |
|
855 | + continue; |
|
856 | + } |
|
857 | + $answer = EEM_Answer::instance()->get_one(array( |
|
858 | + array( |
|
859 | + 'QST_ID' => $qst->ID(), |
|
860 | + 'REG_ID' => $registration->ID(), |
|
861 | + ), |
|
862 | + )); |
|
863 | + $answer = $answer instanceof EE_Answer ? $answer : EEM_Answer::instance()->create_default_object(); |
|
864 | + $qst_name = $qstn_id = $qst->ID(); |
|
865 | + $ans_id = $answer->ID(); |
|
866 | + $qst_name = ! empty($ans_id) ? '[' . $qst_name . '][' . $ans_id . ']' : '[' . $qst_name . ']'; |
|
867 | + $input_name = ''; |
|
868 | + $input_id = sanitize_key($qst->display_text()); |
|
869 | + $input_class = ''; |
|
870 | + $questions[ $qg->ID() ]['QSG_questions'][ $qst->ID() ] = $qst->model_field_array(); |
|
871 | + $questions[ $qg->ID() ]['QSG_questions'][ $qst->ID() ]['QST_input_name'] = 'qstn' |
|
872 | + . $input_name |
|
873 | + . $qst_name; |
|
874 | + $questions[ $qg->ID() ]['QSG_questions'][ $qst->ID() ]['QST_input_id'] = $input_id . '-' . $qstn_id; |
|
875 | + $questions[ $qg->ID() ]['QSG_questions'][ $qst->ID() ]['QST_input_class'] = $input_class; |
|
876 | + $questions[ $qg->ID() ]['QSG_questions'][ $qst->ID() ]['QST_options'] = array(); |
|
877 | + $questions[ $qg->ID() ]['QSG_questions'][ $qst->ID() ]['qst_obj'] = $qst; |
|
878 | + $questions[ $qg->ID() ]['QSG_questions'][ $qst->ID() ]['ans_obj'] = $answer; |
|
879 | + // leave responses as-is, don't convert stuff into html entities please! |
|
880 | + $questions[ $qg->ID() ]['QSG_questions'][ $qst->ID() ]['htmlentities'] = false; |
|
881 | + if ($qst->type() == 'RADIO_BTN' || $qst->type() == 'CHECKBOX' || $qst->type() == 'DROPDOWN') { |
|
882 | + $QSOs = $qst->options(true, $answer->value()); |
|
883 | + if (is_array($QSOs)) { |
|
884 | + foreach ($QSOs as $QSO_ID => $QSO) { |
|
885 | + $questions[ $qg->ID() ]['QSG_questions'][ $qst->ID() ]['QST_options'][ $QSO_ID ] = $QSO->model_field_array(); |
|
886 | + } |
|
887 | + } |
|
888 | + } |
|
889 | + } |
|
890 | + } |
|
891 | + } |
|
892 | + return $questions; |
|
893 | + } |
|
894 | + |
|
895 | + |
|
896 | + /** |
|
897 | + * @param mixed $cols_n_values either an array of where each key is the name of a field, and the value is its value |
|
898 | + * or an stdClass where each property is the name of a column, |
|
899 | + * @return EE_Base_Class |
|
900 | + * @throws \EE_Error |
|
901 | + */ |
|
902 | + public function instantiate_class_from_array_or_object($cols_n_values) |
|
903 | + { |
|
904 | + $classInstance = parent::instantiate_class_from_array_or_object($cols_n_values); |
|
905 | + if ($classInstance instanceof EE_Event) { |
|
906 | + // events have their timezone defined in the DB, so use it immediately |
|
907 | + $this->set_timezone($classInstance->get_timezone()); |
|
908 | + } |
|
909 | + return $classInstance; |
|
910 | + } |
|
911 | 911 | } |
@@ -275,7 +275,7 @@ discard block |
||
275 | 275 | 'WP_User' => new EE_Belongs_To_Relation(), |
276 | 276 | ); |
277 | 277 | // this model is generally available for reading |
278 | - $this->_cap_restriction_generators[ EEM_Base::caps_read ] = new EE_Restriction_Generator_Public(); |
|
278 | + $this->_cap_restriction_generators[EEM_Base::caps_read] = new EE_Restriction_Generator_Public(); |
|
279 | 279 | $this->model_chain_to_password = ''; |
280 | 280 | parent::__construct($timezone); |
281 | 281 | } |
@@ -368,7 +368,7 @@ discard block |
||
368 | 368 | */ |
369 | 369 | public function get_all_event_question_groups($EVT_ID = 0) |
370 | 370 | { |
371 | - if (! isset($EVT_ID) || ! absint($EVT_ID)) { |
|
371 | + if ( ! isset($EVT_ID) || ! absint($EVT_ID)) { |
|
372 | 372 | EE_Error::add_error( |
373 | 373 | esc_html__( |
374 | 374 | 'An error occurred. No Event Question Groups could be retrieved because an Event ID was not received.', |
@@ -399,7 +399,7 @@ discard block |
||
399 | 399 | */ |
400 | 400 | public function get_event_question_groups($EVT_ID = 0, $for_primary_attendee = true) |
401 | 401 | { |
402 | - if (! isset($EVT_ID) || ! absint($EVT_ID)) { |
|
402 | + if ( ! isset($EVT_ID) || ! absint($EVT_ID)) { |
|
403 | 403 | EE_Error::add_error( |
404 | 404 | esc_html__( |
405 | 405 | 'An error occurred. No Event Question Groups could be retrieved because an Event ID was not received.', |
@@ -433,7 +433,7 @@ discard block |
||
433 | 433 | */ |
434 | 434 | public function get_question_groups_for_event($EVT_ID = 0, EE_Registration $registration) |
435 | 435 | { |
436 | - if (! isset($EVT_ID) || ! absint($EVT_ID)) { |
|
436 | + if ( ! isset($EVT_ID) || ! absint($EVT_ID)) { |
|
437 | 437 | EE_Error::add_error( |
438 | 438 | esc_html__( |
439 | 439 | 'An error occurred. No Question Groups could be retrieved because an Event ID was not received.', |
@@ -845,11 +845,11 @@ discard block |
||
845 | 845 | $questions = array(); |
846 | 846 | // get all question groups for event |
847 | 847 | $qgs = $this->get_question_groups_for_event($EVT_ID, $registration); |
848 | - if (! empty($qgs)) { |
|
848 | + if ( ! empty($qgs)) { |
|
849 | 849 | foreach ($qgs as $qg) { |
850 | 850 | $qsts = $qg->questions(); |
851 | - $questions[ $qg->ID() ] = $qg->model_field_array(); |
|
852 | - $questions[ $qg->ID() ]['QSG_questions'] = array(); |
|
851 | + $questions[$qg->ID()] = $qg->model_field_array(); |
|
852 | + $questions[$qg->ID()]['QSG_questions'] = array(); |
|
853 | 853 | foreach ($qsts as $qst) { |
854 | 854 | if ($qst->is_system_question()) { |
855 | 855 | continue; |
@@ -863,26 +863,26 @@ discard block |
||
863 | 863 | $answer = $answer instanceof EE_Answer ? $answer : EEM_Answer::instance()->create_default_object(); |
864 | 864 | $qst_name = $qstn_id = $qst->ID(); |
865 | 865 | $ans_id = $answer->ID(); |
866 | - $qst_name = ! empty($ans_id) ? '[' . $qst_name . '][' . $ans_id . ']' : '[' . $qst_name . ']'; |
|
866 | + $qst_name = ! empty($ans_id) ? '['.$qst_name.']['.$ans_id.']' : '['.$qst_name.']'; |
|
867 | 867 | $input_name = ''; |
868 | 868 | $input_id = sanitize_key($qst->display_text()); |
869 | 869 | $input_class = ''; |
870 | - $questions[ $qg->ID() ]['QSG_questions'][ $qst->ID() ] = $qst->model_field_array(); |
|
871 | - $questions[ $qg->ID() ]['QSG_questions'][ $qst->ID() ]['QST_input_name'] = 'qstn' |
|
870 | + $questions[$qg->ID()]['QSG_questions'][$qst->ID()] = $qst->model_field_array(); |
|
871 | + $questions[$qg->ID()]['QSG_questions'][$qst->ID()]['QST_input_name'] = 'qstn' |
|
872 | 872 | . $input_name |
873 | 873 | . $qst_name; |
874 | - $questions[ $qg->ID() ]['QSG_questions'][ $qst->ID() ]['QST_input_id'] = $input_id . '-' . $qstn_id; |
|
875 | - $questions[ $qg->ID() ]['QSG_questions'][ $qst->ID() ]['QST_input_class'] = $input_class; |
|
876 | - $questions[ $qg->ID() ]['QSG_questions'][ $qst->ID() ]['QST_options'] = array(); |
|
877 | - $questions[ $qg->ID() ]['QSG_questions'][ $qst->ID() ]['qst_obj'] = $qst; |
|
878 | - $questions[ $qg->ID() ]['QSG_questions'][ $qst->ID() ]['ans_obj'] = $answer; |
|
874 | + $questions[$qg->ID()]['QSG_questions'][$qst->ID()]['QST_input_id'] = $input_id.'-'.$qstn_id; |
|
875 | + $questions[$qg->ID()]['QSG_questions'][$qst->ID()]['QST_input_class'] = $input_class; |
|
876 | + $questions[$qg->ID()]['QSG_questions'][$qst->ID()]['QST_options'] = array(); |
|
877 | + $questions[$qg->ID()]['QSG_questions'][$qst->ID()]['qst_obj'] = $qst; |
|
878 | + $questions[$qg->ID()]['QSG_questions'][$qst->ID()]['ans_obj'] = $answer; |
|
879 | 879 | // leave responses as-is, don't convert stuff into html entities please! |
880 | - $questions[ $qg->ID() ]['QSG_questions'][ $qst->ID() ]['htmlentities'] = false; |
|
880 | + $questions[$qg->ID()]['QSG_questions'][$qst->ID()]['htmlentities'] = false; |
|
881 | 881 | if ($qst->type() == 'RADIO_BTN' || $qst->type() == 'CHECKBOX' || $qst->type() == 'DROPDOWN') { |
882 | 882 | $QSOs = $qst->options(true, $answer->value()); |
883 | 883 | if (is_array($QSOs)) { |
884 | 884 | foreach ($QSOs as $QSO_ID => $QSO) { |
885 | - $questions[ $qg->ID() ]['QSG_questions'][ $qst->ID() ]['QST_options'][ $QSO_ID ] = $QSO->model_field_array(); |
|
885 | + $questions[$qg->ID()]['QSG_questions'][$qst->ID()]['QST_options'][$QSO_ID] = $QSO->model_field_array(); |
|
886 | 886 | } |
887 | 887 | } |
888 | 888 | } |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <p> |
2 | 2 | <?php esc_html_e( |
3 | - 'Use this to control what the default will be for maximum tickets on an order when creating a new event.', |
|
4 | - 'event_espresso' |
|
5 | - ); ?> |
|
3 | + 'Use this to control what the default will be for maximum tickets on an order when creating a new event.', |
|
4 | + 'event_espresso' |
|
5 | + ); ?> |
|
6 | 6 | </p> |
7 | 7 | \ No newline at end of file |
@@ -43,7 +43,7 @@ |
||
43 | 43 | $error_string = esc_html__('The following errors occurred:', 'event_espresso'); |
44 | 44 | foreach ($notices->getError() as $notice) { |
45 | 45 | if ($this->getThrowExceptions()) { |
46 | - $error_string .= '<br />' . $notice->message(); |
|
46 | + $error_string .= '<br />'.$notice->message(); |
|
47 | 47 | } else { |
48 | 48 | EE_Error::add_error( |
49 | 49 | $notice->message(), |
@@ -19,56 +19,56 @@ |
||
19 | 19 | class ConvertNoticesToEeErrors extends NoticeConverter |
20 | 20 | { |
21 | 21 | |
22 | - /** |
|
23 | - * Converts Notice objects into EE_Error notifications |
|
24 | - * |
|
25 | - * @param NoticesContainerInterface $notices |
|
26 | - * @throws EE_Error |
|
27 | - */ |
|
28 | - public function process(NoticesContainerInterface $notices) |
|
29 | - { |
|
30 | - $this->setNotices($notices); |
|
31 | - $notices = $this->getNotices(); |
|
32 | - if ($notices->hasAttention()) { |
|
33 | - foreach ($notices->getAttention() as $notice) { |
|
34 | - EE_Error::add_attention( |
|
35 | - $notice->message(), |
|
36 | - $notice->file(), |
|
37 | - $notice->func(), |
|
38 | - $notice->line() |
|
39 | - ); |
|
40 | - } |
|
41 | - } |
|
42 | - if ($notices->hasError()) { |
|
43 | - $error_string = esc_html__('The following errors occurred:', 'event_espresso'); |
|
44 | - foreach ($notices->getError() as $notice) { |
|
45 | - if ($this->getThrowExceptions()) { |
|
46 | - $error_string .= '<br />' . $notice->message(); |
|
47 | - } else { |
|
48 | - EE_Error::add_error( |
|
49 | - $notice->message(), |
|
50 | - $notice->file(), |
|
51 | - $notice->func(), |
|
52 | - $notice->line() |
|
53 | - ); |
|
54 | - } |
|
55 | - } |
|
56 | - if ($this->getThrowExceptions()) { |
|
57 | - throw new EE_Error($error_string); |
|
58 | - } |
|
59 | - } |
|
60 | - if ($notices->hasSuccess()) { |
|
61 | - foreach ($notices->getSuccess() as $notice) { |
|
62 | - EE_Error::add_success( |
|
63 | - $notice->message(), |
|
64 | - $notice->file(), |
|
65 | - $notice->func(), |
|
66 | - $notice->line() |
|
67 | - ); |
|
68 | - } |
|
69 | - } |
|
70 | - $this->clearNotices(); |
|
71 | - } |
|
22 | + /** |
|
23 | + * Converts Notice objects into EE_Error notifications |
|
24 | + * |
|
25 | + * @param NoticesContainerInterface $notices |
|
26 | + * @throws EE_Error |
|
27 | + */ |
|
28 | + public function process(NoticesContainerInterface $notices) |
|
29 | + { |
|
30 | + $this->setNotices($notices); |
|
31 | + $notices = $this->getNotices(); |
|
32 | + if ($notices->hasAttention()) { |
|
33 | + foreach ($notices->getAttention() as $notice) { |
|
34 | + EE_Error::add_attention( |
|
35 | + $notice->message(), |
|
36 | + $notice->file(), |
|
37 | + $notice->func(), |
|
38 | + $notice->line() |
|
39 | + ); |
|
40 | + } |
|
41 | + } |
|
42 | + if ($notices->hasError()) { |
|
43 | + $error_string = esc_html__('The following errors occurred:', 'event_espresso'); |
|
44 | + foreach ($notices->getError() as $notice) { |
|
45 | + if ($this->getThrowExceptions()) { |
|
46 | + $error_string .= '<br />' . $notice->message(); |
|
47 | + } else { |
|
48 | + EE_Error::add_error( |
|
49 | + $notice->message(), |
|
50 | + $notice->file(), |
|
51 | + $notice->func(), |
|
52 | + $notice->line() |
|
53 | + ); |
|
54 | + } |
|
55 | + } |
|
56 | + if ($this->getThrowExceptions()) { |
|
57 | + throw new EE_Error($error_string); |
|
58 | + } |
|
59 | + } |
|
60 | + if ($notices->hasSuccess()) { |
|
61 | + foreach ($notices->getSuccess() as $notice) { |
|
62 | + EE_Error::add_success( |
|
63 | + $notice->message(), |
|
64 | + $notice->file(), |
|
65 | + $notice->func(), |
|
66 | + $notice->line() |
|
67 | + ); |
|
68 | + } |
|
69 | + } |
|
70 | + $this->clearNotices(); |
|
71 | + } |
|
72 | 72 | |
73 | 73 | |
74 | 74 | } |
@@ -11,48 +11,48 @@ |
||
11 | 11 | * @version 4+ |
12 | 12 | */ |
13 | 13 | if (have_posts()) : |
14 | - if (apply_filters('FHEE__archive_espresso_events_template__show_header', true)) : ?> |
|
14 | + if (apply_filters('FHEE__archive_espresso_events_template__show_header', true)) : ?> |
|
15 | 15 | <header class="page-header"> |
16 | 16 | <h1 class="page-title"> |
17 | 17 | <?php |
18 | - if (is_day()) : |
|
19 | - printf(__('Today\'s Events: %s', 'event_espresso'), get_the_date()); |
|
20 | - elseif (is_month()) : |
|
21 | - printf( |
|
22 | - __('Events This Month: %s', 'event_espresso'), |
|
23 | - get_the_date(_x('F Y', 'monthly archives date format', 'event_espresso')) |
|
24 | - ); |
|
25 | - elseif (is_year()) : |
|
26 | - printf( |
|
27 | - __('Events This Year: %s', 'event_espresso'), |
|
28 | - get_the_date(_x('Y', 'yearly archives date format', 'event_espresso')) |
|
29 | - ); |
|
30 | - else : |
|
31 | - echo apply_filters( |
|
32 | - 'FHEE__archive_espresso_events_template__upcoming_events_h1', |
|
33 | - __('Upcoming Events', 'event_espresso') |
|
34 | - ); |
|
35 | - endif; |
|
36 | - ?> |
|
18 | + if (is_day()) : |
|
19 | + printf(__('Today\'s Events: %s', 'event_espresso'), get_the_date()); |
|
20 | + elseif (is_month()) : |
|
21 | + printf( |
|
22 | + __('Events This Month: %s', 'event_espresso'), |
|
23 | + get_the_date(_x('F Y', 'monthly archives date format', 'event_espresso')) |
|
24 | + ); |
|
25 | + elseif (is_year()) : |
|
26 | + printf( |
|
27 | + __('Events This Year: %s', 'event_espresso'), |
|
28 | + get_the_date(_x('Y', 'yearly archives date format', 'event_espresso')) |
|
29 | + ); |
|
30 | + else : |
|
31 | + echo apply_filters( |
|
32 | + 'FHEE__archive_espresso_events_template__upcoming_events_h1', |
|
33 | + __('Upcoming Events', 'event_espresso') |
|
34 | + ); |
|
35 | + endif; |
|
36 | + ?> |
|
37 | 37 | </h1> |
38 | 38 | |
39 | 39 | </header><!-- .page-header --> |
40 | 40 | |
41 | 41 | <?php |
42 | - endif; |
|
43 | - // allow other stuff |
|
44 | - do_action('AHEE__archive_espresso_events_template__before_loop'); |
|
45 | - // Start the Loop. |
|
46 | - while (have_posts()) : the_post(); |
|
47 | - // Include the post TYPE-specific template for the content. |
|
48 | - espresso_get_template_part('content', 'espresso_events-shortcode'); |
|
49 | - endwhile; |
|
50 | - // Previous/next page navigation. |
|
51 | - espresso_pagination(); |
|
52 | - // allow moar other stuff |
|
53 | - do_action('AHEE__archive_espresso_events_template__after_loop'); |
|
42 | + endif; |
|
43 | + // allow other stuff |
|
44 | + do_action('AHEE__archive_espresso_events_template__before_loop'); |
|
45 | + // Start the Loop. |
|
46 | + while (have_posts()) : the_post(); |
|
47 | + // Include the post TYPE-specific template for the content. |
|
48 | + espresso_get_template_part('content', 'espresso_events-shortcode'); |
|
49 | + endwhile; |
|
50 | + // Previous/next page navigation. |
|
51 | + espresso_pagination(); |
|
52 | + // allow moar other stuff |
|
53 | + do_action('AHEE__archive_espresso_events_template__after_loop'); |
|
54 | 54 | else : |
55 | - // If no content, include the "No posts found" template. |
|
56 | - espresso_get_template_part('content', 'none'); |
|
55 | + // If no content, include the "No posts found" template. |
|
56 | + espresso_get_template_part('content', 'none'); |
|
57 | 57 | endif; |
58 | 58 |
@@ -27,11 +27,13 @@ discard block |
||
27 | 27 | __('Events This Year: %s', 'event_espresso'), |
28 | 28 | get_the_date(_x('Y', 'yearly archives date format', 'event_espresso')) |
29 | 29 | ); |
30 | - else : |
|
30 | + else { |
|
31 | + : |
|
31 | 32 | echo apply_filters( |
32 | 33 | 'FHEE__archive_espresso_events_template__upcoming_events_h1', |
33 | 34 | __('Upcoming Events', 'event_espresso') |
34 | 35 | ); |
36 | + } |
|
35 | 37 | endif; |
36 | 38 | ?> |
37 | 39 | </h1> |
@@ -51,8 +53,10 @@ discard block |
||
51 | 53 | espresso_pagination(); |
52 | 54 | // allow moar other stuff |
53 | 55 | do_action('AHEE__archive_espresso_events_template__after_loop'); |
54 | -else : |
|
56 | +else { |
|
57 | + : |
|
55 | 58 | // If no content, include the "No posts found" template. |
56 | 59 | espresso_get_template_part('content', 'none'); |
60 | +} |
|
57 | 61 | endif; |
58 | 62 |
@@ -15,7 +15,7 @@ |
||
15 | 15 | /** |
16 | 16 | * Use to select a quantity from the first ticket for the given event (so this can be used on a event archive page). |
17 | 17 | * @param int|string $event_id |
18 | - * @param int|string $quantity |
|
18 | + * @param integer $quantity |
|
19 | 19 | */ |
20 | 20 | public function selectQuantityOfFirstTicketForEventId($event_id, $quantity = 1) |
21 | 21 | { |
@@ -12,23 +12,23 @@ |
||
12 | 12 | trait TicketSelector |
13 | 13 | { |
14 | 14 | |
15 | - /** |
|
16 | - * Use to select a quantity from the first ticket for the given event (so this can be used on a event archive page). |
|
17 | - * @param int|string $event_id |
|
18 | - * @param int|string $quantity |
|
19 | - */ |
|
20 | - public function selectQuantityOfFirstTicketForEventId($event_id, $quantity = 1) |
|
21 | - { |
|
22 | - $this->actor()->selectOption(TicketSelectorElements::ticketOptionByEventIdSelector($event_id), $quantity); |
|
23 | - } |
|
15 | + /** |
|
16 | + * Use to select a quantity from the first ticket for the given event (so this can be used on a event archive page). |
|
17 | + * @param int|string $event_id |
|
18 | + * @param int|string $quantity |
|
19 | + */ |
|
20 | + public function selectQuantityOfFirstTicketForEventId($event_id, $quantity = 1) |
|
21 | + { |
|
22 | + $this->actor()->selectOption(TicketSelectorElements::ticketOptionByEventIdSelector($event_id), $quantity); |
|
23 | + } |
|
24 | 24 | |
25 | 25 | |
26 | - /** |
|
27 | - * Used to submit the ticket selection for the given event id (so this can be used on an event archive page). |
|
28 | - * @param int|string $event_id |
|
29 | - */ |
|
30 | - public function submitTicketSelectionsForEventId($event_id) |
|
31 | - { |
|
32 | - $this->actor()->click(TicketSelectorElements::ticketSelectionSubmitSelectorByEventId($event_id)); |
|
33 | - } |
|
26 | + /** |
|
27 | + * Used to submit the ticket selection for the given event id (so this can be used on an event archive page). |
|
28 | + * @param int|string $event_id |
|
29 | + */ |
|
30 | + public function submitTicketSelectionsForEventId($event_id) |
|
31 | + { |
|
32 | + $this->actor()->click(TicketSelectorElements::ticketSelectionSubmitSelectorByEventId($event_id)); |
|
33 | + } |
|
34 | 34 | } |
35 | 35 | \ No newline at end of file |