Passed
Push — master ( 578d12...5023d9 )
by Brian
04:33
created
includes/payments/class-getpaid-payment-form-submission.php 2 patches
Indentation   +736 added lines, -736 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 if ( ! defined( 'ABSPATH' ) ) {
3
-	exit;
3
+    exit;
4 4
 }
5 5
 
6 6
 /**
@@ -10,187 +10,187 @@  discard block
 block discarded – undo
10 10
 class GetPaid_Payment_Form_Submission {
11 11
 
12 12
     /**
13
-	 * Submission ID
14
-	 *
15
-	 * @var string
16
-	 */
17
-	public $id = null;
18
-
19
-	/**
20
-	 * The raw submission data.
21
-	 *
22
-	 * @var array
23
-	 */
24
-	protected $data = null;
25
-
26
-	/**
27
-	 * Submission totals
28
-	 *
29
-	 * @var array
30
-	 */
31
-	protected $totals = array(
32
-
33
-		'subtotal'      => array(
34
-			'initial'   => 0,
35
-			'recurring' => 0,
36
-		),
37
-
38
-		'discount'      => array(
39
-			'initial'   => 0,
40
-			'recurring' => 0,
41
-		),
42
-
43
-		'fees'          => array(
44
-			'initial'   => 0,
45
-			'recurring' => 0,
46
-		),
47
-
48
-		'taxes'         => array(
49
-			'initial'   => 0,
50
-			'recurring' => 0,
51
-		),
52
-
53
-	);
54
-
55
-	/**
56
-	 * Sets the associated payment form.
57
-	 *
58
-	 * @var GetPaid_Payment_Form
59
-	 */
13
+     * Submission ID
14
+     *
15
+     * @var string
16
+     */
17
+    public $id = null;
18
+
19
+    /**
20
+     * The raw submission data.
21
+     *
22
+     * @var array
23
+     */
24
+    protected $data = null;
25
+
26
+    /**
27
+     * Submission totals
28
+     *
29
+     * @var array
30
+     */
31
+    protected $totals = array(
32
+
33
+        'subtotal'      => array(
34
+            'initial'   => 0,
35
+            'recurring' => 0,
36
+        ),
37
+
38
+        'discount'      => array(
39
+            'initial'   => 0,
40
+            'recurring' => 0,
41
+        ),
42
+
43
+        'fees'          => array(
44
+            'initial'   => 0,
45
+            'recurring' => 0,
46
+        ),
47
+
48
+        'taxes'         => array(
49
+            'initial'   => 0,
50
+            'recurring' => 0,
51
+        ),
52
+
53
+    );
54
+
55
+    /**
56
+     * Sets the associated payment form.
57
+     *
58
+     * @var GetPaid_Payment_Form
59
+     */
60 60
     protected $payment_form = null;
61 61
 
62 62
     /**
63
-	 * The country for the submission.
64
-	 *
65
-	 * @var string
66
-	 */
67
-	public $country = null;
68
-
69
-    /**
70
-	 * The state for the submission.
71
-	 *
72
-	 * @since 1.0.19
73
-	 * @var string
74
-	 */
75
-	public $state = null;
76
-
77
-	/**
78
-	 * The invoice associated with the submission.
79
-	 *
80
-	 * @var WPInv_Invoice
81
-	 */
82
-	protected $invoice = null;
83
-
84
-	/**
85
-	 * The recurring item for the submission.
86
-	 *
87
-	 * @var int
88
-	 */
89
-	public $has_recurring = 0;
90
-
91
-	/**
92
-	 * An array of fees for the submission.
93
-	 *
94
-	 * @var array
95
-	 */
96
-	protected $fees = array();
97
-
98
-	/**
99
-	 * An array of discounts for the submission.
100
-	 *
101
-	 * @var array
102
-	 */
103
-	protected $discounts = array();
104
-
105
-	/**
106
-	 * An array of taxes for the submission.
107
-	 *
108
-	 * @var array
109
-	 */
110
-	protected $taxes = array();
111
-
112
-	/**
113
-	 * An array of items for the submission.
114
-	 *
115
-	 * @var GetPaid_Form_Item[]
116
-	 */
117
-	protected $items = array();
118
-
119
-	/**
120
-	 * The last error.
121
-	 *
122
-	 * @var string
123
-	 */
124
-	public $last_error = null;
125
-
126
-    /**
127
-	 * Class constructor.
128
-	 *
129
-	 */
130
-	public function __construct() {
131
-
132
-		// Set the state and country to the default state and country.
133
-		$this->country = wpinv_default_billing_country();
134
-		$this->state   = wpinv_get_default_state();
135
-
136
-		// Do we have an actual submission?
137
-		if ( isset( $_POST['getpaid_payment_form_submission'] ) ) {
138
-			$this->load_data( $_POST );
139
-		}
140
-
141
-	}
142
-
143
-	/**
144
-	 * Loads submission data.
145
-	 *
146
-	 * @param array $data
147
-	 */
148
-	public function load_data( $data ) {
149
-
150
-		// Remove slashes from the submitted data...
151
-		$data       = wp_unslash( $data );
152
-
153
-		// Allow plugins to filter the data.
154
-		$data       = apply_filters( 'getpaid_submission_data', $data, $this );
155
-
156
-		// Cache it...
157
-		$this->data = $data;
158
-
159
-		// Then generate a unique id from the data.
160
-		$this->id   = md5( wp_json_encode( $data ) );
161
-
162
-		// Finally, process the submission.
163
-		try {
164
-
165
-			// Each process is passed an instance of the class (with reference)
166
-			// and should throw an Exception whenever it encounters one.
167
-			$processors = apply_filters(
168
-				'getpaid_payment_form_submission_processors',
169
-				array(
170
-					array( $this, 'process_payment_form' ),
171
-					array( $this, 'process_invoice' ),
172
-					array( $this, 'process_fees' ),
173
-					array( $this, 'process_items' ),
174
-					array( $this, 'process_taxes' ),
175
-					array( $this, 'process_discount' ),
176
-				),
177
-				$this		
178
-			);
179
-
180
-			foreach ( $processors as $processor ) {
181
-				call_user_func_array( $processor, array( &$this ) );
182
-			}
183
-
184
-		} catch ( Exception $e ) {
185
-			$this->last_error = $e->getMessage();
186
-		}
187
-
188
-		// Fired when we are done processing a submission.
189
-		do_action_ref_array( 'getpaid_process_submission', array( &$this ) );
190
-
191
-	}
192
-
193
-	/*
63
+     * The country for the submission.
64
+     *
65
+     * @var string
66
+     */
67
+    public $country = null;
68
+
69
+    /**
70
+     * The state for the submission.
71
+     *
72
+     * @since 1.0.19
73
+     * @var string
74
+     */
75
+    public $state = null;
76
+
77
+    /**
78
+     * The invoice associated with the submission.
79
+     *
80
+     * @var WPInv_Invoice
81
+     */
82
+    protected $invoice = null;
83
+
84
+    /**
85
+     * The recurring item for the submission.
86
+     *
87
+     * @var int
88
+     */
89
+    public $has_recurring = 0;
90
+
91
+    /**
92
+     * An array of fees for the submission.
93
+     *
94
+     * @var array
95
+     */
96
+    protected $fees = array();
97
+
98
+    /**
99
+     * An array of discounts for the submission.
100
+     *
101
+     * @var array
102
+     */
103
+    protected $discounts = array();
104
+
105
+    /**
106
+     * An array of taxes for the submission.
107
+     *
108
+     * @var array
109
+     */
110
+    protected $taxes = array();
111
+
112
+    /**
113
+     * An array of items for the submission.
114
+     *
115
+     * @var GetPaid_Form_Item[]
116
+     */
117
+    protected $items = array();
118
+
119
+    /**
120
+     * The last error.
121
+     *
122
+     * @var string
123
+     */
124
+    public $last_error = null;
125
+
126
+    /**
127
+     * Class constructor.
128
+     *
129
+     */
130
+    public function __construct() {
131
+
132
+        // Set the state and country to the default state and country.
133
+        $this->country = wpinv_default_billing_country();
134
+        $this->state   = wpinv_get_default_state();
135
+
136
+        // Do we have an actual submission?
137
+        if ( isset( $_POST['getpaid_payment_form_submission'] ) ) {
138
+            $this->load_data( $_POST );
139
+        }
140
+
141
+    }
142
+
143
+    /**
144
+     * Loads submission data.
145
+     *
146
+     * @param array $data
147
+     */
148
+    public function load_data( $data ) {
149
+
150
+        // Remove slashes from the submitted data...
151
+        $data       = wp_unslash( $data );
152
+
153
+        // Allow plugins to filter the data.
154
+        $data       = apply_filters( 'getpaid_submission_data', $data, $this );
155
+
156
+        // Cache it...
157
+        $this->data = $data;
158
+
159
+        // Then generate a unique id from the data.
160
+        $this->id   = md5( wp_json_encode( $data ) );
161
+
162
+        // Finally, process the submission.
163
+        try {
164
+
165
+            // Each process is passed an instance of the class (with reference)
166
+            // and should throw an Exception whenever it encounters one.
167
+            $processors = apply_filters(
168
+                'getpaid_payment_form_submission_processors',
169
+                array(
170
+                    array( $this, 'process_payment_form' ),
171
+                    array( $this, 'process_invoice' ),
172
+                    array( $this, 'process_fees' ),
173
+                    array( $this, 'process_items' ),
174
+                    array( $this, 'process_taxes' ),
175
+                    array( $this, 'process_discount' ),
176
+                ),
177
+                $this		
178
+            );
179
+
180
+            foreach ( $processors as $processor ) {
181
+                call_user_func_array( $processor, array( &$this ) );
182
+            }
183
+
184
+        } catch ( Exception $e ) {
185
+            $this->last_error = $e->getMessage();
186
+        }
187
+
188
+        // Fired when we are done processing a submission.
189
+        do_action_ref_array( 'getpaid_process_submission', array( &$this ) );
190
+
191
+    }
192
+
193
+    /*
194 194
 	|--------------------------------------------------------------------------
195 195
 	| Payment Forms.
196 196
 	|--------------------------------------------------------------------------
@@ -199,39 +199,39 @@  discard block
 block discarded – undo
199 199
 	| submission has an active payment form etc.
200 200
     */
201 201
 
202
-	/**
203
-	 * Prepares the submission's payment form.
204
-	 *
205
-	 * @since 1.0.19
206
-	 */
207
-	public function process_payment_form() {
202
+    /**
203
+     * Prepares the submission's payment form.
204
+     *
205
+     * @since 1.0.19
206
+     */
207
+    public function process_payment_form() {
208 208
 
209
-		// Every submission needs an active payment form.
210
-		if ( empty( $this->data['form_id'] ) ) {
211
-			throw new Exception( __( 'Missing payment form', 'invoicing' ) );
212
-		}
209
+        // Every submission needs an active payment form.
210
+        if ( empty( $this->data['form_id'] ) ) {
211
+            throw new Exception( __( 'Missing payment form', 'invoicing' ) );
212
+        }
213 213
 
214
-		// Fetch the payment form.
215
-		$this->payment_form = new GetPaid_Payment_Form( $this->data['form_id'] );
214
+        // Fetch the payment form.
215
+        $this->payment_form = new GetPaid_Payment_Form( $this->data['form_id'] );
216 216
 
217
-		if ( ! $this->payment_form->is_active() ) {
218
-			throw new Exception( __( 'Payment form not active', 'invoicing' ) );
219
-		}
217
+        if ( ! $this->payment_form->is_active() ) {
218
+            throw new Exception( __( 'Payment form not active', 'invoicing' ) );
219
+        }
220 220
 
221
-		do_action_ref_array( 'getpaid_submissions_process_payment_form', array( &$this ) );
222
-	}
221
+        do_action_ref_array( 'getpaid_submissions_process_payment_form', array( &$this ) );
222
+    }
223 223
 
224 224
     /**
225
-	 * Returns the payment form.
226
-	 *
227
-	 * @since 1.0.19
228
-	 * @return GetPaid_Payment_Form
229
-	 */
230
-	public function get_payment_form() {
231
-		return $this->payment_form;
232
-	}
225
+     * Returns the payment form.
226
+     *
227
+     * @since 1.0.19
228
+     * @return GetPaid_Payment_Form
229
+     */
230
+    public function get_payment_form() {
231
+        return $this->payment_form;
232
+    }
233 233
 
234
-	/*
234
+    /*
235 235
 	|--------------------------------------------------------------------------
236 236
 	| Invoices.
237 237
 	|--------------------------------------------------------------------------
@@ -240,61 +240,61 @@  discard block
 block discarded – undo
240 240
 	| might be for an existing invoice.
241 241
 	*/
242 242
 
243
-	/**
244
-	 * Prepares the submission's invoice.
245
-	 *
246
-	 * @since 1.0.19
247
-	 */
248
-	public function process_invoice() {
243
+    /**
244
+     * Prepares the submission's invoice.
245
+     *
246
+     * @since 1.0.19
247
+     */
248
+    public function process_invoice() {
249 249
 
250
-		// Abort if there is no invoice.
251
-		if ( empty( $this->data['invoice_id'] ) ) {
252
-			return;
253
-		}
250
+        // Abort if there is no invoice.
251
+        if ( empty( $this->data['invoice_id'] ) ) {
252
+            return;
253
+        }
254 254
 
255
-		// If the submission is for an existing invoice, ensure that it exists
256
-		// and that it is not paid for.
257
-		$invoice = wpinv_get_invoice( $this->data['invoice_id'] );
255
+        // If the submission is for an existing invoice, ensure that it exists
256
+        // and that it is not paid for.
257
+        $invoice = wpinv_get_invoice( $this->data['invoice_id'] );
258 258
 
259 259
         if ( empty( $invoice ) ) {
260
-			throw new Exception( __( 'Invalid invoice', 'invoicing' ) );
261
-		}
262
-
263
-		if ( $invoice->is_paid() ) {
264
-			throw new Exception( __( 'This invoice is already paid for.', 'invoicing' ) );
265
-		}
266
-
267
-		$this->payment_form->set_items( $invoice->get_items() );
268
-		$this->payment_form->invoice = $invoice;
269
-
270
-		$this->country = $invoice->get_country();
271
-		$this->state   = $invoice->get_state();
272
-		$this->invoice = $invoice;
273
-
274
-		do_action_ref_array( 'getpaid_submissions_process_invoice', array( &$this ) );
275
-	}
276
-
277
-	/**
278
-	 * Returns the associated invoice.
279
-	 *
280
-	 * @since 1.0.19
281
-	 * @return WPInv_Invoice
282
-	 */
283
-	public function get_invoice() {
284
-		return $this->invoice;
285
-	}
286
-
287
-	/**
288
-	 * Checks whether there is an invoice associated with this submission.
289
-	 *
290
-	 * @since 1.0.19
291
-	 * @return bool
292
-	 */
293
-	public function has_invoice() {
294
-		return ! empty( $this->invoice );
295
-	}
296
-
297
-	/*
260
+            throw new Exception( __( 'Invalid invoice', 'invoicing' ) );
261
+        }
262
+
263
+        if ( $invoice->is_paid() ) {
264
+            throw new Exception( __( 'This invoice is already paid for.', 'invoicing' ) );
265
+        }
266
+
267
+        $this->payment_form->set_items( $invoice->get_items() );
268
+        $this->payment_form->invoice = $invoice;
269
+
270
+        $this->country = $invoice->get_country();
271
+        $this->state   = $invoice->get_state();
272
+        $this->invoice = $invoice;
273
+
274
+        do_action_ref_array( 'getpaid_submissions_process_invoice', array( &$this ) );
275
+    }
276
+
277
+    /**
278
+     * Returns the associated invoice.
279
+     *
280
+     * @since 1.0.19
281
+     * @return WPInv_Invoice
282
+     */
283
+    public function get_invoice() {
284
+        return $this->invoice;
285
+    }
286
+
287
+    /**
288
+     * Checks whether there is an invoice associated with this submission.
289
+     *
290
+     * @since 1.0.19
291
+     * @return bool
292
+     */
293
+    public function has_invoice() {
294
+        return ! empty( $this->invoice );
295
+    }
296
+
297
+    /*
298 298
 	|--------------------------------------------------------------------------
299 299
 	| Items.
300 300
 	|--------------------------------------------------------------------------
@@ -303,105 +303,105 @@  discard block
 block discarded – undo
303 303
 	| recurring item. But can have an unlimited number of non-recurring items.
304 304
 	*/
305 305
 
306
-	/**
307
-	 * Prepares the submission's items.
308
-	 *
309
-	 * @since 1.0.19
310
-	 */
311
-	public function process_items() {
312
-
313
-		$processor = new GetPaid_Payment_Form_Submission_Items( $this );
314
-
315
-		foreach ( $processor->items as $item ) {
316
-			$this->add_item( $item );
317
-		}
318
-
319
-		do_action_ref_array( 'getpaid_submissions_process_items', array( &$this ) );
320
-	}
321
-
322
-	/**
323
-	 * Adds an item to the submission.
324
-	 *
325
-	 * @since 1.0.19
326
-	 * @param GetPaid_Form_Item $item
327
-	 */
328
-	public function add_item( $item ) {
329
-
330
-		// Make sure that it is available for purchase.
331
-		if ( ! $item->can_purchase() ) {
332
-			return;
333
-		}
334
-
335
-		// Each submission can only contain one recurring item.
336
-		if ( $item->is_recurring() ) {
337
-
338
-			if ( $this->has_recurring != 0 ) {
339
-				throw new Exception( __( 'You can only buy one recurring item at a time.', 'invoicing' ) );
340
-			}
341
-
342
-			$this->has_recurring = $item->get_id();
343
-
344
-		}
345
-
346
-		// Update the items and totals.
347
-		$this->items[ $item->get_id() ]         = $item;
348
-		$this->totals['subtotal']['initial']   += $item->get_sub_total();
349
-		$this->totals['subtotal']['recurring'] += $item->get_recurring_sub_total();
350
-
351
-	}
352
-
353
-	/**
354
-	 * Removes a specific item.
355
-	 * 
356
-	 * You should not call this method after the discounts and taxes
357
-	 * have been calculated.
358
-	 *
359
-	 * @since 1.0.19
360
-	 */
361
-	public function remove_item( $item_id ) {
362
-
363
-		if ( isset( $this->items[ $item_id ] ) ) {
364
-			$this->totals['subtotal']['initial']   -= $this->items[ $item_id ]->get_sub_total();
365
-			$this->totals['subtotal']['recurring'] -= $this->items[ $item_id ]->get_recurring_sub_total();
366
-
367
-			if ( $this->items[ $item_id ]->is_recurring() ) {
368
-				$this->has_recurring = 0;
369
-			}
370
-
371
-			unset( $this->items[ $item_id ] );
372
-		}
306
+    /**
307
+     * Prepares the submission's items.
308
+     *
309
+     * @since 1.0.19
310
+     */
311
+    public function process_items() {
312
+
313
+        $processor = new GetPaid_Payment_Form_Submission_Items( $this );
314
+
315
+        foreach ( $processor->items as $item ) {
316
+            $this->add_item( $item );
317
+        }
318
+
319
+        do_action_ref_array( 'getpaid_submissions_process_items', array( &$this ) );
320
+    }
321
+
322
+    /**
323
+     * Adds an item to the submission.
324
+     *
325
+     * @since 1.0.19
326
+     * @param GetPaid_Form_Item $item
327
+     */
328
+    public function add_item( $item ) {
329
+
330
+        // Make sure that it is available for purchase.
331
+        if ( ! $item->can_purchase() ) {
332
+            return;
333
+        }
334
+
335
+        // Each submission can only contain one recurring item.
336
+        if ( $item->is_recurring() ) {
337
+
338
+            if ( $this->has_recurring != 0 ) {
339
+                throw new Exception( __( 'You can only buy one recurring item at a time.', 'invoicing' ) );
340
+            }
341
+
342
+            $this->has_recurring = $item->get_id();
343
+
344
+        }
345
+
346
+        // Update the items and totals.
347
+        $this->items[ $item->get_id() ]         = $item;
348
+        $this->totals['subtotal']['initial']   += $item->get_sub_total();
349
+        $this->totals['subtotal']['recurring'] += $item->get_recurring_sub_total();
350
+
351
+    }
352
+
353
+    /**
354
+     * Removes a specific item.
355
+     * 
356
+     * You should not call this method after the discounts and taxes
357
+     * have been calculated.
358
+     *
359
+     * @since 1.0.19
360
+     */
361
+    public function remove_item( $item_id ) {
362
+
363
+        if ( isset( $this->items[ $item_id ] ) ) {
364
+            $this->totals['subtotal']['initial']   -= $this->items[ $item_id ]->get_sub_total();
365
+            $this->totals['subtotal']['recurring'] -= $this->items[ $item_id ]->get_recurring_sub_total();
366
+
367
+            if ( $this->items[ $item_id ]->is_recurring() ) {
368
+                $this->has_recurring = 0;
369
+            }
370
+
371
+            unset( $this->items[ $item_id ] );
372
+        }
373 373
 		
374
-	}
375
-
376
-	/**
377
-	 * Returns the subtotal.
378
-	 *
379
-	 * @since 1.0.19
380
-	 */
381
-	public function get_subtotal() {
382
-		return $this->totals['subtotal']['initial'];
383
-	}
384
-
385
-	/**
386
-	 * Returns the recurring subtotal.
387
-	 *
388
-	 * @since 1.0.19
389
-	 */
390
-	public function get_recurring_subtotal() {
391
-		return $this->totals['subtotal']['recurring'];
392
-	}
393
-
394
-	/**
395
-	 * Returns all items.
396
-	 *
397
-	 * @since 1.0.19
398
-	 * @return GetPaid_Form_Item[]
399
-	 */
400
-	public function get_items() {
401
-		return $this->items;
402
-	}
403
-
404
-	/*
374
+    }
375
+
376
+    /**
377
+     * Returns the subtotal.
378
+     *
379
+     * @since 1.0.19
380
+     */
381
+    public function get_subtotal() {
382
+        return $this->totals['subtotal']['initial'];
383
+    }
384
+
385
+    /**
386
+     * Returns the recurring subtotal.
387
+     *
388
+     * @since 1.0.19
389
+     */
390
+    public function get_recurring_subtotal() {
391
+        return $this->totals['subtotal']['recurring'];
392
+    }
393
+
394
+    /**
395
+     * Returns all items.
396
+     *
397
+     * @since 1.0.19
398
+     * @return GetPaid_Form_Item[]
399
+     */
400
+    public function get_items() {
401
+        return $this->items;
402
+    }
403
+
404
+    /*
405 405
 	|--------------------------------------------------------------------------
406 406
 	| Taxes
407 407
 	|--------------------------------------------------------------------------
@@ -410,108 +410,108 @@  discard block
 block discarded – undo
410 410
 	| or only one-time.
411 411
     */
412 412
 
413
-	/**
414
-	 * Prepares the submission's taxes.
415
-	 *
416
-	 * @since 1.0.19
417
-	 */
418
-	public function process_taxes() {
419
-
420
-		// Abort if we're not using taxes.
421
-		if ( ! $this->use_taxes() ) {
422
-			return;
423
-		}
424
-
425
-		// If a custom country && state has been passed in, use it to calculate taxes.
426
-		if ( ! empty( $this->data['wpinv_country'] ) ) {
427
-			$this->country = $this->data['wpinv_country'];
428
-		}
429
-
430
-		if ( ! empty( $this->data['wpinv_state'] ) ) {
431
-			$this->country = $this->data['wpinv_state'];
432
-		}
433
-
434
-		$processor = new GetPaid_Payment_Form_Submission_Taxes( $this );
435
-
436
-		foreach ( $processor->taxes as $tax ) {
437
-			$this->add_tax( $tax );
438
-		}
439
-
440
-		do_action_ref_array( 'getpaid_submissions_process_taxes', array( &$this ) );
441
-	}
442
-
443
-	/**
444
-	 * Adds a tax to the submission.
445
-	 *
446
-	 * @param array $tax An array of tax details. name, initial_tax, and recurring_tax are required.
447
-	 * @since 1.0.19
448
-	 */
449
-	public function add_tax( $tax ) {
450
-		$this->taxes[ $tax['name'] ]         = $tax;
451
-		$this->totals['taxes']['initial']   += wpinv_sanitize_amount( $tax['initial_tax'] );
452
-		$this->totals['taxes']['recurring'] += wpinv_sanitize_amount( $tax['recurring_tax'] );
453
-	}
454
-
455
-	/**
456
-	 * Removes a specific tax.
457
-	 *
458
-	 * @since 1.0.19
459
-	 */
460
-	public function remove_tax( $tax_name ) {
461
-
462
-		if ( isset( $this->taxes[ $tax_name ] ) ) {
463
-			$this->totals['taxes']['initial']   -= $this->taxes[ $tax_name ]['initial_tax'];
464
-			$this->totals['taxes']['recurring'] -= $this->taxes[ $tax_name ]['recurring_tax'];
465
-			unset( $this->taxes[ $tax_name ] );
466
-		}
467
-
468
-	}
469
-
470
-	/**
471
-	 * Whether or not we'll use taxes for the submission.
472
-	 *
473
-	 * @since 1.0.19
474
-	 */
475
-	public function use_taxes() {
476
-
477
-		$use_taxes = wpinv_use_taxes();
478
-
479
-		if ( $this->has_invoice() && ! $this->invoice->is_taxable() ) {
480
-			$use_taxes = false;
481
-		}
482
-
483
-		return apply_filters( 'getpaid_submission_use_taxes', $use_taxes, $this );
484
-
485
-	}
486
-
487
-	/**
488
-	 * Returns the tax.
489
-	 *
490
-	 * @since 1.0.19
491
-	 */
492
-	public function get_tax() {
493
-		return $this->totals['taxes']['initial'];
494
-	}
495
-
496
-	/**
497
-	 * Returns the recurring tax.
498
-	 *
499
-	 * @since 1.0.19
500
-	 */
501
-	public function get_recurring_tax() {
502
-		return $this->totals['taxes']['recurring'];
503
-	}
504
-
505
-	/**
506
-	 * Returns all taxes.
507
-	 *
508
-	 * @since 1.0.19
509
-	 */
510
-	public function get_taxes() {
511
-		return $this->taxes;
512
-	}
513
-
514
-	/*
413
+    /**
414
+     * Prepares the submission's taxes.
415
+     *
416
+     * @since 1.0.19
417
+     */
418
+    public function process_taxes() {
419
+
420
+        // Abort if we're not using taxes.
421
+        if ( ! $this->use_taxes() ) {
422
+            return;
423
+        }
424
+
425
+        // If a custom country && state has been passed in, use it to calculate taxes.
426
+        if ( ! empty( $this->data['wpinv_country'] ) ) {
427
+            $this->country = $this->data['wpinv_country'];
428
+        }
429
+
430
+        if ( ! empty( $this->data['wpinv_state'] ) ) {
431
+            $this->country = $this->data['wpinv_state'];
432
+        }
433
+
434
+        $processor = new GetPaid_Payment_Form_Submission_Taxes( $this );
435
+
436
+        foreach ( $processor->taxes as $tax ) {
437
+            $this->add_tax( $tax );
438
+        }
439
+
440
+        do_action_ref_array( 'getpaid_submissions_process_taxes', array( &$this ) );
441
+    }
442
+
443
+    /**
444
+     * Adds a tax to the submission.
445
+     *
446
+     * @param array $tax An array of tax details. name, initial_tax, and recurring_tax are required.
447
+     * @since 1.0.19
448
+     */
449
+    public function add_tax( $tax ) {
450
+        $this->taxes[ $tax['name'] ]         = $tax;
451
+        $this->totals['taxes']['initial']   += wpinv_sanitize_amount( $tax['initial_tax'] );
452
+        $this->totals['taxes']['recurring'] += wpinv_sanitize_amount( $tax['recurring_tax'] );
453
+    }
454
+
455
+    /**
456
+     * Removes a specific tax.
457
+     *
458
+     * @since 1.0.19
459
+     */
460
+    public function remove_tax( $tax_name ) {
461
+
462
+        if ( isset( $this->taxes[ $tax_name ] ) ) {
463
+            $this->totals['taxes']['initial']   -= $this->taxes[ $tax_name ]['initial_tax'];
464
+            $this->totals['taxes']['recurring'] -= $this->taxes[ $tax_name ]['recurring_tax'];
465
+            unset( $this->taxes[ $tax_name ] );
466
+        }
467
+
468
+    }
469
+
470
+    /**
471
+     * Whether or not we'll use taxes for the submission.
472
+     *
473
+     * @since 1.0.19
474
+     */
475
+    public function use_taxes() {
476
+
477
+        $use_taxes = wpinv_use_taxes();
478
+
479
+        if ( $this->has_invoice() && ! $this->invoice->is_taxable() ) {
480
+            $use_taxes = false;
481
+        }
482
+
483
+        return apply_filters( 'getpaid_submission_use_taxes', $use_taxes, $this );
484
+
485
+    }
486
+
487
+    /**
488
+     * Returns the tax.
489
+     *
490
+     * @since 1.0.19
491
+     */
492
+    public function get_tax() {
493
+        return $this->totals['taxes']['initial'];
494
+    }
495
+
496
+    /**
497
+     * Returns the recurring tax.
498
+     *
499
+     * @since 1.0.19
500
+     */
501
+    public function get_recurring_tax() {
502
+        return $this->totals['taxes']['recurring'];
503
+    }
504
+
505
+    /**
506
+     * Returns all taxes.
507
+     *
508
+     * @since 1.0.19
509
+     */
510
+    public function get_taxes() {
511
+        return $this->taxes;
512
+    }
513
+
514
+    /*
515 515
 	|--------------------------------------------------------------------------
516 516
 	| Discounts
517 517
 	|--------------------------------------------------------------------------
@@ -520,99 +520,99 @@  discard block
 block discarded – undo
520 520
 	| or only one-time. They also do not have to come from a discount code.
521 521
     */
522 522
 
523
-	/**
524
-	 * Prepares the submission's discount.
525
-	 *
526
-	 * @since 1.0.19
527
-	 */
528
-	public function process_discount() {
529
-
530
-		$initial_total    = $this->get_subtotal() + $this->get_fee() + $this->get_tax();
531
-		$recurring_total  = $this->get_recurring_subtotal() + $this->get_recurring_fee() + $this->get_recurring_tax();
532
-		$processor        = new GetPaid_Payment_Form_Submission_Discount( $this, $initial_total, $recurring_total );
533
-
534
-		foreach ( $processor->discounts as $discount ) {
535
-			$this->add_discount( $discount );
536
-		}
537
-
538
-		do_action_ref_array( 'getpaid_submissions_process_discounts', array( &$this ) );
539
-	}
540
-
541
-	/**
542
-	 * Adds a discount to the submission.
543
-	 *
544
-	 * @param array $discount An array of discount details. name, initial_discount, and recurring_discount are required. Include discount_code if the discount is from a discount code.
545
-	 * @since 1.0.19
546
-	 */
547
-	public function add_discount( $discount ) {
548
-		$this->discounts[ $discount['name'] ]   = $discount;
549
-		$this->totals['discount']['initial']   += wpinv_sanitize_amount( $discount['initial_discount'] );
550
-		$this->totals['discount']['recurring'] += wpinv_sanitize_amount( $discount['recurring_discount'] );
551
-	}
552
-
553
-	/**
554
-	 * Removes a discount from the submission.
555
-	 *
556
-	 * @since 1.0.19
557
-	 */
558
-	public function remove_discount( $name ) {
559
-
560
-		if ( isset( $this->discounts[ $name ] ) ) {
561
-			$this->totals['discount']['initial']   -= $this->discounts[ $name ]['initial_discount'];
562
-			$this->totals['discount']['recurring'] -= $this->discounts[ $name ]['recurring_discount'];
563
-			unset( $this->discounts[ $name ] );
564
-		}
565
-
566
-	}
567
-
568
-	/**
569
-	 * Checks whether there is a discount code associated with this submission.
570
-	 *
571
-	 * @since 1.0.19
572
-	 * @return bool
573
-	 */
574
-	public function has_discount_code() {
575
-		return ! empty( $this->discounts['discount_code'] );
576
-	}
577
-
578
-	/**
579
-	 * Returns the discount code.
580
-	 *
581
-	 * @since 1.0.19
582
-	 * @return string
583
-	 */
584
-	public function get_discount_code() {
585
-		return $this->has_discount_code() ? $this->discounts['discount_code']['discount_code'] : '';
586
-	}
587
-
588
-	/**
589
-	 * Returns the discount.
590
-	 *
591
-	 * @since 1.0.19
592
-	 */
593
-	public function get_discount() {
594
-		return $this->totals['discount']['initial'];
595
-	}
596
-
597
-	/**
598
-	 * Returns the recurring discount.
599
-	 *
600
-	 * @since 1.0.19
601
-	 */
602
-	public function get_recurring_discount() {
603
-		return $this->totals['discount']['recurring'];
604
-	}
605
-
606
-	/**
607
-	 * Returns all discounts.
608
-	 *
609
-	 * @since 1.0.19
610
-	 */
611
-	public function get_discounts() {
612
-		return $this->discounts;
613
-	}
614
-
615
-	/*
523
+    /**
524
+     * Prepares the submission's discount.
525
+     *
526
+     * @since 1.0.19
527
+     */
528
+    public function process_discount() {
529
+
530
+        $initial_total    = $this->get_subtotal() + $this->get_fee() + $this->get_tax();
531
+        $recurring_total  = $this->get_recurring_subtotal() + $this->get_recurring_fee() + $this->get_recurring_tax();
532
+        $processor        = new GetPaid_Payment_Form_Submission_Discount( $this, $initial_total, $recurring_total );
533
+
534
+        foreach ( $processor->discounts as $discount ) {
535
+            $this->add_discount( $discount );
536
+        }
537
+
538
+        do_action_ref_array( 'getpaid_submissions_process_discounts', array( &$this ) );
539
+    }
540
+
541
+    /**
542
+     * Adds a discount to the submission.
543
+     *
544
+     * @param array $discount An array of discount details. name, initial_discount, and recurring_discount are required. Include discount_code if the discount is from a discount code.
545
+     * @since 1.0.19
546
+     */
547
+    public function add_discount( $discount ) {
548
+        $this->discounts[ $discount['name'] ]   = $discount;
549
+        $this->totals['discount']['initial']   += wpinv_sanitize_amount( $discount['initial_discount'] );
550
+        $this->totals['discount']['recurring'] += wpinv_sanitize_amount( $discount['recurring_discount'] );
551
+    }
552
+
553
+    /**
554
+     * Removes a discount from the submission.
555
+     *
556
+     * @since 1.0.19
557
+     */
558
+    public function remove_discount( $name ) {
559
+
560
+        if ( isset( $this->discounts[ $name ] ) ) {
561
+            $this->totals['discount']['initial']   -= $this->discounts[ $name ]['initial_discount'];
562
+            $this->totals['discount']['recurring'] -= $this->discounts[ $name ]['recurring_discount'];
563
+            unset( $this->discounts[ $name ] );
564
+        }
565
+
566
+    }
567
+
568
+    /**
569
+     * Checks whether there is a discount code associated with this submission.
570
+     *
571
+     * @since 1.0.19
572
+     * @return bool
573
+     */
574
+    public function has_discount_code() {
575
+        return ! empty( $this->discounts['discount_code'] );
576
+    }
577
+
578
+    /**
579
+     * Returns the discount code.
580
+     *
581
+     * @since 1.0.19
582
+     * @return string
583
+     */
584
+    public function get_discount_code() {
585
+        return $this->has_discount_code() ? $this->discounts['discount_code']['discount_code'] : '';
586
+    }
587
+
588
+    /**
589
+     * Returns the discount.
590
+     *
591
+     * @since 1.0.19
592
+     */
593
+    public function get_discount() {
594
+        return $this->totals['discount']['initial'];
595
+    }
596
+
597
+    /**
598
+     * Returns the recurring discount.
599
+     *
600
+     * @since 1.0.19
601
+     */
602
+    public function get_recurring_discount() {
603
+        return $this->totals['discount']['recurring'];
604
+    }
605
+
606
+    /**
607
+     * Returns all discounts.
608
+     *
609
+     * @since 1.0.19
610
+     */
611
+    public function get_discounts() {
612
+        return $this->discounts;
613
+    }
614
+
615
+    /*
616 616
 	|--------------------------------------------------------------------------
617 617
 	| Fees
618 618
 	|--------------------------------------------------------------------------
@@ -622,89 +622,89 @@  discard block
 block discarded – undo
622 622
 	| fees.
623 623
     */
624 624
 
625
-	/**
626
-	 * Prepares the submission's fees.
627
-	 *
628
-	 * @since 1.0.19
629
-	 */
630
-	public function process_fees() {
631
-
632
-		$fees_processor = new GetPaid_Payment_Form_Submission_Fees( $this );
633
-
634
-		foreach ( $fees_processor->fees as $fee ) {
635
-			$this->add_fee( $fee );
636
-		}
637
-
638
-		do_action_ref_array( 'getpaid_submissions_process_fees', array( &$this ) );
639
-	}
640
-
641
-	/**
642
-	 * Adds a fee to the submission.
643
-	 *
644
-	 * @param array $fee An array of fee details. name, initial_fee, and recurring_fee are required.
645
-	 * @since 1.0.19
646
-	 */
647
-	public function add_fee( $fee ) {
648
-
649
-		$this->fees[ $fee['name'] ]         = $fee;
650
-		$this->totals['fees']['initial']   += wpinv_sanitize_amount( $fee['initial_fee'] );
651
-		$this->totals['fees']['recurring'] += wpinv_sanitize_amount( $fee['recurring_fee'] );
652
-
653
-	}
654
-
655
-	/**
656
-	 * Removes a fee from the submission.
657
-	 *
658
-	 * @since 1.0.19
659
-	 */
660
-	public function remove_fee( $name ) {
661
-
662
-		if ( isset( $this->fees[ $name ] ) ) {
663
-			$this->totals['fees']['initial']   -= $this->fees[ $name ]['initial_fee'];
664
-			$this->totals['fees']['recurring'] -= $this->fees[ $name ]['recurring_fee'];
665
-			unset( $this->fees[ $name ] );
666
-		}
667
-
668
-	}
669
-
670
-	/**
671
-	 * Returns the fees.
672
-	 *
673
-	 * @since 1.0.19
674
-	 */
675
-	public function get_fee() {
676
-		return $this->totals['fees']['initial'];
677
-	}
678
-
679
-	/**
680
-	 * Returns the recurring fees.
681
-	 *
682
-	 * @since 1.0.19
683
-	 */
684
-	public function get_recurring_fee() {
685
-		return $this->totals['fees']['recurring'];
686
-	}
687
-
688
-	/**
689
-	 * Returns all fees.
690
-	 *
691
-	 * @since 1.0.19
692
-	 */
693
-	public function get_fees() {
694
-		return $this->fees;
695
-	}
696
-
697
-	/**
698
-	 * Checks if there are any fees for the form.
699
-	 *
700
-	 * @return bool
701
-	 * @since 1.0.19
702
-	 */
703
-	public function has_fees() {
704
-		return count( $this->fees ) !== 0;
705
-	}
706
-
707
-	/*
625
+    /**
626
+     * Prepares the submission's fees.
627
+     *
628
+     * @since 1.0.19
629
+     */
630
+    public function process_fees() {
631
+
632
+        $fees_processor = new GetPaid_Payment_Form_Submission_Fees( $this );
633
+
634
+        foreach ( $fees_processor->fees as $fee ) {
635
+            $this->add_fee( $fee );
636
+        }
637
+
638
+        do_action_ref_array( 'getpaid_submissions_process_fees', array( &$this ) );
639
+    }
640
+
641
+    /**
642
+     * Adds a fee to the submission.
643
+     *
644
+     * @param array $fee An array of fee details. name, initial_fee, and recurring_fee are required.
645
+     * @since 1.0.19
646
+     */
647
+    public function add_fee( $fee ) {
648
+
649
+        $this->fees[ $fee['name'] ]         = $fee;
650
+        $this->totals['fees']['initial']   += wpinv_sanitize_amount( $fee['initial_fee'] );
651
+        $this->totals['fees']['recurring'] += wpinv_sanitize_amount( $fee['recurring_fee'] );
652
+
653
+    }
654
+
655
+    /**
656
+     * Removes a fee from the submission.
657
+     *
658
+     * @since 1.0.19
659
+     */
660
+    public function remove_fee( $name ) {
661
+
662
+        if ( isset( $this->fees[ $name ] ) ) {
663
+            $this->totals['fees']['initial']   -= $this->fees[ $name ]['initial_fee'];
664
+            $this->totals['fees']['recurring'] -= $this->fees[ $name ]['recurring_fee'];
665
+            unset( $this->fees[ $name ] );
666
+        }
667
+
668
+    }
669
+
670
+    /**
671
+     * Returns the fees.
672
+     *
673
+     * @since 1.0.19
674
+     */
675
+    public function get_fee() {
676
+        return $this->totals['fees']['initial'];
677
+    }
678
+
679
+    /**
680
+     * Returns the recurring fees.
681
+     *
682
+     * @since 1.0.19
683
+     */
684
+    public function get_recurring_fee() {
685
+        return $this->totals['fees']['recurring'];
686
+    }
687
+
688
+    /**
689
+     * Returns all fees.
690
+     *
691
+     * @since 1.0.19
692
+     */
693
+    public function get_fees() {
694
+        return $this->fees;
695
+    }
696
+
697
+    /**
698
+     * Checks if there are any fees for the form.
699
+     *
700
+     * @return bool
701
+     * @since 1.0.19
702
+     */
703
+    public function has_fees() {
704
+        return count( $this->fees ) !== 0;
705
+    }
706
+
707
+    /*
708 708
 	|--------------------------------------------------------------------------
709 709
 	| MISC
710 710
 	|--------------------------------------------------------------------------
@@ -712,109 +712,109 @@  discard block
 block discarded – undo
712 712
 	| Extra submission functions.
713 713
     */
714 714
 
715
-	/**
716
-	 * Returns the total amount to collect for this submission.
717
-	 *
718
-	 * @since 1.0.19
719
-	 */
720
-	public function get_total() {
721
-		$total = $this->get_subtotal() + $this->get_fee() + $this->get_tax() - $this->get_discount();
722
-		return max( $total, 0 );
723
-	}
724
-
725
-	/**
726
-	 * Returns the recurring total amount to collect for this submission.
727
-	 *
728
-	 * @since 1.0.19
729
-	 */
730
-	public function get_recurring_total() {
731
-		$total = $this->get_recurring_subtotal() + $this->get_recurring_fee() + $this->get_recurring_tax() - $this->get_recurring_discount();
732
-		return max( $total, 0 );
733
-	}
734
-
735
-	/**
736
-	 * Whether payment details should be collected for this submission.
737
-	 *
738
-	 * @since 1.0.19
739
-	 */
740
-	public function should_collect_payment_details() {
741
-		$initial   = $this->get_total();
742
-		$recurring = $this->get_recurring_total();
743
-
744
-		if ( $this->has_recurring == 0 ) {
745
-			$recurring = 0;
746
-		}
747
-
748
-		$collect = $initial > 0 || $recurring > 0;
749
-		return apply_filters( 'getpaid_submission_should_collect_payment_details', $collect, $this  );
750
-	}
751
-
752
-	/**
753
-	 * Returns the billing email of the user.
754
-	 *
755
-	 * @since 1.0.19
756
-	 */
757
-	public function get_billing_email() {
758
-		return apply_filters( 'getpaid_get_submission_billing_email', $this->get_field( 'billing_email' ), $this  );
759
-	}
760
-
761
-	/**
762
-	 * Checks if the submitter has a billing email.
763
-	 *
764
-	 * @since 1.0.19
765
-	 */
766
-	public function has_billing_email() {
767
-		$billing_email = $this->get_billing_email();
768
-		return ! empty( $billing_email ) && is_email( $billing_email );
769
-	}
770
-
771
-	/**
772
-	 * Returns the appropriate currency for the submission.
773
-	 *
774
-	 * @since 1.0.19
775
-	 * @return string
776
-	 */
777
-	public function get_currency() {
778
-		return $this->has_invoice() ? $this->invoice->get_currency() : wpinv_get_currency();
779
-    }
780
-
781
-    /**
782
-	 * Returns the raw submission data.
783
-	 *
784
-	 * @since 1.0.19
785
-	 * @return array
786
-	 */
787
-	public function get_data() {
788
-		return $this->data;
789
-	}
790
-
791
-	/**
792
-	 * Returns a field from the submission data
793
-	 *
794
-	 * @param string $field
795
-	 * @since 1.0.19
796
-	 * @return mixed
797
-	 */
798
-	public function get_field( $field ) {
799
-		return isset( $this->data[ $field ] ) ? $this->data[ $field ] : '';
800
-	}
801
-
802
-	/**
803
-	 * Checks if a required field is set.
804
-	 *
805
-	 * @since 1.0.19
806
-	 */
807
-	public function is_required_field_set( $field ) {
808
-		return empty( $field['required'] ) || ! empty( $this->data[ $field['id'] ] );
809
-	}
810
-
811
-	/**
812
-	 * Formats an amount
813
-	 *
814
-	 * @since 1.0.19
815
-	 */
816
-	public function format_amount( $amount ) {
817
-		return wpinv_price( $amount, $this->get_currency() );
818
-	}
715
+    /**
716
+     * Returns the total amount to collect for this submission.
717
+     *
718
+     * @since 1.0.19
719
+     */
720
+    public function get_total() {
721
+        $total = $this->get_subtotal() + $this->get_fee() + $this->get_tax() - $this->get_discount();
722
+        return max( $total, 0 );
723
+    }
724
+
725
+    /**
726
+     * Returns the recurring total amount to collect for this submission.
727
+     *
728
+     * @since 1.0.19
729
+     */
730
+    public function get_recurring_total() {
731
+        $total = $this->get_recurring_subtotal() + $this->get_recurring_fee() + $this->get_recurring_tax() - $this->get_recurring_discount();
732
+        return max( $total, 0 );
733
+    }
734
+
735
+    /**
736
+     * Whether payment details should be collected for this submission.
737
+     *
738
+     * @since 1.0.19
739
+     */
740
+    public function should_collect_payment_details() {
741
+        $initial   = $this->get_total();
742
+        $recurring = $this->get_recurring_total();
743
+
744
+        if ( $this->has_recurring == 0 ) {
745
+            $recurring = 0;
746
+        }
747
+
748
+        $collect = $initial > 0 || $recurring > 0;
749
+        return apply_filters( 'getpaid_submission_should_collect_payment_details', $collect, $this  );
750
+    }
751
+
752
+    /**
753
+     * Returns the billing email of the user.
754
+     *
755
+     * @since 1.0.19
756
+     */
757
+    public function get_billing_email() {
758
+        return apply_filters( 'getpaid_get_submission_billing_email', $this->get_field( 'billing_email' ), $this  );
759
+    }
760
+
761
+    /**
762
+     * Checks if the submitter has a billing email.
763
+     *
764
+     * @since 1.0.19
765
+     */
766
+    public function has_billing_email() {
767
+        $billing_email = $this->get_billing_email();
768
+        return ! empty( $billing_email ) && is_email( $billing_email );
769
+    }
770
+
771
+    /**
772
+     * Returns the appropriate currency for the submission.
773
+     *
774
+     * @since 1.0.19
775
+     * @return string
776
+     */
777
+    public function get_currency() {
778
+        return $this->has_invoice() ? $this->invoice->get_currency() : wpinv_get_currency();
779
+    }
780
+
781
+    /**
782
+     * Returns the raw submission data.
783
+     *
784
+     * @since 1.0.19
785
+     * @return array
786
+     */
787
+    public function get_data() {
788
+        return $this->data;
789
+    }
790
+
791
+    /**
792
+     * Returns a field from the submission data
793
+     *
794
+     * @param string $field
795
+     * @since 1.0.19
796
+     * @return mixed
797
+     */
798
+    public function get_field( $field ) {
799
+        return isset( $this->data[ $field ] ) ? $this->data[ $field ] : '';
800
+    }
801
+
802
+    /**
803
+     * Checks if a required field is set.
804
+     *
805
+     * @since 1.0.19
806
+     */
807
+    public function is_required_field_set( $field ) {
808
+        return empty( $field['required'] ) || ! empty( $this->data[ $field['id'] ] );
809
+    }
810
+
811
+    /**
812
+     * Formats an amount
813
+     *
814
+     * @since 1.0.19
815
+     */
816
+    public function format_amount( $amount ) {
817
+        return wpinv_price( $amount, $this->get_currency() );
818
+    }
819 819
 
820 820
 }
Please login to merge, or discard this patch.
Spacing   +106 added lines, -106 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) {
2
+if (!defined('ABSPATH')) {
3 3
 	exit;
4 4
 }
5 5
 
@@ -134,8 +134,8 @@  discard block
 block discarded – undo
134 134
 		$this->state   = wpinv_get_default_state();
135 135
 
136 136
 		// Do we have an actual submission?
137
-		if ( isset( $_POST['getpaid_payment_form_submission'] ) ) {
138
-			$this->load_data( $_POST );
137
+		if (isset($_POST['getpaid_payment_form_submission'])) {
138
+			$this->load_data($_POST);
139 139
 		}
140 140
 
141 141
 	}
@@ -145,19 +145,19 @@  discard block
 block discarded – undo
145 145
 	 *
146 146
 	 * @param array $data
147 147
 	 */
148
-	public function load_data( $data ) {
148
+	public function load_data($data) {
149 149
 
150 150
 		// Remove slashes from the submitted data...
151
-		$data       = wp_unslash( $data );
151
+		$data       = wp_unslash($data);
152 152
 
153 153
 		// Allow plugins to filter the data.
154
-		$data       = apply_filters( 'getpaid_submission_data', $data, $this );
154
+		$data       = apply_filters('getpaid_submission_data', $data, $this);
155 155
 
156 156
 		// Cache it...
157 157
 		$this->data = $data;
158 158
 
159 159
 		// Then generate a unique id from the data.
160
-		$this->id   = md5( wp_json_encode( $data ) );
160
+		$this->id   = md5(wp_json_encode($data));
161 161
 
162 162
 		// Finally, process the submission.
163 163
 		try {
@@ -167,26 +167,26 @@  discard block
 block discarded – undo
167 167
 			$processors = apply_filters(
168 168
 				'getpaid_payment_form_submission_processors',
169 169
 				array(
170
-					array( $this, 'process_payment_form' ),
171
-					array( $this, 'process_invoice' ),
172
-					array( $this, 'process_fees' ),
173
-					array( $this, 'process_items' ),
174
-					array( $this, 'process_taxes' ),
175
-					array( $this, 'process_discount' ),
170
+					array($this, 'process_payment_form'),
171
+					array($this, 'process_invoice'),
172
+					array($this, 'process_fees'),
173
+					array($this, 'process_items'),
174
+					array($this, 'process_taxes'),
175
+					array($this, 'process_discount'),
176 176
 				),
177 177
 				$this		
178 178
 			);
179 179
 
180
-			foreach ( $processors as $processor ) {
181
-				call_user_func_array( $processor, array( &$this ) );
180
+			foreach ($processors as $processor) {
181
+				call_user_func_array($processor, array(&$this));
182 182
 			}
183 183
 
184
-		} catch ( Exception $e ) {
184
+		} catch (Exception $e) {
185 185
 			$this->last_error = $e->getMessage();
186 186
 		}
187 187
 
188 188
 		// Fired when we are done processing a submission.
189
-		do_action_ref_array( 'getpaid_process_submission', array( &$this ) );
189
+		do_action_ref_array('getpaid_process_submission', array(&$this));
190 190
 
191 191
 	}
192 192
 
@@ -207,18 +207,18 @@  discard block
 block discarded – undo
207 207
 	public function process_payment_form() {
208 208
 
209 209
 		// Every submission needs an active payment form.
210
-		if ( empty( $this->data['form_id'] ) ) {
211
-			throw new Exception( __( 'Missing payment form', 'invoicing' ) );
210
+		if (empty($this->data['form_id'])) {
211
+			throw new Exception(__('Missing payment form', 'invoicing'));
212 212
 		}
213 213
 
214 214
 		// Fetch the payment form.
215
-		$this->payment_form = new GetPaid_Payment_Form( $this->data['form_id'] );
215
+		$this->payment_form = new GetPaid_Payment_Form($this->data['form_id']);
216 216
 
217
-		if ( ! $this->payment_form->is_active() ) {
218
-			throw new Exception( __( 'Payment form not active', 'invoicing' ) );
217
+		if (!$this->payment_form->is_active()) {
218
+			throw new Exception(__('Payment form not active', 'invoicing'));
219 219
 		}
220 220
 
221
-		do_action_ref_array( 'getpaid_submissions_process_payment_form', array( &$this ) );
221
+		do_action_ref_array('getpaid_submissions_process_payment_form', array(&$this));
222 222
 	}
223 223
 
224 224
     /**
@@ -248,30 +248,30 @@  discard block
 block discarded – undo
248 248
 	public function process_invoice() {
249 249
 
250 250
 		// Abort if there is no invoice.
251
-		if ( empty( $this->data['invoice_id'] ) ) {
251
+		if (empty($this->data['invoice_id'])) {
252 252
 			return;
253 253
 		}
254 254
 
255 255
 		// If the submission is for an existing invoice, ensure that it exists
256 256
 		// and that it is not paid for.
257
-		$invoice = wpinv_get_invoice( $this->data['invoice_id'] );
257
+		$invoice = wpinv_get_invoice($this->data['invoice_id']);
258 258
 
259
-        if ( empty( $invoice ) ) {
260
-			throw new Exception( __( 'Invalid invoice', 'invoicing' ) );
259
+        if (empty($invoice)) {
260
+			throw new Exception(__('Invalid invoice', 'invoicing'));
261 261
 		}
262 262
 
263
-		if ( $invoice->is_paid() ) {
264
-			throw new Exception( __( 'This invoice is already paid for.', 'invoicing' ) );
263
+		if ($invoice->is_paid()) {
264
+			throw new Exception(__('This invoice is already paid for.', 'invoicing'));
265 265
 		}
266 266
 
267
-		$this->payment_form->set_items( $invoice->get_items() );
267
+		$this->payment_form->set_items($invoice->get_items());
268 268
 		$this->payment_form->invoice = $invoice;
269 269
 
270 270
 		$this->country = $invoice->get_country();
271 271
 		$this->state   = $invoice->get_state();
272 272
 		$this->invoice = $invoice;
273 273
 
274
-		do_action_ref_array( 'getpaid_submissions_process_invoice', array( &$this ) );
274
+		do_action_ref_array('getpaid_submissions_process_invoice', array(&$this));
275 275
 	}
276 276
 
277 277
 	/**
@@ -291,7 +291,7 @@  discard block
 block discarded – undo
291 291
 	 * @return bool
292 292
 	 */
293 293
 	public function has_invoice() {
294
-		return ! empty( $this->invoice );
294
+		return !empty($this->invoice);
295 295
 	}
296 296
 
297 297
 	/*
@@ -310,13 +310,13 @@  discard block
 block discarded – undo
310 310
 	 */
311 311
 	public function process_items() {
312 312
 
313
-		$processor = new GetPaid_Payment_Form_Submission_Items( $this );
313
+		$processor = new GetPaid_Payment_Form_Submission_Items($this);
314 314
 
315
-		foreach ( $processor->items as $item ) {
316
-			$this->add_item( $item );
315
+		foreach ($processor->items as $item) {
316
+			$this->add_item($item);
317 317
 		}
318 318
 
319
-		do_action_ref_array( 'getpaid_submissions_process_items', array( &$this ) );
319
+		do_action_ref_array('getpaid_submissions_process_items', array(&$this));
320 320
 	}
321 321
 
322 322
 	/**
@@ -325,18 +325,18 @@  discard block
 block discarded – undo
325 325
 	 * @since 1.0.19
326 326
 	 * @param GetPaid_Form_Item $item
327 327
 	 */
328
-	public function add_item( $item ) {
328
+	public function add_item($item) {
329 329
 
330 330
 		// Make sure that it is available for purchase.
331
-		if ( ! $item->can_purchase() ) {
331
+		if (!$item->can_purchase()) {
332 332
 			return;
333 333
 		}
334 334
 
335 335
 		// Each submission can only contain one recurring item.
336
-		if ( $item->is_recurring() ) {
336
+		if ($item->is_recurring()) {
337 337
 
338
-			if ( $this->has_recurring != 0 ) {
339
-				throw new Exception( __( 'You can only buy one recurring item at a time.', 'invoicing' ) );
338
+			if ($this->has_recurring != 0) {
339
+				throw new Exception(__('You can only buy one recurring item at a time.', 'invoicing'));
340 340
 			}
341 341
 
342 342
 			$this->has_recurring = $item->get_id();
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
 		}
345 345
 
346 346
 		// Update the items and totals.
347
-		$this->items[ $item->get_id() ]         = $item;
347
+		$this->items[$item->get_id()]         = $item;
348 348
 		$this->totals['subtotal']['initial']   += $item->get_sub_total();
349 349
 		$this->totals['subtotal']['recurring'] += $item->get_recurring_sub_total();
350 350
 
@@ -358,17 +358,17 @@  discard block
 block discarded – undo
358 358
 	 *
359 359
 	 * @since 1.0.19
360 360
 	 */
361
-	public function remove_item( $item_id ) {
361
+	public function remove_item($item_id) {
362 362
 
363
-		if ( isset( $this->items[ $item_id ] ) ) {
364
-			$this->totals['subtotal']['initial']   -= $this->items[ $item_id ]->get_sub_total();
365
-			$this->totals['subtotal']['recurring'] -= $this->items[ $item_id ]->get_recurring_sub_total();
363
+		if (isset($this->items[$item_id])) {
364
+			$this->totals['subtotal']['initial']   -= $this->items[$item_id]->get_sub_total();
365
+			$this->totals['subtotal']['recurring'] -= $this->items[$item_id]->get_recurring_sub_total();
366 366
 
367
-			if ( $this->items[ $item_id ]->is_recurring() ) {
367
+			if ($this->items[$item_id]->is_recurring()) {
368 368
 				$this->has_recurring = 0;
369 369
 			}
370 370
 
371
-			unset( $this->items[ $item_id ] );
371
+			unset($this->items[$item_id]);
372 372
 		}
373 373
 		
374 374
 	}
@@ -418,26 +418,26 @@  discard block
 block discarded – undo
418 418
 	public function process_taxes() {
419 419
 
420 420
 		// Abort if we're not using taxes.
421
-		if ( ! $this->use_taxes() ) {
421
+		if (!$this->use_taxes()) {
422 422
 			return;
423 423
 		}
424 424
 
425 425
 		// If a custom country && state has been passed in, use it to calculate taxes.
426
-		if ( ! empty( $this->data['wpinv_country'] ) ) {
426
+		if (!empty($this->data['wpinv_country'])) {
427 427
 			$this->country = $this->data['wpinv_country'];
428 428
 		}
429 429
 
430
-		if ( ! empty( $this->data['wpinv_state'] ) ) {
430
+		if (!empty($this->data['wpinv_state'])) {
431 431
 			$this->country = $this->data['wpinv_state'];
432 432
 		}
433 433
 
434
-		$processor = new GetPaid_Payment_Form_Submission_Taxes( $this );
434
+		$processor = new GetPaid_Payment_Form_Submission_Taxes($this);
435 435
 
436
-		foreach ( $processor->taxes as $tax ) {
437
-			$this->add_tax( $tax );
436
+		foreach ($processor->taxes as $tax) {
437
+			$this->add_tax($tax);
438 438
 		}
439 439
 
440
-		do_action_ref_array( 'getpaid_submissions_process_taxes', array( &$this ) );
440
+		do_action_ref_array('getpaid_submissions_process_taxes', array(&$this));
441 441
 	}
442 442
 
443 443
 	/**
@@ -446,10 +446,10 @@  discard block
 block discarded – undo
446 446
 	 * @param array $tax An array of tax details. name, initial_tax, and recurring_tax are required.
447 447
 	 * @since 1.0.19
448 448
 	 */
449
-	public function add_tax( $tax ) {
450
-		$this->taxes[ $tax['name'] ]         = $tax;
451
-		$this->totals['taxes']['initial']   += wpinv_sanitize_amount( $tax['initial_tax'] );
452
-		$this->totals['taxes']['recurring'] += wpinv_sanitize_amount( $tax['recurring_tax'] );
449
+	public function add_tax($tax) {
450
+		$this->taxes[$tax['name']]         = $tax;
451
+		$this->totals['taxes']['initial']   += wpinv_sanitize_amount($tax['initial_tax']);
452
+		$this->totals['taxes']['recurring'] += wpinv_sanitize_amount($tax['recurring_tax']);
453 453
 	}
454 454
 
455 455
 	/**
@@ -457,12 +457,12 @@  discard block
 block discarded – undo
457 457
 	 *
458 458
 	 * @since 1.0.19
459 459
 	 */
460
-	public function remove_tax( $tax_name ) {
460
+	public function remove_tax($tax_name) {
461 461
 
462
-		if ( isset( $this->taxes[ $tax_name ] ) ) {
463
-			$this->totals['taxes']['initial']   -= $this->taxes[ $tax_name ]['initial_tax'];
464
-			$this->totals['taxes']['recurring'] -= $this->taxes[ $tax_name ]['recurring_tax'];
465
-			unset( $this->taxes[ $tax_name ] );
462
+		if (isset($this->taxes[$tax_name])) {
463
+			$this->totals['taxes']['initial']   -= $this->taxes[$tax_name]['initial_tax'];
464
+			$this->totals['taxes']['recurring'] -= $this->taxes[$tax_name]['recurring_tax'];
465
+			unset($this->taxes[$tax_name]);
466 466
 		}
467 467
 
468 468
 	}
@@ -476,11 +476,11 @@  discard block
 block discarded – undo
476 476
 
477 477
 		$use_taxes = wpinv_use_taxes();
478 478
 
479
-		if ( $this->has_invoice() && ! $this->invoice->is_taxable() ) {
479
+		if ($this->has_invoice() && !$this->invoice->is_taxable()) {
480 480
 			$use_taxes = false;
481 481
 		}
482 482
 
483
-		return apply_filters( 'getpaid_submission_use_taxes', $use_taxes, $this );
483
+		return apply_filters('getpaid_submission_use_taxes', $use_taxes, $this);
484 484
 
485 485
 	}
486 486
 
@@ -529,13 +529,13 @@  discard block
 block discarded – undo
529 529
 
530 530
 		$initial_total    = $this->get_subtotal() + $this->get_fee() + $this->get_tax();
531 531
 		$recurring_total  = $this->get_recurring_subtotal() + $this->get_recurring_fee() + $this->get_recurring_tax();
532
-		$processor        = new GetPaid_Payment_Form_Submission_Discount( $this, $initial_total, $recurring_total );
532
+		$processor        = new GetPaid_Payment_Form_Submission_Discount($this, $initial_total, $recurring_total);
533 533
 
534
-		foreach ( $processor->discounts as $discount ) {
535
-			$this->add_discount( $discount );
534
+		foreach ($processor->discounts as $discount) {
535
+			$this->add_discount($discount);
536 536
 		}
537 537
 
538
-		do_action_ref_array( 'getpaid_submissions_process_discounts', array( &$this ) );
538
+		do_action_ref_array('getpaid_submissions_process_discounts', array(&$this));
539 539
 	}
540 540
 
541 541
 	/**
@@ -544,10 +544,10 @@  discard block
 block discarded – undo
544 544
 	 * @param array $discount An array of discount details. name, initial_discount, and recurring_discount are required. Include discount_code if the discount is from a discount code.
545 545
 	 * @since 1.0.19
546 546
 	 */
547
-	public function add_discount( $discount ) {
548
-		$this->discounts[ $discount['name'] ]   = $discount;
549
-		$this->totals['discount']['initial']   += wpinv_sanitize_amount( $discount['initial_discount'] );
550
-		$this->totals['discount']['recurring'] += wpinv_sanitize_amount( $discount['recurring_discount'] );
547
+	public function add_discount($discount) {
548
+		$this->discounts[$discount['name']]   = $discount;
549
+		$this->totals['discount']['initial']   += wpinv_sanitize_amount($discount['initial_discount']);
550
+		$this->totals['discount']['recurring'] += wpinv_sanitize_amount($discount['recurring_discount']);
551 551
 	}
552 552
 
553 553
 	/**
@@ -555,12 +555,12 @@  discard block
 block discarded – undo
555 555
 	 *
556 556
 	 * @since 1.0.19
557 557
 	 */
558
-	public function remove_discount( $name ) {
558
+	public function remove_discount($name) {
559 559
 
560
-		if ( isset( $this->discounts[ $name ] ) ) {
561
-			$this->totals['discount']['initial']   -= $this->discounts[ $name ]['initial_discount'];
562
-			$this->totals['discount']['recurring'] -= $this->discounts[ $name ]['recurring_discount'];
563
-			unset( $this->discounts[ $name ] );
560
+		if (isset($this->discounts[$name])) {
561
+			$this->totals['discount']['initial']   -= $this->discounts[$name]['initial_discount'];
562
+			$this->totals['discount']['recurring'] -= $this->discounts[$name]['recurring_discount'];
563
+			unset($this->discounts[$name]);
564 564
 		}
565 565
 
566 566
 	}
@@ -572,7 +572,7 @@  discard block
 block discarded – undo
572 572
 	 * @return bool
573 573
 	 */
574 574
 	public function has_discount_code() {
575
-		return ! empty( $this->discounts['discount_code'] );
575
+		return !empty($this->discounts['discount_code']);
576 576
 	}
577 577
 
578 578
 	/**
@@ -629,13 +629,13 @@  discard block
 block discarded – undo
629 629
 	 */
630 630
 	public function process_fees() {
631 631
 
632
-		$fees_processor = new GetPaid_Payment_Form_Submission_Fees( $this );
632
+		$fees_processor = new GetPaid_Payment_Form_Submission_Fees($this);
633 633
 
634
-		foreach ( $fees_processor->fees as $fee ) {
635
-			$this->add_fee( $fee );
634
+		foreach ($fees_processor->fees as $fee) {
635
+			$this->add_fee($fee);
636 636
 		}
637 637
 
638
-		do_action_ref_array( 'getpaid_submissions_process_fees', array( &$this ) );
638
+		do_action_ref_array('getpaid_submissions_process_fees', array(&$this));
639 639
 	}
640 640
 
641 641
 	/**
@@ -644,11 +644,11 @@  discard block
 block discarded – undo
644 644
 	 * @param array $fee An array of fee details. name, initial_fee, and recurring_fee are required.
645 645
 	 * @since 1.0.19
646 646
 	 */
647
-	public function add_fee( $fee ) {
647
+	public function add_fee($fee) {
648 648
 
649
-		$this->fees[ $fee['name'] ]         = $fee;
650
-		$this->totals['fees']['initial']   += wpinv_sanitize_amount( $fee['initial_fee'] );
651
-		$this->totals['fees']['recurring'] += wpinv_sanitize_amount( $fee['recurring_fee'] );
649
+		$this->fees[$fee['name']]         = $fee;
650
+		$this->totals['fees']['initial']   += wpinv_sanitize_amount($fee['initial_fee']);
651
+		$this->totals['fees']['recurring'] += wpinv_sanitize_amount($fee['recurring_fee']);
652 652
 
653 653
 	}
654 654
 
@@ -657,12 +657,12 @@  discard block
 block discarded – undo
657 657
 	 *
658 658
 	 * @since 1.0.19
659 659
 	 */
660
-	public function remove_fee( $name ) {
660
+	public function remove_fee($name) {
661 661
 
662
-		if ( isset( $this->fees[ $name ] ) ) {
663
-			$this->totals['fees']['initial']   -= $this->fees[ $name ]['initial_fee'];
664
-			$this->totals['fees']['recurring'] -= $this->fees[ $name ]['recurring_fee'];
665
-			unset( $this->fees[ $name ] );
662
+		if (isset($this->fees[$name])) {
663
+			$this->totals['fees']['initial']   -= $this->fees[$name]['initial_fee'];
664
+			$this->totals['fees']['recurring'] -= $this->fees[$name]['recurring_fee'];
665
+			unset($this->fees[$name]);
666 666
 		}
667 667
 
668 668
 	}
@@ -701,7 +701,7 @@  discard block
 block discarded – undo
701 701
 	 * @since 1.0.19
702 702
 	 */
703 703
 	public function has_fees() {
704
-		return count( $this->fees ) !== 0;
704
+		return count($this->fees) !== 0;
705 705
 	}
706 706
 
707 707
 	/*
@@ -719,7 +719,7 @@  discard block
 block discarded – undo
719 719
 	 */
720 720
 	public function get_total() {
721 721
 		$total = $this->get_subtotal() + $this->get_fee() + $this->get_tax() - $this->get_discount();
722
-		return max( $total, 0 );
722
+		return max($total, 0);
723 723
 	}
724 724
 
725 725
 	/**
@@ -729,7 +729,7 @@  discard block
 block discarded – undo
729 729
 	 */
730 730
 	public function get_recurring_total() {
731 731
 		$total = $this->get_recurring_subtotal() + $this->get_recurring_fee() + $this->get_recurring_tax() - $this->get_recurring_discount();
732
-		return max( $total, 0 );
732
+		return max($total, 0);
733 733
 	}
734 734
 
735 735
 	/**
@@ -741,12 +741,12 @@  discard block
 block discarded – undo
741 741
 		$initial   = $this->get_total();
742 742
 		$recurring = $this->get_recurring_total();
743 743
 
744
-		if ( $this->has_recurring == 0 ) {
744
+		if ($this->has_recurring == 0) {
745 745
 			$recurring = 0;
746 746
 		}
747 747
 
748 748
 		$collect = $initial > 0 || $recurring > 0;
749
-		return apply_filters( 'getpaid_submission_should_collect_payment_details', $collect, $this  );
749
+		return apply_filters('getpaid_submission_should_collect_payment_details', $collect, $this);
750 750
 	}
751 751
 
752 752
 	/**
@@ -755,7 +755,7 @@  discard block
 block discarded – undo
755 755
 	 * @since 1.0.19
756 756
 	 */
757 757
 	public function get_billing_email() {
758
-		return apply_filters( 'getpaid_get_submission_billing_email', $this->get_field( 'billing_email' ), $this  );
758
+		return apply_filters('getpaid_get_submission_billing_email', $this->get_field('billing_email'), $this);
759 759
 	}
760 760
 
761 761
 	/**
@@ -765,7 +765,7 @@  discard block
 block discarded – undo
765 765
 	 */
766 766
 	public function has_billing_email() {
767 767
 		$billing_email = $this->get_billing_email();
768
-		return ! empty( $billing_email ) && is_email( $billing_email );
768
+		return !empty($billing_email) && is_email($billing_email);
769 769
 	}
770 770
 
771 771
 	/**
@@ -795,8 +795,8 @@  discard block
 block discarded – undo
795 795
 	 * @since 1.0.19
796 796
 	 * @return mixed
797 797
 	 */
798
-	public function get_field( $field ) {
799
-		return isset( $this->data[ $field ] ) ? $this->data[ $field ] : '';
798
+	public function get_field($field) {
799
+		return isset($this->data[$field]) ? $this->data[$field] : '';
800 800
 	}
801 801
 
802 802
 	/**
@@ -804,8 +804,8 @@  discard block
 block discarded – undo
804 804
 	 *
805 805
 	 * @since 1.0.19
806 806
 	 */
807
-	public function is_required_field_set( $field ) {
808
-		return empty( $field['required'] ) || ! empty( $this->data[ $field['id'] ] );
807
+	public function is_required_field_set($field) {
808
+		return empty($field['required']) || !empty($this->data[$field['id']]);
809 809
 	}
810 810
 
811 811
 	/**
@@ -813,8 +813,8 @@  discard block
 block discarded – undo
813 813
 	 *
814 814
 	 * @since 1.0.19
815 815
 	 */
816
-	public function format_amount( $amount ) {
817
-		return wpinv_price( $amount, $this->get_currency() );
816
+	public function format_amount($amount) {
817
+		return wpinv_price($amount, $this->get_currency());
818 818
 	}
819 819
 
820 820
 }
Please login to merge, or discard this patch.