Completed
Branch decaf-fixes/replace-request-ha... (dd0ac0)
by
unknown
04:45 queued 03:02
created
core/business/EE_Transaction_Payments.class.php 2 patches
Indentation   +419 added lines, -419 removed lines patch added patch discarded remove patch
@@ -16,423 +16,423 @@
 block discarded – undo
16 16
 class EE_Transaction_Payments
17 17
 {
18 18
 
19
-    /**
20
-     * @var EE_Transaction_Payments $_instance
21
-     * @access    private
22
-     */
23
-    private static $_instance;
24
-
25
-    /**
26
-     * @deprecated
27
-     * @var string
28
-     */
29
-    protected $_old_txn_status;
30
-
31
-    /**
32
-     * @deprecated
33
-     * @var string
34
-     */
35
-    protected $_new_txn_status;
36
-
37
-
38
-    /**
39
-     * @singleton method used to instantiate class object
40
-     * @access    public
41
-     * @return EE_Transaction_Payments instance
42
-     */
43
-    public static function instance()
44
-    {
45
-        // check if class object is instantiated
46
-        if (! self::$_instance instanceof EE_Transaction_Payments) {
47
-            self::$_instance = new self();
48
-        }
49
-        return self::$_instance;
50
-    }
51
-
52
-
53
-    /**
54
-     * recalculate_transaction_total
55
-     *
56
-     * @access private
57
-     * @param EE_Transaction $transaction
58
-     * @param bool           $update_txn
59
-     * @return bool true if TXN total was updated, false if not
60
-     * @throws \EE_Error
61
-     */
62
-    public function recalculate_transaction_total(EE_Transaction $transaction, $update_txn = true)
63
-    {
64
-        $total_line_item = $transaction->total_line_item();
65
-        if (! $total_line_item instanceof EE_Line_Item) {
66
-            EE_Error::add_error(
67
-                sprintf(
68
-                    __('The Total Line Item for Transaction %1$d\'s was not found or is invalid.', 'event_espresso'),
69
-                    $transaction->ID()
70
-                ),
71
-                __FILE__,
72
-                __FUNCTION__,
73
-                __LINE__
74
-            );
75
-            return false;
76
-        }
77
-        $new_total = $total_line_item->recalculate_total_including_taxes();
78
-        $transaction->set_total($new_total);
79
-        if ($update_txn) {
80
-            return $transaction->save() ? true : false;
81
-        }
82
-        return false;
83
-    }
84
-
85
-
86
-    /**
87
-     * Updates the provided EE_Transaction with all the applicable payments
88
-     * returns a boolean for whether the TXN was saved to the db
89
-     * (meaning a status change occurred)
90
-     * or not saved (which could **still** mean that
91
-     * the TXN status changed, but just was not yet saved).
92
-     * So if passing a value of false for the $update_txn param,
93
-     * then client code needs to take responsibility for saving the TXN
94
-     * regardless of what happens within EE_Transaction_Payments;
95
-     *
96
-     * @param            EE_Transaction /int $transaction_obj_or_id EE_Transaction or its ID
97
-     * @param    boolean $update_txn whether to save the TXN
98
-     * @return    boolean        whether the TXN was saved
99
-     * @throws \EE_Error
100
-     */
101
-    public function calculate_total_payments_and_update_status(EE_Transaction $transaction, $update_txn = true)
102
-    {
103
-        // verify transaction
104
-        if (! $transaction instanceof EE_Transaction) {
105
-            EE_Error::add_error(
106
-                __('Please provide a valid EE_Transaction object.', 'event_espresso'),
107
-                __FILE__,
108
-                __FUNCTION__,
109
-                __LINE__
110
-            );
111
-            return false;
112
-        }
113
-        // calculate total paid
114
-        $total_paid = $this->recalculate_total_payments_for_transaction($transaction);
115
-        // if total paid has changed
116
-        if ($total_paid !== false && (float) $total_paid !== $transaction->paid()) {
117
-            $transaction->set_paid($total_paid);
118
-            // maybe update status, and make sure to save transaction if not done already
119
-            if (! $transaction->update_status_based_on_total_paid($update_txn)) {
120
-                if ($update_txn) {
121
-                    return $transaction->save() ? true : false;
122
-                }
123
-            } else {
124
-                // the status got updated and was saved by
125
-                // update_transaction_status_based_on_total_paid()
126
-                return true;
127
-            }
128
-        }
129
-        return false;
130
-    }
131
-
132
-
133
-    /**
134
-     * recalculate_total_payments_for_transaction
135
-     *
136
-     * @access public
137
-     * @param EE_Transaction $transaction
138
-     * @param string         $payment_status One of EEM_Payment's statuses, like 'PAP' (Approved).
139
-     *                                       By default, searches for approved payments
140
-     * @return float|false   float on success, false on fail
141
-     * @throws \EE_Error
142
-     */
143
-    public function recalculate_total_payments_for_transaction(
144
-        EE_Transaction $transaction,
145
-        $payment_status = EEM_Payment::status_id_approved
146
-    ) {
147
-        // verify transaction
148
-        if (! $transaction instanceof EE_Transaction) {
149
-            EE_Error::add_error(
150
-                __('Please provide a valid EE_Transaction object.', 'event_espresso'),
151
-                __FILE__,
152
-                __FUNCTION__,
153
-                __LINE__
154
-            );
155
-            return false;
156
-        }
157
-        // ensure Payment model is loaded
158
-        EE_Registry::instance()->load_model('Payment');
159
-        // calls EEM_Base::sum()
160
-        return EEM_Payment::instance()->sum(
161
-            // query params
162
-            array(array('TXN_ID' => $transaction->ID(), 'STS_ID' => $payment_status)),
163
-            // field to sum
164
-            'PAY_amount'
165
-        );
166
-    }
167
-
168
-
169
-    /**
170
-     * delete_payment_and_update_transaction
171
-     * Before deleting the selected payment, we fetch it's transaction,
172
-     * then delete the payment, and update the transactions' amount paid.
173
-     *
174
-     * @param EE_Payment $payment
175
-     * @return boolean
176
-     * @throws \EE_Error
177
-     */
178
-    public function delete_payment_and_update_transaction(EE_Payment $payment)
179
-    {
180
-        // verify payment
181
-        if (! $payment instanceof EE_Payment) {
182
-            EE_Error::add_error(
183
-                __('A valid Payment object was not received.', 'event_espresso'),
184
-                __FILE__,
185
-                __FUNCTION__,
186
-                __LINE__
187
-            );
188
-            return false;
189
-        }
190
-        if (! $this->delete_registration_payments_and_update_registrations($payment)) {
191
-            return false;
192
-        }
193
-        if (! $payment->delete()) {
194
-            EE_Error::add_error(
195
-                __('The payment could not be deleted.', 'event_espresso'),
196
-                __FILE__,
197
-                __FUNCTION__,
198
-                __LINE__
199
-            );
200
-            return false;
201
-        }
202
-
203
-        $transaction = $payment->transaction();
204
-        $TXN_status = $transaction->status_ID();
205
-        if ($TXN_status === EEM_Transaction::abandoned_status_code
206
-            || $TXN_status === EEM_Transaction::failed_status_code
207
-            || $payment->amount() === 0
208
-        ) {
209
-            EE_Error::add_success(__('The Payment was successfully deleted.', 'event_espresso'));
210
-            return true;
211
-        }
212
-
213
-
214
-        // if this fails, that just means that the transaction didn't get its status changed and/or updated.
215
-        // however the payment was still deleted.
216
-        if (! $this->calculate_total_payments_and_update_status($transaction)) {
217
-            EE_Error::add_attention(
218
-                __(
219
-                    'It appears that the Payment was deleted but no change was recorded for the Transaction for an unknown reason. Please verify that all data for this Transaction looks correct..',
220
-                    'event_espresso'
221
-                ),
222
-                __FILE__,
223
-                __FUNCTION__,
224
-                __LINE__
225
-            );
226
-            return true;
227
-        }
228
-
229
-        EE_Error::add_success(
230
-            __(
231
-                'The Payment was successfully deleted, and the Transaction has been updated accordingly.',
232
-                'event_espresso'
233
-            )
234
-        );
235
-        return true;
236
-    }
237
-
238
-
239
-    /**
240
-     * delete_registration_payments_and_update_registrations
241
-     *
242
-     * removes all registration payment records associated with a payment
243
-     * and subtracts their amounts from the corresponding registrations REG_paid field
244
-     *
245
-     * @param EE_Payment $payment
246
-     * @param array      $reg_payment_query_params
247
-     * @return bool
248
-     * @throws \EE_Error
249
-     */
250
-    public function delete_registration_payments_and_update_registrations(
251
-        EE_Payment $payment,
252
-        $reg_payment_query_params = array()
253
-    ) {
254
-        $save_payment = false;
255
-        $reg_payment_query_params = ! empty($reg_payment_query_params) ? $reg_payment_query_params
256
-            : array(array('PAY_ID' => $payment->ID()));
257
-        $registration_payments = EEM_Registration_Payment::instance()->get_all($reg_payment_query_params);
258
-        if (! empty($registration_payments)) {
259
-            foreach ($registration_payments as $registration_payment) {
260
-                if ($registration_payment instanceof EE_Registration_Payment) {
261
-                    $amount_paid = $registration_payment->amount();
262
-                    $registration = $registration_payment->registration();
263
-                    if ($registration instanceof EE_Registration) {
264
-                        $registration->set_paid($registration->paid() - $amount_paid);
265
-                        if ($registration->save() !== false) {
266
-                            $registration_payment->delete_permanently();
267
-                            $save_payment = true;
268
-                        }
269
-                    } else {
270
-                        EE_Error::add_error(
271
-                            sprintf(
272
-                                __(
273
-                                    'An invalid Registration object was associated with Registration Payment ID# %1$d.',
274
-                                    'event_espresso'
275
-                                ),
276
-                                $registration_payment->ID()
277
-                            ),
278
-                            __FILE__,
279
-                            __FUNCTION__,
280
-                            __LINE__
281
-                        );
282
-                        return false;
283
-                    }
284
-                } else {
285
-                    EE_Error::add_error(
286
-                        sprintf(
287
-                            __(
288
-                                'An invalid Registration Payment object was associated with payment ID# %1$d.',
289
-                                'event_espresso'
290
-                            ),
291
-                            $payment->ID()
292
-                        ),
293
-                        __FILE__,
294
-                        __FUNCTION__,
295
-                        __LINE__
296
-                    );
297
-                    return false;
298
-                }
299
-            }
300
-        }
301
-        if ($save_payment) {
302
-            $payment->save();
303
-        }
304
-        return true;
305
-    }
306
-
307
-
308
-
309
-    /********************************** DEPRECATED METHODS **********************************/
310
-
311
-
312
-    /**
313
-     * possibly toggles TXN status
314
-     *
315
-     * @deprecated 4.9.1
316
-     * @param EE_Transaction $transaction
317
-     * @param    boolean     $update_txn whether to save the TXN
318
-     * @return    boolean        whether the TXN was saved
319
-     * @throws \EE_Error
320
-     */
321
-    public function update_transaction_status_based_on_total_paid(EE_Transaction $transaction, $update_txn = true)
322
-    {
323
-        EE_Error::doing_it_wrong(
324
-            __CLASS__ . '::' . __FUNCTION__,
325
-            sprintf(
326
-                __('This method is deprecated. Please use "%s" instead', 'event_espresso'),
327
-                'EE_Transaction::update_status_based_on_total_paid()'
328
-            ),
329
-            '4.9.1',
330
-            '5.0.0'
331
-        );
332
-        // verify transaction
333
-        if (! $transaction instanceof EE_Transaction) {
334
-            EE_Error::add_error(
335
-                __('Please provide a valid EE_Transaction object.', 'event_espresso'),
336
-                __FILE__,
337
-                __FUNCTION__,
338
-                __LINE__
339
-            );
340
-            return false;
341
-        }
342
-        // set transaction status based on comparison of TXN_paid vs TXN_total
343
-        return $transaction->update_status_based_on_total_paid($update_txn);
344
-    }
345
-
346
-
347
-    /**
348
-     * @deprecated 4.9.12
349
-     * @return string
350
-     */
351
-    public function old_txn_status()
352
-    {
353
-        EE_Error::doing_it_wrong(
354
-            __METHOD__,
355
-            esc_html__(
356
-                'This logic has been moved into \EE_Transaction::old_txn_status(), please use that method instead.',
357
-                'event_espresso'
358
-            ),
359
-            '4.9.12'
360
-        );
361
-        return $this->_old_txn_status;
362
-    }
363
-
364
-
365
-    /**
366
-     * @deprecated 4.9.12
367
-     * @param string $old_txn_status
368
-     */
369
-    public function set_old_txn_status($old_txn_status)
370
-    {
371
-        EE_Error::doing_it_wrong(
372
-            __METHOD__,
373
-            esc_html__(
374
-                'This logic has been moved into \EE_Transaction::set_old_txn_status(), please use that method instead.',
375
-                'event_espresso'
376
-            ),
377
-            '4.9.12'
378
-        );
379
-        // only set the first time
380
-        if ($this->_old_txn_status === null) {
381
-            $this->_old_txn_status = $old_txn_status;
382
-        }
383
-    }
384
-
385
-
386
-    /**
387
-     * @deprecated 4.9.12
388
-     * @return string
389
-     */
390
-    public function new_txn_status()
391
-    {
392
-        EE_Error::doing_it_wrong(
393
-            __METHOD__,
394
-            esc_html__(
395
-                'This logic has been removed. Please just use \EE_Transaction::status_ID() instead.',
396
-                'event_espresso'
397
-            ),
398
-            '4.9.12'
399
-        );
400
-        return $this->_new_txn_status;
401
-    }
402
-
403
-
404
-    /**
405
-     * @deprecated 4.9.12
406
-     * @param string $new_txn_status
407
-     */
408
-    public function set_new_txn_status($new_txn_status)
409
-    {
410
-        EE_Error::doing_it_wrong(
411
-            __METHOD__,
412
-            esc_html__(
413
-                'This logic has been removed. Please just use \EE_Transaction::set_status() instead.',
414
-                'event_espresso'
415
-            ),
416
-            '4.9.12'
417
-        );
418
-        $this->_new_txn_status = $new_txn_status;
419
-    }
420
-
421
-
422
-    /**
423
-     * @deprecated 4.9.12
424
-     * @return bool
425
-     */
426
-    public function txn_status_updated()
427
-    {
428
-        EE_Error::doing_it_wrong(
429
-            __METHOD__,
430
-            esc_html__(
431
-                'This logic has been moved into \EE_Transaction::txn_status_updated(), please use that method instead.',
432
-                'event_espresso'
433
-            ),
434
-            '4.9.12'
435
-        );
436
-        return $this->_new_txn_status !== $this->_old_txn_status && $this->_old_txn_status !== null ? true : false;
437
-    }
19
+	/**
20
+	 * @var EE_Transaction_Payments $_instance
21
+	 * @access    private
22
+	 */
23
+	private static $_instance;
24
+
25
+	/**
26
+	 * @deprecated
27
+	 * @var string
28
+	 */
29
+	protected $_old_txn_status;
30
+
31
+	/**
32
+	 * @deprecated
33
+	 * @var string
34
+	 */
35
+	protected $_new_txn_status;
36
+
37
+
38
+	/**
39
+	 * @singleton method used to instantiate class object
40
+	 * @access    public
41
+	 * @return EE_Transaction_Payments instance
42
+	 */
43
+	public static function instance()
44
+	{
45
+		// check if class object is instantiated
46
+		if (! self::$_instance instanceof EE_Transaction_Payments) {
47
+			self::$_instance = new self();
48
+		}
49
+		return self::$_instance;
50
+	}
51
+
52
+
53
+	/**
54
+	 * recalculate_transaction_total
55
+	 *
56
+	 * @access private
57
+	 * @param EE_Transaction $transaction
58
+	 * @param bool           $update_txn
59
+	 * @return bool true if TXN total was updated, false if not
60
+	 * @throws \EE_Error
61
+	 */
62
+	public function recalculate_transaction_total(EE_Transaction $transaction, $update_txn = true)
63
+	{
64
+		$total_line_item = $transaction->total_line_item();
65
+		if (! $total_line_item instanceof EE_Line_Item) {
66
+			EE_Error::add_error(
67
+				sprintf(
68
+					__('The Total Line Item for Transaction %1$d\'s was not found or is invalid.', 'event_espresso'),
69
+					$transaction->ID()
70
+				),
71
+				__FILE__,
72
+				__FUNCTION__,
73
+				__LINE__
74
+			);
75
+			return false;
76
+		}
77
+		$new_total = $total_line_item->recalculate_total_including_taxes();
78
+		$transaction->set_total($new_total);
79
+		if ($update_txn) {
80
+			return $transaction->save() ? true : false;
81
+		}
82
+		return false;
83
+	}
84
+
85
+
86
+	/**
87
+	 * Updates the provided EE_Transaction with all the applicable payments
88
+	 * returns a boolean for whether the TXN was saved to the db
89
+	 * (meaning a status change occurred)
90
+	 * or not saved (which could **still** mean that
91
+	 * the TXN status changed, but just was not yet saved).
92
+	 * So if passing a value of false for the $update_txn param,
93
+	 * then client code needs to take responsibility for saving the TXN
94
+	 * regardless of what happens within EE_Transaction_Payments;
95
+	 *
96
+	 * @param            EE_Transaction /int $transaction_obj_or_id EE_Transaction or its ID
97
+	 * @param    boolean $update_txn whether to save the TXN
98
+	 * @return    boolean        whether the TXN was saved
99
+	 * @throws \EE_Error
100
+	 */
101
+	public function calculate_total_payments_and_update_status(EE_Transaction $transaction, $update_txn = true)
102
+	{
103
+		// verify transaction
104
+		if (! $transaction instanceof EE_Transaction) {
105
+			EE_Error::add_error(
106
+				__('Please provide a valid EE_Transaction object.', 'event_espresso'),
107
+				__FILE__,
108
+				__FUNCTION__,
109
+				__LINE__
110
+			);
111
+			return false;
112
+		}
113
+		// calculate total paid
114
+		$total_paid = $this->recalculate_total_payments_for_transaction($transaction);
115
+		// if total paid has changed
116
+		if ($total_paid !== false && (float) $total_paid !== $transaction->paid()) {
117
+			$transaction->set_paid($total_paid);
118
+			// maybe update status, and make sure to save transaction if not done already
119
+			if (! $transaction->update_status_based_on_total_paid($update_txn)) {
120
+				if ($update_txn) {
121
+					return $transaction->save() ? true : false;
122
+				}
123
+			} else {
124
+				// the status got updated and was saved by
125
+				// update_transaction_status_based_on_total_paid()
126
+				return true;
127
+			}
128
+		}
129
+		return false;
130
+	}
131
+
132
+
133
+	/**
134
+	 * recalculate_total_payments_for_transaction
135
+	 *
136
+	 * @access public
137
+	 * @param EE_Transaction $transaction
138
+	 * @param string         $payment_status One of EEM_Payment's statuses, like 'PAP' (Approved).
139
+	 *                                       By default, searches for approved payments
140
+	 * @return float|false   float on success, false on fail
141
+	 * @throws \EE_Error
142
+	 */
143
+	public function recalculate_total_payments_for_transaction(
144
+		EE_Transaction $transaction,
145
+		$payment_status = EEM_Payment::status_id_approved
146
+	) {
147
+		// verify transaction
148
+		if (! $transaction instanceof EE_Transaction) {
149
+			EE_Error::add_error(
150
+				__('Please provide a valid EE_Transaction object.', 'event_espresso'),
151
+				__FILE__,
152
+				__FUNCTION__,
153
+				__LINE__
154
+			);
155
+			return false;
156
+		}
157
+		// ensure Payment model is loaded
158
+		EE_Registry::instance()->load_model('Payment');
159
+		// calls EEM_Base::sum()
160
+		return EEM_Payment::instance()->sum(
161
+			// query params
162
+			array(array('TXN_ID' => $transaction->ID(), 'STS_ID' => $payment_status)),
163
+			// field to sum
164
+			'PAY_amount'
165
+		);
166
+	}
167
+
168
+
169
+	/**
170
+	 * delete_payment_and_update_transaction
171
+	 * Before deleting the selected payment, we fetch it's transaction,
172
+	 * then delete the payment, and update the transactions' amount paid.
173
+	 *
174
+	 * @param EE_Payment $payment
175
+	 * @return boolean
176
+	 * @throws \EE_Error
177
+	 */
178
+	public function delete_payment_and_update_transaction(EE_Payment $payment)
179
+	{
180
+		// verify payment
181
+		if (! $payment instanceof EE_Payment) {
182
+			EE_Error::add_error(
183
+				__('A valid Payment object was not received.', 'event_espresso'),
184
+				__FILE__,
185
+				__FUNCTION__,
186
+				__LINE__
187
+			);
188
+			return false;
189
+		}
190
+		if (! $this->delete_registration_payments_and_update_registrations($payment)) {
191
+			return false;
192
+		}
193
+		if (! $payment->delete()) {
194
+			EE_Error::add_error(
195
+				__('The payment could not be deleted.', 'event_espresso'),
196
+				__FILE__,
197
+				__FUNCTION__,
198
+				__LINE__
199
+			);
200
+			return false;
201
+		}
202
+
203
+		$transaction = $payment->transaction();
204
+		$TXN_status = $transaction->status_ID();
205
+		if ($TXN_status === EEM_Transaction::abandoned_status_code
206
+			|| $TXN_status === EEM_Transaction::failed_status_code
207
+			|| $payment->amount() === 0
208
+		) {
209
+			EE_Error::add_success(__('The Payment was successfully deleted.', 'event_espresso'));
210
+			return true;
211
+		}
212
+
213
+
214
+		// if this fails, that just means that the transaction didn't get its status changed and/or updated.
215
+		// however the payment was still deleted.
216
+		if (! $this->calculate_total_payments_and_update_status($transaction)) {
217
+			EE_Error::add_attention(
218
+				__(
219
+					'It appears that the Payment was deleted but no change was recorded for the Transaction for an unknown reason. Please verify that all data for this Transaction looks correct..',
220
+					'event_espresso'
221
+				),
222
+				__FILE__,
223
+				__FUNCTION__,
224
+				__LINE__
225
+			);
226
+			return true;
227
+		}
228
+
229
+		EE_Error::add_success(
230
+			__(
231
+				'The Payment was successfully deleted, and the Transaction has been updated accordingly.',
232
+				'event_espresso'
233
+			)
234
+		);
235
+		return true;
236
+	}
237
+
238
+
239
+	/**
240
+	 * delete_registration_payments_and_update_registrations
241
+	 *
242
+	 * removes all registration payment records associated with a payment
243
+	 * and subtracts their amounts from the corresponding registrations REG_paid field
244
+	 *
245
+	 * @param EE_Payment $payment
246
+	 * @param array      $reg_payment_query_params
247
+	 * @return bool
248
+	 * @throws \EE_Error
249
+	 */
250
+	public function delete_registration_payments_and_update_registrations(
251
+		EE_Payment $payment,
252
+		$reg_payment_query_params = array()
253
+	) {
254
+		$save_payment = false;
255
+		$reg_payment_query_params = ! empty($reg_payment_query_params) ? $reg_payment_query_params
256
+			: array(array('PAY_ID' => $payment->ID()));
257
+		$registration_payments = EEM_Registration_Payment::instance()->get_all($reg_payment_query_params);
258
+		if (! empty($registration_payments)) {
259
+			foreach ($registration_payments as $registration_payment) {
260
+				if ($registration_payment instanceof EE_Registration_Payment) {
261
+					$amount_paid = $registration_payment->amount();
262
+					$registration = $registration_payment->registration();
263
+					if ($registration instanceof EE_Registration) {
264
+						$registration->set_paid($registration->paid() - $amount_paid);
265
+						if ($registration->save() !== false) {
266
+							$registration_payment->delete_permanently();
267
+							$save_payment = true;
268
+						}
269
+					} else {
270
+						EE_Error::add_error(
271
+							sprintf(
272
+								__(
273
+									'An invalid Registration object was associated with Registration Payment ID# %1$d.',
274
+									'event_espresso'
275
+								),
276
+								$registration_payment->ID()
277
+							),
278
+							__FILE__,
279
+							__FUNCTION__,
280
+							__LINE__
281
+						);
282
+						return false;
283
+					}
284
+				} else {
285
+					EE_Error::add_error(
286
+						sprintf(
287
+							__(
288
+								'An invalid Registration Payment object was associated with payment ID# %1$d.',
289
+								'event_espresso'
290
+							),
291
+							$payment->ID()
292
+						),
293
+						__FILE__,
294
+						__FUNCTION__,
295
+						__LINE__
296
+					);
297
+					return false;
298
+				}
299
+			}
300
+		}
301
+		if ($save_payment) {
302
+			$payment->save();
303
+		}
304
+		return true;
305
+	}
306
+
307
+
308
+
309
+	/********************************** DEPRECATED METHODS **********************************/
310
+
311
+
312
+	/**
313
+	 * possibly toggles TXN status
314
+	 *
315
+	 * @deprecated 4.9.1
316
+	 * @param EE_Transaction $transaction
317
+	 * @param    boolean     $update_txn whether to save the TXN
318
+	 * @return    boolean        whether the TXN was saved
319
+	 * @throws \EE_Error
320
+	 */
321
+	public function update_transaction_status_based_on_total_paid(EE_Transaction $transaction, $update_txn = true)
322
+	{
323
+		EE_Error::doing_it_wrong(
324
+			__CLASS__ . '::' . __FUNCTION__,
325
+			sprintf(
326
+				__('This method is deprecated. Please use "%s" instead', 'event_espresso'),
327
+				'EE_Transaction::update_status_based_on_total_paid()'
328
+			),
329
+			'4.9.1',
330
+			'5.0.0'
331
+		);
332
+		// verify transaction
333
+		if (! $transaction instanceof EE_Transaction) {
334
+			EE_Error::add_error(
335
+				__('Please provide a valid EE_Transaction object.', 'event_espresso'),
336
+				__FILE__,
337
+				__FUNCTION__,
338
+				__LINE__
339
+			);
340
+			return false;
341
+		}
342
+		// set transaction status based on comparison of TXN_paid vs TXN_total
343
+		return $transaction->update_status_based_on_total_paid($update_txn);
344
+	}
345
+
346
+
347
+	/**
348
+	 * @deprecated 4.9.12
349
+	 * @return string
350
+	 */
351
+	public function old_txn_status()
352
+	{
353
+		EE_Error::doing_it_wrong(
354
+			__METHOD__,
355
+			esc_html__(
356
+				'This logic has been moved into \EE_Transaction::old_txn_status(), please use that method instead.',
357
+				'event_espresso'
358
+			),
359
+			'4.9.12'
360
+		);
361
+		return $this->_old_txn_status;
362
+	}
363
+
364
+
365
+	/**
366
+	 * @deprecated 4.9.12
367
+	 * @param string $old_txn_status
368
+	 */
369
+	public function set_old_txn_status($old_txn_status)
370
+	{
371
+		EE_Error::doing_it_wrong(
372
+			__METHOD__,
373
+			esc_html__(
374
+				'This logic has been moved into \EE_Transaction::set_old_txn_status(), please use that method instead.',
375
+				'event_espresso'
376
+			),
377
+			'4.9.12'
378
+		);
379
+		// only set the first time
380
+		if ($this->_old_txn_status === null) {
381
+			$this->_old_txn_status = $old_txn_status;
382
+		}
383
+	}
384
+
385
+
386
+	/**
387
+	 * @deprecated 4.9.12
388
+	 * @return string
389
+	 */
390
+	public function new_txn_status()
391
+	{
392
+		EE_Error::doing_it_wrong(
393
+			__METHOD__,
394
+			esc_html__(
395
+				'This logic has been removed. Please just use \EE_Transaction::status_ID() instead.',
396
+				'event_espresso'
397
+			),
398
+			'4.9.12'
399
+		);
400
+		return $this->_new_txn_status;
401
+	}
402
+
403
+
404
+	/**
405
+	 * @deprecated 4.9.12
406
+	 * @param string $new_txn_status
407
+	 */
408
+	public function set_new_txn_status($new_txn_status)
409
+	{
410
+		EE_Error::doing_it_wrong(
411
+			__METHOD__,
412
+			esc_html__(
413
+				'This logic has been removed. Please just use \EE_Transaction::set_status() instead.',
414
+				'event_espresso'
415
+			),
416
+			'4.9.12'
417
+		);
418
+		$this->_new_txn_status = $new_txn_status;
419
+	}
420
+
421
+
422
+	/**
423
+	 * @deprecated 4.9.12
424
+	 * @return bool
425
+	 */
426
+	public function txn_status_updated()
427
+	{
428
+		EE_Error::doing_it_wrong(
429
+			__METHOD__,
430
+			esc_html__(
431
+				'This logic has been moved into \EE_Transaction::txn_status_updated(), please use that method instead.',
432
+				'event_espresso'
433
+			),
434
+			'4.9.12'
435
+		);
436
+		return $this->_new_txn_status !== $this->_old_txn_status && $this->_old_txn_status !== null ? true : false;
437
+	}
438 438
 }
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
     public static function instance()
44 44
     {
45 45
         // check if class object is instantiated
46
-        if (! self::$_instance instanceof EE_Transaction_Payments) {
46
+        if ( ! self::$_instance instanceof EE_Transaction_Payments) {
47 47
             self::$_instance = new self();
48 48
         }
49 49
         return self::$_instance;
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
     public function recalculate_transaction_total(EE_Transaction $transaction, $update_txn = true)
63 63
     {
64 64
         $total_line_item = $transaction->total_line_item();
65
-        if (! $total_line_item instanceof EE_Line_Item) {
65
+        if ( ! $total_line_item instanceof EE_Line_Item) {
66 66
             EE_Error::add_error(
67 67
                 sprintf(
68 68
                     __('The Total Line Item for Transaction %1$d\'s was not found or is invalid.', 'event_espresso'),
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
     public function calculate_total_payments_and_update_status(EE_Transaction $transaction, $update_txn = true)
102 102
     {
103 103
         // verify transaction
104
-        if (! $transaction instanceof EE_Transaction) {
104
+        if ( ! $transaction instanceof EE_Transaction) {
105 105
             EE_Error::add_error(
106 106
                 __('Please provide a valid EE_Transaction object.', 'event_espresso'),
107 107
                 __FILE__,
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
         if ($total_paid !== false && (float) $total_paid !== $transaction->paid()) {
117 117
             $transaction->set_paid($total_paid);
118 118
             // maybe update status, and make sure to save transaction if not done already
119
-            if (! $transaction->update_status_based_on_total_paid($update_txn)) {
119
+            if ( ! $transaction->update_status_based_on_total_paid($update_txn)) {
120 120
                 if ($update_txn) {
121 121
                     return $transaction->save() ? true : false;
122 122
                 }
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
         $payment_status = EEM_Payment::status_id_approved
146 146
     ) {
147 147
         // verify transaction
148
-        if (! $transaction instanceof EE_Transaction) {
148
+        if ( ! $transaction instanceof EE_Transaction) {
149 149
             EE_Error::add_error(
150 150
                 __('Please provide a valid EE_Transaction object.', 'event_espresso'),
151 151
                 __FILE__,
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
     public function delete_payment_and_update_transaction(EE_Payment $payment)
179 179
     {
180 180
         // verify payment
181
-        if (! $payment instanceof EE_Payment) {
181
+        if ( ! $payment instanceof EE_Payment) {
182 182
             EE_Error::add_error(
183 183
                 __('A valid Payment object was not received.', 'event_espresso'),
184 184
                 __FILE__,
@@ -187,10 +187,10 @@  discard block
 block discarded – undo
187 187
             );
188 188
             return false;
189 189
         }
190
-        if (! $this->delete_registration_payments_and_update_registrations($payment)) {
190
+        if ( ! $this->delete_registration_payments_and_update_registrations($payment)) {
191 191
             return false;
192 192
         }
193
-        if (! $payment->delete()) {
193
+        if ( ! $payment->delete()) {
194 194
             EE_Error::add_error(
195 195
                 __('The payment could not be deleted.', 'event_espresso'),
196 196
                 __FILE__,
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
 
214 214
         // if this fails, that just means that the transaction didn't get its status changed and/or updated.
215 215
         // however the payment was still deleted.
216
-        if (! $this->calculate_total_payments_and_update_status($transaction)) {
216
+        if ( ! $this->calculate_total_payments_and_update_status($transaction)) {
217 217
             EE_Error::add_attention(
218 218
                 __(
219 219
                     'It appears that the Payment was deleted but no change was recorded for the Transaction for an unknown reason. Please verify that all data for this Transaction looks correct..',
@@ -255,7 +255,7 @@  discard block
 block discarded – undo
255 255
         $reg_payment_query_params = ! empty($reg_payment_query_params) ? $reg_payment_query_params
256 256
             : array(array('PAY_ID' => $payment->ID()));
257 257
         $registration_payments = EEM_Registration_Payment::instance()->get_all($reg_payment_query_params);
258
-        if (! empty($registration_payments)) {
258
+        if ( ! empty($registration_payments)) {
259 259
             foreach ($registration_payments as $registration_payment) {
260 260
                 if ($registration_payment instanceof EE_Registration_Payment) {
261 261
                     $amount_paid = $registration_payment->amount();
@@ -321,7 +321,7 @@  discard block
 block discarded – undo
321 321
     public function update_transaction_status_based_on_total_paid(EE_Transaction $transaction, $update_txn = true)
322 322
     {
323 323
         EE_Error::doing_it_wrong(
324
-            __CLASS__ . '::' . __FUNCTION__,
324
+            __CLASS__.'::'.__FUNCTION__,
325 325
             sprintf(
326 326
                 __('This method is deprecated. Please use "%s" instead', 'event_espresso'),
327 327
                 'EE_Transaction::update_status_based_on_total_paid()'
@@ -330,7 +330,7 @@  discard block
 block discarded – undo
330 330
             '5.0.0'
331 331
         );
332 332
         // verify transaction
333
-        if (! $transaction instanceof EE_Transaction) {
333
+        if ( ! $transaction instanceof EE_Transaction) {
334 334
             EE_Error::add_error(
335 335
                 __('Please provide a valid EE_Transaction object.', 'event_espresso'),
336 336
                 __FILE__,
Please login to merge, or discard this patch.
core/business/EE_Transaction_Processor.class.php 2 patches
Indentation   +944 added lines, -944 removed lines patch added patch discarded remove patch
@@ -17,948 +17,948 @@
 block discarded – undo
17 17
 class EE_Transaction_Processor extends EE_Processor_Base
18 18
 {
19 19
 
20
-    /**
21
-     * @var EE_Registration_Processor $_instance
22
-     * @access    private
23
-     */
24
-    private static $_instance;
25
-
26
-    /**
27
-     * array of query WHERE params to use when retrieving cached registrations from a transaction
28
-     *
29
-     * @var array $registration_query_params
30
-     * @access private
31
-     */
32
-    private $_registration_query_params = array();
33
-
34
-    /**
35
-     * @deprecated
36
-     * @var string
37
-     */
38
-    protected $_old_txn_status;
39
-
40
-    /**
41
-     * @deprecated
42
-     * @var string
43
-     */
44
-    protected $_new_txn_status;
45
-
46
-
47
-    /**
48
-     * @singleton method used to instantiate class object
49
-     * @access    public
50
-     * @param array $registration_query_params
51
-     * @return EE_Transaction_Processor instance
52
-     */
53
-    public static function instance($registration_query_params = array())
54
-    {
55
-        // check if class object is instantiated
56
-        if (! self::$_instance instanceof EE_Transaction_Processor) {
57
-            self::$_instance = new self($registration_query_params);
58
-        }
59
-        return self::$_instance;
60
-    }
61
-
62
-
63
-    /**
64
-     * @param array $registration_query_params
65
-     */
66
-    private function __construct($registration_query_params = array())
67
-    {
68
-        // make sure some query params are set for retrieving registrations
69
-        $this->_set_registration_query_params($registration_query_params);
70
-    }
71
-
72
-
73
-    /**
74
-     * @access private
75
-     * @param array $registration_query_params
76
-     */
77
-    private function _set_registration_query_params($registration_query_params)
78
-    {
79
-        $this->_registration_query_params = ! empty($registration_query_params) ? $registration_query_params
80
-            : array('order_by' => array('REG_count' => 'ASC'));
81
-    }
82
-
83
-
84
-    /**
85
-     * manually_update_registration_statuses
86
-     *
87
-     * @access public
88
-     * @param EE_Transaction $transaction
89
-     * @param string         $new_reg_status
90
-     * @param array          $registration_query_params array of query WHERE params to use
91
-     *                                                  when retrieving cached registrations from a transaction
92
-     * @return    boolean
93
-     * @throws \EE_Error
94
-     */
95
-    public function manually_update_registration_statuses(
96
-        EE_Transaction $transaction,
97
-        $new_reg_status = '',
98
-        $registration_query_params = array()
99
-    ) {
100
-        $status_updates = $this->_call_method_on_registrations_via_Registration_Processor(
101
-            'manually_update_registration_status',
102
-            $transaction,
103
-            $registration_query_params,
104
-            $new_reg_status
105
-        );
106
-        // send messages
107
-        /** @type EE_Registration_Processor $registration_processor */
108
-        $registration_processor = EE_Registry::instance()->load_class('Registration_Processor');
109
-        $registration_processor->trigger_registration_update_notifications(
110
-            $transaction->primary_registration(),
111
-            array('manually_updated' => true)
112
-        );
113
-        do_action(
114
-            'AHEE__EE_Transaction_Processor__manually_update_registration_statuses',
115
-            $transaction,
116
-            $status_updates
117
-        );
118
-        return $status_updates;
119
-    }
120
-
121
-
122
-    /**
123
-     * toggle_registration_statuses_for_default_approved_events
124
-     *
125
-     * @access public
126
-     * @param EE_Transaction $transaction
127
-     * @param array          $registration_query_params array of query WHERE params to use
128
-     *                                                  when retrieving cached registrations from a transaction
129
-     * @return    boolean
130
-     * @throws \EE_Error
131
-     */
132
-    public function toggle_registration_statuses_for_default_approved_events(
133
-        EE_Transaction $transaction,
134
-        $registration_query_params = array()
135
-    ) {
136
-        $status_updates = $this->_call_method_on_registrations_via_Registration_Processor(
137
-            'toggle_registration_status_for_default_approved_events',
138
-            $transaction,
139
-            $registration_query_params
140
-        );
141
-        do_action(
142
-            'AHEE__EE_Transaction_Processor__toggle_registration_statuses_for_default_approved_events',
143
-            $transaction,
144
-            $status_updates
145
-        );
146
-        return $status_updates;
147
-    }
148
-
149
-
150
-    /**
151
-     * toggle_registration_statuses_if_no_monies_owing
152
-     *
153
-     * @access public
154
-     * @param EE_Transaction $transaction
155
-     * @param array          $registration_query_params array of query WHERE params to use
156
-     *                                                  when retrieving cached registrations from a transaction
157
-     * @return    boolean
158
-     * @throws \EE_Error
159
-     */
160
-    public function toggle_registration_statuses_if_no_monies_owing(
161
-        EE_Transaction $transaction,
162
-        $registration_query_params = array()
163
-    ) {
164
-        $status_updates = $this->_call_method_on_registrations_via_Registration_Processor(
165
-            'toggle_registration_status_if_no_monies_owing',
166
-            $transaction,
167
-            $registration_query_params
168
-        );
169
-        do_action(
170
-            'AHEE__EE_Transaction_Processor__toggle_registration_statuses_if_no_monies_owing',
171
-            $transaction,
172
-            $status_updates
173
-        );
174
-        return $status_updates;
175
-    }
176
-
177
-
178
-    /**
179
-     * update_transaction_and_registrations_after_checkout_or_payment
180
-     * cycles thru related registrations and calls update_registration_after_checkout_or_payment() on each
181
-     *
182
-     * @param EE_Transaction     $transaction
183
-     * @param \EE_Payment | NULL $payment
184
-     * @param array              $registration_query_params    array of query WHERE params to use
185
-     *                                                         when retrieving cached registrations from a transaction
186
-     * @param bool               $trigger_notifications        whether or not to call
187
-     *                                                         \EE_Registration_Processor::trigger_registration_update_notifications()
188
-     * @return array
189
-     * @throws \EE_Error
190
-     */
191
-    public function update_transaction_and_registrations_after_checkout_or_payment(
192
-        EE_Transaction $transaction,
193
-        $payment = null,
194
-        $registration_query_params = array(),
195
-        $trigger_notifications = true
196
-    ) {
197
-        // make sure some query params are set for retrieving registrations
198
-        $this->_set_registration_query_params($registration_query_params);
199
-        // get final reg step status
200
-        $finalized = $transaction->final_reg_step_completed();
201
-        // if the 'finalize_registration' step has been initiated (has a timestamp)
202
-        // but has not yet been fully completed (TRUE)
203
-        if (is_int($finalized) && $finalized !== false && $finalized !== true) {
204
-            $transaction->set_reg_step_completed('finalize_registration');
205
-            $finalized = true;
206
-        }
207
-        $transaction->save();
208
-        // array of details to aid in decision making by systems
209
-        $update_params = array(
210
-            'old_txn_status'  => $transaction->old_txn_status(),
211
-            'new_txn_status'  => $transaction->status_ID(),
212
-            'finalized'       => $finalized,
213
-            'revisit'         => $this->_revisit,
214
-            'payment_updates' => $payment instanceof EE_Payment ? true : false,
215
-            'last_payment'    => $payment,
216
-        );
217
-        // now update the registrations and add the results to our $update_params
218
-        $update_params['status_updates'] = $this->_call_method_on_registrations_via_Registration_Processor(
219
-            'update_registration_after_checkout_or_payment',
220
-            $transaction,
221
-            $this->_registration_query_params,
222
-            $update_params
223
-        );
224
-        if ($trigger_notifications) {
225
-            // send messages
226
-            /** @type EE_Registration_Processor $registration_processor */
227
-            $registration_processor = EE_Registry::instance()->load_class('Registration_Processor');
228
-            $registration_processor->trigger_registration_update_notifications(
229
-                $transaction->primary_registration(),
230
-                $update_params
231
-            );
232
-        }
233
-        do_action(
234
-            'AHEE__EE_Transaction_Processor__update_transaction_and_registrations_after_checkout_or_payment',
235
-            $transaction,
236
-            $update_params
237
-        );
238
-        return $update_params;
239
-    }
240
-
241
-
242
-    /**
243
-     * update_transaction_after_registration_reopened
244
-     * readjusts TXN and Line Item totals after a registration is changed from
245
-     * cancelled or declined to another reg status such as pending payment or approved
246
-     *
247
-     * @param \EE_Registration $registration
248
-     * @param array            $closed_reg_statuses
249
-     * @param bool             $update_txn
250
-     * @return bool
251
-     * @throws \EE_Error
252
-     */
253
-    public function update_transaction_after_reinstating_canceled_registration(
254
-        EE_Registration $registration,
255
-        $closed_reg_statuses = array(),
256
-        $update_txn = true
257
-    ) {
258
-        // these reg statuses should not be considered in any calculations involving monies owing
259
-        $closed_reg_statuses = ! empty($closed_reg_statuses) ? $closed_reg_statuses
260
-            : EEM_Registration::closed_reg_statuses();
261
-        if (in_array($registration->status_ID(), $closed_reg_statuses, true)) {
262
-            return false;
263
-        }
264
-        try {
265
-            $transaction = $this->get_transaction_for_registration($registration);
266
-            $ticket_line_item = $this->get_ticket_line_item_for_transaction_registration(
267
-                $transaction,
268
-                $registration
269
-            );
270
-            // un-cancel the ticket
271
-            $success = EEH_Line_Item::reinstate_canceled_ticket_line_item($ticket_line_item);
272
-        } catch (EE_Error $e) {
273
-            EE_Error::add_error(
274
-                sprintf(
275
-                    __(
276
-                        'The Ticket Line Item for Registration %1$d could not be reinstated because :%2$s%3$s',
277
-                        'event_espresso'
278
-                    ),
279
-                    $registration->ID(),
280
-                    '<br />',
281
-                    $e->getMessage()
282
-                ),
283
-                __FILE__,
284
-                __FUNCTION__,
285
-                __LINE__
286
-            );
287
-            return false;
288
-        }
289
-        if ($update_txn) {
290
-            return $transaction->save() ? $success : false;
291
-        }
292
-        return $success;
293
-    }
294
-
295
-
296
-    /**
297
-     * update_transaction_after_canceled_or_declined_registration
298
-     * readjusts TXN and Line Item totals after a registration is cancelled or declined
299
-     *
300
-     * @param \EE_Registration $registration
301
-     * @param array            $closed_reg_statuses
302
-     * @param bool             $update_txn
303
-     * @return bool
304
-     * @throws \EE_Error
305
-     */
306
-    public function update_transaction_after_canceled_or_declined_registration(
307
-        EE_Registration $registration,
308
-        $closed_reg_statuses = array(),
309
-        $update_txn = true
310
-    ) {
311
-        // these reg statuses should not be considered in any calculations involving monies owing
312
-        $closed_reg_statuses = ! empty($closed_reg_statuses) ? $closed_reg_statuses
313
-            : EEM_Registration::closed_reg_statuses();
314
-        if (! in_array($registration->status_ID(), $closed_reg_statuses, true)) {
315
-            return false;
316
-        }
317
-        try {
318
-            $transaction = $this->get_transaction_for_registration($registration);
319
-            if (apply_filters(
320
-                'FHEE__EE_Transaction_Processor__update_transaction_after_canceled_or_declined_registration__cancel_ticket_line_item',
321
-                true,
322
-                $registration,
323
-                $transaction
324
-            )) {
325
-                $ticket_line_item = $this->get_ticket_line_item_for_transaction_registration(
326
-                    $transaction,
327
-                    $registration
328
-                );
329
-                EEH_Line_Item::cancel_ticket_line_item($ticket_line_item);
330
-            }
331
-        } catch (EE_Error $e) {
332
-            EE_Error::add_error(
333
-                sprintf(
334
-                    __(
335
-                        'The Ticket Line Item for Registration %1$d could not be cancelled because :%2$s%3$s',
336
-                        'event_espresso'
337
-                    ),
338
-                    $registration->ID(),
339
-                    '<br />',
340
-                    $e->getMessage()
341
-                ),
342
-                __FILE__,
343
-                __FUNCTION__,
344
-                __LINE__
345
-            );
346
-            return false;
347
-        }
348
-        if ($update_txn) {
349
-            return $transaction->save() ? true : false;
350
-        }
351
-        return true;
352
-    }
353
-
354
-
355
-    /**
356
-     * get_transaction_for_registration
357
-     *
358
-     * @access    public
359
-     * @param    EE_Registration $registration
360
-     * @return    EE_Transaction
361
-     * @throws    EE_Error
362
-     */
363
-    public function get_transaction_for_registration(EE_Registration $registration)
364
-    {
365
-        $transaction = $registration->transaction();
366
-        if (! $transaction instanceof EE_Transaction) {
367
-            throw new EE_Error(
368
-                sprintf(
369
-                    __('The Transaction for Registration %1$d was not found or is invalid.', 'event_espresso'),
370
-                    $registration->ID()
371
-                )
372
-            );
373
-        }
374
-        return $transaction;
375
-    }
376
-
377
-
378
-    /**
379
-     * get_ticket_line_item_for_transaction_registration
380
-     *
381
-     * @access    public
382
-     * @param    EE_Transaction  $transaction
383
-     * @param    EE_Registration $registration
384
-     * @return    EE_Line_Item
385
-     * @throws    EE_Error
386
-     */
387
-    public function get_ticket_line_item_for_transaction_registration(
388
-        EE_Transaction $transaction,
389
-        EE_Registration $registration
390
-    ) {
391
-        EE_Registry::instance()->load_helper('Line_Item');
392
-        $ticket_line_item = EEM_Line_Item::instance()->get_ticket_line_item_for_transaction(
393
-            $transaction->ID(),
394
-            $registration->ticket_ID()
395
-        );
396
-        if (! $ticket_line_item instanceof EE_Line_Item) {
397
-            throw new EE_Error(
398
-                sprintf(
399
-                    __(
400
-                        'The Line Item for Transaction %1$d and Ticket %2$d was not found or is invalid.',
401
-                        'event_espresso'
402
-                    ),
403
-                    $transaction->ID(),
404
-                    $registration->ticket_ID()
405
-                )
406
-            );
407
-        }
408
-        return $ticket_line_item;
409
-    }
410
-
411
-
412
-    /**
413
-     * cancel_transaction_if_all_registrations_canceled
414
-     * cycles thru related registrations and checks their statuses
415
-     * if ALL registrations are Cancelled or Declined, then this sets the TXN status to
416
-     *
417
-     * @access    public
418
-     * @param    EE_Transaction $transaction
419
-     * @param    string         $new_TXN_status
420
-     * @param    array          $registration_query_params - array of query WHERE params to use when
421
-     *                                                     retrieving cached registrations from a transaction
422
-     * @param    array          $closed_reg_statuses
423
-     * @param    bool           $update_txn
424
-     * @return    bool            true if TXN status was updated, false if not
425
-     */
426
-    public function toggle_transaction_status_if_all_registrations_canceled_or_declined(
427
-        EE_Transaction $transaction,
428
-        $new_TXN_status = '',
429
-        $registration_query_params = array(),
430
-        $closed_reg_statuses = array(),
431
-        $update_txn = true
432
-    ) {
433
-        // make sure some query params are set for retrieving registrations
434
-        $this->_set_registration_query_params($registration_query_params);
435
-        // these reg statuses should not be considered in any calculations involving monies owing
436
-        $closed_reg_statuses = ! empty($closed_reg_statuses) ? $closed_reg_statuses
437
-            : EEM_Registration::closed_reg_statuses();
438
-        // loop through cached registrations
439
-        foreach ($transaction->registrations($this->_registration_query_params) as $registration) {
440
-            if ($registration instanceof EE_Registration
441
-                && ! in_array($registration->status_ID(), $closed_reg_statuses)
442
-            ) {
443
-                return false;
444
-            }
445
-        }
446
-        if (in_array($new_TXN_status, EEM_Transaction::txn_status_array())) {
447
-            $transaction->set_status($new_TXN_status);
448
-        }
449
-        if ($update_txn) {
450
-            return $transaction->save() ? true : false;
451
-        }
452
-        return true;
453
-    }
454
-
455
-
456
-    /**
457
-     * _call_method_on_registrations_via_Registration_Processor
458
-     * cycles thru related registrations and calls the requested method on each
459
-     *
460
-     * @access private
461
-     * @param string         $method_name
462
-     * @param EE_Transaction $transaction
463
-     * @param array          $registration_query_params array of query WHERE params to use
464
-     *                                                  when retrieving cached registrations from a transaction
465
-     * @param string         $additional_param
466
-     * @throws \EE_Error
467
-     * @return boolean
468
-     */
469
-    private function _call_method_on_registrations_via_Registration_Processor(
470
-        $method_name,
471
-        EE_Transaction $transaction,
472
-        $registration_query_params = array(),
473
-        $additional_param = null
474
-    ) {
475
-        $response = false;
476
-        /** @type EE_Registration_Processor $registration_processor */
477
-        $registration_processor = EE_Registry::instance()->load_class('Registration_Processor');
478
-        // check that method exists
479
-        if (! method_exists($registration_processor, $method_name)) {
480
-            throw new EE_Error(__('Method does not exist.', 'event_espresso'));
481
-        }
482
-        // make sure some query params are set for retrieving registrations
483
-        $this->_set_registration_query_params($registration_query_params);
484
-        // loop through cached registrations
485
-        foreach ($transaction->registrations($this->_registration_query_params) as $registration) {
486
-            if ($registration instanceof EE_Registration) {
487
-                if ($additional_param) {
488
-                    $response = $registration_processor->{$method_name}($registration, $additional_param)
489
-                        ? true
490
-                        : $response;
491
-                } else {
492
-                    $response = $registration_processor->{$method_name}($registration)
493
-                        ? true
494
-                        : $response;
495
-                }
496
-            }
497
-        }
498
-        return $response;
499
-    }
500
-
501
-
502
-    /**
503
-     * set_transaction_payment_method_based_on_registration_statuses
504
-     * sets or unsets the PMD_ID field on the TXN based on the related REG statuses
505
-     * basically if ALL Registrations are "Not Approved", then the EE_Transaction.PMD_ID is set to null,
506
-     * but if any Registration has a different status, then EE_Transaction.PMD_ID is set to either:
507
-     *        the first "default" Payment Method
508
-     *        the first active Payment Method
509
-     *    whichever is found first.
510
-     *
511
-     * @param  EE_Registration $edited_registration
512
-     * @return void
513
-     * @throws \EE_Error
514
-     */
515
-    public function set_transaction_payment_method_based_on_registration_statuses(
516
-        EE_Registration $edited_registration
517
-    ) {
518
-        if ($edited_registration instanceof EE_Registration) {
519
-            $transaction = $edited_registration->transaction();
520
-            if ($transaction instanceof EE_Transaction) {
521
-                $all_not_approved = true;
522
-                foreach ($transaction->registrations() as $registration) {
523
-                    if ($registration instanceof EE_Registration) {
524
-                        // if any REG != "Not Approved" then toggle to false
525
-                        $all_not_approved = $registration->is_not_approved() ? $all_not_approved : false;
526
-                    }
527
-                }
528
-                // if ALL Registrations are "Not Approved"
529
-                if ($all_not_approved) {
530
-                    $transaction->set_payment_method_ID(null);
531
-                    $transaction->save();
532
-                } else {
533
-                    $available_payment_methods = EEM_Payment_Method::instance()->get_all_for_transaction(
534
-                        $transaction,
535
-                        EEM_Payment_Method::scope_cart
536
-                    );
537
-                    if (! empty($available_payment_methods)) {
538
-                        $PMD_ID = 0;
539
-                        foreach ($available_payment_methods as $available_payment_method) {
540
-                            if ($available_payment_method instanceof EE_Payment_Method
541
-                                && $available_payment_method->open_by_default()
542
-                            ) {
543
-                                $PMD_ID = $available_payment_method->ID();
544
-                                break;
545
-                            }
546
-                        }
547
-                        if (! $PMD_ID) {
548
-                            $first_payment_method = reset($available_payment_methods);
549
-                            if ($first_payment_method instanceof EE_Payment_Method) {
550
-                                $PMD_ID = $first_payment_method->ID();
551
-                            } else {
552
-                                EE_Error::add_error(
553
-                                    __(
554
-                                        'A valid Payment Method could not be determined. Please ensure that at least one Payment Method is activated.',
555
-                                        'event_espresso'
556
-                                    ),
557
-                                    __FILE__,
558
-                                    __LINE__,
559
-                                    __FUNCTION__
560
-                                );
561
-                            }
562
-                        }
563
-                        $transaction->set_payment_method_ID($PMD_ID);
564
-                        $transaction->save();
565
-                    } else {
566
-                        EE_Error::add_error(
567
-                            __(
568
-                                'Please activate at least one Payment Method in order for things to operate correctly.',
569
-                                'event_espresso'
570
-                            ),
571
-                            __FILE__,
572
-                            __LINE__,
573
-                            __FUNCTION__
574
-                        );
575
-                    }
576
-                }
577
-            }
578
-        }
579
-    }
580
-
581
-
582
-
583
-    /********************************** DEPRECATED METHODS **********************************/
584
-
585
-
586
-    /**
587
-     * @deprecated 4.9.12
588
-     * @return string
589
-     */
590
-    public function old_txn_status()
591
-    {
592
-        EE_Error::doing_it_wrong(
593
-            __METHOD__,
594
-            esc_html__(
595
-                'This logic has been moved into \EE_Transaction::old_txn_status(), please use that method instead.',
596
-                'event_espresso'
597
-            ),
598
-            '4.9.12'
599
-        );
600
-        return $this->_old_txn_status;
601
-    }
602
-
603
-
604
-    /**
605
-     * @deprecated 4.9.12
606
-     * @param string $old_txn_status
607
-     */
608
-    public function set_old_txn_status($old_txn_status)
609
-    {
610
-        EE_Error::doing_it_wrong(
611
-            __METHOD__,
612
-            esc_html__(
613
-                'This logic has been moved into \EE_Transaction::set_old_txn_status(), please use that method instead.',
614
-                'event_espresso'
615
-            ),
616
-            '4.9.12'
617
-        );
618
-        // only set the first time
619
-        if ($this->_old_txn_status === null) {
620
-            $this->_old_txn_status = $old_txn_status;
621
-        }
622
-    }
623
-
624
-
625
-    /**
626
-     * @deprecated 4.9.12
627
-     * @return string
628
-     */
629
-    public function new_txn_status()
630
-    {
631
-        EE_Error::doing_it_wrong(
632
-            __METHOD__,
633
-            esc_html__(
634
-                'This logic has been removed. Please just use \EE_Transaction::status_ID() instead.',
635
-                'event_espresso'
636
-            ),
637
-            '4.9.12'
638
-        );
639
-        return $this->_new_txn_status;
640
-    }
641
-
642
-
643
-    /**
644
-     * @deprecated 4.9.12
645
-     * @param string $new_txn_status
646
-     */
647
-    public function set_new_txn_status($new_txn_status)
648
-    {
649
-        EE_Error::doing_it_wrong(
650
-            __METHOD__,
651
-            esc_html__(
652
-                'This logic has been removed. Please just use \EE_Transaction::set_status() instead.',
653
-                'event_espresso'
654
-            ),
655
-            '4.9.12'
656
-        );
657
-        $this->_new_txn_status = $new_txn_status;
658
-    }
659
-
660
-
661
-    /**
662
-     * reg_status_updated
663
-     *
664
-     * @deprecated 4.9.12
665
-     * @return bool
666
-     */
667
-    public function txn_status_updated()
668
-    {
669
-        EE_Error::doing_it_wrong(
670
-            __METHOD__,
671
-            esc_html__(
672
-                'This logic has been moved into \EE_Transaction::txn_status_updated(), please use that method instead.',
673
-                'event_espresso'
674
-            ),
675
-            '4.9.12'
676
-        );
677
-        return $this->_new_txn_status !== $this->_old_txn_status && $this->_old_txn_status !== null ? true : false;
678
-    }
679
-
680
-
681
-    /**
682
-     * all_reg_steps_completed
683
-     * returns:
684
-     *    true if ALL reg steps have been marked as completed
685
-     *        or false if any step is not completed
686
-     *
687
-     * @deprecated 4.9.12
688
-     * @param EE_Transaction $transaction
689
-     * @return boolean
690
-     */
691
-    public function all_reg_steps_completed(EE_Transaction $transaction)
692
-    {
693
-        EE_Error::doing_it_wrong(
694
-            __METHOD__,
695
-            esc_html__(
696
-                'This logic has been moved into \EE_Transaction::all_reg_steps_completed(), please use that method instead.',
697
-                'event_espresso'
698
-            ),
699
-            '4.9.12',
700
-            '5.0.0'
701
-        );
702
-        return $transaction->all_reg_steps_completed();
703
-    }
704
-
705
-
706
-    /**
707
-     * all_reg_steps_completed_except
708
-     * returns:
709
-     *        true if ALL reg steps, except a particular step that you wish to skip over, have been marked as completed
710
-     *        or false if any other step is not completed
711
-     *        or false if ALL steps are completed including the exception you are testing !!!
712
-     *
713
-     * @deprecated 4.9.12
714
-     * @param EE_Transaction $transaction
715
-     * @param string         $exception
716
-     * @return boolean
717
-     */
718
-    public function all_reg_steps_completed_except(EE_Transaction $transaction, $exception = '')
719
-    {
720
-        EE_Error::doing_it_wrong(
721
-            __METHOD__,
722
-            esc_html__(
723
-                'This logic has been moved into \EE_Transaction::all_reg_steps_completed_except(), please use that method instead.',
724
-                'event_espresso'
725
-            ),
726
-            '4.9.12',
727
-            '5.0.0'
728
-        );
729
-        return $transaction->all_reg_steps_completed_except($exception);
730
-    }
731
-
732
-
733
-    /**
734
-     * all_reg_steps_completed_except
735
-     * returns:
736
-     *        true if ALL reg steps, except the final step, have been marked as completed
737
-     *        or false if any step is not completed
738
-     *    or false if ALL steps are completed including the final step !!!
739
-     *
740
-     * @deprecated 4.9.12
741
-     * @param EE_Transaction $transaction
742
-     * @return boolean
743
-     */
744
-    public function all_reg_steps_completed_except_final_step(EE_Transaction $transaction)
745
-    {
746
-        EE_Error::doing_it_wrong(
747
-            __METHOD__,
748
-            esc_html__(
749
-                'This logic has been moved into \EE_Transaction::all_reg_steps_completed_except_final_step(), please use that method instead.',
750
-                'event_espresso'
751
-            ),
752
-            '4.9.12',
753
-            '5.0.0'
754
-        );
755
-        return $transaction->all_reg_steps_completed_except_final_step();
756
-    }
757
-
758
-
759
-    /**
760
-     * reg_step_completed
761
-     * returns:
762
-     *    true if a specific reg step has been marked as completed
763
-     *    a Unix timestamp if it has been initialized but not yet completed,
764
-     *    or false if it has not yet been initialized
765
-     *
766
-     * @deprecated 4.9.12
767
-     * @param EE_Transaction $transaction
768
-     * @param string         $reg_step_slug
769
-     * @return boolean | int
770
-     */
771
-    public function reg_step_completed(EE_Transaction $transaction, $reg_step_slug)
772
-    {
773
-        EE_Error::doing_it_wrong(
774
-            __METHOD__,
775
-            esc_html__(
776
-                'This logic has been moved into \EE_Transaction::reg_step_completed(), please use that method instead.',
777
-                'event_espresso'
778
-            ),
779
-            '4.9.12',
780
-            '5.0.0'
781
-        );
782
-        return $transaction->reg_step_completed($reg_step_slug);
783
-    }
784
-
785
-
786
-    /**
787
-     * completed_final_reg_step
788
-     * returns:
789
-     *    true if the finalize_registration reg step has been marked as completed
790
-     *    a Unix timestamp if it has been initialized but not yet completed,
791
-     *    or false if it has not yet been initialized
792
-     *
793
-     * @deprecated 4.9.12
794
-     * @param EE_Transaction $transaction
795
-     * @return boolean | int
796
-     */
797
-    public function final_reg_step_completed(EE_Transaction $transaction)
798
-    {
799
-        EE_Error::doing_it_wrong(
800
-            __METHOD__,
801
-            esc_html__(
802
-                'This logic has been moved into \EE_Transaction::final_reg_step_completed(), please use that method instead.',
803
-                'event_espresso'
804
-            ),
805
-            '4.9.12',
806
-            '5.0.0'
807
-        );
808
-        return $transaction->final_reg_step_completed();
809
-    }
810
-
811
-
812
-    /**
813
-     * set_reg_step_initiated
814
-     * given a valid TXN_reg_step, this sets it's value to a unix timestamp
815
-     *
816
-     * @deprecated 4.9.12
817
-     * @access     public
818
-     * @param \EE_Transaction $transaction
819
-     * @param string          $reg_step_slug
820
-     * @return boolean
821
-     * @throws \EE_Error
822
-     */
823
-    public function set_reg_step_initiated(EE_Transaction $transaction, $reg_step_slug)
824
-    {
825
-        EE_Error::doing_it_wrong(
826
-            __METHOD__,
827
-            esc_html__(
828
-                'This logic has been moved into \EE_Transaction::set_reg_step_initiated(), please use that method instead.',
829
-                'event_espresso'
830
-            ),
831
-            '4.9.12',
832
-            '5.0.0'
833
-        );
834
-        return $transaction->set_reg_step_initiated($reg_step_slug);
835
-    }
836
-
837
-
838
-    /**
839
-     * set_reg_step_completed
840
-     * given a valid TXN_reg_step, this sets the step as completed
841
-     *
842
-     * @deprecated 4.9.12
843
-     * @access     public
844
-     * @param \EE_Transaction $transaction
845
-     * @param string          $reg_step_slug
846
-     * @return boolean
847
-     * @throws \EE_Error
848
-     */
849
-    public function set_reg_step_completed(EE_Transaction $transaction, $reg_step_slug)
850
-    {
851
-        EE_Error::doing_it_wrong(
852
-            __METHOD__,
853
-            esc_html__(
854
-                'This logic has been moved into \EE_Transaction::set_reg_step_completed(), please use that method instead.',
855
-                'event_espresso'
856
-            ),
857
-            '4.9.12',
858
-            '5.0.0'
859
-        );
860
-        return $transaction->set_reg_step_completed($reg_step_slug);
861
-    }
862
-
863
-
864
-    /**
865
-     * set_reg_step_completed
866
-     * given a valid TXN_reg_step slug, this sets the step as NOT completed
867
-     *
868
-     * @deprecated 4.9.12
869
-     * @access     public
870
-     * @param \EE_Transaction $transaction
871
-     * @param string          $reg_step_slug
872
-     * @return boolean
873
-     * @throws \EE_Error
874
-     */
875
-    public function set_reg_step_not_completed(EE_Transaction $transaction, $reg_step_slug)
876
-    {
877
-        EE_Error::doing_it_wrong(
878
-            __METHOD__,
879
-            esc_html__(
880
-                'This logic has been moved into \EE_Transaction::set_reg_step_not_completed(), please use that method instead.',
881
-                'event_espresso'
882
-            ),
883
-            '4.9.12',
884
-            '5.0.0'
885
-        );
886
-        return $transaction->set_reg_step_not_completed($reg_step_slug);
887
-    }
888
-
889
-
890
-    /**
891
-     * remove_reg_step
892
-     * given a valid TXN_reg_step slug, this will remove (unset)
893
-     * the reg step from the TXN reg step array
894
-     *
895
-     * @deprecated 4.9.12
896
-     * @access     public
897
-     * @param \EE_Transaction $transaction
898
-     * @param string          $reg_step_slug
899
-     * @return void
900
-     */
901
-    public function remove_reg_step(EE_Transaction $transaction, $reg_step_slug)
902
-    {
903
-        EE_Error::doing_it_wrong(
904
-            __METHOD__,
905
-            esc_html__(
906
-                'This logic has been moved into \EE_Transaction::remove_reg_step(), please use that method instead.',
907
-                'event_espresso'
908
-            ),
909
-            '4.9.12',
910
-            '5.0.0'
911
-        );
912
-        $transaction->remove_reg_step($reg_step_slug);
913
-    }
914
-
915
-
916
-    /**
917
-     *    toggle_failed_transaction_status
918
-     * upgrades a TXNs status from failed to abandoned,
919
-     * meaning that contact information has been captured for at least one registrant
920
-     *
921
-     * @deprecated 4.9.12
922
-     * @access     public
923
-     * @param EE_Transaction $transaction
924
-     * @return    boolean
925
-     * @throws \EE_Error
926
-     */
927
-    public function toggle_failed_transaction_status(EE_Transaction $transaction)
928
-    {
929
-        EE_Error::doing_it_wrong(
930
-            __METHOD__,
931
-            esc_html__(
932
-                'This logic has been moved into \EE_Transaction::toggle_failed_transaction_status(), please use that method instead.',
933
-                'event_espresso'
934
-            ),
935
-            '4.9.12',
936
-            '5.0.0'
937
-        );
938
-        return $transaction->toggle_failed_transaction_status();
939
-    }
940
-
941
-
942
-    /**
943
-     * toggle_abandoned_transaction_status
944
-     * upgrades a TXNs status from failed or abandoned to incomplete
945
-     *
946
-     * @deprecated 4.9.12
947
-     * @access     public
948
-     * @param  EE_Transaction $transaction
949
-     * @return boolean
950
-     */
951
-    public function toggle_abandoned_transaction_status(EE_Transaction $transaction)
952
-    {
953
-        EE_Error::doing_it_wrong(
954
-            __METHOD__,
955
-            esc_html__(
956
-                'This logic has been moved into \EE_Transaction::toggle_abandoned_transaction_status(), please use that method instead.',
957
-                'event_espresso'
958
-            ),
959
-            '4.9.12',
960
-            '5.0.0'
961
-        );
962
-        return $transaction->toggle_abandoned_transaction_status();
963
-    }
20
+	/**
21
+	 * @var EE_Registration_Processor $_instance
22
+	 * @access    private
23
+	 */
24
+	private static $_instance;
25
+
26
+	/**
27
+	 * array of query WHERE params to use when retrieving cached registrations from a transaction
28
+	 *
29
+	 * @var array $registration_query_params
30
+	 * @access private
31
+	 */
32
+	private $_registration_query_params = array();
33
+
34
+	/**
35
+	 * @deprecated
36
+	 * @var string
37
+	 */
38
+	protected $_old_txn_status;
39
+
40
+	/**
41
+	 * @deprecated
42
+	 * @var string
43
+	 */
44
+	protected $_new_txn_status;
45
+
46
+
47
+	/**
48
+	 * @singleton method used to instantiate class object
49
+	 * @access    public
50
+	 * @param array $registration_query_params
51
+	 * @return EE_Transaction_Processor instance
52
+	 */
53
+	public static function instance($registration_query_params = array())
54
+	{
55
+		// check if class object is instantiated
56
+		if (! self::$_instance instanceof EE_Transaction_Processor) {
57
+			self::$_instance = new self($registration_query_params);
58
+		}
59
+		return self::$_instance;
60
+	}
61
+
62
+
63
+	/**
64
+	 * @param array $registration_query_params
65
+	 */
66
+	private function __construct($registration_query_params = array())
67
+	{
68
+		// make sure some query params are set for retrieving registrations
69
+		$this->_set_registration_query_params($registration_query_params);
70
+	}
71
+
72
+
73
+	/**
74
+	 * @access private
75
+	 * @param array $registration_query_params
76
+	 */
77
+	private function _set_registration_query_params($registration_query_params)
78
+	{
79
+		$this->_registration_query_params = ! empty($registration_query_params) ? $registration_query_params
80
+			: array('order_by' => array('REG_count' => 'ASC'));
81
+	}
82
+
83
+
84
+	/**
85
+	 * manually_update_registration_statuses
86
+	 *
87
+	 * @access public
88
+	 * @param EE_Transaction $transaction
89
+	 * @param string         $new_reg_status
90
+	 * @param array          $registration_query_params array of query WHERE params to use
91
+	 *                                                  when retrieving cached registrations from a transaction
92
+	 * @return    boolean
93
+	 * @throws \EE_Error
94
+	 */
95
+	public function manually_update_registration_statuses(
96
+		EE_Transaction $transaction,
97
+		$new_reg_status = '',
98
+		$registration_query_params = array()
99
+	) {
100
+		$status_updates = $this->_call_method_on_registrations_via_Registration_Processor(
101
+			'manually_update_registration_status',
102
+			$transaction,
103
+			$registration_query_params,
104
+			$new_reg_status
105
+		);
106
+		// send messages
107
+		/** @type EE_Registration_Processor $registration_processor */
108
+		$registration_processor = EE_Registry::instance()->load_class('Registration_Processor');
109
+		$registration_processor->trigger_registration_update_notifications(
110
+			$transaction->primary_registration(),
111
+			array('manually_updated' => true)
112
+		);
113
+		do_action(
114
+			'AHEE__EE_Transaction_Processor__manually_update_registration_statuses',
115
+			$transaction,
116
+			$status_updates
117
+		);
118
+		return $status_updates;
119
+	}
120
+
121
+
122
+	/**
123
+	 * toggle_registration_statuses_for_default_approved_events
124
+	 *
125
+	 * @access public
126
+	 * @param EE_Transaction $transaction
127
+	 * @param array          $registration_query_params array of query WHERE params to use
128
+	 *                                                  when retrieving cached registrations from a transaction
129
+	 * @return    boolean
130
+	 * @throws \EE_Error
131
+	 */
132
+	public function toggle_registration_statuses_for_default_approved_events(
133
+		EE_Transaction $transaction,
134
+		$registration_query_params = array()
135
+	) {
136
+		$status_updates = $this->_call_method_on_registrations_via_Registration_Processor(
137
+			'toggle_registration_status_for_default_approved_events',
138
+			$transaction,
139
+			$registration_query_params
140
+		);
141
+		do_action(
142
+			'AHEE__EE_Transaction_Processor__toggle_registration_statuses_for_default_approved_events',
143
+			$transaction,
144
+			$status_updates
145
+		);
146
+		return $status_updates;
147
+	}
148
+
149
+
150
+	/**
151
+	 * toggle_registration_statuses_if_no_monies_owing
152
+	 *
153
+	 * @access public
154
+	 * @param EE_Transaction $transaction
155
+	 * @param array          $registration_query_params array of query WHERE params to use
156
+	 *                                                  when retrieving cached registrations from a transaction
157
+	 * @return    boolean
158
+	 * @throws \EE_Error
159
+	 */
160
+	public function toggle_registration_statuses_if_no_monies_owing(
161
+		EE_Transaction $transaction,
162
+		$registration_query_params = array()
163
+	) {
164
+		$status_updates = $this->_call_method_on_registrations_via_Registration_Processor(
165
+			'toggle_registration_status_if_no_monies_owing',
166
+			$transaction,
167
+			$registration_query_params
168
+		);
169
+		do_action(
170
+			'AHEE__EE_Transaction_Processor__toggle_registration_statuses_if_no_monies_owing',
171
+			$transaction,
172
+			$status_updates
173
+		);
174
+		return $status_updates;
175
+	}
176
+
177
+
178
+	/**
179
+	 * update_transaction_and_registrations_after_checkout_or_payment
180
+	 * cycles thru related registrations and calls update_registration_after_checkout_or_payment() on each
181
+	 *
182
+	 * @param EE_Transaction     $transaction
183
+	 * @param \EE_Payment | NULL $payment
184
+	 * @param array              $registration_query_params    array of query WHERE params to use
185
+	 *                                                         when retrieving cached registrations from a transaction
186
+	 * @param bool               $trigger_notifications        whether or not to call
187
+	 *                                                         \EE_Registration_Processor::trigger_registration_update_notifications()
188
+	 * @return array
189
+	 * @throws \EE_Error
190
+	 */
191
+	public function update_transaction_and_registrations_after_checkout_or_payment(
192
+		EE_Transaction $transaction,
193
+		$payment = null,
194
+		$registration_query_params = array(),
195
+		$trigger_notifications = true
196
+	) {
197
+		// make sure some query params are set for retrieving registrations
198
+		$this->_set_registration_query_params($registration_query_params);
199
+		// get final reg step status
200
+		$finalized = $transaction->final_reg_step_completed();
201
+		// if the 'finalize_registration' step has been initiated (has a timestamp)
202
+		// but has not yet been fully completed (TRUE)
203
+		if (is_int($finalized) && $finalized !== false && $finalized !== true) {
204
+			$transaction->set_reg_step_completed('finalize_registration');
205
+			$finalized = true;
206
+		}
207
+		$transaction->save();
208
+		// array of details to aid in decision making by systems
209
+		$update_params = array(
210
+			'old_txn_status'  => $transaction->old_txn_status(),
211
+			'new_txn_status'  => $transaction->status_ID(),
212
+			'finalized'       => $finalized,
213
+			'revisit'         => $this->_revisit,
214
+			'payment_updates' => $payment instanceof EE_Payment ? true : false,
215
+			'last_payment'    => $payment,
216
+		);
217
+		// now update the registrations and add the results to our $update_params
218
+		$update_params['status_updates'] = $this->_call_method_on_registrations_via_Registration_Processor(
219
+			'update_registration_after_checkout_or_payment',
220
+			$transaction,
221
+			$this->_registration_query_params,
222
+			$update_params
223
+		);
224
+		if ($trigger_notifications) {
225
+			// send messages
226
+			/** @type EE_Registration_Processor $registration_processor */
227
+			$registration_processor = EE_Registry::instance()->load_class('Registration_Processor');
228
+			$registration_processor->trigger_registration_update_notifications(
229
+				$transaction->primary_registration(),
230
+				$update_params
231
+			);
232
+		}
233
+		do_action(
234
+			'AHEE__EE_Transaction_Processor__update_transaction_and_registrations_after_checkout_or_payment',
235
+			$transaction,
236
+			$update_params
237
+		);
238
+		return $update_params;
239
+	}
240
+
241
+
242
+	/**
243
+	 * update_transaction_after_registration_reopened
244
+	 * readjusts TXN and Line Item totals after a registration is changed from
245
+	 * cancelled or declined to another reg status such as pending payment or approved
246
+	 *
247
+	 * @param \EE_Registration $registration
248
+	 * @param array            $closed_reg_statuses
249
+	 * @param bool             $update_txn
250
+	 * @return bool
251
+	 * @throws \EE_Error
252
+	 */
253
+	public function update_transaction_after_reinstating_canceled_registration(
254
+		EE_Registration $registration,
255
+		$closed_reg_statuses = array(),
256
+		$update_txn = true
257
+	) {
258
+		// these reg statuses should not be considered in any calculations involving monies owing
259
+		$closed_reg_statuses = ! empty($closed_reg_statuses) ? $closed_reg_statuses
260
+			: EEM_Registration::closed_reg_statuses();
261
+		if (in_array($registration->status_ID(), $closed_reg_statuses, true)) {
262
+			return false;
263
+		}
264
+		try {
265
+			$transaction = $this->get_transaction_for_registration($registration);
266
+			$ticket_line_item = $this->get_ticket_line_item_for_transaction_registration(
267
+				$transaction,
268
+				$registration
269
+			);
270
+			// un-cancel the ticket
271
+			$success = EEH_Line_Item::reinstate_canceled_ticket_line_item($ticket_line_item);
272
+		} catch (EE_Error $e) {
273
+			EE_Error::add_error(
274
+				sprintf(
275
+					__(
276
+						'The Ticket Line Item for Registration %1$d could not be reinstated because :%2$s%3$s',
277
+						'event_espresso'
278
+					),
279
+					$registration->ID(),
280
+					'<br />',
281
+					$e->getMessage()
282
+				),
283
+				__FILE__,
284
+				__FUNCTION__,
285
+				__LINE__
286
+			);
287
+			return false;
288
+		}
289
+		if ($update_txn) {
290
+			return $transaction->save() ? $success : false;
291
+		}
292
+		return $success;
293
+	}
294
+
295
+
296
+	/**
297
+	 * update_transaction_after_canceled_or_declined_registration
298
+	 * readjusts TXN and Line Item totals after a registration is cancelled or declined
299
+	 *
300
+	 * @param \EE_Registration $registration
301
+	 * @param array            $closed_reg_statuses
302
+	 * @param bool             $update_txn
303
+	 * @return bool
304
+	 * @throws \EE_Error
305
+	 */
306
+	public function update_transaction_after_canceled_or_declined_registration(
307
+		EE_Registration $registration,
308
+		$closed_reg_statuses = array(),
309
+		$update_txn = true
310
+	) {
311
+		// these reg statuses should not be considered in any calculations involving monies owing
312
+		$closed_reg_statuses = ! empty($closed_reg_statuses) ? $closed_reg_statuses
313
+			: EEM_Registration::closed_reg_statuses();
314
+		if (! in_array($registration->status_ID(), $closed_reg_statuses, true)) {
315
+			return false;
316
+		}
317
+		try {
318
+			$transaction = $this->get_transaction_for_registration($registration);
319
+			if (apply_filters(
320
+				'FHEE__EE_Transaction_Processor__update_transaction_after_canceled_or_declined_registration__cancel_ticket_line_item',
321
+				true,
322
+				$registration,
323
+				$transaction
324
+			)) {
325
+				$ticket_line_item = $this->get_ticket_line_item_for_transaction_registration(
326
+					$transaction,
327
+					$registration
328
+				);
329
+				EEH_Line_Item::cancel_ticket_line_item($ticket_line_item);
330
+			}
331
+		} catch (EE_Error $e) {
332
+			EE_Error::add_error(
333
+				sprintf(
334
+					__(
335
+						'The Ticket Line Item for Registration %1$d could not be cancelled because :%2$s%3$s',
336
+						'event_espresso'
337
+					),
338
+					$registration->ID(),
339
+					'<br />',
340
+					$e->getMessage()
341
+				),
342
+				__FILE__,
343
+				__FUNCTION__,
344
+				__LINE__
345
+			);
346
+			return false;
347
+		}
348
+		if ($update_txn) {
349
+			return $transaction->save() ? true : false;
350
+		}
351
+		return true;
352
+	}
353
+
354
+
355
+	/**
356
+	 * get_transaction_for_registration
357
+	 *
358
+	 * @access    public
359
+	 * @param    EE_Registration $registration
360
+	 * @return    EE_Transaction
361
+	 * @throws    EE_Error
362
+	 */
363
+	public function get_transaction_for_registration(EE_Registration $registration)
364
+	{
365
+		$transaction = $registration->transaction();
366
+		if (! $transaction instanceof EE_Transaction) {
367
+			throw new EE_Error(
368
+				sprintf(
369
+					__('The Transaction for Registration %1$d was not found or is invalid.', 'event_espresso'),
370
+					$registration->ID()
371
+				)
372
+			);
373
+		}
374
+		return $transaction;
375
+	}
376
+
377
+
378
+	/**
379
+	 * get_ticket_line_item_for_transaction_registration
380
+	 *
381
+	 * @access    public
382
+	 * @param    EE_Transaction  $transaction
383
+	 * @param    EE_Registration $registration
384
+	 * @return    EE_Line_Item
385
+	 * @throws    EE_Error
386
+	 */
387
+	public function get_ticket_line_item_for_transaction_registration(
388
+		EE_Transaction $transaction,
389
+		EE_Registration $registration
390
+	) {
391
+		EE_Registry::instance()->load_helper('Line_Item');
392
+		$ticket_line_item = EEM_Line_Item::instance()->get_ticket_line_item_for_transaction(
393
+			$transaction->ID(),
394
+			$registration->ticket_ID()
395
+		);
396
+		if (! $ticket_line_item instanceof EE_Line_Item) {
397
+			throw new EE_Error(
398
+				sprintf(
399
+					__(
400
+						'The Line Item for Transaction %1$d and Ticket %2$d was not found or is invalid.',
401
+						'event_espresso'
402
+					),
403
+					$transaction->ID(),
404
+					$registration->ticket_ID()
405
+				)
406
+			);
407
+		}
408
+		return $ticket_line_item;
409
+	}
410
+
411
+
412
+	/**
413
+	 * cancel_transaction_if_all_registrations_canceled
414
+	 * cycles thru related registrations and checks their statuses
415
+	 * if ALL registrations are Cancelled or Declined, then this sets the TXN status to
416
+	 *
417
+	 * @access    public
418
+	 * @param    EE_Transaction $transaction
419
+	 * @param    string         $new_TXN_status
420
+	 * @param    array          $registration_query_params - array of query WHERE params to use when
421
+	 *                                                     retrieving cached registrations from a transaction
422
+	 * @param    array          $closed_reg_statuses
423
+	 * @param    bool           $update_txn
424
+	 * @return    bool            true if TXN status was updated, false if not
425
+	 */
426
+	public function toggle_transaction_status_if_all_registrations_canceled_or_declined(
427
+		EE_Transaction $transaction,
428
+		$new_TXN_status = '',
429
+		$registration_query_params = array(),
430
+		$closed_reg_statuses = array(),
431
+		$update_txn = true
432
+	) {
433
+		// make sure some query params are set for retrieving registrations
434
+		$this->_set_registration_query_params($registration_query_params);
435
+		// these reg statuses should not be considered in any calculations involving monies owing
436
+		$closed_reg_statuses = ! empty($closed_reg_statuses) ? $closed_reg_statuses
437
+			: EEM_Registration::closed_reg_statuses();
438
+		// loop through cached registrations
439
+		foreach ($transaction->registrations($this->_registration_query_params) as $registration) {
440
+			if ($registration instanceof EE_Registration
441
+				&& ! in_array($registration->status_ID(), $closed_reg_statuses)
442
+			) {
443
+				return false;
444
+			}
445
+		}
446
+		if (in_array($new_TXN_status, EEM_Transaction::txn_status_array())) {
447
+			$transaction->set_status($new_TXN_status);
448
+		}
449
+		if ($update_txn) {
450
+			return $transaction->save() ? true : false;
451
+		}
452
+		return true;
453
+	}
454
+
455
+
456
+	/**
457
+	 * _call_method_on_registrations_via_Registration_Processor
458
+	 * cycles thru related registrations and calls the requested method on each
459
+	 *
460
+	 * @access private
461
+	 * @param string         $method_name
462
+	 * @param EE_Transaction $transaction
463
+	 * @param array          $registration_query_params array of query WHERE params to use
464
+	 *                                                  when retrieving cached registrations from a transaction
465
+	 * @param string         $additional_param
466
+	 * @throws \EE_Error
467
+	 * @return boolean
468
+	 */
469
+	private function _call_method_on_registrations_via_Registration_Processor(
470
+		$method_name,
471
+		EE_Transaction $transaction,
472
+		$registration_query_params = array(),
473
+		$additional_param = null
474
+	) {
475
+		$response = false;
476
+		/** @type EE_Registration_Processor $registration_processor */
477
+		$registration_processor = EE_Registry::instance()->load_class('Registration_Processor');
478
+		// check that method exists
479
+		if (! method_exists($registration_processor, $method_name)) {
480
+			throw new EE_Error(__('Method does not exist.', 'event_espresso'));
481
+		}
482
+		// make sure some query params are set for retrieving registrations
483
+		$this->_set_registration_query_params($registration_query_params);
484
+		// loop through cached registrations
485
+		foreach ($transaction->registrations($this->_registration_query_params) as $registration) {
486
+			if ($registration instanceof EE_Registration) {
487
+				if ($additional_param) {
488
+					$response = $registration_processor->{$method_name}($registration, $additional_param)
489
+						? true
490
+						: $response;
491
+				} else {
492
+					$response = $registration_processor->{$method_name}($registration)
493
+						? true
494
+						: $response;
495
+				}
496
+			}
497
+		}
498
+		return $response;
499
+	}
500
+
501
+
502
+	/**
503
+	 * set_transaction_payment_method_based_on_registration_statuses
504
+	 * sets or unsets the PMD_ID field on the TXN based on the related REG statuses
505
+	 * basically if ALL Registrations are "Not Approved", then the EE_Transaction.PMD_ID is set to null,
506
+	 * but if any Registration has a different status, then EE_Transaction.PMD_ID is set to either:
507
+	 *        the first "default" Payment Method
508
+	 *        the first active Payment Method
509
+	 *    whichever is found first.
510
+	 *
511
+	 * @param  EE_Registration $edited_registration
512
+	 * @return void
513
+	 * @throws \EE_Error
514
+	 */
515
+	public function set_transaction_payment_method_based_on_registration_statuses(
516
+		EE_Registration $edited_registration
517
+	) {
518
+		if ($edited_registration instanceof EE_Registration) {
519
+			$transaction = $edited_registration->transaction();
520
+			if ($transaction instanceof EE_Transaction) {
521
+				$all_not_approved = true;
522
+				foreach ($transaction->registrations() as $registration) {
523
+					if ($registration instanceof EE_Registration) {
524
+						// if any REG != "Not Approved" then toggle to false
525
+						$all_not_approved = $registration->is_not_approved() ? $all_not_approved : false;
526
+					}
527
+				}
528
+				// if ALL Registrations are "Not Approved"
529
+				if ($all_not_approved) {
530
+					$transaction->set_payment_method_ID(null);
531
+					$transaction->save();
532
+				} else {
533
+					$available_payment_methods = EEM_Payment_Method::instance()->get_all_for_transaction(
534
+						$transaction,
535
+						EEM_Payment_Method::scope_cart
536
+					);
537
+					if (! empty($available_payment_methods)) {
538
+						$PMD_ID = 0;
539
+						foreach ($available_payment_methods as $available_payment_method) {
540
+							if ($available_payment_method instanceof EE_Payment_Method
541
+								&& $available_payment_method->open_by_default()
542
+							) {
543
+								$PMD_ID = $available_payment_method->ID();
544
+								break;
545
+							}
546
+						}
547
+						if (! $PMD_ID) {
548
+							$first_payment_method = reset($available_payment_methods);
549
+							if ($first_payment_method instanceof EE_Payment_Method) {
550
+								$PMD_ID = $first_payment_method->ID();
551
+							} else {
552
+								EE_Error::add_error(
553
+									__(
554
+										'A valid Payment Method could not be determined. Please ensure that at least one Payment Method is activated.',
555
+										'event_espresso'
556
+									),
557
+									__FILE__,
558
+									__LINE__,
559
+									__FUNCTION__
560
+								);
561
+							}
562
+						}
563
+						$transaction->set_payment_method_ID($PMD_ID);
564
+						$transaction->save();
565
+					} else {
566
+						EE_Error::add_error(
567
+							__(
568
+								'Please activate at least one Payment Method in order for things to operate correctly.',
569
+								'event_espresso'
570
+							),
571
+							__FILE__,
572
+							__LINE__,
573
+							__FUNCTION__
574
+						);
575
+					}
576
+				}
577
+			}
578
+		}
579
+	}
580
+
581
+
582
+
583
+	/********************************** DEPRECATED METHODS **********************************/
584
+
585
+
586
+	/**
587
+	 * @deprecated 4.9.12
588
+	 * @return string
589
+	 */
590
+	public function old_txn_status()
591
+	{
592
+		EE_Error::doing_it_wrong(
593
+			__METHOD__,
594
+			esc_html__(
595
+				'This logic has been moved into \EE_Transaction::old_txn_status(), please use that method instead.',
596
+				'event_espresso'
597
+			),
598
+			'4.9.12'
599
+		);
600
+		return $this->_old_txn_status;
601
+	}
602
+
603
+
604
+	/**
605
+	 * @deprecated 4.9.12
606
+	 * @param string $old_txn_status
607
+	 */
608
+	public function set_old_txn_status($old_txn_status)
609
+	{
610
+		EE_Error::doing_it_wrong(
611
+			__METHOD__,
612
+			esc_html__(
613
+				'This logic has been moved into \EE_Transaction::set_old_txn_status(), please use that method instead.',
614
+				'event_espresso'
615
+			),
616
+			'4.9.12'
617
+		);
618
+		// only set the first time
619
+		if ($this->_old_txn_status === null) {
620
+			$this->_old_txn_status = $old_txn_status;
621
+		}
622
+	}
623
+
624
+
625
+	/**
626
+	 * @deprecated 4.9.12
627
+	 * @return string
628
+	 */
629
+	public function new_txn_status()
630
+	{
631
+		EE_Error::doing_it_wrong(
632
+			__METHOD__,
633
+			esc_html__(
634
+				'This logic has been removed. Please just use \EE_Transaction::status_ID() instead.',
635
+				'event_espresso'
636
+			),
637
+			'4.9.12'
638
+		);
639
+		return $this->_new_txn_status;
640
+	}
641
+
642
+
643
+	/**
644
+	 * @deprecated 4.9.12
645
+	 * @param string $new_txn_status
646
+	 */
647
+	public function set_new_txn_status($new_txn_status)
648
+	{
649
+		EE_Error::doing_it_wrong(
650
+			__METHOD__,
651
+			esc_html__(
652
+				'This logic has been removed. Please just use \EE_Transaction::set_status() instead.',
653
+				'event_espresso'
654
+			),
655
+			'4.9.12'
656
+		);
657
+		$this->_new_txn_status = $new_txn_status;
658
+	}
659
+
660
+
661
+	/**
662
+	 * reg_status_updated
663
+	 *
664
+	 * @deprecated 4.9.12
665
+	 * @return bool
666
+	 */
667
+	public function txn_status_updated()
668
+	{
669
+		EE_Error::doing_it_wrong(
670
+			__METHOD__,
671
+			esc_html__(
672
+				'This logic has been moved into \EE_Transaction::txn_status_updated(), please use that method instead.',
673
+				'event_espresso'
674
+			),
675
+			'4.9.12'
676
+		);
677
+		return $this->_new_txn_status !== $this->_old_txn_status && $this->_old_txn_status !== null ? true : false;
678
+	}
679
+
680
+
681
+	/**
682
+	 * all_reg_steps_completed
683
+	 * returns:
684
+	 *    true if ALL reg steps have been marked as completed
685
+	 *        or false if any step is not completed
686
+	 *
687
+	 * @deprecated 4.9.12
688
+	 * @param EE_Transaction $transaction
689
+	 * @return boolean
690
+	 */
691
+	public function all_reg_steps_completed(EE_Transaction $transaction)
692
+	{
693
+		EE_Error::doing_it_wrong(
694
+			__METHOD__,
695
+			esc_html__(
696
+				'This logic has been moved into \EE_Transaction::all_reg_steps_completed(), please use that method instead.',
697
+				'event_espresso'
698
+			),
699
+			'4.9.12',
700
+			'5.0.0'
701
+		);
702
+		return $transaction->all_reg_steps_completed();
703
+	}
704
+
705
+
706
+	/**
707
+	 * all_reg_steps_completed_except
708
+	 * returns:
709
+	 *        true if ALL reg steps, except a particular step that you wish to skip over, have been marked as completed
710
+	 *        or false if any other step is not completed
711
+	 *        or false if ALL steps are completed including the exception you are testing !!!
712
+	 *
713
+	 * @deprecated 4.9.12
714
+	 * @param EE_Transaction $transaction
715
+	 * @param string         $exception
716
+	 * @return boolean
717
+	 */
718
+	public function all_reg_steps_completed_except(EE_Transaction $transaction, $exception = '')
719
+	{
720
+		EE_Error::doing_it_wrong(
721
+			__METHOD__,
722
+			esc_html__(
723
+				'This logic has been moved into \EE_Transaction::all_reg_steps_completed_except(), please use that method instead.',
724
+				'event_espresso'
725
+			),
726
+			'4.9.12',
727
+			'5.0.0'
728
+		);
729
+		return $transaction->all_reg_steps_completed_except($exception);
730
+	}
731
+
732
+
733
+	/**
734
+	 * all_reg_steps_completed_except
735
+	 * returns:
736
+	 *        true if ALL reg steps, except the final step, have been marked as completed
737
+	 *        or false if any step is not completed
738
+	 *    or false if ALL steps are completed including the final step !!!
739
+	 *
740
+	 * @deprecated 4.9.12
741
+	 * @param EE_Transaction $transaction
742
+	 * @return boolean
743
+	 */
744
+	public function all_reg_steps_completed_except_final_step(EE_Transaction $transaction)
745
+	{
746
+		EE_Error::doing_it_wrong(
747
+			__METHOD__,
748
+			esc_html__(
749
+				'This logic has been moved into \EE_Transaction::all_reg_steps_completed_except_final_step(), please use that method instead.',
750
+				'event_espresso'
751
+			),
752
+			'4.9.12',
753
+			'5.0.0'
754
+		);
755
+		return $transaction->all_reg_steps_completed_except_final_step();
756
+	}
757
+
758
+
759
+	/**
760
+	 * reg_step_completed
761
+	 * returns:
762
+	 *    true if a specific reg step has been marked as completed
763
+	 *    a Unix timestamp if it has been initialized but not yet completed,
764
+	 *    or false if it has not yet been initialized
765
+	 *
766
+	 * @deprecated 4.9.12
767
+	 * @param EE_Transaction $transaction
768
+	 * @param string         $reg_step_slug
769
+	 * @return boolean | int
770
+	 */
771
+	public function reg_step_completed(EE_Transaction $transaction, $reg_step_slug)
772
+	{
773
+		EE_Error::doing_it_wrong(
774
+			__METHOD__,
775
+			esc_html__(
776
+				'This logic has been moved into \EE_Transaction::reg_step_completed(), please use that method instead.',
777
+				'event_espresso'
778
+			),
779
+			'4.9.12',
780
+			'5.0.0'
781
+		);
782
+		return $transaction->reg_step_completed($reg_step_slug);
783
+	}
784
+
785
+
786
+	/**
787
+	 * completed_final_reg_step
788
+	 * returns:
789
+	 *    true if the finalize_registration reg step has been marked as completed
790
+	 *    a Unix timestamp if it has been initialized but not yet completed,
791
+	 *    or false if it has not yet been initialized
792
+	 *
793
+	 * @deprecated 4.9.12
794
+	 * @param EE_Transaction $transaction
795
+	 * @return boolean | int
796
+	 */
797
+	public function final_reg_step_completed(EE_Transaction $transaction)
798
+	{
799
+		EE_Error::doing_it_wrong(
800
+			__METHOD__,
801
+			esc_html__(
802
+				'This logic has been moved into \EE_Transaction::final_reg_step_completed(), please use that method instead.',
803
+				'event_espresso'
804
+			),
805
+			'4.9.12',
806
+			'5.0.0'
807
+		);
808
+		return $transaction->final_reg_step_completed();
809
+	}
810
+
811
+
812
+	/**
813
+	 * set_reg_step_initiated
814
+	 * given a valid TXN_reg_step, this sets it's value to a unix timestamp
815
+	 *
816
+	 * @deprecated 4.9.12
817
+	 * @access     public
818
+	 * @param \EE_Transaction $transaction
819
+	 * @param string          $reg_step_slug
820
+	 * @return boolean
821
+	 * @throws \EE_Error
822
+	 */
823
+	public function set_reg_step_initiated(EE_Transaction $transaction, $reg_step_slug)
824
+	{
825
+		EE_Error::doing_it_wrong(
826
+			__METHOD__,
827
+			esc_html__(
828
+				'This logic has been moved into \EE_Transaction::set_reg_step_initiated(), please use that method instead.',
829
+				'event_espresso'
830
+			),
831
+			'4.9.12',
832
+			'5.0.0'
833
+		);
834
+		return $transaction->set_reg_step_initiated($reg_step_slug);
835
+	}
836
+
837
+
838
+	/**
839
+	 * set_reg_step_completed
840
+	 * given a valid TXN_reg_step, this sets the step as completed
841
+	 *
842
+	 * @deprecated 4.9.12
843
+	 * @access     public
844
+	 * @param \EE_Transaction $transaction
845
+	 * @param string          $reg_step_slug
846
+	 * @return boolean
847
+	 * @throws \EE_Error
848
+	 */
849
+	public function set_reg_step_completed(EE_Transaction $transaction, $reg_step_slug)
850
+	{
851
+		EE_Error::doing_it_wrong(
852
+			__METHOD__,
853
+			esc_html__(
854
+				'This logic has been moved into \EE_Transaction::set_reg_step_completed(), please use that method instead.',
855
+				'event_espresso'
856
+			),
857
+			'4.9.12',
858
+			'5.0.0'
859
+		);
860
+		return $transaction->set_reg_step_completed($reg_step_slug);
861
+	}
862
+
863
+
864
+	/**
865
+	 * set_reg_step_completed
866
+	 * given a valid TXN_reg_step slug, this sets the step as NOT completed
867
+	 *
868
+	 * @deprecated 4.9.12
869
+	 * @access     public
870
+	 * @param \EE_Transaction $transaction
871
+	 * @param string          $reg_step_slug
872
+	 * @return boolean
873
+	 * @throws \EE_Error
874
+	 */
875
+	public function set_reg_step_not_completed(EE_Transaction $transaction, $reg_step_slug)
876
+	{
877
+		EE_Error::doing_it_wrong(
878
+			__METHOD__,
879
+			esc_html__(
880
+				'This logic has been moved into \EE_Transaction::set_reg_step_not_completed(), please use that method instead.',
881
+				'event_espresso'
882
+			),
883
+			'4.9.12',
884
+			'5.0.0'
885
+		);
886
+		return $transaction->set_reg_step_not_completed($reg_step_slug);
887
+	}
888
+
889
+
890
+	/**
891
+	 * remove_reg_step
892
+	 * given a valid TXN_reg_step slug, this will remove (unset)
893
+	 * the reg step from the TXN reg step array
894
+	 *
895
+	 * @deprecated 4.9.12
896
+	 * @access     public
897
+	 * @param \EE_Transaction $transaction
898
+	 * @param string          $reg_step_slug
899
+	 * @return void
900
+	 */
901
+	public function remove_reg_step(EE_Transaction $transaction, $reg_step_slug)
902
+	{
903
+		EE_Error::doing_it_wrong(
904
+			__METHOD__,
905
+			esc_html__(
906
+				'This logic has been moved into \EE_Transaction::remove_reg_step(), please use that method instead.',
907
+				'event_espresso'
908
+			),
909
+			'4.9.12',
910
+			'5.0.0'
911
+		);
912
+		$transaction->remove_reg_step($reg_step_slug);
913
+	}
914
+
915
+
916
+	/**
917
+	 *    toggle_failed_transaction_status
918
+	 * upgrades a TXNs status from failed to abandoned,
919
+	 * meaning that contact information has been captured for at least one registrant
920
+	 *
921
+	 * @deprecated 4.9.12
922
+	 * @access     public
923
+	 * @param EE_Transaction $transaction
924
+	 * @return    boolean
925
+	 * @throws \EE_Error
926
+	 */
927
+	public function toggle_failed_transaction_status(EE_Transaction $transaction)
928
+	{
929
+		EE_Error::doing_it_wrong(
930
+			__METHOD__,
931
+			esc_html__(
932
+				'This logic has been moved into \EE_Transaction::toggle_failed_transaction_status(), please use that method instead.',
933
+				'event_espresso'
934
+			),
935
+			'4.9.12',
936
+			'5.0.0'
937
+		);
938
+		return $transaction->toggle_failed_transaction_status();
939
+	}
940
+
941
+
942
+	/**
943
+	 * toggle_abandoned_transaction_status
944
+	 * upgrades a TXNs status from failed or abandoned to incomplete
945
+	 *
946
+	 * @deprecated 4.9.12
947
+	 * @access     public
948
+	 * @param  EE_Transaction $transaction
949
+	 * @return boolean
950
+	 */
951
+	public function toggle_abandoned_transaction_status(EE_Transaction $transaction)
952
+	{
953
+		EE_Error::doing_it_wrong(
954
+			__METHOD__,
955
+			esc_html__(
956
+				'This logic has been moved into \EE_Transaction::toggle_abandoned_transaction_status(), please use that method instead.',
957
+				'event_espresso'
958
+			),
959
+			'4.9.12',
960
+			'5.0.0'
961
+		);
962
+		return $transaction->toggle_abandoned_transaction_status();
963
+	}
964 964
 }
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
     public static function instance($registration_query_params = array())
54 54
     {
55 55
         // check if class object is instantiated
56
-        if (! self::$_instance instanceof EE_Transaction_Processor) {
56
+        if ( ! self::$_instance instanceof EE_Transaction_Processor) {
57 57
             self::$_instance = new self($registration_query_params);
58 58
         }
59 59
         return self::$_instance;
@@ -311,7 +311,7 @@  discard block
 block discarded – undo
311 311
         // these reg statuses should not be considered in any calculations involving monies owing
312 312
         $closed_reg_statuses = ! empty($closed_reg_statuses) ? $closed_reg_statuses
313 313
             : EEM_Registration::closed_reg_statuses();
314
-        if (! in_array($registration->status_ID(), $closed_reg_statuses, true)) {
314
+        if ( ! in_array($registration->status_ID(), $closed_reg_statuses, true)) {
315 315
             return false;
316 316
         }
317 317
         try {
@@ -363,7 +363,7 @@  discard block
 block discarded – undo
363 363
     public function get_transaction_for_registration(EE_Registration $registration)
364 364
     {
365 365
         $transaction = $registration->transaction();
366
-        if (! $transaction instanceof EE_Transaction) {
366
+        if ( ! $transaction instanceof EE_Transaction) {
367 367
             throw new EE_Error(
368 368
                 sprintf(
369 369
                     __('The Transaction for Registration %1$d was not found or is invalid.', 'event_espresso'),
@@ -393,7 +393,7 @@  discard block
 block discarded – undo
393 393
             $transaction->ID(),
394 394
             $registration->ticket_ID()
395 395
         );
396
-        if (! $ticket_line_item instanceof EE_Line_Item) {
396
+        if ( ! $ticket_line_item instanceof EE_Line_Item) {
397 397
             throw new EE_Error(
398 398
                 sprintf(
399 399
                     __(
@@ -476,7 +476,7 @@  discard block
 block discarded – undo
476 476
         /** @type EE_Registration_Processor $registration_processor */
477 477
         $registration_processor = EE_Registry::instance()->load_class('Registration_Processor');
478 478
         // check that method exists
479
-        if (! method_exists($registration_processor, $method_name)) {
479
+        if ( ! method_exists($registration_processor, $method_name)) {
480 480
             throw new EE_Error(__('Method does not exist.', 'event_espresso'));
481 481
         }
482 482
         // make sure some query params are set for retrieving registrations
@@ -534,7 +534,7 @@  discard block
 block discarded – undo
534 534
                         $transaction,
535 535
                         EEM_Payment_Method::scope_cart
536 536
                     );
537
-                    if (! empty($available_payment_methods)) {
537
+                    if ( ! empty($available_payment_methods)) {
538 538
                         $PMD_ID = 0;
539 539
                         foreach ($available_payment_methods as $available_payment_method) {
540 540
                             if ($available_payment_method instanceof EE_Payment_Method
@@ -544,7 +544,7 @@  discard block
 block discarded – undo
544 544
                                 break;
545 545
                             }
546 546
                         }
547
-                        if (! $PMD_ID) {
547
+                        if ( ! $PMD_ID) {
548 548
                             $first_payment_method = reset($available_payment_methods);
549 549
                             if ($first_payment_method instanceof EE_Payment_Method) {
550 550
                                 $PMD_ID = $first_payment_method->ID();
Please login to merge, or discard this patch.
core/admin/EE_Help_Tour_final_stop.class.php 2 patches
Indentation   +43 added lines, -43 removed lines patch added patch discarded remove patch
@@ -15,51 +15,51 @@
 block discarded – undo
15 15
 class EE_Help_Tour_final_stop extends EE_Help_Tour
16 16
 {
17 17
 
18
-    protected function _set_tour_properties()
19
-    {
20
-        $this->_label = __('Final Stop Tour', 'event_espresso');
21
-        $this->_slug = 'final-stop-tour';
22
-    }
18
+	protected function _set_tour_properties()
19
+	{
20
+		$this->_label = __('Final Stop Tour', 'event_espresso');
21
+		$this->_slug = 'final-stop-tour';
22
+	}
23 23
 
24 24
 
25
-    protected function _set_tour_stops()
26
-    {
27
-        $this->_stops = array(
28
-            10 => array(
29
-                'id'          => 'contextual-help-link',
30
-                'content'     => $this->_end(),
31
-                'button_text' => __('Quit', 'event_espresso'),
32
-                'options'     => array(
33
-                    'tipLocation'    => 'left',
34
-                    'tipAdjustmentY' => -20,
35
-                    'tipAdjustmentX' => 10,
36
-                ),
37
-            ),
38
-        );
39
-    }
25
+	protected function _set_tour_stops()
26
+	{
27
+		$this->_stops = array(
28
+			10 => array(
29
+				'id'          => 'contextual-help-link',
30
+				'content'     => $this->_end(),
31
+				'button_text' => __('Quit', 'event_espresso'),
32
+				'options'     => array(
33
+					'tipLocation'    => 'left',
34
+					'tipAdjustmentY' => -20,
35
+					'tipAdjustmentX' => 10,
36
+				),
37
+			),
38
+		);
39
+	}
40 40
 
41 41
 
42
-    /**
43
-     * This is the default last stop for all tours that is displayed at the end of a tour OR when a tour is exited for
44
-     * the first time.
45
-     *
46
-     * @return string
47
-     */
48
-    protected function _end()
49
-    {
50
-        $query_args = array(
51
-            'action' => 'admin_option_settings',
52
-            'page'   => 'espresso_general_settings',
53
-        );
54
-        return '<p>'
55
-               . sprintf(
56
-                   __(
57
-                       'That\'s it for the tour!  At any time you can restart a tour by clicking on this help dropdown and then clicking one of the Tour buttons.  There are help tours available on all Event Espresso Admin pages.  If you want to turn off help tours for all pages, %sgo here%s. All the best with your events!',
58
-                       'event_espresso'
59
-                   ),
60
-                   '<a href="' . EE_Admin_Page::add_query_args_and_nonce($query_args, admin_url('admin.php')) . '">',
61
-                   '</a>'
62
-               )
63
-               . '</p>';
64
-    }
42
+	/**
43
+	 * This is the default last stop for all tours that is displayed at the end of a tour OR when a tour is exited for
44
+	 * the first time.
45
+	 *
46
+	 * @return string
47
+	 */
48
+	protected function _end()
49
+	{
50
+		$query_args = array(
51
+			'action' => 'admin_option_settings',
52
+			'page'   => 'espresso_general_settings',
53
+		);
54
+		return '<p>'
55
+			   . sprintf(
56
+				   __(
57
+					   'That\'s it for the tour!  At any time you can restart a tour by clicking on this help dropdown and then clicking one of the Tour buttons.  There are help tours available on all Event Espresso Admin pages.  If you want to turn off help tours for all pages, %sgo here%s. All the best with your events!',
58
+					   'event_espresso'
59
+				   ),
60
+				   '<a href="' . EE_Admin_Page::add_query_args_and_nonce($query_args, admin_url('admin.php')) . '">',
61
+				   '</a>'
62
+			   )
63
+			   . '</p>';
64
+	}
65 65
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
                        'That\'s it for the tour!  At any time you can restart a tour by clicking on this help dropdown and then clicking one of the Tour buttons.  There are help tours available on all Event Espresso Admin pages.  If you want to turn off help tours for all pages, %sgo here%s. All the best with your events!',
58 58
                        'event_espresso'
59 59
                    ),
60
-                   '<a href="' . EE_Admin_Page::add_query_args_and_nonce($query_args, admin_url('admin.php')) . '">',
60
+                   '<a href="'.EE_Admin_Page::add_query_args_and_nonce($query_args, admin_url('admin.php')).'">',
61 61
                    '</a>'
62 62
                )
63 63
                . '</p>';
Please login to merge, or discard this patch.
modules/single_page_checkout/inc/EE_Checkout.class.php 2 patches
Spacing   +33 added lines, -33 removed lines patch added patch discarded remove patch
@@ -313,7 +313,7 @@  discard block
 block discarded – undo
313 313
      */
314 314
     public function reg_status_updated($REG_ID)
315 315
     {
316
-        return isset($this->reg_status_updated[ $REG_ID ]) ? $this->reg_status_updated[ $REG_ID ] : false;
316
+        return isset($this->reg_status_updated[$REG_ID]) ? $this->reg_status_updated[$REG_ID] : false;
317 317
     }
318 318
 
319 319
 
@@ -323,7 +323,7 @@  discard block
 block discarded – undo
323 323
      */
324 324
     public function set_reg_status_updated($REG_ID, $reg_status)
325 325
     {
326
-        $this->reg_status_updated[ $REG_ID ] = filter_var($reg_status, FILTER_VALIDATE_BOOLEAN);
326
+        $this->reg_status_updated[$REG_ID] = filter_var($reg_status, FILTER_VALIDATE_BOOLEAN);
327 327
     }
328 328
 
329 329
 
@@ -382,7 +382,7 @@  discard block
 block discarded – undo
382 382
      */
383 383
     public function add_reg_step(EE_SPCO_Reg_Step $reg_step_obj)
384 384
     {
385
-        $this->reg_steps[ $reg_step_obj->slug() ] = $reg_step_obj;
385
+        $this->reg_steps[$reg_step_obj->slug()] = $reg_step_obj;
386 386
     }
387 387
 
388 388
 
@@ -428,7 +428,7 @@  discard block
 block discarded – undo
428 428
      */
429 429
     public function remove_reg_step($reg_step_slug = '', $reset = true)
430 430
     {
431
-        unset($this->reg_steps[ $reg_step_slug ]);
431
+        unset($this->reg_steps[$reg_step_slug]);
432 432
         if ($this->transaction instanceof EE_Transaction) {
433 433
             // now remove reg step from TXN and save
434 434
             $this->transaction->remove_reg_step($reg_step_slug);
@@ -450,8 +450,8 @@  discard block
 block discarded – undo
450 450
      */
451 451
     public function set_reg_step_order($reg_step_slug = '', $order = 100)
452 452
     {
453
-        if (isset($this->reg_steps[ $reg_step_slug ])) {
454
-            $this->reg_steps[ $reg_step_slug ]->set_order($order);
453
+        if (isset($this->reg_steps[$reg_step_slug])) {
454
+            $this->reg_steps[$reg_step_slug]->set_order($order);
455 455
         }
456 456
     }
457 457
 
@@ -466,8 +466,8 @@  discard block
 block discarded – undo
466 466
     public function set_current_step($current_step)
467 467
     {
468 468
         // grab what step we're on
469
-        $this->current_step = isset($this->reg_steps[ $current_step ])
470
-            ? $this->reg_steps[ $current_step ]
469
+        $this->current_step = isset($this->reg_steps[$current_step])
470
+            ? $this->reg_steps[$current_step]
471 471
             : reset(
472 472
                 $this->reg_steps
473 473
             );
@@ -578,7 +578,7 @@  discard block
 block discarded – undo
578 578
      */
579 579
     public function find_reg_step($reg_step_slug = '')
580 580
     {
581
-        if (! empty($reg_step_slug)) {
581
+        if ( ! empty($reg_step_slug)) {
582 582
             // copy reg step array
583 583
             $reg_steps = $this->reg_steps;
584 584
             // set pointer to start of array
@@ -639,7 +639,7 @@  discard block
 block discarded – undo
639 639
             )
640 640
         ) {
641 641
             // set the start time for this reg step
642
-            if (! $this->transaction->set_reg_step_initiated($reg_step->slug())) {
642
+            if ( ! $this->transaction->set_reg_step_initiated($reg_step->slug())) {
643 643
                 if (WP_DEBUG) {
644 644
                     EE_Error::add_error(
645 645
                         sprintf(
@@ -742,7 +742,7 @@  discard block
 block discarded – undo
742 742
         $session = EE_Registry::instance()->load_core('Session');
743 743
         $cart = $transaction instanceof EE_Transaction ? EE_Cart::get_cart_from_txn($transaction, $session) : null;
744 744
         // verify cart
745
-        if (! $cart instanceof EE_Cart) {
745
+        if ( ! $cart instanceof EE_Cart) {
746 746
             $cart = EE_Registry::instance()->load_core('Cart');
747 747
         }
748 748
 
@@ -760,7 +760,7 @@  discard block
 block discarded – undo
760 760
     {
761 761
         $txn_reg_steps_array = array();
762 762
         foreach ($this->reg_steps as $reg_step) {
763
-            $txn_reg_steps_array[ $reg_step->slug() ] = false;
763
+            $txn_reg_steps_array[$reg_step->slug()] = false;
764 764
         }
765 765
         return $txn_reg_steps_array;
766 766
     }
@@ -799,7 +799,7 @@  discard block
 block discarded – undo
799 799
      */
800 800
     public function stash_transaction_and_checkout()
801 801
     {
802
-        if (! $this->revisit) {
802
+        if ( ! $this->revisit) {
803 803
             $this->update_txn_reg_steps_array();
804 804
         }
805 805
         $this->track_transaction_and_registration_status_updates();
@@ -926,7 +926,7 @@  discard block
 block discarded – undo
926 926
             // should this registration be processed during this visit ?
927 927
             if ($this->visit_allows_processing_of_this_registration($registration)) {
928 928
                 // set TXN ID
929
-                if (! $registration->transaction_ID()) {
929
+                if ( ! $registration->transaction_ID()) {
930 930
                     $registration->set_transaction_id($this->transaction->ID());
931 931
                 }
932 932
                 // verify and save the attendee
@@ -936,7 +936,7 @@  discard block
 block discarded – undo
936 936
                 // save changes
937 937
                 $registration->save();
938 938
                 // update txn cache
939
-                if (! $this->transaction->update_cache_after_object_save('Registration', $registration)) {
939
+                if ( ! $this->transaction->update_cache_after_object_save('Registration', $registration)) {
940 940
                     if ($show_errors) {
941 941
                         EE_Error::add_error(
942 942
                             __(
@@ -979,7 +979,7 @@  discard block
 block discarded – undo
979 979
         if ($registration->attendee() instanceof EE_Attendee) {
980 980
             // save so that ATT has ID
981 981
             $registration->attendee()->save();
982
-            if (! $registration->update_cache_after_object_save('Attendee', $registration->attendee())) {
982
+            if ( ! $registration->update_cache_after_object_save('Attendee', $registration->attendee())) {
983 983
                 if ($show_errors) {
984 984
                     EE_Error::add_error(
985 985
                         __(
@@ -1028,7 +1028,7 @@  discard block
 block discarded – undo
1028 1028
             if ($answer instanceof EE_Answer) {
1029 1029
                 $answer->set_registration($registration->ID());
1030 1030
                 $answer->save();
1031
-                if (! $registration->update_cache_after_object_save('Answer', $answer, $cache_key)) {
1031
+                if ( ! $registration->update_cache_after_object_save('Answer', $answer, $cache_key)) {
1032 1032
                     if ($show_errors) {
1033 1033
                         EE_Error::add_error(
1034 1034
                             __(
@@ -1349,11 +1349,11 @@  discard block
 block discarded – undo
1349 1349
      */
1350 1350
     public function __wakeup()
1351 1351
     {
1352
-        if (! $this->primary_attendee_obj instanceof EE_Attendee && absint($this->primary_attendee_obj) !== 0) {
1352
+        if ( ! $this->primary_attendee_obj instanceof EE_Attendee && absint($this->primary_attendee_obj) !== 0) {
1353 1353
             // $this->primary_attendee_obj is actually just an ID, so use it to get the object from the db
1354 1354
             $this->primary_attendee_obj = EEM_Attendee::instance()->get_one_by_ID($this->primary_attendee_obj);
1355 1355
         }
1356
-        if (! $this->transaction instanceof EE_Transaction && absint($this->transaction) !== 0) {
1356
+        if ( ! $this->transaction instanceof EE_Transaction && absint($this->transaction) !== 0) {
1357 1357
             // $this->transaction is actually just an ID, so use it to get the object from the db
1358 1358
             $this->transaction = EEM_Transaction::instance()->get_one_by_ID($this->transaction);
1359 1359
         }
@@ -1377,9 +1377,9 @@  discard block
 block discarded – undo
1377 1377
     {
1378 1378
         $disabled = true;
1379 1379
         if (WP_DEBUG && ! $disabled) {
1380
-            $debug_data = get_option('EE_DEBUG_SPCO_' . EE_Session::instance()->id(), array());
1380
+            $debug_data = get_option('EE_DEBUG_SPCO_'.EE_Session::instance()->id(), array());
1381 1381
             $default_data = array(
1382
-                $class                    => $func . '() : ' . $line,
1382
+                $class                    => $func.'() : '.$line,
1383 1383
                 'request->step'           => $this->step,
1384 1384
                 'request->action'         => $this->action,
1385 1385
                 'current_step->slug'      => $this->current_step instanceof EE_SPCO_Reg_Step ?
@@ -1395,20 +1395,20 @@  discard block
 block discarded – undo
1395 1395
                 $default_data['TXN_status'] = $this->transaction->status_ID();
1396 1396
                 $default_data['TXN_reg_steps'] = $this->transaction->reg_steps();
1397 1397
                 foreach ($this->transaction->registrations($this->reg_cache_where_params) as $REG_ID => $registration) {
1398
-                    $default_data['registrations'][ $REG_ID ] = $registration->status_ID();
1398
+                    $default_data['registrations'][$REG_ID] = $registration->status_ID();
1399 1399
                 }
1400 1400
                 if ($this->transaction->ID()) {
1401
-                    $TXN_ID = 'EE_Transaction: ' . $this->transaction->ID();
1401
+                    $TXN_ID = 'EE_Transaction: '.$this->transaction->ID();
1402 1402
                     // don't serialize objects
1403 1403
                     $info = $this->_strip_objects($info);
1404
-                    if (! isset($debug_data[ $TXN_ID ])) {
1405
-                        $debug_data[ $TXN_ID ] = array();
1404
+                    if ( ! isset($debug_data[$TXN_ID])) {
1405
+                        $debug_data[$TXN_ID] = array();
1406 1406
                     }
1407
-                    $debug_data[ $TXN_ID ][ microtime() ] = array_merge(
1407
+                    $debug_data[$TXN_ID][microtime()] = array_merge(
1408 1408
                         $default_data,
1409 1409
                         $info
1410 1410
                     );
1411
-                    update_option('EE_DEBUG_SPCO_' . EE_Session::instance()->id(), $debug_data);
1411
+                    update_option('EE_DEBUG_SPCO_'.EE_Session::instance()->id(), $debug_data);
1412 1412
                 }
1413 1413
             }
1414 1414
         }
@@ -1425,17 +1425,17 @@  discard block
 block discarded – undo
1425 1425
     {
1426 1426
         foreach ((array) $info as $key => $value) {
1427 1427
             if (is_array($value)) {
1428
-                $info[ $key ] = $this->_strip_objects($value);
1428
+                $info[$key] = $this->_strip_objects($value);
1429 1429
             } elseif (is_object($value)) {
1430 1430
                 $object_class = get_class($value);
1431
-                $info[ $object_class ] = array();
1432
-                $info[ $object_class ]['ID'] = method_exists($value, 'ID') ? $value->ID() : 0;
1431
+                $info[$object_class] = array();
1432
+                $info[$object_class]['ID'] = method_exists($value, 'ID') ? $value->ID() : 0;
1433 1433
                 if (method_exists($value, 'status')) {
1434
-                    $info[ $object_class ]['status'] = $value->status();
1434
+                    $info[$object_class]['status'] = $value->status();
1435 1435
                 } elseif (method_exists($value, 'status_ID')) {
1436
-                    $info[ $object_class ]['status'] = $value->status_ID();
1436
+                    $info[$object_class]['status'] = $value->status_ID();
1437 1437
                 }
1438
-                unset($info[ $key ]);
1438
+                unset($info[$key]);
1439 1439
             }
1440 1440
         }
1441 1441
         return (array) $info;
Please login to merge, or discard this patch.
Indentation   +1426 added lines, -1426 removed lines patch added patch discarded remove patch
@@ -15,1430 +15,1430 @@
 block discarded – undo
15 15
 class EE_Checkout
16 16
 {
17 17
 
18
-    /**
19
-     *    whether current request originated from the EE admin
20
-     *
21
-     * @type bool
22
-     */
23
-    public $admin_request = false;
24
-
25
-    /**
26
-     * whether returning to edit attendee information or to retry a payment
27
-     *
28
-     * @type bool
29
-     */
30
-    public $revisit = false;
31
-
32
-    /**
33
-     * whether the primary registrant is returning to edit attendee information or to retry a payment
34
-     *
35
-     * @type bool
36
-     */
37
-    public $primary_revisit = false;
38
-
39
-    /**
40
-     * is registration allowed to progress or halted for some reason such as failing to pass recaptcha?
41
-     *
42
-     * @type bool
43
-     */
44
-    public $continue_reg = true;
45
-
46
-    /**
47
-     * redirect to thank you page ?
48
-     *
49
-     * @type bool
50
-     */
51
-    public $redirect = false;
52
-
53
-    /**
54
-     * generate the reg form or not ?
55
-     *
56
-     * @type bool
57
-     */
58
-    public $generate_reg_form = true;
59
-
60
-    /**
61
-     * process a reg form submission or not ?
62
-     *
63
-     * @type bool
64
-     */
65
-    public $process_form_submission = false;
66
-
67
-    /**
68
-     * tracks whether the TXN status modified during this checkout
69
-     *
70
-     * @type bool
71
-     */
72
-    public $txn_status_updated = false;
73
-
74
-    /**
75
-     * only triggered to true after absolutely everything has finished.
76
-     *
77
-     * @type bool
78
-     */
79
-    protected $exit_spco = false;
80
-
81
-    /**
82
-     * tracks whether any of the TXN's Registrations statuses modified during this checkout
83
-     * indexed by registration ID
84
-     *
85
-     * @type array
86
-     */
87
-    protected $reg_status_updated = array();
88
-
89
-    /**
90
-     * timestamp when redirected from Ticket Selector to the checkout
91
-     *
92
-     * @type int
93
-     */
94
-    public $uts = 0;
95
-
96
-    /**
97
-     * total number of tickets that were in the cart
98
-     *
99
-     * @type int
100
-     */
101
-    public $total_ticket_count = 0;
102
-
103
-    /**
104
-     * corresponds loosely to EE_Transaction::remaining()
105
-     * but can be modified by SPCO
106
-     *
107
-     * @type float
108
-     */
109
-    public $amount_owing = 0;
110
-
111
-    /**
112
-     * the reg step slug from the incoming request
113
-     *
114
-     * @type string
115
-     */
116
-    public $step = '';
117
-
118
-    /**
119
-     * the reg step slug for a step being edited
120
-     *
121
-     * @type string
122
-     */
123
-    public $edit_step = '';
124
-
125
-    /**
126
-     * the action being performed on the current step
127
-     *
128
-     * @type string
129
-     */
130
-    public $action = '';
131
-
132
-    /**
133
-     * reg_url_link for a previously saved registration
134
-     *
135
-     * @type string
136
-     */
137
-    public $reg_url_link = '';
138
-
139
-    /**
140
-     * string slug for the payment method that was selected during the payment options step
141
-     *
142
-     * @type string
143
-     */
144
-    public $selected_method_of_payment = '';
145
-
146
-    /**
147
-     * base url for the site's registration checkout page - additional url params will be added to this
148
-     *
149
-     * @type string
150
-     */
151
-    public $reg_page_base_url = '';
152
-
153
-    /**
154
-     * base url for the site's registration cancelled page - additional url params will be added to this
155
-     *
156
-     * @type string
157
-     */
158
-    public $cancel_page_url = '';
159
-
160
-    /**
161
-     * base url for the site's thank you page - additional url params will be added to this
162
-     *
163
-     * @type string
164
-     */
165
-    public $thank_you_page_url = '';
166
-
167
-    /**
168
-     * base url for any redirects - additional url params will be added to this
169
-     *
170
-     * @type string
171
-     */
172
-    public $redirect_url = '';
173
-
174
-    /**
175
-     * form of POST data for use with off-site gateways
176
-     *
177
-     * @type string
178
-     */
179
-    public $redirect_form = '';
180
-
181
-    /**
182
-     * array of query where params to use when retrieving cached registrations from $this->checkout->transaction
183
-     *
184
-     * @type array
185
-     */
186
-    public $reg_cache_where_params = array();
187
-
188
-    /**
189
-     * a class for managing and creating the JSON encoded array of data that gets passed back to the client during AJAX
190
-     * requests
191
-     *
192
-     * @type EE_SPCO_JSON_Response
193
-     */
194
-    public $json_response;
195
-
196
-    /**
197
-     * where we are going next in the reg process
198
-     *
199
-     * @type EE_SPCO_Reg_Step
200
-     */
201
-    public $next_step;
202
-
203
-    /**
204
-     * where we are in the reg process
205
-     *
206
-     * @type EE_SPCO_Reg_Step
207
-     */
208
-    public $current_step;
209
-
210
-    /**
211
-     *    $_cart - the current cart object
212
-     *
213
-     * @var EE_CART
214
-     */
215
-    public $cart;
216
-
217
-    /**
218
-     *    $_transaction - the current transaction object
219
-     *
220
-     * @var EE_Transaction
221
-     */
222
-    public $transaction;
223
-
224
-    /**
225
-     *    the related attendee object for the primary registrant
226
-     *
227
-     * @type EE_Attendee
228
-     */
229
-    public $primary_attendee_obj;
230
-
231
-    /**
232
-     *    $payment_method - the payment method object for the selected method of payment
233
-     *
234
-     * @type EE_Payment_Method
235
-     */
236
-    public $payment_method;
237
-
238
-    /**
239
-     *    $payment - if a payment was successfully made during the reg process,
240
-     *    then here it is !!!
241
-     *
242
-     * @type EE_Payment
243
-     */
244
-    public $payment;
245
-
246
-    /**
247
-     *    if a payment method was selected that uses an on-site gateway, then this is the billing form
248
-     *
249
-     * @type EE_Billing_Info_Form | EE_Billing_Attendee_Info_Form
250
-     */
251
-    public $billing_form;
252
-
253
-    /**
254
-     *    the entire registration form composed of ALL of the subsections generated by the various reg steps
255
-     *
256
-     * @type EE_Form_Section_Proper
257
-     */
258
-    public $registration_form;
259
-
260
-    /**
261
-     * array of EE_SPCO_Reg_Step objects
262
-     *
263
-     * @type EE_SPCO_Reg_Step[]
264
-     */
265
-    public $reg_steps = array();
266
-
267
-    /**
268
-     * array of EE_Payment_Method objects
269
-     *
270
-     * @type EE_Payment_Method[]
271
-     */
272
-    public $available_payment_methods = array();
273
-
274
-
275
-    /**
276
-     *    class constructor
277
-     *
278
-     * @access    public
279
-     */
280
-    public function __construct()
281
-    {
282
-        $this->reg_page_base_url = EE_Registry::instance()->CFG->core->reg_page_url();
283
-        $this->thank_you_page_url = EE_Registry::instance()->CFG->core->thank_you_page_url();
284
-        $this->cancel_page_url = EE_Registry::instance()->CFG->core->cancel_page_url();
285
-        $this->continue_reg = apply_filters('FHEE__EE_Checkout___construct___continue_reg', true);
286
-
287
-        $this->admin_request = is_admin() && ! EED_Single_Page_Checkout::getRequest()->isAjax();
288
-        $this->reg_cache_where_params = array(
289
-            0          => array('REG_deleted' => false),
290
-            'order_by' => array('REG_count' => 'ASC'),
291
-        );
292
-    }
293
-
294
-
295
-    /**
296
-     * returns true if ANY reg status was updated during checkout
297
-     *
298
-     * @return boolean
299
-     */
300
-    public function any_reg_status_updated()
301
-    {
302
-        foreach ($this->reg_status_updated as $reg_status) {
303
-            if ($reg_status) {
304
-                return true;
305
-            }
306
-        }
307
-        return false;
308
-    }
309
-
310
-
311
-    /**
312
-     * @param $REG_ID
313
-     * @return boolean
314
-     */
315
-    public function reg_status_updated($REG_ID)
316
-    {
317
-        return isset($this->reg_status_updated[ $REG_ID ]) ? $this->reg_status_updated[ $REG_ID ] : false;
318
-    }
319
-
320
-
321
-    /**
322
-     * @param $REG_ID
323
-     * @param $reg_status
324
-     */
325
-    public function set_reg_status_updated($REG_ID, $reg_status)
326
-    {
327
-        $this->reg_status_updated[ $REG_ID ] = filter_var($reg_status, FILTER_VALIDATE_BOOLEAN);
328
-    }
329
-
330
-
331
-    /**
332
-     * exit_spco
333
-     *
334
-     * @return bool
335
-     */
336
-    public function exit_spco()
337
-    {
338
-        return $this->exit_spco;
339
-    }
340
-
341
-
342
-    /**
343
-     * set_exit_spco
344
-     * can ONLY be set by the  Finalize_Registration reg step
345
-     */
346
-    public function set_exit_spco()
347
-    {
348
-        if ($this->current_step instanceof EE_SPCO_Reg_Step_Finalize_Registration) {
349
-            $this->exit_spco = true;
350
-        }
351
-    }
352
-
353
-
354
-    /**
355
-     *    reset_for_current_request
356
-     *
357
-     * @access    public
358
-     * @return    void
359
-     */
360
-    public function reset_for_current_request()
361
-    {
362
-        $this->process_form_submission = false;
363
-        $this->continue_reg = apply_filters('FHEE__EE_Checkout___construct___continue_reg', true);
364
-        $this->admin_request = is_admin() && ! EED_Single_Page_Checkout::getRequest()->isFrontAjax();
365
-        $this->continue_reg = true;
366
-        $this->redirect = false;
367
-        // don't reset the cached redirect form if we're about to be asked to display it !!!
368
-        $action = EED_Single_Page_Checkout::getRequest()->getRequestParam('action', 'display_spco_reg_step');
369
-        if ($action !== 'redirect_form') {
370
-            $this->redirect_form = '';
371
-        }
372
-        $this->redirect_url = '';
373
-        $this->json_response = new EE_SPCO_JSON_Response();
374
-        EE_Form_Section_Proper::reset_js_localization();
375
-    }
376
-
377
-
378
-    /**
379
-     *    add_reg_step
380
-     *
381
-     * @access    public
382
-     * @param EE_SPCO_Reg_Step $reg_step_obj
383
-     * @return    void
384
-     */
385
-    public function add_reg_step(EE_SPCO_Reg_Step $reg_step_obj)
386
-    {
387
-        $this->reg_steps[ $reg_step_obj->slug() ] = $reg_step_obj;
388
-    }
389
-
390
-
391
-    /**
392
-     * skip_reg_step
393
-     * if the current reg step does not need to run for some reason,
394
-     * then this will advance SPCO to the next reg step,
395
-     * and mark the skipped step as completed
396
-     *
397
-     * @access    public
398
-     * @param string $reg_step_slug
399
-     * @return    void
400
-     * @throws \EE_Error
401
-     */
402
-    public function skip_reg_step($reg_step_slug = '')
403
-    {
404
-        $step_to_skip = $this->find_reg_step($reg_step_slug);
405
-        if ($step_to_skip instanceof EE_SPCO_Reg_Step && $step_to_skip->is_current_step()) {
406
-            $step_to_skip->set_is_current_step(false);
407
-            $step_to_skip->set_completed();
408
-            // advance to the next step
409
-            $this->set_current_step($this->next_step->slug());
410
-            // also reset the step param in the request in case any other code references that directly
411
-            EED_Single_Page_Checkout::getRequest()->setRequestParam('step', $this->current_step->slug());
412
-            // since we are skipping a step and setting the current step to be what was previously the next step,
413
-            // we need to check that the next step is now correct, and not still set to the current step.
414
-            if ($this->current_step->slug() === $this->next_step->slug()) {
415
-                // correctly setup the next step
416
-                $this->set_next_step();
417
-            }
418
-            $this->set_reg_step_initiated($this->current_step);
419
-        }
420
-    }
421
-
422
-
423
-    /**
424
-     *    remove_reg_step
425
-     *
426
-     * @access    public
427
-     * @param string $reg_step_slug
428
-     * @param bool   $reset whether to reset reg steps after removal
429
-     * @throws EE_Error
430
-     */
431
-    public function remove_reg_step($reg_step_slug = '', $reset = true)
432
-    {
433
-        unset($this->reg_steps[ $reg_step_slug ]);
434
-        if ($this->transaction instanceof EE_Transaction) {
435
-            // now remove reg step from TXN and save
436
-            $this->transaction->remove_reg_step($reg_step_slug);
437
-            $this->transaction->save();
438
-        }
439
-        if ($reset) {
440
-            $this->reset_reg_steps();
441
-        }
442
-    }
443
-
444
-
445
-    /**
446
-     *    set_reg_step_order
447
-     *
448
-     * @access    public
449
-     * @param string $reg_step_slug
450
-     * @param int    $order
451
-     * @return    void
452
-     */
453
-    public function set_reg_step_order($reg_step_slug = '', $order = 100)
454
-    {
455
-        if (isset($this->reg_steps[ $reg_step_slug ])) {
456
-            $this->reg_steps[ $reg_step_slug ]->set_order($order);
457
-        }
458
-    }
459
-
460
-
461
-    /**
462
-     *    set_current_step
463
-     *
464
-     * @access    public
465
-     * @param string $current_step
466
-     * @return    void
467
-     */
468
-    public function set_current_step($current_step)
469
-    {
470
-        // grab what step we're on
471
-        $this->current_step = isset($this->reg_steps[ $current_step ])
472
-            ? $this->reg_steps[ $current_step ]
473
-            : reset(
474
-                $this->reg_steps
475
-            );
476
-        // verify instance
477
-        if ($this->current_step instanceof EE_SPCO_Reg_Step) {
478
-            // we don't want to repeat completed steps if this is the first time through SPCO
479
-            if ($this->continue_reg && ! $this->revisit && $this->current_step->completed()) {
480
-                // so advance to the next step
481
-                $this->set_next_step();
482
-                if ($this->next_step instanceof EE_SPCO_Reg_Step) {
483
-                    // and attempt to set it as the current step
484
-                    $this->set_current_step($this->next_step->slug());
485
-                }
486
-                return;
487
-            }
488
-            $this->current_step->set_is_current_step(true);
489
-        } else {
490
-            EE_Error::add_error(
491
-                __('The current step could not be set.', 'event_espresso'),
492
-                __FILE__,
493
-                __FUNCTION__,
494
-                __LINE__
495
-            );
496
-        }
497
-    }
498
-
499
-
500
-    /**
501
-     *    set_next_step
502
-     * advances the reg_steps array pointer and sets the next step, then reverses pointer back to the current step
503
-     *
504
-     * @access    public
505
-     * @return    void
506
-     */
507
-    public function set_next_step()
508
-    {
509
-        // set pointer to start of array
510
-        reset($this->reg_steps);
511
-        // if there is more than one step
512
-        if (count($this->reg_steps) > 1) {
513
-            // advance to the current step and set pointer
514
-            while (key($this->reg_steps) !== $this->current_step->slug() && key($this->reg_steps) !== '') {
515
-                next($this->reg_steps);
516
-            }
517
-        }
518
-        // advance one more spot ( if it exists )
519
-        $this->next_step = next($this->reg_steps);
520
-        // verify instance
521
-        $this->next_step = $this->next_step instanceof EE_SPCO_Reg_Step ? $this->next_step : null;
522
-        // then back to current step to reset
523
-        prev($this->reg_steps);
524
-    }
525
-
526
-
527
-    /**
528
-     *    get_next_reg_step
529
-     *    this simply returns the next step from reg_steps array
530
-     *
531
-     * @access    public
532
-     * @return    EE_SPCO_Reg_Step | null
533
-     */
534
-    public function get_next_reg_step()
535
-    {
536
-        $next = next($this->reg_steps);
537
-        prev($this->reg_steps);
538
-        return $next instanceof EE_SPCO_Reg_Step ? $next : null;
539
-    }
540
-
541
-
542
-    /**
543
-     * get_prev_reg_step
544
-     *    this simply returns the previous step from reg_steps array
545
-     *
546
-     * @access    public
547
-     * @return    EE_SPCO_Reg_Step | null
548
-     */
549
-    public function get_prev_reg_step()
550
-    {
551
-        $prev = prev($this->reg_steps);
552
-        next($this->reg_steps);
553
-        return $prev instanceof EE_SPCO_Reg_Step ? $prev : null;
554
-    }
555
-
556
-
557
-    /**
558
-     * sort_reg_steps
559
-     *
560
-     * @access public
561
-     * @return void
562
-     */
563
-    public function sort_reg_steps()
564
-    {
565
-        $reg_step_sorting_callback = apply_filters(
566
-            'FHEE__EE_Checkout__sort_reg_steps__reg_step_sorting_callback',
567
-            'reg_step_sorting_callback'
568
-        );
569
-        uasort($this->reg_steps, array($this, $reg_step_sorting_callback));
570
-    }
571
-
572
-
573
-    /**
574
-     * find_reg_step
575
-     * finds a reg step by the given slug
576
-     *
577
-     * @access    public
578
-     * @param string $reg_step_slug
579
-     * @return EE_SPCO_Reg_Step|null
580
-     */
581
-    public function find_reg_step($reg_step_slug = '')
582
-    {
583
-        if (! empty($reg_step_slug)) {
584
-            // copy reg step array
585
-            $reg_steps = $this->reg_steps;
586
-            // set pointer to start of array
587
-            reset($reg_steps);
588
-            // if there is more than one step
589
-            if (count($reg_steps) > 1) {
590
-                // advance to the current step and set pointer
591
-                while (key($reg_steps) !== $reg_step_slug && key($reg_steps) !== '') {
592
-                    next($reg_steps);
593
-                }
594
-                return current($reg_steps);
595
-            }
596
-        }
597
-        return null;
598
-    }
599
-
600
-
601
-    /**
602
-     * reg_step_sorting_callback
603
-     *
604
-     * @access public
605
-     * @param EE_SPCO_Reg_Step $reg_step_A
606
-     * @param EE_SPCO_Reg_Step $reg_step_B
607
-     * @return int
608
-     */
609
-    public function reg_step_sorting_callback(EE_SPCO_Reg_Step $reg_step_A, EE_SPCO_Reg_Step $reg_step_B)
610
-    {
611
-        // send finalize_registration step to the end of the array
612
-        if ($reg_step_A->slug() === 'finalize_registration') {
613
-            return 1;
614
-        } elseif ($reg_step_B->slug() === 'finalize_registration') {
615
-            return -1;
616
-        }
617
-        if ($reg_step_A->order() === $reg_step_B->order()) {
618
-            return 0;
619
-        }
620
-        return ($reg_step_A->order() > $reg_step_B->order()) ? 1 : -1;
621
-    }
622
-
623
-
624
-    /**
625
-     * set_reg_step_initiated
626
-     *
627
-     * @access    public
628
-     * @param    EE_SPCO_Reg_Step $reg_step
629
-     * @throws \EE_Error
630
-     */
631
-    public function set_reg_step_initiated(EE_SPCO_Reg_Step $reg_step)
632
-    {
633
-        // call set_reg_step_initiated ???
634
-        if (// first time visiting SPCO ?
635
-            ! $this->revisit
636
-            && (
637
-                // and displaying the reg step form for the first time ?
638
-                $this->action === 'display_spco_reg_step'
639
-                // or initializing the final step
640
-                || $reg_step instanceof EE_SPCO_Reg_Step_Finalize_Registration
641
-            )
642
-        ) {
643
-            // set the start time for this reg step
644
-            if (! $this->transaction->set_reg_step_initiated($reg_step->slug())) {
645
-                if (WP_DEBUG) {
646
-                    EE_Error::add_error(
647
-                        sprintf(
648
-                            __('The "%1$s" registration step was not initialized properly.', 'event_espresso'),
649
-                            $reg_step->name()
650
-                        ),
651
-                        __FILE__,
652
-                        __FUNCTION__,
653
-                        __LINE__
654
-                    );
655
-                }
656
-            }
657
-        }
658
-    }
659
-
660
-
661
-    /**
662
-     *    set_reg_step_JSON_info
663
-     *
664
-     * @access public
665
-     * @return    void
666
-     */
667
-    public function set_reg_step_JSON_info()
668
-    {
669
-        EE_Registry::$i18n_js_strings['reg_steps'] = array();
670
-        // pass basic reg step data to JS
671
-        foreach ($this->reg_steps as $reg_step) {
672
-            EE_Registry::$i18n_js_strings['reg_steps'][] = $reg_step->slug();
673
-        }
674
-        // reset reg step html
675
-        // $this->json_response->set_reg_step_html('');
676
-    }
677
-
678
-
679
-    /**
680
-     *    reset_reg_steps
681
-     *
682
-     * @access public
683
-     * @return void
684
-     */
685
-    public function reset_reg_steps()
686
-    {
687
-        $this->sort_reg_steps();
688
-        $this->set_current_step(EED_Single_Page_Checkout::getRequest()->getRequestParam('step'));
689
-        $this->set_next_step();
690
-        // the text that appears on the reg step form submit button
691
-        $this->current_step->set_submit_button_text();
692
-        $this->set_reg_step_JSON_info();
693
-    }
694
-
695
-
696
-    /**
697
-     *    get_registration_time_limit
698
-     *
699
-     * @access    public
700
-     * @return        string
701
-     */
702
-    public function get_registration_time_limit()
703
-    {
704
-
705
-        $registration_time_limit = (float) (EE_Registry::instance()->SSN->expiration() - time());
706
-        $time_limit_format = $registration_time_limit > 60 * MINUTE_IN_SECONDS ? 'H:i:s' : 'i:s';
707
-        $registration_time_limit = date($time_limit_format, $registration_time_limit);
708
-        return apply_filters(
709
-            'FHEE__EE_Checkout__get_registration_time_limit__registration_time_limit',
710
-            $registration_time_limit
711
-        );
712
-    }
713
-
714
-
715
-    /**
716
-     * payment_required
717
-     *
718
-     * @return boolean
719
-     */
720
-    public function payment_required()
721
-    {
722
-        // if NOT:
723
-        //     registration via admin
724
-        //      completed TXN
725
-        //      overpaid TXN
726
-        //      free TXN(total = 0.00)
727
-        //      then payment required is TRUE
728
-        return ! ($this->admin_request
729
-                  || $this->transaction->is_completed()
730
-                  || $this->transaction->is_overpaid()
731
-                  || $this->transaction->is_free()) ? true : false;
732
-    }
733
-
734
-
735
-    /**
736
-     * get_cart_for_transaction
737
-     *
738
-     * @access public
739
-     * @param EE_Transaction $transaction
740
-     * @return EE_Cart
741
-     */
742
-    public function get_cart_for_transaction($transaction)
743
-    {
744
-        $session = EE_Registry::instance()->load_core('Session');
745
-        $cart = $transaction instanceof EE_Transaction ? EE_Cart::get_cart_from_txn($transaction, $session) : null;
746
-        // verify cart
747
-        if (! $cart instanceof EE_Cart) {
748
-            $cart = EE_Registry::instance()->load_core('Cart');
749
-        }
750
-
751
-        return $cart;
752
-    }
753
-
754
-
755
-    /**
756
-     *    initialize_txn_reg_steps_array
757
-     *
758
-     * @access public
759
-     * @return    array
760
-     */
761
-    public function initialize_txn_reg_steps_array()
762
-    {
763
-        $txn_reg_steps_array = array();
764
-        foreach ($this->reg_steps as $reg_step) {
765
-            $txn_reg_steps_array[ $reg_step->slug() ] = false;
766
-        }
767
-        return $txn_reg_steps_array;
768
-    }
769
-
770
-
771
-    /**
772
-     *    update_txn_reg_steps_array
773
-     *
774
-     * @access public
775
-     * @return    bool
776
-     * @throws \EE_Error
777
-     */
778
-    public function update_txn_reg_steps_array()
779
-    {
780
-        $updated = false;
781
-        foreach ($this->reg_steps as $reg_step) {
782
-            if ($reg_step->completed()) {
783
-                $updated = $this->transaction->set_reg_step_completed($reg_step->slug())
784
-                    ? true
785
-                    : $updated;
786
-            }
787
-        }
788
-        if ($updated) {
789
-            $this->transaction->save();
790
-        }
791
-        return $updated;
792
-    }
793
-
794
-
795
-    /**
796
-     *    stash_transaction_and_checkout
797
-     *
798
-     * @access public
799
-     * @return    void
800
-     * @throws \EE_Error
801
-     */
802
-    public function stash_transaction_and_checkout()
803
-    {
804
-        if (! $this->revisit) {
805
-            $this->update_txn_reg_steps_array();
806
-        }
807
-        $this->track_transaction_and_registration_status_updates();
808
-        // save all data to the db, but suppress errors
809
-        // $this->save_all_data( FALSE );
810
-        // cache the checkout in the session
811
-        EE_Registry::instance()->SSN->set_checkout($this);
812
-    }
813
-
814
-
815
-    /**
816
-     *    track_transaction_and_registration_status_updates
817
-     *    stores whether any updates were made to the TXN or it's related registrations
818
-     *
819
-     * @access public
820
-     * @return void
821
-     * @throws \EE_Error
822
-     */
823
-    public function track_transaction_and_registration_status_updates()
824
-    {
825
-        // verify the transaction
826
-        if ($this->transaction instanceof EE_Transaction) {
827
-            // has there been a TXN status change during this checkout?
828
-            $this->txn_status_updated = $this->transaction->txn_status_updated();
829
-            /** @type EE_Registration_Processor $registration_processor */
830
-            $registration_processor = EE_Registry::instance()->load_class('Registration_Processor');
831
-            // grab the saved registrations from the transaction
832
-            foreach ($this->transaction->registrations($this->reg_cache_where_params) as $registration) {
833
-                if ($registration_processor->reg_status_updated($registration->ID())) {
834
-                    $this->set_reg_status_updated($registration->ID(), true);
835
-                }
836
-            }
837
-        }
838
-    }
839
-
840
-
841
-    /**
842
-     *    visit_allows_processing_of_this_registration
843
-     *    determines if the current SPCO visit should allow the passed EE_Registration to be used in processing.
844
-     *    one of the following conditions must be met:
845
-     *        EITHER:    A) first time thru SPCO -> process ALL registrations ( NOT a revisit )
846
-     *        OR :        B) primary registrant is editing info -> process ALL registrations ( primary_revisit )
847
-     *        OR :        C) another registrant is editing info -> ONLY process their registration ( revisit AND their
848
-     *        reg_url_link matches )
849
-     *
850
-     * @access public
851
-     * @param    EE_Registration $registration
852
-     * @return    bool
853
-     * @throws \EE_Error
854
-     */
855
-    public function visit_allows_processing_of_this_registration(EE_Registration $registration)
856
-    {
857
-        return ! $this->revisit
858
-               || $this->primary_revisit
859
-               || (
860
-                   $this->revisit && $this->reg_url_link === $registration->reg_url_link()
861
-               )
862
-            ? true
863
-            : false;
864
-    }
865
-
866
-
867
-    /**
868
-     *    _transaction_has_primary_registration
869
-     *
870
-     * @access        private
871
-     * @return        bool
872
-     */
873
-    public function transaction_has_primary_registrant()
874
-    {
875
-        return $this->primary_attendee_obj instanceof EE_Attendee ? true : false;
876
-    }
877
-
878
-
879
-    /**
880
-     *    save_all_data
881
-     *    simply loops through the current transaction and saves all data for each registration
882
-     *
883
-     * @access public
884
-     * @param bool $show_errors
885
-     * @return bool
886
-     * @throws \EE_Error
887
-     */
888
-    public function save_all_data($show_errors = true)
889
-    {
890
-        // verify the transaction
891
-        if ($this->transaction instanceof EE_Transaction) {
892
-            // save to ensure that TXN has ID
893
-            $this->transaction->save();
894
-            // grab the saved registrations from the transaction
895
-            foreach ($this->transaction->registrations($this->reg_cache_where_params) as $registration) {
896
-                $this->_save_registration($registration, $show_errors);
897
-            }
898
-        } else {
899
-            if ($show_errors) {
900
-                EE_Error::add_error(
901
-                    __(
902
-                        'A valid Transaction was not found when attempting to save your registration information.',
903
-                        'event_espresso'
904
-                    ),
905
-                    __FILE__,
906
-                    __FUNCTION__,
907
-                    __LINE__
908
-                );
909
-            }
910
-            return false;
911
-        }
912
-        return true;
913
-    }
914
-
915
-
916
-    /**
917
-     * _save_registration_attendee
918
-     *
919
-     * @param    EE_Registration $registration
920
-     * @param bool               $show_errors
921
-     * @return void
922
-     * @throws \EE_Error
923
-     */
924
-    private function _save_registration($registration, $show_errors = true)
925
-    {
926
-        // verify object
927
-        if ($registration instanceof EE_Registration) {
928
-            // should this registration be processed during this visit ?
929
-            if ($this->visit_allows_processing_of_this_registration($registration)) {
930
-                // set TXN ID
931
-                if (! $registration->transaction_ID()) {
932
-                    $registration->set_transaction_id($this->transaction->ID());
933
-                }
934
-                // verify and save the attendee
935
-                $this->_save_registration_attendee($registration, $show_errors);
936
-                // save answers to reg form questions
937
-                $this->_save_registration_answers($registration, $show_errors);
938
-                // save changes
939
-                $registration->save();
940
-                // update txn cache
941
-                if (! $this->transaction->update_cache_after_object_save('Registration', $registration)) {
942
-                    if ($show_errors) {
943
-                        EE_Error::add_error(
944
-                            __(
945
-                                'The newly saved Registration object could not be cached on the Transaction.',
946
-                                'event_espresso'
947
-                            ),
948
-                            __FILE__,
949
-                            __FUNCTION__,
950
-                            __LINE__
951
-                        );
952
-                    }
953
-                }
954
-            }
955
-        } else {
956
-            if ($show_errors) {
957
-                EE_Error::add_error(
958
-                    __(
959
-                        'An invalid Registration object was discovered when attempting to save your registration information.',
960
-                        'event_espresso'
961
-                    ),
962
-                    __FILE__,
963
-                    __FUNCTION__,
964
-                    __LINE__
965
-                );
966
-            }
967
-        }
968
-    }
969
-
970
-
971
-    /**
972
-     * _save_registration_attendee
973
-     *
974
-     * @param    EE_Registration $registration
975
-     * @param bool               $show_errors
976
-     * @return void
977
-     * @throws \EE_Error
978
-     */
979
-    private function _save_registration_attendee($registration, $show_errors = true)
980
-    {
981
-        if ($registration->attendee() instanceof EE_Attendee) {
982
-            // save so that ATT has ID
983
-            $registration->attendee()->save();
984
-            if (! $registration->update_cache_after_object_save('Attendee', $registration->attendee())) {
985
-                if ($show_errors) {
986
-                    EE_Error::add_error(
987
-                        __(
988
-                            'The newly saved Attendee object could not be cached on the registration.',
989
-                            'event_espresso'
990
-                        ),
991
-                        __FILE__,
992
-                        __FUNCTION__,
993
-                        __LINE__
994
-                    );
995
-                }
996
-            }
997
-        } else {
998
-            if ($show_errors) {
999
-                EE_Error::add_error(
1000
-                    sprintf(
1001
-                        '%1$s||%1$s $attendee = %2$s',
1002
-                        __(
1003
-                            'Either no Attendee information was found, or an invalid Attendee object was discovered when attempting to save your registration information.',
1004
-                            'event_espresso'
1005
-                        ),
1006
-                        var_export($registration->attendee(), true)
1007
-                    ),
1008
-                    __FILE__,
1009
-                    __FUNCTION__,
1010
-                    __LINE__
1011
-                );
1012
-            }
1013
-        }
1014
-    }
1015
-
1016
-
1017
-    /**
1018
-     * _save_question_answers
1019
-     *
1020
-     * @param    EE_Registration $registration
1021
-     * @param bool               $show_errors
1022
-     * @return void
1023
-     * @throws \EE_Error
1024
-     */
1025
-    private function _save_registration_answers($registration, $show_errors = true)
1026
-    {
1027
-        // now save the answers
1028
-        foreach ($registration->answers() as $cache_key => $answer) {
1029
-            // verify object
1030
-            if ($answer instanceof EE_Answer) {
1031
-                $answer->set_registration($registration->ID());
1032
-                $answer->save();
1033
-                if (! $registration->update_cache_after_object_save('Answer', $answer, $cache_key)) {
1034
-                    if ($show_errors) {
1035
-                        EE_Error::add_error(
1036
-                            __(
1037
-                                'The newly saved Answer object could not be cached on the registration.',
1038
-                                'event_espresso'
1039
-                            ),
1040
-                            __FILE__,
1041
-                            __FUNCTION__,
1042
-                            __LINE__
1043
-                        );
1044
-                    }
1045
-                }
1046
-            } else {
1047
-                if ($show_errors) {
1048
-                    EE_Error::add_error(
1049
-                        __(
1050
-                            'An invalid Answer object was discovered when attempting to save your registration information.',
1051
-                            'event_espresso'
1052
-                        ),
1053
-                        __FILE__,
1054
-                        __FUNCTION__,
1055
-                        __LINE__
1056
-                    );
1057
-                }
1058
-            }
1059
-        }
1060
-    }
1061
-
1062
-
1063
-    /**
1064
-     *    refresh_all_entities
1065
-     *   will either refresh the entity map with objects form the db or from the checkout cache
1066
-     *
1067
-     * @access public
1068
-     * @param bool $from_db
1069
-     * @return bool
1070
-     * @throws \EE_Error
1071
-     */
1072
-    public function refresh_all_entities($from_db = false)
1073
-    {
1074
-        $from_db = $this->current_step->is_final_step() || $this->action === 'process_gateway_response'
1075
-            ? true
1076
-            : $from_db;
1077
-        // $this->log(
1078
-        //     __CLASS__,
1079
-        //     __FUNCTION__,
1080
-        //     __LINE__,
1081
-        //     array('from_db' => $from_db)
1082
-        // );
1083
-        return $from_db ? $this->refresh_from_db() : $this->refresh_entity_map();
1084
-    }
1085
-
1086
-
1087
-    /**
1088
-     *  refresh_entity_map
1089
-     *  simply loops through the current transaction and updates each
1090
-     *  model's entity map using EEM_Base::refresh_entity_map_from_db()
1091
-     *
1092
-     * @access public
1093
-     * @return bool
1094
-     * @throws \EE_Error
1095
-     */
1096
-    protected function refresh_from_db()
1097
-    {
1098
-        // verify the transaction
1099
-        if ($this->transaction instanceof EE_Transaction && $this->transaction->ID()) {
1100
-            // pull fresh TXN data from the db
1101
-            $this->transaction = $this->transaction->get_model()->refresh_entity_map_from_db($this->transaction->ID());
1102
-            // update EE_Checkout's cached primary_attendee object
1103
-            $this->primary_attendee_obj = $this->_refresh_primary_attendee_obj_from_db($this->transaction);
1104
-            // update EE_Checkout's cached payment object
1105
-            $payment = $this->transaction->last_payment();
1106
-            $this->payment = $payment instanceof EE_Payment ? $payment : $this->payment;
1107
-            // update EE_Checkout's cached payment_method object
1108
-            $payment_method = $this->payment instanceof EE_Payment ? $this->payment->payment_method() : null;
1109
-            $this->payment_method = $payment_method instanceof EE_Payment_Method ? $payment_method
1110
-                : $this->payment_method;
1111
-            // now refresh the cart, based on the TXN
1112
-            $this->cart = $this->get_cart_for_transaction($this->transaction);
1113
-        } else {
1114
-            EE_Error::add_error(
1115
-                __(
1116
-                    'A valid Transaction was not found when attempting to update the model entity mapper.',
1117
-                    'event_espresso'
1118
-                ),
1119
-                __FILE__,
1120
-                __FUNCTION__,
1121
-                __LINE__
1122
-            );
1123
-            return false;
1124
-        }
1125
-        return true;
1126
-    }
1127
-
1128
-
1129
-    /**
1130
-     * _refresh_primary_attendee_obj_from_db
1131
-     *
1132
-     * @param   EE_Transaction $transaction
1133
-     * @return  EE_Attendee | null
1134
-     * @throws \EE_Error
1135
-     */
1136
-    protected function _refresh_primary_attendee_obj_from_db(EE_Transaction $transaction)
1137
-    {
1138
-
1139
-        $primary_attendee_obj = null;
1140
-        // grab the saved registrations from the transaction
1141
-        foreach ($transaction->registrations($this->reg_cache_where_params, true) as $registration) {
1142
-            // verify object
1143
-            if ($registration instanceof EE_Registration) {
1144
-                $attendee = $registration->attendee();
1145
-                // verify object && maybe cache primary_attendee_obj ?
1146
-                if ($attendee instanceof EE_Attendee && $registration->is_primary_registrant()) {
1147
-                    $primary_attendee_obj = $attendee;
1148
-                }
1149
-            } else {
1150
-                EE_Error::add_error(
1151
-                    __(
1152
-                        'An invalid Registration object was discovered when attempting to update the model entity mapper.',
1153
-                        'event_espresso'
1154
-                    ),
1155
-                    __FILE__,
1156
-                    __FUNCTION__,
1157
-                    __LINE__
1158
-                );
1159
-            }
1160
-        }
1161
-        return $primary_attendee_obj;
1162
-    }
1163
-
1164
-
1165
-    /**
1166
-     *  refresh_entity_map
1167
-     *  simply loops through the current transaction and updates
1168
-     *  each model's entity map using EEM_Base::refresh_entity_map_with()
1169
-     *
1170
-     * @access public
1171
-     * @return bool
1172
-     * @throws \EE_Error
1173
-     */
1174
-    protected function refresh_entity_map()
1175
-    {
1176
-        // verify the transaction
1177
-        if ($this->transaction instanceof EE_Transaction && $this->transaction->ID()) {
1178
-            // never cache payment info
1179
-            $this->transaction->clear_cache('Payment');
1180
-            // is the Payment Options Reg Step completed ?
1181
-            if ($this->transaction->reg_step_completed('payment_options')) {
1182
-                // then check for payments and update TXN accordingly
1183
-                /** @type EE_Transaction_Payments $transaction_payments */
1184
-                $transaction_payments = EE_Registry::instance()->load_class('Transaction_Payments');
1185
-                $transaction_payments->calculate_total_payments_and_update_status($this->transaction);
1186
-            }
1187
-            // grab the saved registrations from the transaction
1188
-            foreach ($this->transaction->registrations($this->reg_cache_where_params) as $reg_cache_ID => $registration) {
1189
-                $this->_refresh_registration($reg_cache_ID, $registration);
1190
-            }
1191
-            // make sure our cached TXN is added to the model entity mapper
1192
-            $this->transaction = $this->transaction->get_model()->refresh_entity_map_with(
1193
-                $this->transaction->ID(),
1194
-                $this->transaction
1195
-            );
1196
-        } else {
1197
-            EE_Error::add_error(
1198
-                __(
1199
-                    'A valid Transaction was not found when attempting to update the model entity mapper.',
1200
-                    'event_espresso'
1201
-                ),
1202
-                __FILE__,
1203
-                __FUNCTION__,
1204
-                __LINE__
1205
-            );
1206
-            return false;
1207
-        }
1208
-        // verify and update the cart because inaccurate totals are not so much fun
1209
-        if ($this->cart instanceof EE_Cart) {
1210
-            $grand_total = $this->cart->get_grand_total();
1211
-            if ($grand_total instanceof EE_Line_Item && $grand_total->ID()) {
1212
-                $grand_total->recalculate_total_including_taxes();
1213
-                $grand_total = $grand_total->get_model()->refresh_entity_map_with(
1214
-                    $this->cart->get_grand_total()->ID(),
1215
-                    $this->cart->get_grand_total()
1216
-                );
1217
-            }
1218
-            if ($grand_total instanceof EE_Line_Item) {
1219
-                $this->cart = EE_Cart::instance($grand_total);
1220
-            } else {
1221
-                EE_Error::add_error(
1222
-                    __(
1223
-                        'A valid Cart was not found when attempting to update the model entity mapper.',
1224
-                        'event_espresso'
1225
-                    ),
1226
-                    __FILE__,
1227
-                    __FUNCTION__,
1228
-                    __LINE__
1229
-                );
1230
-                return false;
1231
-            }
1232
-        }
1233
-        return true;
1234
-    }
1235
-
1236
-
1237
-    /**
1238
-     * _refresh_registration
1239
-     *
1240
-     * @param    string | int    $reg_cache_ID
1241
-     * @param    EE_Registration $registration
1242
-     * @return void
1243
-     * @throws \EE_Error
1244
-     */
1245
-    protected function _refresh_registration($reg_cache_ID, $registration)
1246
-    {
1247
-
1248
-        // verify object
1249
-        if ($registration instanceof EE_Registration) {
1250
-            // update the entity mapper attendee
1251
-            $this->_refresh_registration_attendee($registration);
1252
-            // update the entity mapper answers for reg form questions
1253
-            $this->_refresh_registration_answers($registration);
1254
-            // make sure the cached registration is added to the model entity mapper
1255
-            $registration->get_model()->refresh_entity_map_with($reg_cache_ID, $registration);
1256
-        } else {
1257
-            EE_Error::add_error(
1258
-                __(
1259
-                    'An invalid Registration object was discovered when attempting to update the model entity mapper.',
1260
-                    'event_espresso'
1261
-                ),
1262
-                __FILE__,
1263
-                __FUNCTION__,
1264
-                __LINE__
1265
-            );
1266
-        }
1267
-    }
1268
-
1269
-
1270
-    /**
1271
-     * _save_registration_attendee
1272
-     *
1273
-     * @param    EE_Registration $registration
1274
-     * @return void
1275
-     * @throws \EE_Error
1276
-     */
1277
-    protected function _refresh_registration_attendee($registration)
1278
-    {
1279
-
1280
-        $attendee = $registration->attendee();
1281
-        // verify object
1282
-        if ($attendee instanceof EE_Attendee && $attendee->ID()) {
1283
-            // make sure the cached attendee is added to the model entity mapper
1284
-            $registration->attendee()->get_model()->refresh_entity_map_with($attendee->ID(), $attendee);
1285
-            // maybe cache primary_attendee_obj ?
1286
-            if ($registration->is_primary_registrant()) {
1287
-                $this->primary_attendee_obj = $attendee;
1288
-            }
1289
-        }
1290
-    }
1291
-
1292
-
1293
-    /**
1294
-     * _refresh_registration_answers
1295
-     *
1296
-     * @param    EE_Registration $registration
1297
-     * @return void
1298
-     * @throws \EE_Error
1299
-     */
1300
-    protected function _refresh_registration_answers($registration)
1301
-    {
1302
-
1303
-        // now update the answers
1304
-        foreach ($registration->answers() as $cache_key => $answer) {
1305
-            // verify object
1306
-            if ($answer instanceof EE_Answer) {
1307
-                if ($answer->ID()) {
1308
-                    // make sure the cached answer is added to the model entity mapper
1309
-                    $answer->get_model()->refresh_entity_map_with($answer->ID(), $answer);
1310
-                }
1311
-            } else {
1312
-                EE_Error::add_error(
1313
-                    __(
1314
-                        'An invalid Answer object was discovered when attempting to update the model entity mapper.',
1315
-                        'event_espresso'
1316
-                    ),
1317
-                    __FILE__,
1318
-                    __FUNCTION__,
1319
-                    __LINE__
1320
-                );
1321
-            }
1322
-        }
1323
-    }
1324
-
1325
-
1326
-    /**
1327
-     *    __sleep
1328
-     * to conserve db space, let's remove the reg_form and the EE_Checkout object from EE_SPCO_Reg_Step objects upon
1329
-     * serialization EE_Checkout will handle the reimplementation of itself upon waking, but we won't bother with the
1330
-     * reg form, because if needed, it will be regenerated anyways
1331
-     *
1332
-     * @return array
1333
-     * @throws \EE_Error
1334
-     */
1335
-    public function __sleep()
1336
-    {
1337
-        if ($this->primary_attendee_obj instanceof EE_Attendee && $this->primary_attendee_obj->ID()) {
1338
-            $this->primary_attendee_obj = $this->primary_attendee_obj->ID();
1339
-        }        // remove the reg form and the checkout
1340
-        if ($this->transaction instanceof EE_Transaction && $this->transaction->ID()) {
1341
-            $this->transaction = $this->transaction->ID();
1342
-        }        // remove the reg form and the checkout
1343
-        return array_diff(array_keys(get_object_vars($this)), array('billing_form', 'registration_form'));
1344
-    }
1345
-
1346
-
1347
-    /**
1348
-     *    __wakeup
1349
-     * to conserve db space, we are removing the EE_Checkout object from EE_SPCO_Reg_Step objects upon serialization
1350
-     * this will reinstate the EE_Checkout object on each EE_SPCO_Reg_Step object
1351
-     */
1352
-    public function __wakeup()
1353
-    {
1354
-        if (! $this->primary_attendee_obj instanceof EE_Attendee && absint($this->primary_attendee_obj) !== 0) {
1355
-            // $this->primary_attendee_obj is actually just an ID, so use it to get the object from the db
1356
-            $this->primary_attendee_obj = EEM_Attendee::instance()->get_one_by_ID($this->primary_attendee_obj);
1357
-        }
1358
-        if (! $this->transaction instanceof EE_Transaction && absint($this->transaction) !== 0) {
1359
-            // $this->transaction is actually just an ID, so use it to get the object from the db
1360
-            $this->transaction = EEM_Transaction::instance()->get_one_by_ID($this->transaction);
1361
-        }
1362
-        foreach ($this->reg_steps as $reg_step) {
1363
-            $reg_step->checkout = $this;
1364
-        }
1365
-    }
1366
-
1367
-
1368
-    /**
1369
-     * debug
1370
-     *
1371
-     * @param string $class
1372
-     * @param string $func
1373
-     * @param string $line
1374
-     * @param array  $info
1375
-     * @param bool   $display_request
1376
-     * @throws \EE_Error
1377
-     */
1378
-    public function log($class = '', $func = '', $line = '', $info = array(), $display_request = false)
1379
-    {
1380
-        $disabled = true;
1381
-        if (WP_DEBUG && ! $disabled) {
1382
-            $debug_data = get_option('EE_DEBUG_SPCO_' . EE_Session::instance()->id(), array());
1383
-            $default_data = array(
1384
-                $class                    => $func . '() : ' . $line,
1385
-                'request->step'           => $this->step,
1386
-                'request->action'         => $this->action,
1387
-                'current_step->slug'      => $this->current_step instanceof EE_SPCO_Reg_Step ?
1388
-                    $this->current_step->slug() : '',
1389
-                'current_step->completed' => $this->current_step instanceof EE_SPCO_Reg_Step ?
1390
-                    $this->current_step->completed() : '',
1391
-                'txn_status_updated'      => $this->transaction->txn_status_updated(),
1392
-                'reg_status_updated'      => $this->reg_status_updated,
1393
-                'reg_url_link'            => $this->reg_url_link,
1394
-            );
1395
-            if ($this->transaction instanceof EE_Transaction) {
1396
-                $default_data['TXN_status'] = $this->transaction->status_ID();
1397
-                $default_data['TXN_reg_steps'] = $this->transaction->reg_steps();
1398
-                foreach ($this->transaction->registrations($this->reg_cache_where_params) as $REG_ID => $registration) {
1399
-                    $default_data['registrations'][ $REG_ID ] = $registration->status_ID();
1400
-                }
1401
-                if ($this->transaction->ID()) {
1402
-                    $TXN_ID = 'EE_Transaction: ' . $this->transaction->ID();
1403
-                    // don't serialize objects
1404
-                    $info = $this->_strip_objects($info);
1405
-                    if (! isset($debug_data[ $TXN_ID ])) {
1406
-                        $debug_data[ $TXN_ID ] = array();
1407
-                    }
1408
-                    $debug_data[ $TXN_ID ][ microtime() ] = array_merge(
1409
-                        $default_data,
1410
-                        $info
1411
-                    );
1412
-                    update_option('EE_DEBUG_SPCO_' . EE_Session::instance()->id(), $debug_data);
1413
-                }
1414
-            }
1415
-        }
1416
-    }
1417
-
1418
-
1419
-    /**
1420
-     * _strip_objects
1421
-     *
1422
-     * @param array $info
1423
-     * @return array
1424
-     */
1425
-    public function _strip_objects($info = array())
1426
-    {
1427
-        foreach ((array) $info as $key => $value) {
1428
-            if (is_array($value)) {
1429
-                $info[ $key ] = $this->_strip_objects($value);
1430
-            } elseif (is_object($value)) {
1431
-                $object_class = get_class($value);
1432
-                $info[ $object_class ] = array();
1433
-                $info[ $object_class ]['ID'] = method_exists($value, 'ID') ? $value->ID() : 0;
1434
-                if (method_exists($value, 'status')) {
1435
-                    $info[ $object_class ]['status'] = $value->status();
1436
-                } elseif (method_exists($value, 'status_ID')) {
1437
-                    $info[ $object_class ]['status'] = $value->status_ID();
1438
-                }
1439
-                unset($info[ $key ]);
1440
-            }
1441
-        }
1442
-        return (array) $info;
1443
-    }
18
+	/**
19
+	 *    whether current request originated from the EE admin
20
+	 *
21
+	 * @type bool
22
+	 */
23
+	public $admin_request = false;
24
+
25
+	/**
26
+	 * whether returning to edit attendee information or to retry a payment
27
+	 *
28
+	 * @type bool
29
+	 */
30
+	public $revisit = false;
31
+
32
+	/**
33
+	 * whether the primary registrant is returning to edit attendee information or to retry a payment
34
+	 *
35
+	 * @type bool
36
+	 */
37
+	public $primary_revisit = false;
38
+
39
+	/**
40
+	 * is registration allowed to progress or halted for some reason such as failing to pass recaptcha?
41
+	 *
42
+	 * @type bool
43
+	 */
44
+	public $continue_reg = true;
45
+
46
+	/**
47
+	 * redirect to thank you page ?
48
+	 *
49
+	 * @type bool
50
+	 */
51
+	public $redirect = false;
52
+
53
+	/**
54
+	 * generate the reg form or not ?
55
+	 *
56
+	 * @type bool
57
+	 */
58
+	public $generate_reg_form = true;
59
+
60
+	/**
61
+	 * process a reg form submission or not ?
62
+	 *
63
+	 * @type bool
64
+	 */
65
+	public $process_form_submission = false;
66
+
67
+	/**
68
+	 * tracks whether the TXN status modified during this checkout
69
+	 *
70
+	 * @type bool
71
+	 */
72
+	public $txn_status_updated = false;
73
+
74
+	/**
75
+	 * only triggered to true after absolutely everything has finished.
76
+	 *
77
+	 * @type bool
78
+	 */
79
+	protected $exit_spco = false;
80
+
81
+	/**
82
+	 * tracks whether any of the TXN's Registrations statuses modified during this checkout
83
+	 * indexed by registration ID
84
+	 *
85
+	 * @type array
86
+	 */
87
+	protected $reg_status_updated = array();
88
+
89
+	/**
90
+	 * timestamp when redirected from Ticket Selector to the checkout
91
+	 *
92
+	 * @type int
93
+	 */
94
+	public $uts = 0;
95
+
96
+	/**
97
+	 * total number of tickets that were in the cart
98
+	 *
99
+	 * @type int
100
+	 */
101
+	public $total_ticket_count = 0;
102
+
103
+	/**
104
+	 * corresponds loosely to EE_Transaction::remaining()
105
+	 * but can be modified by SPCO
106
+	 *
107
+	 * @type float
108
+	 */
109
+	public $amount_owing = 0;
110
+
111
+	/**
112
+	 * the reg step slug from the incoming request
113
+	 *
114
+	 * @type string
115
+	 */
116
+	public $step = '';
117
+
118
+	/**
119
+	 * the reg step slug for a step being edited
120
+	 *
121
+	 * @type string
122
+	 */
123
+	public $edit_step = '';
124
+
125
+	/**
126
+	 * the action being performed on the current step
127
+	 *
128
+	 * @type string
129
+	 */
130
+	public $action = '';
131
+
132
+	/**
133
+	 * reg_url_link for a previously saved registration
134
+	 *
135
+	 * @type string
136
+	 */
137
+	public $reg_url_link = '';
138
+
139
+	/**
140
+	 * string slug for the payment method that was selected during the payment options step
141
+	 *
142
+	 * @type string
143
+	 */
144
+	public $selected_method_of_payment = '';
145
+
146
+	/**
147
+	 * base url for the site's registration checkout page - additional url params will be added to this
148
+	 *
149
+	 * @type string
150
+	 */
151
+	public $reg_page_base_url = '';
152
+
153
+	/**
154
+	 * base url for the site's registration cancelled page - additional url params will be added to this
155
+	 *
156
+	 * @type string
157
+	 */
158
+	public $cancel_page_url = '';
159
+
160
+	/**
161
+	 * base url for the site's thank you page - additional url params will be added to this
162
+	 *
163
+	 * @type string
164
+	 */
165
+	public $thank_you_page_url = '';
166
+
167
+	/**
168
+	 * base url for any redirects - additional url params will be added to this
169
+	 *
170
+	 * @type string
171
+	 */
172
+	public $redirect_url = '';
173
+
174
+	/**
175
+	 * form of POST data for use with off-site gateways
176
+	 *
177
+	 * @type string
178
+	 */
179
+	public $redirect_form = '';
180
+
181
+	/**
182
+	 * array of query where params to use when retrieving cached registrations from $this->checkout->transaction
183
+	 *
184
+	 * @type array
185
+	 */
186
+	public $reg_cache_where_params = array();
187
+
188
+	/**
189
+	 * a class for managing and creating the JSON encoded array of data that gets passed back to the client during AJAX
190
+	 * requests
191
+	 *
192
+	 * @type EE_SPCO_JSON_Response
193
+	 */
194
+	public $json_response;
195
+
196
+	/**
197
+	 * where we are going next in the reg process
198
+	 *
199
+	 * @type EE_SPCO_Reg_Step
200
+	 */
201
+	public $next_step;
202
+
203
+	/**
204
+	 * where we are in the reg process
205
+	 *
206
+	 * @type EE_SPCO_Reg_Step
207
+	 */
208
+	public $current_step;
209
+
210
+	/**
211
+	 *    $_cart - the current cart object
212
+	 *
213
+	 * @var EE_CART
214
+	 */
215
+	public $cart;
216
+
217
+	/**
218
+	 *    $_transaction - the current transaction object
219
+	 *
220
+	 * @var EE_Transaction
221
+	 */
222
+	public $transaction;
223
+
224
+	/**
225
+	 *    the related attendee object for the primary registrant
226
+	 *
227
+	 * @type EE_Attendee
228
+	 */
229
+	public $primary_attendee_obj;
230
+
231
+	/**
232
+	 *    $payment_method - the payment method object for the selected method of payment
233
+	 *
234
+	 * @type EE_Payment_Method
235
+	 */
236
+	public $payment_method;
237
+
238
+	/**
239
+	 *    $payment - if a payment was successfully made during the reg process,
240
+	 *    then here it is !!!
241
+	 *
242
+	 * @type EE_Payment
243
+	 */
244
+	public $payment;
245
+
246
+	/**
247
+	 *    if a payment method was selected that uses an on-site gateway, then this is the billing form
248
+	 *
249
+	 * @type EE_Billing_Info_Form | EE_Billing_Attendee_Info_Form
250
+	 */
251
+	public $billing_form;
252
+
253
+	/**
254
+	 *    the entire registration form composed of ALL of the subsections generated by the various reg steps
255
+	 *
256
+	 * @type EE_Form_Section_Proper
257
+	 */
258
+	public $registration_form;
259
+
260
+	/**
261
+	 * array of EE_SPCO_Reg_Step objects
262
+	 *
263
+	 * @type EE_SPCO_Reg_Step[]
264
+	 */
265
+	public $reg_steps = array();
266
+
267
+	/**
268
+	 * array of EE_Payment_Method objects
269
+	 *
270
+	 * @type EE_Payment_Method[]
271
+	 */
272
+	public $available_payment_methods = array();
273
+
274
+
275
+	/**
276
+	 *    class constructor
277
+	 *
278
+	 * @access    public
279
+	 */
280
+	public function __construct()
281
+	{
282
+		$this->reg_page_base_url = EE_Registry::instance()->CFG->core->reg_page_url();
283
+		$this->thank_you_page_url = EE_Registry::instance()->CFG->core->thank_you_page_url();
284
+		$this->cancel_page_url = EE_Registry::instance()->CFG->core->cancel_page_url();
285
+		$this->continue_reg = apply_filters('FHEE__EE_Checkout___construct___continue_reg', true);
286
+
287
+		$this->admin_request = is_admin() && ! EED_Single_Page_Checkout::getRequest()->isAjax();
288
+		$this->reg_cache_where_params = array(
289
+			0          => array('REG_deleted' => false),
290
+			'order_by' => array('REG_count' => 'ASC'),
291
+		);
292
+	}
293
+
294
+
295
+	/**
296
+	 * returns true if ANY reg status was updated during checkout
297
+	 *
298
+	 * @return boolean
299
+	 */
300
+	public function any_reg_status_updated()
301
+	{
302
+		foreach ($this->reg_status_updated as $reg_status) {
303
+			if ($reg_status) {
304
+				return true;
305
+			}
306
+		}
307
+		return false;
308
+	}
309
+
310
+
311
+	/**
312
+	 * @param $REG_ID
313
+	 * @return boolean
314
+	 */
315
+	public function reg_status_updated($REG_ID)
316
+	{
317
+		return isset($this->reg_status_updated[ $REG_ID ]) ? $this->reg_status_updated[ $REG_ID ] : false;
318
+	}
319
+
320
+
321
+	/**
322
+	 * @param $REG_ID
323
+	 * @param $reg_status
324
+	 */
325
+	public function set_reg_status_updated($REG_ID, $reg_status)
326
+	{
327
+		$this->reg_status_updated[ $REG_ID ] = filter_var($reg_status, FILTER_VALIDATE_BOOLEAN);
328
+	}
329
+
330
+
331
+	/**
332
+	 * exit_spco
333
+	 *
334
+	 * @return bool
335
+	 */
336
+	public function exit_spco()
337
+	{
338
+		return $this->exit_spco;
339
+	}
340
+
341
+
342
+	/**
343
+	 * set_exit_spco
344
+	 * can ONLY be set by the  Finalize_Registration reg step
345
+	 */
346
+	public function set_exit_spco()
347
+	{
348
+		if ($this->current_step instanceof EE_SPCO_Reg_Step_Finalize_Registration) {
349
+			$this->exit_spco = true;
350
+		}
351
+	}
352
+
353
+
354
+	/**
355
+	 *    reset_for_current_request
356
+	 *
357
+	 * @access    public
358
+	 * @return    void
359
+	 */
360
+	public function reset_for_current_request()
361
+	{
362
+		$this->process_form_submission = false;
363
+		$this->continue_reg = apply_filters('FHEE__EE_Checkout___construct___continue_reg', true);
364
+		$this->admin_request = is_admin() && ! EED_Single_Page_Checkout::getRequest()->isFrontAjax();
365
+		$this->continue_reg = true;
366
+		$this->redirect = false;
367
+		// don't reset the cached redirect form if we're about to be asked to display it !!!
368
+		$action = EED_Single_Page_Checkout::getRequest()->getRequestParam('action', 'display_spco_reg_step');
369
+		if ($action !== 'redirect_form') {
370
+			$this->redirect_form = '';
371
+		}
372
+		$this->redirect_url = '';
373
+		$this->json_response = new EE_SPCO_JSON_Response();
374
+		EE_Form_Section_Proper::reset_js_localization();
375
+	}
376
+
377
+
378
+	/**
379
+	 *    add_reg_step
380
+	 *
381
+	 * @access    public
382
+	 * @param EE_SPCO_Reg_Step $reg_step_obj
383
+	 * @return    void
384
+	 */
385
+	public function add_reg_step(EE_SPCO_Reg_Step $reg_step_obj)
386
+	{
387
+		$this->reg_steps[ $reg_step_obj->slug() ] = $reg_step_obj;
388
+	}
389
+
390
+
391
+	/**
392
+	 * skip_reg_step
393
+	 * if the current reg step does not need to run for some reason,
394
+	 * then this will advance SPCO to the next reg step,
395
+	 * and mark the skipped step as completed
396
+	 *
397
+	 * @access    public
398
+	 * @param string $reg_step_slug
399
+	 * @return    void
400
+	 * @throws \EE_Error
401
+	 */
402
+	public function skip_reg_step($reg_step_slug = '')
403
+	{
404
+		$step_to_skip = $this->find_reg_step($reg_step_slug);
405
+		if ($step_to_skip instanceof EE_SPCO_Reg_Step && $step_to_skip->is_current_step()) {
406
+			$step_to_skip->set_is_current_step(false);
407
+			$step_to_skip->set_completed();
408
+			// advance to the next step
409
+			$this->set_current_step($this->next_step->slug());
410
+			// also reset the step param in the request in case any other code references that directly
411
+			EED_Single_Page_Checkout::getRequest()->setRequestParam('step', $this->current_step->slug());
412
+			// since we are skipping a step and setting the current step to be what was previously the next step,
413
+			// we need to check that the next step is now correct, and not still set to the current step.
414
+			if ($this->current_step->slug() === $this->next_step->slug()) {
415
+				// correctly setup the next step
416
+				$this->set_next_step();
417
+			}
418
+			$this->set_reg_step_initiated($this->current_step);
419
+		}
420
+	}
421
+
422
+
423
+	/**
424
+	 *    remove_reg_step
425
+	 *
426
+	 * @access    public
427
+	 * @param string $reg_step_slug
428
+	 * @param bool   $reset whether to reset reg steps after removal
429
+	 * @throws EE_Error
430
+	 */
431
+	public function remove_reg_step($reg_step_slug = '', $reset = true)
432
+	{
433
+		unset($this->reg_steps[ $reg_step_slug ]);
434
+		if ($this->transaction instanceof EE_Transaction) {
435
+			// now remove reg step from TXN and save
436
+			$this->transaction->remove_reg_step($reg_step_slug);
437
+			$this->transaction->save();
438
+		}
439
+		if ($reset) {
440
+			$this->reset_reg_steps();
441
+		}
442
+	}
443
+
444
+
445
+	/**
446
+	 *    set_reg_step_order
447
+	 *
448
+	 * @access    public
449
+	 * @param string $reg_step_slug
450
+	 * @param int    $order
451
+	 * @return    void
452
+	 */
453
+	public function set_reg_step_order($reg_step_slug = '', $order = 100)
454
+	{
455
+		if (isset($this->reg_steps[ $reg_step_slug ])) {
456
+			$this->reg_steps[ $reg_step_slug ]->set_order($order);
457
+		}
458
+	}
459
+
460
+
461
+	/**
462
+	 *    set_current_step
463
+	 *
464
+	 * @access    public
465
+	 * @param string $current_step
466
+	 * @return    void
467
+	 */
468
+	public function set_current_step($current_step)
469
+	{
470
+		// grab what step we're on
471
+		$this->current_step = isset($this->reg_steps[ $current_step ])
472
+			? $this->reg_steps[ $current_step ]
473
+			: reset(
474
+				$this->reg_steps
475
+			);
476
+		// verify instance
477
+		if ($this->current_step instanceof EE_SPCO_Reg_Step) {
478
+			// we don't want to repeat completed steps if this is the first time through SPCO
479
+			if ($this->continue_reg && ! $this->revisit && $this->current_step->completed()) {
480
+				// so advance to the next step
481
+				$this->set_next_step();
482
+				if ($this->next_step instanceof EE_SPCO_Reg_Step) {
483
+					// and attempt to set it as the current step
484
+					$this->set_current_step($this->next_step->slug());
485
+				}
486
+				return;
487
+			}
488
+			$this->current_step->set_is_current_step(true);
489
+		} else {
490
+			EE_Error::add_error(
491
+				__('The current step could not be set.', 'event_espresso'),
492
+				__FILE__,
493
+				__FUNCTION__,
494
+				__LINE__
495
+			);
496
+		}
497
+	}
498
+
499
+
500
+	/**
501
+	 *    set_next_step
502
+	 * advances the reg_steps array pointer and sets the next step, then reverses pointer back to the current step
503
+	 *
504
+	 * @access    public
505
+	 * @return    void
506
+	 */
507
+	public function set_next_step()
508
+	{
509
+		// set pointer to start of array
510
+		reset($this->reg_steps);
511
+		// if there is more than one step
512
+		if (count($this->reg_steps) > 1) {
513
+			// advance to the current step and set pointer
514
+			while (key($this->reg_steps) !== $this->current_step->slug() && key($this->reg_steps) !== '') {
515
+				next($this->reg_steps);
516
+			}
517
+		}
518
+		// advance one more spot ( if it exists )
519
+		$this->next_step = next($this->reg_steps);
520
+		// verify instance
521
+		$this->next_step = $this->next_step instanceof EE_SPCO_Reg_Step ? $this->next_step : null;
522
+		// then back to current step to reset
523
+		prev($this->reg_steps);
524
+	}
525
+
526
+
527
+	/**
528
+	 *    get_next_reg_step
529
+	 *    this simply returns the next step from reg_steps array
530
+	 *
531
+	 * @access    public
532
+	 * @return    EE_SPCO_Reg_Step | null
533
+	 */
534
+	public function get_next_reg_step()
535
+	{
536
+		$next = next($this->reg_steps);
537
+		prev($this->reg_steps);
538
+		return $next instanceof EE_SPCO_Reg_Step ? $next : null;
539
+	}
540
+
541
+
542
+	/**
543
+	 * get_prev_reg_step
544
+	 *    this simply returns the previous step from reg_steps array
545
+	 *
546
+	 * @access    public
547
+	 * @return    EE_SPCO_Reg_Step | null
548
+	 */
549
+	public function get_prev_reg_step()
550
+	{
551
+		$prev = prev($this->reg_steps);
552
+		next($this->reg_steps);
553
+		return $prev instanceof EE_SPCO_Reg_Step ? $prev : null;
554
+	}
555
+
556
+
557
+	/**
558
+	 * sort_reg_steps
559
+	 *
560
+	 * @access public
561
+	 * @return void
562
+	 */
563
+	public function sort_reg_steps()
564
+	{
565
+		$reg_step_sorting_callback = apply_filters(
566
+			'FHEE__EE_Checkout__sort_reg_steps__reg_step_sorting_callback',
567
+			'reg_step_sorting_callback'
568
+		);
569
+		uasort($this->reg_steps, array($this, $reg_step_sorting_callback));
570
+	}
571
+
572
+
573
+	/**
574
+	 * find_reg_step
575
+	 * finds a reg step by the given slug
576
+	 *
577
+	 * @access    public
578
+	 * @param string $reg_step_slug
579
+	 * @return EE_SPCO_Reg_Step|null
580
+	 */
581
+	public function find_reg_step($reg_step_slug = '')
582
+	{
583
+		if (! empty($reg_step_slug)) {
584
+			// copy reg step array
585
+			$reg_steps = $this->reg_steps;
586
+			// set pointer to start of array
587
+			reset($reg_steps);
588
+			// if there is more than one step
589
+			if (count($reg_steps) > 1) {
590
+				// advance to the current step and set pointer
591
+				while (key($reg_steps) !== $reg_step_slug && key($reg_steps) !== '') {
592
+					next($reg_steps);
593
+				}
594
+				return current($reg_steps);
595
+			}
596
+		}
597
+		return null;
598
+	}
599
+
600
+
601
+	/**
602
+	 * reg_step_sorting_callback
603
+	 *
604
+	 * @access public
605
+	 * @param EE_SPCO_Reg_Step $reg_step_A
606
+	 * @param EE_SPCO_Reg_Step $reg_step_B
607
+	 * @return int
608
+	 */
609
+	public function reg_step_sorting_callback(EE_SPCO_Reg_Step $reg_step_A, EE_SPCO_Reg_Step $reg_step_B)
610
+	{
611
+		// send finalize_registration step to the end of the array
612
+		if ($reg_step_A->slug() === 'finalize_registration') {
613
+			return 1;
614
+		} elseif ($reg_step_B->slug() === 'finalize_registration') {
615
+			return -1;
616
+		}
617
+		if ($reg_step_A->order() === $reg_step_B->order()) {
618
+			return 0;
619
+		}
620
+		return ($reg_step_A->order() > $reg_step_B->order()) ? 1 : -1;
621
+	}
622
+
623
+
624
+	/**
625
+	 * set_reg_step_initiated
626
+	 *
627
+	 * @access    public
628
+	 * @param    EE_SPCO_Reg_Step $reg_step
629
+	 * @throws \EE_Error
630
+	 */
631
+	public function set_reg_step_initiated(EE_SPCO_Reg_Step $reg_step)
632
+	{
633
+		// call set_reg_step_initiated ???
634
+		if (// first time visiting SPCO ?
635
+			! $this->revisit
636
+			&& (
637
+				// and displaying the reg step form for the first time ?
638
+				$this->action === 'display_spco_reg_step'
639
+				// or initializing the final step
640
+				|| $reg_step instanceof EE_SPCO_Reg_Step_Finalize_Registration
641
+			)
642
+		) {
643
+			// set the start time for this reg step
644
+			if (! $this->transaction->set_reg_step_initiated($reg_step->slug())) {
645
+				if (WP_DEBUG) {
646
+					EE_Error::add_error(
647
+						sprintf(
648
+							__('The "%1$s" registration step was not initialized properly.', 'event_espresso'),
649
+							$reg_step->name()
650
+						),
651
+						__FILE__,
652
+						__FUNCTION__,
653
+						__LINE__
654
+					);
655
+				}
656
+			}
657
+		}
658
+	}
659
+
660
+
661
+	/**
662
+	 *    set_reg_step_JSON_info
663
+	 *
664
+	 * @access public
665
+	 * @return    void
666
+	 */
667
+	public function set_reg_step_JSON_info()
668
+	{
669
+		EE_Registry::$i18n_js_strings['reg_steps'] = array();
670
+		// pass basic reg step data to JS
671
+		foreach ($this->reg_steps as $reg_step) {
672
+			EE_Registry::$i18n_js_strings['reg_steps'][] = $reg_step->slug();
673
+		}
674
+		// reset reg step html
675
+		// $this->json_response->set_reg_step_html('');
676
+	}
677
+
678
+
679
+	/**
680
+	 *    reset_reg_steps
681
+	 *
682
+	 * @access public
683
+	 * @return void
684
+	 */
685
+	public function reset_reg_steps()
686
+	{
687
+		$this->sort_reg_steps();
688
+		$this->set_current_step(EED_Single_Page_Checkout::getRequest()->getRequestParam('step'));
689
+		$this->set_next_step();
690
+		// the text that appears on the reg step form submit button
691
+		$this->current_step->set_submit_button_text();
692
+		$this->set_reg_step_JSON_info();
693
+	}
694
+
695
+
696
+	/**
697
+	 *    get_registration_time_limit
698
+	 *
699
+	 * @access    public
700
+	 * @return        string
701
+	 */
702
+	public function get_registration_time_limit()
703
+	{
704
+
705
+		$registration_time_limit = (float) (EE_Registry::instance()->SSN->expiration() - time());
706
+		$time_limit_format = $registration_time_limit > 60 * MINUTE_IN_SECONDS ? 'H:i:s' : 'i:s';
707
+		$registration_time_limit = date($time_limit_format, $registration_time_limit);
708
+		return apply_filters(
709
+			'FHEE__EE_Checkout__get_registration_time_limit__registration_time_limit',
710
+			$registration_time_limit
711
+		);
712
+	}
713
+
714
+
715
+	/**
716
+	 * payment_required
717
+	 *
718
+	 * @return boolean
719
+	 */
720
+	public function payment_required()
721
+	{
722
+		// if NOT:
723
+		//     registration via admin
724
+		//      completed TXN
725
+		//      overpaid TXN
726
+		//      free TXN(total = 0.00)
727
+		//      then payment required is TRUE
728
+		return ! ($this->admin_request
729
+				  || $this->transaction->is_completed()
730
+				  || $this->transaction->is_overpaid()
731
+				  || $this->transaction->is_free()) ? true : false;
732
+	}
733
+
734
+
735
+	/**
736
+	 * get_cart_for_transaction
737
+	 *
738
+	 * @access public
739
+	 * @param EE_Transaction $transaction
740
+	 * @return EE_Cart
741
+	 */
742
+	public function get_cart_for_transaction($transaction)
743
+	{
744
+		$session = EE_Registry::instance()->load_core('Session');
745
+		$cart = $transaction instanceof EE_Transaction ? EE_Cart::get_cart_from_txn($transaction, $session) : null;
746
+		// verify cart
747
+		if (! $cart instanceof EE_Cart) {
748
+			$cart = EE_Registry::instance()->load_core('Cart');
749
+		}
750
+
751
+		return $cart;
752
+	}
753
+
754
+
755
+	/**
756
+	 *    initialize_txn_reg_steps_array
757
+	 *
758
+	 * @access public
759
+	 * @return    array
760
+	 */
761
+	public function initialize_txn_reg_steps_array()
762
+	{
763
+		$txn_reg_steps_array = array();
764
+		foreach ($this->reg_steps as $reg_step) {
765
+			$txn_reg_steps_array[ $reg_step->slug() ] = false;
766
+		}
767
+		return $txn_reg_steps_array;
768
+	}
769
+
770
+
771
+	/**
772
+	 *    update_txn_reg_steps_array
773
+	 *
774
+	 * @access public
775
+	 * @return    bool
776
+	 * @throws \EE_Error
777
+	 */
778
+	public function update_txn_reg_steps_array()
779
+	{
780
+		$updated = false;
781
+		foreach ($this->reg_steps as $reg_step) {
782
+			if ($reg_step->completed()) {
783
+				$updated = $this->transaction->set_reg_step_completed($reg_step->slug())
784
+					? true
785
+					: $updated;
786
+			}
787
+		}
788
+		if ($updated) {
789
+			$this->transaction->save();
790
+		}
791
+		return $updated;
792
+	}
793
+
794
+
795
+	/**
796
+	 *    stash_transaction_and_checkout
797
+	 *
798
+	 * @access public
799
+	 * @return    void
800
+	 * @throws \EE_Error
801
+	 */
802
+	public function stash_transaction_and_checkout()
803
+	{
804
+		if (! $this->revisit) {
805
+			$this->update_txn_reg_steps_array();
806
+		}
807
+		$this->track_transaction_and_registration_status_updates();
808
+		// save all data to the db, but suppress errors
809
+		// $this->save_all_data( FALSE );
810
+		// cache the checkout in the session
811
+		EE_Registry::instance()->SSN->set_checkout($this);
812
+	}
813
+
814
+
815
+	/**
816
+	 *    track_transaction_and_registration_status_updates
817
+	 *    stores whether any updates were made to the TXN or it's related registrations
818
+	 *
819
+	 * @access public
820
+	 * @return void
821
+	 * @throws \EE_Error
822
+	 */
823
+	public function track_transaction_and_registration_status_updates()
824
+	{
825
+		// verify the transaction
826
+		if ($this->transaction instanceof EE_Transaction) {
827
+			// has there been a TXN status change during this checkout?
828
+			$this->txn_status_updated = $this->transaction->txn_status_updated();
829
+			/** @type EE_Registration_Processor $registration_processor */
830
+			$registration_processor = EE_Registry::instance()->load_class('Registration_Processor');
831
+			// grab the saved registrations from the transaction
832
+			foreach ($this->transaction->registrations($this->reg_cache_where_params) as $registration) {
833
+				if ($registration_processor->reg_status_updated($registration->ID())) {
834
+					$this->set_reg_status_updated($registration->ID(), true);
835
+				}
836
+			}
837
+		}
838
+	}
839
+
840
+
841
+	/**
842
+	 *    visit_allows_processing_of_this_registration
843
+	 *    determines if the current SPCO visit should allow the passed EE_Registration to be used in processing.
844
+	 *    one of the following conditions must be met:
845
+	 *        EITHER:    A) first time thru SPCO -> process ALL registrations ( NOT a revisit )
846
+	 *        OR :        B) primary registrant is editing info -> process ALL registrations ( primary_revisit )
847
+	 *        OR :        C) another registrant is editing info -> ONLY process their registration ( revisit AND their
848
+	 *        reg_url_link matches )
849
+	 *
850
+	 * @access public
851
+	 * @param    EE_Registration $registration
852
+	 * @return    bool
853
+	 * @throws \EE_Error
854
+	 */
855
+	public function visit_allows_processing_of_this_registration(EE_Registration $registration)
856
+	{
857
+		return ! $this->revisit
858
+			   || $this->primary_revisit
859
+			   || (
860
+				   $this->revisit && $this->reg_url_link === $registration->reg_url_link()
861
+			   )
862
+			? true
863
+			: false;
864
+	}
865
+
866
+
867
+	/**
868
+	 *    _transaction_has_primary_registration
869
+	 *
870
+	 * @access        private
871
+	 * @return        bool
872
+	 */
873
+	public function transaction_has_primary_registrant()
874
+	{
875
+		return $this->primary_attendee_obj instanceof EE_Attendee ? true : false;
876
+	}
877
+
878
+
879
+	/**
880
+	 *    save_all_data
881
+	 *    simply loops through the current transaction and saves all data for each registration
882
+	 *
883
+	 * @access public
884
+	 * @param bool $show_errors
885
+	 * @return bool
886
+	 * @throws \EE_Error
887
+	 */
888
+	public function save_all_data($show_errors = true)
889
+	{
890
+		// verify the transaction
891
+		if ($this->transaction instanceof EE_Transaction) {
892
+			// save to ensure that TXN has ID
893
+			$this->transaction->save();
894
+			// grab the saved registrations from the transaction
895
+			foreach ($this->transaction->registrations($this->reg_cache_where_params) as $registration) {
896
+				$this->_save_registration($registration, $show_errors);
897
+			}
898
+		} else {
899
+			if ($show_errors) {
900
+				EE_Error::add_error(
901
+					__(
902
+						'A valid Transaction was not found when attempting to save your registration information.',
903
+						'event_espresso'
904
+					),
905
+					__FILE__,
906
+					__FUNCTION__,
907
+					__LINE__
908
+				);
909
+			}
910
+			return false;
911
+		}
912
+		return true;
913
+	}
914
+
915
+
916
+	/**
917
+	 * _save_registration_attendee
918
+	 *
919
+	 * @param    EE_Registration $registration
920
+	 * @param bool               $show_errors
921
+	 * @return void
922
+	 * @throws \EE_Error
923
+	 */
924
+	private function _save_registration($registration, $show_errors = true)
925
+	{
926
+		// verify object
927
+		if ($registration instanceof EE_Registration) {
928
+			// should this registration be processed during this visit ?
929
+			if ($this->visit_allows_processing_of_this_registration($registration)) {
930
+				// set TXN ID
931
+				if (! $registration->transaction_ID()) {
932
+					$registration->set_transaction_id($this->transaction->ID());
933
+				}
934
+				// verify and save the attendee
935
+				$this->_save_registration_attendee($registration, $show_errors);
936
+				// save answers to reg form questions
937
+				$this->_save_registration_answers($registration, $show_errors);
938
+				// save changes
939
+				$registration->save();
940
+				// update txn cache
941
+				if (! $this->transaction->update_cache_after_object_save('Registration', $registration)) {
942
+					if ($show_errors) {
943
+						EE_Error::add_error(
944
+							__(
945
+								'The newly saved Registration object could not be cached on the Transaction.',
946
+								'event_espresso'
947
+							),
948
+							__FILE__,
949
+							__FUNCTION__,
950
+							__LINE__
951
+						);
952
+					}
953
+				}
954
+			}
955
+		} else {
956
+			if ($show_errors) {
957
+				EE_Error::add_error(
958
+					__(
959
+						'An invalid Registration object was discovered when attempting to save your registration information.',
960
+						'event_espresso'
961
+					),
962
+					__FILE__,
963
+					__FUNCTION__,
964
+					__LINE__
965
+				);
966
+			}
967
+		}
968
+	}
969
+
970
+
971
+	/**
972
+	 * _save_registration_attendee
973
+	 *
974
+	 * @param    EE_Registration $registration
975
+	 * @param bool               $show_errors
976
+	 * @return void
977
+	 * @throws \EE_Error
978
+	 */
979
+	private function _save_registration_attendee($registration, $show_errors = true)
980
+	{
981
+		if ($registration->attendee() instanceof EE_Attendee) {
982
+			// save so that ATT has ID
983
+			$registration->attendee()->save();
984
+			if (! $registration->update_cache_after_object_save('Attendee', $registration->attendee())) {
985
+				if ($show_errors) {
986
+					EE_Error::add_error(
987
+						__(
988
+							'The newly saved Attendee object could not be cached on the registration.',
989
+							'event_espresso'
990
+						),
991
+						__FILE__,
992
+						__FUNCTION__,
993
+						__LINE__
994
+					);
995
+				}
996
+			}
997
+		} else {
998
+			if ($show_errors) {
999
+				EE_Error::add_error(
1000
+					sprintf(
1001
+						'%1$s||%1$s $attendee = %2$s',
1002
+						__(
1003
+							'Either no Attendee information was found, or an invalid Attendee object was discovered when attempting to save your registration information.',
1004
+							'event_espresso'
1005
+						),
1006
+						var_export($registration->attendee(), true)
1007
+					),
1008
+					__FILE__,
1009
+					__FUNCTION__,
1010
+					__LINE__
1011
+				);
1012
+			}
1013
+		}
1014
+	}
1015
+
1016
+
1017
+	/**
1018
+	 * _save_question_answers
1019
+	 *
1020
+	 * @param    EE_Registration $registration
1021
+	 * @param bool               $show_errors
1022
+	 * @return void
1023
+	 * @throws \EE_Error
1024
+	 */
1025
+	private function _save_registration_answers($registration, $show_errors = true)
1026
+	{
1027
+		// now save the answers
1028
+		foreach ($registration->answers() as $cache_key => $answer) {
1029
+			// verify object
1030
+			if ($answer instanceof EE_Answer) {
1031
+				$answer->set_registration($registration->ID());
1032
+				$answer->save();
1033
+				if (! $registration->update_cache_after_object_save('Answer', $answer, $cache_key)) {
1034
+					if ($show_errors) {
1035
+						EE_Error::add_error(
1036
+							__(
1037
+								'The newly saved Answer object could not be cached on the registration.',
1038
+								'event_espresso'
1039
+							),
1040
+							__FILE__,
1041
+							__FUNCTION__,
1042
+							__LINE__
1043
+						);
1044
+					}
1045
+				}
1046
+			} else {
1047
+				if ($show_errors) {
1048
+					EE_Error::add_error(
1049
+						__(
1050
+							'An invalid Answer object was discovered when attempting to save your registration information.',
1051
+							'event_espresso'
1052
+						),
1053
+						__FILE__,
1054
+						__FUNCTION__,
1055
+						__LINE__
1056
+					);
1057
+				}
1058
+			}
1059
+		}
1060
+	}
1061
+
1062
+
1063
+	/**
1064
+	 *    refresh_all_entities
1065
+	 *   will either refresh the entity map with objects form the db or from the checkout cache
1066
+	 *
1067
+	 * @access public
1068
+	 * @param bool $from_db
1069
+	 * @return bool
1070
+	 * @throws \EE_Error
1071
+	 */
1072
+	public function refresh_all_entities($from_db = false)
1073
+	{
1074
+		$from_db = $this->current_step->is_final_step() || $this->action === 'process_gateway_response'
1075
+			? true
1076
+			: $from_db;
1077
+		// $this->log(
1078
+		//     __CLASS__,
1079
+		//     __FUNCTION__,
1080
+		//     __LINE__,
1081
+		//     array('from_db' => $from_db)
1082
+		// );
1083
+		return $from_db ? $this->refresh_from_db() : $this->refresh_entity_map();
1084
+	}
1085
+
1086
+
1087
+	/**
1088
+	 *  refresh_entity_map
1089
+	 *  simply loops through the current transaction and updates each
1090
+	 *  model's entity map using EEM_Base::refresh_entity_map_from_db()
1091
+	 *
1092
+	 * @access public
1093
+	 * @return bool
1094
+	 * @throws \EE_Error
1095
+	 */
1096
+	protected function refresh_from_db()
1097
+	{
1098
+		// verify the transaction
1099
+		if ($this->transaction instanceof EE_Transaction && $this->transaction->ID()) {
1100
+			// pull fresh TXN data from the db
1101
+			$this->transaction = $this->transaction->get_model()->refresh_entity_map_from_db($this->transaction->ID());
1102
+			// update EE_Checkout's cached primary_attendee object
1103
+			$this->primary_attendee_obj = $this->_refresh_primary_attendee_obj_from_db($this->transaction);
1104
+			// update EE_Checkout's cached payment object
1105
+			$payment = $this->transaction->last_payment();
1106
+			$this->payment = $payment instanceof EE_Payment ? $payment : $this->payment;
1107
+			// update EE_Checkout's cached payment_method object
1108
+			$payment_method = $this->payment instanceof EE_Payment ? $this->payment->payment_method() : null;
1109
+			$this->payment_method = $payment_method instanceof EE_Payment_Method ? $payment_method
1110
+				: $this->payment_method;
1111
+			// now refresh the cart, based on the TXN
1112
+			$this->cart = $this->get_cart_for_transaction($this->transaction);
1113
+		} else {
1114
+			EE_Error::add_error(
1115
+				__(
1116
+					'A valid Transaction was not found when attempting to update the model entity mapper.',
1117
+					'event_espresso'
1118
+				),
1119
+				__FILE__,
1120
+				__FUNCTION__,
1121
+				__LINE__
1122
+			);
1123
+			return false;
1124
+		}
1125
+		return true;
1126
+	}
1127
+
1128
+
1129
+	/**
1130
+	 * _refresh_primary_attendee_obj_from_db
1131
+	 *
1132
+	 * @param   EE_Transaction $transaction
1133
+	 * @return  EE_Attendee | null
1134
+	 * @throws \EE_Error
1135
+	 */
1136
+	protected function _refresh_primary_attendee_obj_from_db(EE_Transaction $transaction)
1137
+	{
1138
+
1139
+		$primary_attendee_obj = null;
1140
+		// grab the saved registrations from the transaction
1141
+		foreach ($transaction->registrations($this->reg_cache_where_params, true) as $registration) {
1142
+			// verify object
1143
+			if ($registration instanceof EE_Registration) {
1144
+				$attendee = $registration->attendee();
1145
+				// verify object && maybe cache primary_attendee_obj ?
1146
+				if ($attendee instanceof EE_Attendee && $registration->is_primary_registrant()) {
1147
+					$primary_attendee_obj = $attendee;
1148
+				}
1149
+			} else {
1150
+				EE_Error::add_error(
1151
+					__(
1152
+						'An invalid Registration object was discovered when attempting to update the model entity mapper.',
1153
+						'event_espresso'
1154
+					),
1155
+					__FILE__,
1156
+					__FUNCTION__,
1157
+					__LINE__
1158
+				);
1159
+			}
1160
+		}
1161
+		return $primary_attendee_obj;
1162
+	}
1163
+
1164
+
1165
+	/**
1166
+	 *  refresh_entity_map
1167
+	 *  simply loops through the current transaction and updates
1168
+	 *  each model's entity map using EEM_Base::refresh_entity_map_with()
1169
+	 *
1170
+	 * @access public
1171
+	 * @return bool
1172
+	 * @throws \EE_Error
1173
+	 */
1174
+	protected function refresh_entity_map()
1175
+	{
1176
+		// verify the transaction
1177
+		if ($this->transaction instanceof EE_Transaction && $this->transaction->ID()) {
1178
+			// never cache payment info
1179
+			$this->transaction->clear_cache('Payment');
1180
+			// is the Payment Options Reg Step completed ?
1181
+			if ($this->transaction->reg_step_completed('payment_options')) {
1182
+				// then check for payments and update TXN accordingly
1183
+				/** @type EE_Transaction_Payments $transaction_payments */
1184
+				$transaction_payments = EE_Registry::instance()->load_class('Transaction_Payments');
1185
+				$transaction_payments->calculate_total_payments_and_update_status($this->transaction);
1186
+			}
1187
+			// grab the saved registrations from the transaction
1188
+			foreach ($this->transaction->registrations($this->reg_cache_where_params) as $reg_cache_ID => $registration) {
1189
+				$this->_refresh_registration($reg_cache_ID, $registration);
1190
+			}
1191
+			// make sure our cached TXN is added to the model entity mapper
1192
+			$this->transaction = $this->transaction->get_model()->refresh_entity_map_with(
1193
+				$this->transaction->ID(),
1194
+				$this->transaction
1195
+			);
1196
+		} else {
1197
+			EE_Error::add_error(
1198
+				__(
1199
+					'A valid Transaction was not found when attempting to update the model entity mapper.',
1200
+					'event_espresso'
1201
+				),
1202
+				__FILE__,
1203
+				__FUNCTION__,
1204
+				__LINE__
1205
+			);
1206
+			return false;
1207
+		}
1208
+		// verify and update the cart because inaccurate totals are not so much fun
1209
+		if ($this->cart instanceof EE_Cart) {
1210
+			$grand_total = $this->cart->get_grand_total();
1211
+			if ($grand_total instanceof EE_Line_Item && $grand_total->ID()) {
1212
+				$grand_total->recalculate_total_including_taxes();
1213
+				$grand_total = $grand_total->get_model()->refresh_entity_map_with(
1214
+					$this->cart->get_grand_total()->ID(),
1215
+					$this->cart->get_grand_total()
1216
+				);
1217
+			}
1218
+			if ($grand_total instanceof EE_Line_Item) {
1219
+				$this->cart = EE_Cart::instance($grand_total);
1220
+			} else {
1221
+				EE_Error::add_error(
1222
+					__(
1223
+						'A valid Cart was not found when attempting to update the model entity mapper.',
1224
+						'event_espresso'
1225
+					),
1226
+					__FILE__,
1227
+					__FUNCTION__,
1228
+					__LINE__
1229
+				);
1230
+				return false;
1231
+			}
1232
+		}
1233
+		return true;
1234
+	}
1235
+
1236
+
1237
+	/**
1238
+	 * _refresh_registration
1239
+	 *
1240
+	 * @param    string | int    $reg_cache_ID
1241
+	 * @param    EE_Registration $registration
1242
+	 * @return void
1243
+	 * @throws \EE_Error
1244
+	 */
1245
+	protected function _refresh_registration($reg_cache_ID, $registration)
1246
+	{
1247
+
1248
+		// verify object
1249
+		if ($registration instanceof EE_Registration) {
1250
+			// update the entity mapper attendee
1251
+			$this->_refresh_registration_attendee($registration);
1252
+			// update the entity mapper answers for reg form questions
1253
+			$this->_refresh_registration_answers($registration);
1254
+			// make sure the cached registration is added to the model entity mapper
1255
+			$registration->get_model()->refresh_entity_map_with($reg_cache_ID, $registration);
1256
+		} else {
1257
+			EE_Error::add_error(
1258
+				__(
1259
+					'An invalid Registration object was discovered when attempting to update the model entity mapper.',
1260
+					'event_espresso'
1261
+				),
1262
+				__FILE__,
1263
+				__FUNCTION__,
1264
+				__LINE__
1265
+			);
1266
+		}
1267
+	}
1268
+
1269
+
1270
+	/**
1271
+	 * _save_registration_attendee
1272
+	 *
1273
+	 * @param    EE_Registration $registration
1274
+	 * @return void
1275
+	 * @throws \EE_Error
1276
+	 */
1277
+	protected function _refresh_registration_attendee($registration)
1278
+	{
1279
+
1280
+		$attendee = $registration->attendee();
1281
+		// verify object
1282
+		if ($attendee instanceof EE_Attendee && $attendee->ID()) {
1283
+			// make sure the cached attendee is added to the model entity mapper
1284
+			$registration->attendee()->get_model()->refresh_entity_map_with($attendee->ID(), $attendee);
1285
+			// maybe cache primary_attendee_obj ?
1286
+			if ($registration->is_primary_registrant()) {
1287
+				$this->primary_attendee_obj = $attendee;
1288
+			}
1289
+		}
1290
+	}
1291
+
1292
+
1293
+	/**
1294
+	 * _refresh_registration_answers
1295
+	 *
1296
+	 * @param    EE_Registration $registration
1297
+	 * @return void
1298
+	 * @throws \EE_Error
1299
+	 */
1300
+	protected function _refresh_registration_answers($registration)
1301
+	{
1302
+
1303
+		// now update the answers
1304
+		foreach ($registration->answers() as $cache_key => $answer) {
1305
+			// verify object
1306
+			if ($answer instanceof EE_Answer) {
1307
+				if ($answer->ID()) {
1308
+					// make sure the cached answer is added to the model entity mapper
1309
+					$answer->get_model()->refresh_entity_map_with($answer->ID(), $answer);
1310
+				}
1311
+			} else {
1312
+				EE_Error::add_error(
1313
+					__(
1314
+						'An invalid Answer object was discovered when attempting to update the model entity mapper.',
1315
+						'event_espresso'
1316
+					),
1317
+					__FILE__,
1318
+					__FUNCTION__,
1319
+					__LINE__
1320
+				);
1321
+			}
1322
+		}
1323
+	}
1324
+
1325
+
1326
+	/**
1327
+	 *    __sleep
1328
+	 * to conserve db space, let's remove the reg_form and the EE_Checkout object from EE_SPCO_Reg_Step objects upon
1329
+	 * serialization EE_Checkout will handle the reimplementation of itself upon waking, but we won't bother with the
1330
+	 * reg form, because if needed, it will be regenerated anyways
1331
+	 *
1332
+	 * @return array
1333
+	 * @throws \EE_Error
1334
+	 */
1335
+	public function __sleep()
1336
+	{
1337
+		if ($this->primary_attendee_obj instanceof EE_Attendee && $this->primary_attendee_obj->ID()) {
1338
+			$this->primary_attendee_obj = $this->primary_attendee_obj->ID();
1339
+		}        // remove the reg form and the checkout
1340
+		if ($this->transaction instanceof EE_Transaction && $this->transaction->ID()) {
1341
+			$this->transaction = $this->transaction->ID();
1342
+		}        // remove the reg form and the checkout
1343
+		return array_diff(array_keys(get_object_vars($this)), array('billing_form', 'registration_form'));
1344
+	}
1345
+
1346
+
1347
+	/**
1348
+	 *    __wakeup
1349
+	 * to conserve db space, we are removing the EE_Checkout object from EE_SPCO_Reg_Step objects upon serialization
1350
+	 * this will reinstate the EE_Checkout object on each EE_SPCO_Reg_Step object
1351
+	 */
1352
+	public function __wakeup()
1353
+	{
1354
+		if (! $this->primary_attendee_obj instanceof EE_Attendee && absint($this->primary_attendee_obj) !== 0) {
1355
+			// $this->primary_attendee_obj is actually just an ID, so use it to get the object from the db
1356
+			$this->primary_attendee_obj = EEM_Attendee::instance()->get_one_by_ID($this->primary_attendee_obj);
1357
+		}
1358
+		if (! $this->transaction instanceof EE_Transaction && absint($this->transaction) !== 0) {
1359
+			// $this->transaction is actually just an ID, so use it to get the object from the db
1360
+			$this->transaction = EEM_Transaction::instance()->get_one_by_ID($this->transaction);
1361
+		}
1362
+		foreach ($this->reg_steps as $reg_step) {
1363
+			$reg_step->checkout = $this;
1364
+		}
1365
+	}
1366
+
1367
+
1368
+	/**
1369
+	 * debug
1370
+	 *
1371
+	 * @param string $class
1372
+	 * @param string $func
1373
+	 * @param string $line
1374
+	 * @param array  $info
1375
+	 * @param bool   $display_request
1376
+	 * @throws \EE_Error
1377
+	 */
1378
+	public function log($class = '', $func = '', $line = '', $info = array(), $display_request = false)
1379
+	{
1380
+		$disabled = true;
1381
+		if (WP_DEBUG && ! $disabled) {
1382
+			$debug_data = get_option('EE_DEBUG_SPCO_' . EE_Session::instance()->id(), array());
1383
+			$default_data = array(
1384
+				$class                    => $func . '() : ' . $line,
1385
+				'request->step'           => $this->step,
1386
+				'request->action'         => $this->action,
1387
+				'current_step->slug'      => $this->current_step instanceof EE_SPCO_Reg_Step ?
1388
+					$this->current_step->slug() : '',
1389
+				'current_step->completed' => $this->current_step instanceof EE_SPCO_Reg_Step ?
1390
+					$this->current_step->completed() : '',
1391
+				'txn_status_updated'      => $this->transaction->txn_status_updated(),
1392
+				'reg_status_updated'      => $this->reg_status_updated,
1393
+				'reg_url_link'            => $this->reg_url_link,
1394
+			);
1395
+			if ($this->transaction instanceof EE_Transaction) {
1396
+				$default_data['TXN_status'] = $this->transaction->status_ID();
1397
+				$default_data['TXN_reg_steps'] = $this->transaction->reg_steps();
1398
+				foreach ($this->transaction->registrations($this->reg_cache_where_params) as $REG_ID => $registration) {
1399
+					$default_data['registrations'][ $REG_ID ] = $registration->status_ID();
1400
+				}
1401
+				if ($this->transaction->ID()) {
1402
+					$TXN_ID = 'EE_Transaction: ' . $this->transaction->ID();
1403
+					// don't serialize objects
1404
+					$info = $this->_strip_objects($info);
1405
+					if (! isset($debug_data[ $TXN_ID ])) {
1406
+						$debug_data[ $TXN_ID ] = array();
1407
+					}
1408
+					$debug_data[ $TXN_ID ][ microtime() ] = array_merge(
1409
+						$default_data,
1410
+						$info
1411
+					);
1412
+					update_option('EE_DEBUG_SPCO_' . EE_Session::instance()->id(), $debug_data);
1413
+				}
1414
+			}
1415
+		}
1416
+	}
1417
+
1418
+
1419
+	/**
1420
+	 * _strip_objects
1421
+	 *
1422
+	 * @param array $info
1423
+	 * @return array
1424
+	 */
1425
+	public function _strip_objects($info = array())
1426
+	{
1427
+		foreach ((array) $info as $key => $value) {
1428
+			if (is_array($value)) {
1429
+				$info[ $key ] = $this->_strip_objects($value);
1430
+			} elseif (is_object($value)) {
1431
+				$object_class = get_class($value);
1432
+				$info[ $object_class ] = array();
1433
+				$info[ $object_class ]['ID'] = method_exists($value, 'ID') ? $value->ID() : 0;
1434
+				if (method_exists($value, 'status')) {
1435
+					$info[ $object_class ]['status'] = $value->status();
1436
+				} elseif (method_exists($value, 'status_ID')) {
1437
+					$info[ $object_class ]['status'] = $value->status_ID();
1438
+				}
1439
+				unset($info[ $key ]);
1440
+			}
1441
+		}
1442
+		return (array) $info;
1443
+	}
1444 1444
 }
Please login to merge, or discard this patch.
admin_pages/registrations/EE_Attendee_Contact_List_Table.class.php 2 patches
Indentation   +370 added lines, -370 removed lines patch added patch discarded remove patch
@@ -12,374 +12,374 @@
 block discarded – undo
12 12
  */
13 13
 class EE_Attendee_Contact_List_Table extends EE_Admin_List_Table
14 14
 {
15
-    /**
16
-     * Initial setup of data (called by parent).
17
-     */
18
-    protected function _setup_data()
19
-    {
20
-        $this->_data = $this->_view !== 'trash'
21
-            ? $this->_admin_page->get_attendees($this->_per_page)
22
-            : $this->_admin_page->get_attendees($this->_per_page, false, true);
23
-        $this->_all_data_count = $this->_view !== 'trash'
24
-            ? $this->_admin_page->get_attendees($this->_per_page, true)
25
-            : $this->_admin_page->get_attendees($this->_per_page, true, true);
26
-    }
27
-
28
-
29
-    /**
30
-     * Initial setup of properties.
31
-     */
32
-    protected function _set_properties()
33
-    {
34
-        $this->_wp_list_args = array(
35
-            'singular' => esc_html__('attendee', 'event_espresso'),
36
-            'plural'   => esc_html__('attendees', 'event_espresso'),
37
-            'ajax'     => true,
38
-            'screen'   => $this->_admin_page->get_current_screen()->id,
39
-        );
40
-
41
-        $this->_columns = array(
42
-            'cb'                 => '<input type="checkbox" />', // Render a checkbox instead of text
43
-            'ATT_ID'             => esc_html__('ID', 'event_espresso'),
44
-            'ATT_fname'          => esc_html__('First Name', 'event_espresso'),
45
-            'ATT_lname'          => esc_html__('Last Name', 'event_espresso'),
46
-            'ATT_email'          => esc_html__('Email Address', 'event_espresso'),
47
-            'Registration_Count' => esc_html__('# Registrations', 'event_espresso'),
48
-            'ATT_phone'          => esc_html__('Phone', 'event_espresso'),
49
-            'ATT_address'        => esc_html__('Address', 'event_espresso'),
50
-            'ATT_city'           => esc_html__('City', 'event_espresso'),
51
-            'STA_ID'             => esc_html__('State/Province', 'event_espresso'),
52
-            'CNT_ISO'            => esc_html__('Country', 'event_espresso'),
53
-        );
54
-
55
-        $this->_sortable_columns = array(
56
-            'ATT_ID'             => array('ATT_ID' => false),
57
-            'ATT_lname'          => array('ATT_lname' => true), // true means its already sorted
58
-            'ATT_fname'          => array('ATT_fname' => false),
59
-            'ATT_email'          => array('ATT_email' => false),
60
-            'Registration_Count' => array('Registration_Count' => false),
61
-            'ATT_city'           => array('ATT_city' => false),
62
-            'STA_ID'             => array('STA_ID' => false),
63
-            'CNT_ISO'            => array('CNT_ISO' => false),
64
-        );
65
-
66
-        $this->_hidden_columns = array(
67
-            'ATT_phone',
68
-            'ATT_address',
69
-            'ATT_city',
70
-            'STA_ID',
71
-            'CNT_ISO',
72
-        );
73
-    }
74
-
75
-
76
-    /**
77
-     * Initial setup of filters
78
-     *
79
-     * @return array
80
-     */
81
-    protected function _get_table_filters()
82
-    {
83
-        return array();
84
-    }
85
-
86
-
87
-    /**
88
-     * Initial setup of counts for views
89
-     *
90
-     * @throws InvalidArgumentException
91
-     * @throws InvalidDataTypeException
92
-     * @throws InvalidInterfaceException
93
-     */
94
-    protected function _add_view_counts()
95
-    {
96
-        $this->_views['in_use']['count'] = $this->_admin_page->get_attendees($this->_per_page, true);
97
-        if (EE_Registry::instance()->CAP->current_user_can(
98
-            'ee_delete_contacts',
99
-            'espresso_registrations_delete_registration'
100
-        )) {
101
-            $this->_views['trash']['count'] = $this->_admin_page->get_attendees($this->_per_page, true, true);
102
-        }
103
-    }
104
-
105
-
106
-    /**
107
-     * Get count of attendees.
108
-     *
109
-     * @return int
110
-     * @throws EE_Error
111
-     * @throws InvalidArgumentException
112
-     * @throws InvalidDataTypeException
113
-     * @throws InvalidInterfaceException
114
-     */
115
-    protected function _get_attendees_count()
116
-    {
117
-        return EEM_Attendee::instance()->count();
118
-    }
119
-
120
-
121
-    /**
122
-     * Checkbox column
123
-     *
124
-     * @param EE_Attendee $attendee Unable to typehint this method because overrides parent.
125
-     * @return string
126
-     * @throws EE_Error
127
-     */
128
-    public function column_cb($attendee)
129
-    {
130
-        if (! $attendee instanceof EE_Attendee) {
131
-            return '';
132
-        }
133
-        return sprintf(
134
-            '<input type="checkbox" name="checkbox[%1$s]" value="%1$s" />',
135
-            $attendee->ID()
136
-        );
137
-    }
138
-
139
-
140
-    /**
141
-     * ATT_ID column
142
-     *
143
-     * @param EE_Attendee $attendee
144
-     * @return string
145
-     * @throws EE_Error
146
-     */
147
-    public function column_ATT_ID(EE_Attendee $attendee)
148
-    {
149
-        $content = $attendee->ID();
150
-        $attendee_name = $attendee instanceof EE_Attendee ? $attendee->full_name() : '';
151
-        $content .= '  <span class="show-on-mobile-view-only">' . $attendee_name . '</span>';
152
-        return $content;
153
-    }
154
-
155
-
156
-    /**
157
-     * ATT_lname column
158
-     *
159
-     * @param EE_Attendee $attendee
160
-     * @return string
161
-     * @throws InvalidArgumentException
162
-     * @throws InvalidDataTypeException
163
-     * @throws InvalidInterfaceException
164
-     * @throws EE_Error
165
-     */
166
-    public function column_ATT_lname(EE_Attendee $attendee)
167
-    {
168
-        // edit attendee link
169
-        $edit_lnk_url = EE_Admin_Page::add_query_args_and_nonce(
170
-            array(
171
-                'action' => 'edit_attendee',
172
-                'post'   => $attendee->ID(),
173
-            ),
174
-            REG_ADMIN_URL
175
-        );
176
-        $name_link = EE_Registry::instance()->CAP->current_user_can(
177
-            'ee_edit_contacts',
178
-            'espresso_registrations_edit_attendee'
179
-        )
180
-            ? '<a href="' . $edit_lnk_url . '" title="'
181
-              . esc_attr__('Edit Contact', 'event_espresso') . '">'
182
-              . $attendee->lname() . '</a>'
183
-            : $attendee->lname();
184
-        return $name_link;
185
-    }
186
-
187
-
188
-    /**
189
-     * ATT_fname column
190
-     *
191
-     * @param EE_Attendee $attendee
192
-     * @return string
193
-     * @throws InvalidArgumentException
194
-     * @throws InvalidDataTypeException
195
-     * @throws InvalidInterfaceException
196
-     * @throws EE_Error
197
-     */
198
-    public function column_ATT_fname(EE_Attendee $attendee)
199
-    {
200
-        // Build row actions
201
-        $actions = array();
202
-        // edit attendee link
203
-        if (EE_Registry::instance()->CAP->current_user_can(
204
-            'ee_edit_contacts',
205
-            'espresso_registrations_edit_attendee'
206
-        )) {
207
-            $edit_lnk_url = EE_Admin_Page::add_query_args_and_nonce(
208
-                array(
209
-                    'action' => 'edit_attendee',
210
-                    'post'   => $attendee->ID(),
211
-                ),
212
-                REG_ADMIN_URL
213
-            );
214
-            $actions['edit'] = '<a href="' . $edit_lnk_url . '" title="'
215
-                               . esc_attr__('Edit Contact', 'event_espresso') . '">'
216
-                               . esc_html__('Edit', 'event_espresso') . '</a>';
217
-        }
218
-
219
-        if ($this->_view === 'in_use') {
220
-            // trash attendee link
221
-            if (EE_Registry::instance()->CAP->current_user_can(
222
-                'ee_delete_contacts',
223
-                'espresso_registrations_trash_attendees'
224
-            )) {
225
-                $trash_lnk_url = EE_Admin_Page::add_query_args_and_nonce(
226
-                    array(
227
-                        'action' => 'trash_attendee',
228
-                        'ATT_ID' => $attendee->ID(),
229
-                    ),
230
-                    REG_ADMIN_URL
231
-                );
232
-                $actions['trash'] = '<a href="' . $trash_lnk_url . '" title="'
233
-                                    . esc_attr__('Move Contact to Trash', 'event_espresso')
234
-                                    . '">' . esc_html__('Trash', 'event_espresso') . '</a>';
235
-            }
236
-        } else {
237
-            if (EE_Registry::instance()->CAP->current_user_can(
238
-                'ee_delete_contacts',
239
-                'espresso_registrations_restore_attendees'
240
-            )) {
241
-                // restore attendee link
242
-                $restore_lnk_url = EE_Admin_Page::add_query_args_and_nonce(
243
-                    array(
244
-                        'action' => 'restore_attendees',
245
-                        'ATT_ID' => $attendee->ID(),
246
-                    ),
247
-                    REG_ADMIN_URL
248
-                );
249
-                $actions['restore'] = '<a href="' . $restore_lnk_url . '" title="'
250
-                                      . esc_attr__('Restore Contact', 'event_espresso') . '">'
251
-                                      . esc_html__('Restore', 'event_espresso') . '</a>';
252
-            }
253
-        }
254
-
255
-        $edit_lnk_url = EE_Admin_Page::add_query_args_and_nonce(
256
-            array(
257
-                'action' => 'edit_attendee',
258
-                'post'   => $attendee->ID(),
259
-            ),
260
-            REG_ADMIN_URL
261
-        );
262
-        $name_link = EE_Registry::instance()->CAP->current_user_can(
263
-            'ee_edit_contacts',
264
-            'espresso_registrations_edit_attendee'
265
-        )
266
-            ? '<a href="' . $edit_lnk_url . '" title="'
267
-              . esc_attr__('Edit Contact', 'event_espresso') . '">' . $attendee->fname() . '</a>'
268
-            : $attendee->fname();
269
-
270
-        // Return the name contents
271
-        return sprintf('%1$s %2$s', $name_link, $this->row_actions($actions));
272
-    }
273
-
274
-
275
-    /**
276
-     * Email Column
277
-     *
278
-     * @param EE_Attendee $attendee
279
-     * @return string
280
-     * @throws EE_Error
281
-     */
282
-    public function column_ATT_email(EE_Attendee $attendee)
283
-    {
284
-        return '<a href="mailto:' . $attendee->email() . '">' . $attendee->email() . '</a>';
285
-    }
286
-
287
-
288
-    /**
289
-     * Column displaying count of registrations attached to Attendee.
290
-     *
291
-     * @param EE_Attendee $attendee
292
-     * @return string
293
-     * @throws EE_Error
294
-     */
295
-    public function column_Registration_Count(EE_Attendee $attendee)
296
-    {
297
-        $link = EEH_URL::add_query_args_and_nonce(
298
-            array(
299
-                'action' => 'default',
300
-                'ATT_ID' => $attendee->ID(),
301
-            ),
302
-            REG_ADMIN_URL
303
-        );
304
-        return '<a href="' . $link . '">' . $attendee->getCustomSelect('Registration_Count') . '</a>';
305
-    }
306
-
307
-
308
-    /**
309
-     * ATT_address column
310
-     *
311
-     * @param EE_Attendee $attendee
312
-     * @return mixed
313
-     * @throws EE_Error
314
-     */
315
-    public function column_ATT_address(EE_Attendee $attendee)
316
-    {
317
-        return $attendee->address();
318
-    }
319
-
320
-
321
-    /**
322
-     * ATT_city column
323
-     *
324
-     * @param EE_Attendee $attendee
325
-     * @return mixed
326
-     * @throws EE_Error
327
-     */
328
-    public function column_ATT_city(EE_Attendee $attendee)
329
-    {
330
-        return $attendee->city();
331
-    }
332
-
333
-
334
-    /**
335
-     * State Column
336
-     *
337
-     * @param EE_Attendee $attendee
338
-     * @return string
339
-     * @throws EE_Error
340
-     * @throws InvalidArgumentException
341
-     * @throws InvalidDataTypeException
342
-     * @throws InvalidInterfaceException
343
-     */
344
-    public function column_STA_ID(EE_Attendee $attendee)
345
-    {
346
-        $states = EEM_State::instance()->get_all_states();
347
-        $state = isset($states[ $attendee->state_ID() ])
348
-            ? $states[ $attendee->state_ID() ]->get('STA_name')
349
-            : $attendee->state_ID();
350
-        return ! is_numeric($state) ? $state : '';
351
-    }
352
-
353
-
354
-    /**
355
-     * Country Column
356
-     *
357
-     * @param EE_Attendee $attendee
358
-     * @return string
359
-     * @throws EE_Error
360
-     * @throws InvalidArgumentException
361
-     * @throws InvalidDataTypeException
362
-     * @throws InvalidInterfaceException
363
-     */
364
-    public function column_CNT_ISO(EE_Attendee $attendee)
365
-    {
366
-        $countries = EEM_Country::instance()->get_all_countries();
367
-        $country = isset($countries[ $attendee->country_ID() ])
368
-            ? $countries[ $attendee->country_ID() ]->get('CNT_name')
369
-            : $attendee->country_ID();
370
-        return ! is_numeric($country) ? $country : '';
371
-    }
372
-
373
-
374
-    /**
375
-     * Phone Number column
376
-     *
377
-     * @param EE_Attendee $attendee
378
-     * @return mixed
379
-     * @throws EE_Error
380
-     */
381
-    public function column_ATT_phone(EE_Attendee $attendee)
382
-    {
383
-        return $attendee->phone();
384
-    }
15
+	/**
16
+	 * Initial setup of data (called by parent).
17
+	 */
18
+	protected function _setup_data()
19
+	{
20
+		$this->_data = $this->_view !== 'trash'
21
+			? $this->_admin_page->get_attendees($this->_per_page)
22
+			: $this->_admin_page->get_attendees($this->_per_page, false, true);
23
+		$this->_all_data_count = $this->_view !== 'trash'
24
+			? $this->_admin_page->get_attendees($this->_per_page, true)
25
+			: $this->_admin_page->get_attendees($this->_per_page, true, true);
26
+	}
27
+
28
+
29
+	/**
30
+	 * Initial setup of properties.
31
+	 */
32
+	protected function _set_properties()
33
+	{
34
+		$this->_wp_list_args = array(
35
+			'singular' => esc_html__('attendee', 'event_espresso'),
36
+			'plural'   => esc_html__('attendees', 'event_espresso'),
37
+			'ajax'     => true,
38
+			'screen'   => $this->_admin_page->get_current_screen()->id,
39
+		);
40
+
41
+		$this->_columns = array(
42
+			'cb'                 => '<input type="checkbox" />', // Render a checkbox instead of text
43
+			'ATT_ID'             => esc_html__('ID', 'event_espresso'),
44
+			'ATT_fname'          => esc_html__('First Name', 'event_espresso'),
45
+			'ATT_lname'          => esc_html__('Last Name', 'event_espresso'),
46
+			'ATT_email'          => esc_html__('Email Address', 'event_espresso'),
47
+			'Registration_Count' => esc_html__('# Registrations', 'event_espresso'),
48
+			'ATT_phone'          => esc_html__('Phone', 'event_espresso'),
49
+			'ATT_address'        => esc_html__('Address', 'event_espresso'),
50
+			'ATT_city'           => esc_html__('City', 'event_espresso'),
51
+			'STA_ID'             => esc_html__('State/Province', 'event_espresso'),
52
+			'CNT_ISO'            => esc_html__('Country', 'event_espresso'),
53
+		);
54
+
55
+		$this->_sortable_columns = array(
56
+			'ATT_ID'             => array('ATT_ID' => false),
57
+			'ATT_lname'          => array('ATT_lname' => true), // true means its already sorted
58
+			'ATT_fname'          => array('ATT_fname' => false),
59
+			'ATT_email'          => array('ATT_email' => false),
60
+			'Registration_Count' => array('Registration_Count' => false),
61
+			'ATT_city'           => array('ATT_city' => false),
62
+			'STA_ID'             => array('STA_ID' => false),
63
+			'CNT_ISO'            => array('CNT_ISO' => false),
64
+		);
65
+
66
+		$this->_hidden_columns = array(
67
+			'ATT_phone',
68
+			'ATT_address',
69
+			'ATT_city',
70
+			'STA_ID',
71
+			'CNT_ISO',
72
+		);
73
+	}
74
+
75
+
76
+	/**
77
+	 * Initial setup of filters
78
+	 *
79
+	 * @return array
80
+	 */
81
+	protected function _get_table_filters()
82
+	{
83
+		return array();
84
+	}
85
+
86
+
87
+	/**
88
+	 * Initial setup of counts for views
89
+	 *
90
+	 * @throws InvalidArgumentException
91
+	 * @throws InvalidDataTypeException
92
+	 * @throws InvalidInterfaceException
93
+	 */
94
+	protected function _add_view_counts()
95
+	{
96
+		$this->_views['in_use']['count'] = $this->_admin_page->get_attendees($this->_per_page, true);
97
+		if (EE_Registry::instance()->CAP->current_user_can(
98
+			'ee_delete_contacts',
99
+			'espresso_registrations_delete_registration'
100
+		)) {
101
+			$this->_views['trash']['count'] = $this->_admin_page->get_attendees($this->_per_page, true, true);
102
+		}
103
+	}
104
+
105
+
106
+	/**
107
+	 * Get count of attendees.
108
+	 *
109
+	 * @return int
110
+	 * @throws EE_Error
111
+	 * @throws InvalidArgumentException
112
+	 * @throws InvalidDataTypeException
113
+	 * @throws InvalidInterfaceException
114
+	 */
115
+	protected function _get_attendees_count()
116
+	{
117
+		return EEM_Attendee::instance()->count();
118
+	}
119
+
120
+
121
+	/**
122
+	 * Checkbox column
123
+	 *
124
+	 * @param EE_Attendee $attendee Unable to typehint this method because overrides parent.
125
+	 * @return string
126
+	 * @throws EE_Error
127
+	 */
128
+	public function column_cb($attendee)
129
+	{
130
+		if (! $attendee instanceof EE_Attendee) {
131
+			return '';
132
+		}
133
+		return sprintf(
134
+			'<input type="checkbox" name="checkbox[%1$s]" value="%1$s" />',
135
+			$attendee->ID()
136
+		);
137
+	}
138
+
139
+
140
+	/**
141
+	 * ATT_ID column
142
+	 *
143
+	 * @param EE_Attendee $attendee
144
+	 * @return string
145
+	 * @throws EE_Error
146
+	 */
147
+	public function column_ATT_ID(EE_Attendee $attendee)
148
+	{
149
+		$content = $attendee->ID();
150
+		$attendee_name = $attendee instanceof EE_Attendee ? $attendee->full_name() : '';
151
+		$content .= '  <span class="show-on-mobile-view-only">' . $attendee_name . '</span>';
152
+		return $content;
153
+	}
154
+
155
+
156
+	/**
157
+	 * ATT_lname column
158
+	 *
159
+	 * @param EE_Attendee $attendee
160
+	 * @return string
161
+	 * @throws InvalidArgumentException
162
+	 * @throws InvalidDataTypeException
163
+	 * @throws InvalidInterfaceException
164
+	 * @throws EE_Error
165
+	 */
166
+	public function column_ATT_lname(EE_Attendee $attendee)
167
+	{
168
+		// edit attendee link
169
+		$edit_lnk_url = EE_Admin_Page::add_query_args_and_nonce(
170
+			array(
171
+				'action' => 'edit_attendee',
172
+				'post'   => $attendee->ID(),
173
+			),
174
+			REG_ADMIN_URL
175
+		);
176
+		$name_link = EE_Registry::instance()->CAP->current_user_can(
177
+			'ee_edit_contacts',
178
+			'espresso_registrations_edit_attendee'
179
+		)
180
+			? '<a href="' . $edit_lnk_url . '" title="'
181
+			  . esc_attr__('Edit Contact', 'event_espresso') . '">'
182
+			  . $attendee->lname() . '</a>'
183
+			: $attendee->lname();
184
+		return $name_link;
185
+	}
186
+
187
+
188
+	/**
189
+	 * ATT_fname column
190
+	 *
191
+	 * @param EE_Attendee $attendee
192
+	 * @return string
193
+	 * @throws InvalidArgumentException
194
+	 * @throws InvalidDataTypeException
195
+	 * @throws InvalidInterfaceException
196
+	 * @throws EE_Error
197
+	 */
198
+	public function column_ATT_fname(EE_Attendee $attendee)
199
+	{
200
+		// Build row actions
201
+		$actions = array();
202
+		// edit attendee link
203
+		if (EE_Registry::instance()->CAP->current_user_can(
204
+			'ee_edit_contacts',
205
+			'espresso_registrations_edit_attendee'
206
+		)) {
207
+			$edit_lnk_url = EE_Admin_Page::add_query_args_and_nonce(
208
+				array(
209
+					'action' => 'edit_attendee',
210
+					'post'   => $attendee->ID(),
211
+				),
212
+				REG_ADMIN_URL
213
+			);
214
+			$actions['edit'] = '<a href="' . $edit_lnk_url . '" title="'
215
+							   . esc_attr__('Edit Contact', 'event_espresso') . '">'
216
+							   . esc_html__('Edit', 'event_espresso') . '</a>';
217
+		}
218
+
219
+		if ($this->_view === 'in_use') {
220
+			// trash attendee link
221
+			if (EE_Registry::instance()->CAP->current_user_can(
222
+				'ee_delete_contacts',
223
+				'espresso_registrations_trash_attendees'
224
+			)) {
225
+				$trash_lnk_url = EE_Admin_Page::add_query_args_and_nonce(
226
+					array(
227
+						'action' => 'trash_attendee',
228
+						'ATT_ID' => $attendee->ID(),
229
+					),
230
+					REG_ADMIN_URL
231
+				);
232
+				$actions['trash'] = '<a href="' . $trash_lnk_url . '" title="'
233
+									. esc_attr__('Move Contact to Trash', 'event_espresso')
234
+									. '">' . esc_html__('Trash', 'event_espresso') . '</a>';
235
+			}
236
+		} else {
237
+			if (EE_Registry::instance()->CAP->current_user_can(
238
+				'ee_delete_contacts',
239
+				'espresso_registrations_restore_attendees'
240
+			)) {
241
+				// restore attendee link
242
+				$restore_lnk_url = EE_Admin_Page::add_query_args_and_nonce(
243
+					array(
244
+						'action' => 'restore_attendees',
245
+						'ATT_ID' => $attendee->ID(),
246
+					),
247
+					REG_ADMIN_URL
248
+				);
249
+				$actions['restore'] = '<a href="' . $restore_lnk_url . '" title="'
250
+									  . esc_attr__('Restore Contact', 'event_espresso') . '">'
251
+									  . esc_html__('Restore', 'event_espresso') . '</a>';
252
+			}
253
+		}
254
+
255
+		$edit_lnk_url = EE_Admin_Page::add_query_args_and_nonce(
256
+			array(
257
+				'action' => 'edit_attendee',
258
+				'post'   => $attendee->ID(),
259
+			),
260
+			REG_ADMIN_URL
261
+		);
262
+		$name_link = EE_Registry::instance()->CAP->current_user_can(
263
+			'ee_edit_contacts',
264
+			'espresso_registrations_edit_attendee'
265
+		)
266
+			? '<a href="' . $edit_lnk_url . '" title="'
267
+			  . esc_attr__('Edit Contact', 'event_espresso') . '">' . $attendee->fname() . '</a>'
268
+			: $attendee->fname();
269
+
270
+		// Return the name contents
271
+		return sprintf('%1$s %2$s', $name_link, $this->row_actions($actions));
272
+	}
273
+
274
+
275
+	/**
276
+	 * Email Column
277
+	 *
278
+	 * @param EE_Attendee $attendee
279
+	 * @return string
280
+	 * @throws EE_Error
281
+	 */
282
+	public function column_ATT_email(EE_Attendee $attendee)
283
+	{
284
+		return '<a href="mailto:' . $attendee->email() . '">' . $attendee->email() . '</a>';
285
+	}
286
+
287
+
288
+	/**
289
+	 * Column displaying count of registrations attached to Attendee.
290
+	 *
291
+	 * @param EE_Attendee $attendee
292
+	 * @return string
293
+	 * @throws EE_Error
294
+	 */
295
+	public function column_Registration_Count(EE_Attendee $attendee)
296
+	{
297
+		$link = EEH_URL::add_query_args_and_nonce(
298
+			array(
299
+				'action' => 'default',
300
+				'ATT_ID' => $attendee->ID(),
301
+			),
302
+			REG_ADMIN_URL
303
+		);
304
+		return '<a href="' . $link . '">' . $attendee->getCustomSelect('Registration_Count') . '</a>';
305
+	}
306
+
307
+
308
+	/**
309
+	 * ATT_address column
310
+	 *
311
+	 * @param EE_Attendee $attendee
312
+	 * @return mixed
313
+	 * @throws EE_Error
314
+	 */
315
+	public function column_ATT_address(EE_Attendee $attendee)
316
+	{
317
+		return $attendee->address();
318
+	}
319
+
320
+
321
+	/**
322
+	 * ATT_city column
323
+	 *
324
+	 * @param EE_Attendee $attendee
325
+	 * @return mixed
326
+	 * @throws EE_Error
327
+	 */
328
+	public function column_ATT_city(EE_Attendee $attendee)
329
+	{
330
+		return $attendee->city();
331
+	}
332
+
333
+
334
+	/**
335
+	 * State Column
336
+	 *
337
+	 * @param EE_Attendee $attendee
338
+	 * @return string
339
+	 * @throws EE_Error
340
+	 * @throws InvalidArgumentException
341
+	 * @throws InvalidDataTypeException
342
+	 * @throws InvalidInterfaceException
343
+	 */
344
+	public function column_STA_ID(EE_Attendee $attendee)
345
+	{
346
+		$states = EEM_State::instance()->get_all_states();
347
+		$state = isset($states[ $attendee->state_ID() ])
348
+			? $states[ $attendee->state_ID() ]->get('STA_name')
349
+			: $attendee->state_ID();
350
+		return ! is_numeric($state) ? $state : '';
351
+	}
352
+
353
+
354
+	/**
355
+	 * Country Column
356
+	 *
357
+	 * @param EE_Attendee $attendee
358
+	 * @return string
359
+	 * @throws EE_Error
360
+	 * @throws InvalidArgumentException
361
+	 * @throws InvalidDataTypeException
362
+	 * @throws InvalidInterfaceException
363
+	 */
364
+	public function column_CNT_ISO(EE_Attendee $attendee)
365
+	{
366
+		$countries = EEM_Country::instance()->get_all_countries();
367
+		$country = isset($countries[ $attendee->country_ID() ])
368
+			? $countries[ $attendee->country_ID() ]->get('CNT_name')
369
+			: $attendee->country_ID();
370
+		return ! is_numeric($country) ? $country : '';
371
+	}
372
+
373
+
374
+	/**
375
+	 * Phone Number column
376
+	 *
377
+	 * @param EE_Attendee $attendee
378
+	 * @return mixed
379
+	 * @throws EE_Error
380
+	 */
381
+	public function column_ATT_phone(EE_Attendee $attendee)
382
+	{
383
+		return $attendee->phone();
384
+	}
385 385
 }
Please login to merge, or discard this patch.
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
      */
128 128
     public function column_cb($attendee)
129 129
     {
130
-        if (! $attendee instanceof EE_Attendee) {
130
+        if ( ! $attendee instanceof EE_Attendee) {
131 131
             return '';
132 132
         }
133 133
         return sprintf(
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
     {
149 149
         $content = $attendee->ID();
150 150
         $attendee_name = $attendee instanceof EE_Attendee ? $attendee->full_name() : '';
151
-        $content .= '  <span class="show-on-mobile-view-only">' . $attendee_name . '</span>';
151
+        $content .= '  <span class="show-on-mobile-view-only">'.$attendee_name.'</span>';
152 152
         return $content;
153 153
     }
154 154
 
@@ -177,9 +177,9 @@  discard block
 block discarded – undo
177 177
             'ee_edit_contacts',
178 178
             'espresso_registrations_edit_attendee'
179 179
         )
180
-            ? '<a href="' . $edit_lnk_url . '" title="'
181
-              . esc_attr__('Edit Contact', 'event_espresso') . '">'
182
-              . $attendee->lname() . '</a>'
180
+            ? '<a href="'.$edit_lnk_url.'" title="'
181
+              . esc_attr__('Edit Contact', 'event_espresso').'">'
182
+              . $attendee->lname().'</a>'
183 183
             : $attendee->lname();
184 184
         return $name_link;
185 185
     }
@@ -211,9 +211,9 @@  discard block
 block discarded – undo
211 211
                 ),
212 212
                 REG_ADMIN_URL
213 213
             );
214
-            $actions['edit'] = '<a href="' . $edit_lnk_url . '" title="'
215
-                               . esc_attr__('Edit Contact', 'event_espresso') . '">'
216
-                               . esc_html__('Edit', 'event_espresso') . '</a>';
214
+            $actions['edit'] = '<a href="'.$edit_lnk_url.'" title="'
215
+                               . esc_attr__('Edit Contact', 'event_espresso').'">'
216
+                               . esc_html__('Edit', 'event_espresso').'</a>';
217 217
         }
218 218
 
219 219
         if ($this->_view === 'in_use') {
@@ -229,9 +229,9 @@  discard block
 block discarded – undo
229 229
                     ),
230 230
                     REG_ADMIN_URL
231 231
                 );
232
-                $actions['trash'] = '<a href="' . $trash_lnk_url . '" title="'
232
+                $actions['trash'] = '<a href="'.$trash_lnk_url.'" title="'
233 233
                                     . esc_attr__('Move Contact to Trash', 'event_espresso')
234
-                                    . '">' . esc_html__('Trash', 'event_espresso') . '</a>';
234
+                                    . '">'.esc_html__('Trash', 'event_espresso').'</a>';
235 235
             }
236 236
         } else {
237 237
             if (EE_Registry::instance()->CAP->current_user_can(
@@ -246,9 +246,9 @@  discard block
 block discarded – undo
246 246
                     ),
247 247
                     REG_ADMIN_URL
248 248
                 );
249
-                $actions['restore'] = '<a href="' . $restore_lnk_url . '" title="'
250
-                                      . esc_attr__('Restore Contact', 'event_espresso') . '">'
251
-                                      . esc_html__('Restore', 'event_espresso') . '</a>';
249
+                $actions['restore'] = '<a href="'.$restore_lnk_url.'" title="'
250
+                                      . esc_attr__('Restore Contact', 'event_espresso').'">'
251
+                                      . esc_html__('Restore', 'event_espresso').'</a>';
252 252
             }
253 253
         }
254 254
 
@@ -263,8 +263,8 @@  discard block
 block discarded – undo
263 263
             'ee_edit_contacts',
264 264
             'espresso_registrations_edit_attendee'
265 265
         )
266
-            ? '<a href="' . $edit_lnk_url . '" title="'
267
-              . esc_attr__('Edit Contact', 'event_espresso') . '">' . $attendee->fname() . '</a>'
266
+            ? '<a href="'.$edit_lnk_url.'" title="'
267
+              . esc_attr__('Edit Contact', 'event_espresso').'">'.$attendee->fname().'</a>'
268 268
             : $attendee->fname();
269 269
 
270 270
         // Return the name contents
@@ -281,7 +281,7 @@  discard block
 block discarded – undo
281 281
      */
282 282
     public function column_ATT_email(EE_Attendee $attendee)
283 283
     {
284
-        return '<a href="mailto:' . $attendee->email() . '">' . $attendee->email() . '</a>';
284
+        return '<a href="mailto:'.$attendee->email().'">'.$attendee->email().'</a>';
285 285
     }
286 286
 
287 287
 
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
             ),
302 302
             REG_ADMIN_URL
303 303
         );
304
-        return '<a href="' . $link . '">' . $attendee->getCustomSelect('Registration_Count') . '</a>';
304
+        return '<a href="'.$link.'">'.$attendee->getCustomSelect('Registration_Count').'</a>';
305 305
     }
306 306
 
307 307
 
@@ -344,8 +344,8 @@  discard block
 block discarded – undo
344 344
     public function column_STA_ID(EE_Attendee $attendee)
345 345
     {
346 346
         $states = EEM_State::instance()->get_all_states();
347
-        $state = isset($states[ $attendee->state_ID() ])
348
-            ? $states[ $attendee->state_ID() ]->get('STA_name')
347
+        $state = isset($states[$attendee->state_ID()])
348
+            ? $states[$attendee->state_ID()]->get('STA_name')
349 349
             : $attendee->state_ID();
350 350
         return ! is_numeric($state) ? $state : '';
351 351
     }
@@ -364,8 +364,8 @@  discard block
 block discarded – undo
364 364
     public function column_CNT_ISO(EE_Attendee $attendee)
365 365
     {
366 366
         $countries = EEM_Country::instance()->get_all_countries();
367
-        $country = isset($countries[ $attendee->country_ID() ])
368
-            ? $countries[ $attendee->country_ID() ]->get('CNT_name')
367
+        $country = isset($countries[$attendee->country_ID()])
368
+            ? $countries[$attendee->country_ID()]->get('CNT_name')
369 369
             : $attendee->country_ID();
370 370
         return ! is_numeric($country) ? $country : '';
371 371
     }
Please login to merge, or discard this patch.
admin_pages/registrations/help_tours/Event_Checkin_Help_Tour.class.php 2 patches
Indentation   +266 added lines, -266 removed lines patch added patch discarded remove patch
@@ -15,289 +15,289 @@
 block discarded – undo
15 15
 class Event_Checkin_Help_Tour extends EE_Help_Tour
16 16
 {
17 17
 
18
-    protected function _set_tour_properties()
19
-    {
20
-        $this->_label = __('Event Check-in Tour', 'event_espresso');
21
-        if (isset($this->_req_data['event_id'])) {
22
-            $this->_slug = 'event-checkin-overview-joyride';
23
-        } else {
24
-            $this->_slug = 'all-event-checkin-overview-joyride';
25
-        }
26
-    }
18
+	protected function _set_tour_properties()
19
+	{
20
+		$this->_label = __('Event Check-in Tour', 'event_espresso');
21
+		if (isset($this->_req_data['event_id'])) {
22
+			$this->_slug = 'event-checkin-overview-joyride';
23
+		} else {
24
+			$this->_slug = 'all-event-checkin-overview-joyride';
25
+		}
26
+	}
27 27
 
28 28
 
29
-    protected function _set_tour_stops()
30
-    {
31
-        $this->_stops = array(
32
-            10  => array(
33
-                'content' => $this->_start(),
34
-            ),
35
-            20  => array(
36
-                'id'      => '_REG_count',
37
-                'content' => $this->_reg_count_stop(),
38
-                'options' => array(
39
-                    'tipLocation'    => 'top',
40
-                    'tipAdjustmentX' => -5,
41
-                    'tipAdjustmentY' => -20,
42
-                ),
43
-            ),
44
-            30  => array(
45
-                'id'      => 'ATT_name',
46
-                'content' => $this->_attendee_name_stop(),
47
-                'options' => array(
48
-                    'tipLocation'    => 'top',
49
-                    'tipAdjustmentX' => -5,
50
-                    'tipAdjustmentY' => -20,
51
-                ),
52
-            ),
53
-            40  => array(
54
-                'id'      => 'ATT_email',
55
-                'content' => $this->_attendee_email_stop(),
56
-                'options' => array(
57
-                    'tipLocation'    => 'top',
58
-                    'tipAdjustmentX' => -5,
59
-                    'tipAdjustmentY' => -20,
60
-                ),
61
-            ),
62
-            50  => array(
63
-                'id'      => '_REG_date',
64
-                'content' => $this->_reg_date_stop(),
65
-                'options' => array(
66
-                    'tipLocation'    => 'top',
67
-                    'tipAdjustmentX' => -5,
68
-                    'tipAdjustmentY' => -20,
69
-                ),
70
-            ),
71
-            60  => array(
72
-                'id'      => '_REG_code',
73
-                'content' => $this->_reg_code_stop(),
74
-                'options' => array(
75
-                    'tipLocation'    => 'top',
76
-                    'tipAdjustmentX' => -5,
77
-                    'tipAdjustmentY' => -20,
78
-                ),
79
-            ),
80
-            80  => array(
81
-                'id'      => '_REG_final_price',
82
-                'content' => $this->_reg_final_price_stop(),
83
-                'options' => array(
84
-                    'tipLocation'    => 'top',
85
-                    'tipAdjustmentX' => -5,
86
-                    'tipAdjustmentY' => -20,
87
-                ),
88
-            ),
89
-            90  => array(
90
-                'id'      => 'TXN_paid',
91
-                'content' => $this->_txn_paid_stop(),
92
-                'options' => array(
93
-                    'tipLocation'    => 'left',
94
-                    'tipAdjustmentX' => 0,
95
-                    'tipAdjustmentY' => -50,
96
-                ),
97
-            ),
98
-            100 => array(
99
-                'id'      => 'TXN_total',
100
-                'content' => $this->_txn_total_stop(),
101
-                'options' => array(
102
-                    'tipLocation'    => 'left',
103
-                    'tipAdjustmentX' => 0,
104
-                    'tipAdjustmentY' => -50,
105
-                ),
106
-            ),
107
-            110 => array(
108
-                'id'      => 'PRC_name',
109
-                'content' => $this->_prc_name_stop(),
110
-                'options' => array(
111
-                    'tipLocation'    => 'left',
112
-                    'tipAdjustmentX' => 0,
113
-                    'tipAdjustmentY' => -50,
114
-                ),
115
-            ),
116
-            115 => array(
117
-                'id'      => 'actions',
118
-                'content' => $this->_actions_stop(),
119
-                'options' => array(
120
-                    'tipLocation'    => 'left',
121
-                    'tipAdjustmentX' => 0,
122
-                    'tipAdjustmentY' => -30,
123
-                ),
124
-            ),
125
-            120 => array(
126
-                'class'   => 'ee-list-table-legend-container',
127
-                'content' => $this->_legend_stop(),
128
-                'options' => array(
129
-                    'tipLocation'    => 'top',
130
-                    'tipAdjustmentX' => 15,
131
-                    'tipAdjustmentY' => -40,
132
-                ),
133
-            ),
134
-            125 => array(
135
-                'class'   => 'bulkactions',
136
-                'content' => $this->_bulkactions_stop(),
137
-                'options' => array(
138
-                    'tipLocation'    => 'bottom',
139
-                    'tipAdjustmentY' => -30,
140
-                    'tipAdjustmentX' => 15,
141
-                ),
142
-            ),
143
-            130 => array(
144
-                'id'      => 'event_id',
145
-                'content' => $this->_event_selector_stop(),
146
-                'options' => array(
147
-                    'tipLocation'    => 'right',
148
-                    'tipAdjustmentY' => -50,
149
-                    'tipAdjustmentX' => 25,
150
-                ),
151
-            ),
152
-            135 => array(
153
-                'id'      => 'DTT_ID',
154
-                'content' => $this->_dtt_selector_stop(),
155
-                'options' => array(
156
-                    'tipLocation'    => 'bottom',
157
-                    'tipAdjustmentY' => -30,
158
-                    'tipAdjustmentX' => 15,
159
-                ),
160
-            ),
161
-            140 => array(
162
-                'id'      => 'event-espresso_page_espresso_registrations-search-input',
163
-                'content' => $this->_search_stop(),
164
-                'options' => array(
165
-                    'tipLocation'    => 'left',
166
-                    'tipAdjustmentY' => -50,
167
-                    'tipAdjustmentX' => -15,
168
-                ),
169
-            ),
170
-        );
171
-    }
29
+	protected function _set_tour_stops()
30
+	{
31
+		$this->_stops = array(
32
+			10  => array(
33
+				'content' => $this->_start(),
34
+			),
35
+			20  => array(
36
+				'id'      => '_REG_count',
37
+				'content' => $this->_reg_count_stop(),
38
+				'options' => array(
39
+					'tipLocation'    => 'top',
40
+					'tipAdjustmentX' => -5,
41
+					'tipAdjustmentY' => -20,
42
+				),
43
+			),
44
+			30  => array(
45
+				'id'      => 'ATT_name',
46
+				'content' => $this->_attendee_name_stop(),
47
+				'options' => array(
48
+					'tipLocation'    => 'top',
49
+					'tipAdjustmentX' => -5,
50
+					'tipAdjustmentY' => -20,
51
+				),
52
+			),
53
+			40  => array(
54
+				'id'      => 'ATT_email',
55
+				'content' => $this->_attendee_email_stop(),
56
+				'options' => array(
57
+					'tipLocation'    => 'top',
58
+					'tipAdjustmentX' => -5,
59
+					'tipAdjustmentY' => -20,
60
+				),
61
+			),
62
+			50  => array(
63
+				'id'      => '_REG_date',
64
+				'content' => $this->_reg_date_stop(),
65
+				'options' => array(
66
+					'tipLocation'    => 'top',
67
+					'tipAdjustmentX' => -5,
68
+					'tipAdjustmentY' => -20,
69
+				),
70
+			),
71
+			60  => array(
72
+				'id'      => '_REG_code',
73
+				'content' => $this->_reg_code_stop(),
74
+				'options' => array(
75
+					'tipLocation'    => 'top',
76
+					'tipAdjustmentX' => -5,
77
+					'tipAdjustmentY' => -20,
78
+				),
79
+			),
80
+			80  => array(
81
+				'id'      => '_REG_final_price',
82
+				'content' => $this->_reg_final_price_stop(),
83
+				'options' => array(
84
+					'tipLocation'    => 'top',
85
+					'tipAdjustmentX' => -5,
86
+					'tipAdjustmentY' => -20,
87
+				),
88
+			),
89
+			90  => array(
90
+				'id'      => 'TXN_paid',
91
+				'content' => $this->_txn_paid_stop(),
92
+				'options' => array(
93
+					'tipLocation'    => 'left',
94
+					'tipAdjustmentX' => 0,
95
+					'tipAdjustmentY' => -50,
96
+				),
97
+			),
98
+			100 => array(
99
+				'id'      => 'TXN_total',
100
+				'content' => $this->_txn_total_stop(),
101
+				'options' => array(
102
+					'tipLocation'    => 'left',
103
+					'tipAdjustmentX' => 0,
104
+					'tipAdjustmentY' => -50,
105
+				),
106
+			),
107
+			110 => array(
108
+				'id'      => 'PRC_name',
109
+				'content' => $this->_prc_name_stop(),
110
+				'options' => array(
111
+					'tipLocation'    => 'left',
112
+					'tipAdjustmentX' => 0,
113
+					'tipAdjustmentY' => -50,
114
+				),
115
+			),
116
+			115 => array(
117
+				'id'      => 'actions',
118
+				'content' => $this->_actions_stop(),
119
+				'options' => array(
120
+					'tipLocation'    => 'left',
121
+					'tipAdjustmentX' => 0,
122
+					'tipAdjustmentY' => -30,
123
+				),
124
+			),
125
+			120 => array(
126
+				'class'   => 'ee-list-table-legend-container',
127
+				'content' => $this->_legend_stop(),
128
+				'options' => array(
129
+					'tipLocation'    => 'top',
130
+					'tipAdjustmentX' => 15,
131
+					'tipAdjustmentY' => -40,
132
+				),
133
+			),
134
+			125 => array(
135
+				'class'   => 'bulkactions',
136
+				'content' => $this->_bulkactions_stop(),
137
+				'options' => array(
138
+					'tipLocation'    => 'bottom',
139
+					'tipAdjustmentY' => -30,
140
+					'tipAdjustmentX' => 15,
141
+				),
142
+			),
143
+			130 => array(
144
+				'id'      => 'event_id',
145
+				'content' => $this->_event_selector_stop(),
146
+				'options' => array(
147
+					'tipLocation'    => 'right',
148
+					'tipAdjustmentY' => -50,
149
+					'tipAdjustmentX' => 25,
150
+				),
151
+			),
152
+			135 => array(
153
+				'id'      => 'DTT_ID',
154
+				'content' => $this->_dtt_selector_stop(),
155
+				'options' => array(
156
+					'tipLocation'    => 'bottom',
157
+					'tipAdjustmentY' => -30,
158
+					'tipAdjustmentX' => 15,
159
+				),
160
+			),
161
+			140 => array(
162
+				'id'      => 'event-espresso_page_espresso_registrations-search-input',
163
+				'content' => $this->_search_stop(),
164
+				'options' => array(
165
+					'tipLocation'    => 'left',
166
+					'tipAdjustmentY' => -50,
167
+					'tipAdjustmentX' => -15,
168
+				),
169
+			),
170
+		);
171
+	}
172 172
 
173 173
 
174
-    protected function _start()
175
-    {
176
-        $content = '<h3>' . __('Event Check-in', 'event_espresso') . '</h3>';
177
-        if (isset($this->_req_data['event_id'])) {
178
-            $content .= '<p>'
179
-                        . __(
180
-                            'This tour of the Event Check-in page will go over different areas of the screen to help you understand what they are used for.<br /><br /> Note: You are currently viewing the check-in for a specific event so you can toggle the check-in status for attendees.',
181
-                            'event_espresso'
182
-                        ) . '</p>';
183
-        } else {
184
-            $content .= '<p>'
185
-                        . __(
186
-                            'This tour of the event check-in page will go over different areas of the screen to help you understand what they are used for. <br /><br /> Note: You must select an event from the dropdown menu before you can toggle the check-in status for an attendee.',
187
-                            'event_espresso'
188
-                        ) . '</p>';
189
-        }
190
-        return $content;
191
-    }
174
+	protected function _start()
175
+	{
176
+		$content = '<h3>' . __('Event Check-in', 'event_espresso') . '</h3>';
177
+		if (isset($this->_req_data['event_id'])) {
178
+			$content .= '<p>'
179
+						. __(
180
+							'This tour of the Event Check-in page will go over different areas of the screen to help you understand what they are used for.<br /><br /> Note: You are currently viewing the check-in for a specific event so you can toggle the check-in status for attendees.',
181
+							'event_espresso'
182
+						) . '</p>';
183
+		} else {
184
+			$content .= '<p>'
185
+						. __(
186
+							'This tour of the event check-in page will go over different areas of the screen to help you understand what they are used for. <br /><br /> Note: You must select an event from the dropdown menu before you can toggle the check-in status for an attendee.',
187
+							'event_espresso'
188
+						) . '</p>';
189
+		}
190
+		return $content;
191
+	}
192 192
 
193
-    protected function _reg_count_stop()
194
-    {
195
-        return '<p>' . __('View registration number.', 'event_espresso') . '</p>';
196
-    }
193
+	protected function _reg_count_stop()
194
+	{
195
+		return '<p>' . __('View registration number.', 'event_espresso') . '</p>';
196
+	}
197 197
 
198
-    protected function _attendee_name_stop()
199
-    {
200
-        return '<p>'
201
-               . __(
202
-                   'View name of registrant. Can be sorted in ascending or descending order.',
203
-                   'event_espresso'
204
-               ) . '</p>';
205
-    }
198
+	protected function _attendee_name_stop()
199
+	{
200
+		return '<p>'
201
+			   . __(
202
+				   'View name of registrant. Can be sorted in ascending or descending order.',
203
+				   'event_espresso'
204
+			   ) . '</p>';
205
+	}
206 206
 
207
-    protected function _attendee_email_stop()
208
-    {
209
-        return '<p>' . __('View email address for a registrant.', 'event_espresso') . '</p>';
210
-    }
207
+	protected function _attendee_email_stop()
208
+	{
209
+		return '<p>' . __('View email address for a registrant.', 'event_espresso') . '</p>';
210
+	}
211 211
 
212
-    protected function _reg_date_stop()
213
-    {
214
-        return '<p>'
215
-               . __(
216
-                   'View registration date. Can be sorted in ascending or descending order.',
217
-                   'event_espresso'
218
-               ) . '</p>';
219
-    }
212
+	protected function _reg_date_stop()
213
+	{
214
+		return '<p>'
215
+			   . __(
216
+				   'View registration date. Can be sorted in ascending or descending order.',
217
+				   'event_espresso'
218
+			   ) . '</p>';
219
+	}
220 220
 
221
-    protected function _reg_code_stop()
222
-    {
223
-        return '<p>'
224
-               . __(
225
-                   'View registration code. Can be sorted in ascending or descending order.',
226
-                   'event_espresso'
227
-               ) . '</p>';
228
-    }
221
+	protected function _reg_code_stop()
222
+	{
223
+		return '<p>'
224
+			   . __(
225
+				   'View registration code. Can be sorted in ascending or descending order.',
226
+				   'event_espresso'
227
+			   ) . '</p>';
228
+	}
229 229
 
230
-    protected function _reg_final_price_stop()
231
-    {
232
-        return '<p>' . __('View price for ticket.', 'event_espresso') . '</p>';
233
-    }
230
+	protected function _reg_final_price_stop()
231
+	{
232
+		return '<p>' . __('View price for ticket.', 'event_espresso') . '</p>';
233
+	}
234 234
 
235
-    protected function _txn_paid_stop()
236
-    {
237
-        return '<p>' . __('View if registrant has paid for ticket.', 'event_espresso') . '</p>';
238
-    }
235
+	protected function _txn_paid_stop()
236
+	{
237
+		return '<p>' . __('View if registrant has paid for ticket.', 'event_espresso') . '</p>';
238
+	}
239 239
 
240
-    protected function _txn_total_stop()
241
-    {
242
-        return '<p>' . __('View total amount paid.', 'event_espresso') . '</p>';
243
-    }
240
+	protected function _txn_total_stop()
241
+	{
242
+		return '<p>' . __('View total amount paid.', 'event_espresso') . '</p>';
243
+	}
244 244
 
245
-    protected function _prc_name_stop()
246
-    {
247
-        return '<p>' . __('View type of ticket.', 'event_espresso') . '</p>';
248
-    }
245
+	protected function _prc_name_stop()
246
+	{
247
+		return '<p>' . __('View type of ticket.', 'event_espresso') . '</p>';
248
+	}
249 249
 
250
-    protected function _actions_stop()
251
-    {
252
-        return '<p>'
253
-               . __(
254
-                   'Perform an action to a registration. See legend in bottom left corner.',
255
-                   'event_espresso'
256
-               ) . '</p>';
257
-    }
250
+	protected function _actions_stop()
251
+	{
252
+		return '<p>'
253
+			   . __(
254
+				   'Perform an action to a registration. See legend in bottom left corner.',
255
+				   'event_espresso'
256
+			   ) . '</p>';
257
+	}
258 258
 
259
-    protected function _legend_stop()
260
-    {
261
-        return '<p>'
262
-               . __(
263
-                   'This is the legend that describes the different check-in statuses. Also shows available status for registrations.',
264
-                   'event_espresso'
265
-               ) . '</p>';
266
-    }
259
+	protected function _legend_stop()
260
+	{
261
+		return '<p>'
262
+			   . __(
263
+				   'This is the legend that describes the different check-in statuses. Also shows available status for registrations.',
264
+				   'event_espresso'
265
+			   ) . '</p>';
266
+	}
267 267
 
268
-    protected function _bulkactions_stop()
269
-    {
270
-        return '<p>'
271
-               . __(
272
-                   'Perform a bulk action to multiple registrations (only available when viewing check-in for a specific event).',
273
-                   'event_espresso'
274
-               ) . '</p>';
275
-    }
268
+	protected function _bulkactions_stop()
269
+	{
270
+		return '<p>'
271
+			   . __(
272
+				   'Perform a bulk action to multiple registrations (only available when viewing check-in for a specific event).',
273
+				   'event_espresso'
274
+			   ) . '</p>';
275
+	}
276 276
 
277
-    protected function _event_selector_stop()
278
-    {
279
-        return '<p>'
280
-               . __(
281
-                   'Select an event from this dropdown and click the filter button to see the check-in registration list for a specific event. You will then be able to toggle the check-in status for a registration.',
282
-                   'event_espresso'
283
-               ) . '</p>';
284
-    }
277
+	protected function _event_selector_stop()
278
+	{
279
+		return '<p>'
280
+			   . __(
281
+				   'Select an event from this dropdown and click the filter button to see the check-in registration list for a specific event. You will then be able to toggle the check-in status for a registration.',
282
+				   'event_espresso'
283
+			   ) . '</p>';
284
+	}
285 285
 
286
-    protected function _dtt_selector_stop()
287
-    {
288
-        return '<p>'
289
-               . __(
290
-                   'This dropdown shows you the date and time that a displayed registration is attached to. You can switch to a different event by selecting another date and clicking on the filter button. You can also switch out of this view by clicking on the reset filters button.',
291
-                   'event_espresso'
292
-               ) . '</p>';
293
-    }
286
+	protected function _dtt_selector_stop()
287
+	{
288
+		return '<p>'
289
+			   . __(
290
+				   'This dropdown shows you the date and time that a displayed registration is attached to. You can switch to a different event by selecting another date and clicking on the filter button. You can also switch out of this view by clicking on the reset filters button.',
291
+				   'event_espresso'
292
+			   ) . '</p>';
293
+	}
294 294
 
295
-    protected function _search_stop()
296
-    {
297
-        return '<p>'
298
-               . __(
299
-                   'Search through registrations. The following sources will be searched: Event Name, Event Description, First Name, Last Name, Biography, Email Address, Address, Comments, Notes, Registration Final Price, Registration Code, Registration Group Size, Ticket Name, and Ticket Description.',
300
-                   'event_espresso'
301
-               ) . '</p>';
302
-    }
295
+	protected function _search_stop()
296
+	{
297
+		return '<p>'
298
+			   . __(
299
+				   'Search through registrations. The following sources will be searched: Event Name, Event Description, First Name, Last Name, Biography, Email Address, Address, Comments, Notes, Registration Final Price, Registration Code, Registration Group Size, Ticket Name, and Ticket Description.',
300
+				   'event_espresso'
301
+			   ) . '</p>';
302
+	}
303 303
 }
Please login to merge, or discard this patch.
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -173,26 +173,26 @@  discard block
 block discarded – undo
173 173
 
174 174
     protected function _start()
175 175
     {
176
-        $content = '<h3>' . __('Event Check-in', 'event_espresso') . '</h3>';
176
+        $content = '<h3>'.__('Event Check-in', 'event_espresso').'</h3>';
177 177
         if (isset($this->_req_data['event_id'])) {
178 178
             $content .= '<p>'
179 179
                         . __(
180 180
                             'This tour of the Event Check-in page will go over different areas of the screen to help you understand what they are used for.<br /><br /> Note: You are currently viewing the check-in for a specific event so you can toggle the check-in status for attendees.',
181 181
                             'event_espresso'
182
-                        ) . '</p>';
182
+                        ).'</p>';
183 183
         } else {
184 184
             $content .= '<p>'
185 185
                         . __(
186 186
                             'This tour of the event check-in page will go over different areas of the screen to help you understand what they are used for. <br /><br /> Note: You must select an event from the dropdown menu before you can toggle the check-in status for an attendee.',
187 187
                             'event_espresso'
188
-                        ) . '</p>';
188
+                        ).'</p>';
189 189
         }
190 190
         return $content;
191 191
     }
192 192
 
193 193
     protected function _reg_count_stop()
194 194
     {
195
-        return '<p>' . __('View registration number.', 'event_espresso') . '</p>';
195
+        return '<p>'.__('View registration number.', 'event_espresso').'</p>';
196 196
     }
197 197
 
198 198
     protected function _attendee_name_stop()
@@ -201,12 +201,12 @@  discard block
 block discarded – undo
201 201
                . __(
202 202
                    'View name of registrant. Can be sorted in ascending or descending order.',
203 203
                    'event_espresso'
204
-               ) . '</p>';
204
+               ).'</p>';
205 205
     }
206 206
 
207 207
     protected function _attendee_email_stop()
208 208
     {
209
-        return '<p>' . __('View email address for a registrant.', 'event_espresso') . '</p>';
209
+        return '<p>'.__('View email address for a registrant.', 'event_espresso').'</p>';
210 210
     }
211 211
 
212 212
     protected function _reg_date_stop()
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
                . __(
216 216
                    'View registration date. Can be sorted in ascending or descending order.',
217 217
                    'event_espresso'
218
-               ) . '</p>';
218
+               ).'</p>';
219 219
     }
220 220
 
221 221
     protected function _reg_code_stop()
@@ -224,27 +224,27 @@  discard block
 block discarded – undo
224 224
                . __(
225 225
                    'View registration code. Can be sorted in ascending or descending order.',
226 226
                    'event_espresso'
227
-               ) . '</p>';
227
+               ).'</p>';
228 228
     }
229 229
 
230 230
     protected function _reg_final_price_stop()
231 231
     {
232
-        return '<p>' . __('View price for ticket.', 'event_espresso') . '</p>';
232
+        return '<p>'.__('View price for ticket.', 'event_espresso').'</p>';
233 233
     }
234 234
 
235 235
     protected function _txn_paid_stop()
236 236
     {
237
-        return '<p>' . __('View if registrant has paid for ticket.', 'event_espresso') . '</p>';
237
+        return '<p>'.__('View if registrant has paid for ticket.', 'event_espresso').'</p>';
238 238
     }
239 239
 
240 240
     protected function _txn_total_stop()
241 241
     {
242
-        return '<p>' . __('View total amount paid.', 'event_espresso') . '</p>';
242
+        return '<p>'.__('View total amount paid.', 'event_espresso').'</p>';
243 243
     }
244 244
 
245 245
     protected function _prc_name_stop()
246 246
     {
247
-        return '<p>' . __('View type of ticket.', 'event_espresso') . '</p>';
247
+        return '<p>'.__('View type of ticket.', 'event_espresso').'</p>';
248 248
     }
249 249
 
250 250
     protected function _actions_stop()
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
                . __(
254 254
                    'Perform an action to a registration. See legend in bottom left corner.',
255 255
                    'event_espresso'
256
-               ) . '</p>';
256
+               ).'</p>';
257 257
     }
258 258
 
259 259
     protected function _legend_stop()
@@ -262,7 +262,7 @@  discard block
 block discarded – undo
262 262
                . __(
263 263
                    'This is the legend that describes the different check-in statuses. Also shows available status for registrations.',
264 264
                    'event_espresso'
265
-               ) . '</p>';
265
+               ).'</p>';
266 266
     }
267 267
 
268 268
     protected function _bulkactions_stop()
@@ -271,7 +271,7 @@  discard block
 block discarded – undo
271 271
                . __(
272 272
                    'Perform a bulk action to multiple registrations (only available when viewing check-in for a specific event).',
273 273
                    'event_espresso'
274
-               ) . '</p>';
274
+               ).'</p>';
275 275
     }
276 276
 
277 277
     protected function _event_selector_stop()
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
                . __(
281 281
                    'Select an event from this dropdown and click the filter button to see the check-in registration list for a specific event. You will then be able to toggle the check-in status for a registration.',
282 282
                    'event_espresso'
283
-               ) . '</p>';
283
+               ).'</p>';
284 284
     }
285 285
 
286 286
     protected function _dtt_selector_stop()
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
                . __(
290 290
                    'This dropdown shows you the date and time that a displayed registration is attached to. You can switch to a different event by selecting another date and clicking on the filter button. You can also switch out of this view by clicking on the reset filters button.',
291 291
                    'event_espresso'
292
-               ) . '</p>';
292
+               ).'</p>';
293 293
     }
294 294
 
295 295
     protected function _search_stop()
@@ -298,6 +298,6 @@  discard block
 block discarded – undo
298 298
                . __(
299 299
                    'Search through registrations. The following sources will be searched: Event Name, Event Description, First Name, Last Name, Biography, Email Address, Address, Comments, Notes, Registration Final Price, Registration Code, Registration Group Size, Ticket Name, and Ticket Description.',
300 300
                    'event_espresso'
301
-               ) . '</p>';
301
+               ).'</p>';
302 302
     }
303 303
 }
Please login to merge, or discard this patch.
admin_pages/registrations/help_tours/Contact_List_Help_Tour.class.php 2 patches
Indentation   +223 added lines, -223 removed lines patch added patch discarded remove patch
@@ -15,227 +15,227 @@
 block discarded – undo
15 15
 class Contact_List_Help_Tour extends EE_Help_Tour
16 16
 {
17 17
 
18
-    protected function _set_tour_properties()
19
-    {
20
-        $this->_label = __('Contact List Tour', 'event_espresso');
21
-        $this->_slug = 'contact-list-overview-joyride';
22
-    }
23
-
24
-
25
-    protected function _set_tour_stops()
26
-    {
27
-        $this->_stops = array(
28
-            10  => array(
29
-                'content' => $this->_start(),
30
-            ),
31
-            15  => array(
32
-                'id'      => 'ATT_ID',
33
-                'content' => $this->_attendee_id_stop(),
34
-                'options' => array(
35
-                    'tipLocation'    => 'top',
36
-                    'tipAdjustmentX' => -20,
37
-                    'tipAdjustmentY' => -30,
38
-                ),
39
-            ),
40
-            20  => array(
41
-                'id'      => 'ATT_fname',
42
-                'content' => $this->_attendee_name_stop(),
43
-                'options' => array(
44
-                    'tipLocation'    => 'top',
45
-                    'tipAdjustmentX' => 5,
46
-                    'tipAdjustmentY' => -30,
47
-                ),
48
-            ),
49
-            30  => array(
50
-                'id'      => 'ATT_lname',
51
-                'content' => $this->_att_lname_stop(),
52
-                'options' => array(
53
-                    'tipLocation'    => 'top',
54
-                    'tipAdjustmentX' => 5,
55
-                    'tipAdjustmentY' => -30,
56
-                ),
57
-            ),
58
-            40  => array(
59
-                'id'      => 'ATT_email',
60
-                'content' => $this->_att_email_stop(),
61
-                'options' => array(
62
-                    'tipLocation'    => 'top',
63
-                    'tipAdjustmentX' => 10,
64
-                    'tipAdjustmentY' => -30,
65
-                ),
66
-            ),
67
-            50  => array(
68
-                'id'      => 'ATT_phone',
69
-                'content' => $this->_att_phone_stop(),
70
-                'options' => array(
71
-                    'tipLocation'    => 'top',
72
-                    'tipAdjustmentX' => -5,
73
-                    'tipAdjustmentY' => -30,
74
-                ),
75
-            ),
76
-            60  => array(
77
-                'id'      => 'ATT_address',
78
-                'content' => $this->_att_address_stop(),
79
-                'options' => array(
80
-                    'tipLocation'    => 'top',
81
-                    'tipAdjustmentX' => 0,
82
-                    'tipAdjustmentY' => -30,
83
-                ),
84
-            ),
85
-            70  => array(
86
-                'id'      => 'ATT_city',
87
-                'content' => $this->_att_city_stop(),
88
-                'options' => array(
89
-                    'tipLocation'    => 'left',
90
-                    'tipAdjustmentX' => 0,
91
-                    'tipAdjustmentY' => -50,
92
-                ),
93
-            ),
94
-            80  => array(
95
-                'id'      => 'STA_ID',
96
-                'content' => $this->_sta_id_stop(),
97
-                'options' => array(
98
-                    'tipLocation'    => 'left',
99
-                    'tipAdjustmentX' => 0,
100
-                    'tipAdjustmentY' => -50,
101
-                ),
102
-            ),
103
-            90  => array(
104
-                'id'      => 'CNT_ISO',
105
-                'content' => $this->_cnt_iso_stop(),
106
-                'options' => array(
107
-                    'tipLocation'    => 'left',
108
-                    'tipAdjustmentX' => 0,
109
-                    'tipAdjustmentY' => -50,
110
-                ),
111
-            ),
112
-            100 => array(
113
-                'class'   => 'bulkactions',
114
-                'content' => $this->_bulkactions_stop(),
115
-                'options' => array(
116
-                    'tipLocation'    => 'bottom',
117
-                    'tipAdjustmentY' => -30,
118
-                    'tipAdjustmentX' => 15,
119
-                ),
120
-            ),
121
-            110 => array(
122
-                'id'      => 'event-espresso_page_espresso_registrations-search-input',
123
-                'content' => $this->_search_stop(),
124
-                'options' => array(
125
-                    'tipLocation'    => 'left',
126
-                    'tipAdjustmentY' => -50,
127
-                    'tipAdjustmentX' => -15,
128
-                ),
129
-            ),
130
-            120 => array(
131
-                'id'      => 'contact-list-csv-export',
132
-                'content' => $this->_contact_list_csv_export_stop(),
133
-                'options' => array(
134
-                    'tipLocation'    => 'right',
135
-                    'tipAdjustmentY' => -50,
136
-                    'tipAdjustmentX' => 25,
137
-                ),
138
-            ),
139
-        );
140
-    }
141
-
142
-
143
-    protected function _start()
144
-    {
145
-        $content = '<h3>' . __('Contact List', 'event_espresso') . '</h3>';
146
-        $content .= '<p>'
147
-                    . __(
148
-                        'This tour of the Contact List page will go over different areas of the screen to help you understand what they are used for.',
149
-                        'event_espresso'
150
-                    ) . '</p>';
151
-        return $content;
152
-    }
153
-
154
-    protected function _attendee_id_stop()
155
-    {
156
-        return '<p>'
157
-               . __(
158
-                   'View ID for registrants. Can be sorted in ascending or descending order.',
159
-                   'event_espresso'
160
-               ) . '</p>';
161
-    }
162
-
163
-    protected function _attendee_name_stop()
164
-    {
165
-        return '<p>'
166
-               . __(
167
-                   'View first name for registrants. Can be sorted in ascending or descending order.',
168
-                   'event_espresso'
169
-               ) . '</p>';
170
-    }
171
-
172
-    protected function _att_lname_stop()
173
-    {
174
-        return '<p>'
175
-               . __(
176
-                   'View last name for registrants. Can be sorted in ascending or descending order.',
177
-                   'event_espresso'
178
-               ) . '</p>';
179
-    }
180
-
181
-    protected function _att_email_stop()
182
-    {
183
-        return '<p>'
184
-               . __(
185
-                   'View email address for registrants. Can be sorted in ascending or descending order.',
186
-                   'event_espresso'
187
-               ) . '</p>';
188
-    }
189
-
190
-    protected function _att_phone_stop()
191
-    {
192
-        return '<p>' . __('View phone number for registrants.', 'event_espresso') . '</p>';
193
-    }
194
-
195
-    protected function _att_address_stop()
196
-    {
197
-        return '<p>' . __('View address for registrants.', 'event_espresso') . '</p>';
198
-    }
199
-
200
-    protected function _att_city_stop()
201
-    {
202
-        return '<p>' . __('View city for registrants.', 'event_espresso') . '</p>';
203
-    }
204
-
205
-    protected function _sta_id_stop()
206
-    {
207
-        return '<p>'
208
-               . __(
209
-                   'View state/province for registrants. Can be sorted in ascending or descending order.',
210
-                   'event_espresso'
211
-               ) . '</p>';
212
-    }
213
-
214
-    protected function _cnt_iso_stop()
215
-    {
216
-        return '<p>'
217
-               . __(
218
-                   'View country for registrants. Can be sorted in ascending or descending order.',
219
-                   'event_espresso'
220
-               ) . '</p>';
221
-    }
222
-
223
-    protected function _bulkactions_stop()
224
-    {
225
-        return '<p>' . __('Perform a bulk action to multiple registrants.', 'event_espresso') . '</p>';
226
-    }
227
-
228
-    protected function _search_stop()
229
-    {
230
-        return '<p>'
231
-               . __(
232
-                   'Search through contacts. The following sources will be searched: Event Name, Event Description, First Name, Last Name, Biography, Email Address, Address, Comments, Notes, Registration Final Price, and Registration Code.',
233
-                   'event_espresso'
234
-               ) . '</p>';
235
-    }
236
-
237
-    protected function _contact_list_csv_export_stop()
238
-    {
239
-        return '<p>' . __('Export your contact list to a CSV file.', 'event_espresso') . '</p>';
240
-    }
18
+	protected function _set_tour_properties()
19
+	{
20
+		$this->_label = __('Contact List Tour', 'event_espresso');
21
+		$this->_slug = 'contact-list-overview-joyride';
22
+	}
23
+
24
+
25
+	protected function _set_tour_stops()
26
+	{
27
+		$this->_stops = array(
28
+			10  => array(
29
+				'content' => $this->_start(),
30
+			),
31
+			15  => array(
32
+				'id'      => 'ATT_ID',
33
+				'content' => $this->_attendee_id_stop(),
34
+				'options' => array(
35
+					'tipLocation'    => 'top',
36
+					'tipAdjustmentX' => -20,
37
+					'tipAdjustmentY' => -30,
38
+				),
39
+			),
40
+			20  => array(
41
+				'id'      => 'ATT_fname',
42
+				'content' => $this->_attendee_name_stop(),
43
+				'options' => array(
44
+					'tipLocation'    => 'top',
45
+					'tipAdjustmentX' => 5,
46
+					'tipAdjustmentY' => -30,
47
+				),
48
+			),
49
+			30  => array(
50
+				'id'      => 'ATT_lname',
51
+				'content' => $this->_att_lname_stop(),
52
+				'options' => array(
53
+					'tipLocation'    => 'top',
54
+					'tipAdjustmentX' => 5,
55
+					'tipAdjustmentY' => -30,
56
+				),
57
+			),
58
+			40  => array(
59
+				'id'      => 'ATT_email',
60
+				'content' => $this->_att_email_stop(),
61
+				'options' => array(
62
+					'tipLocation'    => 'top',
63
+					'tipAdjustmentX' => 10,
64
+					'tipAdjustmentY' => -30,
65
+				),
66
+			),
67
+			50  => array(
68
+				'id'      => 'ATT_phone',
69
+				'content' => $this->_att_phone_stop(),
70
+				'options' => array(
71
+					'tipLocation'    => 'top',
72
+					'tipAdjustmentX' => -5,
73
+					'tipAdjustmentY' => -30,
74
+				),
75
+			),
76
+			60  => array(
77
+				'id'      => 'ATT_address',
78
+				'content' => $this->_att_address_stop(),
79
+				'options' => array(
80
+					'tipLocation'    => 'top',
81
+					'tipAdjustmentX' => 0,
82
+					'tipAdjustmentY' => -30,
83
+				),
84
+			),
85
+			70  => array(
86
+				'id'      => 'ATT_city',
87
+				'content' => $this->_att_city_stop(),
88
+				'options' => array(
89
+					'tipLocation'    => 'left',
90
+					'tipAdjustmentX' => 0,
91
+					'tipAdjustmentY' => -50,
92
+				),
93
+			),
94
+			80  => array(
95
+				'id'      => 'STA_ID',
96
+				'content' => $this->_sta_id_stop(),
97
+				'options' => array(
98
+					'tipLocation'    => 'left',
99
+					'tipAdjustmentX' => 0,
100
+					'tipAdjustmentY' => -50,
101
+				),
102
+			),
103
+			90  => array(
104
+				'id'      => 'CNT_ISO',
105
+				'content' => $this->_cnt_iso_stop(),
106
+				'options' => array(
107
+					'tipLocation'    => 'left',
108
+					'tipAdjustmentX' => 0,
109
+					'tipAdjustmentY' => -50,
110
+				),
111
+			),
112
+			100 => array(
113
+				'class'   => 'bulkactions',
114
+				'content' => $this->_bulkactions_stop(),
115
+				'options' => array(
116
+					'tipLocation'    => 'bottom',
117
+					'tipAdjustmentY' => -30,
118
+					'tipAdjustmentX' => 15,
119
+				),
120
+			),
121
+			110 => array(
122
+				'id'      => 'event-espresso_page_espresso_registrations-search-input',
123
+				'content' => $this->_search_stop(),
124
+				'options' => array(
125
+					'tipLocation'    => 'left',
126
+					'tipAdjustmentY' => -50,
127
+					'tipAdjustmentX' => -15,
128
+				),
129
+			),
130
+			120 => array(
131
+				'id'      => 'contact-list-csv-export',
132
+				'content' => $this->_contact_list_csv_export_stop(),
133
+				'options' => array(
134
+					'tipLocation'    => 'right',
135
+					'tipAdjustmentY' => -50,
136
+					'tipAdjustmentX' => 25,
137
+				),
138
+			),
139
+		);
140
+	}
141
+
142
+
143
+	protected function _start()
144
+	{
145
+		$content = '<h3>' . __('Contact List', 'event_espresso') . '</h3>';
146
+		$content .= '<p>'
147
+					. __(
148
+						'This tour of the Contact List page will go over different areas of the screen to help you understand what they are used for.',
149
+						'event_espresso'
150
+					) . '</p>';
151
+		return $content;
152
+	}
153
+
154
+	protected function _attendee_id_stop()
155
+	{
156
+		return '<p>'
157
+			   . __(
158
+				   'View ID for registrants. Can be sorted in ascending or descending order.',
159
+				   'event_espresso'
160
+			   ) . '</p>';
161
+	}
162
+
163
+	protected function _attendee_name_stop()
164
+	{
165
+		return '<p>'
166
+			   . __(
167
+				   'View first name for registrants. Can be sorted in ascending or descending order.',
168
+				   'event_espresso'
169
+			   ) . '</p>';
170
+	}
171
+
172
+	protected function _att_lname_stop()
173
+	{
174
+		return '<p>'
175
+			   . __(
176
+				   'View last name for registrants. Can be sorted in ascending or descending order.',
177
+				   'event_espresso'
178
+			   ) . '</p>';
179
+	}
180
+
181
+	protected function _att_email_stop()
182
+	{
183
+		return '<p>'
184
+			   . __(
185
+				   'View email address for registrants. Can be sorted in ascending or descending order.',
186
+				   'event_espresso'
187
+			   ) . '</p>';
188
+	}
189
+
190
+	protected function _att_phone_stop()
191
+	{
192
+		return '<p>' . __('View phone number for registrants.', 'event_espresso') . '</p>';
193
+	}
194
+
195
+	protected function _att_address_stop()
196
+	{
197
+		return '<p>' . __('View address for registrants.', 'event_espresso') . '</p>';
198
+	}
199
+
200
+	protected function _att_city_stop()
201
+	{
202
+		return '<p>' . __('View city for registrants.', 'event_espresso') . '</p>';
203
+	}
204
+
205
+	protected function _sta_id_stop()
206
+	{
207
+		return '<p>'
208
+			   . __(
209
+				   'View state/province for registrants. Can be sorted in ascending or descending order.',
210
+				   'event_espresso'
211
+			   ) . '</p>';
212
+	}
213
+
214
+	protected function _cnt_iso_stop()
215
+	{
216
+		return '<p>'
217
+			   . __(
218
+				   'View country for registrants. Can be sorted in ascending or descending order.',
219
+				   'event_espresso'
220
+			   ) . '</p>';
221
+	}
222
+
223
+	protected function _bulkactions_stop()
224
+	{
225
+		return '<p>' . __('Perform a bulk action to multiple registrants.', 'event_espresso') . '</p>';
226
+	}
227
+
228
+	protected function _search_stop()
229
+	{
230
+		return '<p>'
231
+			   . __(
232
+				   'Search through contacts. The following sources will be searched: Event Name, Event Description, First Name, Last Name, Biography, Email Address, Address, Comments, Notes, Registration Final Price, and Registration Code.',
233
+				   'event_espresso'
234
+			   ) . '</p>';
235
+	}
236
+
237
+	protected function _contact_list_csv_export_stop()
238
+	{
239
+		return '<p>' . __('Export your contact list to a CSV file.', 'event_espresso') . '</p>';
240
+	}
241 241
 }
Please login to merge, or discard this patch.
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -142,12 +142,12 @@  discard block
 block discarded – undo
142 142
 
143 143
     protected function _start()
144 144
     {
145
-        $content = '<h3>' . __('Contact List', 'event_espresso') . '</h3>';
145
+        $content = '<h3>'.__('Contact List', 'event_espresso').'</h3>';
146 146
         $content .= '<p>'
147 147
                     . __(
148 148
                         'This tour of the Contact List page will go over different areas of the screen to help you understand what they are used for.',
149 149
                         'event_espresso'
150
-                    ) . '</p>';
150
+                    ).'</p>';
151 151
         return $content;
152 152
     }
153 153
 
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
                . __(
158 158
                    'View ID for registrants. Can be sorted in ascending or descending order.',
159 159
                    'event_espresso'
160
-               ) . '</p>';
160
+               ).'</p>';
161 161
     }
162 162
 
163 163
     protected function _attendee_name_stop()
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
                . __(
167 167
                    'View first name for registrants. Can be sorted in ascending or descending order.',
168 168
                    'event_espresso'
169
-               ) . '</p>';
169
+               ).'</p>';
170 170
     }
171 171
 
172 172
     protected function _att_lname_stop()
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
                . __(
176 176
                    'View last name for registrants. Can be sorted in ascending or descending order.',
177 177
                    'event_espresso'
178
-               ) . '</p>';
178
+               ).'</p>';
179 179
     }
180 180
 
181 181
     protected function _att_email_stop()
@@ -184,22 +184,22 @@  discard block
 block discarded – undo
184 184
                . __(
185 185
                    'View email address for registrants. Can be sorted in ascending or descending order.',
186 186
                    'event_espresso'
187
-               ) . '</p>';
187
+               ).'</p>';
188 188
     }
189 189
 
190 190
     protected function _att_phone_stop()
191 191
     {
192
-        return '<p>' . __('View phone number for registrants.', 'event_espresso') . '</p>';
192
+        return '<p>'.__('View phone number for registrants.', 'event_espresso').'</p>';
193 193
     }
194 194
 
195 195
     protected function _att_address_stop()
196 196
     {
197
-        return '<p>' . __('View address for registrants.', 'event_espresso') . '</p>';
197
+        return '<p>'.__('View address for registrants.', 'event_espresso').'</p>';
198 198
     }
199 199
 
200 200
     protected function _att_city_stop()
201 201
     {
202
-        return '<p>' . __('View city for registrants.', 'event_espresso') . '</p>';
202
+        return '<p>'.__('View city for registrants.', 'event_espresso').'</p>';
203 203
     }
204 204
 
205 205
     protected function _sta_id_stop()
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
                . __(
209 209
                    'View state/province for registrants. Can be sorted in ascending or descending order.',
210 210
                    'event_espresso'
211
-               ) . '</p>';
211
+               ).'</p>';
212 212
     }
213 213
 
214 214
     protected function _cnt_iso_stop()
@@ -217,12 +217,12 @@  discard block
 block discarded – undo
217 217
                . __(
218 218
                    'View country for registrants. Can be sorted in ascending or descending order.',
219 219
                    'event_espresso'
220
-               ) . '</p>';
220
+               ).'</p>';
221 221
     }
222 222
 
223 223
     protected function _bulkactions_stop()
224 224
     {
225
-        return '<p>' . __('Perform a bulk action to multiple registrants.', 'event_espresso') . '</p>';
225
+        return '<p>'.__('Perform a bulk action to multiple registrants.', 'event_espresso').'</p>';
226 226
     }
227 227
 
228 228
     protected function _search_stop()
@@ -231,11 +231,11 @@  discard block
 block discarded – undo
231 231
                . __(
232 232
                    'Search through contacts. The following sources will be searched: Event Name, Event Description, First Name, Last Name, Biography, Email Address, Address, Comments, Notes, Registration Final Price, and Registration Code.',
233 233
                    'event_espresso'
234
-               ) . '</p>';
234
+               ).'</p>';
235 235
     }
236 236
 
237 237
     protected function _contact_list_csv_export_stop()
238 238
     {
239
-        return '<p>' . __('Export your contact list to a CSV file.', 'event_espresso') . '</p>';
239
+        return '<p>'.__('Export your contact list to a CSV file.', 'event_espresso').'</p>';
240 240
     }
241 241
 }
Please login to merge, or discard this patch.
registrations/help_tours/Registration_Overview_Help_Tour.class.php 2 patches
Indentation   +253 added lines, -253 removed lines patch added patch discarded remove patch
@@ -15,275 +15,275 @@
 block discarded – undo
15 15
 class Registration_Overview_Help_Tour extends EE_Help_Tour
16 16
 {
17 17
 
18
-    protected function _set_tour_properties()
19
-    {
20
-        $this->_label = __('Registrations Overview Tour', 'event_espresso');
21
-        if (isset($this->_req_data['event_id'])) {
22
-            $this->_slug = 'registration-per-event-overview-joyride';
23
-        } else {
24
-            $this->_slug = 'registration-overview-joyride';
25
-        }
26
-    }
18
+	protected function _set_tour_properties()
19
+	{
20
+		$this->_label = __('Registrations Overview Tour', 'event_espresso');
21
+		if (isset($this->_req_data['event_id'])) {
22
+			$this->_slug = 'registration-per-event-overview-joyride';
23
+		} else {
24
+			$this->_slug = 'registration-overview-joyride';
25
+		}
26
+	}
27 27
 
28 28
 
29
-    protected function _set_tour_stops()
30
-    {
31
-        $this->_stops = array(
32
-            10  => array(
33
-                'content' => $this->_start(),
34
-            ),
35
-            20  => array(
36
-                'id'      => '_REG_ID',
37
-                'content' => $this->_reg_id_stop(),
38
-                'options' => array(
39
-                    'tipLocation'    => 'top',
40
-                    'tipAdjustmentX' => -20,
41
-                    'tipAdjustmentY' => -30,
42
-                ),
43
-            ),
44
-            30  => array(
45
-                'id'      => '_REG_count',
46
-                'content' => $this->_reg_count_stop(),
47
-                'options' => array(
48
-                    'tipLocation'    => 'top',
49
-                    'tipAdjustmentX' => -5,
50
-                    'tipAdjustmentY' => -30,
51
-                ),
52
-            ),
53
-            40  => array(
54
-                'id'      => 'ATT_fname',
55
-                'content' => $this->_attendee_name_stop(),
56
-                'options' => array(
57
-                    'tipLocation'    => 'top',
58
-                    'tipAdjustmentX' => -5,
59
-                    'tipAdjustmentY' => -30,
60
-                ),
61
-            ),
62
-            50  => array(
63
-                'id'      => '_REG_date',
64
-                'content' => $this->_reg_date_stop(),
65
-                'options' => array(
66
-                    'tipLocation'    => 'top',
67
-                    'tipAdjustmentX' => 5,
68
-                    'tipAdjustmentY' => -30,
69
-                ),
70
-            ),
71
-            60  => array(
72
-                'id'      => 'event_name',
73
-                'content' => $this->_event_name_stop(),
74
-                'options' => array(
75
-                    'tipLocation'    => 'top',
76
-                    'tipAdjustmentX' => -5,
77
-                    'tipAdjustmentY' => -30,
78
-                ),
79
-            ),
80
-            70  => array(
81
-                'id'      => 'DTT_EVT_start',
82
-                'content' => $this->_dtt_evt_start_stop(),
83
-                'options' => array(
84
-                    'tipLocation'    => 'top',
85
-                    'tipAdjustmentX' => 5,
86
-                    'tipAdjustmentY' => -30,
87
-                ),
88
-            ),
89
-            80  => array(
90
-                'id'      => '_REG_code',
91
-                'content' => $this->_reg_code_stop(),
92
-                'options' => array(
93
-                    'tipLocation'    => 'top',
94
-                    'tipAdjustmentX' => 0,
95
-                    'tipAdjustmentY' => -30,
96
-                ),
97
-            ),
98
-            90  => array(
99
-                'id'      => '_REG_final_price',
100
-                'content' => $this->_txn_total_stop(),
101
-                'options' => array(
102
-                    'tipLocation'    => 'left',
103
-                    'tipAdjustmentX' => 5,
104
-                    'tipAdjustmentY' => -50,
105
-                ),
106
-            ),
107
-            100 => array(
108
-                'id'      => 'actions',
109
-                'content' => $this->_actions_stop(),
110
-                'options' => array(
111
-                    'tipLocation'    => 'left',
112
-                    'tipAdjustmentX' => 0,
113
-                    'tipAdjustmentY' => -50,
114
-                ),
115
-            ),
116
-            110 => array(
117
-                'class'   => 'ee-list-table-legend-container',
118
-                'content' => $this->_legend_stop(),
119
-                'options' => array(
120
-                    'tipLocation'    => 'right',
121
-                    'tipAdjustmentX' => 15,
122
-                    'tipAdjustmentY' => -40,
123
-                ),
124
-            ),
125
-            120 => array(
126
-                'class'   => 'subsubsub',
127
-                'content' => $this->_views_stop(),
128
-                'options' => array(
129
-                    'tipLocation'    => 'right',
130
-                    'tipAdjustmentY' => -50,
131
-                    'tipAdjustmentX' => 15,
132
-                ),
133
-            ),
134
-            130 => array(
135
-                'class'   => 'bulkactions',
136
-                'content' => $this->_bulkactions_stop(),
137
-                'options' => array(
138
-                    'tipLocation'    => 'bottom',
139
-                    'tipAdjustmentY' => -30,
140
-                    'tipAdjustmentX' => 15,
141
-                ),
142
-            ),
143
-            140 => array(
144
-                'id'      => 'EVT_CAT',
145
-                'content' => $this->_stop_about_filters(),
146
-                'options' => array(
147
-                    'tipLocation'    => 'top',
148
-                    'tipAdjustmentY' => -40,
149
-                    'tipAdjustmentX' => 25,
150
-                ),
151
-            ),
152
-            150 => array(
153
-                'id'      => 'event-espresso_page_espresso_registrations-search-input',
154
-                'content' => $this->_search_stop(),
155
-                'options' => array(
156
-                    'tipLocation'    => 'left',
157
-                    'tipAdjustmentY' => -50,
158
-                    'tipAdjustmentX' => -15,
159
-                ),
160
-            ),
161
-        );
162
-    }
29
+	protected function _set_tour_stops()
30
+	{
31
+		$this->_stops = array(
32
+			10  => array(
33
+				'content' => $this->_start(),
34
+			),
35
+			20  => array(
36
+				'id'      => '_REG_ID',
37
+				'content' => $this->_reg_id_stop(),
38
+				'options' => array(
39
+					'tipLocation'    => 'top',
40
+					'tipAdjustmentX' => -20,
41
+					'tipAdjustmentY' => -30,
42
+				),
43
+			),
44
+			30  => array(
45
+				'id'      => '_REG_count',
46
+				'content' => $this->_reg_count_stop(),
47
+				'options' => array(
48
+					'tipLocation'    => 'top',
49
+					'tipAdjustmentX' => -5,
50
+					'tipAdjustmentY' => -30,
51
+				),
52
+			),
53
+			40  => array(
54
+				'id'      => 'ATT_fname',
55
+				'content' => $this->_attendee_name_stop(),
56
+				'options' => array(
57
+					'tipLocation'    => 'top',
58
+					'tipAdjustmentX' => -5,
59
+					'tipAdjustmentY' => -30,
60
+				),
61
+			),
62
+			50  => array(
63
+				'id'      => '_REG_date',
64
+				'content' => $this->_reg_date_stop(),
65
+				'options' => array(
66
+					'tipLocation'    => 'top',
67
+					'tipAdjustmentX' => 5,
68
+					'tipAdjustmentY' => -30,
69
+				),
70
+			),
71
+			60  => array(
72
+				'id'      => 'event_name',
73
+				'content' => $this->_event_name_stop(),
74
+				'options' => array(
75
+					'tipLocation'    => 'top',
76
+					'tipAdjustmentX' => -5,
77
+					'tipAdjustmentY' => -30,
78
+				),
79
+			),
80
+			70  => array(
81
+				'id'      => 'DTT_EVT_start',
82
+				'content' => $this->_dtt_evt_start_stop(),
83
+				'options' => array(
84
+					'tipLocation'    => 'top',
85
+					'tipAdjustmentX' => 5,
86
+					'tipAdjustmentY' => -30,
87
+				),
88
+			),
89
+			80  => array(
90
+				'id'      => '_REG_code',
91
+				'content' => $this->_reg_code_stop(),
92
+				'options' => array(
93
+					'tipLocation'    => 'top',
94
+					'tipAdjustmentX' => 0,
95
+					'tipAdjustmentY' => -30,
96
+				),
97
+			),
98
+			90  => array(
99
+				'id'      => '_REG_final_price',
100
+				'content' => $this->_txn_total_stop(),
101
+				'options' => array(
102
+					'tipLocation'    => 'left',
103
+					'tipAdjustmentX' => 5,
104
+					'tipAdjustmentY' => -50,
105
+				),
106
+			),
107
+			100 => array(
108
+				'id'      => 'actions',
109
+				'content' => $this->_actions_stop(),
110
+				'options' => array(
111
+					'tipLocation'    => 'left',
112
+					'tipAdjustmentX' => 0,
113
+					'tipAdjustmentY' => -50,
114
+				),
115
+			),
116
+			110 => array(
117
+				'class'   => 'ee-list-table-legend-container',
118
+				'content' => $this->_legend_stop(),
119
+				'options' => array(
120
+					'tipLocation'    => 'right',
121
+					'tipAdjustmentX' => 15,
122
+					'tipAdjustmentY' => -40,
123
+				),
124
+			),
125
+			120 => array(
126
+				'class'   => 'subsubsub',
127
+				'content' => $this->_views_stop(),
128
+				'options' => array(
129
+					'tipLocation'    => 'right',
130
+					'tipAdjustmentY' => -50,
131
+					'tipAdjustmentX' => 15,
132
+				),
133
+			),
134
+			130 => array(
135
+				'class'   => 'bulkactions',
136
+				'content' => $this->_bulkactions_stop(),
137
+				'options' => array(
138
+					'tipLocation'    => 'bottom',
139
+					'tipAdjustmentY' => -30,
140
+					'tipAdjustmentX' => 15,
141
+				),
142
+			),
143
+			140 => array(
144
+				'id'      => 'EVT_CAT',
145
+				'content' => $this->_stop_about_filters(),
146
+				'options' => array(
147
+					'tipLocation'    => 'top',
148
+					'tipAdjustmentY' => -40,
149
+					'tipAdjustmentX' => 25,
150
+				),
151
+			),
152
+			150 => array(
153
+				'id'      => 'event-espresso_page_espresso_registrations-search-input',
154
+				'content' => $this->_search_stop(),
155
+				'options' => array(
156
+					'tipLocation'    => 'left',
157
+					'tipAdjustmentY' => -50,
158
+					'tipAdjustmentX' => -15,
159
+				),
160
+			),
161
+		);
162
+	}
163 163
 
164 164
 
165
-    protected function _start()
166
-    {
167
-        $content = '<h3>' . __('Registration Overview', 'event_espresso') . '</h3>';
168
-        if (isset($this->_req_data['event_id'])) {
169
-            $content .= '<p>'
170
-                        . __(
171
-                            'An introduction to the Registration Overview page for a single event. This view is pretty much the same as the default overview registration page except you are only seeing registrations for a specific event.  There are also some changes to the available columns in this view.',
172
-                            'event_espresso'
173
-                        ) . '</p>';
174
-        } else {
175
-            $content .= '<p>'
176
-                        . __(
177
-                            'This tour of the Registration Overview page will go over different areas of the screen to help you understand what they are used for.',
178
-                            'event_espresso'
179
-                        ) . '</p>';
180
-        }
181
-        return $content;
182
-    }
165
+	protected function _start()
166
+	{
167
+		$content = '<h3>' . __('Registration Overview', 'event_espresso') . '</h3>';
168
+		if (isset($this->_req_data['event_id'])) {
169
+			$content .= '<p>'
170
+						. __(
171
+							'An introduction to the Registration Overview page for a single event. This view is pretty much the same as the default overview registration page except you are only seeing registrations for a specific event.  There are also some changes to the available columns in this view.',
172
+							'event_espresso'
173
+						) . '</p>';
174
+		} else {
175
+			$content .= '<p>'
176
+						. __(
177
+							'This tour of the Registration Overview page will go over different areas of the screen to help you understand what they are used for.',
178
+							'event_espresso'
179
+						) . '</p>';
180
+		}
181
+		return $content;
182
+	}
183 183
 
184
-    protected function _reg_id_stop()
185
-    {
186
-        return '<p>'
187
-               . __(
188
-                   'View the registration ID. Can be sorted in ascending or descending order.',
189
-                   'event_espresso'
190
-               ) . '</p>';
191
-    }
184
+	protected function _reg_id_stop()
185
+	{
186
+		return '<p>'
187
+			   . __(
188
+				   'View the registration ID. Can be sorted in ascending or descending order.',
189
+				   'event_espresso'
190
+			   ) . '</p>';
191
+	}
192 192
 
193
-    protected function _reg_count_stop()
194
-    {
195
-        return '<p>' . __('View registration number.', 'event_espresso') . '</p>';
196
-    }
193
+	protected function _reg_count_stop()
194
+	{
195
+		return '<p>' . __('View registration number.', 'event_espresso') . '</p>';
196
+	}
197 197
 
198
-    protected function _attendee_name_stop()
199
-    {
200
-        return '<p>'
201
-               . __(
202
-                   'View the name of the registrant. Can be sorted in ascending or descending order.',
203
-                   'event_espresso'
204
-               ) . '</p>';
205
-    }
198
+	protected function _attendee_name_stop()
199
+	{
200
+		return '<p>'
201
+			   . __(
202
+				   'View the name of the registrant. Can be sorted in ascending or descending order.',
203
+				   'event_espresso'
204
+			   ) . '</p>';
205
+	}
206 206
 
207
-    protected function _reg_date_stop()
208
-    {
209
-        return '<p>'
210
-               . __(
211
-                   'View registration date. Can be sorted in ascending or descending order.',
212
-                   'event_espresso'
213
-               ) . '</p>';
214
-    }
207
+	protected function _reg_date_stop()
208
+	{
209
+		return '<p>'
210
+			   . __(
211
+				   'View registration date. Can be sorted in ascending or descending order.',
212
+				   'event_espresso'
213
+			   ) . '</p>';
214
+	}
215 215
 
216
-    protected function _event_name_stop()
217
-    {
218
-        return '<p>'
219
-               . __(
220
-                   'View the name of the event. Can be sorted in ascending or descending order.',
221
-                   'event_espresso'
222
-               ) . '</p>';
223
-    }
216
+	protected function _event_name_stop()
217
+	{
218
+		return '<p>'
219
+			   . __(
220
+				   'View the name of the event. Can be sorted in ascending or descending order.',
221
+				   'event_espresso'
222
+			   ) . '</p>';
223
+	}
224 224
 
225
-    protected function _dtt_evt_start_stop()
226
-    {
227
-        return '<p>'
228
-               . __(
229
-                   'View the date of the event. Can be sorted in ascending or descending order.',
230
-                   'event_espresso'
231
-               ) . '</p>';
232
-    }
225
+	protected function _dtt_evt_start_stop()
226
+	{
227
+		return '<p>'
228
+			   . __(
229
+				   'View the date of the event. Can be sorted in ascending or descending order.',
230
+				   'event_espresso'
231
+			   ) . '</p>';
232
+	}
233 233
 
234
-    protected function _reg_code_stop()
235
-    {
236
-        return '<p>' . __('View registration code for a registrant.', 'event_espresso') . '</p>';
237
-    }
234
+	protected function _reg_code_stop()
235
+	{
236
+		return '<p>' . __('View registration code for a registrant.', 'event_espresso') . '</p>';
237
+	}
238 238
 
239
-    protected function _txn_total_stop()
240
-    {
241
-        return '<p>' . __('View price of registration.', 'event_espresso') . '</p>';
242
-    }
239
+	protected function _txn_total_stop()
240
+	{
241
+		return '<p>' . __('View price of registration.', 'event_espresso') . '</p>';
242
+	}
243 243
 
244
-    protected function _actions_stop()
245
-    {
246
-        return '<p>'
247
-               . __(
248
-                   'Perform an action to a registration. See legend in bottom left corner.',
249
-                   'event_espresso'
250
-               ) . '</p>';
251
-    }
244
+	protected function _actions_stop()
245
+	{
246
+		return '<p>'
247
+			   . __(
248
+				   'Perform an action to a registration. See legend in bottom left corner.',
249
+				   'event_espresso'
250
+			   ) . '</p>';
251
+	}
252 252
 
253
-    protected function _legend_stop()
254
-    {
255
-        return '<p>'
256
-               . __(
257
-                   'This is the legend that describes the actions available in the actions column. Also shows available statuses for a registration.',
258
-                   'event_espresso'
259
-               ) . '</p>';
260
-    }
253
+	protected function _legend_stop()
254
+	{
255
+		return '<p>'
256
+			   . __(
257
+				   'This is the legend that describes the actions available in the actions column. Also shows available statuses for a registration.',
258
+				   'event_espresso'
259
+			   ) . '</p>';
260
+	}
261 261
 
262
-    protected function _views_stop()
263
-    {
264
-        return '<p>'
265
-               . __(
266
-                   'You can select different views by time period or look at registrations which have been moved to the trash.',
267
-                   'event_espresso'
268
-               ) . '</p>';
269
-    }
262
+	protected function _views_stop()
263
+	{
264
+		return '<p>'
265
+			   . __(
266
+				   'You can select different views by time period or look at registrations which have been moved to the trash.',
267
+				   'event_espresso'
268
+			   ) . '</p>';
269
+	}
270 270
 
271
-    protected function _bulkactions_stop()
272
-    {
273
-        return '<p>' . __('Perform a bulk action to multiple registrations.', 'event_espresso') . '</p>';
274
-    }
271
+	protected function _bulkactions_stop()
272
+	{
273
+		return '<p>' . __('Perform a bulk action to multiple registrations.', 'event_espresso') . '</p>';
274
+	}
275 275
 
276
-    protected function _stop_about_filters()
277
-    {
278
-        return '<p>' . __('Registrations can be filtered by date, categories, or status.', 'event_espresso') . '</p>';
279
-    }
276
+	protected function _stop_about_filters()
277
+	{
278
+		return '<p>' . __('Registrations can be filtered by date, categories, or status.', 'event_espresso') . '</p>';
279
+	}
280 280
 
281
-    protected function _search_stop()
282
-    {
283
-        return '<p>'
284
-               . __(
285
-                   'Search through registrations. The following sources will be searched: Event Name, Event Description, First Name, Last Name, Biography, Email Address, Address, Comments, Notes, Registration Final Price, Registration Code, Registration Group Size, Ticket Name, and Ticket Description.',
286
-                   'event_espresso'
287
-               ) . '</p>';
288
-    }
281
+	protected function _search_stop()
282
+	{
283
+		return '<p>'
284
+			   . __(
285
+				   'Search through registrations. The following sources will be searched: Event Name, Event Description, First Name, Last Name, Biography, Email Address, Address, Comments, Notes, Registration Final Price, Registration Code, Registration Group Size, Ticket Name, and Ticket Description.',
286
+				   'event_espresso'
287
+			   ) . '</p>';
288
+	}
289 289
 }
Please login to merge, or discard this patch.
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -164,19 +164,19 @@  discard block
 block discarded – undo
164 164
 
165 165
     protected function _start()
166 166
     {
167
-        $content = '<h3>' . __('Registration Overview', 'event_espresso') . '</h3>';
167
+        $content = '<h3>'.__('Registration Overview', 'event_espresso').'</h3>';
168 168
         if (isset($this->_req_data['event_id'])) {
169 169
             $content .= '<p>'
170 170
                         . __(
171 171
                             'An introduction to the Registration Overview page for a single event. This view is pretty much the same as the default overview registration page except you are only seeing registrations for a specific event.  There are also some changes to the available columns in this view.',
172 172
                             'event_espresso'
173
-                        ) . '</p>';
173
+                        ).'</p>';
174 174
         } else {
175 175
             $content .= '<p>'
176 176
                         . __(
177 177
                             'This tour of the Registration Overview page will go over different areas of the screen to help you understand what they are used for.',
178 178
                             'event_espresso'
179
-                        ) . '</p>';
179
+                        ).'</p>';
180 180
         }
181 181
         return $content;
182 182
     }
@@ -187,12 +187,12 @@  discard block
 block discarded – undo
187 187
                . __(
188 188
                    'View the registration ID. Can be sorted in ascending or descending order.',
189 189
                    'event_espresso'
190
-               ) . '</p>';
190
+               ).'</p>';
191 191
     }
192 192
 
193 193
     protected function _reg_count_stop()
194 194
     {
195
-        return '<p>' . __('View registration number.', 'event_espresso') . '</p>';
195
+        return '<p>'.__('View registration number.', 'event_espresso').'</p>';
196 196
     }
197 197
 
198 198
     protected function _attendee_name_stop()
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
                . __(
202 202
                    'View the name of the registrant. Can be sorted in ascending or descending order.',
203 203
                    'event_espresso'
204
-               ) . '</p>';
204
+               ).'</p>';
205 205
     }
206 206
 
207 207
     protected function _reg_date_stop()
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
                . __(
211 211
                    'View registration date. Can be sorted in ascending or descending order.',
212 212
                    'event_espresso'
213
-               ) . '</p>';
213
+               ).'</p>';
214 214
     }
215 215
 
216 216
     protected function _event_name_stop()
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
                . __(
220 220
                    'View the name of the event. Can be sorted in ascending or descending order.',
221 221
                    'event_espresso'
222
-               ) . '</p>';
222
+               ).'</p>';
223 223
     }
224 224
 
225 225
     protected function _dtt_evt_start_stop()
@@ -228,17 +228,17 @@  discard block
 block discarded – undo
228 228
                . __(
229 229
                    'View the date of the event. Can be sorted in ascending or descending order.',
230 230
                    'event_espresso'
231
-               ) . '</p>';
231
+               ).'</p>';
232 232
     }
233 233
 
234 234
     protected function _reg_code_stop()
235 235
     {
236
-        return '<p>' . __('View registration code for a registrant.', 'event_espresso') . '</p>';
236
+        return '<p>'.__('View registration code for a registrant.', 'event_espresso').'</p>';
237 237
     }
238 238
 
239 239
     protected function _txn_total_stop()
240 240
     {
241
-        return '<p>' . __('View price of registration.', 'event_espresso') . '</p>';
241
+        return '<p>'.__('View price of registration.', 'event_espresso').'</p>';
242 242
     }
243 243
 
244 244
     protected function _actions_stop()
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
                . __(
248 248
                    'Perform an action to a registration. See legend in bottom left corner.',
249 249
                    'event_espresso'
250
-               ) . '</p>';
250
+               ).'</p>';
251 251
     }
252 252
 
253 253
     protected function _legend_stop()
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
                . __(
257 257
                    'This is the legend that describes the actions available in the actions column. Also shows available statuses for a registration.',
258 258
                    'event_espresso'
259
-               ) . '</p>';
259
+               ).'</p>';
260 260
     }
261 261
 
262 262
     protected function _views_stop()
@@ -265,17 +265,17 @@  discard block
 block discarded – undo
265 265
                . __(
266 266
                    'You can select different views by time period or look at registrations which have been moved to the trash.',
267 267
                    'event_espresso'
268
-               ) . '</p>';
268
+               ).'</p>';
269 269
     }
270 270
 
271 271
     protected function _bulkactions_stop()
272 272
     {
273
-        return '<p>' . __('Perform a bulk action to multiple registrations.', 'event_espresso') . '</p>';
273
+        return '<p>'.__('Perform a bulk action to multiple registrations.', 'event_espresso').'</p>';
274 274
     }
275 275
 
276 276
     protected function _stop_about_filters()
277 277
     {
278
-        return '<p>' . __('Registrations can be filtered by date, categories, or status.', 'event_espresso') . '</p>';
278
+        return '<p>'.__('Registrations can be filtered by date, categories, or status.', 'event_espresso').'</p>';
279 279
     }
280 280
 
281 281
     protected function _search_stop()
@@ -284,6 +284,6 @@  discard block
 block discarded – undo
284 284
                . __(
285 285
                    'Search through registrations. The following sources will be searched: Event Name, Event Description, First Name, Last Name, Biography, Email Address, Address, Comments, Notes, Registration Final Price, Registration Code, Registration Group Size, Ticket Name, and Ticket Description.',
286 286
                    'event_espresso'
287
-               ) . '</p>';
287
+               ).'</p>';
288 288
     }
289 289
 }
Please login to merge, or discard this patch.
registrations/help_tours/Registration_Details_Help_Tour.class.php 2 patches
Indentation   +113 added lines, -113 removed lines patch added patch discarded remove patch
@@ -15,127 +15,127 @@
 block discarded – undo
15 15
 class Registration_Details_Help_Tour extends EE_Help_Tour
16 16
 {
17 17
 
18
-    protected function _set_tour_properties()
19
-    {
20
-        $this->_label = __('Registration Details Tour', 'event_espresso');
21
-        $this->_slug = 'registration-view-joyride';
22
-    }
18
+	protected function _set_tour_properties()
19
+	{
20
+		$this->_label = __('Registration Details Tour', 'event_espresso');
21
+		$this->_slug = 'registration-view-joyride';
22
+	}
23 23
 
24 24
 
25
-    protected function _set_tour_stops()
26
-    {
27
-        $this->_stops = array(
28
-            10 => array(
29
-                'content' => $this->_start(),
30
-            ),
31
-            20 => array(
32
-                'id'      => 'reg-admin-reg-details-reg-date-hdr',
33
-                'content' => $this->_reg_date_title(),
34
-                'options' => array(
35
-                    'tipLocation'    => 'top',
36
-                    'tipAdjustmentY' => -40,
37
-                    'tipAdjustmentX' => 200,
38
-                ),
39
-            ),
40
-            30 => array(
41
-                'id'      => 'reg-admin-reg-details-reg-status-hdr',
42
-                'content' => $this->_reg_details_stop(),
43
-                'options' => array(
44
-                    'tipLocation'    => 'top',
45
-                    'tipAdjustmentY' => -40,
46
-                    'tipAdjustmentX' => 200,
47
-                ),
48
-            ),
49
-            40 => array(
50
-                'id'      => 'display-additional-registration-session-info',
51
-                'content' => $this->_reg_details_table(),
52
-                'options' => array(
53
-                    'tipLocation'    => 'top',
54
-                    'tipAdjustmentY' => -225,
55
-                    'tipAdjustmentX' => 50,
56
-                ),
57
-            ),
58
-            50 => array(
59
-                'id'      => 'display-additional-registration-session-info',
60
-                'content' => $this->_display_additional_info_stop(),
61
-                'options' => array(
62
-                    'tipLocation'    => 'top',
63
-                    'tipAdjustmentY' => -35,
64
-                    'tipAdjustmentX' => 45,
65
-                ),
66
-            ),
67
-            60 => array(
68
-                'id'      => 'edit-reg-questions-mbox',
69
-                'content' => $this->_edit_reg_question_stop(),
70
-                'options' => array(
71
-                    'tipLocation'    => 'top',
72
-                    'tipAdjustmentY' => -30,
73
-                    'tipAdjustmentX' => 75,
74
-                ),
75
-            ),
76
-            70 => array(
77
-                'id'      => 'edit-reg-registrant-mbox',
78
-                'content' => $this->_attendee_details_stop(),
79
-                'options' => array(
80
-                    'tipLocation'    => 'left',
81
-                    'tipAdjustmentY' => 0,
82
-                    'tipAdjustmentX' => 0,
83
-                ),
84
-            ),
85
-        );
86
-    }
25
+	protected function _set_tour_stops()
26
+	{
27
+		$this->_stops = array(
28
+			10 => array(
29
+				'content' => $this->_start(),
30
+			),
31
+			20 => array(
32
+				'id'      => 'reg-admin-reg-details-reg-date-hdr',
33
+				'content' => $this->_reg_date_title(),
34
+				'options' => array(
35
+					'tipLocation'    => 'top',
36
+					'tipAdjustmentY' => -40,
37
+					'tipAdjustmentX' => 200,
38
+				),
39
+			),
40
+			30 => array(
41
+				'id'      => 'reg-admin-reg-details-reg-status-hdr',
42
+				'content' => $this->_reg_details_stop(),
43
+				'options' => array(
44
+					'tipLocation'    => 'top',
45
+					'tipAdjustmentY' => -40,
46
+					'tipAdjustmentX' => 200,
47
+				),
48
+			),
49
+			40 => array(
50
+				'id'      => 'display-additional-registration-session-info',
51
+				'content' => $this->_reg_details_table(),
52
+				'options' => array(
53
+					'tipLocation'    => 'top',
54
+					'tipAdjustmentY' => -225,
55
+					'tipAdjustmentX' => 50,
56
+				),
57
+			),
58
+			50 => array(
59
+				'id'      => 'display-additional-registration-session-info',
60
+				'content' => $this->_display_additional_info_stop(),
61
+				'options' => array(
62
+					'tipLocation'    => 'top',
63
+					'tipAdjustmentY' => -35,
64
+					'tipAdjustmentX' => 45,
65
+				),
66
+			),
67
+			60 => array(
68
+				'id'      => 'edit-reg-questions-mbox',
69
+				'content' => $this->_edit_reg_question_stop(),
70
+				'options' => array(
71
+					'tipLocation'    => 'top',
72
+					'tipAdjustmentY' => -30,
73
+					'tipAdjustmentX' => 75,
74
+				),
75
+			),
76
+			70 => array(
77
+				'id'      => 'edit-reg-registrant-mbox',
78
+				'content' => $this->_attendee_details_stop(),
79
+				'options' => array(
80
+					'tipLocation'    => 'left',
81
+					'tipAdjustmentY' => 0,
82
+					'tipAdjustmentX' => 0,
83
+				),
84
+			),
85
+		);
86
+	}
87 87
 
88 88
 
89
-    protected function _start()
90
-    {
91
-        $content = '<h3>' . __('Registration Details', 'event_espresso') . '</h3>';
92
-        $content .= '<p>'
93
-                    . __(
94
-                        'This tour of the Registration Details page will go over different areas of the screen to help you understand what they are used for.',
95
-                        'event_espresso'
96
-                    ) . '</p>';
97
-        return $content;
98
-    }
89
+	protected function _start()
90
+	{
91
+		$content = '<h3>' . __('Registration Details', 'event_espresso') . '</h3>';
92
+		$content .= '<p>'
93
+					. __(
94
+						'This tour of the Registration Details page will go over different areas of the screen to help you understand what they are used for.',
95
+						'event_espresso'
96
+					) . '</p>';
97
+		return $content;
98
+	}
99 99
 
100
-    protected function _reg_date_title()
101
-    {
102
-        return '<p>' . __('This is the date that the registration occurred on.', 'event_espresso') . '</p>';
103
-    }
100
+	protected function _reg_date_title()
101
+	{
102
+		return '<p>' . __('This is the date that the registration occurred on.', 'event_espresso') . '</p>';
103
+	}
104 104
 
105
-    protected function _reg_details_stop()
106
-    {
107
-        return '<p>'
108
-               . __(
109
-                   'The buttons below allow you to perform an action with a registration. The options are Approved, Not Approved, Declined, and Cancelled.',
110
-                   'event_espresso'
111
-               ) . '</p>';
112
-    }
105
+	protected function _reg_details_stop()
106
+	{
107
+		return '<p>'
108
+			   . __(
109
+				   'The buttons below allow you to perform an action with a registration. The options are Approved, Not Approved, Declined, and Cancelled.',
110
+				   'event_espresso'
111
+			   ) . '</p>';
112
+	}
113 113
 
114
-    protected function _reg_details_table()
115
-    {
116
-        return '<p>'
117
-               . __(
118
-                   'The registration items area displays various information including Line Item ID, Event Name, Event Date, Ticket Option, Price, Quantity, Line Total, Sales Tax, and the Grand Total.',
119
-                   'event_espresso'
120
-               ) . '</p>';
121
-    }
114
+	protected function _reg_details_table()
115
+	{
116
+		return '<p>'
117
+			   . __(
118
+				   'The registration items area displays various information including Line Item ID, Event Name, Event Date, Ticket Option, Price, Quantity, Line Total, Sales Tax, and the Grand Total.',
119
+				   'event_espresso'
120
+			   ) . '</p>';
121
+	}
122 122
 
123
-    protected function _display_additional_info_stop()
124
-    {
125
-        return '<p>'
126
-               . __(
127
-                   'You can view additional information about the registration by clicking on the link below. Examples of available information includes Registration ID, IP Address, and User Agent.',
128
-                   'event_espresso'
129
-               ) . '</p>';
130
-    }
123
+	protected function _display_additional_info_stop()
124
+	{
125
+		return '<p>'
126
+			   . __(
127
+				   'You can view additional information about the registration by clicking on the link below. Examples of available information includes Registration ID, IP Address, and User Agent.',
128
+				   'event_espresso'
129
+			   ) . '</p>';
130
+	}
131 131
 
132
-    protected function _edit_reg_question_stop()
133
-    {
134
-        return '<p>' . __('View the answers to your custom questions below.', 'event_espresso') . '</p>';
135
-    }
132
+	protected function _edit_reg_question_stop()
133
+	{
134
+		return '<p>' . __('View the answers to your custom questions below.', 'event_espresso') . '</p>';
135
+	}
136 136
 
137
-    protected function _attendee_details_stop()
138
-    {
139
-        return '<p>' . __('View details on the registrant attached to this registration.', 'event_espresso') . '</p>';
140
-    }
137
+	protected function _attendee_details_stop()
138
+	{
139
+		return '<p>' . __('View details on the registrant attached to this registration.', 'event_espresso') . '</p>';
140
+	}
141 141
 }
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -88,18 +88,18 @@  discard block
 block discarded – undo
88 88
 
89 89
     protected function _start()
90 90
     {
91
-        $content = '<h3>' . __('Registration Details', 'event_espresso') . '</h3>';
91
+        $content = '<h3>'.__('Registration Details', 'event_espresso').'</h3>';
92 92
         $content .= '<p>'
93 93
                     . __(
94 94
                         'This tour of the Registration Details page will go over different areas of the screen to help you understand what they are used for.',
95 95
                         'event_espresso'
96
-                    ) . '</p>';
96
+                    ).'</p>';
97 97
         return $content;
98 98
     }
99 99
 
100 100
     protected function _reg_date_title()
101 101
     {
102
-        return '<p>' . __('This is the date that the registration occurred on.', 'event_espresso') . '</p>';
102
+        return '<p>'.__('This is the date that the registration occurred on.', 'event_espresso').'</p>';
103 103
     }
104 104
 
105 105
     protected function _reg_details_stop()
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
                . __(
109 109
                    'The buttons below allow you to perform an action with a registration. The options are Approved, Not Approved, Declined, and Cancelled.',
110 110
                    'event_espresso'
111
-               ) . '</p>';
111
+               ).'</p>';
112 112
     }
113 113
 
114 114
     protected function _reg_details_table()
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
                . __(
118 118
                    'The registration items area displays various information including Line Item ID, Event Name, Event Date, Ticket Option, Price, Quantity, Line Total, Sales Tax, and the Grand Total.',
119 119
                    'event_espresso'
120
-               ) . '</p>';
120
+               ).'</p>';
121 121
     }
122 122
 
123 123
     protected function _display_additional_info_stop()
@@ -126,16 +126,16 @@  discard block
 block discarded – undo
126 126
                . __(
127 127
                    'You can view additional information about the registration by clicking on the link below. Examples of available information includes Registration ID, IP Address, and User Agent.',
128 128
                    'event_espresso'
129
-               ) . '</p>';
129
+               ).'</p>';
130 130
     }
131 131
 
132 132
     protected function _edit_reg_question_stop()
133 133
     {
134
-        return '<p>' . __('View the answers to your custom questions below.', 'event_espresso') . '</p>';
134
+        return '<p>'.__('View the answers to your custom questions below.', 'event_espresso').'</p>';
135 135
     }
136 136
 
137 137
     protected function _attendee_details_stop()
138 138
     {
139
-        return '<p>' . __('View details on the registrant attached to this registration.', 'event_espresso') . '</p>';
139
+        return '<p>'.__('View details on the registrant attached to this registration.', 'event_espresso').'</p>';
140 140
     }
141 141
 }
Please login to merge, or discard this patch.