@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | $this->_form_section->html_id(), |
19 | 19 | $this->_form_section->html_class(), |
20 | 20 | $this->_form_section->html_style() |
21 | - ) . EEH_HTML::tbody(); |
|
21 | + ).EEH_HTML::tbody(); |
|
22 | 22 | } |
23 | 23 | |
24 | 24 | |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | */ |
32 | 32 | public function layout_form_end($additional_args = array()) |
33 | 33 | { |
34 | - return EEH_HTML::tbodyx() . EEH_HTML::tablex($this->_form_section->html_id()); |
|
34 | + return EEH_HTML::tbodyx().EEH_HTML::tablex($this->_form_section->html_id()); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | |
@@ -50,11 +50,11 @@ discard block |
||
50 | 50 | } else { |
51 | 51 | $html_for_input = $input->get_html_for_input(); |
52 | 52 | $html_for_input .= $input->get_html_for_errors() != '' |
53 | - ? EEH_HTML::nl() . $input->get_html_for_errors() |
|
53 | + ? EEH_HTML::nl().$input->get_html_for_errors() |
|
54 | 54 | : ''; |
55 | - $html_for_input .= $input->get_html_for_help() != '' ? EEH_HTML::nl() . $input->get_html_for_help() : ''; |
|
55 | + $html_for_input .= $input->get_html_for_help() != '' ? EEH_HTML::nl().$input->get_html_for_help() : ''; |
|
56 | 56 | $html .= EEH_HTML::tr( |
57 | - EEH_HTML::th($input->get_html_for_label()) . |
|
57 | + EEH_HTML::th($input->get_html_for_label()). |
|
58 | 58 | EEH_HTML::td($html_for_input) |
59 | 59 | ); |
60 | 60 | } |
@@ -5,81 +5,81 @@ |
||
5 | 5 | class EE_Two_Column_Layout extends EE_Form_Section_Layout_Base |
6 | 6 | { |
7 | 7 | |
8 | - /** |
|
9 | - * Should be used to start teh form section (Eg a table tag, or a div tag, etc.) |
|
10 | - * |
|
11 | - * @param array $additional_args |
|
12 | - * @return string |
|
13 | - */ |
|
14 | - public function layout_form_begin($additional_args = array()) |
|
15 | - { |
|
16 | - return $this->display_form_wide_errors() |
|
17 | - . EEH_HTML::table( |
|
18 | - '', |
|
19 | - $this->_form_section->html_id(), |
|
20 | - $this->_form_section->html_class(), |
|
21 | - $this->_form_section->html_style() |
|
22 | - ) . EEH_HTML::tbody(); |
|
23 | - } |
|
8 | + /** |
|
9 | + * Should be used to start teh form section (Eg a table tag, or a div tag, etc.) |
|
10 | + * |
|
11 | + * @param array $additional_args |
|
12 | + * @return string |
|
13 | + */ |
|
14 | + public function layout_form_begin($additional_args = array()) |
|
15 | + { |
|
16 | + return $this->display_form_wide_errors() |
|
17 | + . EEH_HTML::table( |
|
18 | + '', |
|
19 | + $this->_form_section->html_id(), |
|
20 | + $this->_form_section->html_class(), |
|
21 | + $this->_form_section->html_style() |
|
22 | + ) . EEH_HTML::tbody(); |
|
23 | + } |
|
24 | 24 | |
25 | 25 | |
26 | 26 | |
27 | - /** |
|
28 | - * Should be used to end the form section (eg a /table tag, or a /div tag, etc) |
|
29 | - * |
|
30 | - * @param array $additional_args |
|
31 | - * @return string |
|
32 | - */ |
|
33 | - public function layout_form_end($additional_args = array()) |
|
34 | - { |
|
35 | - return EEH_HTML::tbodyx() . EEH_HTML::tablex($this->_form_section->html_id()); |
|
36 | - } |
|
27 | + /** |
|
28 | + * Should be used to end the form section (eg a /table tag, or a /div tag, etc) |
|
29 | + * |
|
30 | + * @param array $additional_args |
|
31 | + * @return string |
|
32 | + */ |
|
33 | + public function layout_form_end($additional_args = array()) |
|
34 | + { |
|
35 | + return EEH_HTML::tbodyx() . EEH_HTML::tablex($this->_form_section->html_id()); |
|
36 | + } |
|
37 | 37 | |
38 | 38 | |
39 | 39 | |
40 | - /** |
|
41 | - * Lays out the row for the input, including label and errors |
|
42 | - * |
|
43 | - * @param EE_Form_Input_Base $input |
|
44 | - * @return string |
|
45 | - */ |
|
46 | - public function layout_input($input) |
|
47 | - { |
|
48 | - $html = ''; |
|
49 | - if ($input instanceof EE_Hidden_Input) { |
|
50 | - $html .= $input->get_html_for_input(); |
|
51 | - } else { |
|
52 | - $html_for_input = $input->get_html_for_input(); |
|
53 | - $html_for_input .= $input->get_html_for_errors() != '' |
|
54 | - ? EEH_HTML::nl() . $input->get_html_for_errors() |
|
55 | - : ''; |
|
56 | - $html_for_input .= $input->get_html_for_help() != '' ? EEH_HTML::nl() . $input->get_html_for_help() : ''; |
|
57 | - $html .= EEH_HTML::tr( |
|
58 | - EEH_HTML::th($input->get_html_for_label()) . |
|
59 | - EEH_HTML::td($html_for_input) |
|
60 | - ); |
|
61 | - } |
|
62 | - return $html; |
|
63 | - } |
|
40 | + /** |
|
41 | + * Lays out the row for the input, including label and errors |
|
42 | + * |
|
43 | + * @param EE_Form_Input_Base $input |
|
44 | + * @return string |
|
45 | + */ |
|
46 | + public function layout_input($input) |
|
47 | + { |
|
48 | + $html = ''; |
|
49 | + if ($input instanceof EE_Hidden_Input) { |
|
50 | + $html .= $input->get_html_for_input(); |
|
51 | + } else { |
|
52 | + $html_for_input = $input->get_html_for_input(); |
|
53 | + $html_for_input .= $input->get_html_for_errors() != '' |
|
54 | + ? EEH_HTML::nl() . $input->get_html_for_errors() |
|
55 | + : ''; |
|
56 | + $html_for_input .= $input->get_html_for_help() != '' ? EEH_HTML::nl() . $input->get_html_for_help() : ''; |
|
57 | + $html .= EEH_HTML::tr( |
|
58 | + EEH_HTML::th($input->get_html_for_label()) . |
|
59 | + EEH_HTML::td($html_for_input) |
|
60 | + ); |
|
61 | + } |
|
62 | + return $html; |
|
63 | + } |
|
64 | 64 | |
65 | 65 | |
66 | 66 | |
67 | - /** |
|
68 | - * Lays out a row for the subsection |
|
69 | - * |
|
70 | - * @param EE_Form_Section_Proper $form_section |
|
71 | - * @return string |
|
72 | - */ |
|
73 | - public function layout_subsection($form_section) |
|
74 | - { |
|
75 | - $html = ''; |
|
76 | - if ($form_section instanceof EE_Form_Section_HTML) { |
|
77 | - $html .= $form_section->get_html(); |
|
78 | - } else { |
|
79 | - $html .= EEH_HTML::tr( |
|
80 | - EEH_HTML::td($form_section->get_html(), '', '', '', 'colspan="2"') |
|
81 | - ); |
|
82 | - } |
|
83 | - return $html; |
|
84 | - } |
|
67 | + /** |
|
68 | + * Lays out a row for the subsection |
|
69 | + * |
|
70 | + * @param EE_Form_Section_Proper $form_section |
|
71 | + * @return string |
|
72 | + */ |
|
73 | + public function layout_subsection($form_section) |
|
74 | + { |
|
75 | + $html = ''; |
|
76 | + if ($form_section instanceof EE_Form_Section_HTML) { |
|
77 | + $html .= $form_section->get_html(); |
|
78 | + } else { |
|
79 | + $html .= EEH_HTML::tr( |
|
80 | + EEH_HTML::td($form_section->get_html(), '', '', '', 'colspan="2"') |
|
81 | + ); |
|
82 | + } |
|
83 | + return $html; |
|
84 | + } |
|
85 | 85 | } |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | * |
103 | 103 | * @abstract |
104 | 104 | * @access protected |
105 | - * @return array |
|
105 | + * @return string[] |
|
106 | 106 | */ |
107 | 107 | protected function _get_table_filters() |
108 | 108 | { |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | * column_TXN_paid |
266 | 266 | * |
267 | 267 | * @param \EE_Transaction $transaction |
268 | - * @return mixed|string |
|
268 | + * @return string |
|
269 | 269 | * @throws \EE_Error |
270 | 270 | */ |
271 | 271 | public function column_TXN_paid(EE_Transaction $transaction) |
@@ -15,121 +15,121 @@ discard block |
||
15 | 15 | class EE_Admin_Transactions_List_Table extends EE_Admin_List_Table |
16 | 16 | { |
17 | 17 | |
18 | - /** |
|
19 | - * @var SessionLifespan $session_lifespan |
|
20 | - */ |
|
21 | - private $session_lifespan; |
|
22 | - |
|
23 | - private $_status; |
|
24 | - |
|
25 | - |
|
26 | - /** |
|
27 | - * @param \Transactions_Admin_Page $admin_page |
|
28 | - * @param SessionLifespan $lifespan |
|
29 | - */ |
|
30 | - public function __construct(\Transactions_Admin_Page $admin_page, SessionLifespan $lifespan) |
|
31 | - { |
|
32 | - parent::__construct($admin_page); |
|
33 | - $this->session_lifespan = $lifespan; |
|
34 | - $this->_status = $this->_admin_page->get_transaction_status_array(); |
|
35 | - } |
|
36 | - |
|
37 | - |
|
38 | - /** |
|
39 | - *_setup_data |
|
40 | - */ |
|
41 | - protected function _setup_data() |
|
42 | - { |
|
43 | - $this->_data = $this->_admin_page->get_transactions($this->_per_page); |
|
44 | - $status = ! empty($this->_req_data['status']) ? $this->_req_data['status'] : 'all'; |
|
45 | - $this->_all_data_count = $this->_admin_page->get_transactions($this->_per_page, true, $status); |
|
46 | - } |
|
47 | - |
|
48 | - |
|
49 | - /** |
|
50 | - *_set_properties |
|
51 | - */ |
|
52 | - protected function _set_properties() |
|
53 | - { |
|
54 | - $this->_wp_list_args = array( |
|
55 | - 'singular' => __('transaction', 'event_espresso'), |
|
56 | - 'plural' => __('transactions', 'event_espresso'), |
|
57 | - 'ajax' => true, |
|
58 | - 'screen' => $this->_admin_page->get_current_screen()->id, |
|
59 | - ); |
|
60 | - $ID_column_name = __('ID', 'event_espresso'); |
|
61 | - $ID_column_name .= ' : <span class="show-on-mobile-view-only" style="float:none">'; |
|
62 | - $ID_column_name .= __('Transaction Date', 'event_espresso'); |
|
63 | - $ID_column_name .= '</span> '; |
|
64 | - $this->_columns = array( |
|
65 | - 'TXN_ID' => $ID_column_name, |
|
66 | - 'TXN_timestamp' => __('Transaction Date', 'event_espresso'), |
|
67 | - 'TXN_total' => __('Total', 'event_espresso'), |
|
68 | - 'TXN_paid' => __('Paid', 'event_espresso'), |
|
69 | - 'ATT_fname' => __('Primary Registrant', 'event_espresso'), |
|
70 | - 'event_name' => __('Event', 'event_espresso'), |
|
71 | - 'actions' => __('Actions', 'event_espresso'), |
|
72 | - ); |
|
73 | - |
|
74 | - $this->_sortable_columns = array( |
|
75 | - 'TXN_ID' => array('TXN_ID' => false), |
|
76 | - 'event_name' => array('event_name' => false), |
|
77 | - 'ATT_fname' => array('ATT_fname' => false), |
|
78 | - 'TXN_timestamp' => array('TXN_timestamp' => true) // true means its already sorted |
|
79 | - ); |
|
80 | - |
|
81 | - $this->_primary_column = 'TXN_ID'; |
|
82 | - |
|
83 | - $this->_hidden_columns = array(); |
|
84 | - } |
|
85 | - |
|
86 | - |
|
87 | - /** |
|
88 | - * This simply sets up the row class for the table rows. |
|
89 | - * Allows for easier overriding of child methods for setting up sorting. |
|
90 | - * |
|
91 | - * @param EE_Transaction $transaction the current item |
|
92 | - * @return string |
|
93 | - * @throws \EE_Error |
|
94 | - */ |
|
95 | - protected function _get_row_class($transaction) |
|
96 | - { |
|
97 | - $class = parent::_get_row_class($transaction); |
|
98 | - // add status class |
|
99 | - $class .= ' ee-status-strip txn-status-' . $transaction->status_ID(); |
|
100 | - if ($this->_has_checkbox_column) { |
|
101 | - $class .= ' has-checkbox-column'; |
|
102 | - } |
|
103 | - return $class; |
|
104 | - } |
|
105 | - |
|
106 | - |
|
107 | - /** |
|
108 | - * _get_table_filters |
|
109 | - * We use this to assemble and return any filters that are associated with this table that help further refine what |
|
110 | - * get's shown in the table. |
|
111 | - * |
|
112 | - * @abstract |
|
113 | - * @access protected |
|
114 | - * @return array |
|
115 | - */ |
|
116 | - protected function _get_table_filters() |
|
117 | - { |
|
118 | - $filters = array(); |
|
119 | - $start_date = isset($this->_req_data['txn-filter-start-date']) |
|
120 | - ? wp_strip_all_tags($this->_req_data['txn-filter-start-date']) |
|
121 | - : date( |
|
122 | - 'm/d/Y', |
|
123 | - strtotime('-10 year') |
|
124 | - ); |
|
125 | - $end_date = isset($this->_req_data['txn-filter-end-date']) |
|
126 | - ? wp_strip_all_tags($this->_req_data['txn-filter-end-date']) |
|
127 | - : date( |
|
128 | - 'm/d/Y', |
|
129 | - current_time('timestamp') |
|
130 | - ); |
|
131 | - ob_start(); |
|
132 | - ?> |
|
18 | + /** |
|
19 | + * @var SessionLifespan $session_lifespan |
|
20 | + */ |
|
21 | + private $session_lifespan; |
|
22 | + |
|
23 | + private $_status; |
|
24 | + |
|
25 | + |
|
26 | + /** |
|
27 | + * @param \Transactions_Admin_Page $admin_page |
|
28 | + * @param SessionLifespan $lifespan |
|
29 | + */ |
|
30 | + public function __construct(\Transactions_Admin_Page $admin_page, SessionLifespan $lifespan) |
|
31 | + { |
|
32 | + parent::__construct($admin_page); |
|
33 | + $this->session_lifespan = $lifespan; |
|
34 | + $this->_status = $this->_admin_page->get_transaction_status_array(); |
|
35 | + } |
|
36 | + |
|
37 | + |
|
38 | + /** |
|
39 | + *_setup_data |
|
40 | + */ |
|
41 | + protected function _setup_data() |
|
42 | + { |
|
43 | + $this->_data = $this->_admin_page->get_transactions($this->_per_page); |
|
44 | + $status = ! empty($this->_req_data['status']) ? $this->_req_data['status'] : 'all'; |
|
45 | + $this->_all_data_count = $this->_admin_page->get_transactions($this->_per_page, true, $status); |
|
46 | + } |
|
47 | + |
|
48 | + |
|
49 | + /** |
|
50 | + *_set_properties |
|
51 | + */ |
|
52 | + protected function _set_properties() |
|
53 | + { |
|
54 | + $this->_wp_list_args = array( |
|
55 | + 'singular' => __('transaction', 'event_espresso'), |
|
56 | + 'plural' => __('transactions', 'event_espresso'), |
|
57 | + 'ajax' => true, |
|
58 | + 'screen' => $this->_admin_page->get_current_screen()->id, |
|
59 | + ); |
|
60 | + $ID_column_name = __('ID', 'event_espresso'); |
|
61 | + $ID_column_name .= ' : <span class="show-on-mobile-view-only" style="float:none">'; |
|
62 | + $ID_column_name .= __('Transaction Date', 'event_espresso'); |
|
63 | + $ID_column_name .= '</span> '; |
|
64 | + $this->_columns = array( |
|
65 | + 'TXN_ID' => $ID_column_name, |
|
66 | + 'TXN_timestamp' => __('Transaction Date', 'event_espresso'), |
|
67 | + 'TXN_total' => __('Total', 'event_espresso'), |
|
68 | + 'TXN_paid' => __('Paid', 'event_espresso'), |
|
69 | + 'ATT_fname' => __('Primary Registrant', 'event_espresso'), |
|
70 | + 'event_name' => __('Event', 'event_espresso'), |
|
71 | + 'actions' => __('Actions', 'event_espresso'), |
|
72 | + ); |
|
73 | + |
|
74 | + $this->_sortable_columns = array( |
|
75 | + 'TXN_ID' => array('TXN_ID' => false), |
|
76 | + 'event_name' => array('event_name' => false), |
|
77 | + 'ATT_fname' => array('ATT_fname' => false), |
|
78 | + 'TXN_timestamp' => array('TXN_timestamp' => true) // true means its already sorted |
|
79 | + ); |
|
80 | + |
|
81 | + $this->_primary_column = 'TXN_ID'; |
|
82 | + |
|
83 | + $this->_hidden_columns = array(); |
|
84 | + } |
|
85 | + |
|
86 | + |
|
87 | + /** |
|
88 | + * This simply sets up the row class for the table rows. |
|
89 | + * Allows for easier overriding of child methods for setting up sorting. |
|
90 | + * |
|
91 | + * @param EE_Transaction $transaction the current item |
|
92 | + * @return string |
|
93 | + * @throws \EE_Error |
|
94 | + */ |
|
95 | + protected function _get_row_class($transaction) |
|
96 | + { |
|
97 | + $class = parent::_get_row_class($transaction); |
|
98 | + // add status class |
|
99 | + $class .= ' ee-status-strip txn-status-' . $transaction->status_ID(); |
|
100 | + if ($this->_has_checkbox_column) { |
|
101 | + $class .= ' has-checkbox-column'; |
|
102 | + } |
|
103 | + return $class; |
|
104 | + } |
|
105 | + |
|
106 | + |
|
107 | + /** |
|
108 | + * _get_table_filters |
|
109 | + * We use this to assemble and return any filters that are associated with this table that help further refine what |
|
110 | + * get's shown in the table. |
|
111 | + * |
|
112 | + * @abstract |
|
113 | + * @access protected |
|
114 | + * @return array |
|
115 | + */ |
|
116 | + protected function _get_table_filters() |
|
117 | + { |
|
118 | + $filters = array(); |
|
119 | + $start_date = isset($this->_req_data['txn-filter-start-date']) |
|
120 | + ? wp_strip_all_tags($this->_req_data['txn-filter-start-date']) |
|
121 | + : date( |
|
122 | + 'm/d/Y', |
|
123 | + strtotime('-10 year') |
|
124 | + ); |
|
125 | + $end_date = isset($this->_req_data['txn-filter-end-date']) |
|
126 | + ? wp_strip_all_tags($this->_req_data['txn-filter-end-date']) |
|
127 | + : date( |
|
128 | + 'm/d/Y', |
|
129 | + current_time('timestamp') |
|
130 | + ); |
|
131 | + ob_start(); |
|
132 | + ?> |
|
133 | 133 | <label for="txn-filter-start-date">Display Transactions from </label> |
134 | 134 | <input id="txn-filter-start-date" class="datepicker" type="text" value="<?php echo $start_date; ?>" |
135 | 135 | name="txn-filter-start-date" size="15"/> |
@@ -137,578 +137,578 @@ discard block |
||
137 | 137 | <input id="txn-filter-end-date" class="datepicker" type="text" value="<?php echo $end_date; ?>" |
138 | 138 | name="txn-filter-end-date" size="15"/> |
139 | 139 | <?php |
140 | - $filters[] = ob_get_contents(); |
|
141 | - ob_end_clean(); |
|
142 | - return $filters; |
|
143 | - } |
|
144 | - |
|
145 | - |
|
146 | - /** |
|
147 | - *_add_view_counts |
|
148 | - */ |
|
149 | - protected function _add_view_counts() |
|
150 | - { |
|
151 | - foreach ($this->_views as $view) { |
|
152 | - $this->_views[ $view['slug'] ]['count'] = $this->_admin_page->get_transactions($this->_per_page, true, $view['slug']); |
|
153 | - } |
|
154 | - } |
|
155 | - |
|
156 | - |
|
157 | - /** |
|
158 | - * column TXN_ID |
|
159 | - * |
|
160 | - * @param \EE_Transaction $transaction |
|
161 | - * @return string |
|
162 | - * @throws \EE_Error |
|
163 | - */ |
|
164 | - public function column_TXN_ID(EE_Transaction $transaction) |
|
165 | - { |
|
166 | - $view_lnk_url = EE_Admin_Page::add_query_args_and_nonce( |
|
167 | - array( |
|
168 | - 'action' => 'view_transaction', |
|
169 | - 'TXN_ID' => $transaction->ID(), |
|
170 | - ), |
|
171 | - TXN_ADMIN_URL |
|
172 | - ); |
|
173 | - $content = '<a href="' . $view_lnk_url . '"' |
|
174 | - . ' title="' . esc_attr__('Go to Transaction Details', 'event_espresso') . '">' |
|
175 | - . $transaction->ID() |
|
176 | - . '</a>'; |
|
177 | - |
|
178 | - // txn timestamp |
|
179 | - $content .= ' <span class="show-on-mobile-view-only">' . $this->_get_txn_timestamp($transaction) . '</span>'; |
|
180 | - return $content; |
|
181 | - } |
|
182 | - |
|
183 | - |
|
184 | - /** |
|
185 | - * @param \EE_Transaction $transaction |
|
186 | - * @return string |
|
187 | - * @throws EE_Error |
|
188 | - * @throws InvalidArgumentException |
|
189 | - * @throws InvalidDataTypeException |
|
190 | - * @throws InvalidInterfaceException |
|
191 | - */ |
|
192 | - protected function _get_txn_timestamp(EE_Transaction $transaction) |
|
193 | - { |
|
194 | - // is TXN less than 2 hours old ? |
|
195 | - if (($transaction->failed() || $transaction->is_abandoned()) |
|
196 | - && $this->session_lifespan->expiration() < $transaction->datetime(false, true) |
|
197 | - ) { |
|
198 | - $timestamp = esc_html__('TXN in progress...', 'event_espresso'); |
|
199 | - } else { |
|
200 | - $timestamp = $transaction->get_i18n_datetime('TXN_timestamp'); |
|
201 | - } |
|
202 | - return $timestamp; |
|
203 | - } |
|
204 | - |
|
205 | - |
|
206 | - /** |
|
207 | - * column_cb |
|
208 | - * |
|
209 | - * @param \EE_Transaction $transaction |
|
210 | - * @return string |
|
211 | - * @throws \EE_Error |
|
212 | - */ |
|
213 | - public function column_cb($transaction) |
|
214 | - { |
|
215 | - return sprintf( |
|
216 | - '<input type="checkbox" name="%1$s[]" value="%2$s" />', |
|
217 | - $this->_wp_list_args['singular'], |
|
218 | - $transaction->ID() |
|
219 | - ); |
|
220 | - } |
|
221 | - |
|
222 | - |
|
223 | - /** |
|
224 | - * column_TXN_timestamp |
|
225 | - * |
|
226 | - * @param \EE_Transaction $transaction |
|
227 | - * @return string |
|
228 | - * @throws \EE_Error |
|
229 | - */ |
|
230 | - public function column_TXN_timestamp(EE_Transaction $transaction) |
|
231 | - { |
|
232 | - $view_lnk_url = EE_Admin_Page::add_query_args_and_nonce( |
|
233 | - array( |
|
234 | - 'action' => 'view_transaction', |
|
235 | - 'TXN_ID' => $transaction->ID(), |
|
236 | - ), |
|
237 | - TXN_ADMIN_URL |
|
238 | - ); |
|
239 | - $txn_date = '<a href="' . $view_lnk_url . '"' |
|
240 | - . ' title="' |
|
241 | - . esc_attr__('View Transaction Details for TXN #', 'event_espresso') . $transaction->ID() . '">' |
|
242 | - . $this->_get_txn_timestamp($transaction) |
|
243 | - . '</a>'; |
|
244 | - // status |
|
245 | - $txn_date .= '<br><span class="ee-status-text-small">' |
|
246 | - . EEH_Template::pretty_status( |
|
247 | - $transaction->status_ID(), |
|
248 | - false, |
|
249 | - 'sentence' |
|
250 | - ) |
|
251 | - . '</span>'; |
|
252 | - return $txn_date; |
|
253 | - } |
|
254 | - |
|
255 | - |
|
256 | - /** |
|
257 | - * column_TXN_total |
|
258 | - * |
|
259 | - * @param \EE_Transaction $transaction |
|
260 | - * @return string |
|
261 | - * @throws \EE_Error |
|
262 | - */ |
|
263 | - public function column_TXN_total(EE_Transaction $transaction) |
|
264 | - { |
|
265 | - if ($transaction->get('TXN_total') > 0) { |
|
266 | - return '<span class="txn-pad-rght">' |
|
267 | - . apply_filters( |
|
268 | - 'FHEE__EE_Admin_Transactions_List_Table__column_TXN_total__TXN_total', |
|
269 | - $transaction->get_pretty('TXN_total'), |
|
270 | - $transaction |
|
271 | - ) |
|
272 | - . '</span>'; |
|
273 | - } else { |
|
274 | - return '<span class="txn-overview-free-event-spn">' . esc_html__('free', 'event_espresso') . '</span>'; |
|
275 | - } |
|
276 | - } |
|
277 | - |
|
278 | - |
|
279 | - /** |
|
280 | - * column_TXN_paid |
|
281 | - * |
|
282 | - * @param \EE_Transaction $transaction |
|
283 | - * @return mixed|string |
|
284 | - * @throws \EE_Error |
|
285 | - */ |
|
286 | - public function column_TXN_paid(EE_Transaction $transaction) |
|
287 | - { |
|
288 | - $transaction_total = $transaction->get('TXN_total'); |
|
289 | - $transaction_paid = $transaction->get('TXN_paid'); |
|
290 | - |
|
291 | - if (\EEH_Money::compare_floats($transaction_total, 0, '>')) { |
|
292 | - // monies owing |
|
293 | - $span_class = 'txn-overview-part-payment-spn'; |
|
294 | - if (\EEH_Money::compare_floats($transaction_paid, $transaction_total, '>=')) { |
|
295 | - // paid in full |
|
296 | - $span_class = 'txn-overview-full-payment-spn'; |
|
297 | - } elseif (\EEH_Money::compare_floats($transaction_paid, 0, '==')) { |
|
298 | - // no payments made |
|
299 | - $span_class = 'txn-overview-no-payment-spn'; |
|
300 | - } |
|
301 | - } else { |
|
302 | - // transaction_total == 0 so this is a free event |
|
303 | - $span_class = 'txn-overview-free-event-spn'; |
|
304 | - } |
|
305 | - |
|
306 | - $payment_method = $transaction->payment_method(); |
|
307 | - $payment_method_name = $payment_method instanceof EE_Payment_Method |
|
308 | - ? $payment_method->admin_name() |
|
309 | - : esc_html__('Unknown', 'event_espresso'); |
|
310 | - |
|
311 | - $content = '<span class="' . $span_class . ' txn-pad-rght">' |
|
312 | - . $transaction->get_pretty('TXN_paid') |
|
313 | - . '</span>'; |
|
314 | - if ($transaction_paid > 0) { |
|
315 | - $content .= '<br><span class="ee-status-text-small">' |
|
316 | - . sprintf( |
|
317 | - esc_html__('...via %s', 'event_espresso'), |
|
318 | - $payment_method_name |
|
319 | - ) |
|
320 | - . '</span>'; |
|
321 | - } |
|
322 | - return $content; |
|
323 | - } |
|
324 | - |
|
325 | - |
|
326 | - /** |
|
327 | - * column_ATT_fname |
|
328 | - * |
|
329 | - * @param \EE_Transaction $transaction |
|
330 | - * @return string |
|
331 | - * @throws EE_Error |
|
332 | - * @throws InvalidArgumentException |
|
333 | - * @throws InvalidDataTypeException |
|
334 | - * @throws InvalidInterfaceException |
|
335 | - */ |
|
336 | - public function column_ATT_fname(EE_Transaction $transaction) |
|
337 | - { |
|
338 | - $primary_reg = $transaction->primary_registration(); |
|
339 | - $attendee = $primary_reg->get_first_related('Attendee'); |
|
340 | - if ($attendee instanceof EE_Attendee) { |
|
341 | - $edit_lnk_url = EE_Admin_Page::add_query_args_and_nonce( |
|
342 | - array( |
|
343 | - 'action' => 'view_registration', |
|
344 | - '_REG_ID' => $primary_reg->ID(), |
|
345 | - ), |
|
346 | - REG_ADMIN_URL |
|
347 | - ); |
|
348 | - $content = EE_Registry::instance()->CAP->current_user_can( |
|
349 | - 'ee_read_registration', |
|
350 | - 'espresso_registrations_view_registration', |
|
351 | - $primary_reg->ID() |
|
352 | - ) |
|
353 | - ? '<a href="' . $edit_lnk_url . '"' |
|
354 | - . ' title="' . esc_attr__('View Registration Details', 'event_espresso') . '">' |
|
355 | - . $attendee->full_name() |
|
356 | - . '</a>' |
|
357 | - : $attendee->full_name(); |
|
358 | - $content .= '<br>' . $attendee->email(); |
|
359 | - return $content; |
|
360 | - } |
|
361 | - return $transaction->failed() || $transaction->is_abandoned() |
|
362 | - ? esc_html__('no contact record.', 'event_espresso') |
|
363 | - : esc_html__( |
|
364 | - 'No contact record, because the transaction was abandoned or the registration process failed.', |
|
365 | - 'event_espresso' |
|
366 | - ); |
|
367 | - } |
|
368 | - |
|
369 | - |
|
370 | - /** |
|
371 | - * column_ATT_email |
|
372 | - * |
|
373 | - * @param \EE_Transaction $transaction |
|
374 | - * @return string |
|
375 | - * @throws \EE_Error |
|
376 | - */ |
|
377 | - public function column_ATT_email(EE_Transaction $transaction) |
|
378 | - { |
|
379 | - $attendee = $transaction->primary_registration()->get_first_related('Attendee'); |
|
380 | - if (! empty($attendee)) { |
|
381 | - return '<a href="mailto:' . $attendee->get('ATT_email') . '">' |
|
382 | - . $attendee->get('ATT_email') |
|
383 | - . '</a>'; |
|
384 | - } else { |
|
385 | - return $transaction->failed() || $transaction->is_abandoned() |
|
386 | - ? esc_html__('no contact record.', 'event_espresso') |
|
387 | - : esc_html__( |
|
388 | - 'No contact record, because the transaction was abandoned or the registration process failed.', |
|
389 | - 'event_espresso' |
|
390 | - ); |
|
391 | - } |
|
392 | - } |
|
393 | - |
|
394 | - |
|
395 | - /** |
|
396 | - * column_event_name |
|
397 | - * |
|
398 | - * @param \EE_Transaction $transaction |
|
399 | - * @return string |
|
400 | - * @throws EE_Error |
|
401 | - * @throws InvalidArgumentException |
|
402 | - * @throws InvalidDataTypeException |
|
403 | - * @throws InvalidInterfaceException |
|
404 | - */ |
|
405 | - public function column_event_name(EE_Transaction $transaction) |
|
406 | - { |
|
407 | - $actions = array(); |
|
408 | - $event = $transaction->primary_registration()->get_first_related('Event'); |
|
409 | - if (! empty($event)) { |
|
410 | - $edit_event_url = EE_Admin_Page::add_query_args_and_nonce( |
|
411 | - array('action' => 'edit', 'post' => $event->ID()), |
|
412 | - EVENTS_ADMIN_URL |
|
413 | - ); |
|
414 | - $event_name = $event->get('EVT_name'); |
|
415 | - |
|
416 | - // filter this view by transactions for this event |
|
417 | - $txn_by_event_lnk = EE_Admin_Page::add_query_args_and_nonce( |
|
418 | - array( |
|
419 | - 'action' => 'default', |
|
420 | - 'EVT_ID' => $event->ID(), |
|
421 | - ) |
|
422 | - ); |
|
423 | - if (empty($this->_req_data['EVT_ID']) |
|
424 | - && EE_Registry::instance()->CAP->current_user_can( |
|
425 | - 'ee_edit_event', |
|
426 | - 'espresso_events_edit', |
|
427 | - $event->ID() |
|
428 | - ) |
|
429 | - ) { |
|
430 | - $actions['filter_by_event'] = '<a href="' . $txn_by_event_lnk . '"' |
|
431 | - . ' title="' . esc_attr__( |
|
432 | - 'Filter transactions by this event', |
|
433 | - 'event_espresso' |
|
434 | - ) . '">' |
|
435 | - . esc_html__('View Transactions for this event', 'event_espresso') |
|
436 | - . '</a>'; |
|
437 | - } |
|
438 | - |
|
439 | - return sprintf( |
|
440 | - '%1$s %2$s', |
|
441 | - EE_Registry::instance()->CAP->current_user_can( |
|
442 | - 'ee_edit_event', |
|
443 | - 'espresso_events_edit', |
|
444 | - $event->ID() |
|
445 | - ) |
|
446 | - ? '<a href="' . $edit_event_url . '"' |
|
447 | - . ' title="' |
|
448 | - . sprintf( |
|
449 | - esc_attr__('Edit Event: %s', 'event_espresso'), |
|
450 | - $event->get('EVT_name') |
|
451 | - ) |
|
452 | - . '">' |
|
453 | - . wp_trim_words( |
|
454 | - $event_name, |
|
455 | - 30, |
|
456 | - '...' |
|
457 | - ) |
|
458 | - . '</a>' |
|
459 | - : wp_trim_words($event_name, 30, '...'), |
|
460 | - $this->row_actions($actions) |
|
461 | - ); |
|
462 | - } else { |
|
463 | - return esc_html__( |
|
464 | - 'The event associated with this transaction via the primary registration cannot be retrieved.', |
|
465 | - 'event_espresso' |
|
466 | - ); |
|
467 | - } |
|
468 | - } |
|
469 | - |
|
470 | - |
|
471 | - /** |
|
472 | - * column_actions |
|
473 | - * |
|
474 | - * @param \EE_Transaction $transaction |
|
475 | - * @return string |
|
476 | - * @throws \EE_Error |
|
477 | - */ |
|
478 | - public function column_actions(EE_Transaction $transaction) |
|
479 | - { |
|
480 | - return $this->_action_string( |
|
481 | - $this->get_transaction_details_link($transaction) |
|
482 | - . $this->get_invoice_link($transaction) |
|
483 | - . $this->get_receipt_link($transaction) |
|
484 | - . $this->get_primary_registration_details_link($transaction) |
|
485 | - . $this->get_send_payment_reminder_trigger_link($transaction) |
|
486 | - . $this->get_payment_overview_link($transaction) |
|
487 | - . $this->get_related_messages_link($transaction), |
|
488 | - $transaction, |
|
489 | - 'ul', |
|
490 | - 'txn-overview-actions-ul' |
|
491 | - ); |
|
492 | - } |
|
493 | - |
|
494 | - |
|
495 | - /** |
|
496 | - * Get the transaction details link. |
|
497 | - * |
|
498 | - * @param EE_Transaction $transaction |
|
499 | - * @return string |
|
500 | - * @throws EE_Error |
|
501 | - */ |
|
502 | - protected function get_transaction_details_link(EE_Transaction $transaction) |
|
503 | - { |
|
504 | - $url = EE_Admin_Page::add_query_args_and_nonce( |
|
505 | - array( |
|
506 | - 'action' => 'view_transaction', |
|
507 | - 'TXN_ID' => $transaction->ID(), |
|
508 | - ), |
|
509 | - TXN_ADMIN_URL |
|
510 | - ); |
|
511 | - return ' |
|
140 | + $filters[] = ob_get_contents(); |
|
141 | + ob_end_clean(); |
|
142 | + return $filters; |
|
143 | + } |
|
144 | + |
|
145 | + |
|
146 | + /** |
|
147 | + *_add_view_counts |
|
148 | + */ |
|
149 | + protected function _add_view_counts() |
|
150 | + { |
|
151 | + foreach ($this->_views as $view) { |
|
152 | + $this->_views[ $view['slug'] ]['count'] = $this->_admin_page->get_transactions($this->_per_page, true, $view['slug']); |
|
153 | + } |
|
154 | + } |
|
155 | + |
|
156 | + |
|
157 | + /** |
|
158 | + * column TXN_ID |
|
159 | + * |
|
160 | + * @param \EE_Transaction $transaction |
|
161 | + * @return string |
|
162 | + * @throws \EE_Error |
|
163 | + */ |
|
164 | + public function column_TXN_ID(EE_Transaction $transaction) |
|
165 | + { |
|
166 | + $view_lnk_url = EE_Admin_Page::add_query_args_and_nonce( |
|
167 | + array( |
|
168 | + 'action' => 'view_transaction', |
|
169 | + 'TXN_ID' => $transaction->ID(), |
|
170 | + ), |
|
171 | + TXN_ADMIN_URL |
|
172 | + ); |
|
173 | + $content = '<a href="' . $view_lnk_url . '"' |
|
174 | + . ' title="' . esc_attr__('Go to Transaction Details', 'event_espresso') . '">' |
|
175 | + . $transaction->ID() |
|
176 | + . '</a>'; |
|
177 | + |
|
178 | + // txn timestamp |
|
179 | + $content .= ' <span class="show-on-mobile-view-only">' . $this->_get_txn_timestamp($transaction) . '</span>'; |
|
180 | + return $content; |
|
181 | + } |
|
182 | + |
|
183 | + |
|
184 | + /** |
|
185 | + * @param \EE_Transaction $transaction |
|
186 | + * @return string |
|
187 | + * @throws EE_Error |
|
188 | + * @throws InvalidArgumentException |
|
189 | + * @throws InvalidDataTypeException |
|
190 | + * @throws InvalidInterfaceException |
|
191 | + */ |
|
192 | + protected function _get_txn_timestamp(EE_Transaction $transaction) |
|
193 | + { |
|
194 | + // is TXN less than 2 hours old ? |
|
195 | + if (($transaction->failed() || $transaction->is_abandoned()) |
|
196 | + && $this->session_lifespan->expiration() < $transaction->datetime(false, true) |
|
197 | + ) { |
|
198 | + $timestamp = esc_html__('TXN in progress...', 'event_espresso'); |
|
199 | + } else { |
|
200 | + $timestamp = $transaction->get_i18n_datetime('TXN_timestamp'); |
|
201 | + } |
|
202 | + return $timestamp; |
|
203 | + } |
|
204 | + |
|
205 | + |
|
206 | + /** |
|
207 | + * column_cb |
|
208 | + * |
|
209 | + * @param \EE_Transaction $transaction |
|
210 | + * @return string |
|
211 | + * @throws \EE_Error |
|
212 | + */ |
|
213 | + public function column_cb($transaction) |
|
214 | + { |
|
215 | + return sprintf( |
|
216 | + '<input type="checkbox" name="%1$s[]" value="%2$s" />', |
|
217 | + $this->_wp_list_args['singular'], |
|
218 | + $transaction->ID() |
|
219 | + ); |
|
220 | + } |
|
221 | + |
|
222 | + |
|
223 | + /** |
|
224 | + * column_TXN_timestamp |
|
225 | + * |
|
226 | + * @param \EE_Transaction $transaction |
|
227 | + * @return string |
|
228 | + * @throws \EE_Error |
|
229 | + */ |
|
230 | + public function column_TXN_timestamp(EE_Transaction $transaction) |
|
231 | + { |
|
232 | + $view_lnk_url = EE_Admin_Page::add_query_args_and_nonce( |
|
233 | + array( |
|
234 | + 'action' => 'view_transaction', |
|
235 | + 'TXN_ID' => $transaction->ID(), |
|
236 | + ), |
|
237 | + TXN_ADMIN_URL |
|
238 | + ); |
|
239 | + $txn_date = '<a href="' . $view_lnk_url . '"' |
|
240 | + . ' title="' |
|
241 | + . esc_attr__('View Transaction Details for TXN #', 'event_espresso') . $transaction->ID() . '">' |
|
242 | + . $this->_get_txn_timestamp($transaction) |
|
243 | + . '</a>'; |
|
244 | + // status |
|
245 | + $txn_date .= '<br><span class="ee-status-text-small">' |
|
246 | + . EEH_Template::pretty_status( |
|
247 | + $transaction->status_ID(), |
|
248 | + false, |
|
249 | + 'sentence' |
|
250 | + ) |
|
251 | + . '</span>'; |
|
252 | + return $txn_date; |
|
253 | + } |
|
254 | + |
|
255 | + |
|
256 | + /** |
|
257 | + * column_TXN_total |
|
258 | + * |
|
259 | + * @param \EE_Transaction $transaction |
|
260 | + * @return string |
|
261 | + * @throws \EE_Error |
|
262 | + */ |
|
263 | + public function column_TXN_total(EE_Transaction $transaction) |
|
264 | + { |
|
265 | + if ($transaction->get('TXN_total') > 0) { |
|
266 | + return '<span class="txn-pad-rght">' |
|
267 | + . apply_filters( |
|
268 | + 'FHEE__EE_Admin_Transactions_List_Table__column_TXN_total__TXN_total', |
|
269 | + $transaction->get_pretty('TXN_total'), |
|
270 | + $transaction |
|
271 | + ) |
|
272 | + . '</span>'; |
|
273 | + } else { |
|
274 | + return '<span class="txn-overview-free-event-spn">' . esc_html__('free', 'event_espresso') . '</span>'; |
|
275 | + } |
|
276 | + } |
|
277 | + |
|
278 | + |
|
279 | + /** |
|
280 | + * column_TXN_paid |
|
281 | + * |
|
282 | + * @param \EE_Transaction $transaction |
|
283 | + * @return mixed|string |
|
284 | + * @throws \EE_Error |
|
285 | + */ |
|
286 | + public function column_TXN_paid(EE_Transaction $transaction) |
|
287 | + { |
|
288 | + $transaction_total = $transaction->get('TXN_total'); |
|
289 | + $transaction_paid = $transaction->get('TXN_paid'); |
|
290 | + |
|
291 | + if (\EEH_Money::compare_floats($transaction_total, 0, '>')) { |
|
292 | + // monies owing |
|
293 | + $span_class = 'txn-overview-part-payment-spn'; |
|
294 | + if (\EEH_Money::compare_floats($transaction_paid, $transaction_total, '>=')) { |
|
295 | + // paid in full |
|
296 | + $span_class = 'txn-overview-full-payment-spn'; |
|
297 | + } elseif (\EEH_Money::compare_floats($transaction_paid, 0, '==')) { |
|
298 | + // no payments made |
|
299 | + $span_class = 'txn-overview-no-payment-spn'; |
|
300 | + } |
|
301 | + } else { |
|
302 | + // transaction_total == 0 so this is a free event |
|
303 | + $span_class = 'txn-overview-free-event-spn'; |
|
304 | + } |
|
305 | + |
|
306 | + $payment_method = $transaction->payment_method(); |
|
307 | + $payment_method_name = $payment_method instanceof EE_Payment_Method |
|
308 | + ? $payment_method->admin_name() |
|
309 | + : esc_html__('Unknown', 'event_espresso'); |
|
310 | + |
|
311 | + $content = '<span class="' . $span_class . ' txn-pad-rght">' |
|
312 | + . $transaction->get_pretty('TXN_paid') |
|
313 | + . '</span>'; |
|
314 | + if ($transaction_paid > 0) { |
|
315 | + $content .= '<br><span class="ee-status-text-small">' |
|
316 | + . sprintf( |
|
317 | + esc_html__('...via %s', 'event_espresso'), |
|
318 | + $payment_method_name |
|
319 | + ) |
|
320 | + . '</span>'; |
|
321 | + } |
|
322 | + return $content; |
|
323 | + } |
|
324 | + |
|
325 | + |
|
326 | + /** |
|
327 | + * column_ATT_fname |
|
328 | + * |
|
329 | + * @param \EE_Transaction $transaction |
|
330 | + * @return string |
|
331 | + * @throws EE_Error |
|
332 | + * @throws InvalidArgumentException |
|
333 | + * @throws InvalidDataTypeException |
|
334 | + * @throws InvalidInterfaceException |
|
335 | + */ |
|
336 | + public function column_ATT_fname(EE_Transaction $transaction) |
|
337 | + { |
|
338 | + $primary_reg = $transaction->primary_registration(); |
|
339 | + $attendee = $primary_reg->get_first_related('Attendee'); |
|
340 | + if ($attendee instanceof EE_Attendee) { |
|
341 | + $edit_lnk_url = EE_Admin_Page::add_query_args_and_nonce( |
|
342 | + array( |
|
343 | + 'action' => 'view_registration', |
|
344 | + '_REG_ID' => $primary_reg->ID(), |
|
345 | + ), |
|
346 | + REG_ADMIN_URL |
|
347 | + ); |
|
348 | + $content = EE_Registry::instance()->CAP->current_user_can( |
|
349 | + 'ee_read_registration', |
|
350 | + 'espresso_registrations_view_registration', |
|
351 | + $primary_reg->ID() |
|
352 | + ) |
|
353 | + ? '<a href="' . $edit_lnk_url . '"' |
|
354 | + . ' title="' . esc_attr__('View Registration Details', 'event_espresso') . '">' |
|
355 | + . $attendee->full_name() |
|
356 | + . '</a>' |
|
357 | + : $attendee->full_name(); |
|
358 | + $content .= '<br>' . $attendee->email(); |
|
359 | + return $content; |
|
360 | + } |
|
361 | + return $transaction->failed() || $transaction->is_abandoned() |
|
362 | + ? esc_html__('no contact record.', 'event_espresso') |
|
363 | + : esc_html__( |
|
364 | + 'No contact record, because the transaction was abandoned or the registration process failed.', |
|
365 | + 'event_espresso' |
|
366 | + ); |
|
367 | + } |
|
368 | + |
|
369 | + |
|
370 | + /** |
|
371 | + * column_ATT_email |
|
372 | + * |
|
373 | + * @param \EE_Transaction $transaction |
|
374 | + * @return string |
|
375 | + * @throws \EE_Error |
|
376 | + */ |
|
377 | + public function column_ATT_email(EE_Transaction $transaction) |
|
378 | + { |
|
379 | + $attendee = $transaction->primary_registration()->get_first_related('Attendee'); |
|
380 | + if (! empty($attendee)) { |
|
381 | + return '<a href="mailto:' . $attendee->get('ATT_email') . '">' |
|
382 | + . $attendee->get('ATT_email') |
|
383 | + . '</a>'; |
|
384 | + } else { |
|
385 | + return $transaction->failed() || $transaction->is_abandoned() |
|
386 | + ? esc_html__('no contact record.', 'event_espresso') |
|
387 | + : esc_html__( |
|
388 | + 'No contact record, because the transaction was abandoned or the registration process failed.', |
|
389 | + 'event_espresso' |
|
390 | + ); |
|
391 | + } |
|
392 | + } |
|
393 | + |
|
394 | + |
|
395 | + /** |
|
396 | + * column_event_name |
|
397 | + * |
|
398 | + * @param \EE_Transaction $transaction |
|
399 | + * @return string |
|
400 | + * @throws EE_Error |
|
401 | + * @throws InvalidArgumentException |
|
402 | + * @throws InvalidDataTypeException |
|
403 | + * @throws InvalidInterfaceException |
|
404 | + */ |
|
405 | + public function column_event_name(EE_Transaction $transaction) |
|
406 | + { |
|
407 | + $actions = array(); |
|
408 | + $event = $transaction->primary_registration()->get_first_related('Event'); |
|
409 | + if (! empty($event)) { |
|
410 | + $edit_event_url = EE_Admin_Page::add_query_args_and_nonce( |
|
411 | + array('action' => 'edit', 'post' => $event->ID()), |
|
412 | + EVENTS_ADMIN_URL |
|
413 | + ); |
|
414 | + $event_name = $event->get('EVT_name'); |
|
415 | + |
|
416 | + // filter this view by transactions for this event |
|
417 | + $txn_by_event_lnk = EE_Admin_Page::add_query_args_and_nonce( |
|
418 | + array( |
|
419 | + 'action' => 'default', |
|
420 | + 'EVT_ID' => $event->ID(), |
|
421 | + ) |
|
422 | + ); |
|
423 | + if (empty($this->_req_data['EVT_ID']) |
|
424 | + && EE_Registry::instance()->CAP->current_user_can( |
|
425 | + 'ee_edit_event', |
|
426 | + 'espresso_events_edit', |
|
427 | + $event->ID() |
|
428 | + ) |
|
429 | + ) { |
|
430 | + $actions['filter_by_event'] = '<a href="' . $txn_by_event_lnk . '"' |
|
431 | + . ' title="' . esc_attr__( |
|
432 | + 'Filter transactions by this event', |
|
433 | + 'event_espresso' |
|
434 | + ) . '">' |
|
435 | + . esc_html__('View Transactions for this event', 'event_espresso') |
|
436 | + . '</a>'; |
|
437 | + } |
|
438 | + |
|
439 | + return sprintf( |
|
440 | + '%1$s %2$s', |
|
441 | + EE_Registry::instance()->CAP->current_user_can( |
|
442 | + 'ee_edit_event', |
|
443 | + 'espresso_events_edit', |
|
444 | + $event->ID() |
|
445 | + ) |
|
446 | + ? '<a href="' . $edit_event_url . '"' |
|
447 | + . ' title="' |
|
448 | + . sprintf( |
|
449 | + esc_attr__('Edit Event: %s', 'event_espresso'), |
|
450 | + $event->get('EVT_name') |
|
451 | + ) |
|
452 | + . '">' |
|
453 | + . wp_trim_words( |
|
454 | + $event_name, |
|
455 | + 30, |
|
456 | + '...' |
|
457 | + ) |
|
458 | + . '</a>' |
|
459 | + : wp_trim_words($event_name, 30, '...'), |
|
460 | + $this->row_actions($actions) |
|
461 | + ); |
|
462 | + } else { |
|
463 | + return esc_html__( |
|
464 | + 'The event associated with this transaction via the primary registration cannot be retrieved.', |
|
465 | + 'event_espresso' |
|
466 | + ); |
|
467 | + } |
|
468 | + } |
|
469 | + |
|
470 | + |
|
471 | + /** |
|
472 | + * column_actions |
|
473 | + * |
|
474 | + * @param \EE_Transaction $transaction |
|
475 | + * @return string |
|
476 | + * @throws \EE_Error |
|
477 | + */ |
|
478 | + public function column_actions(EE_Transaction $transaction) |
|
479 | + { |
|
480 | + return $this->_action_string( |
|
481 | + $this->get_transaction_details_link($transaction) |
|
482 | + . $this->get_invoice_link($transaction) |
|
483 | + . $this->get_receipt_link($transaction) |
|
484 | + . $this->get_primary_registration_details_link($transaction) |
|
485 | + . $this->get_send_payment_reminder_trigger_link($transaction) |
|
486 | + . $this->get_payment_overview_link($transaction) |
|
487 | + . $this->get_related_messages_link($transaction), |
|
488 | + $transaction, |
|
489 | + 'ul', |
|
490 | + 'txn-overview-actions-ul' |
|
491 | + ); |
|
492 | + } |
|
493 | + |
|
494 | + |
|
495 | + /** |
|
496 | + * Get the transaction details link. |
|
497 | + * |
|
498 | + * @param EE_Transaction $transaction |
|
499 | + * @return string |
|
500 | + * @throws EE_Error |
|
501 | + */ |
|
502 | + protected function get_transaction_details_link(EE_Transaction $transaction) |
|
503 | + { |
|
504 | + $url = EE_Admin_Page::add_query_args_and_nonce( |
|
505 | + array( |
|
506 | + 'action' => 'view_transaction', |
|
507 | + 'TXN_ID' => $transaction->ID(), |
|
508 | + ), |
|
509 | + TXN_ADMIN_URL |
|
510 | + ); |
|
511 | + return ' |
|
512 | 512 | <li> |
513 | 513 | <a href="' . $url . '"' |
514 | - . ' title="' . esc_attr__('View Transaction Details', 'event_espresso') . '" class="tiny-text"> |
|
514 | + . ' title="' . esc_attr__('View Transaction Details', 'event_espresso') . '" class="tiny-text"> |
|
515 | 515 | <span class="dashicons dashicons-cart"></span> |
516 | 516 | </a> |
517 | 517 | </li>'; |
518 | - } |
|
519 | - |
|
520 | - |
|
521 | - /** |
|
522 | - * Get the invoice link for the given registration. |
|
523 | - * |
|
524 | - * @param EE_Transaction $transaction |
|
525 | - * @return string |
|
526 | - * @throws EE_Error |
|
527 | - */ |
|
528 | - protected function get_invoice_link(EE_Transaction $transaction) |
|
529 | - { |
|
530 | - $registration = $transaction->primary_registration(); |
|
531 | - if ($registration instanceof EE_Registration) { |
|
532 | - $url = $registration->invoice_url(); |
|
533 | - // only show invoice link if message type is active. |
|
534 | - if ($registration->attendee() instanceof EE_Attendee |
|
535 | - && EEH_MSG_Template::is_mt_active('invoice') |
|
536 | - ) { |
|
537 | - return ' |
|
518 | + } |
|
519 | + |
|
520 | + |
|
521 | + /** |
|
522 | + * Get the invoice link for the given registration. |
|
523 | + * |
|
524 | + * @param EE_Transaction $transaction |
|
525 | + * @return string |
|
526 | + * @throws EE_Error |
|
527 | + */ |
|
528 | + protected function get_invoice_link(EE_Transaction $transaction) |
|
529 | + { |
|
530 | + $registration = $transaction->primary_registration(); |
|
531 | + if ($registration instanceof EE_Registration) { |
|
532 | + $url = $registration->invoice_url(); |
|
533 | + // only show invoice link if message type is active. |
|
534 | + if ($registration->attendee() instanceof EE_Attendee |
|
535 | + && EEH_MSG_Template::is_mt_active('invoice') |
|
536 | + ) { |
|
537 | + return ' |
|
538 | 538 | <li> |
539 | 539 | <a title="' . esc_attr__('View Transaction Invoice', 'event_espresso') . '"' |
540 | - . ' target="_blank" href="' . $url . '" class="tiny-text"> |
|
540 | + . ' target="_blank" href="' . $url . '" class="tiny-text"> |
|
541 | 541 | <span class="dashicons dashicons-media-spreadsheet ee-icon-size-18"></span> |
542 | 542 | </a> |
543 | 543 | </li>'; |
544 | - } |
|
545 | - } |
|
546 | - return ''; |
|
547 | - } |
|
548 | - |
|
549 | - |
|
550 | - /** |
|
551 | - * Get the receipt link for the transaction. |
|
552 | - * |
|
553 | - * @param EE_Transaction $transaction |
|
554 | - * @return string |
|
555 | - * @throws EE_Error |
|
556 | - */ |
|
557 | - protected function get_receipt_link(EE_Transaction $transaction) |
|
558 | - { |
|
559 | - $registration = $transaction->primary_registration(); |
|
560 | - if ($registration instanceof EE_Registration) { |
|
561 | - $url = $registration->receipt_url(); |
|
562 | - // only show receipt link if message type is active. |
|
563 | - if ($registration->attendee() instanceof EE_Attendee |
|
564 | - && EEH_MSG_Template::is_mt_active('receipt')) { |
|
565 | - return ' |
|
544 | + } |
|
545 | + } |
|
546 | + return ''; |
|
547 | + } |
|
548 | + |
|
549 | + |
|
550 | + /** |
|
551 | + * Get the receipt link for the transaction. |
|
552 | + * |
|
553 | + * @param EE_Transaction $transaction |
|
554 | + * @return string |
|
555 | + * @throws EE_Error |
|
556 | + */ |
|
557 | + protected function get_receipt_link(EE_Transaction $transaction) |
|
558 | + { |
|
559 | + $registration = $transaction->primary_registration(); |
|
560 | + if ($registration instanceof EE_Registration) { |
|
561 | + $url = $registration->receipt_url(); |
|
562 | + // only show receipt link if message type is active. |
|
563 | + if ($registration->attendee() instanceof EE_Attendee |
|
564 | + && EEH_MSG_Template::is_mt_active('receipt')) { |
|
565 | + return ' |
|
566 | 566 | <li> |
567 | 567 | <a title="' . esc_attr__('View Transaction Receipt', 'event_espresso') . '"' |
568 | - . ' target="_blank" href="' . $url . '" class="tiny-text"> |
|
568 | + . ' target="_blank" href="' . $url . '" class="tiny-text"> |
|
569 | 569 | <span class="dashicons dashicons-media-default ee-icon-size-18"></span> |
570 | 570 | </a> |
571 | 571 | </li>'; |
572 | - } |
|
573 | - } |
|
574 | - return ''; |
|
575 | - } |
|
576 | - |
|
577 | - |
|
578 | - /** |
|
579 | - * Get the link to view the details for the primary registration. |
|
580 | - * |
|
581 | - * @param EE_Transaction $transaction |
|
582 | - * @return string |
|
583 | - * @throws EE_Error |
|
584 | - * @throws InvalidArgumentException |
|
585 | - * @throws InvalidDataTypeException |
|
586 | - * @throws InvalidInterfaceException |
|
587 | - */ |
|
588 | - protected function get_primary_registration_details_link(EE_Transaction $transaction) |
|
589 | - { |
|
590 | - $registration = $transaction->primary_registration(); |
|
591 | - if ($registration instanceof EE_Registration) { |
|
592 | - $url = EE_Admin_Page::add_query_args_and_nonce( |
|
593 | - array( |
|
594 | - 'action' => 'view_registration', |
|
595 | - '_REG_ID' => $registration->ID(), |
|
596 | - ), |
|
597 | - REG_ADMIN_URL |
|
598 | - ); |
|
599 | - return EE_Registry::instance()->CAP->current_user_can( |
|
600 | - 'ee_read_registration', |
|
601 | - 'espresso_registrations_view_registration', |
|
602 | - $registration->ID() |
|
603 | - ) |
|
604 | - ? ' |
|
572 | + } |
|
573 | + } |
|
574 | + return ''; |
|
575 | + } |
|
576 | + |
|
577 | + |
|
578 | + /** |
|
579 | + * Get the link to view the details for the primary registration. |
|
580 | + * |
|
581 | + * @param EE_Transaction $transaction |
|
582 | + * @return string |
|
583 | + * @throws EE_Error |
|
584 | + * @throws InvalidArgumentException |
|
585 | + * @throws InvalidDataTypeException |
|
586 | + * @throws InvalidInterfaceException |
|
587 | + */ |
|
588 | + protected function get_primary_registration_details_link(EE_Transaction $transaction) |
|
589 | + { |
|
590 | + $registration = $transaction->primary_registration(); |
|
591 | + if ($registration instanceof EE_Registration) { |
|
592 | + $url = EE_Admin_Page::add_query_args_and_nonce( |
|
593 | + array( |
|
594 | + 'action' => 'view_registration', |
|
595 | + '_REG_ID' => $registration->ID(), |
|
596 | + ), |
|
597 | + REG_ADMIN_URL |
|
598 | + ); |
|
599 | + return EE_Registry::instance()->CAP->current_user_can( |
|
600 | + 'ee_read_registration', |
|
601 | + 'espresso_registrations_view_registration', |
|
602 | + $registration->ID() |
|
603 | + ) |
|
604 | + ? ' |
|
605 | 605 | <li> |
606 | 606 | <a href="' . $url . '"' |
607 | - . ' title="' . esc_attr__('View Registration Details', 'event_espresso') . '" class="tiny-text"> |
|
607 | + . ' title="' . esc_attr__('View Registration Details', 'event_espresso') . '" class="tiny-text"> |
|
608 | 608 | <span class="dashicons dashicons-clipboard"></span> |
609 | 609 | </a> |
610 | 610 | </li>' |
611 | - : ''; |
|
612 | - } |
|
613 | - return ''; |
|
614 | - } |
|
615 | - |
|
616 | - |
|
617 | - /** |
|
618 | - * Get send payment reminder trigger link |
|
619 | - * |
|
620 | - * @param EE_Transaction $transaction |
|
621 | - * @return string |
|
622 | - * @throws EE_Error |
|
623 | - * @throws InvalidArgumentException |
|
624 | - * @throws InvalidDataTypeException |
|
625 | - * @throws InvalidInterfaceException |
|
626 | - */ |
|
627 | - protected function get_send_payment_reminder_trigger_link(EE_Transaction $transaction) |
|
628 | - { |
|
629 | - $registration = $transaction->primary_registration(); |
|
630 | - if ($registration instanceof EE_Registration |
|
631 | - && $registration->attendee() instanceof EE_Attendee |
|
632 | - && EEH_MSG_Template::is_mt_active('payment_reminder') |
|
633 | - && ! in_array( |
|
634 | - $transaction->status_ID(), |
|
635 | - array(EEM_Transaction::complete_status_code, EEM_Transaction::overpaid_status_code), |
|
636 | - true |
|
637 | - ) |
|
638 | - && EE_Registry::instance()->CAP->current_user_can( |
|
639 | - 'ee_send_message', |
|
640 | - 'espresso_transactions_send_payment_reminder' |
|
641 | - ) |
|
642 | - ) { |
|
643 | - $url = EE_Admin_Page::add_query_args_and_nonce( |
|
644 | - array( |
|
645 | - 'action' => 'send_payment_reminder', |
|
646 | - 'TXN_ID' => $transaction->ID(), |
|
647 | - ), |
|
648 | - TXN_ADMIN_URL |
|
649 | - ); |
|
650 | - return ' |
|
611 | + : ''; |
|
612 | + } |
|
613 | + return ''; |
|
614 | + } |
|
615 | + |
|
616 | + |
|
617 | + /** |
|
618 | + * Get send payment reminder trigger link |
|
619 | + * |
|
620 | + * @param EE_Transaction $transaction |
|
621 | + * @return string |
|
622 | + * @throws EE_Error |
|
623 | + * @throws InvalidArgumentException |
|
624 | + * @throws InvalidDataTypeException |
|
625 | + * @throws InvalidInterfaceException |
|
626 | + */ |
|
627 | + protected function get_send_payment_reminder_trigger_link(EE_Transaction $transaction) |
|
628 | + { |
|
629 | + $registration = $transaction->primary_registration(); |
|
630 | + if ($registration instanceof EE_Registration |
|
631 | + && $registration->attendee() instanceof EE_Attendee |
|
632 | + && EEH_MSG_Template::is_mt_active('payment_reminder') |
|
633 | + && ! in_array( |
|
634 | + $transaction->status_ID(), |
|
635 | + array(EEM_Transaction::complete_status_code, EEM_Transaction::overpaid_status_code), |
|
636 | + true |
|
637 | + ) |
|
638 | + && EE_Registry::instance()->CAP->current_user_can( |
|
639 | + 'ee_send_message', |
|
640 | + 'espresso_transactions_send_payment_reminder' |
|
641 | + ) |
|
642 | + ) { |
|
643 | + $url = EE_Admin_Page::add_query_args_and_nonce( |
|
644 | + array( |
|
645 | + 'action' => 'send_payment_reminder', |
|
646 | + 'TXN_ID' => $transaction->ID(), |
|
647 | + ), |
|
648 | + TXN_ADMIN_URL |
|
649 | + ); |
|
650 | + return ' |
|
651 | 651 | <li> |
652 | 652 | <a href="' . $url . '"' |
653 | - . ' title="' . esc_attr__('Send Payment Reminder', 'event_espresso') . '" class="tiny-text"> |
|
653 | + . ' title="' . esc_attr__('Send Payment Reminder', 'event_espresso') . '" class="tiny-text"> |
|
654 | 654 | <span class="dashicons dashicons-email-alt"></span> |
655 | 655 | </a> |
656 | 656 | </li>'; |
657 | - } |
|
658 | - return ''; |
|
659 | - } |
|
660 | - |
|
661 | - |
|
662 | - /** |
|
663 | - * Get link to filtered view in the message activity list table of messages for this transaction. |
|
664 | - * |
|
665 | - * @param EE_Transaction $transaction |
|
666 | - * @return string |
|
667 | - * @throws EE_Error |
|
668 | - * @throws InvalidArgumentException |
|
669 | - * @throws InvalidDataTypeException |
|
670 | - * @throws InvalidInterfaceException |
|
671 | - */ |
|
672 | - protected function get_related_messages_link(EE_Transaction $transaction) |
|
673 | - { |
|
674 | - $url = EEH_MSG_Template::get_message_action_link( |
|
675 | - 'see_notifications_for', |
|
676 | - null, |
|
677 | - array('TXN_ID' => $transaction->ID()) |
|
678 | - ); |
|
679 | - return EE_Registry::instance()->CAP->current_user_can( |
|
680 | - 'ee_read_global_messages', |
|
681 | - 'view_filtered_messages' |
|
682 | - ) |
|
683 | - ? '<li>' . $url . '</li>' |
|
684 | - : ''; |
|
685 | - } |
|
686 | - |
|
687 | - |
|
688 | - /** |
|
689 | - * Return the link to make a payment on the frontend |
|
690 | - * |
|
691 | - * @param EE_Transaction $transaction |
|
692 | - * @return string |
|
693 | - * @throws EE_Error |
|
694 | - */ |
|
695 | - protected function get_payment_overview_link(EE_Transaction $transaction) |
|
696 | - { |
|
697 | - $registration = $transaction->primary_registration(); |
|
698 | - if ($registration instanceof EE_Registration |
|
699 | - && $transaction->status_ID() !== EEM_Transaction::complete_status_code |
|
700 | - && $registration->owes_monies_and_can_pay() |
|
701 | - ) { |
|
702 | - return ' |
|
657 | + } |
|
658 | + return ''; |
|
659 | + } |
|
660 | + |
|
661 | + |
|
662 | + /** |
|
663 | + * Get link to filtered view in the message activity list table of messages for this transaction. |
|
664 | + * |
|
665 | + * @param EE_Transaction $transaction |
|
666 | + * @return string |
|
667 | + * @throws EE_Error |
|
668 | + * @throws InvalidArgumentException |
|
669 | + * @throws InvalidDataTypeException |
|
670 | + * @throws InvalidInterfaceException |
|
671 | + */ |
|
672 | + protected function get_related_messages_link(EE_Transaction $transaction) |
|
673 | + { |
|
674 | + $url = EEH_MSG_Template::get_message_action_link( |
|
675 | + 'see_notifications_for', |
|
676 | + null, |
|
677 | + array('TXN_ID' => $transaction->ID()) |
|
678 | + ); |
|
679 | + return EE_Registry::instance()->CAP->current_user_can( |
|
680 | + 'ee_read_global_messages', |
|
681 | + 'view_filtered_messages' |
|
682 | + ) |
|
683 | + ? '<li>' . $url . '</li>' |
|
684 | + : ''; |
|
685 | + } |
|
686 | + |
|
687 | + |
|
688 | + /** |
|
689 | + * Return the link to make a payment on the frontend |
|
690 | + * |
|
691 | + * @param EE_Transaction $transaction |
|
692 | + * @return string |
|
693 | + * @throws EE_Error |
|
694 | + */ |
|
695 | + protected function get_payment_overview_link(EE_Transaction $transaction) |
|
696 | + { |
|
697 | + $registration = $transaction->primary_registration(); |
|
698 | + if ($registration instanceof EE_Registration |
|
699 | + && $transaction->status_ID() !== EEM_Transaction::complete_status_code |
|
700 | + && $registration->owes_monies_and_can_pay() |
|
701 | + ) { |
|
702 | + return ' |
|
703 | 703 | <li> |
704 | 704 | <a title="' . esc_attr__('Make Payment from the Frontend.', 'event_espresso') . '"' |
705 | - . ' target="_blank" href="' . $registration->payment_overview_url(true) . '"' |
|
706 | - . ' class="tiny-text"> |
|
705 | + . ' target="_blank" href="' . $registration->payment_overview_url(true) . '"' |
|
706 | + . ' class="tiny-text"> |
|
707 | 707 | <span class="dashicons dashicons-money ee-icon-size-18"></span> |
708 | 708 | </a> |
709 | 709 | </li> |
710 | 710 | '; |
711 | - } |
|
712 | - return ''; |
|
713 | - } |
|
711 | + } |
|
712 | + return ''; |
|
713 | + } |
|
714 | 714 | } |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | { |
97 | 97 | $class = parent::_get_row_class($transaction); |
98 | 98 | // add status class |
99 | - $class .= ' ee-status-strip txn-status-' . $transaction->status_ID(); |
|
99 | + $class .= ' ee-status-strip txn-status-'.$transaction->status_ID(); |
|
100 | 100 | if ($this->_has_checkbox_column) { |
101 | 101 | $class .= ' has-checkbox-column'; |
102 | 102 | } |
@@ -149,7 +149,7 @@ discard block |
||
149 | 149 | protected function _add_view_counts() |
150 | 150 | { |
151 | 151 | foreach ($this->_views as $view) { |
152 | - $this->_views[ $view['slug'] ]['count'] = $this->_admin_page->get_transactions($this->_per_page, true, $view['slug']); |
|
152 | + $this->_views[$view['slug']]['count'] = $this->_admin_page->get_transactions($this->_per_page, true, $view['slug']); |
|
153 | 153 | } |
154 | 154 | } |
155 | 155 | |
@@ -170,13 +170,13 @@ discard block |
||
170 | 170 | ), |
171 | 171 | TXN_ADMIN_URL |
172 | 172 | ); |
173 | - $content = '<a href="' . $view_lnk_url . '"' |
|
174 | - . ' title="' . esc_attr__('Go to Transaction Details', 'event_espresso') . '">' |
|
173 | + $content = '<a href="'.$view_lnk_url.'"' |
|
174 | + . ' title="'.esc_attr__('Go to Transaction Details', 'event_espresso').'">' |
|
175 | 175 | . $transaction->ID() |
176 | 176 | . '</a>'; |
177 | 177 | |
178 | 178 | // txn timestamp |
179 | - $content .= ' <span class="show-on-mobile-view-only">' . $this->_get_txn_timestamp($transaction) . '</span>'; |
|
179 | + $content .= ' <span class="show-on-mobile-view-only">'.$this->_get_txn_timestamp($transaction).'</span>'; |
|
180 | 180 | return $content; |
181 | 181 | } |
182 | 182 | |
@@ -236,9 +236,9 @@ discard block |
||
236 | 236 | ), |
237 | 237 | TXN_ADMIN_URL |
238 | 238 | ); |
239 | - $txn_date = '<a href="' . $view_lnk_url . '"' |
|
239 | + $txn_date = '<a href="'.$view_lnk_url.'"' |
|
240 | 240 | . ' title="' |
241 | - . esc_attr__('View Transaction Details for TXN #', 'event_espresso') . $transaction->ID() . '">' |
|
241 | + . esc_attr__('View Transaction Details for TXN #', 'event_espresso').$transaction->ID().'">' |
|
242 | 242 | . $this->_get_txn_timestamp($transaction) |
243 | 243 | . '</a>'; |
244 | 244 | // status |
@@ -271,7 +271,7 @@ discard block |
||
271 | 271 | ) |
272 | 272 | . '</span>'; |
273 | 273 | } else { |
274 | - return '<span class="txn-overview-free-event-spn">' . esc_html__('free', 'event_espresso') . '</span>'; |
|
274 | + return '<span class="txn-overview-free-event-spn">'.esc_html__('free', 'event_espresso').'</span>'; |
|
275 | 275 | } |
276 | 276 | } |
277 | 277 | |
@@ -308,7 +308,7 @@ discard block |
||
308 | 308 | ? $payment_method->admin_name() |
309 | 309 | : esc_html__('Unknown', 'event_espresso'); |
310 | 310 | |
311 | - $content = '<span class="' . $span_class . ' txn-pad-rght">' |
|
311 | + $content = '<span class="'.$span_class.' txn-pad-rght">' |
|
312 | 312 | . $transaction->get_pretty('TXN_paid') |
313 | 313 | . '</span>'; |
314 | 314 | if ($transaction_paid > 0) { |
@@ -350,12 +350,12 @@ discard block |
||
350 | 350 | 'espresso_registrations_view_registration', |
351 | 351 | $primary_reg->ID() |
352 | 352 | ) |
353 | - ? '<a href="' . $edit_lnk_url . '"' |
|
354 | - . ' title="' . esc_attr__('View Registration Details', 'event_espresso') . '">' |
|
353 | + ? '<a href="'.$edit_lnk_url.'"' |
|
354 | + . ' title="'.esc_attr__('View Registration Details', 'event_espresso').'">' |
|
355 | 355 | . $attendee->full_name() |
356 | 356 | . '</a>' |
357 | 357 | : $attendee->full_name(); |
358 | - $content .= '<br>' . $attendee->email(); |
|
358 | + $content .= '<br>'.$attendee->email(); |
|
359 | 359 | return $content; |
360 | 360 | } |
361 | 361 | return $transaction->failed() || $transaction->is_abandoned() |
@@ -377,8 +377,8 @@ discard block |
||
377 | 377 | public function column_ATT_email(EE_Transaction $transaction) |
378 | 378 | { |
379 | 379 | $attendee = $transaction->primary_registration()->get_first_related('Attendee'); |
380 | - if (! empty($attendee)) { |
|
381 | - return '<a href="mailto:' . $attendee->get('ATT_email') . '">' |
|
380 | + if ( ! empty($attendee)) { |
|
381 | + return '<a href="mailto:'.$attendee->get('ATT_email').'">' |
|
382 | 382 | . $attendee->get('ATT_email') |
383 | 383 | . '</a>'; |
384 | 384 | } else { |
@@ -406,7 +406,7 @@ discard block |
||
406 | 406 | { |
407 | 407 | $actions = array(); |
408 | 408 | $event = $transaction->primary_registration()->get_first_related('Event'); |
409 | - if (! empty($event)) { |
|
409 | + if ( ! empty($event)) { |
|
410 | 410 | $edit_event_url = EE_Admin_Page::add_query_args_and_nonce( |
411 | 411 | array('action' => 'edit', 'post' => $event->ID()), |
412 | 412 | EVENTS_ADMIN_URL |
@@ -427,11 +427,11 @@ discard block |
||
427 | 427 | $event->ID() |
428 | 428 | ) |
429 | 429 | ) { |
430 | - $actions['filter_by_event'] = '<a href="' . $txn_by_event_lnk . '"' |
|
431 | - . ' title="' . esc_attr__( |
|
430 | + $actions['filter_by_event'] = '<a href="'.$txn_by_event_lnk.'"' |
|
431 | + . ' title="'.esc_attr__( |
|
432 | 432 | 'Filter transactions by this event', |
433 | 433 | 'event_espresso' |
434 | - ) . '">' |
|
434 | + ).'">' |
|
435 | 435 | . esc_html__('View Transactions for this event', 'event_espresso') |
436 | 436 | . '</a>'; |
437 | 437 | } |
@@ -443,7 +443,7 @@ discard block |
||
443 | 443 | 'espresso_events_edit', |
444 | 444 | $event->ID() |
445 | 445 | ) |
446 | - ? '<a href="' . $edit_event_url . '"' |
|
446 | + ? '<a href="'.$edit_event_url.'"' |
|
447 | 447 | . ' title="' |
448 | 448 | . sprintf( |
449 | 449 | esc_attr__('Edit Event: %s', 'event_espresso'), |
@@ -510,8 +510,8 @@ discard block |
||
510 | 510 | ); |
511 | 511 | return ' |
512 | 512 | <li> |
513 | - <a href="' . $url . '"' |
|
514 | - . ' title="' . esc_attr__('View Transaction Details', 'event_espresso') . '" class="tiny-text"> |
|
513 | + <a href="' . $url.'"' |
|
514 | + . ' title="'.esc_attr__('View Transaction Details', 'event_espresso').'" class="tiny-text"> |
|
515 | 515 | <span class="dashicons dashicons-cart"></span> |
516 | 516 | </a> |
517 | 517 | </li>'; |
@@ -536,8 +536,8 @@ discard block |
||
536 | 536 | ) { |
537 | 537 | return ' |
538 | 538 | <li> |
539 | - <a title="' . esc_attr__('View Transaction Invoice', 'event_espresso') . '"' |
|
540 | - . ' target="_blank" href="' . $url . '" class="tiny-text"> |
|
539 | + <a title="' . esc_attr__('View Transaction Invoice', 'event_espresso').'"' |
|
540 | + . ' target="_blank" href="'.$url.'" class="tiny-text"> |
|
541 | 541 | <span class="dashicons dashicons-media-spreadsheet ee-icon-size-18"></span> |
542 | 542 | </a> |
543 | 543 | </li>'; |
@@ -564,8 +564,8 @@ discard block |
||
564 | 564 | && EEH_MSG_Template::is_mt_active('receipt')) { |
565 | 565 | return ' |
566 | 566 | <li> |
567 | - <a title="' . esc_attr__('View Transaction Receipt', 'event_espresso') . '"' |
|
568 | - . ' target="_blank" href="' . $url . '" class="tiny-text"> |
|
567 | + <a title="' . esc_attr__('View Transaction Receipt', 'event_espresso').'"' |
|
568 | + . ' target="_blank" href="'.$url.'" class="tiny-text"> |
|
569 | 569 | <span class="dashicons dashicons-media-default ee-icon-size-18"></span> |
570 | 570 | </a> |
571 | 571 | </li>'; |
@@ -603,8 +603,8 @@ discard block |
||
603 | 603 | ) |
604 | 604 | ? ' |
605 | 605 | <li> |
606 | - <a href="' . $url . '"' |
|
607 | - . ' title="' . esc_attr__('View Registration Details', 'event_espresso') . '" class="tiny-text"> |
|
606 | + <a href="' . $url.'"' |
|
607 | + . ' title="'.esc_attr__('View Registration Details', 'event_espresso').'" class="tiny-text"> |
|
608 | 608 | <span class="dashicons dashicons-clipboard"></span> |
609 | 609 | </a> |
610 | 610 | </li>' |
@@ -649,8 +649,8 @@ discard block |
||
649 | 649 | ); |
650 | 650 | return ' |
651 | 651 | <li> |
652 | - <a href="' . $url . '"' |
|
653 | - . ' title="' . esc_attr__('Send Payment Reminder', 'event_espresso') . '" class="tiny-text"> |
|
652 | + <a href="' . $url.'"' |
|
653 | + . ' title="'.esc_attr__('Send Payment Reminder', 'event_espresso').'" class="tiny-text"> |
|
654 | 654 | <span class="dashicons dashicons-email-alt"></span> |
655 | 655 | </a> |
656 | 656 | </li>'; |
@@ -680,7 +680,7 @@ discard block |
||
680 | 680 | 'ee_read_global_messages', |
681 | 681 | 'view_filtered_messages' |
682 | 682 | ) |
683 | - ? '<li>' . $url . '</li>' |
|
683 | + ? '<li>'.$url.'</li>' |
|
684 | 684 | : ''; |
685 | 685 | } |
686 | 686 | |
@@ -701,8 +701,8 @@ discard block |
||
701 | 701 | ) { |
702 | 702 | return ' |
703 | 703 | <li> |
704 | - <a title="' . esc_attr__('Make Payment from the Frontend.', 'event_espresso') . '"' |
|
705 | - . ' target="_blank" href="' . $registration->payment_overview_url(true) . '"' |
|
704 | + <a title="' . esc_attr__('Make Payment from the Frontend.', 'event_espresso').'"' |
|
705 | + . ' target="_blank" href="'.$registration->payment_overview_url(true).'"' |
|
706 | 706 | . ' class="tiny-text"> |
707 | 707 | <span class="dashicons dashicons-money ee-icon-size-18"></span> |
708 | 708 | </a> |
@@ -1,7 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | namespace EventEspresso\Codeception\helpers; |
3 | 3 | |
4 | -use Page\CoreAdmin; |
|
5 | 4 | use Page\CountrySettingsAdmin as CountrySettings; |
6 | 5 | |
7 | 6 | trait CountrySettingsAdmin |
@@ -6,59 +6,59 @@ |
||
6 | 6 | |
7 | 7 | trait CountrySettingsAdmin |
8 | 8 | { |
9 | - /** |
|
10 | - * Instructs the actor to browse to the country settings page. |
|
11 | - * Assumes the actor is already logged in. |
|
12 | - * @param string $additional_params |
|
13 | - */ |
|
14 | - public function amOnCountrySettingsAdminPage($additional_params = '') |
|
15 | - { |
|
16 | - $this->actor()->amOnAdminPage(CountrySettings::url($additional_params)); |
|
17 | - } |
|
9 | + /** |
|
10 | + * Instructs the actor to browse to the country settings page. |
|
11 | + * Assumes the actor is already logged in. |
|
12 | + * @param string $additional_params |
|
13 | + */ |
|
14 | + public function amOnCountrySettingsAdminPage($additional_params = '') |
|
15 | + { |
|
16 | + $this->actor()->amOnAdminPage(CountrySettings::url($additional_params)); |
|
17 | + } |
|
18 | 18 | |
19 | 19 | |
20 | - /** |
|
21 | - * Instructs the actor to select the given decimal places radio option. |
|
22 | - * Assumes the actor is already on the country settings page. |
|
23 | - * @param string $decimal_places |
|
24 | - * @param string $country_code |
|
25 | - */ |
|
26 | - public function setCurrencyDecimalPlacesTo($decimal_places = '2', $country_code = 'US') |
|
27 | - { |
|
28 | - $this->actor()->click(CountrySettings::currencyDecimalPlacesRadioField($decimal_places, $country_code)); |
|
29 | - } |
|
20 | + /** |
|
21 | + * Instructs the actor to select the given decimal places radio option. |
|
22 | + * Assumes the actor is already on the country settings page. |
|
23 | + * @param string $decimal_places |
|
24 | + * @param string $country_code |
|
25 | + */ |
|
26 | + public function setCurrencyDecimalPlacesTo($decimal_places = '2', $country_code = 'US') |
|
27 | + { |
|
28 | + $this->actor()->click(CountrySettings::currencyDecimalPlacesRadioField($decimal_places, $country_code)); |
|
29 | + } |
|
30 | 30 | |
31 | 31 | |
32 | - /** |
|
33 | - * Instructs the actor to select the given decimal mark radio option. |
|
34 | - * Assumes the actor is already on the country settings page. |
|
35 | - * @param string $decimal_mark |
|
36 | - */ |
|
37 | - public function setCurrencyDecimalMarkTo($decimal_mark = '.') |
|
38 | - { |
|
39 | - $this->actor()->click(CountrySettings::currencyDecimalMarkRadioField($decimal_mark)); |
|
40 | - } |
|
32 | + /** |
|
33 | + * Instructs the actor to select the given decimal mark radio option. |
|
34 | + * Assumes the actor is already on the country settings page. |
|
35 | + * @param string $decimal_mark |
|
36 | + */ |
|
37 | + public function setCurrencyDecimalMarkTo($decimal_mark = '.') |
|
38 | + { |
|
39 | + $this->actor()->click(CountrySettings::currencyDecimalMarkRadioField($decimal_mark)); |
|
40 | + } |
|
41 | 41 | |
42 | 42 | |
43 | - /** |
|
44 | - * Instructs the actor to select the given thousands separator radio option. |
|
45 | - * Assumes the actor is already on the country settings page. |
|
46 | - * @param string $thousands_seperator |
|
47 | - */ |
|
48 | - public function setCurrencyThousandsSeparatorTo($thousands_seperator = ',') |
|
49 | - { |
|
50 | - $this->actor()->click(CountrySettings::currencyThousandsSeparatorField($thousands_seperator)); |
|
51 | - } |
|
43 | + /** |
|
44 | + * Instructs the actor to select the given thousands separator radio option. |
|
45 | + * Assumes the actor is already on the country settings page. |
|
46 | + * @param string $thousands_seperator |
|
47 | + */ |
|
48 | + public function setCurrencyThousandsSeparatorTo($thousands_seperator = ',') |
|
49 | + { |
|
50 | + $this->actor()->click(CountrySettings::currencyThousandsSeparatorField($thousands_seperator)); |
|
51 | + } |
|
52 | 52 | |
53 | 53 | |
54 | - /** |
|
55 | - * Clicks the country settings submit button. |
|
56 | - * Assumes the actor is on the country settings admin page. |
|
57 | - */ |
|
58 | - public function saveCountrySettings() |
|
59 | - { |
|
60 | - $this->actor()->click(CountrySettings::COUNTRY_SETTINGS_SAVE_BUTTON); |
|
61 | - //no indicator on the page when stuff has been updated so just give a bit of time for it to finish. |
|
62 | - $this->actor()->wait(10); |
|
63 | - } |
|
54 | + /** |
|
55 | + * Clicks the country settings submit button. |
|
56 | + * Assumes the actor is on the country settings admin page. |
|
57 | + */ |
|
58 | + public function saveCountrySettings() |
|
59 | + { |
|
60 | + $this->actor()->click(CountrySettings::COUNTRY_SETTINGS_SAVE_BUTTON); |
|
61 | + //no indicator on the page when stuff has been updated so just give a bit of time for it to finish. |
|
62 | + $this->actor()->wait(10); |
|
63 | + } |
|
64 | 64 | } |
65 | 65 | \ No newline at end of file |
@@ -14,51 +14,51 @@ |
||
14 | 14 | { |
15 | 15 | |
16 | 16 | |
17 | - const COUNTRY_SETTINGS_SAVE_BUTTON = '#country_settings_save_2'; |
|
17 | + const COUNTRY_SETTINGS_SAVE_BUTTON = '#country_settings_save_2'; |
|
18 | 18 | |
19 | 19 | |
20 | 20 | |
21 | - /** |
|
22 | - * Return the url for the country settings admin page. |
|
23 | - * @param string $additional_params |
|
24 | - * @return string |
|
25 | - */ |
|
26 | - public static function url($additional_params = '') |
|
27 | - { |
|
28 | - return self::adminUrl('espresso_general_settings', 'country_settings', $additional_params); |
|
29 | - } |
|
21 | + /** |
|
22 | + * Return the url for the country settings admin page. |
|
23 | + * @param string $additional_params |
|
24 | + * @return string |
|
25 | + */ |
|
26 | + public static function url($additional_params = '') |
|
27 | + { |
|
28 | + return self::adminUrl('espresso_general_settings', 'country_settings', $additional_params); |
|
29 | + } |
|
30 | 30 | |
31 | 31 | |
32 | - /** |
|
33 | - * Return the decimal places (precision) radio field locator for selection. |
|
34 | - * @param int $decimal_place_value |
|
35 | - * @param string $country_code |
|
36 | - * @return string |
|
37 | - */ |
|
38 | - public static function currencyDecimalPlacesRadioField($decimal_place_value = 2, $country_code = 'US') |
|
39 | - { |
|
40 | - return "//input[@id='CNT_cur_dec_plc-$country_code-$decimal_place_value']"; |
|
41 | - } |
|
32 | + /** |
|
33 | + * Return the decimal places (precision) radio field locator for selection. |
|
34 | + * @param int $decimal_place_value |
|
35 | + * @param string $country_code |
|
36 | + * @return string |
|
37 | + */ |
|
38 | + public static function currencyDecimalPlacesRadioField($decimal_place_value = 2, $country_code = 'US') |
|
39 | + { |
|
40 | + return "//input[@id='CNT_cur_dec_plc-$country_code-$decimal_place_value']"; |
|
41 | + } |
|
42 | 42 | |
43 | 43 | |
44 | - /** |
|
45 | - * Return the currency decimal mark field locator for selection. |
|
46 | - * @param string $decimal_mark |
|
47 | - * @return string |
|
48 | - */ |
|
49 | - public static function currencyDecimalMarkRadioField($decimal_mark = '.') |
|
50 | - { |
|
51 | - return "//input[@class='CNT_cur_dec_mrk' and @value='$decimal_mark']"; |
|
52 | - } |
|
44 | + /** |
|
45 | + * Return the currency decimal mark field locator for selection. |
|
46 | + * @param string $decimal_mark |
|
47 | + * @return string |
|
48 | + */ |
|
49 | + public static function currencyDecimalMarkRadioField($decimal_mark = '.') |
|
50 | + { |
|
51 | + return "//input[@class='CNT_cur_dec_mrk' and @value='$decimal_mark']"; |
|
52 | + } |
|
53 | 53 | |
54 | 54 | |
55 | - /** |
|
56 | - * Return the currency thousands separator field locator for selection. |
|
57 | - * @param string $thousands_separator |
|
58 | - * @return string |
|
59 | - */ |
|
60 | - public static function currencyThousandsSeparatorField($thousands_separator = ',') |
|
61 | - { |
|
62 | - return "//input[@class='CNT_cur_thsnds' and @value='$thousands_separator']"; |
|
63 | - } |
|
55 | + /** |
|
56 | + * Return the currency thousands separator field locator for selection. |
|
57 | + * @param string $thousands_separator |
|
58 | + * @return string |
|
59 | + */ |
|
60 | + public static function currencyThousandsSeparatorField($thousands_separator = ',') |
|
61 | + { |
|
62 | + return "//input[@class='CNT_cur_thsnds' and @value='$thousands_separator']"; |
|
63 | + } |
|
64 | 64 | } |
65 | 65 | \ No newline at end of file |
@@ -16,38 +16,38 @@ |
||
16 | 16 | { |
17 | 17 | |
18 | 18 | |
19 | - /** |
|
20 | - * @param string $table_column |
|
21 | - * @param string $nice_name |
|
22 | - * @param bool $nullable |
|
23 | - * @param null $default_value |
|
24 | - * @throws InvalidArgumentException |
|
25 | - */ |
|
26 | - public function __construct($table_column, $nice_name, $nullable, $default_value = null) |
|
27 | - { |
|
28 | - parent::__construct($table_column, $nice_name, $nullable, $default_value); |
|
29 | - $this->setSchemaFormat('email'); |
|
30 | - } |
|
19 | + /** |
|
20 | + * @param string $table_column |
|
21 | + * @param string $nice_name |
|
22 | + * @param bool $nullable |
|
23 | + * @param null $default_value |
|
24 | + * @throws InvalidArgumentException |
|
25 | + */ |
|
26 | + public function __construct($table_column, $nice_name, $nullable, $default_value = null) |
|
27 | + { |
|
28 | + parent::__construct($table_column, $nice_name, $nullable, $default_value); |
|
29 | + $this->setSchemaFormat('email'); |
|
30 | + } |
|
31 | 31 | |
32 | 32 | |
33 | 33 | |
34 | - /** |
|
35 | - * In form inputs, we should have called htmlentities and addslashes() on form inputs, |
|
36 | - * so we need to undo that on setting of these fields |
|
37 | - * |
|
38 | - * @param string $email_address |
|
39 | - * @return string |
|
40 | - * @throws InvalidArgumentException |
|
41 | - * @throws InvalidInterfaceException |
|
42 | - * @throws InvalidDataTypeException |
|
43 | - */ |
|
44 | - public function prepare_for_set($email_address) |
|
45 | - { |
|
46 | - try { |
|
47 | - $email_address = EmailAddressFactory::create($email_address); |
|
48 | - return $email_address->get(); |
|
49 | - } catch (EmailValidationException $e) { |
|
50 | - return ''; |
|
51 | - } |
|
52 | - } |
|
34 | + /** |
|
35 | + * In form inputs, we should have called htmlentities and addslashes() on form inputs, |
|
36 | + * so we need to undo that on setting of these fields |
|
37 | + * |
|
38 | + * @param string $email_address |
|
39 | + * @return string |
|
40 | + * @throws InvalidArgumentException |
|
41 | + * @throws InvalidInterfaceException |
|
42 | + * @throws InvalidDataTypeException |
|
43 | + */ |
|
44 | + public function prepare_for_set($email_address) |
|
45 | + { |
|
46 | + try { |
|
47 | + $email_address = EmailAddressFactory::create($email_address); |
|
48 | + return $email_address->get(); |
|
49 | + } catch (EmailValidationException $e) { |
|
50 | + return ''; |
|
51 | + } |
|
52 | + } |
|
53 | 53 | } |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | $email_address, |
35 | 35 | $this->getAtIndex($email_address) |
36 | 36 | ); |
37 | - if (! checkdnsrr($domain, 'MX')) { |
|
37 | + if ( ! checkdnsrr($domain, 'MX')) { |
|
38 | 38 | // domain not found in MX records |
39 | 39 | throw new EmailValidationException( |
40 | 40 | __( |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | ) |
46 | 46 | ); |
47 | 47 | } |
48 | - if (! checkdnsrr($domain, 'A')) { |
|
48 | + if ( ! checkdnsrr($domain, 'A')) { |
|
49 | 49 | // domain not found in A records |
50 | 50 | throw new EmailValidationException( |
51 | 51 | __( |
@@ -15,43 +15,43 @@ |
||
15 | 15 | class InternationalDNS extends International |
16 | 16 | { |
17 | 17 | |
18 | - /** |
|
19 | - * Validates the email in teh same way as the parent, but also |
|
20 | - * verifies the domain exists. |
|
21 | - * |
|
22 | - * @param string $email_address |
|
23 | - * @return bool |
|
24 | - * @throws EmailValidationException |
|
25 | - */ |
|
26 | - public function validate($email_address) |
|
27 | - { |
|
28 | - parent::validate($email_address); |
|
29 | - $domain = $this->getDomainPartOfEmail( |
|
30 | - $email_address, |
|
31 | - $this->getAtIndex($email_address) |
|
32 | - ); |
|
33 | - if (! checkdnsrr($domain, 'MX')) { |
|
34 | - // domain not found in MX records |
|
35 | - throw new EmailValidationException( |
|
36 | - __( |
|
37 | - // @codingStandardsIgnoreStart |
|
38 | - 'Although the email address provided is formatted correctly, a valid "MX record" could not be located for that address and domain. Please enter a valid email address.', |
|
39 | - // @codingStandardsIgnoreEnd |
|
40 | - 'event_espresso' |
|
41 | - ) |
|
42 | - ); |
|
43 | - } |
|
44 | - if (! checkdnsrr($domain, 'A')) { |
|
45 | - // domain not found in A records |
|
46 | - throw new EmailValidationException( |
|
47 | - __( |
|
48 | - // @codingStandardsIgnoreStart |
|
49 | - 'Although the email address provided is formatted correctly, a valid "A record" could not be located for that address and domain. Please enter a valid email address.', |
|
50 | - // @codingStandardsIgnoreEnd |
|
51 | - 'event_espresso' |
|
52 | - ) |
|
53 | - ); |
|
54 | - } |
|
55 | - return true; |
|
56 | - } |
|
18 | + /** |
|
19 | + * Validates the email in teh same way as the parent, but also |
|
20 | + * verifies the domain exists. |
|
21 | + * |
|
22 | + * @param string $email_address |
|
23 | + * @return bool |
|
24 | + * @throws EmailValidationException |
|
25 | + */ |
|
26 | + public function validate($email_address) |
|
27 | + { |
|
28 | + parent::validate($email_address); |
|
29 | + $domain = $this->getDomainPartOfEmail( |
|
30 | + $email_address, |
|
31 | + $this->getAtIndex($email_address) |
|
32 | + ); |
|
33 | + if (! checkdnsrr($domain, 'MX')) { |
|
34 | + // domain not found in MX records |
|
35 | + throw new EmailValidationException( |
|
36 | + __( |
|
37 | + // @codingStandardsIgnoreStart |
|
38 | + 'Although the email address provided is formatted correctly, a valid "MX record" could not be located for that address and domain. Please enter a valid email address.', |
|
39 | + // @codingStandardsIgnoreEnd |
|
40 | + 'event_espresso' |
|
41 | + ) |
|
42 | + ); |
|
43 | + } |
|
44 | + if (! checkdnsrr($domain, 'A')) { |
|
45 | + // domain not found in A records |
|
46 | + throw new EmailValidationException( |
|
47 | + __( |
|
48 | + // @codingStandardsIgnoreStart |
|
49 | + 'Although the email address provided is formatted correctly, a valid "A record" could not be located for that address and domain. Please enter a valid email address.', |
|
50 | + // @codingStandardsIgnoreEnd |
|
51 | + 'event_espresso' |
|
52 | + ) |
|
53 | + ); |
|
54 | + } |
|
55 | + return true; |
|
56 | + } |
|
57 | 57 | } |
@@ -18,14 +18,14 @@ |
||
18 | 18 | interface EmailValidatorInterface |
19 | 19 | { |
20 | 20 | |
21 | - /** |
|
22 | - * Validates the supplied email address. If it is invalid, throws EmailValidationException |
|
23 | - * |
|
24 | - * @param string $email_address |
|
25 | - * @return boolean |
|
26 | - * @throws EmailValidationException |
|
27 | - */ |
|
28 | - public function validate($email_address); |
|
21 | + /** |
|
22 | + * Validates the supplied email address. If it is invalid, throws EmailValidationException |
|
23 | + * |
|
24 | + * @param string $email_address |
|
25 | + * @return boolean |
|
26 | + * @throws EmailValidationException |
|
27 | + */ |
|
28 | + public function validate($email_address); |
|
29 | 29 | |
30 | 30 | |
31 | 31 | } |
@@ -18,72 +18,72 @@ |
||
18 | 18 | { |
19 | 19 | |
20 | 20 | |
21 | - /** |
|
22 | - * @param string $validation_error_message |
|
23 | - */ |
|
24 | - public function __construct($validation_error_message = '') |
|
25 | - { |
|
26 | - if (! $validation_error_message) { |
|
27 | - $validation_error_message = esc_html__('Please enter a valid email address.', 'event_espresso'); |
|
28 | - } |
|
29 | - parent::__construct($validation_error_message); |
|
30 | - } |
|
21 | + /** |
|
22 | + * @param string $validation_error_message |
|
23 | + */ |
|
24 | + public function __construct($validation_error_message = '') |
|
25 | + { |
|
26 | + if (! $validation_error_message) { |
|
27 | + $validation_error_message = esc_html__('Please enter a valid email address.', 'event_espresso'); |
|
28 | + } |
|
29 | + parent::__construct($validation_error_message); |
|
30 | + } |
|
31 | 31 | |
32 | 32 | |
33 | 33 | |
34 | - /** |
|
35 | - * just checks the field isn't blank |
|
36 | - * |
|
37 | - * @param $normalized_value |
|
38 | - * @return bool |
|
39 | - * @throws InvalidArgumentException |
|
40 | - * @throws InvalidInterfaceException |
|
41 | - * @throws InvalidDataTypeException |
|
42 | - * @throws EE_Validation_Error |
|
43 | - */ |
|
44 | - public function validate($normalized_value) |
|
45 | - { |
|
46 | - if ($normalized_value && ! $this->_validate_email($normalized_value)) { |
|
47 | - throw new EE_Validation_Error($this->get_validation_error_message(), 'required'); |
|
48 | - } |
|
49 | - return true; |
|
50 | - } |
|
34 | + /** |
|
35 | + * just checks the field isn't blank |
|
36 | + * |
|
37 | + * @param $normalized_value |
|
38 | + * @return bool |
|
39 | + * @throws InvalidArgumentException |
|
40 | + * @throws InvalidInterfaceException |
|
41 | + * @throws InvalidDataTypeException |
|
42 | + * @throws EE_Validation_Error |
|
43 | + */ |
|
44 | + public function validate($normalized_value) |
|
45 | + { |
|
46 | + if ($normalized_value && ! $this->_validate_email($normalized_value)) { |
|
47 | + throw new EE_Validation_Error($this->get_validation_error_message(), 'required'); |
|
48 | + } |
|
49 | + return true; |
|
50 | + } |
|
51 | 51 | |
52 | 52 | |
53 | 53 | |
54 | - /** |
|
55 | - * @return array |
|
56 | - */ |
|
57 | - public function get_jquery_validation_rule_array() |
|
58 | - { |
|
59 | - return array('email' => true, 'messages' => array('email' => $this->get_validation_error_message())); |
|
60 | - } |
|
54 | + /** |
|
55 | + * @return array |
|
56 | + */ |
|
57 | + public function get_jquery_validation_rule_array() |
|
58 | + { |
|
59 | + return array('email' => true, 'messages' => array('email' => $this->get_validation_error_message())); |
|
60 | + } |
|
61 | 61 | |
62 | 62 | |
63 | 63 | |
64 | - /** |
|
65 | - * Validate an email address. |
|
66 | - * Provide email address (raw input) |
|
67 | - * |
|
68 | - * @param $email |
|
69 | - * @return bool of whether the email is valid or not |
|
70 | - * @throws InvalidArgumentException |
|
71 | - * @throws InvalidInterfaceException |
|
72 | - * @throws InvalidDataTypeException |
|
73 | - * @throws EE_Validation_Error |
|
74 | - */ |
|
75 | - private function _validate_email($email) |
|
76 | - { |
|
77 | - try { |
|
78 | - EmailAddressFactory::create($email); |
|
79 | - } catch (EmailValidationException $e) { |
|
80 | - throw new EE_Validation_Error( |
|
81 | - $e->getMessage(), |
|
82 | - 'invalid_email', |
|
83 | - $this->_input, |
|
84 | - $e |
|
85 | - ); |
|
86 | - } |
|
87 | - return true; |
|
88 | - } |
|
64 | + /** |
|
65 | + * Validate an email address. |
|
66 | + * Provide email address (raw input) |
|
67 | + * |
|
68 | + * @param $email |
|
69 | + * @return bool of whether the email is valid or not |
|
70 | + * @throws InvalidArgumentException |
|
71 | + * @throws InvalidInterfaceException |
|
72 | + * @throws InvalidDataTypeException |
|
73 | + * @throws EE_Validation_Error |
|
74 | + */ |
|
75 | + private function _validate_email($email) |
|
76 | + { |
|
77 | + try { |
|
78 | + EmailAddressFactory::create($email); |
|
79 | + } catch (EmailValidationException $e) { |
|
80 | + throw new EE_Validation_Error( |
|
81 | + $e->getMessage(), |
|
82 | + 'invalid_email', |
|
83 | + $this->_input, |
|
84 | + $e |
|
85 | + ); |
|
86 | + } |
|
87 | + return true; |
|
88 | + } |
|
89 | 89 | } |
@@ -23,7 +23,7 @@ |
||
23 | 23 | */ |
24 | 24 | public function __construct($validation_error_message = '') |
25 | 25 | { |
26 | - if (! $validation_error_message) { |
|
26 | + if ( ! $validation_error_message) { |
|
27 | 27 | $validation_error_message = esc_html__('Please enter a valid email address.', 'event_espresso'); |
28 | 28 | } |
29 | 29 | parent::__construct($validation_error_message); |
@@ -351,7 +351,7 @@ |
||
351 | 351 | * retrieve a single attendee from db via their ID |
352 | 352 | * |
353 | 353 | * @param $ATT_ID |
354 | - * @return mixed array on success, FALSE on fail |
|
354 | + * @return EE_Base_Class|null array on success, FALSE on fail |
|
355 | 355 | * @deprecated |
356 | 356 | */ |
357 | 357 | public function get_attendee_by_ID($ATT_ID = false) |
@@ -1,5 +1,4 @@ |
||
1 | 1 | <?php |
2 | -use EventEspresso\core\services\loaders\Loader; |
|
3 | 2 | use EventEspresso\core\services\orm\ModelFieldFactory; |
4 | 3 | |
5 | 4 | /** |
@@ -284,8 +284,8 @@ discard block |
||
284 | 284 | */ |
285 | 285 | public function get_attendee_field_for_system_question($system_question_string) |
286 | 286 | { |
287 | - return isset($this->_system_question_to_attendee_field_name[ $system_question_string ]) |
|
288 | - ? $this->_system_question_to_attendee_field_name[ $system_question_string ] |
|
287 | + return isset($this->_system_question_to_attendee_field_name[$system_question_string]) |
|
288 | + ? $this->_system_question_to_attendee_field_name[$system_question_string] |
|
289 | 289 | : null; |
290 | 290 | } |
291 | 291 | |
@@ -353,7 +353,7 @@ discard block |
||
353 | 353 | return false; |
354 | 354 | } |
355 | 355 | $attendee = $this->get_all(array($where_cols_n_values)); |
356 | - if (! empty($attendee)) { |
|
356 | + if ( ! empty($attendee)) { |
|
357 | 357 | return array_shift($attendee); |
358 | 358 | } |
359 | 359 | return false; |
@@ -12,430 +12,430 @@ |
||
12 | 12 | class EEM_Attendee extends EEM_CPT_Base |
13 | 13 | { |
14 | 14 | |
15 | - // private instance of the Attendee object |
|
16 | - protected static $_instance = null; |
|
15 | + // private instance of the Attendee object |
|
16 | + protected static $_instance = null; |
|
17 | 17 | |
18 | - /** |
|
19 | - * QST_system for questions are strings not integers now, |
|
20 | - * so these constants are deprecated. |
|
21 | - * Please instead use the EEM_Attendee::system_question_* constants |
|
22 | - * |
|
23 | - * @deprecated |
|
24 | - */ |
|
25 | - const fname_question_id = 1; |
|
18 | + /** |
|
19 | + * QST_system for questions are strings not integers now, |
|
20 | + * so these constants are deprecated. |
|
21 | + * Please instead use the EEM_Attendee::system_question_* constants |
|
22 | + * |
|
23 | + * @deprecated |
|
24 | + */ |
|
25 | + const fname_question_id = 1; |
|
26 | 26 | |
27 | - /** |
|
28 | - * @deprecated |
|
29 | - */ |
|
30 | - const lname_question_id = 2; |
|
27 | + /** |
|
28 | + * @deprecated |
|
29 | + */ |
|
30 | + const lname_question_id = 2; |
|
31 | 31 | |
32 | 32 | |
33 | - /** |
|
34 | - * @deprecated |
|
35 | - */ |
|
36 | - const email_question_id = 3; |
|
33 | + /** |
|
34 | + * @deprecated |
|
35 | + */ |
|
36 | + const email_question_id = 3; |
|
37 | 37 | |
38 | 38 | |
39 | - /** |
|
40 | - * @deprecated |
|
41 | - */ |
|
42 | - const address_question_id = 4; |
|
39 | + /** |
|
40 | + * @deprecated |
|
41 | + */ |
|
42 | + const address_question_id = 4; |
|
43 | 43 | |
44 | 44 | |
45 | - /** |
|
46 | - * @deprecated |
|
47 | - */ |
|
48 | - const address2_question_id = 5; |
|
49 | - |
|
50 | - |
|
51 | - /** |
|
52 | - * @deprecated |
|
53 | - */ |
|
54 | - const city_question_id = 6; |
|
55 | - |
|
56 | - |
|
57 | - /** |
|
58 | - * @deprecated |
|
59 | - */ |
|
60 | - const state_question_id = 7; |
|
61 | - |
|
62 | - |
|
63 | - /** |
|
64 | - * @deprecated |
|
65 | - */ |
|
66 | - const country_question_id = 8; |
|
67 | - |
|
68 | - |
|
69 | - /** |
|
70 | - * @deprecated |
|
71 | - */ |
|
72 | - const zip_question_id = 9; |
|
73 | - |
|
74 | - |
|
75 | - /** |
|
76 | - * @deprecated |
|
77 | - */ |
|
78 | - const phone_question_id = 10; |
|
79 | - |
|
80 | - /** |
|
81 | - * When looking for questions that correspond to attendee fields, |
|
82 | - * look for the question with this QST_system value. |
|
83 | - * These replace the old constants like EEM_Attendee::*_question_id |
|
84 | - */ |
|
85 | - const system_question_fname = 'fname'; |
|
86 | - |
|
87 | - const system_question_lname = 'lname'; |
|
88 | - |
|
89 | - const system_question_email = 'email'; |
|
90 | - |
|
91 | - const system_question_address = 'address'; |
|
92 | - |
|
93 | - const system_question_address2 = 'address2'; |
|
94 | - |
|
95 | - const system_question_city = 'city'; |
|
96 | - |
|
97 | - const system_question_state = 'state'; |
|
98 | - |
|
99 | - const system_question_country = 'country'; |
|
100 | - |
|
101 | - const system_question_zip = 'zip'; |
|
102 | - |
|
103 | - const system_question_phone = 'phone'; |
|
104 | - |
|
105 | - /** |
|
106 | - * Keys are all the EEM_Attendee::system_question_* constants, which are |
|
107 | - * also all the values of QST_system in the questions table, and values |
|
108 | - * are their corresponding Attendee field names |
|
109 | - * |
|
110 | - * @var array |
|
111 | - */ |
|
112 | - protected $_system_question_to_attendee_field_name = array( |
|
113 | - EEM_Attendee::system_question_fname => 'ATT_fname', |
|
114 | - EEM_Attendee::system_question_lname => 'ATT_lname', |
|
115 | - EEM_Attendee::system_question_email => 'ATT_email', |
|
116 | - EEM_Attendee::system_question_address => 'ATT_address', |
|
117 | - EEM_Attendee::system_question_address2 => 'ATT_address2', |
|
118 | - EEM_Attendee::system_question_city => 'ATT_city', |
|
119 | - EEM_Attendee::system_question_state => 'STA_ID', |
|
120 | - EEM_Attendee::system_question_country => 'CNT_ISO', |
|
121 | - EEM_Attendee::system_question_zip => 'ATT_zip', |
|
122 | - EEM_Attendee::system_question_phone => 'ATT_phone', |
|
123 | - ); |
|
124 | - |
|
125 | - |
|
126 | - |
|
127 | - /** |
|
128 | - * EEM_Attendee constructor. |
|
129 | - * |
|
130 | - * @param null $timezone |
|
131 | - * @param ModelFieldFactory $model_field_factory |
|
132 | - * @throws EE_Error |
|
133 | - * @throws InvalidArgumentException |
|
134 | - */ |
|
135 | - protected function __construct($timezone = null, ModelFieldFactory $model_field_factory) |
|
136 | - { |
|
137 | - $this->singular_item = esc_html__('Attendee', 'event_espresso'); |
|
138 | - $this->plural_item = esc_html__('Attendees', 'event_espresso'); |
|
139 | - $this->_tables = array( |
|
140 | - 'Attendee_CPT' => new EE_Primary_Table('posts', 'ID'), |
|
141 | - 'Attendee_Meta' => new EE_Secondary_Table( |
|
142 | - 'esp_attendee_meta', |
|
143 | - 'ATTM_ID', |
|
144 | - 'ATT_ID' |
|
145 | - ), |
|
146 | - ); |
|
147 | - $this->_fields = array( |
|
148 | - 'Attendee_CPT' => array( |
|
149 | - 'ATT_ID' => $model_field_factory->createPrimaryKeyIntField( |
|
150 | - 'ID', |
|
151 | - esc_html__('Attendee ID', 'event_espresso') |
|
152 | - ), |
|
153 | - 'ATT_full_name' => $model_field_factory->createPlainTextField( |
|
154 | - 'post_title', |
|
155 | - esc_html__('Attendee Full Name', 'event_espresso'), |
|
156 | - false, |
|
157 | - esc_html__('Unknown', 'event_espresso') |
|
158 | - ), |
|
159 | - 'ATT_bio' => $model_field_factory->createPostContentField( |
|
160 | - 'post_content', |
|
161 | - esc_html__('Attendee Biography', 'event_espresso'), |
|
162 | - false, |
|
163 | - esc_html__('No Biography Provided', 'event_espresso') |
|
164 | - ), |
|
165 | - 'ATT_slug' => $model_field_factory->createSlugField( |
|
166 | - 'post_name', |
|
167 | - esc_html__('Attendee URL Slug', 'event_espresso') |
|
168 | - ), |
|
169 | - 'ATT_created' => $model_field_factory->createDatetimeField( |
|
170 | - 'post_date', |
|
171 | - esc_html__('Time Attendee Created', 'event_espresso') |
|
172 | - ), |
|
173 | - 'ATT_short_bio' => $model_field_factory->createSimpleHtmlField( |
|
174 | - 'post_excerpt', |
|
175 | - esc_html__('Attendee Short Biography', 'event_espresso'), |
|
176 | - true, |
|
177 | - esc_html__('No Biography Provided', 'event_espresso') |
|
178 | - ), |
|
179 | - 'ATT_modified' => $model_field_factory->createDatetimeField( |
|
180 | - 'post_modified', |
|
181 | - esc_html__('Time Attendee Last Modified', 'event_espresso') |
|
182 | - ), |
|
183 | - 'ATT_author' => $model_field_factory->createWpUserField( |
|
184 | - 'post_author', |
|
185 | - esc_html__('Creator ID of the first Event attended', 'event_espresso'), |
|
186 | - false |
|
187 | - ), |
|
188 | - 'ATT_parent' => $model_field_factory->createDbOnlyIntField( |
|
189 | - 'post_parent', |
|
190 | - esc_html__('Parent Attendee (unused)', 'event_espresso'), |
|
191 | - false, |
|
192 | - 0 |
|
193 | - ), |
|
194 | - 'post_type' => $model_field_factory->createWpPostTypeField('espresso_attendees'), |
|
195 | - 'status' => $model_field_factory->createWpPostStatusField( |
|
196 | - 'post_status', |
|
197 | - esc_html__('Attendee Status', 'event_espresso'), |
|
198 | - false, |
|
199 | - 'publish' |
|
200 | - ), |
|
201 | - 'password' => new EE_Password_Field( |
|
202 | - 'post_password', |
|
203 | - __('Password', 'event_espresso'), |
|
204 | - false, |
|
205 | - '', |
|
206 | - array( |
|
207 | - 'ATT_bio', |
|
208 | - 'ATT_short_bio', |
|
209 | - 'ATT_address', |
|
210 | - 'ATT_address2', |
|
211 | - 'ATT_city', |
|
212 | - 'STA_ID', |
|
213 | - 'CNT_ISO', |
|
214 | - 'ATT_zip', |
|
215 | - 'ATT_email', |
|
216 | - 'ATT_phone' |
|
217 | - ) |
|
218 | - ) |
|
219 | - ), |
|
220 | - 'Attendee_Meta' => array( |
|
221 | - 'ATTM_ID' => $model_field_factory->createDbOnlyIntField( |
|
222 | - 'ATTM_ID', |
|
223 | - esc_html__('Attendee Meta Row ID', 'event_espresso'), |
|
224 | - false |
|
225 | - ), |
|
226 | - 'ATT_ID_fk' => $model_field_factory->createDbOnlyIntField( |
|
227 | - 'ATT_ID', |
|
228 | - esc_html__('Foreign Key to Attendee in Post Table', 'event_espresso'), |
|
229 | - false |
|
230 | - ), |
|
231 | - 'ATT_fname' => $model_field_factory->createPlainTextField( |
|
232 | - 'ATT_fname', |
|
233 | - esc_html__('First Name', 'event_espresso') |
|
234 | - ), |
|
235 | - 'ATT_lname' => $model_field_factory->createPlainTextField( |
|
236 | - 'ATT_lname', |
|
237 | - esc_html__('Last Name', 'event_espresso') |
|
238 | - ), |
|
239 | - 'ATT_address' => $model_field_factory->createPlainTextField( |
|
240 | - 'ATT_address', |
|
241 | - esc_html__('Address Part 1', 'event_espresso') |
|
242 | - ), |
|
243 | - 'ATT_address2' => $model_field_factory->createPlainTextField( |
|
244 | - 'ATT_address2', |
|
245 | - esc_html__('Address Part 2', 'event_espresso') |
|
246 | - ), |
|
247 | - 'ATT_city' => $model_field_factory->createPlainTextField( |
|
248 | - 'ATT_city', |
|
249 | - esc_html__('City', 'event_espresso') |
|
250 | - ), |
|
251 | - 'STA_ID' => $model_field_factory->createForeignKeyIntField( |
|
252 | - 'STA_ID', |
|
253 | - esc_html__('State', 'event_espresso'), |
|
254 | - true, |
|
255 | - 0, |
|
256 | - 'State' |
|
257 | - ), |
|
258 | - 'CNT_ISO' => $model_field_factory->createForeignKeyStringField( |
|
259 | - 'CNT_ISO', |
|
260 | - esc_html__('Country', 'event_espresso'), |
|
261 | - true, |
|
262 | - '', |
|
263 | - 'Country' |
|
264 | - ), |
|
265 | - 'ATT_zip' => $model_field_factory->createPlainTextField( |
|
266 | - 'ATT_zip', |
|
267 | - esc_html__('ZIP/Postal Code', 'event_espresso') |
|
268 | - ), |
|
269 | - 'ATT_email' => $model_field_factory->createEmailField( |
|
270 | - 'ATT_email', |
|
271 | - esc_html__('Email Address', 'event_espresso') |
|
272 | - ), |
|
273 | - 'ATT_phone' => $model_field_factory->createPlainTextField( |
|
274 | - 'ATT_phone', |
|
275 | - esc_html__('Phone', 'event_espresso') |
|
276 | - ), |
|
277 | - ), |
|
278 | - ); |
|
279 | - $this->_model_relations = array( |
|
280 | - 'Registration' => new EE_Has_Many_Relation(), |
|
281 | - 'State' => new EE_Belongs_To_Relation(), |
|
282 | - 'Country' => new EE_Belongs_To_Relation(), |
|
283 | - 'Event' => new EE_HABTM_Relation('Registration', false), |
|
284 | - 'WP_User' => new EE_Belongs_To_Relation(), |
|
285 | - 'Message' => new EE_Has_Many_Any_Relation(false), |
|
286 | - // allow deletion of attendees even if they have messages in the queue for them. |
|
287 | - 'Term_Relationship' => new EE_Has_Many_Relation(), |
|
288 | - 'Term_Taxonomy' => new EE_HABTM_Relation('Term_Relationship'), |
|
289 | - ); |
|
290 | - $this->_caps_slug = 'contacts'; |
|
291 | - $this->model_chain_to_password = ''; |
|
292 | - parent::__construct($timezone); |
|
293 | - } |
|
294 | - |
|
295 | - |
|
296 | - |
|
297 | - /** |
|
298 | - * Gets the name of the field on the attendee model corresponding to the system question string |
|
299 | - * which should be one of the keys from EEM_Attendee::_system_question_to_attendee_field_name |
|
300 | - * |
|
301 | - * @param string $system_question_string |
|
302 | - * @return string|null if not found |
|
303 | - */ |
|
304 | - public function get_attendee_field_for_system_question($system_question_string) |
|
305 | - { |
|
306 | - return isset($this->_system_question_to_attendee_field_name[ $system_question_string ]) |
|
307 | - ? $this->_system_question_to_attendee_field_name[ $system_question_string ] |
|
308 | - : null; |
|
309 | - } |
|
310 | - |
|
311 | - |
|
312 | - |
|
313 | - /** |
|
314 | - * Gets mapping from esp_question.QST_system values to their corresponding attendee field names |
|
315 | - * |
|
316 | - * @return array |
|
317 | - */ |
|
318 | - public function system_question_to_attendee_field_mapping() |
|
319 | - { |
|
320 | - return $this->_system_question_to_attendee_field_name; |
|
321 | - } |
|
322 | - |
|
323 | - |
|
324 | - |
|
325 | - /** |
|
326 | - * Gets all the attendees for a transaction (by using the esp_registration as a join table) |
|
327 | - * |
|
328 | - * @param EE_Transaction /int $transaction_id_or_obj EE_Transaction or its ID |
|
329 | - * @return EE_Attendee[]|EE_Base_Class[] |
|
330 | - * @throws EE_Error |
|
331 | - */ |
|
332 | - public function get_attendees_for_transaction($transaction_id_or_obj) |
|
333 | - { |
|
334 | - return $this->get_all( |
|
335 | - array( |
|
336 | - array( |
|
337 | - 'Registration.Transaction.TXN_ID' => $transaction_id_or_obj instanceof EE_Transaction |
|
338 | - ? $transaction_id_or_obj->ID() |
|
339 | - : $transaction_id_or_obj, |
|
340 | - ), |
|
341 | - ) |
|
342 | - ); |
|
343 | - } |
|
344 | - |
|
345 | - |
|
346 | - |
|
347 | - /** |
|
348 | - * retrieve a single attendee from db via their ID |
|
349 | - * |
|
350 | - * @param $ATT_ID |
|
351 | - * @return mixed array on success, FALSE on fail |
|
352 | - * @deprecated |
|
353 | - */ |
|
354 | - public function get_attendee_by_ID($ATT_ID = false) |
|
355 | - { |
|
356 | - // retrieve a particular EE_Attendee |
|
357 | - return $this->get_one_by_ID($ATT_ID); |
|
358 | - } |
|
359 | - |
|
360 | - |
|
361 | - |
|
362 | - /** |
|
363 | - * retrieve a single attendee from db via their ID |
|
364 | - * |
|
365 | - * @param array $where_cols_n_values |
|
366 | - * @return mixed array on success, FALSE on fail |
|
367 | - * @throws EE_Error |
|
368 | - */ |
|
369 | - public function get_attendee($where_cols_n_values = array()) |
|
370 | - { |
|
371 | - if (empty($where_cols_n_values)) { |
|
372 | - return false; |
|
373 | - } |
|
374 | - $attendee = $this->get_all(array($where_cols_n_values)); |
|
375 | - if (! empty($attendee)) { |
|
376 | - return array_shift($attendee); |
|
377 | - } |
|
378 | - return false; |
|
379 | - } |
|
380 | - |
|
381 | - |
|
382 | - |
|
383 | - /** |
|
384 | - * Search for an existing Attendee record in the DB |
|
385 | - * |
|
386 | - * @param array $where_cols_n_values |
|
387 | - * @return bool|mixed |
|
388 | - * @throws EE_Error |
|
389 | - */ |
|
390 | - public function find_existing_attendee($where_cols_n_values = null) |
|
391 | - { |
|
392 | - // search by combo of first and last names plus the email address |
|
393 | - $attendee_data_keys = array( |
|
394 | - 'ATT_fname' => $this->_ATT_fname, |
|
395 | - 'ATT_lname' => $this->_ATT_lname, |
|
396 | - 'ATT_email' => $this->_ATT_email, |
|
397 | - ); |
|
398 | - // no search params means attendee object already exists. |
|
399 | - $where_cols_n_values = is_array($where_cols_n_values) && ! empty($where_cols_n_values) |
|
400 | - ? $where_cols_n_values |
|
401 | - : $attendee_data_keys; |
|
402 | - $valid_data = true; |
|
403 | - // check for required values |
|
404 | - $valid_data = isset($where_cols_n_values['ATT_fname']) && ! empty($where_cols_n_values['ATT_fname']) |
|
405 | - ? $valid_data |
|
406 | - : false; |
|
407 | - $valid_data = isset($where_cols_n_values['ATT_lname']) && ! empty($where_cols_n_values['ATT_lname']) |
|
408 | - ? $valid_data |
|
409 | - : false; |
|
410 | - $valid_data = isset($where_cols_n_values['ATT_email']) && ! empty($where_cols_n_values['ATT_email']) |
|
411 | - ? $valid_data |
|
412 | - : false; |
|
413 | - if ($valid_data) { |
|
414 | - $attendee = $this->get_attendee($where_cols_n_values); |
|
415 | - if ($attendee instanceof EE_Attendee) { |
|
416 | - return $attendee; |
|
417 | - } |
|
418 | - } |
|
419 | - return false; |
|
420 | - } |
|
421 | - |
|
422 | - |
|
423 | - |
|
424 | - /** |
|
425 | - * Takes an incoming array of EE_Registration ids |
|
426 | - * and sends back a list of corresponding non duplicate EE_Attendee objects. |
|
427 | - * |
|
428 | - * @since 4.3.0 |
|
429 | - * @param array $ids array of EE_Registration ids |
|
430 | - * @return EE_Attendee[]|EE_Base_Class[] |
|
431 | - * @throws EE_Error |
|
432 | - */ |
|
433 | - public function get_array_of_contacts_from_reg_ids($ids) |
|
434 | - { |
|
435 | - $ids = (array) $ids; |
|
436 | - $_where = array( |
|
437 | - 'Registration.REG_ID' => array('in', $ids), |
|
438 | - ); |
|
439 | - return $this->get_all(array($_where)); |
|
440 | - } |
|
45 | + /** |
|
46 | + * @deprecated |
|
47 | + */ |
|
48 | + const address2_question_id = 5; |
|
49 | + |
|
50 | + |
|
51 | + /** |
|
52 | + * @deprecated |
|
53 | + */ |
|
54 | + const city_question_id = 6; |
|
55 | + |
|
56 | + |
|
57 | + /** |
|
58 | + * @deprecated |
|
59 | + */ |
|
60 | + const state_question_id = 7; |
|
61 | + |
|
62 | + |
|
63 | + /** |
|
64 | + * @deprecated |
|
65 | + */ |
|
66 | + const country_question_id = 8; |
|
67 | + |
|
68 | + |
|
69 | + /** |
|
70 | + * @deprecated |
|
71 | + */ |
|
72 | + const zip_question_id = 9; |
|
73 | + |
|
74 | + |
|
75 | + /** |
|
76 | + * @deprecated |
|
77 | + */ |
|
78 | + const phone_question_id = 10; |
|
79 | + |
|
80 | + /** |
|
81 | + * When looking for questions that correspond to attendee fields, |
|
82 | + * look for the question with this QST_system value. |
|
83 | + * These replace the old constants like EEM_Attendee::*_question_id |
|
84 | + */ |
|
85 | + const system_question_fname = 'fname'; |
|
86 | + |
|
87 | + const system_question_lname = 'lname'; |
|
88 | + |
|
89 | + const system_question_email = 'email'; |
|
90 | + |
|
91 | + const system_question_address = 'address'; |
|
92 | + |
|
93 | + const system_question_address2 = 'address2'; |
|
94 | + |
|
95 | + const system_question_city = 'city'; |
|
96 | + |
|
97 | + const system_question_state = 'state'; |
|
98 | + |
|
99 | + const system_question_country = 'country'; |
|
100 | + |
|
101 | + const system_question_zip = 'zip'; |
|
102 | + |
|
103 | + const system_question_phone = 'phone'; |
|
104 | + |
|
105 | + /** |
|
106 | + * Keys are all the EEM_Attendee::system_question_* constants, which are |
|
107 | + * also all the values of QST_system in the questions table, and values |
|
108 | + * are their corresponding Attendee field names |
|
109 | + * |
|
110 | + * @var array |
|
111 | + */ |
|
112 | + protected $_system_question_to_attendee_field_name = array( |
|
113 | + EEM_Attendee::system_question_fname => 'ATT_fname', |
|
114 | + EEM_Attendee::system_question_lname => 'ATT_lname', |
|
115 | + EEM_Attendee::system_question_email => 'ATT_email', |
|
116 | + EEM_Attendee::system_question_address => 'ATT_address', |
|
117 | + EEM_Attendee::system_question_address2 => 'ATT_address2', |
|
118 | + EEM_Attendee::system_question_city => 'ATT_city', |
|
119 | + EEM_Attendee::system_question_state => 'STA_ID', |
|
120 | + EEM_Attendee::system_question_country => 'CNT_ISO', |
|
121 | + EEM_Attendee::system_question_zip => 'ATT_zip', |
|
122 | + EEM_Attendee::system_question_phone => 'ATT_phone', |
|
123 | + ); |
|
124 | + |
|
125 | + |
|
126 | + |
|
127 | + /** |
|
128 | + * EEM_Attendee constructor. |
|
129 | + * |
|
130 | + * @param null $timezone |
|
131 | + * @param ModelFieldFactory $model_field_factory |
|
132 | + * @throws EE_Error |
|
133 | + * @throws InvalidArgumentException |
|
134 | + */ |
|
135 | + protected function __construct($timezone = null, ModelFieldFactory $model_field_factory) |
|
136 | + { |
|
137 | + $this->singular_item = esc_html__('Attendee', 'event_espresso'); |
|
138 | + $this->plural_item = esc_html__('Attendees', 'event_espresso'); |
|
139 | + $this->_tables = array( |
|
140 | + 'Attendee_CPT' => new EE_Primary_Table('posts', 'ID'), |
|
141 | + 'Attendee_Meta' => new EE_Secondary_Table( |
|
142 | + 'esp_attendee_meta', |
|
143 | + 'ATTM_ID', |
|
144 | + 'ATT_ID' |
|
145 | + ), |
|
146 | + ); |
|
147 | + $this->_fields = array( |
|
148 | + 'Attendee_CPT' => array( |
|
149 | + 'ATT_ID' => $model_field_factory->createPrimaryKeyIntField( |
|
150 | + 'ID', |
|
151 | + esc_html__('Attendee ID', 'event_espresso') |
|
152 | + ), |
|
153 | + 'ATT_full_name' => $model_field_factory->createPlainTextField( |
|
154 | + 'post_title', |
|
155 | + esc_html__('Attendee Full Name', 'event_espresso'), |
|
156 | + false, |
|
157 | + esc_html__('Unknown', 'event_espresso') |
|
158 | + ), |
|
159 | + 'ATT_bio' => $model_field_factory->createPostContentField( |
|
160 | + 'post_content', |
|
161 | + esc_html__('Attendee Biography', 'event_espresso'), |
|
162 | + false, |
|
163 | + esc_html__('No Biography Provided', 'event_espresso') |
|
164 | + ), |
|
165 | + 'ATT_slug' => $model_field_factory->createSlugField( |
|
166 | + 'post_name', |
|
167 | + esc_html__('Attendee URL Slug', 'event_espresso') |
|
168 | + ), |
|
169 | + 'ATT_created' => $model_field_factory->createDatetimeField( |
|
170 | + 'post_date', |
|
171 | + esc_html__('Time Attendee Created', 'event_espresso') |
|
172 | + ), |
|
173 | + 'ATT_short_bio' => $model_field_factory->createSimpleHtmlField( |
|
174 | + 'post_excerpt', |
|
175 | + esc_html__('Attendee Short Biography', 'event_espresso'), |
|
176 | + true, |
|
177 | + esc_html__('No Biography Provided', 'event_espresso') |
|
178 | + ), |
|
179 | + 'ATT_modified' => $model_field_factory->createDatetimeField( |
|
180 | + 'post_modified', |
|
181 | + esc_html__('Time Attendee Last Modified', 'event_espresso') |
|
182 | + ), |
|
183 | + 'ATT_author' => $model_field_factory->createWpUserField( |
|
184 | + 'post_author', |
|
185 | + esc_html__('Creator ID of the first Event attended', 'event_espresso'), |
|
186 | + false |
|
187 | + ), |
|
188 | + 'ATT_parent' => $model_field_factory->createDbOnlyIntField( |
|
189 | + 'post_parent', |
|
190 | + esc_html__('Parent Attendee (unused)', 'event_espresso'), |
|
191 | + false, |
|
192 | + 0 |
|
193 | + ), |
|
194 | + 'post_type' => $model_field_factory->createWpPostTypeField('espresso_attendees'), |
|
195 | + 'status' => $model_field_factory->createWpPostStatusField( |
|
196 | + 'post_status', |
|
197 | + esc_html__('Attendee Status', 'event_espresso'), |
|
198 | + false, |
|
199 | + 'publish' |
|
200 | + ), |
|
201 | + 'password' => new EE_Password_Field( |
|
202 | + 'post_password', |
|
203 | + __('Password', 'event_espresso'), |
|
204 | + false, |
|
205 | + '', |
|
206 | + array( |
|
207 | + 'ATT_bio', |
|
208 | + 'ATT_short_bio', |
|
209 | + 'ATT_address', |
|
210 | + 'ATT_address2', |
|
211 | + 'ATT_city', |
|
212 | + 'STA_ID', |
|
213 | + 'CNT_ISO', |
|
214 | + 'ATT_zip', |
|
215 | + 'ATT_email', |
|
216 | + 'ATT_phone' |
|
217 | + ) |
|
218 | + ) |
|
219 | + ), |
|
220 | + 'Attendee_Meta' => array( |
|
221 | + 'ATTM_ID' => $model_field_factory->createDbOnlyIntField( |
|
222 | + 'ATTM_ID', |
|
223 | + esc_html__('Attendee Meta Row ID', 'event_espresso'), |
|
224 | + false |
|
225 | + ), |
|
226 | + 'ATT_ID_fk' => $model_field_factory->createDbOnlyIntField( |
|
227 | + 'ATT_ID', |
|
228 | + esc_html__('Foreign Key to Attendee in Post Table', 'event_espresso'), |
|
229 | + false |
|
230 | + ), |
|
231 | + 'ATT_fname' => $model_field_factory->createPlainTextField( |
|
232 | + 'ATT_fname', |
|
233 | + esc_html__('First Name', 'event_espresso') |
|
234 | + ), |
|
235 | + 'ATT_lname' => $model_field_factory->createPlainTextField( |
|
236 | + 'ATT_lname', |
|
237 | + esc_html__('Last Name', 'event_espresso') |
|
238 | + ), |
|
239 | + 'ATT_address' => $model_field_factory->createPlainTextField( |
|
240 | + 'ATT_address', |
|
241 | + esc_html__('Address Part 1', 'event_espresso') |
|
242 | + ), |
|
243 | + 'ATT_address2' => $model_field_factory->createPlainTextField( |
|
244 | + 'ATT_address2', |
|
245 | + esc_html__('Address Part 2', 'event_espresso') |
|
246 | + ), |
|
247 | + 'ATT_city' => $model_field_factory->createPlainTextField( |
|
248 | + 'ATT_city', |
|
249 | + esc_html__('City', 'event_espresso') |
|
250 | + ), |
|
251 | + 'STA_ID' => $model_field_factory->createForeignKeyIntField( |
|
252 | + 'STA_ID', |
|
253 | + esc_html__('State', 'event_espresso'), |
|
254 | + true, |
|
255 | + 0, |
|
256 | + 'State' |
|
257 | + ), |
|
258 | + 'CNT_ISO' => $model_field_factory->createForeignKeyStringField( |
|
259 | + 'CNT_ISO', |
|
260 | + esc_html__('Country', 'event_espresso'), |
|
261 | + true, |
|
262 | + '', |
|
263 | + 'Country' |
|
264 | + ), |
|
265 | + 'ATT_zip' => $model_field_factory->createPlainTextField( |
|
266 | + 'ATT_zip', |
|
267 | + esc_html__('ZIP/Postal Code', 'event_espresso') |
|
268 | + ), |
|
269 | + 'ATT_email' => $model_field_factory->createEmailField( |
|
270 | + 'ATT_email', |
|
271 | + esc_html__('Email Address', 'event_espresso') |
|
272 | + ), |
|
273 | + 'ATT_phone' => $model_field_factory->createPlainTextField( |
|
274 | + 'ATT_phone', |
|
275 | + esc_html__('Phone', 'event_espresso') |
|
276 | + ), |
|
277 | + ), |
|
278 | + ); |
|
279 | + $this->_model_relations = array( |
|
280 | + 'Registration' => new EE_Has_Many_Relation(), |
|
281 | + 'State' => new EE_Belongs_To_Relation(), |
|
282 | + 'Country' => new EE_Belongs_To_Relation(), |
|
283 | + 'Event' => new EE_HABTM_Relation('Registration', false), |
|
284 | + 'WP_User' => new EE_Belongs_To_Relation(), |
|
285 | + 'Message' => new EE_Has_Many_Any_Relation(false), |
|
286 | + // allow deletion of attendees even if they have messages in the queue for them. |
|
287 | + 'Term_Relationship' => new EE_Has_Many_Relation(), |
|
288 | + 'Term_Taxonomy' => new EE_HABTM_Relation('Term_Relationship'), |
|
289 | + ); |
|
290 | + $this->_caps_slug = 'contacts'; |
|
291 | + $this->model_chain_to_password = ''; |
|
292 | + parent::__construct($timezone); |
|
293 | + } |
|
294 | + |
|
295 | + |
|
296 | + |
|
297 | + /** |
|
298 | + * Gets the name of the field on the attendee model corresponding to the system question string |
|
299 | + * which should be one of the keys from EEM_Attendee::_system_question_to_attendee_field_name |
|
300 | + * |
|
301 | + * @param string $system_question_string |
|
302 | + * @return string|null if not found |
|
303 | + */ |
|
304 | + public function get_attendee_field_for_system_question($system_question_string) |
|
305 | + { |
|
306 | + return isset($this->_system_question_to_attendee_field_name[ $system_question_string ]) |
|
307 | + ? $this->_system_question_to_attendee_field_name[ $system_question_string ] |
|
308 | + : null; |
|
309 | + } |
|
310 | + |
|
311 | + |
|
312 | + |
|
313 | + /** |
|
314 | + * Gets mapping from esp_question.QST_system values to their corresponding attendee field names |
|
315 | + * |
|
316 | + * @return array |
|
317 | + */ |
|
318 | + public function system_question_to_attendee_field_mapping() |
|
319 | + { |
|
320 | + return $this->_system_question_to_attendee_field_name; |
|
321 | + } |
|
322 | + |
|
323 | + |
|
324 | + |
|
325 | + /** |
|
326 | + * Gets all the attendees for a transaction (by using the esp_registration as a join table) |
|
327 | + * |
|
328 | + * @param EE_Transaction /int $transaction_id_or_obj EE_Transaction or its ID |
|
329 | + * @return EE_Attendee[]|EE_Base_Class[] |
|
330 | + * @throws EE_Error |
|
331 | + */ |
|
332 | + public function get_attendees_for_transaction($transaction_id_or_obj) |
|
333 | + { |
|
334 | + return $this->get_all( |
|
335 | + array( |
|
336 | + array( |
|
337 | + 'Registration.Transaction.TXN_ID' => $transaction_id_or_obj instanceof EE_Transaction |
|
338 | + ? $transaction_id_or_obj->ID() |
|
339 | + : $transaction_id_or_obj, |
|
340 | + ), |
|
341 | + ) |
|
342 | + ); |
|
343 | + } |
|
344 | + |
|
345 | + |
|
346 | + |
|
347 | + /** |
|
348 | + * retrieve a single attendee from db via their ID |
|
349 | + * |
|
350 | + * @param $ATT_ID |
|
351 | + * @return mixed array on success, FALSE on fail |
|
352 | + * @deprecated |
|
353 | + */ |
|
354 | + public function get_attendee_by_ID($ATT_ID = false) |
|
355 | + { |
|
356 | + // retrieve a particular EE_Attendee |
|
357 | + return $this->get_one_by_ID($ATT_ID); |
|
358 | + } |
|
359 | + |
|
360 | + |
|
361 | + |
|
362 | + /** |
|
363 | + * retrieve a single attendee from db via their ID |
|
364 | + * |
|
365 | + * @param array $where_cols_n_values |
|
366 | + * @return mixed array on success, FALSE on fail |
|
367 | + * @throws EE_Error |
|
368 | + */ |
|
369 | + public function get_attendee($where_cols_n_values = array()) |
|
370 | + { |
|
371 | + if (empty($where_cols_n_values)) { |
|
372 | + return false; |
|
373 | + } |
|
374 | + $attendee = $this->get_all(array($where_cols_n_values)); |
|
375 | + if (! empty($attendee)) { |
|
376 | + return array_shift($attendee); |
|
377 | + } |
|
378 | + return false; |
|
379 | + } |
|
380 | + |
|
381 | + |
|
382 | + |
|
383 | + /** |
|
384 | + * Search for an existing Attendee record in the DB |
|
385 | + * |
|
386 | + * @param array $where_cols_n_values |
|
387 | + * @return bool|mixed |
|
388 | + * @throws EE_Error |
|
389 | + */ |
|
390 | + public function find_existing_attendee($where_cols_n_values = null) |
|
391 | + { |
|
392 | + // search by combo of first and last names plus the email address |
|
393 | + $attendee_data_keys = array( |
|
394 | + 'ATT_fname' => $this->_ATT_fname, |
|
395 | + 'ATT_lname' => $this->_ATT_lname, |
|
396 | + 'ATT_email' => $this->_ATT_email, |
|
397 | + ); |
|
398 | + // no search params means attendee object already exists. |
|
399 | + $where_cols_n_values = is_array($where_cols_n_values) && ! empty($where_cols_n_values) |
|
400 | + ? $where_cols_n_values |
|
401 | + : $attendee_data_keys; |
|
402 | + $valid_data = true; |
|
403 | + // check for required values |
|
404 | + $valid_data = isset($where_cols_n_values['ATT_fname']) && ! empty($where_cols_n_values['ATT_fname']) |
|
405 | + ? $valid_data |
|
406 | + : false; |
|
407 | + $valid_data = isset($where_cols_n_values['ATT_lname']) && ! empty($where_cols_n_values['ATT_lname']) |
|
408 | + ? $valid_data |
|
409 | + : false; |
|
410 | + $valid_data = isset($where_cols_n_values['ATT_email']) && ! empty($where_cols_n_values['ATT_email']) |
|
411 | + ? $valid_data |
|
412 | + : false; |
|
413 | + if ($valid_data) { |
|
414 | + $attendee = $this->get_attendee($where_cols_n_values); |
|
415 | + if ($attendee instanceof EE_Attendee) { |
|
416 | + return $attendee; |
|
417 | + } |
|
418 | + } |
|
419 | + return false; |
|
420 | + } |
|
421 | + |
|
422 | + |
|
423 | + |
|
424 | + /** |
|
425 | + * Takes an incoming array of EE_Registration ids |
|
426 | + * and sends back a list of corresponding non duplicate EE_Attendee objects. |
|
427 | + * |
|
428 | + * @since 4.3.0 |
|
429 | + * @param array $ids array of EE_Registration ids |
|
430 | + * @return EE_Attendee[]|EE_Base_Class[] |
|
431 | + * @throws EE_Error |
|
432 | + */ |
|
433 | + public function get_array_of_contacts_from_reg_ids($ids) |
|
434 | + { |
|
435 | + $ids = (array) $ids; |
|
436 | + $_where = array( |
|
437 | + 'Registration.REG_ID' => array('in', $ids), |
|
438 | + ); |
|
439 | + return $this->get_all(array($_where)); |
|
440 | + } |
|
441 | 441 | } |