Completed
Pull Request — master (#770)
by Devin
20:03
created
includes/misc-functions.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -337,7 +337,7 @@  discard block
 block discarded – undo
337 337
  *
338 338
  * @since 1.0
339 339
  * @uses  Give()->session->get()
340
- * @return mixed array | false
340
+ * @return string array | false
341 341
  */
342 342
 function give_get_purchase_session() {
343 343
 	return Give()->session->get( 'give_purchase' );
@@ -695,9 +695,9 @@  discard block
 block discarded – undo
695 695
 /**
696 696
  * Create SVG library function
697 697
  *
698
- * @param $icon
698
+ * @param string $icon
699 699
  *
700
- * @return mixed
700
+ * @return string
701 701
  */
702 702
 function give_svg_icons( $icon ) {
703 703
 
@@ -754,7 +754,7 @@  discard block
 block discarded – undo
754 754
 	 *
755 755
 	 * @param array $input A multi-dimensional array (record set) from which to pull
756 756
 	 *                         a column of values.
757
-	 * @param mixed $columnKey The column of values to return. This value may be the
757
+	 * @param string $columnKey The column of values to return. This value may be the
758 758
 	 *                         integer key of the column you wish to retrieve, or it
759 759
 	 *                         may be the string key name for an associative array.
760 760
 	 * @param mixed $indexKey (Optional.) The column to use as the index/keys for
@@ -908,11 +908,11 @@  discard block
 block discarded – undo
908 908
 	/**
909 909
 	 * cal_days_in_month
910 910
 	 *
911
-	 * @param $calendar
911
+	 * @param integer $calendar
912 912
 	 * @param $month
913 913
 	 * @param $year
914 914
 	 *
915
-	 * @return bool|string
915
+	 * @return string
916 916
 	 */
917 917
 	function cal_days_in_month( $calendar, $month, $year ) {
918 918
 		return date( 't', mktime( 0, 0, 0, $month, 1, $year ) );
Please login to merge, or discard this patch.
includes/price-functions.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
  */
11 11
 
12 12
 // Exit if accessed directly
13
-if ( ! defined( 'ABSPATH' ) ) {
13
+if ( ! defined('ABSPATH')) {
14 14
 	exit;
15 15
 }
16 16
 
@@ -23,13 +23,13 @@  discard block
 block discarded – undo
23 23
  *
24 24
  * @return bool true if has variable prices, false otherwise
25 25
  */
26
-function give_has_variable_prices( $form_id = 0 ) {
26
+function give_has_variable_prices($form_id = 0) {
27 27
 
28
-	if ( empty( $form_id ) ) {
28
+	if (empty($form_id)) {
29 29
 		return false;
30 30
 	}
31 31
 
32
-	$form = new Give_Donate_Form( $form_id );
32
+	$form = new Give_Donate_Form($form_id);
33 33
 
34 34
 	return $form->has_variable_prices();
35 35
 }
@@ -44,13 +44,13 @@  discard block
 block discarded – undo
44 44
  *
45 45
  * @return array Variable prices
46 46
  */
47
-function give_get_variable_prices( $form_id = 0 ) {
47
+function give_get_variable_prices($form_id = 0) {
48 48
 
49
-	if ( empty( $form_id ) ) {
49
+	if (empty($form_id)) {
50 50
 		return false;
51 51
 	}
52 52
 
53
-	$form = new Give_Donate_Form( $form_id );
53
+	$form = new Give_Donate_Form($form_id);
54 54
 
55 55
 	return $form->prices;
56 56
 
@@ -67,13 +67,13 @@  discard block
 block discarded – undo
67 67
  *
68 68
  * @return string $default_price
69 69
  */
70
-function give_get_default_multilevel_amount( $form_id ) {
70
+function give_get_default_multilevel_amount($form_id) {
71 71
 	$default_price = '1.00';
72
-	$prices        = apply_filters( 'give_form_variable_prices', give_get_variable_prices( $form_id ), $form_id );
72
+	$prices        = apply_filters('give_form_variable_prices', give_get_variable_prices($form_id), $form_id);
73 73
 
74
-	foreach ( $prices as $price ) {
74
+	foreach ($prices as $price) {
75 75
 
76
-		if ( isset( $price['_give_default'] ) && $price['_give_default'] === 'default' ) {
76
+		if (isset($price['_give_default']) && $price['_give_default'] === 'default') {
77 77
 			$default_price = $price['_give_amount'];
78 78
 		}
79 79
 
@@ -94,15 +94,15 @@  discard block
 block discarded – undo
94 94
  * @return string $default_price
95 95
  * @since      1.0
96 96
  */
97
-function give_get_default_form_amount( $form_id ) {
97
+function give_get_default_form_amount($form_id) {
98 98
 
99
-	if ( give_has_variable_prices( $form_id ) ) {
99
+	if (give_has_variable_prices($form_id)) {
100 100
 
101
-		$default_amount = give_get_default_multilevel_amount( $form_id );
101
+		$default_amount = give_get_default_multilevel_amount($form_id);
102 102
 
103 103
 	} else {
104 104
 
105
-		$default_amount = get_post_meta( $form_id, '_give_set_price', true );
105
+		$default_amount = get_post_meta($form_id, '_give_set_price', true);
106 106
 
107 107
 	}
108 108
 
@@ -123,13 +123,13 @@  discard block
 block discarded – undo
123 123
  * 
124 124
  * @return bool
125 125
  */
126
-function give_is_custom_price_mode( $form_id = 0 ) {
126
+function give_is_custom_price_mode($form_id = 0) {
127 127
 
128
-	if ( empty( $form_id ) ) {
128
+	if (empty($form_id)) {
129 129
 		return false;
130 130
 	}
131 131
 
132
-	$form = new Give_Donate_Form( $form_id );
132
+	$form = new Give_Donate_Form($form_id);
133 133
 
134 134
 	return $form->is_custom_price_mode();
135 135
 }
136 136
\ No newline at end of file
Please login to merge, or discard this patch.
includes/class-give-db.php 1 patch
Indentation   +44 added lines, -44 removed lines patch added patch discarded remove patch
@@ -95,17 +95,17 @@  discard block
 block discarded – undo
95 95
 	 * Retrieve a row by a specific column / value
96 96
 	 *
97 97
 	 * @access  public
98
-     *
98
+	 *
99 99
 	 * @since   1.0
100 100
 	 *
101
-     * @param int $column Column ID
102
-     * @param int $row_id Row ID
103
-     *
104
-     * @return  object
101
+	 * @param int $column Column ID
102
+	 * @param int $row_id Row ID
103
+	 *
104
+	 * @return  object
105 105
 	 */
106 106
 	public function get_by( $column, $row_id ) {
107
-        /* @var WPDB $wpdb */
108
-        global $wpdb;
107
+		/* @var WPDB $wpdb */
108
+		global $wpdb;
109 109
 
110 110
 		$column = esc_sql( $column );
111 111
 		return $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $this->table_name WHERE $column = %s LIMIT 1;", $row_id ) );
@@ -115,17 +115,17 @@  discard block
 block discarded – undo
115 115
 	 * Retrieve a specific column's value by the primary key
116 116
 	 *
117 117
 	 * @access  public
118
-     *
118
+	 *
119 119
 	 * @since   1.0
120
-     *
121
-     * @param int $column Column ID
122
-     * @param int $row_id Row ID
123
-     *
120
+	 *
121
+	 * @param int $column Column ID
122
+	 * @param int $row_id Row ID
123
+	 *
124 124
 	 * @return  string
125 125
 	 */
126 126
 	public function get_column( $column, $row_id ) {
127
-        /* @var WPDB $wpdb */
128
-        global $wpdb;
127
+		/* @var WPDB $wpdb */
128
+		global $wpdb;
129 129
 
130 130
 		$column = esc_sql( $column );
131 131
 		return $wpdb->get_var( $wpdb->prepare( "SELECT $column FROM $this->table_name WHERE $this->primary_key = %s LIMIT 1;", $row_id ) );
@@ -135,18 +135,18 @@  discard block
 block discarded – undo
135 135
 	 * Retrieve a specific column's value by the the specified column / value
136 136
 	 *
137 137
 	 * @access  public
138
-     *
138
+	 *
139 139
 	 * @since   1.0
140
-     *
141
-     * @param int       $column         Column ID
142
-     * @param string    $column_where   Column name
143
-     * @param string    $column_value   Column value
144
-     *
140
+	 *
141
+	 * @param int       $column         Column ID
142
+	 * @param string    $column_where   Column name
143
+	 * @param string    $column_value   Column value
144
+	 *
145 145
 	 * @return  string
146 146
 	 */
147 147
 	public function get_column_by( $column, $column_where, $column_value ) {
148
-        /* @var WPDB $wpdb */
149
-        global $wpdb;
148
+		/* @var WPDB $wpdb */
149
+		global $wpdb;
150 150
 
151 151
 		$column_where = esc_sql( $column_where );
152 152
 		$column       = esc_sql( $column );
@@ -157,17 +157,17 @@  discard block
 block discarded – undo
157 157
 	 * Insert a new row
158 158
 	 *
159 159
 	 * @access  public
160
-     *
160
+	 *
161 161
 	 * @since   1.0
162
-     *
163
-     * @param array  $data
164
-     * @param string $type
165
-     *
162
+	 *
163
+	 * @param array  $data
164
+	 * @param string $type
165
+	 *
166 166
 	 * @return  int
167 167
 	 */
168 168
 	public function insert( $data, $type = '' ) {
169
-        /* @var WPDB $wpdb */
170
-        global $wpdb;
169
+		/* @var WPDB $wpdb */
170
+		global $wpdb;
171 171
 
172 172
 		// Set default values
173 173
 		$data = wp_parse_args( $data, $this->get_column_defaults() );
@@ -198,18 +198,18 @@  discard block
 block discarded – undo
198 198
 	 * Update a row
199 199
 	 *
200 200
 	 * @access  public
201
-     *
201
+	 *
202 202
 	 * @since   1.0
203
-     *
204
-     * @param int       $row_id     Column ID
205
-     * @param array     $data
206
-     * @param string    $where      Column value
207
-     *
203
+	 *
204
+	 * @param int       $row_id     Column ID
205
+	 * @param array     $data
206
+	 * @param string    $where      Column value
207
+	 *
208 208
 	 * @return  bool
209 209
 	 */
210 210
 	public function update( $row_id, $data = array(), $where = '' ) {
211
-        /* @var WPDB $wpdb */
212
-        global $wpdb;
211
+		/* @var WPDB $wpdb */
212
+		global $wpdb;
213 213
 
214 214
 		// Row ID must be positive integer
215 215
 		$row_id = absint( $row_id );
@@ -246,16 +246,16 @@  discard block
 block discarded – undo
246 246
 	 * Delete a row identified by the primary key
247 247
 	 *
248 248
 	 * @access  public
249
-     *
249
+	 *
250 250
 	 * @since   1.0
251
-     *
252
-     * @param int $row_id Column ID
253
-     *
251
+	 *
252
+	 * @param int $row_id Column ID
253
+	 *
254 254
 	 * @return  bool
255 255
 	 */
256 256
 	public function delete( $row_id = 0 ) {
257
-        /* @var WPDB $wpdb */
258
-        global $wpdb;
257
+		/* @var WPDB $wpdb */
258
+		global $wpdb;
259 259
 
260 260
 		// Row ID must be positive integer
261 261
 		$row_id = absint( $row_id );
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
 	 * @return bool          If the table name exists
280 280
 	 */
281 281
 	public function table_exists( $table ) {
282
-        /* @var WPDB $wpdb */
282
+		/* @var WPDB $wpdb */
283 283
 		global $wpdb;
284 284
 
285 285
 		$table = sanitize_text_field( $table );
Please login to merge, or discard this patch.
includes/payments/class-give-payment.php 2 patches
Indentation   +47 added lines, -47 removed lines patch added patch discarded remove patch
@@ -457,22 +457,22 @@  discard block
 block discarded – undo
457 457
 		return true;
458 458
 	}
459 459
 
460
-    /**
461
-     * Payment class object is storing various meta value in object parameter.
462
-     * So if user is updating payment meta but not updating payment object, then payment meta values will not reflect/changes on payment meta automatically
463
-     * and you can still access payment meta old value in any old payment object ( previously created ) which can cause to show or save wrong payment data.
464
-     * To prevent that user can use this function after updating any payment meta value ( in bulk or single update ).
465
-     *  
466
-     * @since 1.6
467
-     * @access public
468
-     * 
469
-     * @param int $payment_id Payment ID.
470
-     * 
471
-     * @return void
472
-     */
473
-    public function update_payment_setup( $payment_id ){
474
-        $this->setup_payment( $payment_id );
475
-    }
460
+	/**
461
+	 * Payment class object is storing various meta value in object parameter.
462
+	 * So if user is updating payment meta but not updating payment object, then payment meta values will not reflect/changes on payment meta automatically
463
+	 * and you can still access payment meta old value in any old payment object ( previously created ) which can cause to show or save wrong payment data.
464
+	 * To prevent that user can use this function after updating any payment meta value ( in bulk or single update ).
465
+	 *  
466
+	 * @since 1.6
467
+	 * @access public
468
+	 * 
469
+	 * @param int $payment_id Payment ID.
470
+	 * 
471
+	 * @return void
472
+	 */
473
+	public function update_payment_setup( $payment_id ){
474
+		$this->setup_payment( $payment_id );
475
+	}
476 476
 
477 477
 	/**
478 478
 	 * Create the base of a payment.
@@ -916,7 +916,7 @@  discard block
 block discarded – undo
916 916
 					//Find a match between price_id and level_id
917 917
 					//First verify array keys exists THEN make the match
918 918
 					if ( ( isset( $args['price_id'] ) && isset( $price['_give_id']['level_id'] ) )
919
-					     && $args['price_id'] == $price['_give_id']['level_id']
919
+						 && $args['price_id'] == $price['_give_id']['level_id']
920 920
 					) {
921 921
 						$item_price = $price['_give_amount'];
922 922
 					}
@@ -1312,9 +1312,9 @@  discard block
 block discarded – undo
1312 1312
 				case 'pending':
1313 1313
 					$this->process_pending();
1314 1314
 					break;
1315
-                case 'cancelled':
1316
-                    $this->process_cancelled();
1317
-                    break;
1315
+				case 'cancelled':
1316
+					$this->process_cancelled();
1317
+					break;
1318 1318
 			}
1319 1319
 
1320 1320
 			do_action( 'give_update_payment_status', $this->ID, $status, $old_status );
@@ -1502,40 +1502,40 @@  discard block
 block discarded – undo
1502 1502
 		delete_transient( md5( 'give_earnings_this_monththis_month' ) );
1503 1503
 	}
1504 1504
 
1505
-    /**
1506
-     * Process when a payment moves to cancelled
1507
-     *
1508
-     * @since  1.5
1509
-     * @return void
1510
-     */
1511
-    private function process_cancelled() {
1512
-        $process_cancelled = true;
1505
+	/**
1506
+	 * Process when a payment moves to cancelled
1507
+	 *
1508
+	 * @since  1.5
1509
+	 * @return void
1510
+	 */
1511
+	private function process_cancelled() {
1512
+		$process_cancelled = true;
1513 1513
 
1514
-        // If the payment was not in publish or revoked status, don't decrement stats as they were never incremented
1515
-        if ( ( 'publish' != $this->old_status && 'revoked' != $this->old_status ) || 'cancelled' != $this->status ) {
1516
-            $process_cancelled = false;
1517
-        }
1514
+		// If the payment was not in publish or revoked status, don't decrement stats as they were never incremented
1515
+		if ( ( 'publish' != $this->old_status && 'revoked' != $this->old_status ) || 'cancelled' != $this->status ) {
1516
+			$process_cancelled = false;
1517
+		}
1518 1518
 
1519
-        // Allow extensions to filter for their own payment types, Example: Recurring Payments
1520
-        $process_cancelled = apply_filters( 'give_should_process_cancelled', $process_cancelled, $this );
1519
+		// Allow extensions to filter for their own payment types, Example: Recurring Payments
1520
+		$process_cancelled = apply_filters( 'give_should_process_cancelled', $process_cancelled, $this );
1521 1521
 
1522
-        if ( false === $process_cancelled ) {
1523
-            return;
1524
-        }
1522
+		if ( false === $process_cancelled ) {
1523
+			return;
1524
+		}
1525 1525
 
1526
-        $decrease_store_earnings = apply_filters( 'give_decrease_store_earnings_on_cancelled', true, $this );
1527
-        $decrease_customer_value = apply_filters( 'give_decrease_customer_value_on_cancelled', true, $this );
1528
-        $decrease_purchase_count = apply_filters( 'give_decrease_customer_purchase_count_on_cancelled', true, $this );
1526
+		$decrease_store_earnings = apply_filters( 'give_decrease_store_earnings_on_cancelled', true, $this );
1527
+		$decrease_customer_value = apply_filters( 'give_decrease_customer_value_on_cancelled', true, $this );
1528
+		$decrease_purchase_count = apply_filters( 'give_decrease_customer_purchase_count_on_cancelled', true, $this );
1529 1529
 
1530
-        $this->maybe_alter_stats( $decrease_store_earnings, $decrease_customer_value, $decrease_purchase_count );
1531
-        $this->delete_sales_logs();
1530
+		$this->maybe_alter_stats( $decrease_store_earnings, $decrease_customer_value, $decrease_purchase_count );
1531
+		$this->delete_sales_logs();
1532 1532
 
1533
-        $this->completed_date = false;
1534
-        $this->update_meta( '_give_completed_date', '' );
1533
+		$this->completed_date = false;
1534
+		$this->update_meta( '_give_completed_date', '' );
1535 1535
 
1536
-        // Clear the This Month earnings (this_monththis_month is NOT a typo)
1537
-        delete_transient( md5( 'give_earnings_this_monththis_month' ) );
1538
-    }
1536
+		// Clear the This Month earnings (this_monththis_month is NOT a typo)
1537
+		delete_transient( md5( 'give_earnings_this_monththis_month' ) );
1538
+	}
1539 1539
 
1540 1540
 	/**
1541 1541
 	 * Used during the process of moving to refunded or pending, to decrement stats
Please login to merge, or discard this patch.
Spacing   +313 added lines, -313 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 
14 14
 
15 15
 // Exit if accessed directly
16
-if ( ! defined( 'ABSPATH' ) ) {
16
+if ( ! defined('ABSPATH')) {
17 17
 	exit;
18 18
 }
19 19
 
@@ -295,13 +295,13 @@  discard block
 block discarded – undo
295 295
 	 *
296 296
 	 * @return mixed void|false
297 297
 	 */
298
-	public function __construct( $payment_id = false ) {
298
+	public function __construct($payment_id = false) {
299 299
 
300
-		if ( empty( $payment_id ) ) {
300
+		if (empty($payment_id)) {
301 301
 			return false;
302 302
 		}
303 303
 
304
-		$this->setup_payment( $payment_id );
304
+		$this->setup_payment($payment_id);
305 305
 	}
306 306
 
307 307
 	/**
@@ -313,11 +313,11 @@  discard block
 block discarded – undo
313 313
 	 *
314 314
 	 * @return mixed        The value
315 315
 	 */
316
-	public function __get( $key ) {
316
+	public function __get($key) {
317 317
 
318
-		if ( method_exists( $this, 'get_' . $key ) ) {
318
+		if (method_exists($this, 'get_'.$key)) {
319 319
 
320
-			$value = call_user_func( array( $this, 'get_' . $key ) );
320
+			$value = call_user_func(array($this, 'get_'.$key));
321 321
 
322 322
 		} else {
323 323
 
@@ -338,18 +338,18 @@  discard block
 block discarded – undo
338 338
 	 * @param string $key The property name
339 339
 	 * @param mixed $value The value of the property
340 340
 	 */
341
-	public function __set( $key, $value ) {
342
-		$ignore = array( '_ID' );
341
+	public function __set($key, $value) {
342
+		$ignore = array('_ID');
343 343
 
344
-		if ( $key === 'status' ) {
344
+		if ($key === 'status') {
345 345
 			$this->old_status = $this->status;
346 346
 		}
347 347
 
348
-		if ( ! in_array( $key, $ignore ) ) {
349
-			$this->pending[ $key ] = $value;
348
+		if ( ! in_array($key, $ignore)) {
349
+			$this->pending[$key] = $value;
350 350
 		}
351 351
 
352
-		if ( '_ID' !== $key ) {
352
+		if ('_ID' !== $key) {
353 353
 			$this->$key = $value;
354 354
 		}
355 355
 	}
@@ -363,9 +363,9 @@  discard block
 block discarded – undo
363 363
 	 *
364 364
 	 * @return boolean       If the item is set or not
365 365
 	 */
366
-	public function __isset( $name ) {
367
-		if ( property_exists( $this, $name ) ) {
368
-			return false === empty( $this->$name );
366
+	public function __isset($name) {
367
+		if (property_exists($this, $name)) {
368
+			return false === empty($this->$name);
369 369
 		} else {
370 370
 			return null;
371 371
 		}
@@ -380,31 +380,31 @@  discard block
 block discarded – undo
380 380
 	 *
381 381
 	 * @return bool            If the setup was successful or not
382 382
 	 */
383
-	private function setup_payment( $payment_id ) {
383
+	private function setup_payment($payment_id) {
384 384
 		$this->pending = array();
385 385
 
386
-		if ( empty( $payment_id ) ) {
386
+		if (empty($payment_id)) {
387 387
 			return false;
388 388
 		}
389 389
 
390
-		$payment = get_post( $payment_id );
390
+		$payment = get_post($payment_id);
391 391
 
392
-		if ( ! $payment || is_wp_error( $payment ) ) {
392
+		if ( ! $payment || is_wp_error($payment)) {
393 393
 			return false;
394 394
 		}
395 395
 
396
-		if ( 'give_payment' !== $payment->post_type ) {
396
+		if ('give_payment' !== $payment->post_type) {
397 397
 			return false;
398 398
 		}
399 399
 
400 400
 		// Allow extensions to perform actions before the payment is loaded
401
-		do_action( 'give_pre_setup_payment', $this, $payment_id );
401
+		do_action('give_pre_setup_payment', $this, $payment_id);
402 402
 
403 403
 		// Primary Identifier
404
-		$this->ID = absint( $payment_id );
404
+		$this->ID = absint($payment_id);
405 405
 
406 406
 		// Protected ID that can never be changed
407
-		$this->_ID = absint( $payment_id );
407
+		$this->_ID = absint($payment_id);
408 408
 
409 409
 		// We have a payment, get the generic payment_meta item to reduce calls to it
410 410
 		$this->payment_meta = $this->get_meta();
@@ -419,7 +419,7 @@  discard block
 block discarded – undo
419 419
 		$this->parent_payment = $payment->post_parent;
420 420
 
421 421
 		$all_payment_statuses  = give_get_payment_statuses();
422
-		$this->status_nicename = array_key_exists( $this->status, $all_payment_statuses ) ? $all_payment_statuses[ $this->status ] : ucfirst( $this->status );
422
+		$this->status_nicename = array_key_exists($this->status, $all_payment_statuses) ? $all_payment_statuses[$this->status] : ucfirst($this->status);
423 423
 
424 424
 		// Items
425 425
 		$this->fees = $this->setup_fees();
@@ -452,7 +452,7 @@  discard block
 block discarded – undo
452 452
 		$this->number     = $this->setup_payment_number();
453 453
 
454 454
 		// Allow extensions to add items to this object via hook
455
-		do_action( 'give_setup_payment', $this, $payment_id );
455
+		do_action('give_setup_payment', $this, $payment_id);
456 456
 
457 457
 		return true;
458 458
 	}
@@ -470,8 +470,8 @@  discard block
 block discarded – undo
470 470
      * 
471 471
      * @return void
472 472
      */
473
-    public function update_payment_setup( $payment_id ){
474
-        $this->setup_payment( $payment_id );
473
+    public function update_payment_setup($payment_id) {
474
+        $this->setup_payment($payment_id);
475 475
     }
476 476
 
477 477
 	/**
@@ -484,24 +484,24 @@  discard block
 block discarded – undo
484 484
 
485 485
 		// Construct the payment title
486 486
 		$payment_title = '';
487
-		if ( ! empty( $this->first_name ) && ! empty( $this->last_name ) ) {
488
-			$payment_title = $this->first_name . ' ' . $this->last_name;
489
-		} else if ( ! empty( $this->first_name ) && empty( $this->last_name ) ) {
487
+		if ( ! empty($this->first_name) && ! empty($this->last_name)) {
488
+			$payment_title = $this->first_name.' '.$this->last_name;
489
+		} else if ( ! empty($this->first_name) && empty($this->last_name)) {
490 490
 			$payment_title = $this->first_name;
491
-		} else if ( ! empty( $this->email ) && is_email( $this->email ) ) {
491
+		} else if ( ! empty($this->email) && is_email($this->email)) {
492 492
 			$payment_title = $this->email;
493 493
 		}
494 494
 
495 495
 		//Set Key
496
-		if ( empty( $this->key ) ) {
496
+		if (empty($this->key)) {
497 497
 
498
-			$auth_key             = defined( 'AUTH_KEY' ) ? AUTH_KEY : '';
499
-			$this->key            = strtolower( md5( $this->email . date( 'Y-m-d H:i:s' ) . $auth_key . uniqid( 'give', true ) ) );  // Unique key
498
+			$auth_key             = defined('AUTH_KEY') ? AUTH_KEY : '';
499
+			$this->key            = strtolower(md5($this->email.date('Y-m-d H:i:s').$auth_key.uniqid('give', true))); // Unique key
500 500
 			$this->pending['key'] = $this->key;
501 501
 		}
502 502
 
503 503
 		//Set IP
504
-		if ( empty( $this->ip ) ) {
504
+		if (empty($this->ip)) {
505 505
 
506 506
 			$this->ip            = give_get_ip();
507 507
 			$this->pending['ip'] = $this->ip;
@@ -528,58 +528,58 @@  discard block
 block discarded – undo
528 528
 			'fees'         => $this->fees,
529 529
 		);
530 530
 
531
-		$args = apply_filters( 'give_insert_payment_args', array(
531
+		$args = apply_filters('give_insert_payment_args', array(
532 532
 			'post_title'    => $payment_title,
533 533
 			'post_status'   => $this->status,
534 534
 			'post_type'     => 'give_payment',
535
-			'post_date'     => ! empty( $this->date ) ? $this->date : null,
536
-			'post_date_gmt' => ! empty( $this->date ) ? get_gmt_from_date( $this->date ) : null,
535
+			'post_date'     => ! empty($this->date) ? $this->date : null,
536
+			'post_date_gmt' => ! empty($this->date) ? get_gmt_from_date($this->date) : null,
537 537
 			'post_parent'   => $this->parent_payment,
538
-		), $payment_data );
538
+		), $payment_data);
539 539
 
540 540
 		// Create a blank payment
541
-		$payment_id = wp_insert_post( $args );
541
+		$payment_id = wp_insert_post($args);
542 542
 
543
-		if ( ! empty( $payment_id ) ) {
543
+		if ( ! empty($payment_id)) {
544 544
 
545 545
 			$this->ID  = $payment_id;
546 546
 			$this->_ID = $payment_id;
547 547
 
548 548
 			$customer = new stdClass;
549 549
 
550
-			if ( did_action( 'give_pre_process_purchase' ) && is_user_logged_in() ) {
551
-				$customer = new Give_Customer( get_current_user_id(), true );
550
+			if (did_action('give_pre_process_purchase') && is_user_logged_in()) {
551
+				$customer = new Give_Customer(get_current_user_id(), true);
552 552
 			}
553 553
 
554
-			if ( empty( $customer->id ) ) {
555
-				$customer = new Give_Customer( $this->email );
554
+			if (empty($customer->id)) {
555
+				$customer = new Give_Customer($this->email);
556 556
 			}
557 557
 
558
-			if ( empty( $customer->id ) ) {
558
+			if (empty($customer->id)) {
559 559
 
560 560
 				$customer_data = array(
561
-					'name'    => ! is_email( $payment_title ) ? $this->first_name . ' ' . $this->last_name : '',
561
+					'name'    => ! is_email($payment_title) ? $this->first_name.' '.$this->last_name : '',
562 562
 					'email'   => $this->email,
563 563
 					'user_id' => $this->user_id,
564 564
 				);
565 565
 
566
-				$customer->create( $customer_data );
566
+				$customer->create($customer_data);
567 567
 
568 568
 			}
569 569
 
570 570
 			$this->customer_id            = $customer->id;
571 571
 			$this->pending['customer_id'] = $this->customer_id;
572
-			$customer->attach_payment( $this->ID, false );
572
+			$customer->attach_payment($this->ID, false);
573 573
 
574
-			$this->payment_meta = apply_filters( 'give_payment_meta', $this->payment_meta, $payment_data );
575
-			if ( ! empty( $this->payment_meta['fees'] ) ) {
576
-				$this->fees = array_merge( $this->fees, $this->payment_meta['fees'] );
577
-				foreach ( $this->fees as $fee ) {
578
-					$this->increase_fees( $fee['amount'] );
574
+			$this->payment_meta = apply_filters('give_payment_meta', $this->payment_meta, $payment_data);
575
+			if ( ! empty($this->payment_meta['fees'])) {
576
+				$this->fees = array_merge($this->fees, $this->payment_meta['fees']);
577
+				foreach ($this->fees as $fee) {
578
+					$this->increase_fees($fee['amount']);
579 579
 				}
580 580
 			}
581 581
 
582
-			$this->update_meta( '_give_payment_meta', $this->payment_meta );
582
+			$this->update_meta('_give_payment_meta', $this->payment_meta);
583 583
 			$this->new = true;
584 584
 		}
585 585
 
@@ -599,11 +599,11 @@  discard block
 block discarded – undo
599 599
 		$saved = false;
600 600
 
601 601
 		//Must have an ID 
602
-		if ( empty( $this->ID ) ) {
602
+		if (empty($this->ID)) {
603 603
 
604 604
 			$payment_id = $this->insert_payment();
605 605
 
606
-			if ( false === $payment_id ) {
606
+			if (false === $payment_id) {
607 607
 				$saved = false;
608 608
 			} else {
609 609
 				$this->ID = $payment_id;
@@ -612,48 +612,48 @@  discard block
 block discarded – undo
612 612
 		}
613 613
 
614 614
 		//Set ID if not matching
615
-		if ( $this->ID !== $this->_ID ) {
615
+		if ($this->ID !== $this->_ID) {
616 616
 			$this->ID = $this->_ID;
617 617
 		}
618 618
 
619 619
 		// If we have something pending, let's save it
620
-		if ( ! empty( $this->pending ) ) {
620
+		if ( ! empty($this->pending)) {
621 621
 
622 622
 			$total_increase = 0;
623 623
 			$total_decrease = 0;
624 624
 
625
-			foreach ( $this->pending as $key => $value ) {
625
+			foreach ($this->pending as $key => $value) {
626 626
 
627
-				switch ( $key ) {
627
+				switch ($key) {
628 628
 
629 629
 					case 'donations':
630 630
 						// Update totals for pending donations
631
-						foreach ( $this->pending[ $key ] as $item ) {
631
+						foreach ($this->pending[$key] as $item) {
632 632
 
633
-							$quantity = isset( $item['quantity'] ) ? $item['quantity'] : 1;
634
-							$price_id = isset( $item['price_id'] ) ? $item['price_id'] : 0;
633
+							$quantity = isset($item['quantity']) ? $item['quantity'] : 1;
634
+							$price_id = isset($item['price_id']) ? $item['price_id'] : 0;
635 635
 
636
-							switch ( $item['action'] ) {
636
+							switch ($item['action']) {
637 637
 
638 638
 								case 'add':
639 639
 
640 640
 									$price = $item['price'];
641 641
 
642
-									if ( 'publish' === $this->status || 'complete' === $this->status || 'revoked' === $this->status ) {
642
+									if ('publish' === $this->status || 'complete' === $this->status || 'revoked' === $this->status) {
643 643
 
644 644
 										// Add sales logs
645
-										$log_date = date_i18n( 'Y-m-d G:i:s', current_time( 'timestamp' ) );
645
+										$log_date = date_i18n('Y-m-d G:i:s', current_time('timestamp'));
646 646
 
647 647
 										$y = 0;
648
-										while ( $y < $quantity ) {
648
+										while ($y < $quantity) {
649 649
 
650
-											give_record_sale_in_log( $item['id'], $this->ID, $price_id, $log_date );
651
-											$y ++;
650
+											give_record_sale_in_log($item['id'], $this->ID, $price_id, $log_date);
651
+											$y++;
652 652
 										}
653 653
 
654
-										$form = new Give_Donate_Form( $item['id'] );
655
-										$form->increase_sales( $quantity );
656
-										$form->increase_earnings( $price );
654
+										$form = new Give_Donate_Form($item['id']);
655
+										$form->increase_sales($quantity);
656
+										$form->increase_earnings($price);
657 657
 
658 658
 										$total_increase += $price;
659 659
 									}
@@ -678,15 +678,15 @@  discard block
 block discarded – undo
678 678
 										)
679 679
 									);
680 680
 
681
-									$found_logs = get_posts( $log_args );
682
-									foreach ( $found_logs as $log ) {
683
-										wp_delete_post( $log->ID, true );
681
+									$found_logs = get_posts($log_args);
682
+									foreach ($found_logs as $log) {
683
+										wp_delete_post($log->ID, true);
684 684
 									}
685 685
 
686
-									if ( 'publish' === $this->status || 'complete' === $this->status || 'revoked' === $this->status ) {
687
-										$form = new Give_Donate_Form( $item['id'] );
688
-										$form->decrease_sales( $quantity );
689
-										$form->decrease_earnings( $item['amount'] );
686
+									if ('publish' === $this->status || 'complete' === $this->status || 'revoked' === $this->status) {
687
+										$form = new Give_Donate_Form($item['id']);
688
+										$form->decrease_sales($quantity);
689
+										$form->decrease_earnings($item['amount']);
690 690
 
691 691
 										$total_decrease += $item['amount'];
692 692
 									}
@@ -699,17 +699,17 @@  discard block
 block discarded – undo
699 699
 
700 700
 					case 'fees':
701 701
 
702
-						if ( 'publish' !== $this->status && 'complete' !== $this->status && 'revoked' !== $this->status ) {
702
+						if ('publish' !== $this->status && 'complete' !== $this->status && 'revoked' !== $this->status) {
703 703
 							break;
704 704
 						}
705 705
 
706
-						if ( empty( $this->pending[ $key ] ) ) {
706
+						if (empty($this->pending[$key])) {
707 707
 							break;
708 708
 						}
709 709
 
710
-						foreach ( $this->pending[ $key ] as $fee ) {
710
+						foreach ($this->pending[$key] as $fee) {
711 711
 
712
-							switch ( $fee['action'] ) {
712
+							switch ($fee['action']) {
713 713
 
714 714
 								case 'add':
715 715
 									$total_increase += $fee['amount'];
@@ -726,43 +726,43 @@  discard block
 block discarded – undo
726 726
 						break;
727 727
 
728 728
 					case 'status':
729
-						$this->update_status( $this->status );
729
+						$this->update_status($this->status);
730 730
 						break;
731 731
 
732 732
 					case 'gateway':
733
-						$this->update_meta( '_give_payment_gateway', $this->gateway );
733
+						$this->update_meta('_give_payment_gateway', $this->gateway);
734 734
 						break;
735 735
 
736 736
 					case 'mode':
737
-						$this->update_meta( '_give_payment_mode', $this->mode );
737
+						$this->update_meta('_give_payment_mode', $this->mode);
738 738
 						break;
739 739
 
740 740
 					case 'transaction_id':
741
-						$this->update_meta( '_give_payment_transaction_id', $this->transaction_id );
741
+						$this->update_meta('_give_payment_transaction_id', $this->transaction_id);
742 742
 						break;
743 743
 
744 744
 					case 'ip':
745
-						$this->update_meta( '_give_payment_user_ip', $this->ip );
745
+						$this->update_meta('_give_payment_user_ip', $this->ip);
746 746
 						break;
747 747
 
748 748
 					case 'customer_id':
749
-						$this->update_meta( '_give_payment_customer_id', $this->customer_id );
749
+						$this->update_meta('_give_payment_customer_id', $this->customer_id);
750 750
 						break;
751 751
 
752 752
 					case 'user_id':
753
-						$this->update_meta( '_give_payment_user_id', $this->user_id );
753
+						$this->update_meta('_give_payment_user_id', $this->user_id);
754 754
 						break;
755 755
 
756 756
 					case 'form_title':
757
-						$this->update_meta( '_give_payment_form_title', $this->form_title );
757
+						$this->update_meta('_give_payment_form_title', $this->form_title);
758 758
 						break;
759 759
 
760 760
 					case 'form_id':
761
-						$this->update_meta( '_give_payment_form_id', $this->form_id );
761
+						$this->update_meta('_give_payment_form_id', $this->form_id);
762 762
 						break;
763 763
 
764 764
 					case 'price_id':
765
-						$this->update_meta( '_give_payment_price_id', $this->price_id );
765
+						$this->update_meta('_give_payment_price_id', $this->price_id);
766 766
 						break;
767 767
 
768 768
 					case 'first_name':
@@ -778,15 +778,15 @@  discard block
 block discarded – undo
778 778
 						break;
779 779
 
780 780
 					case 'email':
781
-						$this->update_meta( '_give_payment_user_email', $this->email );
781
+						$this->update_meta('_give_payment_user_email', $this->email);
782 782
 						break;
783 783
 
784 784
 					case 'key':
785
-						$this->update_meta( '_give_payment_purchase_key', $this->key );
785
+						$this->update_meta('_give_payment_purchase_key', $this->key);
786 786
 						break;
787 787
 
788 788
 					case 'number':
789
-						$this->update_meta( '_give_payment_number', $this->number );
789
+						$this->update_meta('_give_payment_number', $this->number);
790 790
 						break;
791 791
 
792 792
 					case 'date':
@@ -796,11 +796,11 @@  discard block
 block discarded – undo
796 796
 							'edit_date' => true,
797 797
 						);
798 798
 
799
-						wp_update_post( $args );
799
+						wp_update_post($args);
800 800
 						break;
801 801
 
802 802
 					case 'completed_date':
803
-						$this->update_meta( '_give_completed_date', $this->completed_date );
803
+						$this->update_meta('_give_completed_date', $this->completed_date);
804 804
 						break;
805 805
 
806 806
 					case 'parent_payment':
@@ -809,38 +809,38 @@  discard block
 block discarded – undo
809 809
 							'post_parent' => $this->parent_payment,
810 810
 						);
811 811
 
812
-						wp_update_post( $args );
812
+						wp_update_post($args);
813 813
 						break;
814 814
 
815 815
 					default:
816
-						do_action( 'give_payment_save', $this, $key );
816
+						do_action('give_payment_save', $this, $key);
817 817
 						break;
818 818
 				}
819 819
 			}
820 820
 
821
-			if ( 'pending' !== $this->status ) {
821
+			if ('pending' !== $this->status) {
822 822
 
823
-				$customer = new Give_Customer( $this->customer_id );
823
+				$customer = new Give_Customer($this->customer_id);
824 824
 
825 825
 				$total_change = $total_increase - $total_decrease;
826
-				if ( $total_change < 0 ) {
826
+				if ($total_change < 0) {
827 827
 
828
-					$total_change = - ( $total_change );
828
+					$total_change = - ($total_change);
829 829
 					// Decrease the customer's purchase stats
830
-					$customer->decrease_value( $total_change );
831
-					give_decrease_total_earnings( $total_change );
830
+					$customer->decrease_value($total_change);
831
+					give_decrease_total_earnings($total_change);
832 832
 
833
-				} else if ( $total_change > 0 ) {
833
+				} else if ($total_change > 0) {
834 834
 
835 835
 					// Increase the customer's purchase stats
836
-					$customer->increase_value( $total_change );
837
-					give_increase_total_earnings( $total_change );
836
+					$customer->increase_value($total_change);
837
+					give_increase_total_earnings($total_change);
838 838
 
839 839
 				}
840 840
 
841 841
 			}
842 842
 
843
-			$this->update_meta( '_give_payment_total', $this->total );
843
+			$this->update_meta('_give_payment_total', $this->total);
844 844
 
845 845
 			$new_meta = array(
846 846
 				'form_title' => $this->form_title,
@@ -852,12 +852,12 @@  discard block
 block discarded – undo
852 852
 			);
853 853
 
854 854
 			$meta        = $this->get_meta();
855
-			$merged_meta = array_merge( $meta, $new_meta );
855
+			$merged_meta = array_merge($meta, $new_meta);
856 856
 
857 857
 			// Only save the payment meta if it's changed
858
-			if ( md5( serialize( $meta ) ) !== md5( serialize( $merged_meta ) ) ) {
859
-				$updated = $this->update_meta( '_give_payment_meta', $merged_meta );
860
-				if ( false !== $updated ) {
858
+			if (md5(serialize($meta)) !== md5(serialize($merged_meta))) {
859
+				$updated = $this->update_meta('_give_payment_meta', $merged_meta);
860
+				if (false !== $updated) {
861 861
 					$saved = true;
862 862
 				}
863 863
 			}
@@ -866,8 +866,8 @@  discard block
 block discarded – undo
866 866
 			$saved         = true;
867 867
 		}
868 868
 
869
-		if ( true === $saved ) {
870
-			$this->setup_payment( $this->ID );
869
+		if (true === $saved) {
870
+			$this->setup_payment($this->ID);
871 871
 		}
872 872
 
873 873
 		return $saved;
@@ -884,12 +884,12 @@  discard block
 block discarded – undo
884 884
 	 *
885 885
 	 * @return bool True when successful, false otherwise
886 886
 	 */
887
-	public function add_donation( $form_id = 0, $args = array(), $options = array() ) {
887
+	public function add_donation($form_id = 0, $args = array(), $options = array()) {
888 888
 
889
-		$donation = new Give_Donate_Form( $form_id );
889
+		$donation = new Give_Donate_Form($form_id);
890 890
 
891 891
 		// Bail if this post isn't a give donation form
892
-		if ( ! $donation || $donation->post_type !== 'give_forms' ) {
892
+		if ( ! $donation || $donation->post_type !== 'give_forms') {
893 893
 			return false;
894 894
 		}
895 895
 
@@ -900,60 +900,60 @@  discard block
 block discarded – undo
900 900
 			'fees'     => array(),
901 901
 		);
902 902
 
903
-		$args = wp_parse_args( apply_filters( 'give_payment_add_donation_args', $args, $donation->ID ), $defaults );
903
+		$args = wp_parse_args(apply_filters('give_payment_add_donation_args', $args, $donation->ID), $defaults);
904 904
 
905 905
 		// Allow overriding the price
906
-		if ( false !== $args['price'] ) {
906
+		if (false !== $args['price']) {
907 907
 			$item_price = $args['price'];
908 908
 		} else {
909 909
 
910 910
 			// Deal with variable pricing
911
-			if ( give_has_variable_prices( $donation->ID ) ) {
912
-				$prices     = maybe_unserialize( get_post_meta( $form_id, '_give_donation_levels', true ) );
911
+			if (give_has_variable_prices($donation->ID)) {
912
+				$prices     = maybe_unserialize(get_post_meta($form_id, '_give_donation_levels', true));
913 913
 				$item_price = '';
914 914
 				//Loop through prices
915
-				foreach ( $prices as $price ) {
915
+				foreach ($prices as $price) {
916 916
 					//Find a match between price_id and level_id
917 917
 					//First verify array keys exists THEN make the match
918
-					if ( ( isset( $args['price_id'] ) && isset( $price['_give_id']['level_id'] ) )
918
+					if ((isset($args['price_id']) && isset($price['_give_id']['level_id']))
919 919
 					     && $args['price_id'] == $price['_give_id']['level_id']
920 920
 					) {
921 921
 						$item_price = $price['_give_amount'];
922 922
 					}
923 923
 				}
924 924
 				//Fallback to the lowest price point
925
-				if ( $item_price == '' ) {
926
-					$item_price       = give_get_lowest_price_option( $donation->ID );
927
-					$args['price_id'] = give_get_lowest_price_id( $donation->ID );
925
+				if ($item_price == '') {
926
+					$item_price       = give_get_lowest_price_option($donation->ID);
927
+					$args['price_id'] = give_get_lowest_price_id($donation->ID);
928 928
 				}
929 929
 			} else {
930 930
 				//Simple form price
931
-				$item_price = give_get_form_price( $donation->ID );
931
+				$item_price = give_get_form_price($donation->ID);
932 932
 			}
933 933
 
934 934
 		}
935 935
 
936 936
 		// Sanitizing the price here so we don't have a dozen calls later
937
-		$item_price = give_sanitize_amount( $item_price );
938
-		$total      = round( $item_price, give_currency_decimal_filter() );
937
+		$item_price = give_sanitize_amount($item_price);
938
+		$total      = round($item_price, give_currency_decimal_filter());
939 939
 
940 940
 		//Add Options
941 941
 		$default_options = array();
942
-		if ( false !== $args['price_id'] ) {
942
+		if (false !== $args['price_id']) {
943 943
 			$default_options['price_id'] = (int) $args['price_id'];
944 944
 		}
945
-		$options = wp_parse_args( $options, $default_options );
945
+		$options = wp_parse_args($options, $default_options);
946 946
 
947 947
 		// Do not allow totals to go negative
948
-		if ( $total < 0 ) {
948
+		if ($total < 0) {
949 949
 			$total = 0;
950 950
 		}
951 951
 
952 952
 		$donation = array(
953 953
 			'name'     => $donation->post_title,
954 954
 			'id'       => $donation->ID,
955
-			'price'    => round( $total, give_currency_decimal_filter() ),
956
-			'subtotal' => round( $total, give_currency_decimal_filter() ),
955
+			'price'    => round($total, give_currency_decimal_filter()),
956
+			'subtotal' => round($total, give_currency_decimal_filter()),
957 957
 			'fees'     => $args['fees'],
958 958
 			'price_id' => $args['price_id'],
959 959
 			'action'   => 'add',
@@ -962,7 +962,7 @@  discard block
 block discarded – undo
962 962
 
963 963
 		$this->pending['donations'][] = $donation;
964 964
 
965
-		$this->increase_subtotal( $total );
965
+		$this->increase_subtotal($total);
966 966
 
967 967
 		return true;
968 968
 
@@ -978,7 +978,7 @@  discard block
 block discarded – undo
978 978
 	 *
979 979
 	 * @return bool If the item was removed or not
980 980
 	 */
981
-	public function remove_donation( $form_id, $args = array() ) {
981
+	public function remove_donation($form_id, $args = array()) {
982 982
 
983 983
 		// Set some defaults
984 984
 		$defaults = array(
@@ -986,12 +986,12 @@  discard block
 block discarded – undo
986 986
 			'price'    => false,
987 987
 			'price_id' => false,
988 988
 		);
989
-		$args     = wp_parse_args( $args, $defaults );
989
+		$args = wp_parse_args($args, $defaults);
990 990
 
991
-		$form = new Give_Donate_Form( $form_id );
991
+		$form = new Give_Donate_Form($form_id);
992 992
 
993 993
 		// Bail if this post isn't a valid give donation form
994
-		if ( ! $form || $form->post_type !== 'give_forms' ) {
994
+		if ( ! $form || $form->post_type !== 'give_forms') {
995 995
 			return false;
996 996
 		}
997 997
 
@@ -1004,7 +1004,7 @@  discard block
 block discarded – undo
1004 1004
 
1005 1005
 		$this->pending['donations'][] = $pending_args;
1006 1006
 
1007
-		$this->decrease_subtotal( $this->total );
1007
+		$this->decrease_subtotal($this->total);
1008 1008
 
1009 1009
 		return true;
1010 1010
 	}
@@ -1019,7 +1019,7 @@  discard block
 block discarded – undo
1019 1019
 	 *
1020 1020
 	 * @return bool If the fee was added
1021 1021
 	 */
1022
-	public function add_fee( $args, $global = true ) {
1022
+	public function add_fee($args, $global = true) {
1023 1023
 
1024 1024
 		$default_args = array(
1025 1025
 			'label'    => '',
@@ -1029,16 +1029,16 @@  discard block
 block discarded – undo
1029 1029
 			'price_id' => 0,
1030 1030
 		);
1031 1031
 
1032
-		$fee          = wp_parse_args( $args, $default_args );
1032
+		$fee          = wp_parse_args($args, $default_args);
1033 1033
 		$this->fees[] = $fee;
1034 1034
 
1035 1035
 
1036 1036
 		$added_fee               = $fee;
1037 1037
 		$added_fee['action']     = 'add';
1038 1038
 		$this->pending['fees'][] = $added_fee;
1039
-		reset( $this->fees );
1039
+		reset($this->fees);
1040 1040
 
1041
-		$this->increase_fees( $fee['amount'] );
1041
+		$this->increase_fees($fee['amount']);
1042 1042
 
1043 1043
 		return true;
1044 1044
 	}
@@ -1052,11 +1052,11 @@  discard block
 block discarded – undo
1052 1052
 	 *
1053 1053
 	 * @return bool     If the fee was removed successfully
1054 1054
 	 */
1055
-	public function remove_fee( $key ) {
1055
+	public function remove_fee($key) {
1056 1056
 		$removed = false;
1057 1057
 
1058
-		if ( is_numeric( $key ) ) {
1059
-			$removed = $this->remove_fee_by( 'index', $key );
1058
+		if (is_numeric($key)) {
1059
+			$removed = $this->remove_fee_by('index', $key);
1060 1060
 		}
1061 1061
 
1062 1062
 		return $removed;
@@ -1073,47 +1073,47 @@  discard block
 block discarded – undo
1073 1073
 	 *
1074 1074
 	 * @return boolean             If the item is removed
1075 1075
 	 */
1076
-	public function remove_fee_by( $key, $value, $global = false ) {
1076
+	public function remove_fee_by($key, $value, $global = false) {
1077 1077
 
1078
-		$allowed_fee_keys = apply_filters( 'give_payment_fee_keys', array(
1078
+		$allowed_fee_keys = apply_filters('give_payment_fee_keys', array(
1079 1079
 			'index',
1080 1080
 			'label',
1081 1081
 			'amount',
1082 1082
 			'type',
1083
-		) );
1083
+		));
1084 1084
 
1085
-		if ( ! in_array( $key, $allowed_fee_keys ) ) {
1085
+		if ( ! in_array($key, $allowed_fee_keys)) {
1086 1086
 			return false;
1087 1087
 		}
1088 1088
 
1089 1089
 		$removed = false;
1090
-		if ( 'index' === $key && array_key_exists( $value, $this->fees ) ) {
1090
+		if ('index' === $key && array_key_exists($value, $this->fees)) {
1091 1091
 
1092
-			$removed_fee             = $this->fees[ $value ];
1092
+			$removed_fee             = $this->fees[$value];
1093 1093
 			$removed_fee['action']   = 'remove';
1094 1094
 			$this->pending['fees'][] = $removed_fee;
1095 1095
 
1096
-			$this->decrease_fees( $removed_fee['amount'] );
1096
+			$this->decrease_fees($removed_fee['amount']);
1097 1097
 
1098
-			unset( $this->fees[ $value ] );
1098
+			unset($this->fees[$value]);
1099 1099
 			$removed = true;
1100 1100
 
1101
-		} else if ( 'index' !== $key ) {
1101
+		} else if ('index' !== $key) {
1102 1102
 
1103
-			foreach ( $this->fees as $index => $fee ) {
1103
+			foreach ($this->fees as $index => $fee) {
1104 1104
 
1105
-				if ( isset( $fee[ $key ] ) && $fee[ $key ] == $value ) {
1105
+				if (isset($fee[$key]) && $fee[$key] == $value) {
1106 1106
 
1107 1107
 					$removed_fee             = $fee;
1108 1108
 					$removed_fee['action']   = 'remove';
1109 1109
 					$this->pending['fees'][] = $removed_fee;
1110 1110
 
1111
-					$this->decrease_fees( $removed_fee['amount'] );
1111
+					$this->decrease_fees($removed_fee['amount']);
1112 1112
 
1113
-					unset( $this->fees[ $index ] );
1113
+					unset($this->fees[$index]);
1114 1114
 					$removed = true;
1115 1115
 
1116
-					if ( false === $global ) {
1116
+					if (false === $global) {
1117 1117
 						break;
1118 1118
 					}
1119 1119
 
@@ -1123,8 +1123,8 @@  discard block
 block discarded – undo
1123 1123
 
1124 1124
 		}
1125 1125
 
1126
-		if ( true === $removed ) {
1127
-			$this->fees = array_values( $this->fees );
1126
+		if (true === $removed) {
1127
+			$this->fees = array_values($this->fees);
1128 1128
 		}
1129 1129
 
1130 1130
 		return $removed;
@@ -1139,14 +1139,14 @@  discard block
 block discarded – undo
1139 1139
 	 *
1140 1140
 	 * @return array        The Fees for the type specified
1141 1141
 	 */
1142
-	public function get_fees( $type = 'all' ) {
1142
+	public function get_fees($type = 'all') {
1143 1143
 		$fees = array();
1144 1144
 
1145
-		if ( ! empty( $this->fees ) && is_array( $this->fees ) ) {
1145
+		if ( ! empty($this->fees) && is_array($this->fees)) {
1146 1146
 
1147
-			foreach ( $this->fees as $fee_id => $fee ) {
1147
+			foreach ($this->fees as $fee_id => $fee) {
1148 1148
 
1149
-				if ( 'all' != $type && ! empty( $fee['type'] ) && $type != $fee['type'] ) {
1149
+				if ('all' != $type && ! empty($fee['type']) && $type != $fee['type']) {
1150 1150
 					continue;
1151 1151
 				}
1152 1152
 
@@ -1156,7 +1156,7 @@  discard block
 block discarded – undo
1156 1156
 			}
1157 1157
 		}
1158 1158
 
1159
-		return apply_filters( 'give_get_payment_fees', $fees, $this->ID, $this );
1159
+		return apply_filters('give_get_payment_fees', $fees, $this->ID, $this);
1160 1160
 	}
1161 1161
 
1162 1162
 	/**
@@ -1168,13 +1168,13 @@  discard block
 block discarded – undo
1168 1168
 	 *
1169 1169
 	 * @return void
1170 1170
 	 */
1171
-	public function add_note( $note = false ) {
1171
+	public function add_note($note = false) {
1172 1172
 		// Bail if no note specified
1173
-		if ( ! $note ) {
1173
+		if ( ! $note) {
1174 1174
 			return false;
1175 1175
 		}
1176 1176
 
1177
-		give_insert_payment_note( $this->ID, $note );
1177
+		give_insert_payment_note($this->ID, $note);
1178 1178
 	}
1179 1179
 
1180 1180
 	/**
@@ -1186,7 +1186,7 @@  discard block
 block discarded – undo
1186 1186
 	 *
1187 1187
 	 * @return void
1188 1188
 	 */
1189
-	private function increase_subtotal( $amount = 0.00 ) {
1189
+	private function increase_subtotal($amount = 0.00) {
1190 1190
 		$amount = (float) $amount;
1191 1191
 		$this->subtotal += $amount;
1192 1192
 
@@ -1202,11 +1202,11 @@  discard block
 block discarded – undo
1202 1202
 	 *
1203 1203
 	 * @return void
1204 1204
 	 */
1205
-	private function decrease_subtotal( $amount = 0.00 ) {
1205
+	private function decrease_subtotal($amount = 0.00) {
1206 1206
 		$amount = (float) $amount;
1207 1207
 		$this->subtotal -= $amount;
1208 1208
 
1209
-		if ( $this->subtotal < 0 ) {
1209
+		if ($this->subtotal < 0) {
1210 1210
 			$this->subtotal = 0;
1211 1211
 		}
1212 1212
 
@@ -1222,7 +1222,7 @@  discard block
 block discarded – undo
1222 1222
 	 *
1223 1223
 	 * @return void
1224 1224
 	 */
1225
-	private function increase_fees( $amount = 0.00 ) {
1225
+	private function increase_fees($amount = 0.00) {
1226 1226
 		$amount = (float) $amount;
1227 1227
 		$this->fees_total += $amount;
1228 1228
 
@@ -1238,11 +1238,11 @@  discard block
 block discarded – undo
1238 1238
 	 *
1239 1239
 	 * @return void
1240 1240
 	 */
1241
-	private function decrease_fees( $amount = 0.00 ) {
1241
+	private function decrease_fees($amount = 0.00) {
1242 1242
 		$amount = (float) $amount;
1243 1243
 		$this->fees_total -= $amount;
1244 1244
 
1245
-		if ( $this->fees_total < 0 ) {
1245
+		if ($this->fees_total < 0) {
1246 1246
 			$this->fees_total = 0;
1247 1247
 		}
1248 1248
 
@@ -1268,41 +1268,41 @@  discard block
 block discarded – undo
1268 1268
 	 *
1269 1269
 	 * @return bool Returns if the status was successfully updated
1270 1270
 	 */
1271
-	public function update_status( $status = false ) {
1271
+	public function update_status($status = false) {
1272 1272
 
1273 1273
 		//standardize the 'complete(d)' status
1274
-		if ( $status == 'completed' || $status == 'complete' ) {
1274
+		if ($status == 'completed' || $status == 'complete') {
1275 1275
 			$status = 'publish';
1276 1276
 		}
1277 1277
 
1278
-		$old_status = ! empty( $this->old_status ) ? $this->old_status : false;
1278
+		$old_status = ! empty($this->old_status) ? $this->old_status : false;
1279 1279
 
1280
-		if ( $old_status === $status ) {
1280
+		if ($old_status === $status) {
1281 1281
 			return false; // Don't permit status changes that aren't changes
1282 1282
 		}
1283 1283
 
1284
-		$do_change = apply_filters( 'give_should_update_payment_status', true, $this->ID, $status, $old_status );
1284
+		$do_change = apply_filters('give_should_update_payment_status', true, $this->ID, $status, $old_status);
1285 1285
 
1286 1286
 		$updated = false;
1287 1287
 
1288 1288
 
1289
-		if ( $do_change ) {
1289
+		if ($do_change) {
1290 1290
 
1291
-			do_action( 'give_before_payment_status_change', $this->ID, $status, $old_status );
1291
+			do_action('give_before_payment_status_change', $this->ID, $status, $old_status);
1292 1292
 
1293 1293
 			$update_fields = array(
1294 1294
 				'ID'          => $this->ID,
1295 1295
 				'post_status' => $status,
1296
-				'edit_date'   => current_time( 'mysql' )
1296
+				'edit_date'   => current_time('mysql')
1297 1297
 			);
1298 1298
 
1299
-			$updated = wp_update_post( apply_filters( 'give_update_payment_status_fields', $update_fields ) );
1299
+			$updated = wp_update_post(apply_filters('give_update_payment_status_fields', $update_fields));
1300 1300
 
1301 1301
 			$all_payment_statuses  = give_get_payment_statuses();
1302
-			$this->status_nicename = array_key_exists( $status, $all_payment_statuses ) ? $all_payment_statuses[ $status ] : ucfirst( $status );
1302
+			$this->status_nicename = array_key_exists($status, $all_payment_statuses) ? $all_payment_statuses[$status] : ucfirst($status);
1303 1303
 
1304 1304
 			// Process any specific status functions
1305
-			switch ( $status ) {
1305
+			switch ($status) {
1306 1306
 				case 'refunded':
1307 1307
 					$this->process_refund();
1308 1308
 					break;
@@ -1317,7 +1317,7 @@  discard block
 block discarded – undo
1317 1317
                     break;
1318 1318
 			}
1319 1319
 
1320
-			do_action( 'give_update_payment_status', $this->ID, $status, $old_status );
1320
+			do_action('give_update_payment_status', $this->ID, $status, $old_status);
1321 1321
 
1322 1322
 		}
1323 1323
 
@@ -1349,32 +1349,32 @@  discard block
 block discarded – undo
1349 1349
 	 *
1350 1350
 	 * @return mixed             The value from the post meta
1351 1351
 	 */
1352
-	public function get_meta( $meta_key = '_give_payment_meta', $single = true ) {
1352
+	public function get_meta($meta_key = '_give_payment_meta', $single = true) {
1353 1353
 
1354
-		$meta = get_post_meta( $this->ID, $meta_key, $single );
1354
+		$meta = get_post_meta($this->ID, $meta_key, $single);
1355 1355
 
1356
-		if ( $meta_key === '_give_payment_meta' ) {
1356
+		if ($meta_key === '_give_payment_meta') {
1357 1357
 
1358
-			if ( empty( $meta['key'] ) ) {
1358
+			if (empty($meta['key'])) {
1359 1359
 				$meta['key'] = $this->setup_payment_key();
1360 1360
 			}
1361 1361
 
1362
-			if ( empty( $meta['form_title'] ) ) {
1362
+			if (empty($meta['form_title'])) {
1363 1363
 				$meta['form_title'] = $this->setup_form_title();
1364 1364
 			}
1365 1365
 
1366
-			if ( empty( $meta['email'] ) ) {
1366
+			if (empty($meta['email'])) {
1367 1367
 				$meta['email'] = $this->setup_email();
1368 1368
 			}
1369 1369
 
1370
-			if ( empty( $meta['date'] ) ) {
1371
-				$meta['date'] = get_post_field( 'post_date', $this->ID );
1370
+			if (empty($meta['date'])) {
1371
+				$meta['date'] = get_post_field('post_date', $this->ID);
1372 1372
 			}
1373 1373
 		}
1374 1374
 
1375
-		$meta = apply_filters( 'give_get_payment_meta_' . $meta_key, $meta, $this->ID );
1375
+		$meta = apply_filters('give_get_payment_meta_'.$meta_key, $meta, $this->ID);
1376 1376
 
1377
-		return apply_filters( 'give_get_payment_meta', $meta, $this->ID, $meta_key );
1377
+		return apply_filters('give_get_payment_meta', $meta, $this->ID, $meta_key);
1378 1378
 	}
1379 1379
 
1380 1380
 	/**
@@ -1388,23 +1388,23 @@  discard block
 block discarded – undo
1388 1388
 	 *
1389 1389
 	 * @return int|bool Meta ID if the key didn't exist, true on successful update, false on failure
1390 1390
 	 */
1391
-	public function update_meta( $meta_key = '', $meta_value = '', $prev_value = '' ) {
1392
-		if ( empty( $meta_key ) ) {
1391
+	public function update_meta($meta_key = '', $meta_value = '', $prev_value = '') {
1392
+		if (empty($meta_key)) {
1393 1393
 			return false;
1394 1394
 		}
1395 1395
 
1396
-		if ( $meta_key == 'key' || $meta_key == 'date' ) {
1396
+		if ($meta_key == 'key' || $meta_key == 'date') {
1397 1397
 
1398 1398
 			$current_meta              = $this->get_meta();
1399
-			$current_meta[ $meta_key ] = $meta_value;
1399
+			$current_meta[$meta_key] = $meta_value;
1400 1400
 
1401 1401
 			$meta_key   = '_give_payment_meta';
1402 1402
 			$meta_value = $current_meta;
1403 1403
 
1404
-		} else if ( $meta_key == 'email' || $meta_key == '_give_payment_user_email' ) {
1404
+		} else if ($meta_key == 'email' || $meta_key == '_give_payment_user_email') {
1405 1405
 
1406
-			$meta_value = apply_filters( 'give_give_update_payment_meta_' . $meta_key, $meta_value, $this->ID );
1407
-			update_post_meta( $this->ID, '_give_payment_user_email', $meta_value );
1406
+			$meta_value = apply_filters('give_give_update_payment_meta_'.$meta_key, $meta_value, $this->ID);
1407
+			update_post_meta($this->ID, '_give_payment_user_email', $meta_value);
1408 1408
 
1409 1409
 			$current_meta                       = $this->get_meta();
1410 1410
 			$current_meta['user_info']['email'] = $meta_value;
@@ -1414,9 +1414,9 @@  discard block
 block discarded – undo
1414 1414
 
1415 1415
 		}
1416 1416
 
1417
-		$meta_value = apply_filters( 'give_update_payment_meta_' . $meta_key, $meta_value, $this->ID );
1417
+		$meta_value = apply_filters('give_update_payment_meta_'.$meta_key, $meta_value, $this->ID);
1418 1418
 
1419
-		return update_post_meta( $this->ID, $meta_key, $meta_value, $prev_value );
1419
+		return update_post_meta($this->ID, $meta_key, $meta_value, $prev_value);
1420 1420
 	}
1421 1421
 
1422 1422
 	/**
@@ -1430,30 +1430,30 @@  discard block
 block discarded – undo
1430 1430
 		$process_refund = true;
1431 1431
 
1432 1432
 		// If the payment was not in publish or revoked status, don't decrement stats as they were never incremented
1433
-		if ( ( 'publish' != $this->old_status && 'revoked' != $this->old_status ) || 'refunded' != $this->status ) {
1433
+		if (('publish' != $this->old_status && 'revoked' != $this->old_status) || 'refunded' != $this->status) {
1434 1434
 			$process_refund = false;
1435 1435
 		}
1436 1436
 
1437 1437
 		// Allow extensions to filter for their own payment types, Example: Recurring Payments
1438
-		$process_refund = apply_filters( 'give_should_process_refund', $process_refund, $this );
1438
+		$process_refund = apply_filters('give_should_process_refund', $process_refund, $this);
1439 1439
 
1440
-		if ( false === $process_refund ) {
1440
+		if (false === $process_refund) {
1441 1441
 			return;
1442 1442
 		}
1443 1443
 
1444
-		do_action( 'give_pre_refund_payment', $this );
1444
+		do_action('give_pre_refund_payment', $this);
1445 1445
 
1446
-		$decrease_store_earnings = apply_filters( 'give_decrease_store_earnings_on_refund', true, $this );
1447
-		$decrease_customer_value = apply_filters( 'give_decrease_customer_value_on_refund', true, $this );
1448
-		$decrease_purchase_count = apply_filters( 'give_decrease_customer_purchase_count_on_refund', true, $this );
1446
+		$decrease_store_earnings = apply_filters('give_decrease_store_earnings_on_refund', true, $this);
1447
+		$decrease_customer_value = apply_filters('give_decrease_customer_value_on_refund', true, $this);
1448
+		$decrease_purchase_count = apply_filters('give_decrease_customer_purchase_count_on_refund', true, $this);
1449 1449
 
1450
-		$this->maybe_alter_stats( $decrease_store_earnings, $decrease_customer_value, $decrease_purchase_count );
1450
+		$this->maybe_alter_stats($decrease_store_earnings, $decrease_customer_value, $decrease_purchase_count);
1451 1451
 		$this->delete_sales_logs();
1452 1452
 
1453 1453
 		// Clear the This Month earnings (this_monththis_month is NOT a typo)
1454
-		delete_transient( md5( 'give_earnings_this_monththis_month' ) );
1454
+		delete_transient(md5('give_earnings_this_monththis_month'));
1455 1455
 
1456
-		do_action( 'give_post_refund_payment', $this );
1456
+		do_action('give_post_refund_payment', $this);
1457 1457
 	}
1458 1458
 
1459 1459
 	/**
@@ -1477,29 +1477,29 @@  discard block
 block discarded – undo
1477 1477
 		$process_pending = true;
1478 1478
 
1479 1479
 		// If the payment was not in publish or revoked status, don't decrement stats as they were never incremented
1480
-		if ( ( 'publish' != $this->old_status && 'revoked' != $this->old_status ) || 'pending' != $this->status ) {
1480
+		if (('publish' != $this->old_status && 'revoked' != $this->old_status) || 'pending' != $this->status) {
1481 1481
 			$process_pending = false;
1482 1482
 		}
1483 1483
 
1484 1484
 		// Allow extensions to filter for their own payment types, Example: Recurring Payments
1485
-		$process_pending = apply_filters( 'give_should_process_pending', $process_pending, $this );
1485
+		$process_pending = apply_filters('give_should_process_pending', $process_pending, $this);
1486 1486
 
1487
-		if ( false === $process_pending ) {
1487
+		if (false === $process_pending) {
1488 1488
 			return;
1489 1489
 		}
1490 1490
 
1491
-		$decrease_store_earnings = apply_filters( 'give_decrease_store_earnings_on_pending', true, $this );
1492
-		$decrease_customer_value = apply_filters( 'give_decrease_customer_value_on_pending', true, $this );
1493
-		$decrease_purchase_count = apply_filters( 'give_decrease_customer_purchase_count_on_pending', true, $this );
1491
+		$decrease_store_earnings = apply_filters('give_decrease_store_earnings_on_pending', true, $this);
1492
+		$decrease_customer_value = apply_filters('give_decrease_customer_value_on_pending', true, $this);
1493
+		$decrease_purchase_count = apply_filters('give_decrease_customer_purchase_count_on_pending', true, $this);
1494 1494
 
1495
-		$this->maybe_alter_stats( $decrease_store_earnings, $decrease_customer_value, $decrease_purchase_count );
1495
+		$this->maybe_alter_stats($decrease_store_earnings, $decrease_customer_value, $decrease_purchase_count);
1496 1496
 		$this->delete_sales_logs();
1497 1497
 
1498 1498
 		$this->completed_date = false;
1499
-		$this->update_meta( '_give_completed_date', '' );
1499
+		$this->update_meta('_give_completed_date', '');
1500 1500
 
1501 1501
 		// Clear the This Month earnings (this_monththis_month is NOT a typo)
1502
-		delete_transient( md5( 'give_earnings_this_monththis_month' ) );
1502
+		delete_transient(md5('give_earnings_this_monththis_month'));
1503 1503
 	}
1504 1504
 
1505 1505
     /**
@@ -1512,29 +1512,29 @@  discard block
 block discarded – undo
1512 1512
         $process_cancelled = true;
1513 1513
 
1514 1514
         // If the payment was not in publish or revoked status, don't decrement stats as they were never incremented
1515
-        if ( ( 'publish' != $this->old_status && 'revoked' != $this->old_status ) || 'cancelled' != $this->status ) {
1515
+        if (('publish' != $this->old_status && 'revoked' != $this->old_status) || 'cancelled' != $this->status) {
1516 1516
             $process_cancelled = false;
1517 1517
         }
1518 1518
 
1519 1519
         // Allow extensions to filter for their own payment types, Example: Recurring Payments
1520
-        $process_cancelled = apply_filters( 'give_should_process_cancelled', $process_cancelled, $this );
1520
+        $process_cancelled = apply_filters('give_should_process_cancelled', $process_cancelled, $this);
1521 1521
 
1522
-        if ( false === $process_cancelled ) {
1522
+        if (false === $process_cancelled) {
1523 1523
             return;
1524 1524
         }
1525 1525
 
1526
-        $decrease_store_earnings = apply_filters( 'give_decrease_store_earnings_on_cancelled', true, $this );
1527
-        $decrease_customer_value = apply_filters( 'give_decrease_customer_value_on_cancelled', true, $this );
1528
-        $decrease_purchase_count = apply_filters( 'give_decrease_customer_purchase_count_on_cancelled', true, $this );
1526
+        $decrease_store_earnings = apply_filters('give_decrease_store_earnings_on_cancelled', true, $this);
1527
+        $decrease_customer_value = apply_filters('give_decrease_customer_value_on_cancelled', true, $this);
1528
+        $decrease_purchase_count = apply_filters('give_decrease_customer_purchase_count_on_cancelled', true, $this);
1529 1529
 
1530
-        $this->maybe_alter_stats( $decrease_store_earnings, $decrease_customer_value, $decrease_purchase_count );
1530
+        $this->maybe_alter_stats($decrease_store_earnings, $decrease_customer_value, $decrease_purchase_count);
1531 1531
         $this->delete_sales_logs();
1532 1532
 
1533 1533
         $this->completed_date = false;
1534
-        $this->update_meta( '_give_completed_date', '' );
1534
+        $this->update_meta('_give_completed_date', '');
1535 1535
 
1536 1536
         // Clear the This Month earnings (this_monththis_month is NOT a typo)
1537
-        delete_transient( md5( 'give_earnings_this_monththis_month' ) );
1537
+        delete_transient(md5('give_earnings_this_monththis_month'));
1538 1538
     }
1539 1539
 
1540 1540
 	/**
@@ -1548,25 +1548,25 @@  discard block
 block discarded – undo
1548 1548
 	 *
1549 1549
 	 * @return void
1550 1550
 	 */
1551
-	private function maybe_alter_stats( $alter_store_earnings, $alter_customer_value, $alter_customer_purchase_count ) {
1551
+	private function maybe_alter_stats($alter_store_earnings, $alter_customer_value, $alter_customer_purchase_count) {
1552 1552
 
1553
-		give_undo_purchase( false, $this->ID );
1553
+		give_undo_purchase(false, $this->ID);
1554 1554
 
1555 1555
 		// Decrease store earnings
1556
-		if ( true === $alter_store_earnings ) {
1557
-			give_decrease_total_earnings( $this->total );
1556
+		if (true === $alter_store_earnings) {
1557
+			give_decrease_total_earnings($this->total);
1558 1558
 		}
1559 1559
 
1560 1560
 		// Decrement the stats for the customer
1561
-		if ( ! empty( $this->customer_id ) ) {
1561
+		if ( ! empty($this->customer_id)) {
1562 1562
 
1563
-			$customer = new Give_Customer( $this->customer_id );
1563
+			$customer = new Give_Customer($this->customer_id);
1564 1564
 
1565
-			if ( true === $alter_customer_value ) {
1566
-				$customer->decrease_value( $this->total );
1565
+			if (true === $alter_customer_value) {
1566
+				$customer->decrease_value($this->total);
1567 1567
 			}
1568 1568
 
1569
-			if ( true === $alter_customer_purchase_count ) {
1569
+			if (true === $alter_customer_purchase_count) {
1570 1570
 				$customer->decrease_purchase_count();
1571 1571
 			}
1572 1572
 
@@ -1612,13 +1612,13 @@  discard block
 block discarded – undo
1612 1612
 	 * @return string The date the payment was completed
1613 1613
 	 */
1614 1614
 	private function setup_completed_date() {
1615
-		$payment = get_post( $this->ID );
1615
+		$payment = get_post($this->ID);
1616 1616
 
1617
-		if ( 'pending' == $payment->post_status || 'preapproved' == $payment->post_status ) {
1617
+		if ('pending' == $payment->post_status || 'preapproved' == $payment->post_status) {
1618 1618
 			return false; // This payment was never completed
1619 1619
 		}
1620 1620
 
1621
-		$date = ( $date = $this->get_meta( '_give_completed_date', true ) ) ? $date : $payment->modified_date;
1621
+		$date = ($date = $this->get_meta('_give_completed_date', true)) ? $date : $payment->modified_date;
1622 1622
 
1623 1623
 		return $date;
1624 1624
 	}
@@ -1630,7 +1630,7 @@  discard block
 block discarded – undo
1630 1630
 	 * @return string The payment mode
1631 1631
 	 */
1632 1632
 	private function setup_mode() {
1633
-		return $this->get_meta( '_give_payment_mode' );
1633
+		return $this->get_meta('_give_payment_mode');
1634 1634
 	}
1635 1635
 
1636 1636
 	/**
@@ -1640,13 +1640,13 @@  discard block
 block discarded – undo
1640 1640
 	 * @return float The payment total
1641 1641
 	 */
1642 1642
 	private function setup_total() {
1643
-		$amount = $this->get_meta( '_give_payment_total', true );
1643
+		$amount = $this->get_meta('_give_payment_total', true);
1644 1644
 
1645
-		if ( empty( $amount ) && '0.00' != $amount ) {
1646
-			$meta = $this->get_meta( '_give_payment_meta', true );
1647
-			$meta = maybe_unserialize( $meta );
1645
+		if (empty($amount) && '0.00' != $amount) {
1646
+			$meta = $this->get_meta('_give_payment_meta', true);
1647
+			$meta = maybe_unserialize($meta);
1648 1648
 
1649
-			if ( isset( $meta['amount'] ) ) {
1649
+			if (isset($meta['amount'])) {
1650 1650
 				$amount = $meta['amount'];
1651 1651
 			}
1652 1652
 		}
@@ -1675,9 +1675,9 @@  discard block
 block discarded – undo
1675 1675
 	private function setup_fees_total() {
1676 1676
 		$fees_total = (float) 0.00;
1677 1677
 
1678
-		$payment_fees = isset( $this->payment_meta['fees'] ) ? $this->payment_meta['fees'] : array();
1679
-		if ( ! empty( $payment_fees ) ) {
1680
-			foreach ( $payment_fees as $fee ) {
1678
+		$payment_fees = isset($this->payment_meta['fees']) ? $this->payment_meta['fees'] : array();
1679
+		if ( ! empty($payment_fees)) {
1680
+			foreach ($payment_fees as $fee) {
1681 1681
 				$fees_total += (float) $fee['amount'];
1682 1682
 			}
1683 1683
 		}
@@ -1693,7 +1693,7 @@  discard block
 block discarded – undo
1693 1693
 	 * @return string              The currency for the payment
1694 1694
 	 */
1695 1695
 	private function setup_currency() {
1696
-		$currency = isset( $this->payment_meta['currency'] ) ? $this->payment_meta['currency'] : apply_filters( 'give_payment_currency_default', give_get_currency(), $this );
1696
+		$currency = isset($this->payment_meta['currency']) ? $this->payment_meta['currency'] : apply_filters('give_payment_currency_default', give_get_currency(), $this);
1697 1697
 
1698 1698
 		return $currency;
1699 1699
 	}
@@ -1705,7 +1705,7 @@  discard block
 block discarded – undo
1705 1705
 	 * @return array The Fees
1706 1706
 	 */
1707 1707
 	private function setup_fees() {
1708
-		$payment_fees = isset( $this->payment_meta['fees'] ) ? $this->payment_meta['fees'] : array();
1708
+		$payment_fees = isset($this->payment_meta['fees']) ? $this->payment_meta['fees'] : array();
1709 1709
 
1710 1710
 		return $payment_fees;
1711 1711
 	}
@@ -1717,7 +1717,7 @@  discard block
 block discarded – undo
1717 1717
 	 * @return string The gateway
1718 1718
 	 */
1719 1719
 	private function setup_gateway() {
1720
-		$gateway = $this->get_meta( '_give_payment_gateway', true );
1720
+		$gateway = $this->get_meta('_give_payment_gateway', true);
1721 1721
 
1722 1722
 		return $gateway;
1723 1723
 	}
@@ -1729,12 +1729,12 @@  discard block
 block discarded – undo
1729 1729
 	 * @return string The transaction ID for the payment
1730 1730
 	 */
1731 1731
 	private function setup_transaction_id() {
1732
-		$transaction_id = $this->get_meta( '_give_payment_transaction_id', true );
1732
+		$transaction_id = $this->get_meta('_give_payment_transaction_id', true);
1733 1733
 
1734
-		if ( empty( $transaction_id ) || (int) $transaction_id === (int) $this->ID ) {
1734
+		if (empty($transaction_id) || (int) $transaction_id === (int) $this->ID) {
1735 1735
 
1736 1736
 			$gateway        = $this->gateway;
1737
-			$transaction_id = apply_filters( 'give_get_payment_transaction_id-' . $gateway, $this->ID );
1737
+			$transaction_id = apply_filters('give_get_payment_transaction_id-'.$gateway, $this->ID);
1738 1738
 
1739 1739
 		}
1740 1740
 
@@ -1748,7 +1748,7 @@  discard block
 block discarded – undo
1748 1748
 	 * @return string The IP address for the payment
1749 1749
 	 */
1750 1750
 	private function setup_ip() {
1751
-		$ip = $this->get_meta( '_give_payment_user_ip', true );
1751
+		$ip = $this->get_meta('_give_payment_user_ip', true);
1752 1752
 
1753 1753
 		return $ip;
1754 1754
 	}
@@ -1760,7 +1760,7 @@  discard block
 block discarded – undo
1760 1760
 	 * @return int The Customer ID
1761 1761
 	 */
1762 1762
 	private function setup_customer_id() {
1763
-		$customer_id = $this->get_meta( '_give_payment_customer_id', true );
1763
+		$customer_id = $this->get_meta('_give_payment_customer_id', true);
1764 1764
 
1765 1765
 		return $customer_id;
1766 1766
 	}
@@ -1772,7 +1772,7 @@  discard block
 block discarded – undo
1772 1772
 	 * @return int The User ID
1773 1773
 	 */
1774 1774
 	private function setup_user_id() {
1775
-		$user_id = $this->get_meta( '_give_payment_user_id', true );
1775
+		$user_id = $this->get_meta('_give_payment_user_id', true);
1776 1776
 
1777 1777
 		return $user_id;
1778 1778
 	}
@@ -1784,10 +1784,10 @@  discard block
 block discarded – undo
1784 1784
 	 * @return string The email address for the payment
1785 1785
 	 */
1786 1786
 	private function setup_email() {
1787
-		$email = $this->get_meta( '_give_payment_user_email', true );
1787
+		$email = $this->get_meta('_give_payment_user_email', true);
1788 1788
 
1789
-		if ( empty( $email ) ) {
1790
-			$email = Give()->customers->get_column( 'email', $this->customer_id );
1789
+		if (empty($email)) {
1790
+			$email = Give()->customers->get_column('email', $this->customer_id);
1791 1791
 		}
1792 1792
 
1793 1793
 		return $email;
@@ -1805,15 +1805,15 @@  discard block
 block discarded – undo
1805 1805
 			'last_name'  => $this->last_name,
1806 1806
 		);
1807 1807
 
1808
-		$user_info = isset( $this->payment_meta['user_info'] ) ? maybe_unserialize( $this->payment_meta['user_info'] ) : array();
1809
-		$user_info = wp_parse_args( $user_info, $defaults );
1808
+		$user_info = isset($this->payment_meta['user_info']) ? maybe_unserialize($this->payment_meta['user_info']) : array();
1809
+		$user_info = wp_parse_args($user_info, $defaults);
1810 1810
 
1811
-		if ( empty( $user_info ) ) {
1811
+		if (empty($user_info)) {
1812 1812
 			// Get the customer, but only if it's been created
1813
-			$customer = new Give_Customer( $this->customer_id );
1813
+			$customer = new Give_Customer($this->customer_id);
1814 1814
 
1815
-			if ( $customer->id > 0 ) {
1816
-				$name      = explode( ' ', $customer->name, 2 );
1815
+			if ($customer->id > 0) {
1816
+				$name      = explode(' ', $customer->name, 2);
1817 1817
 				$user_info = array(
1818 1818
 					'first_name' => $name[0],
1819 1819
 					'last_name'  => $name[1],
@@ -1823,29 +1823,29 @@  discard block
 block discarded – undo
1823 1823
 			}
1824 1824
 		} else {
1825 1825
 			// Get the customer, but only if it's been created
1826
-			$customer = new Give_Customer( $this->customer_id );
1827
-			if ( $customer->id > 0 ) {
1828
-				foreach ( $user_info as $key => $value ) {
1829
-					if ( ! empty( $value ) ) {
1826
+			$customer = new Give_Customer($this->customer_id);
1827
+			if ($customer->id > 0) {
1828
+				foreach ($user_info as $key => $value) {
1829
+					if ( ! empty($value)) {
1830 1830
 						continue;
1831 1831
 					}
1832 1832
 
1833
-					switch ( $key ) {
1833
+					switch ($key) {
1834 1834
 						case 'first_name':
1835
-							$name = explode( ' ', $customer->name, 2 );
1835
+							$name = explode(' ', $customer->name, 2);
1836 1836
 
1837
-							$user_info[ $key ] = $name[0];
1837
+							$user_info[$key] = $name[0];
1838 1838
 							break;
1839 1839
 
1840 1840
 						case 'last_name':
1841
-							$name      = explode( ' ', $customer->name, 2 );
1842
-							$last_name = ! empty( $name[1] ) ? $name[1] : '';
1841
+							$name      = explode(' ', $customer->name, 2);
1842
+							$last_name = ! empty($name[1]) ? $name[1] : '';
1843 1843
 
1844
-							$user_info[ $key ] = $last_name;
1844
+							$user_info[$key] = $last_name;
1845 1845
 							break;
1846 1846
 
1847 1847
 						case 'email':
1848
-							$user_info[ $key ] = $customer->email;
1848
+							$user_info[$key] = $customer->email;
1849 1849
 							break;
1850 1850
 					}
1851 1851
 				}
@@ -1865,7 +1865,7 @@  discard block
 block discarded – undo
1865 1865
 	 */
1866 1866
 	private function setup_address() {
1867 1867
 
1868
-		$address = ! empty( $this->payment_meta['user_info']['address'] ) ? $this->payment_meta['user_info']['address'] : array(
1868
+		$address = ! empty($this->payment_meta['user_info']['address']) ? $this->payment_meta['user_info']['address'] : array(
1869 1869
 			'line1'   => '',
1870 1870
 			'line2'   => '',
1871 1871
 			'city'    => '',
@@ -1885,7 +1885,7 @@  discard block
 block discarded – undo
1885 1885
 	 */
1886 1886
 	private function setup_form_title() {
1887 1887
 
1888
-		$form_id = $this->get_meta( '_give_payment_form_title', true );
1888
+		$form_id = $this->get_meta('_give_payment_form_title', true);
1889 1889
 
1890 1890
 		return $form_id;
1891 1891
 	}
@@ -1898,7 +1898,7 @@  discard block
 block discarded – undo
1898 1898
 	 */
1899 1899
 	private function setup_form_id() {
1900 1900
 
1901
-		$form_id = $this->get_meta( '_give_payment_form_id', true );
1901
+		$form_id = $this->get_meta('_give_payment_form_id', true);
1902 1902
 
1903 1903
 		return $form_id;
1904 1904
 	}
@@ -1910,7 +1910,7 @@  discard block
 block discarded – undo
1910 1910
 	 * @return int The Form Price ID
1911 1911
 	 */
1912 1912
 	private function setup_price_id() {
1913
-		$price_id = $this->get_meta( '_give_payment_price_id', true );
1913
+		$price_id = $this->get_meta('_give_payment_price_id', true);
1914 1914
 
1915 1915
 		return $price_id;
1916 1916
 	}
@@ -1922,7 +1922,7 @@  discard block
 block discarded – undo
1922 1922
 	 * @return string The Payment Key
1923 1923
 	 */
1924 1924
 	private function setup_payment_key() {
1925
-		$key = $this->get_meta( '_give_payment_purchase_key', true );
1925
+		$key = $this->get_meta('_give_payment_purchase_key', true);
1926 1926
 
1927 1927
 		return $key;
1928 1928
 	}
@@ -1936,11 +1936,11 @@  discard block
 block discarded – undo
1936 1936
 	private function setup_payment_number() {
1937 1937
 		$number = $this->ID;
1938 1938
 
1939
-		if ( give_get_option( 'enable_sequential' ) ) {
1939
+		if (give_get_option('enable_sequential')) {
1940 1940
 
1941
-			$number = $this->get_meta( '_give_payment_number', true );
1941
+			$number = $this->get_meta('_give_payment_number', true);
1942 1942
 
1943
-			if ( ! $number ) {
1943
+			if ( ! $number) {
1944 1944
 
1945 1945
 				$number = $this->ID;
1946 1946
 
@@ -1957,7 +1957,7 @@  discard block
 block discarded – undo
1957 1957
 	 * @return array The payment object as an array
1958 1958
 	 */
1959 1959
 	public function array_convert() {
1960
-		return get_object_vars( $this );
1960
+		return get_object_vars($this);
1961 1961
 	}
1962 1962
 
1963 1963
 	/**
@@ -1967,7 +1967,7 @@  discard block
 block discarded – undo
1967 1967
 	 * @return string Date payment was completed
1968 1968
 	 */
1969 1969
 	private function get_completed_date() {
1970
-		return apply_filters( 'give_payment_completed_date', $this->completed_date, $this->ID, $this );
1970
+		return apply_filters('give_payment_completed_date', $this->completed_date, $this->ID, $this);
1971 1971
 	}
1972 1972
 
1973 1973
 	/**
@@ -1977,7 +1977,7 @@  discard block
 block discarded – undo
1977 1977
 	 * @return float Payment subtotal
1978 1978
 	 */
1979 1979
 	private function get_subtotal() {
1980
-		return apply_filters( 'give_get_payment_subtotal', $this->subtotal, $this->ID, $this );
1980
+		return apply_filters('give_get_payment_subtotal', $this->subtotal, $this->ID, $this);
1981 1981
 	}
1982 1982
 
1983 1983
 	/**
@@ -1987,7 +1987,7 @@  discard block
 block discarded – undo
1987 1987
 	 * @return string Payment currency code
1988 1988
 	 */
1989 1989
 	private function get_currency() {
1990
-		return apply_filters( 'give_payment_currency_code', $this->currency, $this->ID, $this );
1990
+		return apply_filters('give_payment_currency_code', $this->currency, $this->ID, $this);
1991 1991
 	}
1992 1992
 
1993 1993
 	/**
@@ -1997,7 +1997,7 @@  discard block
 block discarded – undo
1997 1997
 	 * @return string Gateway used
1998 1998
 	 */
1999 1999
 	private function get_gateway() {
2000
-		return apply_filters( 'give_payment_gateway', $this->gateway, $this->ID, $this );
2000
+		return apply_filters('give_payment_gateway', $this->gateway, $this->ID, $this);
2001 2001
 	}
2002 2002
 
2003 2003
 	/**
@@ -2007,7 +2007,7 @@  discard block
 block discarded – undo
2007 2007
 	 * @return string Transaction ID from merchant processor
2008 2008
 	 */
2009 2009
 	private function get_transaction_id() {
2010
-		return apply_filters( 'give_get_payment_transaction_id', $this->transaction_id, $this->ID, $this );
2010
+		return apply_filters('give_get_payment_transaction_id', $this->transaction_id, $this->ID, $this);
2011 2011
 	}
2012 2012
 
2013 2013
 	/**
@@ -2017,7 +2017,7 @@  discard block
 block discarded – undo
2017 2017
 	 * @return string Payment IP address
2018 2018
 	 */
2019 2019
 	private function get_ip() {
2020
-		return apply_filters( 'give_payment_user_ip', $this->ip, $this->ID, $this );
2020
+		return apply_filters('give_payment_user_ip', $this->ip, $this->ID, $this);
2021 2021
 	}
2022 2022
 
2023 2023
 	/**
@@ -2027,7 +2027,7 @@  discard block
 block discarded – undo
2027 2027
 	 * @return int Payment customer ID
2028 2028
 	 */
2029 2029
 	private function get_customer_id() {
2030
-		return apply_filters( 'give_payment_customer_id', $this->customer_id, $this->ID, $this );
2030
+		return apply_filters('give_payment_customer_id', $this->customer_id, $this->ID, $this);
2031 2031
 	}
2032 2032
 
2033 2033
 	/**
@@ -2037,7 +2037,7 @@  discard block
 block discarded – undo
2037 2037
 	 * @return int Payment user ID
2038 2038
 	 */
2039 2039
 	private function get_user_id() {
2040
-		return apply_filters( 'give_payment_user_id', $this->user_id, $this->ID, $this );
2040
+		return apply_filters('give_payment_user_id', $this->user_id, $this->ID, $this);
2041 2041
 	}
2042 2042
 
2043 2043
 	/**
@@ -2047,7 +2047,7 @@  discard block
 block discarded – undo
2047 2047
 	 * @return string Payment customer email
2048 2048
 	 */
2049 2049
 	private function get_email() {
2050
-		return apply_filters( 'give_payment_user_email', $this->email, $this->ID, $this );
2050
+		return apply_filters('give_payment_user_email', $this->email, $this->ID, $this);
2051 2051
 	}
2052 2052
 
2053 2053
 	/**
@@ -2057,7 +2057,7 @@  discard block
 block discarded – undo
2057 2057
 	 * @return array Payment user info
2058 2058
 	 */
2059 2059
 	private function get_user_info() {
2060
-		return apply_filters( 'give_payment_meta_user_info', $this->user_info, $this->ID, $this );
2060
+		return apply_filters('give_payment_meta_user_info', $this->user_info, $this->ID, $this);
2061 2061
 	}
2062 2062
 
2063 2063
 	/**
@@ -2067,7 +2067,7 @@  discard block
 block discarded – undo
2067 2067
 	 * @return array Payment billing address
2068 2068
 	 */
2069 2069
 	private function get_address() {
2070
-		return apply_filters( 'give_payment_address', $this->address, $this->ID, $this );
2070
+		return apply_filters('give_payment_address', $this->address, $this->ID, $this);
2071 2071
 	}
2072 2072
 
2073 2073
 	/**
@@ -2077,7 +2077,7 @@  discard block
 block discarded – undo
2077 2077
 	 * @return string Payment key
2078 2078
 	 */
2079 2079
 	private function get_key() {
2080
-		return apply_filters( 'give_payment_key', $this->key, $this->ID, $this );
2080
+		return apply_filters('give_payment_key', $this->key, $this->ID, $this);
2081 2081
 	}
2082 2082
 
2083 2083
 	/**
@@ -2087,7 +2087,7 @@  discard block
 block discarded – undo
2087 2087
 	 * @return string Payment key
2088 2088
 	 */
2089 2089
 	private function get_form_id() {
2090
-		return apply_filters( 'give_payment_form_id', $this->form_id, $this->ID, $this );
2090
+		return apply_filters('give_payment_form_id', $this->form_id, $this->ID, $this);
2091 2091
 	}
2092 2092
 
2093 2093
 	/**
@@ -2097,7 +2097,7 @@  discard block
 block discarded – undo
2097 2097
 	 * @return int|string Payment number
2098 2098
 	 */
2099 2099
 	private function get_number() {
2100
-		return apply_filters( 'give_payment_number', $this->number, $this->ID, $this );
2100
+		return apply_filters('give_payment_number', $this->number, $this->ID, $this);
2101 2101
 	}
2102 2102
 
2103 2103
 }
Please login to merge, or discard this patch.
includes/payments/functions.php 2 patches
Indentation   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -1788,13 +1788,13 @@  discard block
 block discarded – undo
1788 1788
  * @return string/void
1789 1789
  */
1790 1790
 function give_get_form_dropdown( $args = array(), $echo = false ){
1791
-    $form_dropdown_html = Give()->html->forms_dropdown( $args );
1791
+	$form_dropdown_html = Give()->html->forms_dropdown( $args );
1792 1792
 
1793
-    if( ! $echo ) {
1794
-        return $form_dropdown_html;
1795
-    }
1793
+	if( ! $echo ) {
1794
+		return $form_dropdown_html;
1795
+	}
1796 1796
 
1797
-    echo $form_dropdown_html;
1797
+	echo $form_dropdown_html;
1798 1798
 }
1799 1799
 
1800 1800
 /**
@@ -1809,39 +1809,39 @@  discard block
 block discarded – undo
1809 1809
  */
1810 1810
 function give_get_form_variable_price_dropdown( $args = array(), $echo = false ){
1811 1811
     
1812
-    // Check for give form id.
1813
-    if( empty( $args['id'] ) ) {
1814
-        return false;
1815
-    }
1816
-
1817
-    // Check if form has variable prices or not.
1818
-    if( ! ( $variable_prices = give_has_variable_prices( $args['id'] ) ) ) {
1819
-        return false;
1820
-    }
1812
+	// Check for give form id.
1813
+	if( empty( $args['id'] ) ) {
1814
+		return false;
1815
+	}
1816
+
1817
+	// Check if form has variable prices or not.
1818
+	if( ! ( $variable_prices = give_has_variable_prices( $args['id'] ) ) ) {
1819
+		return false;
1820
+	}
1821 1821
     
1822
-    $variable_prices = give_get_variable_prices( absint( $args['id'] ) );
1823
-    $variable_price_options = array();
1822
+	$variable_prices = give_get_variable_prices( absint( $args['id'] ) );
1823
+	$variable_price_options = array();
1824 1824
 
1825
-    // Check if multi donation form support custom donation or not.
1826
-    if( give_is_custom_price_mode( absint( $args['id'] ) ) ) {
1827
-        $variable_price_options['custom']  = _x( 'Custom', 'custom donation dropdown item', 'give' );
1828
-    }
1825
+	// Check if multi donation form support custom donation or not.
1826
+	if( give_is_custom_price_mode( absint( $args['id'] ) ) ) {
1827
+		$variable_price_options['custom']  = _x( 'Custom', 'custom donation dropdown item', 'give' );
1828
+	}
1829 1829
 
1830
-    // Get variable price and ID from variable price array.
1831
-    foreach ( $variable_prices as $variable_price ) {
1832
-        $variable_price_options[ $variable_price['_give_id']['level_id'] ] =  $variable_price['_give_text'];
1833
-    }
1830
+	// Get variable price and ID from variable price array.
1831
+	foreach ( $variable_prices as $variable_price ) {
1832
+		$variable_price_options[ $variable_price['_give_id']['level_id'] ] =  $variable_price['_give_text'];
1833
+	}
1834 1834
 
1835 1835
 
1836
-    // Update options.
1837
-    $args = array_merge( $args, array( 'options' => $variable_price_options ) );
1836
+	// Update options.
1837
+	$args = array_merge( $args, array( 'options' => $variable_price_options ) );
1838 1838
 
1839
-    // Generate select html.
1840
-    $form_dropdown_html = Give()->html->select( $args );
1839
+	// Generate select html.
1840
+	$form_dropdown_html = Give()->html->select( $args );
1841 1841
 
1842
-    if( ! $echo ) {
1843
-        return $form_dropdown_html;
1844
-    }
1842
+	if( ! $echo ) {
1843
+		return $form_dropdown_html;
1844
+	}
1845 1845
 
1846
-    echo $form_dropdown_html;
1846
+	echo $form_dropdown_html;
1847 1847
 }
1848 1848
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +394 added lines, -394 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
  */
11 11
 
12 12
 // Exit if accessed directly
13
-if ( ! defined( 'ABSPATH' ) ) {
13
+if ( ! defined('ABSPATH')) {
14 14
 	exit;
15 15
 }
16 16
 
@@ -32,15 +32,15 @@  discard block
 block discarded – undo
32 32
  *
33 33
  * @return object $payments Payments retrieved from the database
34 34
  */
35
-function give_get_payments( $args = array() ) {
35
+function give_get_payments($args = array()) {
36 36
 
37 37
 	// Fallback to post objects to ensure backwards compatibility
38
-	if ( ! isset( $args['output'] ) ) {
38
+	if ( ! isset($args['output'])) {
39 39
 		$args['output'] = 'posts';
40 40
 	}
41 41
 
42
-	$args     = apply_filters( 'give_get_payments_args', $args );
43
-	$payments = new Give_Payments_Query( $args );
42
+	$args     = apply_filters('give_get_payments_args', $args);
43
+	$payments = new Give_Payments_Query($args);
44 44
 
45 45
 	return $payments->get_payments();
46 46
 }
@@ -55,48 +55,48 @@  discard block
 block discarded – undo
55 55
  *
56 56
  * @return      mixed
57 57
  */
58
-function give_get_payment_by( $field = '', $value = '' ) {
58
+function give_get_payment_by($field = '', $value = '') {
59 59
 
60
-	if ( empty( $field ) || empty( $value ) ) {
60
+	if (empty($field) || empty($value)) {
61 61
 		return false;
62 62
 	}
63 63
 
64
-	switch ( strtolower( $field ) ) {
64
+	switch (strtolower($field)) {
65 65
 
66 66
 		case 'id':
67
-			$payment = new Give_Payment( $value );
67
+			$payment = new Give_Payment($value);
68 68
 			$id      = $payment->ID;
69 69
 
70
-			if ( empty( $id ) ) {
70
+			if (empty($id)) {
71 71
 				return false;
72 72
 			}
73 73
 
74 74
 			break;
75 75
 
76 76
 		case 'key':
77
-			$payment = give_get_payments( array(
77
+			$payment = give_get_payments(array(
78 78
 				'meta_key'       => '_give_payment_purchase_key',
79 79
 				'meta_value'     => $value,
80 80
 				'posts_per_page' => 1,
81 81
 				'fields'         => 'ids',
82
-			) );
82
+			));
83 83
 
84
-			if ( $payment ) {
85
-				$payment = new Give_Payment( $payment[0] );
84
+			if ($payment) {
85
+				$payment = new Give_Payment($payment[0]);
86 86
 			}
87 87
 
88 88
 			break;
89 89
 
90 90
 		case 'payment_number':
91
-			$payment = give_get_payments( array(
91
+			$payment = give_get_payments(array(
92 92
 				'meta_key'       => '_give_payment_number',
93 93
 				'meta_value'     => $value,
94 94
 				'posts_per_page' => 1,
95 95
 				'fields'         => 'ids',
96
-			) );
96
+			));
97 97
 
98
-			if ( $payment ) {
99
-				$payment = new Give_Payment( $payment[0] );
98
+			if ($payment) {
99
+				$payment = new Give_Payment($payment[0]);
100 100
 			}
101 101
 
102 102
 			break;
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
 			return false;
106 106
 	}
107 107
 
108
-	if ( $payment ) {
108
+	if ($payment) {
109 109
 		return $payment;
110 110
 	}
111 111
 
@@ -121,23 +121,23 @@  discard block
 block discarded – undo
121 121
  *
122 122
  * @return int|bool Payment ID if payment is inserted, false otherwise
123 123
  */
124
-function give_insert_payment( $payment_data = array() ) {
124
+function give_insert_payment($payment_data = array()) {
125 125
 
126
-	if ( empty( $payment_data ) ) {
126
+	if (empty($payment_data)) {
127 127
 		return false;
128 128
 	}
129 129
 
130 130
 	$payment    = new Give_Payment();
131
-	$gateway    = ! empty( $payment_data['gateway'] ) ? $payment_data['gateway'] : '';
132
-	$gateway    = empty( $gateway ) && isset( $_POST['give-gateway'] ) ? $_POST['give-gateway'] : $gateway;
133
-	$form_id    = isset( $payment_data['give_form_id'] ) ? $payment_data['give_form_id'] : 0;
134
-	$price_id   = isset( $payment_data['give_price_id'] ) ? $payment_data['give_price_id'] : give_get_price_id( $payment_data['give_form_id'], $payment_data['price'] );
135
-	$form_title = isset( $payment_data['give_form_title'] ) ? $payment_data['give_form_title'] : get_the_title( $form_id );
131
+	$gateway    = ! empty($payment_data['gateway']) ? $payment_data['gateway'] : '';
132
+	$gateway    = empty($gateway) && isset($_POST['give-gateway']) ? $_POST['give-gateway'] : $gateway;
133
+	$form_id    = isset($payment_data['give_form_id']) ? $payment_data['give_form_id'] : 0;
134
+	$price_id   = isset($payment_data['give_price_id']) ? $payment_data['give_price_id'] : give_get_price_id($payment_data['give_form_id'], $payment_data['price']);
135
+	$form_title = isset($payment_data['give_form_title']) ? $payment_data['give_form_title'] : get_the_title($form_id);
136 136
 
137 137
 	//Set properties
138 138
 	$payment->total          = $payment_data['price'];
139
-	$payment->status         = ! empty( $payment_data['status'] ) ? $payment_data['status'] : 'pending';
140
-	$payment->currency       = ! empty( $payment_data['currency'] ) ? $payment_data['currency'] : give_get_currency();
139
+	$payment->status         = ! empty($payment_data['status']) ? $payment_data['status'] : 'pending';
140
+	$payment->currency       = ! empty($payment_data['currency']) ? $payment_data['currency'] : give_get_currency();
141 141
 	$payment->user_info      = $payment_data['user_info'];
142 142
 	$payment->gateway        = $gateway;
143 143
 	$payment->form_title     = $form_title;
@@ -151,40 +151,40 @@  discard block
 block discarded – undo
151 151
 	$payment->ip             = give_get_ip();
152 152
 	$payment->key            = $payment_data['purchase_key'];
153 153
 	$payment->mode           = give_is_test_mode() ? 'test' : 'live';
154
-	$payment->parent_payment = ! empty( $payment_data['parent'] ) ? absint( $payment_data['parent'] ) : '';
154
+	$payment->parent_payment = ! empty($payment_data['parent']) ? absint($payment_data['parent']) : '';
155 155
 
156 156
 	//Add the donation
157 157
 	$args = array(
158 158
 		'price'    => $payment->total,
159 159
 		'price_id' => $payment->price_id,
160
-		'fees'     => isset( $payment_data['fees'] ) ? $payment_data['fees'] : array()
160
+		'fees'     => isset($payment_data['fees']) ? $payment_data['fees'] : array()
161 161
 	);
162 162
 
163
-	$payment->add_donation( $payment->form_id, $args );
163
+	$payment->add_donation($payment->form_id, $args);
164 164
 
165 165
 	//Set date if present
166
-	if ( isset( $payment_data['post_date'] ) ) {
166
+	if (isset($payment_data['post_date'])) {
167 167
 		$payment->date = $payment_data['post_date'];
168 168
 	}
169 169
 
170 170
 	//Handle sequential payments
171
-	if ( give_get_option( 'enable_sequential' ) ) {
171
+	if (give_get_option('enable_sequential')) {
172 172
 		$number          = give_get_next_payment_number();
173
-		$payment->number = give_format_payment_number( $number );
174
-		update_option( 'give_last_payment_number', $number );
173
+		$payment->number = give_format_payment_number($number);
174
+		update_option('give_last_payment_number', $number);
175 175
 	}
176 176
 
177 177
 	// Clear the user's purchased cache
178
-	delete_transient( 'give_user_' . $payment_data['user_info']['id'] . '_purchases' );
178
+	delete_transient('give_user_'.$payment_data['user_info']['id'].'_purchases');
179 179
 
180 180
 	//Save payment
181 181
 	$payment->save();
182 182
 
183 183
 	//Hook it
184
-	do_action( 'give_insert_payment', $payment->ID, $payment_data );
184
+	do_action('give_insert_payment', $payment->ID, $payment_data);
185 185
 
186 186
 	//Return payment ID upon success
187
-	if ( ! empty( $payment->ID ) ) {
187
+	if ( ! empty($payment->ID)) {
188 188
 		return $payment->ID;
189 189
 	}
190 190
 
@@ -203,9 +203,9 @@  discard block
 block discarded – undo
203 203
  *
204 204
  * @return bool
205 205
  */
206
-function give_update_payment_status( $payment_id, $new_status = 'publish' ) {
206
+function give_update_payment_status($payment_id, $new_status = 'publish') {
207 207
 
208
-	$payment         = new Give_Payment( $payment_id );
208
+	$payment         = new Give_Payment($payment_id);
209 209
 	$payment->status = $new_status;
210 210
 	$updated         = $payment->save();
211 211
 
@@ -225,52 +225,52 @@  discard block
 block discarded – undo
225 225
  *
226 226
  * @return void
227 227
  */
228
-function give_delete_purchase( $payment_id = 0, $update_customer = true ) {
228
+function give_delete_purchase($payment_id = 0, $update_customer = true) {
229 229
 	global $give_logs;
230 230
 
231
-	$payment     = new Give_Payment( $payment_id );
232
-	$amount      = give_get_payment_amount( $payment_id );
231
+	$payment     = new Give_Payment($payment_id);
232
+	$amount      = give_get_payment_amount($payment_id);
233 233
 	$status      = $payment->post_status;
234
-	$customer_id = give_get_payment_customer_id( $payment_id );
235
-	$customer    = new Give_Customer( $customer_id );
234
+	$customer_id = give_get_payment_customer_id($payment_id);
235
+	$customer    = new Give_Customer($customer_id);
236 236
 
237 237
 	//Only undo purchases that aren't these statuses
238
-	$dont_undo_statuses = apply_filters( 'give_undo_purchase_statuses', array(
238
+	$dont_undo_statuses = apply_filters('give_undo_purchase_statuses', array(
239 239
 		'pending',
240 240
 		'cancelled'
241
-	) );
241
+	));
242 242
 
243
-	if ( ! in_array( $status, $dont_undo_statuses ) ) {
244
-		give_undo_purchase( false, $payment_id );
243
+	if ( ! in_array($status, $dont_undo_statuses)) {
244
+		give_undo_purchase(false, $payment_id);
245 245
 	}
246 246
 
247
-	if ( $status == 'publish' ) {
247
+	if ($status == 'publish') {
248 248
 
249 249
 		// Only decrease earnings if they haven't already been decreased (or were never increased for this payment)
250
-		give_decrease_total_earnings( $amount );
250
+		give_decrease_total_earnings($amount);
251 251
 		// Clear the This Month earnings (this_monththis_month is NOT a typo)
252
-		delete_transient( md5( 'give_earnings_this_monththis_month' ) );
252
+		delete_transient(md5('give_earnings_this_monththis_month'));
253 253
 
254
-		if ( $customer->id && $update_customer ) {
254
+		if ($customer->id && $update_customer) {
255 255
 
256 256
 			// Decrement the stats for the customer
257 257
 			$customer->decrease_purchase_count();
258
-			$customer->decrease_value( $amount );
258
+			$customer->decrease_value($amount);
259 259
 
260 260
 		}
261 261
 	}
262 262
 
263
-	do_action( 'give_payment_delete', $payment_id );
263
+	do_action('give_payment_delete', $payment_id);
264 264
 
265
-	if ( $customer->id && $update_customer ) {
265
+	if ($customer->id && $update_customer) {
266 266
 
267 267
 		// Remove the payment ID from the customer
268
-		$customer->remove_payment( $payment_id );
268
+		$customer->remove_payment($payment_id);
269 269
 
270 270
 	}
271 271
 
272 272
 	// Remove the payment
273
-	wp_delete_post( $payment_id, true );
273
+	wp_delete_post($payment_id, true);
274 274
 
275 275
 	// Remove related sale log entries
276 276
 	$give_logs->delete_logs(
@@ -284,7 +284,7 @@  discard block
 block discarded – undo
284 284
 		)
285 285
 	);
286 286
 
287
-	do_action( 'give_payment_deleted', $payment_id );
287
+	do_action('give_payment_deleted', $payment_id);
288 288
 }
289 289
 
290 290
 /**
@@ -297,25 +297,25 @@  discard block
 block discarded – undo
297 297
  *
298 298
  * @return void
299 299
  */
300
-function give_undo_purchase( $form_id = false, $payment_id ) {
300
+function give_undo_purchase($form_id = false, $payment_id) {
301 301
 
302
-	if ( ! empty( $form_id ) ) {
302
+	if ( ! empty($form_id)) {
303 303
 		$form_id = false;
304
-		_give_deprected_argument( 'form_id', 'give_undo_purchase', '1.5' );
304
+		_give_deprected_argument('form_id', 'give_undo_purchase', '1.5');
305 305
 	}
306 306
 
307
-	$payment = new Give_Payment( $payment_id );
307
+	$payment = new Give_Payment($payment_id);
308 308
 
309
-	$maybe_decrease_earnings = apply_filters( 'give_decrease_earnings_on_undo', true, $payment, $payment->form_id );
310
-	if ( true === $maybe_decrease_earnings ) {
309
+	$maybe_decrease_earnings = apply_filters('give_decrease_earnings_on_undo', true, $payment, $payment->form_id);
310
+	if (true === $maybe_decrease_earnings) {
311 311
 		// decrease earnings
312
-		give_decrease_earnings( $payment->form_id, $payment->total );
312
+		give_decrease_earnings($payment->form_id, $payment->total);
313 313
 	}
314 314
 
315
-	$maybe_decrease_sales = apply_filters( 'give_decrease_sales_on_undo', true, $payment, $payment->form_id );
316
-	if ( true === $maybe_decrease_sales ) {
315
+	$maybe_decrease_sales = apply_filters('give_decrease_sales_on_undo', true, $payment, $payment->form_id);
316
+	if (true === $maybe_decrease_sales) {
317 317
 		// decrease purchase count
318
-		give_decrease_purchase_count( $payment->form_id );
318
+		give_decrease_purchase_count($payment->form_id);
319 319
 	}
320 320
 
321 321
 }
@@ -332,7 +332,7 @@  discard block
 block discarded – undo
332 332
  *
333 333
  * @return array $count Number of payments sorted by payment status
334 334
  */
335
-function give_count_payments( $args = array() ) {
335
+function give_count_payments($args = array()) {
336 336
 
337 337
 	global $wpdb;
338 338
 
@@ -344,18 +344,18 @@  discard block
 block discarded – undo
344 344
 		'form_id'    => null,
345 345
 	);
346 346
 
347
-	$args = wp_parse_args( $args, $defaults );
347
+	$args = wp_parse_args($args, $defaults);
348 348
 
349 349
 	$select = "SELECT p.post_status,count( * ) AS num_posts";
350 350
 	$join   = '';
351 351
 	$where  = "WHERE p.post_type = 'give_payment'";
352 352
 
353 353
 	// Count payments for a specific user
354
-	if ( ! empty( $args['user'] ) ) {
354
+	if ( ! empty($args['user'])) {
355 355
 
356
-		if ( is_email( $args['user'] ) ) {
356
+		if (is_email($args['user'])) {
357 357
 			$field = 'email';
358
-		} elseif ( is_numeric( $args['user'] ) ) {
358
+		} elseif (is_numeric($args['user'])) {
359 359
 			$field = 'id';
360 360
 		} else {
361 361
 			$field = '';
@@ -363,108 +363,108 @@  discard block
 block discarded – undo
363 363
 
364 364
 		$join = "LEFT JOIN $wpdb->postmeta m ON (p.ID = m.post_id)";
365 365
 
366
-		if ( ! empty( $field ) ) {
366
+		if ( ! empty($field)) {
367 367
 			$where .= "
368 368
 				AND m.meta_key = '_give_payment_user_{$field}'
369 369
 				AND m.meta_value = '{$args['user']}'";
370 370
 		}
371 371
 
372 372
 		// Count payments for a search
373
-	} elseif ( ! empty( $args['s'] ) ) {
373
+	} elseif ( ! empty($args['s'])) {
374 374
 
375
-		if ( is_email( $args['s'] ) || strlen( $args['s'] ) == 32 ) {
375
+		if (is_email($args['s']) || strlen($args['s']) == 32) {
376 376
 
377
-			if ( is_email( $args['s'] ) ) {
377
+			if (is_email($args['s'])) {
378 378
 				$field = '_give_payment_user_email';
379 379
 			} else {
380 380
 				$field = '_give_payment_purchase_key';
381 381
 			}
382 382
 
383 383
 			$join = "LEFT JOIN $wpdb->postmeta m ON (p.ID = m.post_id)";
384
-			$where .= $wpdb->prepare( "
384
+			$where .= $wpdb->prepare("
385 385
 				AND m.meta_key = %s
386 386
 				AND m.meta_value = %s",
387 387
 				$field,
388 388
 				$args['s']
389 389
 			);
390 390
 
391
-		} elseif ( '#' == substr( $args['s'], 0, 1 ) ) {
391
+		} elseif ('#' == substr($args['s'], 0, 1)) {
392 392
 
393
-			$search = str_replace( '#:', '', $args['s'] );
394
-			$search = str_replace( '#', '', $search );
393
+			$search = str_replace('#:', '', $args['s']);
394
+			$search = str_replace('#', '', $search);
395 395
 
396 396
 			$select = "SELECT p2.post_status,count( * ) AS num_posts ";
397 397
 			$join   = "LEFT JOIN $wpdb->postmeta m ON m.meta_key = '_give_log_payment_id' AND m.post_id = p.ID ";
398 398
 			$join .= "INNER JOIN $wpdb->posts p2 ON m.meta_value = p2.ID ";
399 399
 			$where = "WHERE p.post_type = 'give_log' ";
400
-			$where .= $wpdb->prepare( "AND p.post_parent = %d} ", $search );
400
+			$where .= $wpdb->prepare("AND p.post_parent = %d} ", $search);
401 401
 
402
-		} elseif ( is_numeric( $args['s'] ) ) {
402
+		} elseif (is_numeric($args['s'])) {
403 403
 
404 404
 			$join = "LEFT JOIN $wpdb->postmeta m ON (p.ID = m.post_id)";
405
-			$where .= $wpdb->prepare( "
405
+			$where .= $wpdb->prepare("
406 406
 				AND m.meta_key = '_give_payment_user_id'
407 407
 				AND m.meta_value = %d",
408 408
 				$args['s']
409 409
 			);
410 410
 
411 411
 		} else {
412
-			$search = $wpdb->esc_like( $args['s'] );
413
-			$search = '%' . $search . '%';
412
+			$search = $wpdb->esc_like($args['s']);
413
+			$search = '%'.$search.'%';
414 414
 
415
-			$where .= $wpdb->prepare( "AND ((p.post_title LIKE %s) OR (p.post_content LIKE %s))", $search, $search );
415
+			$where .= $wpdb->prepare("AND ((p.post_title LIKE %s) OR (p.post_content LIKE %s))", $search, $search);
416 416
 		}
417 417
 
418 418
 	}
419 419
 
420
-	if ( ! empty( $args['form_id'] ) && is_numeric( $args['form_id'] ) ) {
420
+	if ( ! empty($args['form_id']) && is_numeric($args['form_id'])) {
421 421
 
422
-		$where .= $wpdb->prepare( " AND p.post_parent = %d", $args['form_id'] );
422
+		$where .= $wpdb->prepare(" AND p.post_parent = %d", $args['form_id']);
423 423
 
424 424
 	}
425 425
 	// Limit payments count by date
426
-	if ( ! empty( $args['start-date'] ) && false !== strpos( $args['start-date'], '/' ) ) {
426
+	if ( ! empty($args['start-date']) && false !== strpos($args['start-date'], '/')) {
427 427
 
428
-		$date_parts = explode( '/', $args['start-date'] );
429
-		$month      = ! empty( $date_parts[0] ) && is_numeric( $date_parts[0] ) ? $date_parts[0] : 0;
430
-		$day        = ! empty( $date_parts[1] ) && is_numeric( $date_parts[1] ) ? $date_parts[1] : 0;
431
-		$year       = ! empty( $date_parts[2] ) && is_numeric( $date_parts[2] ) ? $date_parts[2] : 0;
428
+		$date_parts = explode('/', $args['start-date']);
429
+		$month      = ! empty($date_parts[0]) && is_numeric($date_parts[0]) ? $date_parts[0] : 0;
430
+		$day        = ! empty($date_parts[1]) && is_numeric($date_parts[1]) ? $date_parts[1] : 0;
431
+		$year       = ! empty($date_parts[2]) && is_numeric($date_parts[2]) ? $date_parts[2] : 0;
432 432
 
433
-		$is_date = checkdate( $month, $day, $year );
434
-		if ( false !== $is_date ) {
433
+		$is_date = checkdate($month, $day, $year);
434
+		if (false !== $is_date) {
435 435
 
436
-			$date = new DateTime( $args['start-date'] );
437
-			$where .= $wpdb->prepare( " AND p.post_date >= '%s'", $date->format( 'Y-m-d' ) );
436
+			$date = new DateTime($args['start-date']);
437
+			$where .= $wpdb->prepare(" AND p.post_date >= '%s'", $date->format('Y-m-d'));
438 438
 
439 439
 		}
440 440
 
441 441
 		// Fixes an issue with the payments list table counts when no end date is specified (partiy with stats class)
442
-		if ( empty( $args['end-date'] ) ) {
442
+		if (empty($args['end-date'])) {
443 443
 			$args['end-date'] = $args['start-date'];
444 444
 		}
445 445
 
446 446
 	}
447 447
 
448
-	if ( ! empty ( $args['end-date'] ) && false !== strpos( $args['end-date'], '/' ) ) {
448
+	if ( ! empty ($args['end-date']) && false !== strpos($args['end-date'], '/')) {
449 449
 
450
-		$date_parts = explode( '/', $args['end-date'] );
450
+		$date_parts = explode('/', $args['end-date']);
451 451
 
452
-		$month = ! empty( $date_parts[0] ) ? $date_parts[0] : 0;
453
-		$day   = ! empty( $date_parts[1] ) ? $date_parts[1] : 0;
454
-		$year  = ! empty( $date_parts[2] ) ? $date_parts[2] : 0;
452
+		$month = ! empty($date_parts[0]) ? $date_parts[0] : 0;
453
+		$day   = ! empty($date_parts[1]) ? $date_parts[1] : 0;
454
+		$year  = ! empty($date_parts[2]) ? $date_parts[2] : 0;
455 455
 
456
-		$is_date = checkdate( $month, $day, $year );
457
-		if ( false !== $is_date ) {
456
+		$is_date = checkdate($month, $day, $year);
457
+		if (false !== $is_date) {
458 458
 
459
-			$date = new DateTime( $args['end-date'] );
460
-			$where .= $wpdb->prepare( " AND p.post_date <= '%s'", $date->format( 'Y-m-d' ) );
459
+			$date = new DateTime($args['end-date']);
460
+			$where .= $wpdb->prepare(" AND p.post_date <= '%s'", $date->format('Y-m-d'));
461 461
 
462 462
 		}
463 463
 
464 464
 	}
465 465
 
466
-	$where = apply_filters( 'give_count_payments_where', $where );
467
-	$join  = apply_filters( 'give_count_payments_join', $join );
466
+	$where = apply_filters('give_count_payments_where', $where);
467
+	$join  = apply_filters('give_count_payments_join', $join);
468 468
 
469 469
 	$query = "$select
470 470
 		FROM $wpdb->posts p
@@ -473,36 +473,36 @@  discard block
 block discarded – undo
473 473
 		GROUP BY p.post_status
474 474
 	";
475 475
 
476
-	$cache_key = md5( $query );
476
+	$cache_key = md5($query);
477 477
 
478
-	$count = wp_cache_get( $cache_key, 'counts' );
479
-	if ( false !== $count ) {
478
+	$count = wp_cache_get($cache_key, 'counts');
479
+	if (false !== $count) {
480 480
 		return $count;
481 481
 	}
482 482
 
483
-	$count = $wpdb->get_results( $query, ARRAY_A );
483
+	$count = $wpdb->get_results($query, ARRAY_A);
484 484
 
485 485
 	$stats    = array();
486 486
 	$statuses = get_post_stati();
487
-	if ( isset( $statuses['private'] ) && empty( $args['s'] ) ) {
488
-		unset( $statuses['private'] );
487
+	if (isset($statuses['private']) && empty($args['s'])) {
488
+		unset($statuses['private']);
489 489
 	}
490 490
 
491
-	foreach ( $statuses as $state ) {
492
-		$stats[ $state ] = 0;
491
+	foreach ($statuses as $state) {
492
+		$stats[$state] = 0;
493 493
 	}
494 494
 
495
-	foreach ( (array) $count as $row ) {
495
+	foreach ((array) $count as $row) {
496 496
 
497
-		if ( 'private' == $row['post_status'] && empty( $args['s'] ) ) {
497
+		if ('private' == $row['post_status'] && empty($args['s'])) {
498 498
 			continue;
499 499
 		}
500 500
 
501
-		$stats[ $row['post_status'] ] = $row['num_posts'];
501
+		$stats[$row['post_status']] = $row['num_posts'];
502 502
 	}
503 503
 
504 504
 	$stats = (object) $stats;
505
-	wp_cache_set( $cache_key, $stats, 'counts' );
505
+	wp_cache_set($cache_key, $stats, 'counts');
506 506
 
507 507
 	return $stats;
508 508
 }
@@ -517,12 +517,12 @@  discard block
 block discarded – undo
517 517
  *
518 518
  * @return bool true if payment exists, false otherwise
519 519
  */
520
-function give_check_for_existing_payment( $payment_id ) {
520
+function give_check_for_existing_payment($payment_id) {
521 521
 	$exists  = false;
522
-	$payment = new Give_Payment( $payment_id );
522
+	$payment = new Give_Payment($payment_id);
523 523
 
524 524
 
525
-	if ( $payment_id === $payment->ID && 'publish' === $payment->status ) {
525
+	if ($payment_id === $payment->ID && 'publish' === $payment->status) {
526 526
 		$exists = true;
527 527
 	}
528 528
 
@@ -539,29 +539,29 @@  discard block
 block discarded – undo
539 539
  *
540 540
  * @return bool|mixed if payment status exists, false otherwise
541 541
  */
542
-function give_get_payment_status( $payment, $return_label = false ) {
542
+function give_get_payment_status($payment, $return_label = false) {
543 543
 
544
-	if ( ! is_object( $payment ) || ! isset( $payment->post_status ) ) {
544
+	if ( ! is_object($payment) || ! isset($payment->post_status)) {
545 545
 		return false;
546 546
 	}
547 547
 
548 548
 	$statuses = give_get_payment_statuses();
549 549
 
550
-	if ( ! is_array( $statuses ) || empty( $statuses ) ) {
550
+	if ( ! is_array($statuses) || empty($statuses)) {
551 551
 		return false;
552 552
 	}
553 553
 
554
-	$payment = new Give_Payment( $payment->ID );
554
+	$payment = new Give_Payment($payment->ID);
555 555
 
556
-	if ( array_key_exists( $payment->status, $statuses ) ) {
557
-		if ( true === $return_label ) {
558
-			return $statuses[ $payment->status ];
556
+	if (array_key_exists($payment->status, $statuses)) {
557
+		if (true === $return_label) {
558
+			return $statuses[$payment->status];
559 559
 		} else {
560 560
 			// Account that our 'publish' status is labeled 'Complete'
561 561
 			$post_status = 'publish' == $payment->status ? 'Complete' : $payment->post_status;
562 562
 
563 563
 			// Make sure we're matching cases, since they matter
564
-			return array_search( strtolower( $post_status ), array_map( 'strtolower', $statuses ) );
564
+			return array_search(strtolower($post_status), array_map('strtolower', $statuses));
565 565
 		}
566 566
 	}
567 567
 
@@ -576,17 +576,17 @@  discard block
 block discarded – undo
576 576
  */
577 577
 function give_get_payment_statuses() {
578 578
 	$payment_statuses = array(
579
-		'pending'     => __( 'Pending', 'give' ),
580
-		'publish'     => __( 'Complete', 'give' ),
581
-		'refunded'    => __( 'Refunded', 'give' ),
582
-		'failed'      => __( 'Failed', 'give' ),
583
-		'cancelled'   => __( 'Cancelled', 'give' ),
584
-		'abandoned'   => __( 'Abandoned', 'give' ),
585
-		'preapproval' => __( 'Pre-Approved', 'give' ),
586
-		'revoked'     => __( 'Revoked', 'give' )
579
+		'pending'     => __('Pending', 'give'),
580
+		'publish'     => __('Complete', 'give'),
581
+		'refunded'    => __('Refunded', 'give'),
582
+		'failed'      => __('Failed', 'give'),
583
+		'cancelled'   => __('Cancelled', 'give'),
584
+		'abandoned'   => __('Abandoned', 'give'),
585
+		'preapproval' => __('Pre-Approved', 'give'),
586
+		'revoked'     => __('Revoked', 'give')
587 587
 	);
588 588
 
589
-	return apply_filters( 'give_payment_statuses', $payment_statuses );
589
+	return apply_filters('give_payment_statuses', $payment_statuses);
590 590
 }
591 591
 
592 592
 /**
@@ -598,10 +598,10 @@  discard block
 block discarded – undo
598 598
  * @return array $payment_status All the available payment statuses
599 599
  */
600 600
 function give_get_payment_status_keys() {
601
-	$statuses = array_keys( give_get_payment_statuses() );
602
-	asort( $statuses );
601
+	$statuses = array_keys(give_get_payment_statuses());
602
+	asort($statuses);
603 603
 
604
-	return array_values( $statuses );
604
+	return array_values($statuses);
605 605
 }
606 606
 
607 607
 /**
@@ -616,7 +616,7 @@  discard block
 block discarded – undo
616 616
  *
617 617
  * @return int $earnings Earnings
618 618
  */
619
-function give_get_earnings_by_date( $day = null, $month_num, $year = null, $hour = null ) {
619
+function give_get_earnings_by_date($day = null, $month_num, $year = null, $hour = null) {
620 620
 
621 621
 	// This is getting deprecated soon. Use Give_Payment_Stats with the get_earnings() method instead
622 622
 
@@ -627,41 +627,41 @@  discard block
 block discarded – undo
627 627
 		'nopaging'               => true,
628 628
 		'year'                   => $year,
629 629
 		'monthnum'               => $month_num,
630
-		'post_status'            => array( 'publish', 'revoked' ),
630
+		'post_status'            => array('publish', 'revoked'),
631 631
 		'fields'                 => 'ids',
632 632
 		'update_post_term_cache' => false
633 633
 	);
634
-	if ( ! empty( $day ) ) {
634
+	if ( ! empty($day)) {
635 635
 		$args['day'] = $day;
636 636
 	}
637 637
 
638
-	if ( ! empty( $hour ) ) {
638
+	if ( ! empty($hour)) {
639 639
 		$args['hour'] = $hour;
640 640
 	}
641 641
 
642
-	$args = apply_filters( 'give_get_earnings_by_date_args', $args );
643
-	$key  = 'give_stats_' . substr( md5( serialize( $args ) ), 0, 15 );
642
+	$args = apply_filters('give_get_earnings_by_date_args', $args);
643
+	$key  = 'give_stats_'.substr(md5(serialize($args)), 0, 15);
644 644
 
645
-	if ( ! empty( $_GET['_wpnonce'] ) && wp_verify_nonce( $_GET['_wpnonce'], 'give-refresh-reports' ) ) {
645
+	if ( ! empty($_GET['_wpnonce']) && wp_verify_nonce($_GET['_wpnonce'], 'give-refresh-reports')) {
646 646
 		$earnings = false;
647 647
 	} else {
648
-		$earnings = get_transient( $key );
648
+		$earnings = get_transient($key);
649 649
 	}
650 650
 
651
-	if ( false === $earnings ) {
652
-		$sales    = get_posts( $args );
651
+	if (false === $earnings) {
652
+		$sales    = get_posts($args);
653 653
 		$earnings = 0;
654
-		if ( $sales ) {
655
-			$sales = implode( ',', $sales );
654
+		if ($sales) {
655
+			$sales = implode(',', $sales);
656 656
 
657
-			$earnings = $wpdb->get_var( "SELECT SUM(meta_value) FROM $wpdb->postmeta WHERE meta_key = '_give_payment_total' AND post_id IN ({$sales})" );
657
+			$earnings = $wpdb->get_var("SELECT SUM(meta_value) FROM $wpdb->postmeta WHERE meta_key = '_give_payment_total' AND post_id IN ({$sales})");
658 658
 
659 659
 		}
660 660
 		// Cache the results for one hour
661
-		set_transient( $key, $earnings, HOUR_IN_SECONDS );
661
+		set_transient($key, $earnings, HOUR_IN_SECONDS);
662 662
 	}
663 663
 
664
-	return round( $earnings, 2 );
664
+	return round($earnings, 2);
665 665
 }
666 666
 
667 667
 /**
@@ -676,7 +676,7 @@  discard block
 block discarded – undo
676 676
  *
677 677
  * @return int $count Sales
678 678
  */
679
-function give_get_sales_by_date( $day = null, $month_num = null, $year = null, $hour = null ) {
679
+function give_get_sales_by_date($day = null, $month_num = null, $year = null, $hour = null) {
680 680
 
681 681
 	// This is getting deprecated soon. Use Give_Payment_Stats with the get_sales() method instead
682 682
 	$args = array(
@@ -684,14 +684,14 @@  discard block
 block discarded – undo
684 684
 		'nopaging'               => true,
685 685
 		'year'                   => $year,
686 686
 		'fields'                 => 'ids',
687
-		'post_status'            => array( 'publish', 'revoked' ),
687
+		'post_status'            => array('publish', 'revoked'),
688 688
 		'update_post_meta_cache' => false,
689 689
 		'update_post_term_cache' => false
690 690
 	);
691 691
 
692
-	$show_free = apply_filters( 'give_sales_by_date_show_free', true, $args );
692
+	$show_free = apply_filters('give_sales_by_date_show_free', true, $args);
693 693
 
694
-	if ( false === $show_free ) {
694
+	if (false === $show_free) {
695 695
 		$args['meta_query'] = array(
696 696
 			array(
697 697
 				'key'     => '_give_payment_total',
@@ -702,33 +702,33 @@  discard block
 block discarded – undo
702 702
 		);
703 703
 	}
704 704
 
705
-	if ( ! empty( $month_num ) ) {
705
+	if ( ! empty($month_num)) {
706 706
 		$args['monthnum'] = $month_num;
707 707
 	}
708 708
 
709
-	if ( ! empty( $day ) ) {
709
+	if ( ! empty($day)) {
710 710
 		$args['day'] = $day;
711 711
 	}
712 712
 
713
-	if ( ! empty( $hour ) ) {
713
+	if ( ! empty($hour)) {
714 714
 		$args['hour'] = $hour;
715 715
 	}
716 716
 
717
-	$args = apply_filters( 'give_get_sales_by_date_args', $args );
717
+	$args = apply_filters('give_get_sales_by_date_args', $args);
718 718
 
719
-	$key = 'give_stats_' . substr( md5( serialize( $args ) ), 0, 15 );
719
+	$key = 'give_stats_'.substr(md5(serialize($args)), 0, 15);
720 720
 
721
-	if ( ! empty( $_GET['_wpnonce'] ) && wp_verify_nonce( $_GET['_wpnonce'], 'give-refresh-reports' ) ) {
721
+	if ( ! empty($_GET['_wpnonce']) && wp_verify_nonce($_GET['_wpnonce'], 'give-refresh-reports')) {
722 722
 		$count = false;
723 723
 	} else {
724
-		$count = get_transient( $key );
724
+		$count = get_transient($key);
725 725
 	}
726 726
 
727
-	if ( false === $count ) {
728
-		$sales = new WP_Query( $args );
727
+	if (false === $count) {
728
+		$sales = new WP_Query($args);
729 729
 		$count = (int) $sales->post_count;
730 730
 		// Cache the results for one hour
731
-		set_transient( $key, $count, HOUR_IN_SECONDS );
731
+		set_transient($key, $count, HOUR_IN_SECONDS);
732 732
 	}
733 733
 
734 734
 	return $count;
@@ -743,20 +743,20 @@  discard block
 block discarded – undo
743 743
  *
744 744
  * @return bool true if complete, false otherwise
745 745
  */
746
-function give_is_payment_complete( $payment_id ) {
747
-	$payment = new Give_Payment( $payment_id );
746
+function give_is_payment_complete($payment_id) {
747
+	$payment = new Give_Payment($payment_id);
748 748
 
749 749
 	$ret = false;
750 750
 
751
-	if ( $payment->ID > 0 ) {
751
+	if ($payment->ID > 0) {
752 752
 
753
-		if ( (int) $payment_id === (int) $payment->ID && 'publish' == $payment->status ) {
753
+		if ((int) $payment_id === (int) $payment->ID && 'publish' == $payment->status) {
754 754
 			$ret = true;
755 755
 		}
756 756
 
757 757
 	}
758 758
 
759
-	return apply_filters( 'give_is_payment_complete', $ret, $payment_id, $payment->post_status );
759
+	return apply_filters('give_is_payment_complete', $ret, $payment_id, $payment->post_status);
760 760
 }
761 761
 
762 762
 /**
@@ -780,29 +780,29 @@  discard block
 block discarded – undo
780 780
  */
781 781
 function give_get_total_earnings() {
782 782
 
783
-	$total = get_option( 'give_earnings_total', false );
783
+	$total = get_option('give_earnings_total', false);
784 784
 
785 785
 	// If no total stored in DB, use old method of calculating total earnings
786
-	if ( false === $total ) {
786
+	if (false === $total) {
787 787
 
788 788
 		global $wpdb;
789 789
 
790
-		$total = get_transient( 'give_earnings_total' );
790
+		$total = get_transient('give_earnings_total');
791 791
 
792
-		if ( false === $total ) {
792
+		if (false === $total) {
793 793
 
794 794
 			$total = (float) 0;
795 795
 
796
-			$args = apply_filters( 'give_get_total_earnings_args', array(
796
+			$args = apply_filters('give_get_total_earnings_args', array(
797 797
 				'offset' => 0,
798
-				'number' => - 1,
799
-				'status' => array( 'publish', 'revoked' ),
798
+				'number' => -1,
799
+				'status' => array('publish', 'revoked'),
800 800
 				'fields' => 'ids'
801
-			) );
801
+			));
802 802
 
803 803
 
804
-			$payments = give_get_payments( $args );
805
-			if ( $payments ) {
804
+			$payments = give_get_payments($args);
805
+			if ($payments) {
806 806
 
807 807
 				/*
808 808
 				 * If performing a purchase, we need to skip the very last payment in the database, since it calls
@@ -810,30 +810,30 @@  discard block
 block discarded – undo
810 810
 				 * first purchase
811 811
 				 */
812 812
 
813
-				if ( did_action( 'give_update_payment_status' ) ) {
814
-					array_pop( $payments );
813
+				if (did_action('give_update_payment_status')) {
814
+					array_pop($payments);
815 815
 				}
816 816
 
817
-				if ( ! empty( $payments ) ) {
818
-					$payments = implode( ',', $payments );
819
-					$total += $wpdb->get_var( "SELECT SUM(meta_value) FROM $wpdb->postmeta WHERE meta_key = '_give_payment_total' AND post_id IN({$payments})" );
817
+				if ( ! empty($payments)) {
818
+					$payments = implode(',', $payments);
819
+					$total += $wpdb->get_var("SELECT SUM(meta_value) FROM $wpdb->postmeta WHERE meta_key = '_give_payment_total' AND post_id IN({$payments})");
820 820
 				}
821 821
 
822 822
 			}
823 823
 
824 824
 			// Cache results for 1 day. This cache is cleared automatically when a payment is made
825
-			set_transient( 'give_earnings_total', $total, 86400 );
825
+			set_transient('give_earnings_total', $total, 86400);
826 826
 
827 827
 			// Store the total for the first time
828
-			update_option( 'give_earnings_total', $total );
828
+			update_option('give_earnings_total', $total);
829 829
 		}
830 830
 	}
831 831
 
832
-	if ( $total < 0 ) {
832
+	if ($total < 0) {
833 833
 		$total = 0; // Don't ever show negative earnings
834 834
 	}
835 835
 
836
-	return apply_filters( 'give_total_earnings', round( $total, give_currency_decimal_filter() ) );
836
+	return apply_filters('give_total_earnings', round($total, give_currency_decimal_filter()));
837 837
 }
838 838
 
839 839
 /**
@@ -845,10 +845,10 @@  discard block
 block discarded – undo
845 845
  *
846 846
  * @return float $total Total earnings
847 847
  */
848
-function give_increase_total_earnings( $amount = 0 ) {
848
+function give_increase_total_earnings($amount = 0) {
849 849
 	$total = give_get_total_earnings();
850 850
 	$total += $amount;
851
-	update_option( 'give_earnings_total', $total );
851
+	update_option('give_earnings_total', $total);
852 852
 
853 853
 	return $total;
854 854
 }
@@ -862,13 +862,13 @@  discard block
 block discarded – undo
862 862
  *
863 863
  * @return float $total Total earnings
864 864
  */
865
-function give_decrease_total_earnings( $amount = 0 ) {
865
+function give_decrease_total_earnings($amount = 0) {
866 866
 	$total = give_get_total_earnings();
867 867
 	$total -= $amount;
868
-	if ( $total < 0 ) {
868
+	if ($total < 0) {
869 869
 		$total = 0;
870 870
 	}
871
-	update_option( 'give_earnings_total', $total );
871
+	update_option('give_earnings_total', $total);
872 872
 
873 873
 	return $total;
874 874
 }
@@ -884,10 +884,10 @@  discard block
 block discarded – undo
884 884
  *
885 885
  * @return mixed $meta Payment Meta
886 886
  */
887
-function give_get_payment_meta( $payment_id = 0, $meta_key = '_give_payment_meta', $single = true ) {
888
-	$payment = new Give_Payment( $payment_id );
887
+function give_get_payment_meta($payment_id = 0, $meta_key = '_give_payment_meta', $single = true) {
888
+	$payment = new Give_Payment($payment_id);
889 889
 
890
-	return $payment->get_meta( $meta_key, $single );
890
+	return $payment->get_meta($meta_key, $single);
891 891
 }
892 892
 
893 893
 /**
@@ -900,10 +900,10 @@  discard block
 block discarded – undo
900 900
  *
901 901
  * @return mixed               Meta ID if successful, false if unsuccessful
902 902
  */
903
-function give_update_payment_meta( $payment_id = 0, $meta_key = '', $meta_value = '', $prev_value = '' ) {
904
-	$payment = new Give_Payment( $payment_id );
903
+function give_update_payment_meta($payment_id = 0, $meta_key = '', $meta_value = '', $prev_value = '') {
904
+	$payment = new Give_Payment($payment_id);
905 905
 
906
-	return $payment->update_meta( $meta_key, $meta_value, $prev_value );
906
+	return $payment->update_meta($meta_key, $meta_value, $prev_value);
907 907
 }
908 908
 
909 909
 /**
@@ -915,8 +915,8 @@  discard block
 block discarded – undo
915 915
  *
916 916
  * @return array $user_info User Info Meta Values
917 917
  */
918
-function give_get_payment_meta_user_info( $payment_id ) {
919
-	$payment = new Give_Payment( $payment_id );
918
+function give_get_payment_meta_user_info($payment_id) {
919
+	$payment = new Give_Payment($payment_id);
920 920
 
921 921
 	return $payment->user_info;
922 922
 }
@@ -931,8 +931,8 @@  discard block
 block discarded – undo
931 931
  *
932 932
  * @return int $form_id
933 933
  */
934
-function give_get_payment_form_id( $payment_id ) {
935
-	$payment = new Give_Payment( $payment_id );
934
+function give_get_payment_form_id($payment_id) {
935
+	$payment = new Give_Payment($payment_id);
936 936
 
937 937
 	return $payment->form_id;
938 938
 }
@@ -946,8 +946,8 @@  discard block
 block discarded – undo
946 946
  *
947 947
  * @return string $email User Email
948 948
  */
949
-function give_get_payment_user_email( $payment_id ) {
950
-	$payment = new Give_Payment( $payment_id );
949
+function give_get_payment_user_email($payment_id) {
950
+	$payment = new Give_Payment($payment_id);
951 951
 
952 952
 	return $payment->email;
953 953
 }
@@ -961,11 +961,11 @@  discard block
 block discarded – undo
961 961
  *
962 962
  * @return bool            If the payment is associated with a user (false) or not (true)
963 963
  */
964
-function give_is_guest_payment( $payment_id ) {
965
-	$payment_user_id  = give_get_payment_user_id( $payment_id );
966
-	$is_guest_payment = ! empty( $payment_user_id ) && $payment_user_id > 0 ? false : true;
964
+function give_is_guest_payment($payment_id) {
965
+	$payment_user_id  = give_get_payment_user_id($payment_id);
966
+	$is_guest_payment = ! empty($payment_user_id) && $payment_user_id > 0 ? false : true;
967 967
 
968
-	return (bool) apply_filters( 'give_is_guest_payment', $is_guest_payment, $payment_id );
968
+	return (bool) apply_filters('give_is_guest_payment', $is_guest_payment, $payment_id);
969 969
 }
970 970
 
971 971
 /**
@@ -977,8 +977,8 @@  discard block
 block discarded – undo
977 977
  *
978 978
  * @return string $user_id User ID
979 979
  */
980
-function give_get_payment_user_id( $payment_id ) {
981
-	$payment = new Give_Payment( $payment_id );
980
+function give_get_payment_user_id($payment_id) {
981
+	$payment = new Give_Payment($payment_id);
982 982
 
983 983
 	return $payment->user_id;
984 984
 }
@@ -992,8 +992,8 @@  discard block
 block discarded – undo
992 992
  *
993 993
  * @return string $customer_id Customer ID
994 994
  */
995
-function give_get_payment_customer_id( $payment_id ) {
996
-	$payment = new Give_Payment( $payment_id );
995
+function give_get_payment_customer_id($payment_id) {
996
+	$payment = new Give_Payment($payment_id);
997 997
 
998 998
 	return $payment->customer_id;
999 999
 }
@@ -1007,8 +1007,8 @@  discard block
 block discarded – undo
1007 1007
  *
1008 1008
  * @return string $ip User IP
1009 1009
  */
1010
-function give_get_payment_user_ip( $payment_id ) {
1011
-	$payment = new Give_Payment( $payment_id );
1010
+function give_get_payment_user_ip($payment_id) {
1011
+	$payment = new Give_Payment($payment_id);
1012 1012
 
1013 1013
 	return $payment->ip;
1014 1014
 }
@@ -1022,8 +1022,8 @@  discard block
 block discarded – undo
1022 1022
  *
1023 1023
  * @return string $date The date the payment was completed
1024 1024
  */
1025
-function give_get_payment_completed_date( $payment_id = 0 ) {
1026
-	$payment = new Give_Payment( $payment_id );
1025
+function give_get_payment_completed_date($payment_id = 0) {
1026
+	$payment = new Give_Payment($payment_id);
1027 1027
 
1028 1028
 	return $payment->completed_date;
1029 1029
 }
@@ -1037,8 +1037,8 @@  discard block
 block discarded – undo
1037 1037
  *
1038 1038
  * @return string $gateway Gateway
1039 1039
  */
1040
-function give_get_payment_gateway( $payment_id ) {
1041
-	$payment = new Give_Payment( $payment_id );
1040
+function give_get_payment_gateway($payment_id) {
1041
+	$payment = new Give_Payment($payment_id);
1042 1042
 
1043 1043
 	return $payment->gateway;
1044 1044
 }
@@ -1052,8 +1052,8 @@  discard block
 block discarded – undo
1052 1052
  *
1053 1053
  * @return string $currency The currency code
1054 1054
  */
1055
-function give_get_payment_currency_code( $payment_id = 0 ) {
1056
-	$payment = new Give_Payment( $payment_id );
1055
+function give_get_payment_currency_code($payment_id = 0) {
1056
+	$payment = new Give_Payment($payment_id);
1057 1057
 
1058 1058
 	return $payment->currency;
1059 1059
 }
@@ -1067,10 +1067,10 @@  discard block
 block discarded – undo
1067 1067
  *
1068 1068
  * @return string $currency The currency name
1069 1069
  */
1070
-function give_get_payment_currency( $payment_id = 0 ) {
1071
-	$currency = give_get_payment_currency_code( $payment_id );
1070
+function give_get_payment_currency($payment_id = 0) {
1071
+	$currency = give_get_payment_currency_code($payment_id);
1072 1072
 
1073
-	return apply_filters( 'give_payment_currency', give_get_currency_name( $currency ), $payment_id );
1073
+	return apply_filters('give_payment_currency', give_get_currency_name($currency), $payment_id);
1074 1074
 }
1075 1075
 
1076 1076
 /**
@@ -1082,8 +1082,8 @@  discard block
 block discarded – undo
1082 1082
  *
1083 1083
  * @return string $key Purchase key
1084 1084
  */
1085
-function give_get_payment_key( $payment_id = 0 ) {
1086
-	$payment = new Give_Payment( $payment_id );
1085
+function give_get_payment_key($payment_id = 0) {
1086
+	$payment = new Give_Payment($payment_id);
1087 1087
 
1088 1088
 	return $payment->key;
1089 1089
 }
@@ -1099,8 +1099,8 @@  discard block
 block discarded – undo
1099 1099
  *
1100 1100
  * @return string $number Payment order number
1101 1101
  */
1102
-function give_get_payment_number( $payment_id = 0 ) {
1103
-	$payment = new Give_Payment( $payment_id );
1102
+function give_get_payment_number($payment_id = 0) {
1103
+	$payment = new Give_Payment($payment_id);
1104 1104
 
1105 1105
 	return $payment->number;
1106 1106
 }
@@ -1114,23 +1114,23 @@  discard block
 block discarded – undo
1114 1114
  *
1115 1115
  * @return string      The formatted payment number
1116 1116
  */
1117
-function give_format_payment_number( $number ) {
1117
+function give_format_payment_number($number) {
1118 1118
 
1119
-	if ( ! give_get_option( 'enable_sequential' ) ) {
1119
+	if ( ! give_get_option('enable_sequential')) {
1120 1120
 		return $number;
1121 1121
 	}
1122 1122
 
1123
-	if ( ! is_numeric( $number ) ) {
1123
+	if ( ! is_numeric($number)) {
1124 1124
 		return $number;
1125 1125
 	}
1126 1126
 
1127
-	$prefix  = give_get_option( 'sequential_prefix' );
1128
-	$number  = absint( $number );
1129
-	$postfix = give_get_option( 'sequential_postfix' );
1127
+	$prefix  = give_get_option('sequential_prefix');
1128
+	$number  = absint($number);
1129
+	$postfix = give_get_option('sequential_postfix');
1130 1130
 
1131
-	$formatted_number = $prefix . $number . $postfix;
1131
+	$formatted_number = $prefix.$number.$postfix;
1132 1132
 
1133
-	return apply_filters( 'give_format_payment_number', $formatted_number, $prefix, $number, $postfix );
1133
+	return apply_filters('give_format_payment_number', $formatted_number, $prefix, $number, $postfix);
1134 1134
 }
1135 1135
 
1136 1136
 /**
@@ -1143,17 +1143,17 @@  discard block
 block discarded – undo
1143 1143
  */
1144 1144
 function give_get_next_payment_number() {
1145 1145
 
1146
-	if ( ! give_get_option( 'enable_sequential' ) ) {
1146
+	if ( ! give_get_option('enable_sequential')) {
1147 1147
 		return false;
1148 1148
 	}
1149 1149
 
1150
-	$number           = get_option( 'give_last_payment_number' );
1151
-	$start            = give_get_option( 'sequential_start', 1 );
1150
+	$number           = get_option('give_last_payment_number');
1151
+	$start            = give_get_option('sequential_start', 1);
1152 1152
 	$increment_number = true;
1153 1153
 
1154
-	if ( false !== $number ) {
1154
+	if (false !== $number) {
1155 1155
 
1156
-		if ( empty( $number ) ) {
1156
+		if (empty($number)) {
1157 1157
 
1158 1158
 			$number           = $start;
1159 1159
 			$increment_number = false;
@@ -1163,24 +1163,24 @@  discard block
 block discarded – undo
1163 1163
 	} else {
1164 1164
 
1165 1165
 		// This case handles the first addition of the new option, as well as if it get's deleted for any reason
1166
-		$payments     = new Give_Payments_Query( array(
1166
+		$payments = new Give_Payments_Query(array(
1167 1167
 			'number'  => 1,
1168 1168
 			'order'   => 'DESC',
1169 1169
 			'orderby' => 'ID',
1170 1170
 			'output'  => 'posts',
1171 1171
 			'fields'  => 'ids'
1172
-		) );
1172
+		));
1173 1173
 		$last_payment = $payments->get_payments();
1174 1174
 
1175
-		if ( ! empty( $last_payment ) ) {
1175
+		if ( ! empty($last_payment)) {
1176 1176
 
1177
-			$number = give_get_payment_number( $last_payment[0] );
1177
+			$number = give_get_payment_number($last_payment[0]);
1178 1178
 
1179 1179
 		}
1180 1180
 
1181
-		if ( ! empty( $number ) && $number !== (int) $last_payment[0] ) {
1181
+		if ( ! empty($number) && $number !== (int) $last_payment[0]) {
1182 1182
 
1183
-			$number = give_remove_payment_prefix_postfix( $number );
1183
+			$number = give_remove_payment_prefix_postfix($number);
1184 1184
 
1185 1185
 		} else {
1186 1186
 
@@ -1190,13 +1190,13 @@  discard block
 block discarded – undo
1190 1190
 
1191 1191
 	}
1192 1192
 
1193
-	$increment_number = apply_filters( 'give_increment_payment_number', $increment_number, $number );
1193
+	$increment_number = apply_filters('give_increment_payment_number', $increment_number, $number);
1194 1194
 
1195
-	if ( $increment_number ) {
1196
-		$number ++;
1195
+	if ($increment_number) {
1196
+		$number++;
1197 1197
 	}
1198 1198
 
1199
-	return apply_filters( 'give_get_next_payment_number', $number );
1199
+	return apply_filters('give_get_next_payment_number', $number);
1200 1200
 }
1201 1201
 
1202 1202
 /**
@@ -1208,25 +1208,25 @@  discard block
 block discarded – undo
1208 1208
  *
1209 1209
  * @return string          The new Payment number without prefix and postfix
1210 1210
  */
1211
-function give_remove_payment_prefix_postfix( $number ) {
1211
+function give_remove_payment_prefix_postfix($number) {
1212 1212
 
1213
-	$prefix  = give_get_option( 'sequential_prefix' );
1214
-	$postfix = give_get_option( 'sequential_postfix' );
1213
+	$prefix  = give_get_option('sequential_prefix');
1214
+	$postfix = give_get_option('sequential_postfix');
1215 1215
 
1216 1216
 	// Remove prefix
1217
-	$number = preg_replace( '/' . $prefix . '/', '', $number, 1 );
1217
+	$number = preg_replace('/'.$prefix.'/', '', $number, 1);
1218 1218
 
1219 1219
 	// Remove the postfix
1220
-	$length      = strlen( $number );
1221
-	$postfix_pos = strrpos( $number, $postfix );
1222
-	if ( false !== $postfix_pos ) {
1223
-		$number = substr_replace( $number, '', $postfix_pos, $length );
1220
+	$length      = strlen($number);
1221
+	$postfix_pos = strrpos($number, $postfix);
1222
+	if (false !== $postfix_pos) {
1223
+		$number = substr_replace($number, '', $postfix_pos, $length);
1224 1224
 	}
1225 1225
 
1226 1226
 	// Ensure it's a whole number
1227
-	$number = intval( $number );
1227
+	$number = intval($number);
1228 1228
 
1229
-	return apply_filters( 'give_remove_payment_prefix_postfix', $number, $prefix, $postfix );
1229
+	return apply_filters('give_remove_payment_prefix_postfix', $number, $prefix, $postfix);
1230 1230
 
1231 1231
 }
1232 1232
 
@@ -1242,10 +1242,10 @@  discard block
 block discarded – undo
1242 1242
  *
1243 1243
  * @return string $amount Fully formatted payment amount
1244 1244
  */
1245
-function give_payment_amount( $payment_id = 0 ) {
1246
-	$amount = give_get_payment_amount( $payment_id );
1245
+function give_payment_amount($payment_id = 0) {
1246
+	$amount = give_get_payment_amount($payment_id);
1247 1247
 
1248
-	return give_currency_filter( give_format_amount( $amount ), give_get_payment_currency_code( $payment_id ) );
1248
+	return give_currency_filter(give_format_amount($amount), give_get_payment_currency_code($payment_id));
1249 1249
 }
1250 1250
 
1251 1251
 /**
@@ -1258,11 +1258,11 @@  discard block
 block discarded – undo
1258 1258
  *
1259 1259
  * @return mixed|void
1260 1260
  */
1261
-function give_get_payment_amount( $payment_id ) {
1261
+function give_get_payment_amount($payment_id) {
1262 1262
 
1263
-	$payment = new Give_Payment( $payment_id );
1263
+	$payment = new Give_Payment($payment_id);
1264 1264
 
1265
-	return apply_filters( 'give_payment_amount', floatval( $payment->total ), $payment_id );
1265
+	return apply_filters('give_payment_amount', floatval($payment->total), $payment_id);
1266 1266
 }
1267 1267
 
1268 1268
 /**
@@ -1278,10 +1278,10 @@  discard block
 block discarded – undo
1278 1278
  *
1279 1279
  * @return array Fully formatted payment subtotal
1280 1280
  */
1281
-function give_payment_subtotal( $payment_id = 0 ) {
1282
-	$subtotal = give_get_payment_subtotal( $payment_id );
1281
+function give_payment_subtotal($payment_id = 0) {
1282
+	$subtotal = give_get_payment_subtotal($payment_id);
1283 1283
 
1284
-	return give_currency_filter( give_format_amount( $subtotal ), give_get_payment_currency_code( $payment_id ) );
1284
+	return give_currency_filter(give_format_amount($subtotal), give_get_payment_currency_code($payment_id));
1285 1285
 }
1286 1286
 
1287 1287
 /**
@@ -1295,8 +1295,8 @@  discard block
 block discarded – undo
1295 1295
  *
1296 1296
  * @return float $subtotal Subtotal for payment (non formatted)
1297 1297
  */
1298
-function give_get_payment_subtotal( $payment_id = 0 ) {
1299
-	$payment = new G_Payment( $payment_id );
1298
+function give_get_payment_subtotal($payment_id = 0) {
1299
+	$payment = new G_Payment($payment_id);
1300 1300
 
1301 1301
 	return $payment->subtotal;
1302 1302
 }
@@ -1311,10 +1311,10 @@  discard block
 block discarded – undo
1311 1311
  *
1312 1312
  * @return mixed array if payment fees found, false otherwise
1313 1313
  */
1314
-function give_get_payment_fees( $payment_id = 0, $type = 'all' ) {
1315
-	$payment = new Give_Payment( $payment_id );
1314
+function give_get_payment_fees($payment_id = 0, $type = 'all') {
1315
+	$payment = new Give_Payment($payment_id);
1316 1316
 
1317
-	return $payment->get_fees( $type );
1317
+	return $payment->get_fees($type);
1318 1318
 }
1319 1319
 
1320 1320
 /**
@@ -1326,8 +1326,8 @@  discard block
 block discarded – undo
1326 1326
  *
1327 1327
  * @return string The Transaction ID
1328 1328
  */
1329
-function give_get_payment_transaction_id( $payment_id = 0 ) {
1330
-	$payment = new Give_Payment( $payment_id );
1329
+function give_get_payment_transaction_id($payment_id = 0) {
1330
+	$payment = new Give_Payment($payment_id);
1331 1331
 
1332 1332
 	return $payment->transaction_id;
1333 1333
 }
@@ -1342,15 +1342,15 @@  discard block
 block discarded – undo
1342 1342
  *
1343 1343
  * @return bool|mixed
1344 1344
  */
1345
-function give_set_payment_transaction_id( $payment_id = 0, $transaction_id = '' ) {
1345
+function give_set_payment_transaction_id($payment_id = 0, $transaction_id = '') {
1346 1346
 
1347
-	if ( empty( $payment_id ) || empty( $transaction_id ) ) {
1347
+	if (empty($payment_id) || empty($transaction_id)) {
1348 1348
 		return false;
1349 1349
 	}
1350 1350
 
1351
-	$transaction_id = apply_filters( 'give_set_payment_transaction_id', $transaction_id, $payment_id );
1351
+	$transaction_id = apply_filters('give_set_payment_transaction_id', $transaction_id, $payment_id);
1352 1352
 
1353
-	return give_update_payment_meta( $payment_id, '_give_payment_transaction_id', $transaction_id );
1353
+	return give_update_payment_meta($payment_id, '_give_payment_transaction_id', $transaction_id);
1354 1354
 }
1355 1355
 
1356 1356
 /**
@@ -1364,12 +1364,12 @@  discard block
 block discarded – undo
1364 1364
  *
1365 1365
  * @return int $purchase Purchase ID
1366 1366
  */
1367
-function give_get_purchase_id_by_key( $key ) {
1367
+function give_get_purchase_id_by_key($key) {
1368 1368
 	global $wpdb;
1369 1369
 
1370
-	$purchase = $wpdb->get_var( $wpdb->prepare( "SELECT post_id FROM $wpdb->postmeta WHERE meta_key = '_give_payment_purchase_key' AND meta_value = %s LIMIT 1", $key ) );
1370
+	$purchase = $wpdb->get_var($wpdb->prepare("SELECT post_id FROM $wpdb->postmeta WHERE meta_key = '_give_payment_purchase_key' AND meta_value = %s LIMIT 1", $key));
1371 1371
 
1372
-	if ( $purchase != null ) {
1372
+	if ($purchase != null) {
1373 1373
 		return $purchase;
1374 1374
 	}
1375 1375
 
@@ -1388,12 +1388,12 @@  discard block
 block discarded – undo
1388 1388
  *
1389 1389
  * @return int $purchase Purchase ID
1390 1390
  */
1391
-function give_get_purchase_id_by_transaction_id( $key ) {
1391
+function give_get_purchase_id_by_transaction_id($key) {
1392 1392
 	global $wpdb;
1393 1393
 
1394
-	$purchase = $wpdb->get_var( $wpdb->prepare( "SELECT post_id FROM $wpdb->postmeta WHERE meta_key = '_give_payment_transaction_id' AND meta_value = %s LIMIT 1", $key ) );
1394
+	$purchase = $wpdb->get_var($wpdb->prepare("SELECT post_id FROM $wpdb->postmeta WHERE meta_key = '_give_payment_transaction_id' AND meta_value = %s LIMIT 1", $key));
1395 1395
 
1396
-	if ( $purchase != null ) {
1396
+	if ($purchase != null) {
1397 1397
 		return $purchase;
1398 1398
 	}
1399 1399
 
@@ -1410,19 +1410,19 @@  discard block
 block discarded – undo
1410 1410
  *
1411 1411
  * @return array $notes Payment Notes
1412 1412
  */
1413
-function give_get_payment_notes( $payment_id = 0, $search = '' ) {
1413
+function give_get_payment_notes($payment_id = 0, $search = '') {
1414 1414
 
1415
-	if ( empty( $payment_id ) && empty( $search ) ) {
1415
+	if (empty($payment_id) && empty($search)) {
1416 1416
 		return false;
1417 1417
 	}
1418 1418
 
1419
-	remove_action( 'pre_get_comments', 'give_hide_payment_notes', 10 );
1420
-	remove_filter( 'comments_clauses', 'give_hide_payment_notes_pre_41', 10, 2 );
1419
+	remove_action('pre_get_comments', 'give_hide_payment_notes', 10);
1420
+	remove_filter('comments_clauses', 'give_hide_payment_notes_pre_41', 10, 2);
1421 1421
 
1422
-	$notes = get_comments( array( 'post_id' => $payment_id, 'order' => 'ASC', 'search' => $search ) );
1422
+	$notes = get_comments(array('post_id' => $payment_id, 'order' => 'ASC', 'search' => $search));
1423 1423
 
1424
-	add_action( 'pre_get_comments', 'give_hide_payment_notes', 10 );
1425
-	add_filter( 'comments_clauses', 'give_hide_payment_notes_pre_41', 10, 2 );
1424
+	add_action('pre_get_comments', 'give_hide_payment_notes', 10);
1425
+	add_filter('comments_clauses', 'give_hide_payment_notes_pre_41', 10, 2);
1426 1426
 
1427 1427
 	return $notes;
1428 1428
 }
@@ -1438,19 +1438,19 @@  discard block
 block discarded – undo
1438 1438
  *
1439 1439
  * @return int The new note ID
1440 1440
  */
1441
-function give_insert_payment_note( $payment_id = 0, $note = '' ) {
1442
-	if ( empty( $payment_id ) ) {
1441
+function give_insert_payment_note($payment_id = 0, $note = '') {
1442
+	if (empty($payment_id)) {
1443 1443
 		return false;
1444 1444
 	}
1445 1445
 
1446
-	do_action( 'give_pre_insert_payment_note', $payment_id, $note );
1446
+	do_action('give_pre_insert_payment_note', $payment_id, $note);
1447 1447
 
1448
-	$note_id = wp_insert_comment( wp_filter_comment( array(
1448
+	$note_id = wp_insert_comment(wp_filter_comment(array(
1449 1449
 		'comment_post_ID'      => $payment_id,
1450 1450
 		'comment_content'      => $note,
1451 1451
 		'user_id'              => is_admin() ? get_current_user_id() : 0,
1452
-		'comment_date'         => current_time( 'mysql' ),
1453
-		'comment_date_gmt'     => current_time( 'mysql', 1 ),
1452
+		'comment_date'         => current_time('mysql'),
1453
+		'comment_date_gmt'     => current_time('mysql', 1),
1454 1454
 		'comment_approved'     => 1,
1455 1455
 		'comment_parent'       => 0,
1456 1456
 		'comment_author'       => '',
@@ -1459,9 +1459,9 @@  discard block
 block discarded – undo
1459 1459
 		'comment_author_email' => '',
1460 1460
 		'comment_type'         => 'give_payment_note'
1461 1461
 
1462
-	) ) );
1462
+	)));
1463 1463
 
1464
-	do_action( 'give_insert_payment_note', $note_id, $payment_id, $note );
1464
+	do_action('give_insert_payment_note', $note_id, $payment_id, $note);
1465 1465
 
1466 1466
 	return $note_id;
1467 1467
 }
@@ -1476,14 +1476,14 @@  discard block
 block discarded – undo
1476 1476
  *
1477 1477
  * @return bool True on success, false otherwise
1478 1478
  */
1479
-function give_delete_payment_note( $comment_id = 0, $payment_id = 0 ) {
1480
-	if ( empty( $comment_id ) ) {
1479
+function give_delete_payment_note($comment_id = 0, $payment_id = 0) {
1480
+	if (empty($comment_id)) {
1481 1481
 		return false;
1482 1482
 	}
1483 1483
 
1484
-	do_action( 'give_pre_delete_payment_note', $comment_id, $payment_id );
1485
-	$ret = wp_delete_comment( $comment_id, true );
1486
-	do_action( 'give_post_delete_payment_note', $comment_id, $payment_id );
1484
+	do_action('give_pre_delete_payment_note', $comment_id, $payment_id);
1485
+	$ret = wp_delete_comment($comment_id, true);
1486
+	do_action('give_post_delete_payment_note', $comment_id, $payment_id);
1487 1487
 
1488 1488
 	return $ret;
1489 1489
 }
@@ -1498,32 +1498,32 @@  discard block
 block discarded – undo
1498 1498
  *
1499 1499
  * @return string
1500 1500
  */
1501
-function give_get_payment_note_html( $note, $payment_id = 0 ) {
1501
+function give_get_payment_note_html($note, $payment_id = 0) {
1502 1502
 
1503
-	if ( is_numeric( $note ) ) {
1504
-		$note = get_comment( $note );
1503
+	if (is_numeric($note)) {
1504
+		$note = get_comment($note);
1505 1505
 	}
1506 1506
 
1507
-	if ( ! empty( $note->user_id ) ) {
1508
-		$user = get_userdata( $note->user_id );
1507
+	if ( ! empty($note->user_id)) {
1508
+		$user = get_userdata($note->user_id);
1509 1509
 		$user = $user->display_name;
1510 1510
 	} else {
1511
-		$user = __( 'System', 'give' );
1511
+		$user = __('System', 'give');
1512 1512
 	}
1513 1513
 
1514
-	$date_format = get_option( 'date_format' ) . ', ' . get_option( 'time_format' );
1514
+	$date_format = get_option('date_format').', '.get_option('time_format');
1515 1515
 
1516
-	$delete_note_url = wp_nonce_url( add_query_arg( array(
1516
+	$delete_note_url = wp_nonce_url(add_query_arg(array(
1517 1517
 		'give-action' => 'delete_payment_note',
1518 1518
 		'note_id'     => $note->comment_ID,
1519 1519
 		'payment_id'  => $payment_id
1520
-	) ), 'give_delete_payment_note_' . $note->comment_ID );
1520
+	)), 'give_delete_payment_note_'.$note->comment_ID);
1521 1521
 
1522
-	$note_html = '<div class="give-payment-note" id="give-payment-note-' . $note->comment_ID . '">';
1522
+	$note_html = '<div class="give-payment-note" id="give-payment-note-'.$note->comment_ID.'">';
1523 1523
 	$note_html .= '<p>';
1524
-	$note_html .= '<strong>' . $user . '</strong>&nbsp;&ndash;&nbsp;<span style="color:#aaa;font-style:italic;">' . date_i18n( $date_format, strtotime( $note->comment_date ) ) . '</span><br/>';
1524
+	$note_html .= '<strong>'.$user.'</strong>&nbsp;&ndash;&nbsp;<span style="color:#aaa;font-style:italic;">'.date_i18n($date_format, strtotime($note->comment_date)).'</span><br/>';
1525 1525
 	$note_html .= $note->comment_content;
1526
-	$note_html .= '&nbsp;&ndash;&nbsp;<a href="' . esc_url( $delete_note_url ) . '" class="give-delete-payment-note" data-note-id="' . absint( $note->comment_ID ) . '" data-payment-id="' . absint( $payment_id ) . '" title="' . __( 'Delete this payment note', 'give' ) . '">' . __( 'Delete', 'give' ) . '</a>';
1526
+	$note_html .= '&nbsp;&ndash;&nbsp;<a href="'.esc_url($delete_note_url).'" class="give-delete-payment-note" data-note-id="'.absint($note->comment_ID).'" data-payment-id="'.absint($payment_id).'" title="'.__('Delete this payment note', 'give').'">'.__('Delete', 'give').'</a>';
1527 1527
 	$note_html .= '</p>';
1528 1528
 	$note_html .= '</div>';
1529 1529
 
@@ -1541,20 +1541,20 @@  discard block
 block discarded – undo
1541 1541
  *
1542 1542
  * @return void
1543 1543
  */
1544
-function give_hide_payment_notes( $query ) {
1544
+function give_hide_payment_notes($query) {
1545 1545
 	global $wp_version;
1546 1546
 
1547
-	if ( version_compare( floatval( $wp_version ), '4.1', '>=' ) ) {
1548
-		$types = isset( $query->query_vars['type__not_in'] ) ? $query->query_vars['type__not_in'] : array();
1549
-		if ( ! is_array( $types ) ) {
1550
-			$types = array( $types );
1547
+	if (version_compare(floatval($wp_version), '4.1', '>=')) {
1548
+		$types = isset($query->query_vars['type__not_in']) ? $query->query_vars['type__not_in'] : array();
1549
+		if ( ! is_array($types)) {
1550
+			$types = array($types);
1551 1551
 		}
1552 1552
 		$types[]                           = 'give_payment_note';
1553 1553
 		$query->query_vars['type__not_in'] = $types;
1554 1554
 	}
1555 1555
 }
1556 1556
 
1557
-add_action( 'pre_get_comments', 'give_hide_payment_notes', 10 );
1557
+add_action('pre_get_comments', 'give_hide_payment_notes', 10);
1558 1558
 
1559 1559
 /**
1560 1560
  * Exclude notes (comments) on give_payment post type from showing in Recent Comments widgets
@@ -1566,17 +1566,17 @@  discard block
 block discarded – undo
1566 1566
  *
1567 1567
  * @return array $clauses Updated comment clauses
1568 1568
  */
1569
-function give_hide_payment_notes_pre_41( $clauses, $wp_comment_query ) {
1569
+function give_hide_payment_notes_pre_41($clauses, $wp_comment_query) {
1570 1570
 	global $wpdb, $wp_version;
1571 1571
 
1572
-	if ( version_compare( floatval( $wp_version ), '4.1', '<' ) ) {
1572
+	if (version_compare(floatval($wp_version), '4.1', '<')) {
1573 1573
 		$clauses['where'] .= ' AND comment_type != "give_payment_note"';
1574 1574
 	}
1575 1575
 
1576 1576
 	return $clauses;
1577 1577
 }
1578 1578
 
1579
-add_filter( 'comments_clauses', 'give_hide_payment_notes_pre_41', 10, 2 );
1579
+add_filter('comments_clauses', 'give_hide_payment_notes_pre_41', 10, 2);
1580 1580
 
1581 1581
 
1582 1582
 /**
@@ -1589,15 +1589,15 @@  discard block
 block discarded – undo
1589 1589
  *
1590 1590
  * @return array $where
1591 1591
  */
1592
-function give_hide_payment_notes_from_feeds( $where, $wp_comment_query ) {
1592
+function give_hide_payment_notes_from_feeds($where, $wp_comment_query) {
1593 1593
 	global $wpdb;
1594 1594
 
1595
-	$where .= $wpdb->prepare( " AND comment_type != %s", 'give_payment_note' );
1595
+	$where .= $wpdb->prepare(" AND comment_type != %s", 'give_payment_note');
1596 1596
 
1597 1597
 	return $where;
1598 1598
 }
1599 1599
 
1600
-add_filter( 'comment_feed_where', 'give_hide_payment_notes_from_feeds', 10, 2 );
1600
+add_filter('comment_feed_where', 'give_hide_payment_notes_from_feeds', 10, 2);
1601 1601
 
1602 1602
 
1603 1603
 /**
@@ -1611,32 +1611,32 @@  discard block
 block discarded – undo
1611 1611
  *
1612 1612
  * @return array Array of comment counts
1613 1613
  */
1614
-function give_remove_payment_notes_in_comment_counts( $stats, $post_id ) {
1614
+function give_remove_payment_notes_in_comment_counts($stats, $post_id) {
1615 1615
 	global $wpdb, $pagenow;
1616 1616
 
1617
-	if ( 'index.php' != $pagenow ) {
1617
+	if ('index.php' != $pagenow) {
1618 1618
 		return $stats;
1619 1619
 	}
1620 1620
 
1621 1621
 	$post_id = (int) $post_id;
1622 1622
 
1623
-	if ( apply_filters( 'give_count_payment_notes_in_comments', false ) ) {
1623
+	if (apply_filters('give_count_payment_notes_in_comments', false)) {
1624 1624
 		return $stats;
1625 1625
 	}
1626 1626
 
1627
-	$stats = wp_cache_get( "comments-{$post_id}", 'counts' );
1627
+	$stats = wp_cache_get("comments-{$post_id}", 'counts');
1628 1628
 
1629
-	if ( false !== $stats ) {
1629
+	if (false !== $stats) {
1630 1630
 		return $stats;
1631 1631
 	}
1632 1632
 
1633 1633
 	$where = 'WHERE comment_type != "give_payment_note"';
1634 1634
 
1635
-	if ( $post_id > 0 ) {
1636
-		$where .= $wpdb->prepare( " AND comment_post_ID = %d", $post_id );
1635
+	if ($post_id > 0) {
1636
+		$where .= $wpdb->prepare(" AND comment_post_ID = %d", $post_id);
1637 1637
 	}
1638 1638
 
1639
-	$count = $wpdb->get_results( "SELECT comment_approved, COUNT( * ) AS num_comments FROM {$wpdb->comments} {$where} GROUP BY comment_approved", ARRAY_A );
1639
+	$count = $wpdb->get_results("SELECT comment_approved, COUNT( * ) AS num_comments FROM {$wpdb->comments} {$where} GROUP BY comment_approved", ARRAY_A);
1640 1640
 
1641 1641
 	$total    = 0;
1642 1642
 	$approved = array(
@@ -1646,30 +1646,30 @@  discard block
 block discarded – undo
1646 1646
 		'trash'        => 'trash',
1647 1647
 		'post-trashed' => 'post-trashed'
1648 1648
 	);
1649
-	foreach ( (array) $count as $row ) {
1649
+	foreach ((array) $count as $row) {
1650 1650
 		// Don't count post-trashed toward totals
1651
-		if ( 'post-trashed' != $row['comment_approved'] && 'trash' != $row['comment_approved'] ) {
1651
+		if ('post-trashed' != $row['comment_approved'] && 'trash' != $row['comment_approved']) {
1652 1652
 			$total += $row['num_comments'];
1653 1653
 		}
1654
-		if ( isset( $approved[ $row['comment_approved'] ] ) ) {
1655
-			$stats[ $approved[ $row['comment_approved'] ] ] = $row['num_comments'];
1654
+		if (isset($approved[$row['comment_approved']])) {
1655
+			$stats[$approved[$row['comment_approved']]] = $row['num_comments'];
1656 1656
 		}
1657 1657
 	}
1658 1658
 
1659 1659
 	$stats['total_comments'] = $total;
1660
-	foreach ( $approved as $key ) {
1661
-		if ( empty( $stats[ $key ] ) ) {
1662
-			$stats[ $key ] = 0;
1660
+	foreach ($approved as $key) {
1661
+		if (empty($stats[$key])) {
1662
+			$stats[$key] = 0;
1663 1663
 		}
1664 1664
 	}
1665 1665
 
1666 1666
 	$stats = (object) $stats;
1667
-	wp_cache_set( "comments-{$post_id}", $stats, 'counts' );
1667
+	wp_cache_set("comments-{$post_id}", $stats, 'counts');
1668 1668
 
1669 1669
 	return $stats;
1670 1670
 }
1671 1671
 
1672
-add_filter( 'wp_count_comments', 'give_remove_payment_notes_in_comment_counts', 10, 2 );
1672
+add_filter('wp_count_comments', 'give_remove_payment_notes_in_comment_counts', 10, 2);
1673 1673
 
1674 1674
 
1675 1675
 /**
@@ -1682,9 +1682,9 @@  discard block
 block discarded – undo
1682 1682
  *
1683 1683
  * @return string $where Modified where clause
1684 1684
  */
1685
-function give_filter_where_older_than_week( $where = '' ) {
1685
+function give_filter_where_older_than_week($where = '') {
1686 1686
 	// Payments older than one week
1687
-	$start = date( 'Y-m-d', strtotime( '-7 days' ) );
1687
+	$start = date('Y-m-d', strtotime('-7 days'));
1688 1688
 	$where .= " AND post_date <= '{$start}'";
1689 1689
 
1690 1690
 	return $where;
@@ -1703,37 +1703,37 @@  discard block
 block discarded – undo
1703 1703
  *
1704 1704
  * @return string $form_title Returns the full title if $level_title false, otherwise returns the levels title
1705 1705
  */
1706
-function give_get_payment_form_title( $payment_meta, $level_title = false, $separator = '' ) {
1706
+function give_get_payment_form_title($payment_meta, $level_title = false, $separator = '') {
1707 1707
 
1708
-	$form_id    = isset( $payment_meta['form_id'] ) ? $payment_meta['form_id'] : 0;
1709
-	$form_title = isset( $payment_meta['form_title'] ) ? $payment_meta['form_title'] : '';
1710
-	$price_id   = isset( $payment_meta['price_id'] ) ? $payment_meta['price_id'] : null;
1708
+	$form_id    = isset($payment_meta['form_id']) ? $payment_meta['form_id'] : 0;
1709
+	$form_title = isset($payment_meta['form_title']) ? $payment_meta['form_title'] : '';
1710
+	$price_id   = isset($payment_meta['price_id']) ? $payment_meta['price_id'] : null;
1711 1711
 
1712
-	if ( $level_title == true ) {
1712
+	if ($level_title == true) {
1713 1713
 		$form_title = '';
1714 1714
 	}
1715 1715
 
1716
-	if ( give_has_variable_prices( $form_id ) ) {
1716
+	if (give_has_variable_prices($form_id)) {
1717 1717
 
1718
-		if ( ! empty( $separator ) ) {
1719
-			$form_title .= ' ' . $separator;
1718
+		if ( ! empty($separator)) {
1719
+			$form_title .= ' '.$separator;
1720 1720
 		}
1721 1721
 		$form_title .= ' <span class="donation-level-text-wrap">';
1722 1722
 
1723
-		if ( $price_id == 'custom' ) {
1723
+		if ($price_id == 'custom') {
1724 1724
 
1725
-			$custom_amount_text = get_post_meta( $form_id, '_give_custom_amount_text', true );
1726
-			$form_title .= ! empty( $custom_amount_text ) ? $custom_amount_text : __( 'Custom Amount', 'give' );
1725
+			$custom_amount_text = get_post_meta($form_id, '_give_custom_amount_text', true);
1726
+			$form_title .= ! empty($custom_amount_text) ? $custom_amount_text : __('Custom Amount', 'give');
1727 1727
 
1728 1728
 		} else {
1729
-			$form_title .= give_get_price_option_name( $form_id, $price_id );
1729
+			$form_title .= give_get_price_option_name($form_id, $price_id);
1730 1730
 		}
1731 1731
 
1732 1732
 		$form_title .= '</span>';
1733 1733
 
1734 1734
 	}
1735 1735
 
1736
-	return apply_filters( 'give_get_payment_form_title', $form_title, $payment_meta );
1736
+	return apply_filters('give_get_payment_form_title', $form_title, $payment_meta);
1737 1737
 
1738 1738
 }
1739 1739
 
@@ -1747,20 +1747,20 @@  discard block
 block discarded – undo
1747 1747
  *
1748 1748
  * @return string $price_id
1749 1749
  */
1750
-function give_get_price_id( $form_id, $price ) {
1750
+function give_get_price_id($form_id, $price) {
1751 1751
 
1752 1752
 	$price_id = 0;
1753 1753
 
1754
-	if ( give_has_variable_prices( $form_id ) ) {
1754
+	if (give_has_variable_prices($form_id)) {
1755 1755
 
1756
-		$levels = maybe_unserialize( get_post_meta( $form_id, '_give_donation_levels', true ) );
1756
+		$levels = maybe_unserialize(get_post_meta($form_id, '_give_donation_levels', true));
1757 1757
 
1758
-		foreach ( $levels as $level ) {
1758
+		foreach ($levels as $level) {
1759 1759
 
1760
-			$level_amount = (float) give_sanitize_amount( $level['_give_amount'] );
1760
+			$level_amount = (float) give_sanitize_amount($level['_give_amount']);
1761 1761
 
1762 1762
 			//check that this indeed the recurring price
1763
-			if ( $level_amount == $price ) {
1763
+			if ($level_amount == $price) {
1764 1764
 
1765 1765
 				$price_id = $level['_give_id']['level_id'];
1766 1766
 
@@ -1787,10 +1787,10 @@  discard block
 block discarded – undo
1787 1787
  * 
1788 1788
  * @return string/void
1789 1789
  */
1790
-function give_get_form_dropdown( $args = array(), $echo = false ){
1791
-    $form_dropdown_html = Give()->html->forms_dropdown( $args );
1790
+function give_get_form_dropdown($args = array(), $echo = false) {
1791
+    $form_dropdown_html = Give()->html->forms_dropdown($args);
1792 1792
 
1793
-    if( ! $echo ) {
1793
+    if ( ! $echo) {
1794 1794
         return $form_dropdown_html;
1795 1795
     }
1796 1796
 
@@ -1807,39 +1807,39 @@  discard block
 block discarded – undo
1807 1807
  *
1808 1808
  * @return string/void
1809 1809
  */
1810
-function give_get_form_variable_price_dropdown( $args = array(), $echo = false ){
1810
+function give_get_form_variable_price_dropdown($args = array(), $echo = false) {
1811 1811
     
1812 1812
     // Check for give form id.
1813
-    if( empty( $args['id'] ) ) {
1813
+    if (empty($args['id'])) {
1814 1814
         return false;
1815 1815
     }
1816 1816
 
1817 1817
     // Check if form has variable prices or not.
1818
-    if( ! ( $variable_prices = give_has_variable_prices( $args['id'] ) ) ) {
1818
+    if ( ! ($variable_prices = give_has_variable_prices($args['id']))) {
1819 1819
         return false;
1820 1820
     }
1821 1821
     
1822
-    $variable_prices = give_get_variable_prices( absint( $args['id'] ) );
1822
+    $variable_prices = give_get_variable_prices(absint($args['id']));
1823 1823
     $variable_price_options = array();
1824 1824
 
1825 1825
     // Check if multi donation form support custom donation or not.
1826
-    if( give_is_custom_price_mode( absint( $args['id'] ) ) ) {
1827
-        $variable_price_options['custom']  = _x( 'Custom', 'custom donation dropdown item', 'give' );
1826
+    if (give_is_custom_price_mode(absint($args['id']))) {
1827
+        $variable_price_options['custom'] = _x('Custom', 'custom donation dropdown item', 'give');
1828 1828
     }
1829 1829
 
1830 1830
     // Get variable price and ID from variable price array.
1831
-    foreach ( $variable_prices as $variable_price ) {
1832
-        $variable_price_options[ $variable_price['_give_id']['level_id'] ] =  $variable_price['_give_text'];
1831
+    foreach ($variable_prices as $variable_price) {
1832
+        $variable_price_options[$variable_price['_give_id']['level_id']] = $variable_price['_give_text'];
1833 1833
     }
1834 1834
 
1835 1835
 
1836 1836
     // Update options.
1837
-    $args = array_merge( $args, array( 'options' => $variable_price_options ) );
1837
+    $args = array_merge($args, array('options' => $variable_price_options));
1838 1838
 
1839 1839
     // Generate select html.
1840
-    $form_dropdown_html = Give()->html->select( $args );
1840
+    $form_dropdown_html = Give()->html->select($args);
1841 1841
 
1842
-    if( ! $echo ) {
1842
+    if ( ! $echo) {
1843 1843
         return $form_dropdown_html;
1844 1844
     }
1845 1845
 
Please login to merge, or discard this patch.
includes/admin/payments/view-order-details.php 1 patch
Spacing   +128 added lines, -128 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
  */
11 11
 
12 12
 // Exit if accessed directly
13
-if ( ! defined( 'ABSPATH' ) ) {
13
+if ( ! defined('ABSPATH')) {
14 14
 	exit;
15 15
 }
16 16
 
@@ -20,27 +20,27 @@  discard block
 block discarded – undo
20 20
  * @since 1.0
21 21
  * @return void
22 22
  */
23
-if ( ! isset( $_GET['id'] ) || ! is_numeric( $_GET['id'] ) ) {
24
-	wp_die( __( 'Donation ID not supplied. Please try again', 'give' ), __( 'Error', 'give' ) );
23
+if ( ! isset($_GET['id']) || ! is_numeric($_GET['id'])) {
24
+	wp_die(__('Donation ID not supplied. Please try again', 'give'), __('Error', 'give'));
25 25
 }
26 26
 
27 27
 // Setup the variables
28
-$payment_id = absint( $_GET['id'] );
29
-$payment    = new Give_Payment( $payment_id );
28
+$payment_id = absint($_GET['id']);
29
+$payment    = new Give_Payment($payment_id);
30 30
 
31 31
 // Sanity check... fail if purchase ID is invalid
32 32
 $payment_exists = $payment->ID;
33
-if ( empty( $payment_exists ) ) {
34
-	wp_die( __( 'The specified ID does not belong to a payment. Please try again', 'give' ), __( 'Error', 'give' ) );
33
+if (empty($payment_exists)) {
34
+	wp_die(__('The specified ID does not belong to a payment. Please try again', 'give'), __('Error', 'give'));
35 35
 }
36 36
 
37 37
 $number         = $payment->number;
38 38
 $payment_meta   = $payment->get_meta();
39
-$transaction_id = esc_attr( $payment->transaction_id );
39
+$transaction_id = esc_attr($payment->transaction_id);
40 40
 $user_id        = $payment->user_id;
41 41
 $customer_id    = $payment->customer_id;
42
-$payment_date   = strtotime( $payment->date );
43
-$user_info      = give_get_payment_meta_user_info( $payment_id );
42
+$payment_date   = strtotime($payment->date);
43
+$user_info      = give_get_payment_meta_user_info($payment_id);
44 44
 $address        = $payment->address;
45 45
 $gateway        = $payment->gateway;
46 46
 $currency_code  = $payment->currency;
@@ -52,76 +52,76 @@  discard block
 block discarded – undo
52 52
 	<h1 id="transaction-details-heading"><?php
53 53
 		printf(
54 54
 		/* translators: %s: payment number */
55
-			__( 'Payment %s', 'give' ),
55
+			__('Payment %s', 'give'),
56 56
 			$number
57 57
 		);
58
-		if ( $payment_mode == 'test' ) {
59
-			echo '<span id="test-payment-label" class="give-item-label give-item-label-orange" data-tooltip="' . __( 'This payment was made in Test Mode', 'give' ) . '" data-tooltip-my-position="center left" data-tooltip-target-position="center right">' . __( 'Test Payment', 'give' ) . '</span>';
58
+		if ($payment_mode == 'test') {
59
+			echo '<span id="test-payment-label" class="give-item-label give-item-label-orange" data-tooltip="'.__('This payment was made in Test Mode', 'give').'" data-tooltip-my-position="center left" data-tooltip-target-position="center right">'.__('Test Payment', 'give').'</span>';
60 60
 		}
61 61
 		?></h1>
62 62
 
63
-	<?php do_action( 'give_view_order_details_before', $payment_id ); ?>
63
+	<?php do_action('give_view_order_details_before', $payment_id); ?>
64 64
 	<form id="give-edit-order-form" method="post">
65
-		<?php do_action( 'give_view_order_details_form_top', $payment_id ); ?>
65
+		<?php do_action('give_view_order_details_form_top', $payment_id); ?>
66 66
 		<div id="poststuff">
67 67
 			<div id="give-dashboard-widgets-wrap">
68 68
 				<div id="post-body" class="metabox-holder columns-2">
69 69
 					<div id="postbox-container-1" class="postbox-container">
70 70
 						<div id="side-sortables" class="meta-box-sortables ui-sortable">
71 71
 
72
-							<?php do_action( 'give_view_order_details_sidebar_before', $payment_id ); ?>
72
+							<?php do_action('give_view_order_details_sidebar_before', $payment_id); ?>
73 73
 
74 74
 
75 75
 							<div id="give-order-update" class="postbox give-order-data">
76 76
 
77 77
 								<h3 class="hndle">
78
-									<span><?php _e( 'Update Payment', 'give' ); ?></span>
78
+									<span><?php _e('Update Payment', 'give'); ?></span>
79 79
 								</h3>
80 80
 
81 81
 								<div class="inside">
82 82
 									<div class="give-admin-box">
83 83
 
84
-										<?php do_action( 'give_view_order_details_totals_before', $payment_id ); ?>
84
+										<?php do_action('give_view_order_details_totals_before', $payment_id); ?>
85 85
 
86 86
 										<div class="give-admin-box-inside">
87 87
 											<p>
88
-												<span class="label"><?php _e( 'Status:', 'give' ); ?></span>&nbsp;
88
+												<span class="label"><?php _e('Status:', 'give'); ?></span>&nbsp;
89 89
 												<select name="give-payment-status" class="medium-text">
90
-													<?php foreach ( give_get_payment_statuses() as $key => $status ) : ?>
91
-														<option value="<?php echo esc_attr( $key ); ?>"<?php selected( $payment->status, $key, true ); ?>><?php echo esc_html( $status ); ?></option>
90
+													<?php foreach (give_get_payment_statuses() as $key => $status) : ?>
91
+														<option value="<?php echo esc_attr($key); ?>"<?php selected($payment->status, $key, true); ?>><?php echo esc_html($status); ?></option>
92 92
 													<?php endforeach; ?>
93 93
 												</select>
94
-												<span class="give-donation-status status-<?php echo sanitize_title( $payment->status ); ?>"><span class="give-donation-status-icon"></span></span>
94
+												<span class="give-donation-status status-<?php echo sanitize_title($payment->status); ?>"><span class="give-donation-status-icon"></span></span>
95 95
 											</p>
96 96
 										</div>
97 97
 
98 98
 										<div class="give-admin-box-inside">
99 99
 											<p>
100
-												<span class="label"><?php _e( 'Date:', 'give' ); ?></span>&nbsp;
101
-												<input type="text" name="give-payment-date" value="<?php echo esc_attr( date( 'm/d/Y', $payment_date ) ); ?>" class="medium-text give_datepicker"/>
100
+												<span class="label"><?php _e('Date:', 'give'); ?></span>&nbsp;
101
+												<input type="text" name="give-payment-date" value="<?php echo esc_attr(date('m/d/Y', $payment_date)); ?>" class="medium-text give_datepicker"/>
102 102
 											</p>
103 103
 										</div>
104 104
 
105 105
 										<div class="give-admin-box-inside">
106 106
 											<p>
107
-												<span class="label"><?php _e( 'Time:', 'give' ); ?></span>&nbsp;
108
-												<input type="number" step="1" max="24" name="give-payment-time-hour" value="<?php echo esc_attr( date_i18n( 'H', $payment_date ) ); ?>" class="small-text give-payment-time-hour"/>&nbsp;:&nbsp;
109
-												<input type="number" step="1" max="59" name="give-payment-time-min" value="<?php echo esc_attr( date( 'i', $payment_date ) ); ?>" class="small-text give-payment-time-min"/>
107
+												<span class="label"><?php _e('Time:', 'give'); ?></span>&nbsp;
108
+												<input type="number" step="1" max="24" name="give-payment-time-hour" value="<?php echo esc_attr(date_i18n('H', $payment_date)); ?>" class="small-text give-payment-time-hour"/>&nbsp;:&nbsp;
109
+												<input type="number" step="1" max="59" name="give-payment-time-min" value="<?php echo esc_attr(date('i', $payment_date)); ?>" class="small-text give-payment-time-min"/>
110 110
 											</p>
111 111
 										</div>
112 112
 
113
-										<?php do_action( 'give_view_order_details_update_inner', $payment_id ); ?>
113
+										<?php do_action('give_view_order_details_update_inner', $payment_id); ?>
114 114
 
115 115
 										<?php
116 116
 										//@TODO: Fees
117
-										$fees = give_get_payment_fees( $payment_id );
118
-										if ( ! empty( $fees ) ) : ?>
117
+										$fees = give_get_payment_fees($payment_id);
118
+										if ( ! empty($fees)) : ?>
119 119
 											<div class="give-order-fees give-admin-box-inside">
120
-												<p class="strong"><?php _e( 'Fees', 'give' ); ?>:</p>
120
+												<p class="strong"><?php _e('Fees', 'give'); ?>:</p>
121 121
 												<ul class="give-payment-fees">
122
-													<?php foreach ( $fees as $fee ) : ?>
122
+													<?php foreach ($fees as $fee) : ?>
123 123
 														<li>
124
-															<span class="fee-label"><?php echo $fee['label'] . ':</span> ' . '<span class="fee-amount" data-fee="' . esc_attr( $fee['amount'] ) . '">' . give_currency_filter( $fee['amount'], $currency_code ); ?></span>
124
+															<span class="fee-label"><?php echo $fee['label'].':</span> '.'<span class="fee-amount" data-fee="'.esc_attr($fee['amount']).'">'.give_currency_filter($fee['amount'], $currency_code); ?></span>
125 125
 														</li>
126 126
 													<?php endforeach; ?>
127 127
 												</ul>
@@ -131,12 +131,12 @@  discard block
 block discarded – undo
131 131
 
132 132
 										<div class="give-order-payment give-admin-box-inside">
133 133
 											<p>
134
-												<span class="label"><?php _e( 'Total Donation', 'give' ); ?>:</span>&nbsp;
135
-												<?php echo give_currency_symbol( $payment->currency ); ?>&nbsp;<input name="give-payment-total" type="text" class="small-text give-price-field" value="<?php echo esc_attr( give_format_decimal( give_get_payment_amount( $payment_id ) ) ); ?>"/>
134
+												<span class="label"><?php _e('Total Donation', 'give'); ?>:</span>&nbsp;
135
+												<?php echo give_currency_symbol($payment->currency); ?>&nbsp;<input name="give-payment-total" type="text" class="small-text give-price-field" value="<?php echo esc_attr(give_format_decimal(give_get_payment_amount($payment_id))); ?>"/>
136 136
 											</p>
137 137
 										</div>
138 138
 
139
-										<?php do_action( 'give_view_order_details_totals_after', $payment_id ); ?>
139
+										<?php do_action('give_view_order_details_totals_after', $payment_id); ?>
140 140
 
141 141
 									</div>
142 142
 									<!-- /.give-admin-box -->
@@ -145,20 +145,20 @@  discard block
 block discarded – undo
145 145
 								<!-- /.inside -->
146 146
 
147 147
 								<div class="give-order-update-box give-admin-box">
148
-									<?php do_action( 'give_view_order_details_update_before', $payment_id ); ?>
148
+									<?php do_action('give_view_order_details_update_before', $payment_id); ?>
149 149
 									<div id="major-publishing-actions">
150 150
 										<div id="publishing-action">
151
-											<input type="submit" class="button button-primary right" value="<?php esc_attr_e( 'Save Payment', 'give' ); ?>"/>
152
-											<?php if ( give_is_payment_complete( $payment_id ) ) : ?>
153
-												<a href="<?php echo esc_url( add_query_arg( array(
151
+											<input type="submit" class="button button-primary right" value="<?php esc_attr_e('Save Payment', 'give'); ?>"/>
152
+											<?php if (give_is_payment_complete($payment_id)) : ?>
153
+												<a href="<?php echo esc_url(add_query_arg(array(
154 154
 													'give-action' => 'email_links',
155 155
 													'purchase_id' => $payment_id
156
-												) ) ); ?>" id="give-resend-receipt" class="button-secondary right"><?php _e( 'Resend Receipt', 'give' ); ?></a>
156
+												))); ?>" id="give-resend-receipt" class="button-secondary right"><?php _e('Resend Receipt', 'give'); ?></a>
157 157
 											<?php endif; ?>
158 158
 										</div>
159 159
 										<div class="clear"></div>
160 160
 									</div>
161
-									<?php do_action( 'give_view_order_details_update_after', $payment_id ); ?>
161
+									<?php do_action('give_view_order_details_update_after', $payment_id); ?>
162 162
 								</div>
163 163
 								<!-- /.give-order-update-box -->
164 164
 
@@ -168,55 +168,55 @@  discard block
 block discarded – undo
168 168
 							<div id="give-order-details" class="postbox give-order-data">
169 169
 
170 170
 								<h3 class="hndle">
171
-									<span><?php _e( 'Payment Meta', 'give' ); ?></span>
171
+									<span><?php _e('Payment Meta', 'give'); ?></span>
172 172
 								</h3>
173 173
 
174 174
 								<div class="inside">
175 175
 									<div class="give-admin-box">
176 176
 
177
-										<?php do_action( 'give_view_order_details_payment_meta_before', $payment_id ); ?>
177
+										<?php do_action('give_view_order_details_payment_meta_before', $payment_id); ?>
178 178
 
179 179
 										<?php
180
-										$gateway = give_get_payment_gateway( $payment_id );
181
-										if ( $gateway ) : ?>
180
+										$gateway = give_get_payment_gateway($payment_id);
181
+										if ($gateway) : ?>
182 182
 											<div class="give-order-gateway give-admin-box-inside">
183 183
 												<p>
184
-													<span class="label"><?php _e( 'Gateway:', 'give' ); ?></span>&nbsp;
185
-													<?php echo give_get_gateway_admin_label( $gateway ); ?>
184
+													<span class="label"><?php _e('Gateway:', 'give'); ?></span>&nbsp;
185
+													<?php echo give_get_gateway_admin_label($gateway); ?>
186 186
 												</p>
187 187
 											</div>
188 188
 										<?php endif; ?>
189 189
 
190 190
 										<div class="give-order-payment-key give-admin-box-inside">
191 191
 											<p>
192
-												<span class="label"><?php _e( 'Key:', 'give' ); ?></span>&nbsp;
193
-												<span><?php echo give_get_payment_key( $payment_id ); ?></span>
192
+												<span class="label"><?php _e('Key:', 'give'); ?></span>&nbsp;
193
+												<span><?php echo give_get_payment_key($payment_id); ?></span>
194 194
 											</p>
195 195
 										</div>
196 196
 
197 197
 										<div class="give-order-ip give-admin-box-inside">
198 198
 											<p>
199
-												<span class="label"><?php _e( 'IP:', 'give' ); ?></span>&nbsp;
200
-												<span><?php echo esc_html( give_get_payment_user_ip( $payment_id ) ); ?></span>
199
+												<span class="label"><?php _e('IP:', 'give'); ?></span>&nbsp;
200
+												<span><?php echo esc_html(give_get_payment_user_ip($payment_id)); ?></span>
201 201
 											</p>
202 202
 										</div>
203 203
 
204
-										<?php if ( $transaction_id ) : ?>
204
+										<?php if ($transaction_id) : ?>
205 205
 											<div class="give-order-tx-id give-admin-box-inside">
206 206
 												<p>
207
-													<span class="label"><?php _e( 'Transaction ID:', 'give' ); ?></span>&nbsp;
208
-													<span><?php echo apply_filters( 'give_payment_details_transaction_id-' . $gateway, $transaction_id, $payment_id ); ?></span>
207
+													<span class="label"><?php _e('Transaction ID:', 'give'); ?></span>&nbsp;
208
+													<span><?php echo apply_filters('give_payment_details_transaction_id-'.$gateway, $transaction_id, $payment_id); ?></span>
209 209
 												</p>
210 210
 											</div>
211 211
 										<?php endif; ?>
212 212
 
213 213
 										<div class="give-admin-box-inside">
214
-											<p><?php $purchase_url = admin_url( 'edit.php?post_type=give_forms&page=give-payment-history&user=' . urlencode( esc_attr( give_get_payment_user_email( $payment_id ) ) ) ); ?>
215
-												<a href="<?php echo $purchase_url; ?>"><?php _e( 'View all donations for this donor', 'give' ); ?> &raquo;</a>
214
+											<p><?php $purchase_url = admin_url('edit.php?post_type=give_forms&page=give-payment-history&user='.urlencode(esc_attr(give_get_payment_user_email($payment_id)))); ?>
215
+												<a href="<?php echo $purchase_url; ?>"><?php _e('View all donations for this donor', 'give'); ?> &raquo;</a>
216 216
 											</p>
217 217
 										</div>
218 218
 
219
-										<?php do_action( 'give_view_order_details_payment_meta_after', $payment_id ); ?>
219
+										<?php do_action('give_view_order_details_payment_meta_after', $payment_id); ?>
220 220
 
221 221
 									</div>
222 222
 									<!-- /.column-container -->
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
 							</div>
228 228
 							<!-- /#give-order-data -->
229 229
 
230
-							<?php do_action( 'give_view_order_details_sidebar_after', $payment_id ); ?>
230
+							<?php do_action('give_view_order_details_sidebar_after', $payment_id); ?>
231 231
 
232 232
 						</div>
233 233
 						<!-- /#side-sortables -->
@@ -238,12 +238,12 @@  discard block
 block discarded – undo
238 238
 
239 239
 						<div id="normal-sortables" class="meta-box-sortables ui-sortable">
240 240
 
241
-							<?php do_action( 'give_view_order_details_main_before', $payment_id ); ?>
241
+							<?php do_action('give_view_order_details_main_before', $payment_id); ?>
242 242
 
243 243
 							<?php $column_count = 'columns-3'; ?>
244 244
 							<div id="give-donation-overview" class="postbox <?php echo $column_count; ?>">
245 245
 								<h3 class="hndle">
246
-									<span><?php _e( 'Donation Information', 'give' ); ?></span>
246
+									<span><?php _e('Donation Information', 'give'); ?></span>
247 247
 								</h3>
248 248
 
249 249
 								<div class="inside">
@@ -251,31 +251,31 @@  discard block
 block discarded – undo
251 251
 									<table style="width:100%;text-align:left;">
252 252
 										<thead>
253 253
 										<tr>
254
-											<?php do_action( 'give_donation_details_thead_before', $payment_id ); ?>
255
-											<th><?php _e( 'Donation Form ID', 'give' ) ?></th>
256
-											<th><?php _e( 'Donation Form Title', 'give' ) ?></th>
257
-											<th><?php _e( 'Donation Level', 'give' ) ?></th>
258
-											<th><?php _e( 'Donation Date', 'give' ) ?></th>
259
-											<th><?php _e( 'Total Donation', 'give' ) ?></th>
260
-											<?php do_action( 'give_donation_details_thead_after', $payment_id ); ?>
254
+											<?php do_action('give_donation_details_thead_before', $payment_id); ?>
255
+											<th><?php _e('Donation Form ID', 'give') ?></th>
256
+											<th><?php _e('Donation Form Title', 'give') ?></th>
257
+											<th><?php _e('Donation Level', 'give') ?></th>
258
+											<th><?php _e('Donation Date', 'give') ?></th>
259
+											<th><?php _e('Total Donation', 'give') ?></th>
260
+											<?php do_action('give_donation_details_thead_after', $payment_id); ?>
261 261
 										</tr>
262 262
 										</thead>
263 263
 										<tr>
264
-											<?php do_action( 'give_donation_details_tbody_before', $payment_id ); ?>
264
+											<?php do_action('give_donation_details_tbody_before', $payment_id); ?>
265 265
 											<td>
266 266
 												<?php echo $payment_meta['form_id']; ?>
267 267
 											</td>
268 268
 											<td>
269
-												<?php give_get_form_dropdown( array(
269
+												<?php give_get_form_dropdown(array(
270 270
 													'id'       => $payment_meta['form_id'],
271 271
 													'selected' => $payment_meta['form_id'],
272 272
 													'chosen'   => true
273
-												), true ); ?>
273
+												), true); ?>
274 274
 											</td>
275 275
 											<td>
276 276
 												<?php
277
-												if ( empty( give_has_variable_prices( $payment_meta['form_id'] ) ) ) {
278
-													echo __( 'n/a', 'give' );
277
+												if (empty(give_has_variable_prices($payment_meta['form_id']))) {
278
+													echo __('n/a', 'give');
279 279
 												} else {
280 280
 													// Variable price dropdown options.
281 281
 													$variable_price_dropdown_option = array(
@@ -287,20 +287,20 @@  discard block
 block discarded – undo
287 287
 													);
288 288
 
289 289
 													// Render variable prices select tag html.
290
-													give_get_form_variable_price_dropdown( $variable_price_dropdown_option, true );
290
+													give_get_form_variable_price_dropdown($variable_price_dropdown_option, true);
291 291
 												}
292 292
 												?>
293 293
 											</td>
294 294
 											<td>
295 295
 												<?php
296 296
 												//Transaction Date
297
-												$date_format = get_option( 'date_format' );
298
-												echo date_i18n( $date_format, strtotime( $payment_date ) );
297
+												$date_format = get_option('date_format');
298
+												echo date_i18n($date_format, strtotime($payment_date));
299 299
 												?>
300 300
 											</td>
301 301
 											<td>
302
-												<?php echo esc_html( give_currency_filter( give_format_amount( give_get_payment_amount( $payment_id ) ) ) ); ?></td>
303
-											<?php do_action( 'give_donation_details_tbody_after', $payment_id ); ?>
302
+												<?php echo esc_html(give_currency_filter(give_format_amount(give_get_payment_amount($payment_id)))); ?></td>
303
+											<?php do_action('give_donation_details_tbody_after', $payment_id); ?>
304 304
 
305 305
 										</tr>
306 306
 									</table>
@@ -312,64 +312,64 @@  discard block
 block discarded – undo
312 312
 							</div>
313 313
 							<!-- /#give-donation-overview -->
314 314
 
315
-							<?php do_action( 'give_view_order_details_files_after', $payment_id ); ?>
315
+							<?php do_action('give_view_order_details_files_after', $payment_id); ?>
316 316
 
317
-							<?php do_action( 'give_view_order_details_billing_before', $payment_id ); ?>
317
+							<?php do_action('give_view_order_details_billing_before', $payment_id); ?>
318 318
 
319 319
 
320 320
 							<div id="give-customer-details" class="postbox">
321 321
 								<h3 class="hndle">
322
-									<span><?php _e( 'Donor Details', 'give' ); ?></span>
322
+									<span><?php _e('Donor Details', 'give'); ?></span>
323 323
 								</h3>
324 324
 
325 325
 								<div class="inside give-clearfix">
326 326
 
327
-									<?php $customer = new Give_Customer( $customer_id ); ?>
327
+									<?php $customer = new Give_Customer($customer_id); ?>
328 328
 
329 329
 									<div class="column-container customer-info">
330 330
 										<div class="column">
331
-											<?php echo Give()->html->donor_dropdown( array(
331
+											<?php echo Give()->html->donor_dropdown(array(
332 332
 												'selected' => $customer->id,
333 333
 												'name'     => 'customer-id'
334
-											) ); ?>
334
+											)); ?>
335 335
 										</div>
336 336
 										<div class="column">
337 337
 											<input type="hidden" name="give-current-customer" value="<?php echo $customer->id; ?>"/>
338 338
 										</div>
339 339
 										<div class="column">
340
-											<?php if ( ! empty( $customer->id ) ) : ?>
341
-												<?php $customer_url = admin_url( 'edit.php?post_type=give_forms&page=give-donors&view=overview&id=' . $customer->id ); ?>
342
-												<a href="<?php echo $customer_url; ?>" title="<?php _e( 'View Donor Details', 'give' ); ?>"><?php _e( 'View Donor Details', 'give' ); ?></a>
340
+											<?php if ( ! empty($customer->id)) : ?>
341
+												<?php $customer_url = admin_url('edit.php?post_type=give_forms&page=give-donors&view=overview&id='.$customer->id); ?>
342
+												<a href="<?php echo $customer_url; ?>" title="<?php _e('View Donor Details', 'give'); ?>"><?php _e('View Donor Details', 'give'); ?></a>
343 343
 												&nbsp;|&nbsp;
344 344
 											<?php endif; ?>
345
-											<a href="#new" class="give-payment-new-customer" title="<?php _e( 'New Donor', 'give' ); ?>"><?php _e( 'New Donor', 'give' ); ?></a>
345
+											<a href="#new" class="give-payment-new-customer" title="<?php _e('New Donor', 'give'); ?>"><?php _e('New Donor', 'give'); ?></a>
346 346
 										</div>
347 347
 									</div>
348 348
 
349 349
 									<div class="column-container new-customer" style="display: none">
350 350
 										<div class="column">
351
-											<label for="give-new-customer-name"><?php _e( 'Name:', 'give' ); ?></label>&nbsp;
351
+											<label for="give-new-customer-name"><?php _e('Name:', 'give'); ?></label>&nbsp;
352 352
 											<input id="give-new-customer-name" type="text" name="give-new-customer-name" value="" class="medium-text"/>
353 353
 										</div>
354 354
 										<div class="column">
355
-											<label for="give-new-customer-email"><?php _e( 'Email:', 'give' ); ?></label>&nbsp;
355
+											<label for="give-new-customer-email"><?php _e('Email:', 'give'); ?></label>&nbsp;
356 356
 											<input id="give-new-customer-email" type="email" name="give-new-customer-email" value="" class="medium-text"/>
357 357
 										</div>
358 358
 										<div class="column">
359 359
 											<input type="hidden" id="give-new-customer" name="give-new-customer" value="0"/>
360
-											<a href="#cancel" class="give-payment-new-customer-cancel give-delete"><?php _e( 'Cancel', 'give' ); ?></a>
360
+											<a href="#cancel" class="give-payment-new-customer-cancel give-delete"><?php _e('Cancel', 'give'); ?></a>
361 361
 										</div>
362 362
 										<div class="column">
363 363
 											<small>
364
-												<em>*<?php _e( 'Click "Save Payment" to create new donor', 'give' ); ?></em>
364
+												<em>*<?php _e('Click "Save Payment" to create new donor', 'give'); ?></em>
365 365
 											</small>
366 366
 										</div>
367 367
 									</div>
368 368
 
369 369
 									<?php
370 370
 									// The give_payment_personal_details_list hook is left here for backwards compatibility
371
-									do_action( 'give_payment_personal_details_list', $payment_meta, $user_info );
372
-									do_action( 'give_payment_view_details', $payment_id );
371
+									do_action('give_payment_personal_details_list', $payment_meta, $user_info);
372
+									do_action('give_payment_view_details', $payment_id);
373 373
 									?>
374 374
 
375 375
 								</div>
@@ -380,7 +380,7 @@  discard block
 block discarded – undo
380 380
 
381 381
 							<div id="give-billing-details" class="postbox">
382 382
 								<h3 class="hndle">
383
-									<span><?php _e( 'Billing Address', 'give' ); ?></span>
383
+									<span><?php _e('Billing Address', 'give'); ?></span>
384 384
 								</h3>
385 385
 
386 386
 								<div class="inside give-clearfix">
@@ -391,62 +391,62 @@  discard block
 block discarded – undo
391 391
 											<div class="data column-container">
392 392
 												<div class="column">
393 393
 													<div class="give-wrap-address-line1">
394
-														<label for="give-payment-address-line1" class="order-data-address"><?php _e( 'Street Address Line 1:', 'give' ); ?></label>
395
-														<input id="give-payment-address-line1" type="text" name="give-payment-address[0][line1]" value="<?php echo esc_attr( $address['line1'] ); ?>" class="medium-text"/>
394
+														<label for="give-payment-address-line1" class="order-data-address"><?php _e('Street Address Line 1:', 'give'); ?></label>
395
+														<input id="give-payment-address-line1" type="text" name="give-payment-address[0][line1]" value="<?php echo esc_attr($address['line1']); ?>" class="medium-text"/>
396 396
 													</div>
397 397
 
398 398
 													<div class="give-wrap-address-line2">
399
-														<label for="give-payment-address-line2" class="order-data-address-line"><?php _e( 'Street Address Line 2:', 'give' ); ?></label>
400
-														<input id="give-payment-address-line2" type="text" name="give-payment-address[0][line2]" value="<?php echo esc_attr( $address['line2'] ); ?>" class="medium-text"/>
399
+														<label for="give-payment-address-line2" class="order-data-address-line"><?php _e('Street Address Line 2:', 'give'); ?></label>
400
+														<input id="give-payment-address-line2" type="text" name="give-payment-address[0][line2]" value="<?php echo esc_attr($address['line2']); ?>" class="medium-text"/>
401 401
 													</div>
402 402
 
403 403
 												</div>
404 404
 												<div class="column">
405 405
 													<div class="give-wrap-address-city">
406
-														<label for="give-payment-address-city" class="order-data-address-line"><?php _e( 'City:', 'give' ); ?></label>
407
-														<input id="give-payment-address-city" type="text" name="give-payment-address[0][city]" value="<?php echo esc_attr( $address['city'] ); ?>" class="medium-text"/>
406
+														<label for="give-payment-address-city" class="order-data-address-line"><?php _e('City:', 'give'); ?></label>
407
+														<input id="give-payment-address-city" type="text" name="give-payment-address[0][city]" value="<?php echo esc_attr($address['city']); ?>" class="medium-text"/>
408 408
 
409 409
 													</div>
410 410
 
411 411
 													<div class="give-wrap-address-zip">
412
-														<label for="give-payment-address-zip" class="order-data-address-line"><?php _e( 'Zip / Postal Code:', 'give' ); ?></label>
413
-														<input id="give-payment-address-zip" type="text" name="give-payment-address[0][zip]" value="<?php echo esc_attr( $address['zip'] ); ?>" class="medium-text"/>
412
+														<label for="give-payment-address-zip" class="order-data-address-line"><?php _e('Zip / Postal Code:', 'give'); ?></label>
413
+														<input id="give-payment-address-zip" type="text" name="give-payment-address[0][zip]" value="<?php echo esc_attr($address['zip']); ?>" class="medium-text"/>
414 414
 
415 415
 													</div>
416 416
 												</div>
417 417
 												<div class="column">
418 418
 													<div id="give-order-address-country-wrap">
419
-														<label class="order-data-address-line"><?php _e( 'Country:', 'give' ); ?></label>
419
+														<label class="order-data-address-line"><?php _e('Country:', 'give'); ?></label>
420 420
 														<?php
421
-														echo Give()->html->select( array(
421
+														echo Give()->html->select(array(
422 422
 															'options'          => give_get_country_list(),
423 423
 															'name'             => 'give-payment-address[0][country]',
424 424
 															'selected'         => $address['country'],
425 425
 															'show_option_all'  => false,
426 426
 															'show_option_none' => false,
427 427
 															'chosen'           => true,
428
-															'placeholder'      => __( 'Select a country', 'give' )
429
-														) );
428
+															'placeholder'      => __('Select a country', 'give')
429
+														));
430 430
 														?>
431 431
 													</div>
432 432
 
433 433
 													<div id="give-order-address-state-wrap">
434
-														<label for="give-payment-address-state" class="order-data-address-line"><?php _e( 'State / Province:', 'give' ); ?></label>
434
+														<label for="give-payment-address-state" class="order-data-address-line"><?php _e('State / Province:', 'give'); ?></label>
435 435
 														<?php
436
-														$states = give_get_states( $address['country'] );
437
-														if ( ! empty( $states ) ) {
438
-															echo Give()->html->select( array(
436
+														$states = give_get_states($address['country']);
437
+														if ( ! empty($states)) {
438
+															echo Give()->html->select(array(
439 439
 																'options'          => $states,
440 440
 																'name'             => 'give-payment-address[0][state]',
441 441
 																'selected'         => $address['state'],
442 442
 																'show_option_all'  => false,
443 443
 																'show_option_none' => false,
444 444
 																'chosen'           => true,
445
-																'placeholder'      => __( 'Select a state', 'give' )
446
-															) );
445
+																'placeholder'      => __('Select a state', 'give')
446
+															));
447 447
 														} else {
448 448
 															?>
449
-															<input id="give-payment-address-state" type="text" name="give-payment-address[0][state]" value="<?php echo esc_attr( $address['state'] ); ?>" class="medium-text"/>
449
+															<input id="give-payment-address-state" type="text" name="give-payment-address[0][state]" value="<?php echo esc_attr($address['state']); ?>" class="medium-text"/>
450 450
 															<?php
451 451
 														} ?>
452 452
 													</div>
@@ -456,38 +456,38 @@  discard block
 block discarded – undo
456 456
 									</div>
457 457
 									<!-- /#give-order-address -->
458 458
 
459
-									<?php do_action( 'give_payment_billing_details', $payment_id ); ?>
459
+									<?php do_action('give_payment_billing_details', $payment_id); ?>
460 460
 
461 461
 								</div>
462 462
 								<!-- /.inside -->
463 463
 							</div>
464 464
 							<!-- /#give-billing-details -->
465 465
 
466
-							<?php do_action( 'give_view_order_details_billing_after', $payment_id ); ?>
466
+							<?php do_action('give_view_order_details_billing_after', $payment_id); ?>
467 467
 
468 468
 							<div id="give-payment-notes" class="postbox">
469
-								<h3 class="hndle"><span><?php _e( 'Payment Notes', 'give' ); ?></span></h3>
469
+								<h3 class="hndle"><span><?php _e('Payment Notes', 'give'); ?></span></h3>
470 470
 
471 471
 								<div class="inside">
472 472
 									<div id="give-payment-notes-inner">
473 473
 										<?php
474
-										$notes = give_get_payment_notes( $payment_id );
475
-										if ( ! empty( $notes ) ) :
474
+										$notes = give_get_payment_notes($payment_id);
475
+										if ( ! empty($notes)) :
476 476
 											$no_notes_display = ' style="display:none;"';
477
-											foreach ( $notes as $note ) :
477
+											foreach ($notes as $note) :
478 478
 
479
-												echo give_get_payment_note_html( $note, $payment_id );
479
+												echo give_get_payment_note_html($note, $payment_id);
480 480
 
481 481
 											endforeach;
482 482
 										else :
483 483
 											$no_notes_display = '';
484 484
 										endif;
485
-										echo '<p class="give-no-payment-notes"' . $no_notes_display . '>' . __( 'No payment notes', 'give' ) . '</p>'; ?>
485
+										echo '<p class="give-no-payment-notes"'.$no_notes_display.'>'.__('No payment notes', 'give').'</p>'; ?>
486 486
 									</div>
487 487
 									<textarea name="give-payment-note" id="give-payment-note" class="large-text"></textarea>
488 488
 
489 489
 									<div class="give-clearfix">
490
-										<button id="give-add-payment-note" class="button button-secondary button-small" data-payment-id="<?php echo absint( $payment_id ); ?>"><?php _e( 'Add Note', 'give' ); ?></button>
490
+										<button id="give-add-payment-note" class="button button-secondary button-small" data-payment-id="<?php echo absint($payment_id); ?>"><?php _e('Add Note', 'give'); ?></button>
491 491
 									</div>
492 492
 
493 493
 								</div>
@@ -495,7 +495,7 @@  discard block
 block discarded – undo
495 495
 							</div>
496 496
 							<!-- /#give-payment-notes -->
497 497
 
498
-							<?php do_action( 'give_view_order_details_main_after', $payment_id ); ?>
498
+							<?php do_action('give_view_order_details_main_after', $payment_id); ?>
499 499
 						</div>
500 500
 						<!-- /#normal-sortables -->
501 501
 					</div>
@@ -506,10 +506,10 @@  discard block
 block discarded – undo
506 506
 			<!-- #give-dashboard-widgets-wrap -->
507 507
 		</div>
508 508
 		<!-- /#post-stuff -->
509
-		<?php do_action( 'give_view_order_details_form_bottom', $payment_id ); ?>
510
-		<?php wp_nonce_field( 'give_update_payment_details_nonce' ); ?>
511
-		<input type="hidden" name="give_payment_id" value="<?php echo esc_attr( $payment_id ); ?>"/>
509
+		<?php do_action('give_view_order_details_form_bottom', $payment_id); ?>
510
+		<?php wp_nonce_field('give_update_payment_details_nonce'); ?>
511
+		<input type="hidden" name="give_payment_id" value="<?php echo esc_attr($payment_id); ?>"/>
512 512
 		<input type="hidden" name="give_action" value="update_payment_details"/>
513 513
 	</form>
514
-	<?php do_action( 'give_view_order_details_after', $payment_id ); ?>
514
+	<?php do_action('give_view_order_details_after', $payment_id); ?>
515 515
 </div><!-- /.wrap -->
Please login to merge, or discard this patch.
includes/admin/payments/actions.php 2 patches
Indentation   +58 added lines, -58 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 	// Retrieve the payment ID
38 38
 	$payment_id = absint( $data['give_payment_id'] );
39 39
 
40
-    /* @var Give_Payment $payment */
40
+	/* @var Give_Payment $payment */
41 41
 	$payment    = new Give_Payment( $payment_id );
42 42
 
43 43
 	// Retrieve existing payment meta
@@ -151,9 +151,9 @@  discard block
 block discarded – undo
151 151
 		$previous_customer->remove_payment( $payment_id, false );
152 152
 		$customer->attach_payment( $payment_id, false );
153 153
 
154
-        // Reduce previous user donation count and amoount.
155
-        $previous_customer->decrease_purchase_count();
156
-        $previous_customer->decrease_value( $curr_total );
154
+		// Reduce previous user donation count and amoount.
155
+		$previous_customer->decrease_purchase_count();
156
+		$previous_customer->decrease_value( $curr_total );
157 157
 
158 158
 		// If purchase was completed and not ever refunded, adjust stats of new customers.
159 159
 		if ( 'revoked' == $status || 'publish' == $status ) {
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
 	} else{
166 166
 		// Update user donation stat.
167 167
 		$customer->update_donation_value( $curr_total, $new_total );
168
-    }
168
+	}
169 169
 
170 170
 	// Set new meta values
171 171
 	$payment->user_id    = $customer->user_id;
@@ -206,76 +206,76 @@  discard block
 block discarded – undo
206 206
 
207 207
 	$payment->save();
208 208
 
209
-    // Get new give form ID.
210
-    $new_form_id = absint( $data['forms'] );
211
-    $current_form_id = absint( $payment->get_meta( '_give_payment_form_id' ) );
209
+	// Get new give form ID.
210
+	$new_form_id = absint( $data['forms'] );
211
+	$current_form_id = absint( $payment->get_meta( '_give_payment_form_id' ) );
212 212
 
213
-    // We are adding payment transfer code in last to remove any conflict with above functionality.
214
-    // For example: above code will automatically handle form stat (increase/decrease) when payment status changes.
215
-    /* Check if user want to transfer current payment to new give form id. */
216
-    if( $new_form_id != $current_form_id  ) {
213
+	// We are adding payment transfer code in last to remove any conflict with above functionality.
214
+	// For example: above code will automatically handle form stat (increase/decrease) when payment status changes.
215
+	/* Check if user want to transfer current payment to new give form id. */
216
+	if( $new_form_id != $current_form_id  ) {
217 217
 
218
-        // Get new give form title.
219
-        $new_form_title = get_the_title( $new_form_id );
218
+		// Get new give form title.
219
+		$new_form_title = get_the_title( $new_form_id );
220 220
 
221
-        // Update new give form data in payment data.
222
-        $payment_meta = $payment->get_meta();
223
-        $payment_meta['form_title'] = $new_form_title;
224
-        $payment_meta['form_id']    = $new_form_id;
221
+		// Update new give form data in payment data.
222
+		$payment_meta = $payment->get_meta();
223
+		$payment_meta['form_title'] = $new_form_title;
224
+		$payment_meta['form_id']    = $new_form_id;
225 225
 
226
-        // Update price id post meta data for set donation form.
227
-        if( ! give_has_variable_prices( $new_form_id ) ) {
228
-            $payment_meta['price_id'] = '';
229
-        }
226
+		// Update price id post meta data for set donation form.
227
+		if( ! give_has_variable_prices( $new_form_id ) ) {
228
+			$payment_meta['price_id'] = '';
229
+		}
230 230
 
231
-        // Update payment give form meta data.
232
-        $payment->update_meta( '_give_payment_form_id', $new_form_id );
233
-        $payment->update_meta( '_give_payment_form_title', $new_form_title );
234
-        $payment->update_meta( '_give_payment_meta', $payment_meta );
231
+		// Update payment give form meta data.
232
+		$payment->update_meta( '_give_payment_form_id', $new_form_id );
233
+		$payment->update_meta( '_give_payment_form_title', $new_form_title );
234
+		$payment->update_meta( '_give_payment_meta', $payment_meta );
235 235
 
236
-        // Update price id payment metadata.
237
-        if( ! give_has_variable_prices( $new_form_id ) ) {
238
-            $payment->update_meta( '_give_payment_price_id', '' );
239
-        }
236
+		// Update price id payment metadata.
237
+		if( ! give_has_variable_prices( $new_form_id ) ) {
238
+			$payment->update_meta( '_give_payment_price_id', '' );
239
+		}
240 240
 
241 241
 
242
-        // If purchase was completed and not ever refunded, adjust stats of forms
243
-        if ( 'revoked' == $status || 'publish' == $status ) {
242
+		// If purchase was completed and not ever refunded, adjust stats of forms
243
+		if ( 'revoked' == $status || 'publish' == $status ) {
244 244
 
245
-            // Decrease sale of old give form. For other payment status 
246
-            $current_form = new Give_Donate_Form( $current_form_id );
247
-            $current_form->decrease_sales();
248
-            $current_form->decrease_earnings( $curr_total );
245
+			// Decrease sale of old give form. For other payment status 
246
+			$current_form = new Give_Donate_Form( $current_form_id );
247
+			$current_form->decrease_sales();
248
+			$current_form->decrease_earnings( $curr_total );
249 249
             
250
-            // Increase sale of new give form.
251
-            $new_form = new Give_Donate_Form($new_form_id);
252
-            $new_form->increase_sales();
253
-            $new_form->increase_earnings($new_total);
254
-        }
250
+			// Increase sale of new give form.
251
+			$new_form = new Give_Donate_Form($new_form_id);
252
+			$new_form->increase_sales();
253
+			$new_form->increase_earnings($new_total);
254
+		}
255 255
 
256
-        // Re setup payment to update new meta value in object.
257
-        $payment->update_payment_setup( $payment->ID );
258
-    }
256
+		// Re setup payment to update new meta value in object.
257
+		$payment->update_payment_setup( $payment->ID );
258
+	}
259 259
 
260
-    // Update price id if current form is variable form.
261
-    if( ! empty( $data['give-variable-price'] ) && give_has_variable_prices( $payment->form_id ) ) {
260
+	// Update price id if current form is variable form.
261
+	if( ! empty( $data['give-variable-price'] ) && give_has_variable_prices( $payment->form_id ) ) {
262 262
 
263
-        // Get payment meta data.
264
-        $payment_meta = $payment->get_meta();
263
+		// Get payment meta data.
264
+		$payment_meta = $payment->get_meta();
265 265
 
266
-        // Set payment id to empty string if variable price id is negative ( i.e. custom amount feature enabled ).
267
-        $data['give-variable-price'] = ( 'custom' === $data['give-variable-price'] ) ? 'custom' : ( 0 < $data['give-variable-price'] ) ? $data['give-variable-price'] : '';
266
+		// Set payment id to empty string if variable price id is negative ( i.e. custom amount feature enabled ).
267
+		$data['give-variable-price'] = ( 'custom' === $data['give-variable-price'] ) ? 'custom' : ( 0 < $data['give-variable-price'] ) ? $data['give-variable-price'] : '';
268 268
 
269
-        // Update payment meta data.
270
-        $payment_meta['price_id'] = $data['give-variable-price'];
269
+		// Update payment meta data.
270
+		$payment_meta['price_id'] = $data['give-variable-price'];
271 271
 
272
-        // Update payment give form meta data.
273
-        $payment->update_meta( '_give_payment_price_id', $data['give-variable-price'] );
274
-        $payment->update_meta( '_give_payment_meta', $payment_meta );
272
+		// Update payment give form meta data.
273
+		$payment->update_meta( '_give_payment_price_id', $data['give-variable-price'] );
274
+		$payment->update_meta( '_give_payment_meta', $payment_meta );
275 275
 
276
-        // Re setup payment to update new meta value in object.
277
-        $payment->update_payment_setup( $payment->ID );
278
-    }
276
+		// Re setup payment to update new meta value in object.
277
+		$payment->update_payment_setup( $payment->ID );
278
+	}
279 279
 
280 280
 	do_action( 'give_updated_edited_purchase', $payment_id );
281 281
 
Please login to merge, or discard this patch.
Spacing   +117 added lines, -117 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
  */
11 11
 
12 12
 // Exit if accessed directly
13
-if ( ! defined( 'ABSPATH' ) ) {
13
+if ( ! defined('ABSPATH')) {
14 14
 	exit;
15 15
 }
16 16
 
@@ -26,109 +26,109 @@  discard block
 block discarded – undo
26 26
  * @return      void
27 27
  *
28 28
  */
29
-function give_update_payment_details( $data ) {
29
+function give_update_payment_details($data) {
30 30
 
31
-	if ( ! current_user_can( 'edit_give_payments', $data['give_payment_id'] ) ) {
32
-		wp_die( __( 'You do not have permission to edit payment records.', 'give' ), __( 'Error', 'give' ), array( 'response' => 403 ) );
31
+	if ( ! current_user_can('edit_give_payments', $data['give_payment_id'])) {
32
+		wp_die(__('You do not have permission to edit payment records.', 'give'), __('Error', 'give'), array('response' => 403));
33 33
 	}
34 34
 
35
-	check_admin_referer( 'give_update_payment_details_nonce' );
35
+	check_admin_referer('give_update_payment_details_nonce');
36 36
 
37 37
 	// Retrieve the payment ID
38
-	$payment_id = absint( $data['give_payment_id'] );
38
+	$payment_id = absint($data['give_payment_id']);
39 39
 
40 40
     /* @var Give_Payment $payment */
41
-	$payment    = new Give_Payment( $payment_id );
41
+	$payment    = new Give_Payment($payment_id);
42 42
 
43 43
 	// Retrieve existing payment meta
44 44
 	$meta      = $payment->get_meta();
45 45
 	$user_info = $payment->user_info;
46 46
 
47 47
 	$status = $data['give-payment-status'];
48
-	$date   = sanitize_text_field( $data['give-payment-date'] );
49
-	$hour   = sanitize_text_field( $data['give-payment-time-hour'] );
48
+	$date   = sanitize_text_field($data['give-payment-date']);
49
+	$hour   = sanitize_text_field($data['give-payment-time-hour']);
50 50
 
51 51
 	// Restrict to our high and low
52
-	if ( $hour > 23 ) {
52
+	if ($hour > 23) {
53 53
 		$hour = 23;
54
-	} elseif ( $hour < 0 ) {
54
+	} elseif ($hour < 0) {
55 55
 		$hour = 00;
56 56
 	}
57 57
 
58
-	$minute = sanitize_text_field( $data['give-payment-time-min'] );
58
+	$minute = sanitize_text_field($data['give-payment-time-min']);
59 59
 
60 60
 	// Restrict to our high and low
61
-	if ( $minute > 59 ) {
61
+	if ($minute > 59) {
62 62
 		$minute = 59;
63
-	} elseif ( $minute < 0 ) {
63
+	} elseif ($minute < 0) {
64 64
 		$minute = 00;
65 65
 	}
66 66
 
67
-	$address = array_map( 'trim', $data['give-payment-address'][0] );
67
+	$address = array_map('trim', $data['give-payment-address'][0]);
68 68
 
69
-	$curr_total = give_sanitize_amount( $payment->total );
70
-	$new_total  = give_sanitize_amount( $data['give-payment-total'] );
71
-	$date       = date( 'Y-m-d', strtotime( $date ) ) . ' ' . $hour . ':' . $minute . ':00';
69
+	$curr_total = give_sanitize_amount($payment->total);
70
+	$new_total  = give_sanitize_amount($data['give-payment-total']);
71
+	$date       = date('Y-m-d', strtotime($date)).' '.$hour.':'.$minute.':00';
72 72
 
73
-	$curr_customer_id = sanitize_text_field( $data['give-current-customer'] );
74
-	$new_customer_id  = sanitize_text_field( $data['customer-id'] );
73
+	$curr_customer_id = sanitize_text_field($data['give-current-customer']);
74
+	$new_customer_id  = sanitize_text_field($data['customer-id']);
75 75
 
76
-	do_action( 'give_update_edited_purchase', $payment_id );
76
+	do_action('give_update_edited_purchase', $payment_id);
77 77
 
78 78
 	$payment->date = $date;
79 79
 	$updated       = $payment->save();
80 80
 
81
-	if ( 0 === $updated ) {
82
-		wp_die( esc_attr__( 'Error Updating Payment.', 'give' ), esc_attr__( 'Error', 'give' ), array( 'response' => 400 ) );
81
+	if (0 === $updated) {
82
+		wp_die(esc_attr__('Error Updating Payment.', 'give'), esc_attr__('Error', 'give'), array('response' => 400));
83 83
 	}
84 84
 
85 85
 
86 86
 	$customer_changed = false;
87 87
 
88
-	if ( isset( $data['give-new-customer'] ) && $data['give-new-customer'] == '1' ) {
88
+	if (isset($data['give-new-customer']) && $data['give-new-customer'] == '1') {
89 89
 
90
-		$email = isset( $data['give-new-customer-email'] ) ? sanitize_text_field( $data['give-new-customer-email'] ) : '';
91
-		$names = isset( $data['give-new-customer-name'] ) ? sanitize_text_field( $data['give-new-customer-name'] ) : '';
90
+		$email = isset($data['give-new-customer-email']) ? sanitize_text_field($data['give-new-customer-email']) : '';
91
+		$names = isset($data['give-new-customer-name']) ? sanitize_text_field($data['give-new-customer-name']) : '';
92 92
 
93
-		if ( empty( $email ) || empty( $names ) ) {
94
-			wp_die( esc_attr__( 'New Customers require a name and email address.', 'give' ) );
93
+		if (empty($email) || empty($names)) {
94
+			wp_die(esc_attr__('New Customers require a name and email address.', 'give'));
95 95
 		}
96 96
 
97
-		$customer = new Give_Customer( $email );
98
-		if ( empty( $customer->id ) ) {
99
-			$customer_data = array( 'name' => $names, 'email' => $email );
100
-			$user_id       = email_exists( $email );
101
-			if ( false !== $user_id ) {
97
+		$customer = new Give_Customer($email);
98
+		if (empty($customer->id)) {
99
+			$customer_data = array('name' => $names, 'email' => $email);
100
+			$user_id       = email_exists($email);
101
+			if (false !== $user_id) {
102 102
 				$customer_data['user_id'] = $user_id;
103 103
 			}
104 104
 
105
-			if ( ! $customer->create( $customer_data ) ) {
105
+			if ( ! $customer->create($customer_data)) {
106 106
 				// Failed to crete the new donor, assume the previous donor
107 107
 				$customer_changed = false;
108
-				$customer         = new Give_Customer( $curr_customer_id );
109
-				give_set_error( 'give-payment-new-customer-fail', __( 'Error creating new donor.', 'give' ) );
108
+				$customer         = new Give_Customer($curr_customer_id);
109
+				give_set_error('give-payment-new-customer-fail', __('Error creating new donor.', 'give'));
110 110
 			}
111 111
 		}
112 112
 
113 113
 		$new_customer_id = $customer->id;
114 114
 
115
-		$previous_customer = new Give_Customer( $curr_customer_id );
115
+		$previous_customer = new Give_Customer($curr_customer_id);
116 116
 
117 117
 		$customer_changed = true;
118 118
 
119
-	} elseif ( $curr_customer_id !== $new_customer_id ) {
119
+	} elseif ($curr_customer_id !== $new_customer_id) {
120 120
 
121
-		$customer = new Give_Customer( $new_customer_id );
121
+		$customer = new Give_Customer($new_customer_id);
122 122
 		$email    = $customer->email;
123 123
 		$names    = $customer->name;
124 124
 
125
-		$previous_customer = new Give_Customer( $curr_customer_id );
125
+		$previous_customer = new Give_Customer($curr_customer_id);
126 126
 
127 127
 		$customer_changed = true;
128 128
 
129 129
 	} else {
130 130
 
131
-		$customer = new Give_Customer( $curr_customer_id );
131
+		$customer = new Give_Customer($curr_customer_id);
132 132
 		$email    = $customer->email;
133 133
 		$names    = $customer->name;
134 134
 
@@ -136,35 +136,35 @@  discard block
 block discarded – undo
136 136
 
137 137
 
138 138
 	// Setup first and last name from input values
139
-	$names      = explode( ' ', $names );
140
-	$first_name = ! empty( $names[0] ) ? $names[0] : '';
139
+	$names      = explode(' ', $names);
140
+	$first_name = ! empty($names[0]) ? $names[0] : '';
141 141
 	$last_name  = '';
142
-	if ( ! empty( $names[1] ) ) {
143
-		unset( $names[0] );
144
-		$last_name = implode( ' ', $names );
142
+	if ( ! empty($names[1])) {
143
+		unset($names[0]);
144
+		$last_name = implode(' ', $names);
145 145
 	}
146 146
 
147 147
 
148
-	if ( $customer_changed ) {
148
+	if ($customer_changed) {
149 149
 
150 150
 		// Remove the stats and payment from the previous customer and attach it to the new customer
151
-		$previous_customer->remove_payment( $payment_id, false );
152
-		$customer->attach_payment( $payment_id, false );
151
+		$previous_customer->remove_payment($payment_id, false);
152
+		$customer->attach_payment($payment_id, false);
153 153
 
154 154
         // Reduce previous user donation count and amoount.
155 155
         $previous_customer->decrease_purchase_count();
156
-        $previous_customer->decrease_value( $curr_total );
156
+        $previous_customer->decrease_value($curr_total);
157 157
 
158 158
 		// If purchase was completed and not ever refunded, adjust stats of new customers.
159
-		if ( 'revoked' == $status || 'publish' == $status ) {
159
+		if ('revoked' == $status || 'publish' == $status) {
160 160
 			$customer->increase_purchase_count();
161
-			$customer->increase_value( $new_total );
161
+			$customer->increase_value($new_total);
162 162
 		}
163 163
 
164 164
 		$payment->customer_id = $customer->id;
165
-	} else{
165
+	} else {
166 166
 		// Update user donation stat.
167
-		$customer->update_donation_value( $curr_total, $new_total );
167
+		$customer->update_donation_value($curr_total, $new_total);
168 168
     }
169 169
 
170 170
 	// Set new meta values
@@ -177,10 +177,10 @@  discard block
 block discarded – undo
177 177
 
178 178
 
179 179
 	// Check for payment notes
180
-	if ( ! empty( $data['give-payment-note'] ) ) {
180
+	if ( ! empty($data['give-payment-note'])) {
181 181
 
182
-		$note = wp_kses( $data['give-payment-note'], array() );
183
-		give_insert_payment_note( $payment_id, $note );
182
+		$note = wp_kses($data['give-payment-note'], array());
183
+		give_insert_payment_note($payment_id, $note);
184 184
 
185 185
 	}
186 186
 
@@ -188,17 +188,17 @@  discard block
 block discarded – undo
188 188
 	$payment->status = $status;
189 189
 
190 190
 	// Adjust total store earnings if the payment total has been changed
191
-	if ( $new_total !== $curr_total && ( 'publish' == $status || 'revoked' == $status ) ) {
191
+	if ($new_total !== $curr_total && ('publish' == $status || 'revoked' == $status)) {
192 192
 
193
-		if ( $new_total > $curr_total ) {
193
+		if ($new_total > $curr_total) {
194 194
 			// Increase if our new total is higher
195 195
 			$difference = $new_total - $curr_total;
196
-			give_increase_total_earnings( $difference );
196
+			give_increase_total_earnings($difference);
197 197
 
198
-		} elseif ( $curr_total > $new_total ) {
198
+		} elseif ($curr_total > $new_total) {
199 199
 			// Decrease if our new total is lower
200 200
 			$difference = $curr_total - $new_total;
201
-			give_decrease_total_earnings( $difference );
201
+			give_decrease_total_earnings($difference);
202 202
 
203 203
 		}
204 204
 
@@ -207,16 +207,16 @@  discard block
 block discarded – undo
207 207
 	$payment->save();
208 208
 
209 209
     // Get new give form ID.
210
-    $new_form_id = absint( $data['forms'] );
211
-    $current_form_id = absint( $payment->get_meta( '_give_payment_form_id' ) );
210
+    $new_form_id = absint($data['forms']);
211
+    $current_form_id = absint($payment->get_meta('_give_payment_form_id'));
212 212
 
213 213
     // We are adding payment transfer code in last to remove any conflict with above functionality.
214 214
     // For example: above code will automatically handle form stat (increase/decrease) when payment status changes.
215 215
     /* Check if user want to transfer current payment to new give form id. */
216
-    if( $new_form_id != $current_form_id  ) {
216
+    if ($new_form_id != $current_form_id) {
217 217
 
218 218
         // Get new give form title.
219
-        $new_form_title = get_the_title( $new_form_id );
219
+        $new_form_title = get_the_title($new_form_id);
220 220
 
221 221
         // Update new give form data in payment data.
222 222
         $payment_meta = $payment->get_meta();
@@ -224,28 +224,28 @@  discard block
 block discarded – undo
224 224
         $payment_meta['form_id']    = $new_form_id;
225 225
 
226 226
         // Update price id post meta data for set donation form.
227
-        if( ! give_has_variable_prices( $new_form_id ) ) {
227
+        if ( ! give_has_variable_prices($new_form_id)) {
228 228
             $payment_meta['price_id'] = '';
229 229
         }
230 230
 
231 231
         // Update payment give form meta data.
232
-        $payment->update_meta( '_give_payment_form_id', $new_form_id );
233
-        $payment->update_meta( '_give_payment_form_title', $new_form_title );
234
-        $payment->update_meta( '_give_payment_meta', $payment_meta );
232
+        $payment->update_meta('_give_payment_form_id', $new_form_id);
233
+        $payment->update_meta('_give_payment_form_title', $new_form_title);
234
+        $payment->update_meta('_give_payment_meta', $payment_meta);
235 235
 
236 236
         // Update price id payment metadata.
237
-        if( ! give_has_variable_prices( $new_form_id ) ) {
238
-            $payment->update_meta( '_give_payment_price_id', '' );
237
+        if ( ! give_has_variable_prices($new_form_id)) {
238
+            $payment->update_meta('_give_payment_price_id', '');
239 239
         }
240 240
 
241 241
 
242 242
         // If purchase was completed and not ever refunded, adjust stats of forms
243
-        if ( 'revoked' == $status || 'publish' == $status ) {
243
+        if ('revoked' == $status || 'publish' == $status) {
244 244
 
245 245
             // Decrease sale of old give form. For other payment status 
246
-            $current_form = new Give_Donate_Form( $current_form_id );
246
+            $current_form = new Give_Donate_Form($current_form_id);
247 247
             $current_form->decrease_sales();
248
-            $current_form->decrease_earnings( $curr_total );
248
+            $current_form->decrease_earnings($curr_total);
249 249
             
250 250
             // Increase sale of new give form.
251 251
             $new_form = new Give_Donate_Form($new_form_id);
@@ -254,36 +254,36 @@  discard block
 block discarded – undo
254 254
         }
255 255
 
256 256
         // Re setup payment to update new meta value in object.
257
-        $payment->update_payment_setup( $payment->ID );
257
+        $payment->update_payment_setup($payment->ID);
258 258
     }
259 259
 
260 260
     // Update price id if current form is variable form.
261
-    if( ! empty( $data['give-variable-price'] ) && give_has_variable_prices( $payment->form_id ) ) {
261
+    if ( ! empty($data['give-variable-price']) && give_has_variable_prices($payment->form_id)) {
262 262
 
263 263
         // Get payment meta data.
264 264
         $payment_meta = $payment->get_meta();
265 265
 
266 266
         // Set payment id to empty string if variable price id is negative ( i.e. custom amount feature enabled ).
267
-        $data['give-variable-price'] = ( 'custom' === $data['give-variable-price'] ) ? 'custom' : ( 0 < $data['give-variable-price'] ) ? $data['give-variable-price'] : '';
267
+        $data['give-variable-price'] = ('custom' === $data['give-variable-price']) ? 'custom' : (0 < $data['give-variable-price']) ? $data['give-variable-price'] : '';
268 268
 
269 269
         // Update payment meta data.
270 270
         $payment_meta['price_id'] = $data['give-variable-price'];
271 271
 
272 272
         // Update payment give form meta data.
273
-        $payment->update_meta( '_give_payment_price_id', $data['give-variable-price'] );
274
-        $payment->update_meta( '_give_payment_meta', $payment_meta );
273
+        $payment->update_meta('_give_payment_price_id', $data['give-variable-price']);
274
+        $payment->update_meta('_give_payment_meta', $payment_meta);
275 275
 
276 276
         // Re setup payment to update new meta value in object.
277
-        $payment->update_payment_setup( $payment->ID );
277
+        $payment->update_payment_setup($payment->ID);
278 278
     }
279 279
 
280
-	do_action( 'give_updated_edited_purchase', $payment_id );
280
+	do_action('give_updated_edited_purchase', $payment_id);
281 281
 
282
-	wp_safe_redirect( admin_url( 'edit.php?post_type=give_forms&page=give-payment-history&view=view-order-details&give-message=payment-updated&id=' . $payment_id ) );
282
+	wp_safe_redirect(admin_url('edit.php?post_type=give_forms&page=give-payment-history&view=view-order-details&give-message=payment-updated&id='.$payment_id));
283 283
 	exit;
284 284
 }
285 285
 
286
-add_action( 'give_update_payment_details', 'give_update_payment_details' );
286
+add_action('give_update_payment_details', 'give_update_payment_details');
287 287
 
288 288
 /**
289 289
  * Trigger a Purchase Deletion
@@ -294,48 +294,48 @@  discard block
 block discarded – undo
294 294
  *
295 295
  * @return void
296 296
  */
297
-function give_trigger_purchase_delete( $data ) {
298
-	if ( wp_verify_nonce( $data['_wpnonce'], 'give_payment_nonce' ) ) {
297
+function give_trigger_purchase_delete($data) {
298
+	if (wp_verify_nonce($data['_wpnonce'], 'give_payment_nonce')) {
299 299
 
300
-		$payment_id = absint( $data['purchase_id'] );
300
+		$payment_id = absint($data['purchase_id']);
301 301
 
302
-		if ( ! current_user_can( 'edit_give_payments', $payment_id ) ) {
303
-			wp_die( __( 'You do not have permission to edit payment records.', 'give' ), __( 'Error', 'give' ), array( 'response' => 403 ) );
302
+		if ( ! current_user_can('edit_give_payments', $payment_id)) {
303
+			wp_die(__('You do not have permission to edit payment records.', 'give'), __('Error', 'give'), array('response' => 403));
304 304
 		}
305 305
 
306
-		give_delete_purchase( $payment_id );
307
-		wp_redirect( admin_url( '/edit.php?post_type=give_forms&page=give-payment-history&give-message=payment_deleted' ) );
306
+		give_delete_purchase($payment_id);
307
+		wp_redirect(admin_url('/edit.php?post_type=give_forms&page=give-payment-history&give-message=payment_deleted'));
308 308
 		give_die();
309 309
 	}
310 310
 }
311 311
 
312
-add_action( 'give_delete_payment', 'give_trigger_purchase_delete' );
312
+add_action('give_delete_payment', 'give_trigger_purchase_delete');
313 313
 
314 314
 /**
315 315
  * AJAX Store Payment Note
316 316
  */
317 317
 function give_ajax_store_payment_note() {
318 318
 
319
-	$payment_id = absint( $_POST['payment_id'] );
320
-	$note       = wp_kses( $_POST['note'], array() );
319
+	$payment_id = absint($_POST['payment_id']);
320
+	$note       = wp_kses($_POST['note'], array());
321 321
 
322
-	if ( ! current_user_can( 'edit_give_payments', $payment_id ) ) {
323
-		wp_die( __( 'You do not have permission to edit payment records.', 'give' ), __( 'Error', 'give' ), array( 'response' => 403 ) );
322
+	if ( ! current_user_can('edit_give_payments', $payment_id)) {
323
+		wp_die(__('You do not have permission to edit payment records.', 'give'), __('Error', 'give'), array('response' => 403));
324 324
 	}
325 325
 
326
-	if ( empty( $payment_id ) ) {
327
-		die( '-1' );
326
+	if (empty($payment_id)) {
327
+		die('-1');
328 328
 	}
329 329
 
330
-	if ( empty( $note ) ) {
331
-		die( '-1' );
330
+	if (empty($note)) {
331
+		die('-1');
332 332
 	}
333 333
 
334
-	$note_id = give_insert_payment_note( $payment_id, $note );
335
-	die( give_get_payment_note_html( $note_id ) );
334
+	$note_id = give_insert_payment_note($payment_id, $note);
335
+	die(give_get_payment_note_html($note_id));
336 336
 }
337 337
 
338
-add_action( 'wp_ajax_give_insert_payment_note', 'give_ajax_store_payment_note' );
338
+add_action('wp_ajax_give_insert_payment_note', 'give_ajax_store_payment_note');
339 339
 
340 340
 /**
341 341
  * Triggers a payment note deletion without ajax
@@ -346,24 +346,24 @@  discard block
 block discarded – undo
346 346
  *
347 347
  * @return void
348 348
  */
349
-function give_trigger_payment_note_deletion( $data ) {
349
+function give_trigger_payment_note_deletion($data) {
350 350
 
351
-	if ( ! wp_verify_nonce( $data['_wpnonce'], 'give_delete_payment_note_' . $data['note_id'] ) ) {
351
+	if ( ! wp_verify_nonce($data['_wpnonce'], 'give_delete_payment_note_'.$data['note_id'])) {
352 352
 		return;
353 353
 	}
354 354
 
355
-	if ( ! current_user_can( 'edit_give_payments', $data['payment_id'] ) ) {
356
-		wp_die( __( 'You do not have permission to edit payment records.', 'give' ), __( 'Error', 'give' ), array( 'response' => 403 ) );
355
+	if ( ! current_user_can('edit_give_payments', $data['payment_id'])) {
356
+		wp_die(__('You do not have permission to edit payment records.', 'give'), __('Error', 'give'), array('response' => 403));
357 357
 	}
358 358
 
359
-	$edit_order_url = admin_url( 'edit.php?post_type=give_forms&page=give-payment-history&view=view-order-details&give-message=payment-note-deleted&id=' . absint( $data['payment_id'] ) );
359
+	$edit_order_url = admin_url('edit.php?post_type=give_forms&page=give-payment-history&view=view-order-details&give-message=payment-note-deleted&id='.absint($data['payment_id']));
360 360
 
361
-	give_delete_payment_note( $data['note_id'], $data['payment_id'] );
361
+	give_delete_payment_note($data['note_id'], $data['payment_id']);
362 362
 
363
-	wp_redirect( $edit_order_url );
363
+	wp_redirect($edit_order_url);
364 364
 }
365 365
 
366
-add_action( 'give_delete_payment_note', 'give_trigger_payment_note_deletion' );
366
+add_action('give_delete_payment_note', 'give_trigger_payment_note_deletion');
367 367
 
368 368
 /**
369 369
  * Delete a payment note deletion with ajax
@@ -374,16 +374,16 @@  discard block
 block discarded – undo
374 374
  */
375 375
 function give_ajax_delete_payment_note() {
376 376
 
377
-	if ( ! current_user_can( 'edit_give_payments', $_POST['payment_id'] ) ) {
378
-		wp_die( __( 'You do not have permission to edit payment records.', 'give' ), __( 'Error', 'give' ), array( 'response' => 403 ) );
377
+	if ( ! current_user_can('edit_give_payments', $_POST['payment_id'])) {
378
+		wp_die(__('You do not have permission to edit payment records.', 'give'), __('Error', 'give'), array('response' => 403));
379 379
 	}
380 380
 
381
-	if ( give_delete_payment_note( $_POST['note_id'], $_POST['payment_id'] ) ) {
382
-		die( '1' );
381
+	if (give_delete_payment_note($_POST['note_id'], $_POST['payment_id'])) {
382
+		die('1');
383 383
 	} else {
384
-		die( '-1' );
384
+		die('-1');
385 385
 	}
386 386
 
387 387
 }
388 388
 
389
-add_action( 'wp_ajax_give_delete_payment_note', 'give_ajax_delete_payment_note' );
390 389
\ No newline at end of file
390
+add_action('wp_ajax_give_delete_payment_note', 'give_ajax_delete_payment_note');
391 391
\ No newline at end of file
Please login to merge, or discard this patch.
includes/admin/forms/metabox.php 2 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -75,8 +75,8 @@  discard block
 block discarded – undo
75 75
 					'row_classes'  => 'give-subfield',
76 76
 					'before_field' => give_get_option( 'currency_position' ) == 'before' ? '<span class="give-money-symbol give-money-symbol-before">' . give_currency_symbol() . '</span>' : '',
77 77
 					'after_field'  => give_get_option( 'currency_position' ) == 'after' ? '<span class="give-money-symbol give-money-symbol-after">' . give_currency_symbol() . '</span>' : '',
78
-                    'sanitization_cb'   => 'give_sanitize_amount',
79
-                    'attributes'   => array(
78
+					'sanitization_cb'   => 'give_sanitize_amount',
79
+					'attributes'   => array(
80 80
 						'placeholder' => give_format_decimal( '1.00' ),
81 81
 						'value'       => give_format_decimal( $price ),
82 82
 						'class'       => 'cmb-type-text-small give-money-field',
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
 							'before_field'      => give_get_option( 'currency_position' ) == 'before' ? '<span class="give-money-symbol  give-money-symbol-before">' . give_currency_symbol() . '</span>' : '',
112 112
 							'after_field'       => give_get_option( 'currency_position' ) == 'after' ? '<span class="give-money-symbol  give-money-symbol-after">' . give_currency_symbol() . '</span>' : '',
113 113
 							'sanitization_cb'   => 'give_sanitize_amount',
114
-                            'attributes'        => array(
114
+							'attributes'        => array(
115 115
 								'placeholder' => '1.00',
116 116
 								'class'       => 'cmb-type-text-small give-money-field',
117 117
 							),
@@ -166,8 +166,8 @@  discard block
 block discarded – undo
166 166
 					'row_classes'  => 'give-subfield',
167 167
 					'before_field' => give_get_option( 'currency_position' ) == 'before' ? '<span class="give-money-symbol give-money-symbol-before">' . give_currency_symbol() . '</span>' : '',
168 168
 					'after_field'  => give_get_option( 'currency_position' ) == 'after' ? '<span class="give-money-symbol give-money-symbol-after">' . give_currency_symbol() . '</span>' : '',
169
-                    'sanitization_cb'   => 'give_sanitize_amount',
170
-                    'attributes'   => array(
169
+					'sanitization_cb'   => 'give_sanitize_amount',
170
+					'attributes'   => array(
171 171
 						'placeholder' => give_format_decimal('1.00'),
172 172
 						'value'       => give_format_decimal( $custom_amount_minimum ),
173 173
 						'class'       => 'cmb-type-text-small give-money-field',
Please login to merge, or discard this patch.
Spacing   +188 added lines, -188 removed lines patch added patch discarded remove patch
@@ -10,11 +10,11 @@  discard block
 block discarded – undo
10 10
  */
11 11
 
12 12
 // Exit if accessed directly
13
-if ( ! defined( 'ABSPATH' ) ) {
13
+if ( ! defined('ABSPATH')) {
14 14
 	exit;
15 15
 }
16 16
 
17
-add_filter( 'cmb2_meta_boxes', 'give_single_forms_cmb2_metaboxes' );
17
+add_filter('cmb2_meta_boxes', 'give_single_forms_cmb2_metaboxes');
18 18
 
19 19
 /**
20 20
  * Define the metabox and field configurations.
@@ -23,23 +23,23 @@  discard block
 block discarded – undo
23 23
  *
24 24
  * @return array
25 25
  */
26
-function give_single_forms_cmb2_metaboxes( array $meta_boxes ) {
26
+function give_single_forms_cmb2_metaboxes(array $meta_boxes) {
27 27
 
28 28
 	$post_id               = give_get_admin_post_id();
29
-	$price                 = give_get_form_price( $post_id );
30
-	$custom_amount_minimum = give_get_form_minimum_price( $post_id );
31
-	$goal                  = give_get_form_goal( $post_id );
32
-	$variable_pricing      = give_has_variable_prices( $post_id );
33
-	$prices                = give_get_variable_prices( $post_id );
29
+	$price                 = give_get_form_price($post_id);
30
+	$custom_amount_minimum = give_get_form_minimum_price($post_id);
31
+	$goal                  = give_get_form_goal($post_id);
32
+	$variable_pricing      = give_has_variable_prices($post_id);
33
+	$prices                = give_get_variable_prices($post_id);
34 34
 
35 35
 	//No empty prices - min. 1.00 for new forms
36
-	if ( empty( $price ) && is_null( $post_id ) ) {
37
-		$price = esc_attr( give_format_amount( '1.00' ) );
36
+	if (empty($price) && is_null($post_id)) {
37
+		$price = esc_attr(give_format_amount('1.00'));
38 38
 	}
39 39
 
40 40
 	//Min. $1.00 for new forms
41
-	if ( empty( $custom_amount_minimum ) ) {
42
-		$custom_amount_minimum = esc_attr( give_format_amount( '1.00' ) );
41
+	if (empty($custom_amount_minimum)) {
42
+		$custom_amount_minimum = esc_attr(give_format_amount('1.00'));
43 43
 	}
44 44
 
45 45
 	// Start with an underscore to hide fields from custom fields list
@@ -48,68 +48,68 @@  discard block
 block discarded – undo
48 48
 	/**
49 49
 	 * Repeatable Field Groups
50 50
 	 */
51
-	$meta_boxes['form_field_options'] = apply_filters( 'give_forms_field_options', array(
51
+	$meta_boxes['form_field_options'] = apply_filters('give_forms_field_options', array(
52 52
 		'id'           => 'form_field_options',
53
-		'title'        => __( 'Donation Options', 'give' ),
54
-		'object_types' => array( 'give_forms' ),
53
+		'title'        => __('Donation Options', 'give'),
54
+		'object_types' => array('give_forms'),
55 55
 		'context'      => 'normal',
56 56
 		'priority'     => 'high', //Show above Content WYSIWYG
57
-		'fields'       => apply_filters( 'give_forms_donation_form_metabox_fields', array(
57
+		'fields'       => apply_filters('give_forms_donation_form_metabox_fields', array(
58 58
 				//Donation Option
59 59
 				array(
60
-					'name'        => __( 'Donation Option', 'give' ),
61
-					'description' => __( 'Would you like this form to have one set donation price or multiple levels (for example, $10, $20, $50)?', 'give' ),
62
-					'id'          => $prefix . 'price_option',
60
+					'name'        => __('Donation Option', 'give'),
61
+					'description' => __('Would you like this form to have one set donation price or multiple levels (for example, $10, $20, $50)?', 'give'),
62
+					'id'          => $prefix.'price_option',
63 63
 					'type'        => 'radio_inline',
64 64
 					'default'     => 'set',
65
-					'options'     => apply_filters( 'give_forms_price_options', array(
66
-						'set'   => __( 'Set Donation', 'give' ),
67
-						'multi' => __( 'Multi-level Donation', 'give' ),
68
-					) ),
65
+					'options'     => apply_filters('give_forms_price_options', array(
66
+						'set'   => __('Set Donation', 'give'),
67
+						'multi' => __('Multi-level Donation', 'give'),
68
+					)),
69 69
 				),
70 70
 				array(
71
-					'name'         => __( 'Set Donation', 'give' ),
72
-					'description'  => __( 'This is the set donation amount for this form. If you have a "Custom Amount Minimum" set, make sure it is less than this amount.', 'give' ),
73
-					'id'           => $prefix . 'set_price',
71
+					'name'         => __('Set Donation', 'give'),
72
+					'description'  => __('This is the set donation amount for this form. If you have a "Custom Amount Minimum" set, make sure it is less than this amount.', 'give'),
73
+					'id'           => $prefix.'set_price',
74 74
 					'type'         => 'text_small',
75 75
 					'row_classes'  => 'give-subfield',
76
-					'before_field' => give_get_option( 'currency_position' ) == 'before' ? '<span class="give-money-symbol give-money-symbol-before">' . give_currency_symbol() . '</span>' : '',
77
-					'after_field'  => give_get_option( 'currency_position' ) == 'after' ? '<span class="give-money-symbol give-money-symbol-after">' . give_currency_symbol() . '</span>' : '',
76
+					'before_field' => give_get_option('currency_position') == 'before' ? '<span class="give-money-symbol give-money-symbol-before">'.give_currency_symbol().'</span>' : '',
77
+					'after_field'  => give_get_option('currency_position') == 'after' ? '<span class="give-money-symbol give-money-symbol-after">'.give_currency_symbol().'</span>' : '',
78 78
                     'sanitization_cb'   => 'give_sanitize_amount',
79 79
                     'attributes'   => array(
80
-						'placeholder' => give_format_decimal( '1.00' ),
81
-						'value'       => give_format_decimal( $price ),
80
+						'placeholder' => give_format_decimal('1.00'),
81
+						'value'       => give_format_decimal($price),
82 82
 						'class'       => 'cmb-type-text-small give-money-field',
83 83
 					),
84 84
 				),
85 85
 				//Donation levels: Header
86 86
 				array(
87
-					'id'   => $prefix . 'levels_header',
87
+					'id'   => $prefix.'levels_header',
88 88
 					'type' => 'levels_repeater_header',
89 89
 				),
90 90
 				//Donation Levels: Repeatable CMB2 Group
91 91
 				array(
92
-					'id'          => $prefix . 'donation_levels',
92
+					'id'          => $prefix.'donation_levels',
93 93
 					'type'        => 'group',
94 94
 					'row_classes' => 'give-subfield',
95 95
 					'options'     => array(
96
-						'add_button'    => __( 'Add Level', 'give' ),
96
+						'add_button'    => __('Add Level', 'give'),
97 97
 						'remove_button' => '<span class="dashicons dashicons-no"></span>',
98 98
 						'sortable'      => true, // beta
99 99
 					),
100 100
 					// Fields array works the same, except id's only need to be unique for this group. Prefix is not needed.
101
-					'fields'      => apply_filters( 'give_donation_levels_table_row', array(
101
+					'fields'      => apply_filters('give_donation_levels_table_row', array(
102 102
 						array(
103
-							'name' => __( 'ID', 'give' ),
104
-							'id'   => $prefix . 'id',
103
+							'name' => __('ID', 'give'),
104
+							'id'   => $prefix.'id',
105 105
 							'type' => 'levels_id',
106 106
 						),
107 107
 						array(
108
-							'name'              => __( 'Amount', 'give' ),
109
-							'id'                => $prefix . 'amount',
108
+							'name'              => __('Amount', 'give'),
109
+							'id'                => $prefix.'amount',
110 110
 							'type'              => 'text_small',
111
-							'before_field'      => give_get_option( 'currency_position' ) == 'before' ? '<span class="give-money-symbol  give-money-symbol-before">' . give_currency_symbol() . '</span>' : '',
112
-							'after_field'       => give_get_option( 'currency_position' ) == 'after' ? '<span class="give-money-symbol  give-money-symbol-after">' . give_currency_symbol() . '</span>' : '',
111
+							'before_field'      => give_get_option('currency_position') == 'before' ? '<span class="give-money-symbol  give-money-symbol-before">'.give_currency_symbol().'</span>' : '',
112
+							'after_field'       => give_get_option('currency_position') == 'after' ? '<span class="give-money-symbol  give-money-symbol-after">'.give_currency_symbol().'</span>' : '',
113 113
 							'sanitization_cb'   => 'give_sanitize_amount',
114 114
                             'attributes'        => array(
115 115
 								'placeholder' => '1.00',
@@ -118,260 +118,260 @@  discard block
 block discarded – undo
118 118
 							'before'       => 'give_format_admin_multilevel_amount',
119 119
 						),
120 120
 						array(
121
-							'name'       => __( 'Text', 'give' ),
122
-							'id'         => $prefix . 'text',
121
+							'name'       => __('Text', 'give'),
122
+							'id'         => $prefix.'text',
123 123
 							'type'       => 'text',
124 124
 							'attributes' => array(
125
-								'placeholder' => __( 'Donation Level', 'give' ),
125
+								'placeholder' => __('Donation Level', 'give'),
126 126
 								'class'       => 'give-multilevel-text-field',
127 127
 							),
128 128
 						),
129 129
 						array(
130
-							'name' => __( 'Default', 'give' ),
131
-							'id'   => $prefix . 'default',
130
+							'name' => __('Default', 'give'),
131
+							'id'   => $prefix.'default',
132 132
 							'type' => 'give_default_radio_inline'
133 133
 						),
134
-					) ),
134
+					)),
135 135
 				),
136 136
 				//Display Style
137 137
 				array(
138
-					'name'        => __( 'Display Style', 'give' ),
139
-					'description' => __( 'Set how the donations levels will display on the form.', 'give' ),
140
-					'id'          => $prefix . 'display_style',
138
+					'name'        => __('Display Style', 'give'),
139
+					'description' => __('Set how the donations levels will display on the form.', 'give'),
140
+					'id'          => $prefix.'display_style',
141 141
 					'type'        => 'radio_inline',
142 142
 					'default'     => 'buttons',
143 143
 					'options'     => array(
144
-						'buttons'  => __( 'Buttons', 'give' ),
145
-						'radios'   => __( 'Radios', 'give' ),
146
-						'dropdown' => __( 'Dropdown', 'give' ),
144
+						'buttons'  => __('Buttons', 'give'),
145
+						'radios'   => __('Radios', 'give'),
146
+						'dropdown' => __('Dropdown', 'give'),
147 147
 					),
148 148
 				),
149 149
 				//Custom Amount
150 150
 				array(
151
-					'name'        => __( 'Custom Amount', 'give' ),
152
-					'description' => __( 'Do you want the user to be able to input their own donation amount?', 'give' ),
153
-					'id'          => $prefix . 'custom_amount',
151
+					'name'        => __('Custom Amount', 'give'),
152
+					'description' => __('Do you want the user to be able to input their own donation amount?', 'give'),
153
+					'id'          => $prefix.'custom_amount',
154 154
 					'type'        => 'radio_inline',
155 155
 					'default'     => 'no',
156 156
 					'options'     => array(
157
-						'yes' => __( 'Yes', 'give' ),
158
-						'no'  => __( 'No', 'give' ),
157
+						'yes' => __('Yes', 'give'),
158
+						'no'  => __('No', 'give'),
159 159
 					),
160 160
 				),
161 161
 				array(
162
-					'name'         => __( 'Custom Amount Minimum', 'give' ),
163
-					'description'  => __( 'If you would like to set a minimum custom donation amount please enter it here.', 'give' ),
164
-					'id'           => $prefix . 'custom_amount_minimum',
162
+					'name'         => __('Custom Amount Minimum', 'give'),
163
+					'description'  => __('If you would like to set a minimum custom donation amount please enter it here.', 'give'),
164
+					'id'           => $prefix.'custom_amount_minimum',
165 165
 					'type'         => 'text_small',
166 166
 					'row_classes'  => 'give-subfield',
167
-					'before_field' => give_get_option( 'currency_position' ) == 'before' ? '<span class="give-money-symbol give-money-symbol-before">' . give_currency_symbol() . '</span>' : '',
168
-					'after_field'  => give_get_option( 'currency_position' ) == 'after' ? '<span class="give-money-symbol give-money-symbol-after">' . give_currency_symbol() . '</span>' : '',
167
+					'before_field' => give_get_option('currency_position') == 'before' ? '<span class="give-money-symbol give-money-symbol-before">'.give_currency_symbol().'</span>' : '',
168
+					'after_field'  => give_get_option('currency_position') == 'after' ? '<span class="give-money-symbol give-money-symbol-after">'.give_currency_symbol().'</span>' : '',
169 169
                     'sanitization_cb'   => 'give_sanitize_amount',
170 170
                     'attributes'   => array(
171 171
 						'placeholder' => give_format_decimal('1.00'),
172
-						'value'       => give_format_decimal( $custom_amount_minimum ),
172
+						'value'       => give_format_decimal($custom_amount_minimum),
173 173
 						'class'       => 'cmb-type-text-small give-money-field',
174 174
 					),
175 175
 				),
176 176
 				array(
177
-					'name'        => __( 'Custom Amount Text', 'give' ),
178
-					'description' => __( 'This text appears as a label below the custom amount field for set donation forms. For multi-level forms the text will appear as it\'s own level (ie button, radio, or select option).', 'give' ),
179
-					'id'          => $prefix . 'custom_amount_text',
177
+					'name'        => __('Custom Amount Text', 'give'),
178
+					'description' => __('This text appears as a label below the custom amount field for set donation forms. For multi-level forms the text will appear as it\'s own level (ie button, radio, or select option).', 'give'),
179
+					'id'          => $prefix.'custom_amount_text',
180 180
 					'type'        => 'text',
181 181
 					'row_classes' => 'give-subfield',
182 182
 					'attributes'  => array(
183 183
 						'rows'        => 3,
184
-						'placeholder' => __( 'Give a Custom Amount', 'give' ),
184
+						'placeholder' => __('Give a Custom Amount', 'give'),
185 185
 					),
186 186
 				),
187 187
 				//Goals
188 188
 				array(
189
-					'name'        => __( 'Goal', 'give' ),
190
-					'description' => __( 'Do you want to set a donation goal for this form?', 'give' ),
191
-					'id'          => $prefix . 'goal_option',
189
+					'name'        => __('Goal', 'give'),
190
+					'description' => __('Do you want to set a donation goal for this form?', 'give'),
191
+					'id'          => $prefix.'goal_option',
192 192
 					'type'        => 'radio_inline',
193 193
 					'default'     => 'no',
194 194
 					'options'     => array(
195
-						'yes' => __( 'Yes', 'give' ),
196
-						'no'  => __( 'No', 'give' ),
195
+						'yes' => __('Yes', 'give'),
196
+						'no'  => __('No', 'give'),
197 197
 					),
198 198
 				),
199 199
 				array(
200
-					'name'              => __( 'Goal Amount', 'give' ),
201
-					'description'       => __( 'This is the monetary goal amount you want to reach for this donation form.', 'give' ),
202
-					'id'                => $prefix . 'set_goal',
200
+					'name'              => __('Goal Amount', 'give'),
201
+					'description'       => __('This is the monetary goal amount you want to reach for this donation form.', 'give'),
202
+					'id'                => $prefix.'set_goal',
203 203
 					'type'              => 'text_small',
204 204
 					'row_classes'       => 'give-subfield',
205
-					'before_field'      => give_get_option( 'currency_position' ) == 'before' ? '<span class="give-money-symbol give-money-symbol-before">' . give_currency_symbol() . '</span>' : '',
206
-					'after_field'       => give_get_option( 'currency_position' ) == 'after' ? '<span class="give-money-symbol give-money-symbol-after">' . give_currency_symbol() . '</span>' : '',
205
+					'before_field'      => give_get_option('currency_position') == 'before' ? '<span class="give-money-symbol give-money-symbol-before">'.give_currency_symbol().'</span>' : '',
206
+					'after_field'       => give_get_option('currency_position') == 'after' ? '<span class="give-money-symbol give-money-symbol-after">'.give_currency_symbol().'</span>' : '',
207 207
 					'sanitization_cb'   => 'give_sanitize_amount',
208 208
 					'attributes'        => array(
209
-						'placeholder' => give_format_decimal( '0.00' ),
210
-						'value'       => give_format_decimal( $goal ),
209
+						'placeholder' => give_format_decimal('0.00'),
210
+						'value'       => give_format_decimal($goal),
211 211
 						'class'       => 'cmb-type-text-small give-money-field',
212 212
 					),
213 213
 				),
214 214
 
215 215
 				array(
216
-					'name'        => __( 'Goal Format', 'give' ),
217
-					'description' => __( 'Would you like to display the total amount raised based on your monetary goal or a percentage? For instance, "$500 of $1,000 raised" or "50% funded".', 'give' ),
218
-					'id'          => $prefix . 'goal_format',
216
+					'name'        => __('Goal Format', 'give'),
217
+					'description' => __('Would you like to display the total amount raised based on your monetary goal or a percentage? For instance, "$500 of $1,000 raised" or "50% funded".', 'give'),
218
+					'id'          => $prefix.'goal_format',
219 219
 					'type'        => 'radio_inline',
220 220
 					'default'     => 'amount',
221 221
 					'row_classes' => 'give-subfield',
222 222
 					'options'     => array(
223
-						'amount'     => __( 'Amount ', 'give' ),
224
-						'percentage' => __( 'Percentage', 'give' ),
223
+						'amount'     => __('Amount ', 'give'),
224
+						'percentage' => __('Percentage', 'give'),
225 225
 					),
226 226
 				),
227 227
 				array(
228
-					'name'        => __( 'Goal Progress Bar Color', 'give' ),
229
-					'id'          => $prefix . 'goal_color',
228
+					'name'        => __('Goal Progress Bar Color', 'give'),
229
+					'id'          => $prefix.'goal_color',
230 230
 					'type'        => 'colorpicker',
231 231
 					'row_classes' => 'give-subfield',
232 232
 					'default'     => '#2bc253',
233 233
 				),
234 234
 
235 235
 				array(
236
-					'name'        => __( 'Close Form when Goal Achieved', 'give' ),
237
-					'desc'        => __( 'Would you like to close the donation forms and stop accepting donations once this goal has been met?', 'give' ),
238
-					'id'          => $prefix . 'close_form_when_goal_achieved',
236
+					'name'        => __('Close Form when Goal Achieved', 'give'),
237
+					'desc'        => __('Would you like to close the donation forms and stop accepting donations once this goal has been met?', 'give'),
238
+					'id'          => $prefix.'close_form_when_goal_achieved',
239 239
 					'type'        => 'radio_inline',
240 240
 					'row_classes' => 'give-subfield',
241 241
 					'options'     => array(
242
-						'yes' => __( 'Yes', 'give' ),
243
-						'no'  => __( 'No', 'give' ),
242
+						'yes' => __('Yes', 'give'),
243
+						'no'  => __('No', 'give'),
244 244
 					),
245 245
 					'default'     => 'no',
246 246
 				),
247 247
 				array(
248
-					'name'        => __( 'Goal Achieved Message', 'give' ),
249
-					'desc'        => __( 'Would you like to display a custom message when the goal is closed? If none is provided the default message will be displayed', 'give' ),
250
-					'id'          => $prefix . 'form_goal_achieved_message',
248
+					'name'        => __('Goal Achieved Message', 'give'),
249
+					'desc'        => __('Would you like to display a custom message when the goal is closed? If none is provided the default message will be displayed', 'give'),
250
+					'id'          => $prefix.'form_goal_achieved_message',
251 251
 					'type'        => 'textarea',
252 252
 					'row_classes' => 'give-subfield',
253 253
 					'attributes'  => array(
254
-						'placeholder' => __( 'Thank you to all our donors, we have met our fundraising goal.', 'give' ),
254
+						'placeholder' => __('Thank you to all our donors, we have met our fundraising goal.', 'give'),
255 255
 					),
256 256
 				)
257 257
 			)
258 258
 		)
259
-	) );
259
+	));
260 260
 
261 261
 
262 262
 	/**
263 263
 	 * Content Field
264 264
 	 */
265
-	$meta_boxes['form_content_options'] = apply_filters( 'give_forms_content_options', array(
265
+	$meta_boxes['form_content_options'] = apply_filters('give_forms_content_options', array(
266 266
 		'id'           => 'form_content_options',
267
-		'title'        => __( 'Form Content', 'give' ),
268
-		'object_types' => array( 'give_forms' ),
267
+		'title'        => __('Form Content', 'give'),
268
+		'object_types' => array('give_forms'),
269 269
 		'context'      => 'normal',
270 270
 		'priority'     => 'high', //Show above Content WYSIWYG
271
-		'fields'       => apply_filters( 'give_forms_content_options_metabox_fields', array(
271
+		'fields'       => apply_filters('give_forms_content_options_metabox_fields', array(
272 272
 				//Donation Option
273 273
 				array(
274
-					'name'        => __( 'Display Content', 'give' ),
275
-					'description' => __( 'Do you want to display content? If you select "Yes" a WYSIWYG editor will appear which you will be able to enter content to display above or below the form.', 'give' ),
276
-					'id'          => $prefix . 'content_option',
274
+					'name'        => __('Display Content', 'give'),
275
+					'description' => __('Do you want to display content? If you select "Yes" a WYSIWYG editor will appear which you will be able to enter content to display above or below the form.', 'give'),
276
+					'id'          => $prefix.'content_option',
277 277
 					'type'        => 'select',
278
-					'options'     => apply_filters( 'give_forms_content_options_select', array(
279
-							'none'           => __( 'No content', 'give' ),
280
-							'give_pre_form'  => __( 'Yes, display content ABOVE the form fields', 'give' ),
281
-							'give_post_form' => __( 'Yes, display content BELOW the form fields', 'give' ),
278
+					'options'     => apply_filters('give_forms_content_options_select', array(
279
+							'none'           => __('No content', 'give'),
280
+							'give_pre_form'  => __('Yes, display content ABOVE the form fields', 'give'),
281
+							'give_post_form' => __('Yes, display content BELOW the form fields', 'give'),
282 282
 						)
283 283
 					),
284 284
 					'default'     => 'none',
285 285
 				),
286 286
 				array(
287
-					'name'        => __( 'Content', 'give' ),
288
-					'description' => __( 'This content will display on the single give form page.', 'give' ),
289
-					'id'          => $prefix . 'form_content',
287
+					'name'        => __('Content', 'give'),
288
+					'description' => __('This content will display on the single give form page.', 'give'),
289
+					'id'          => $prefix.'form_content',
290 290
 					'row_classes' => 'give-subfield',
291 291
 					'type'        => 'wysiwyg'
292 292
 				),
293 293
 			)
294 294
 		)
295
-	) );
295
+	));
296 296
 
297 297
 
298 298
 	/**
299 299
 	 * Display Options
300 300
 	 */
301
-	$meta_boxes['form_display_options'] = apply_filters( 'give_form_display_options', array(
301
+	$meta_boxes['form_display_options'] = apply_filters('give_form_display_options', array(
302 302
 			'id'           => 'form_display_options',
303
-			'title'        => __( 'Form Display Options', 'give' ),
304
-			'object_types' => array( 'give_forms' ),
303
+			'title'        => __('Form Display Options', 'give'),
304
+			'object_types' => array('give_forms'),
305 305
 			'context'      => 'normal', //  'normal', 'advanced', or 'side'
306 306
 			'priority'     => 'high', //Show above Content WYSIWYG
307 307
 			'show_names'   => true, // Show field names on the left
308
-			'fields'       => apply_filters( 'give_forms_display_options_metabox_fields', array(
308
+			'fields'       => apply_filters('give_forms_display_options_metabox_fields', array(
309 309
 					array(
310
-						'name'    => __( 'Payment Fields', 'give' ),
311
-						'desc'    => __( 'How would you like to display payment information for this form? The "Show on Page" option will display the entire form when the page loads. "Reveal Upon Click" places a button below the donation fields and upon click slides into view the rest of the fields. "Modal Window Upon Click" is a similar option, rather than sliding into view the fields they will open in a shadow box or "modal" window.', 'give' ),
312
-						'id'      => $prefix . 'payment_display',
310
+						'name'    => __('Payment Fields', 'give'),
311
+						'desc'    => __('How would you like to display payment information for this form? The "Show on Page" option will display the entire form when the page loads. "Reveal Upon Click" places a button below the donation fields and upon click slides into view the rest of the fields. "Modal Window Upon Click" is a similar option, rather than sliding into view the fields they will open in a shadow box or "modal" window.', 'give'),
312
+						'id'      => $prefix.'payment_display',
313 313
 						'type'    => 'select',
314 314
 						'options' => array(
315
-							'onpage' => __( 'Show on Page', 'give' ),
316
-							'reveal' => __( 'Reveal Upon Click', 'give' ),
317
-							'modal'  => __( 'Modal Window Upon Click', 'give' ),
315
+							'onpage' => __('Show on Page', 'give'),
316
+							'reveal' => __('Reveal Upon Click', 'give'),
317
+							'modal'  => __('Modal Window Upon Click', 'give'),
318 318
 						),
319 319
 						'default' => 'onpage',
320 320
 					),
321 321
 					array(
322
-						'id'          => $prefix . 'reveal_label',
323
-						'name'        => __( 'Reveal / Modal Open Text', 'give' ),
324
-						'desc'        => __( 'The button label for completing the donation.', 'give' ),
322
+						'id'          => $prefix.'reveal_label',
323
+						'name'        => __('Reveal / Modal Open Text', 'give'),
324
+						'desc'        => __('The button label for completing the donation.', 'give'),
325 325
 						'type'        => 'text_small',
326 326
 						'row_classes' => 'give-subfield',
327 327
 						'attributes'  => array(
328
-							'placeholder' => __( 'Donate Now', 'give' ),
328
+							'placeholder' => __('Donate Now', 'give'),
329 329
 						),
330 330
 					),
331 331
 					array(
332
-						'id'         => $prefix . 'checkout_label',
333
-						'name'       => __( 'Complete Donation Text', 'give' ),
334
-						'desc'       => __( 'The button label for completing a donation.', 'give' ),
332
+						'id'         => $prefix.'checkout_label',
333
+						'name'       => __('Complete Donation Text', 'give'),
334
+						'desc'       => __('The button label for completing a donation.', 'give'),
335 335
 						'type'       => 'text_small',
336 336
 						'attributes' => array(
337
-							'placeholder' => __( 'Donate Now', 'give' ),
337
+							'placeholder' => __('Donate Now', 'give'),
338 338
 						),
339 339
 					),
340 340
 					array(
341
-						'name' => __( 'Default Gateway', 'give' ),
342
-						'desc' => __( 'By default, the gateway for this form will inherit the global default gateway (set under Give > Settings > Payment Gateways). This option allows you to customize the default gateway for this form only.', 'give' ),
343
-						'id'   => $prefix . 'default_gateway',
341
+						'name' => __('Default Gateway', 'give'),
342
+						'desc' => __('By default, the gateway for this form will inherit the global default gateway (set under Give > Settings > Payment Gateways). This option allows you to customize the default gateway for this form only.', 'give'),
343
+						'id'   => $prefix.'default_gateway',
344 344
 						'type' => 'default_gateway'
345 345
 					),
346 346
 					array(
347
-						'name' => __( 'Disable Guest Donations', 'give' ),
348
-						'desc' => __( 'Do you want to require users be logged-in to make donations?', 'give' ),
349
-						'id'   => $prefix . 'logged_in_only',
347
+						'name' => __('Disable Guest Donations', 'give'),
348
+						'desc' => __('Do you want to require users be logged-in to make donations?', 'give'),
349
+						'id'   => $prefix.'logged_in_only',
350 350
 						'type' => 'checkbox'
351 351
 					),
352 352
 					array(
353
-						'name'    => __( 'Register / Login Form', 'give' ),
354
-						'desc'    => __( 'Display the registration and login forms in the payment section for non-logged-in users.', 'give' ),
355
-						'id'      => $prefix . 'show_register_form',
353
+						'name'    => __('Register / Login Form', 'give'),
354
+						'desc'    => __('Display the registration and login forms in the payment section for non-logged-in users.', 'give'),
355
+						'id'      => $prefix.'show_register_form',
356 356
 						'type'    => 'select',
357 357
 						'options' => array(
358
-							'both'         => __( 'Registration and Login Forms', 'give' ),
359
-							'registration' => __( 'Registration Form Only', 'give' ),
360
-							'login'        => __( 'Login Form Only', 'give' ),
361
-							'none'         => __( 'None', 'give' ),
358
+							'both'         => __('Registration and Login Forms', 'give'),
359
+							'registration' => __('Registration Form Only', 'give'),
360
+							'login'        => __('Login Form Only', 'give'),
361
+							'none'         => __('None', 'give'),
362 362
 						),
363 363
 						'default' => 'none',
364 364
 					),
365 365
 					array(
366
-						'name'    => __( 'Floating Labels', 'give' ),
366
+						'name'    => __('Floating Labels', 'give'),
367 367
 						/* translators: %s: forms http://bradfrost.com/blog/post/float-label-pattern/ */
368
-						'desc'    => sprintf( __( 'Select the <a href="%s" target="_blank">floating labels</a> setting for this Give form.<br>Be aware that if you have the "Disable CSS" option enabled, you will need to style the floating labels yourself.', 'give' ), esc_url( "http://bradfrost.com/blog/post/float-label-pattern/" ) ),
369
-						'id'      => $prefix . 'form_floating_labels',
368
+						'desc'    => sprintf(__('Select the <a href="%s" target="_blank">floating labels</a> setting for this Give form.<br>Be aware that if you have the "Disable CSS" option enabled, you will need to style the floating labels yourself.', 'give'), esc_url("http://bradfrost.com/blog/post/float-label-pattern/")),
369
+						'id'      => $prefix.'form_floating_labels',
370 370
 						'type'    => 'select',
371 371
 						'options' => array(
372
-							''         => __( 'Use the global setting', 'give' ),
373
-							'enabled'  => __( 'Enabled', 'give' ),
374
-							'disabled' => __( 'Disabled', 'give' ),
372
+							''         => __('Use the global setting', 'give'),
373
+							'enabled'  => __('Enabled', 'give'),
374
+							'disabled' => __('Disabled', 'give'),
375 375
 						),
376 376
 						'default' => 'none',
377 377
 					)
@@ -383,47 +383,47 @@  discard block
 block discarded – undo
383 383
 	/**
384 384
 	 * Terms & Conditions
385 385
 	 */
386
-	$meta_boxes['form_terms_options'] = apply_filters( 'give_forms_terms_options', array(
386
+	$meta_boxes['form_terms_options'] = apply_filters('give_forms_terms_options', array(
387 387
 		'id'           => 'form_terms_options',
388
-		'title'        => __( 'Terms and Conditions', 'give' ),
389
-		'object_types' => array( 'give_forms' ),
388
+		'title'        => __('Terms and Conditions', 'give'),
389
+		'object_types' => array('give_forms'),
390 390
 		'context'      => 'normal',
391 391
 		'priority'     => 'high', //Show above Content WYSIWYG
392
-		'fields'       => apply_filters( 'give_forms_terms_options_metabox_fields', array(
392
+		'fields'       => apply_filters('give_forms_terms_options_metabox_fields', array(
393 393
 				//Donation Option
394 394
 				array(
395
-					'name'        => __( 'Terms and Conditions', 'give' ),
396
-					'description' => __( 'Do you want to require the user to agree to terms and conditions prior to being able to complete their donation?', 'give' ),
397
-					'id'          => $prefix . 'terms_option',
395
+					'name'        => __('Terms and Conditions', 'give'),
396
+					'description' => __('Do you want to require the user to agree to terms and conditions prior to being able to complete their donation?', 'give'),
397
+					'id'          => $prefix.'terms_option',
398 398
 					'type'        => 'select',
399
-					'options'     => apply_filters( 'give_forms_content_options_select', array(
400
-							'none' => __( 'No', 'give' ),
401
-							'yes'  => __( 'Yes', 'give' ),
399
+					'options'     => apply_filters('give_forms_content_options_select', array(
400
+							'none' => __('No', 'give'),
401
+							'yes'  => __('Yes', 'give'),
402 402
 						)
403 403
 					),
404 404
 					'default'     => 'none',
405 405
 				),
406 406
 				array(
407
-					'id'          => $prefix . 'agree_label',
408
-					'name'        => __( 'Agree to Terms Label', 'give' ),
409
-					'desc'        => __( 'The label shown next to the agree to terms check box. Add your own to customize or leave blank to use the default text placeholder.', 'give' ),
407
+					'id'          => $prefix.'agree_label',
408
+					'name'        => __('Agree to Terms Label', 'give'),
409
+					'desc'        => __('The label shown next to the agree to terms check box. Add your own to customize or leave blank to use the default text placeholder.', 'give'),
410 410
 					'type'        => 'text',
411 411
 					'row_classes' => 'give-subfield',
412 412
 					'size'        => 'regular',
413 413
 					'attributes'  => array(
414
-						'placeholder' => __( 'Agree to Terms?', 'give' ),
414
+						'placeholder' => __('Agree to Terms?', 'give'),
415 415
 					),
416 416
 				),
417 417
 				array(
418
-					'id'          => $prefix . 'agree_text',
418
+					'id'          => $prefix.'agree_text',
419 419
 					'row_classes' => 'give-subfield',
420
-					'name'        => __( 'Agreement Text', 'give' ),
421
-					'desc'        => __( 'This is the actual text which the user will have to agree to in order to make a donation.', 'give' ),
420
+					'name'        => __('Agreement Text', 'give'),
421
+					'desc'        => __('This is the actual text which the user will have to agree to in order to make a donation.', 'give'),
422 422
 					'type'        => 'wysiwyg'
423 423
 				),
424 424
 			)
425 425
 		)
426
-	) );
426
+	));
427 427
 
428 428
 	return $meta_boxes;
429 429
 
@@ -437,11 +437,11 @@  discard block
 block discarded – undo
437 437
 
438 438
 	<div class="table-container">
439 439
 		<div class="table-row">
440
-			<div class="table-cell col-amount"><?php _e( 'Amount', 'give' ); ?></div>
441
-			<div class="table-cell col-text"><?php _e( 'Text', 'give' ); ?></div>
442
-			<div class="table-cell col-default"><?php _e( 'Default', 'give' ); ?></div>
443
-			<?php do_action( 'give_donation_levels_table_head' ); ?>
444
-			<div class="table-cell col-sort"><?php _e( 'Sort', 'give' ); ?></div>
440
+			<div class="table-cell col-amount"><?php _e('Amount', 'give'); ?></div>
441
+			<div class="table-cell col-text"><?php _e('Text', 'give'); ?></div>
442
+			<div class="table-cell col-default"><?php _e('Default', 'give'); ?></div>
443
+			<?php do_action('give_donation_levels_table_head'); ?>
444
+			<div class="table-cell col-sort"><?php _e('Sort', 'give'); ?></div>
445 445
 
446 446
 		</div>
447 447
 	</div>
@@ -449,7 +449,7 @@  discard block
 block discarded – undo
449 449
 	<?php
450 450
 }
451 451
 
452
-add_action( 'cmb2_render_levels_repeater_header', 'give_cmb_render_levels_repeater_header', 10 );
452
+add_action('cmb2_render_levels_repeater_header', 'give_cmb_render_levels_repeater_header', 10);
453 453
 
454 454
 
455 455
 /**
@@ -466,25 +466,25 @@  discard block
 block discarded – undo
466 466
  * @param $object_type
467 467
  * @param $field_type_object
468 468
  */
469
-function give_cmb_render_levels_id( $field_object, $escaped_value, $object_id, $object_type, $field_type_object ) {
469
+function give_cmb_render_levels_id($field_object, $escaped_value, $object_id, $object_type, $field_type_object) {
470 470
 
471
-	$escaped_value = ( isset( $escaped_value['level_id'] ) ? $escaped_value['level_id'] : '' );
471
+	$escaped_value = (isset($escaped_value['level_id']) ? $escaped_value['level_id'] : '');
472 472
 
473 473
 	$field_options_array = array(
474 474
 		'class' => 'give-hidden give-level-id-input',
475
-		'name'  => $field_type_object->_name( '[level_id]' ),
476
-		'id'    => $field_type_object->_id( '_level_id' ),
475
+		'name'  => $field_type_object->_name('[level_id]'),
476
+		'id'    => $field_type_object->_id('_level_id'),
477 477
 		'value' => $escaped_value,
478 478
 		'type'  => 'number',
479 479
 		'desc'  => '',
480 480
 	);
481 481
 
482
-	echo '<p class="give-level-id">' . $escaped_value . '</p>';
483
-	echo $field_type_object->input( $field_options_array );
482
+	echo '<p class="give-level-id">'.$escaped_value.'</p>';
483
+	echo $field_type_object->input($field_options_array);
484 484
 
485 485
 }
486 486
 
487
-add_action( 'cmb2_render_levels_id', 'give_cmb_render_levels_id', 10, 5 );
487
+add_action('cmb2_render_levels_id', 'give_cmb_render_levels_id', 10, 5);
488 488
 
489 489
 
490 490
 /**
@@ -496,13 +496,13 @@  discard block
 block discarded – undo
496 496
  * @param $object_type
497 497
  * @param $field_type_object
498 498
  */
499
-function give_cmb_give_default_radio_inline( $field_object, $escaped_value, $object_id, $object_type, $field_type_object ) {
500
-	echo '<input type="radio" class="cmb2-option donation-level-radio" name="' . $field_object->args['_name'] . '" id="' . $field_object->args['id'] . '" value="default" ' . checked( 'default', $escaped_value, false ) . '>';
501
-	echo '<label for="' . $field_object->args['id'] . '">Default</label>';
499
+function give_cmb_give_default_radio_inline($field_object, $escaped_value, $object_id, $object_type, $field_type_object) {
500
+	echo '<input type="radio" class="cmb2-option donation-level-radio" name="'.$field_object->args['_name'].'" id="'.$field_object->args['id'].'" value="default" '.checked('default', $escaped_value, false).'>';
501
+	echo '<label for="'.$field_object->args['id'].'">Default</label>';
502 502
 
503 503
 }
504 504
 
505
-add_action( 'cmb2_render_give_default_radio_inline', 'give_cmb_give_default_radio_inline', 10, 5 );
505
+add_action('cmb2_render_give_default_radio_inline', 'give_cmb_give_default_radio_inline', 10, 5);
506 506
 
507 507
 
508 508
 /**
@@ -512,20 +512,20 @@  discard block
 block discarded – undo
512 512
  */
513 513
 function give_add_shortcode_to_publish_metabox() {
514 514
 
515
-	if ( 'give_forms' !== get_post_type() ) {
515
+	if ('give_forms' !== get_post_type()) {
516 516
 		return false;
517 517
 	}
518 518
 
519 519
 	global $post;
520 520
 
521 521
 	//Only enqueue scripts for CPT on post type screen
522
-	if ( 'give_forms' === $post->post_type ) {
522
+	if ('give_forms' === $post->post_type) {
523 523
 		//Shortcode column with select all input
524
-		$shortcode = htmlentities( '[give_form id="' . $post->ID . '"]' );
525
-		echo '<div class="shortcode-wrap box-sizing"><label>' . __( 'Give Form Shortcode:', 'give' ) . '</label><input onClick="this.setSelectionRange(0, this.value.length)" type="text" class="shortcode-input" readonly value="' . $shortcode . '"></div>';
524
+		$shortcode = htmlentities('[give_form id="'.$post->ID.'"]');
525
+		echo '<div class="shortcode-wrap box-sizing"><label>'.__('Give Form Shortcode:', 'give').'</label><input onClick="this.setSelectionRange(0, this.value.length)" type="text" class="shortcode-input" readonly value="'.$shortcode.'"></div>';
526 526
 
527 527
 	}
528 528
 
529 529
 }
530 530
 
531
-add_action( 'post_submitbox_misc_actions', 'give_add_shortcode_to_publish_metabox' );
531
+add_action('post_submitbox_misc_actions', 'give_add_shortcode_to_publish_metabox');
Please login to merge, or discard this patch.
includes/admin/reporting/graphing.php 1 patch
Spacing   +243 added lines, -243 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
  */
11 11
 
12 12
 // Exit if accessed directly
13
-if ( ! defined( 'ABSPATH' ) ) {
13
+if ( ! defined('ABSPATH')) {
14 14
 	exit;
15 15
 }
16 16
 
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 	$dates = give_get_report_dates();
26 26
 
27 27
 	// Determine graph options
28
-	switch ( $dates['range'] ) :
28
+	switch ($dates['range']) :
29 29
 		case 'today' :
30 30
 		case 'yesterday' :
31 31
 			$day_by_day = true;
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 			$day_by_day = false;
38 38
 			break;
39 39
 		case 'other' :
40
-			if ( $dates['m_end'] - $dates['m_start'] >= 2 || $dates['year_end'] > $dates['year'] && ( $dates['m_start'] != '12' && $dates['m_end'] != '1' ) ) {
40
+			if ($dates['m_end'] - $dates['m_start'] >= 2 || $dates['year_end'] > $dates['year'] && ($dates['m_start'] != '12' && $dates['m_end'] != '1')) {
41 41
 				$day_by_day = false;
42 42
 			} else {
43 43
 				$day_by_day = true;
@@ -49,61 +49,61 @@  discard block
 block discarded – undo
49 49
 	endswitch;
50 50
 
51 51
 	$earnings_totals = 0.00; // Total earnings for time period shown
52
-	$sales_totals    = 0;            // Total sales for time period shown
52
+	$sales_totals    = 0; // Total sales for time period shown
53 53
 
54 54
 	$earnings_data = array();
55 55
 	$sales_data    = array();
56 56
 
57
-	if ( $dates['range'] == 'today' || $dates['range'] == 'yesterday' ) {
57
+	if ($dates['range'] == 'today' || $dates['range'] == 'yesterday') {
58 58
 		// Hour by hour
59 59
 		$hour  = 1;
60
-		$month = date( 'n', current_time( 'timestamp' ) );
61
-		while ( $hour <= 23 ) :
60
+		$month = date('n', current_time('timestamp'));
61
+		while ($hour <= 23) :
62 62
 
63
-			$sales    = give_get_sales_by_date( $dates['day'], $month, $dates['year'], $hour );
64
-			$earnings = give_get_earnings_by_date( $dates['day'], $month, $dates['year'], $hour );
63
+			$sales    = give_get_sales_by_date($dates['day'], $month, $dates['year'], $hour);
64
+			$earnings = give_get_earnings_by_date($dates['day'], $month, $dates['year'], $hour);
65 65
 
66 66
 			$sales_totals += $sales;
67 67
 			$earnings_totals += $earnings;
68 68
 
69
-			$date            = mktime( $hour, 0, 0, $month, $dates['day'], $dates['year'] ) * 1000;
70
-			$sales_data[]    = array( $date, $sales );
71
-			$earnings_data[] = array( $date, $earnings );
69
+			$date            = mktime($hour, 0, 0, $month, $dates['day'], $dates['year']) * 1000;
70
+			$sales_data[]    = array($date, $sales);
71
+			$earnings_data[] = array($date, $earnings);
72 72
 
73
-			$hour ++;
73
+			$hour++;
74 74
 		endwhile;
75 75
 
76
-	} elseif ( $dates['range'] == 'this_week' || $dates['range'] == 'last_week' ) {
76
+	} elseif ($dates['range'] == 'this_week' || $dates['range'] == 'last_week') {
77 77
 
78 78
 		// Day by day
79 79
 		$day     = $dates['day'];
80 80
 		$day_end = $dates['day_end'];
81 81
 		$month   = $dates['m_start'];
82
-		while ( $day <= $day_end ) :
83
-			$sales = give_get_sales_by_date( $day, $month, $dates['year'] );
82
+		while ($day <= $day_end) :
83
+			$sales = give_get_sales_by_date($day, $month, $dates['year']);
84 84
 			$sales_totals += $sales;
85 85
 
86
-			$earnings = give_get_earnings_by_date( $day, $month, $dates['year'] );
86
+			$earnings = give_get_earnings_by_date($day, $month, $dates['year']);
87 87
 			$earnings_totals += $earnings;
88 88
 
89
-			$date            = mktime( 0, 0, 0, $month, $day, $dates['year'] ) * 1000;
90
-			$sales_data[]    = array( $date, $sales );
91
-			$earnings_data[] = array( $date, $earnings );
92
-			$day ++;
89
+			$date            = mktime(0, 0, 0, $month, $day, $dates['year']) * 1000;
90
+			$sales_data[]    = array($date, $sales);
91
+			$earnings_data[] = array($date, $earnings);
92
+			$day++;
93 93
 		endwhile;
94 94
 
95 95
 	} else {
96 96
 
97 97
 		$y = $dates['year'];
98
-		while ( $y <= $dates['year_end'] ) :
98
+		while ($y <= $dates['year_end']) :
99 99
 
100
-			if ( $dates['year'] == $dates['year_end'] ) {
100
+			if ($dates['year'] == $dates['year_end']) {
101 101
 				$month_start = $dates['m_start'];
102 102
 				$month_end   = $dates['m_end'];
103
-			} elseif ( $y == $dates['year'] ) {
103
+			} elseif ($y == $dates['year']) {
104 104
 				$month_start = $dates['m_start'];
105 105
 				$month_end   = 12;
106
-			} elseif ( $y == $dates['year_end'] ) {
106
+			} elseif ($y == $dates['year_end']) {
107 107
 				$month_start = 1;
108 108
 				$month_end   = $dates['m_end'];
109 109
 			} else {
@@ -112,48 +112,48 @@  discard block
 block discarded – undo
112 112
 			}
113 113
 
114 114
 			$i = $month_start;
115
-			while ( $i <= $month_end ) :
115
+			while ($i <= $month_end) :
116 116
 
117
-				if ( $day_by_day ) :
117
+				if ($day_by_day) :
118 118
 
119
-					if ( $i == $month_end ) {
119
+					if ($i == $month_end) {
120 120
 
121 121
 						$num_of_days = $dates['day_end'];
122 122
 
123 123
 					} else {
124 124
 
125
-						$num_of_days = cal_days_in_month( CAL_GREGORIAN, $i, $y );
125
+						$num_of_days = cal_days_in_month(CAL_GREGORIAN, $i, $y);
126 126
 
127 127
 					}
128 128
 
129 129
 					$d = $dates['day'];
130 130
 
131
-					while ( $d <= $num_of_days ) :
131
+					while ($d <= $num_of_days) :
132 132
 
133
-						$sales = give_get_sales_by_date( $d, $i, $y );
133
+						$sales = give_get_sales_by_date($d, $i, $y);
134 134
 						$sales_totals += $sales;
135 135
 
136
-						$earnings = give_get_earnings_by_date( $d, $i, $y );
136
+						$earnings = give_get_earnings_by_date($d, $i, $y);
137 137
 						$earnings_totals += $earnings;
138 138
 
139
-						$date            = mktime( 0, 0, 0, $i, $d, $y ) * 1000;
140
-						$sales_data[]    = array( $date, $sales );
141
-						$earnings_data[] = array( $date, $earnings );
142
-						$d ++;
139
+						$date            = mktime(0, 0, 0, $i, $d, $y) * 1000;
140
+						$sales_data[]    = array($date, $sales);
141
+						$earnings_data[] = array($date, $earnings);
142
+						$d++;
143 143
 
144 144
 					endwhile;
145 145
 
146 146
 				else :
147 147
 
148
-					$sales = give_get_sales_by_date( null, $i, $y );
148
+					$sales = give_get_sales_by_date(null, $i, $y);
149 149
 					$sales_totals += $sales;
150 150
 
151
-					$earnings = give_get_earnings_by_date( null, $i, $y );
151
+					$earnings = give_get_earnings_by_date(null, $i, $y);
152 152
 					$earnings_totals += $earnings;
153 153
 
154
-					if ( $i == $month_end ) {
154
+					if ($i == $month_end) {
155 155
 
156
-						$num_of_days = cal_days_in_month( CAL_GREGORIAN, $i, $y );
156
+						$num_of_days = cal_days_in_month(CAL_GREGORIAN, $i, $y);
157 157
 
158 158
 					} else {
159 159
 
@@ -161,24 +161,24 @@  discard block
 block discarded – undo
161 161
 
162 162
 					}
163 163
 
164
-					$date            = mktime( 0, 0, 0, $i, $num_of_days, $y ) * 1000;
165
-					$sales_data[]    = array( $date, $sales );
166
-					$earnings_data[] = array( $date, $earnings );
164
+					$date            = mktime(0, 0, 0, $i, $num_of_days, $y) * 1000;
165
+					$sales_data[]    = array($date, $sales);
166
+					$earnings_data[] = array($date, $earnings);
167 167
 
168 168
 				endif;
169 169
 
170
-				$i ++;
170
+				$i++;
171 171
 
172 172
 			endwhile;
173 173
 
174
-			$y ++;
174
+			$y++;
175 175
 		endwhile;
176 176
 
177 177
 	}
178 178
 
179 179
 	$data = array(
180
-		__( 'Income', 'give' )    => $earnings_data,
181
-		__( 'Donations', 'give' ) => $sales_data
180
+		__('Income', 'give')    => $earnings_data,
181
+		__('Donations', 'give') => $sales_data
182 182
 	);
183 183
 
184 184
 	// start our own output buffer
@@ -190,12 +190,12 @@  discard block
 block discarded – undo
190 190
 			<div class="postbox">
191 191
 				<div class="inside">
192 192
 					<?php
193
-					$graph = new Give_Graph( $data );
194
-					$graph->set( 'x_mode', 'time' );
195
-					$graph->set( 'multiple_y_axes', true );
193
+					$graph = new Give_Graph($data);
194
+					$graph->set('x_mode', 'time');
195
+					$graph->set('multiple_y_axes', true);
196 196
 					$graph->display();
197 197
 
198
-					if ( 'this_month' == $dates['range'] ) {
198
+					if ('this_month' == $dates['range']) {
199 199
 						$estimated = give_estimated_monthly_stats();
200 200
 					}
201 201
 					?>
@@ -206,32 +206,32 @@  discard block
 block discarded – undo
206 206
 				<tbody>
207 207
 				<tr>
208 208
 					<td class="row-title">
209
-						<label for="tablecell"><?php _e( 'Total income for period: ', 'give' ); ?></label></td>
210
-					<td><?php echo give_currency_filter( give_format_amount( $earnings_totals ) ); ?></td>
209
+						<label for="tablecell"><?php _e('Total income for period: ', 'give'); ?></label></td>
210
+					<td><?php echo give_currency_filter(give_format_amount($earnings_totals)); ?></td>
211 211
 				</tr>
212 212
 				<tr class="alternate">
213 213
 					<td class="row-title">
214
-						<label for="tablecell"><?php _e( 'Total donations for period shown: ', 'give' ); ?></label>
214
+						<label for="tablecell"><?php _e('Total donations for period shown: ', 'give'); ?></label>
215 215
 					</td>
216 216
 					<td><?php echo $sales_totals; ?></td>
217 217
 				</tr>
218
-				<?php if ( 'this_month' == $dates['range'] ) : ?>
218
+				<?php if ('this_month' == $dates['range']) : ?>
219 219
 					<tr>
220 220
 						<td class="row-title">
221
-							<label for="tablecell"><?php _e( 'Estimated monthly income: ', 'give' ); ?></label>
221
+							<label for="tablecell"><?php _e('Estimated monthly income: ', 'give'); ?></label>
222 222
 						</td>
223
-						<td><?php echo give_currency_filter( give_format_amount( $estimated['earnings'] ) ); ?></td>
223
+						<td><?php echo give_currency_filter(give_format_amount($estimated['earnings'])); ?></td>
224 224
 					</tr>
225 225
 					<tr class="alternate">
226 226
 						<td class="row-title">
227
-							<label for="tablecell"><?php _e( 'Estimated monthly donations: ', 'give' ); ?></label>
227
+							<label for="tablecell"><?php _e('Estimated monthly donations: ', 'give'); ?></label>
228 228
 						</td>
229
-						<td><?php echo floor( $estimated['sales'] ); ?></td>
229
+						<td><?php echo floor($estimated['sales']); ?></td>
230 230
 					</tr>
231 231
 				<?php endif; ?>
232 232
 			</table>
233 233
 
234
-			<?php do_action( 'give_reports_graph_additional_stats' ); ?>
234
+			<?php do_action('give_reports_graph_additional_stats'); ?>
235 235
 
236 236
 		</div>
237 237
 	</div>
@@ -249,12 +249,12 @@  discard block
 block discarded – undo
249 249
  * @since 1.0
250 250
  * @return void
251 251
  */
252
-function give_reports_graph_of_form( $form_id = 0 ) {
252
+function give_reports_graph_of_form($form_id = 0) {
253 253
 	// Retrieve the queried dates
254 254
 	$dates = give_get_report_dates();
255 255
 
256 256
 	// Determine graph options
257
-	switch ( $dates['range'] ) :
257
+	switch ($dates['range']) :
258 258
 		case 'today' :
259 259
 		case 'yesterday' :
260 260
 			$day_by_day = true;
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
 			$day_by_day = false;
273 273
 			break;
274 274
 		case 'other' :
275
-			if ( $dates['m_end'] - $dates['m_start'] >= 2 || $dates['year_end'] > $dates['year'] ) {
275
+			if ($dates['m_end'] - $dates['m_start'] >= 2 || $dates['year_end'] > $dates['year']) {
276 276
 				$day_by_day = false;
277 277
 			} else {
278 278
 				$day_by_day = true;
@@ -284,75 +284,75 @@  discard block
 block discarded – undo
284 284
 	endswitch;
285 285
 
286 286
 	$earnings_totals = (float) 0.00; // Total earnings for time period shown
287
-	$sales_totals    = 0;            // Total sales for time period shown
287
+	$sales_totals    = 0; // Total sales for time period shown
288 288
 
289 289
 	$earnings_data = array();
290 290
 	$sales_data    = array();
291 291
 	$stats         = new Give_Payment_Stats;
292 292
 
293
-	if ( $dates['range'] == 'today' || $dates['range'] == 'yesterday' ) {
293
+	if ($dates['range'] == 'today' || $dates['range'] == 'yesterday') {
294 294
 
295 295
 		// Hour by hour
296 296
 		$month  = $dates['m_start'];
297 297
 		$hour   = 1;
298 298
 		$minute = 0;
299 299
 		$second = 0;
300
-		while ( $hour <= 23 ) :
300
+		while ($hour <= 23) :
301 301
 
302
-			if ( $hour == 23 ) {
302
+			if ($hour == 23) {
303 303
 				$minute = $second = 59;
304 304
 			}
305 305
 
306
-			$date     = mktime( $hour, $minute, $second, $month, $dates['day'], $dates['year'] );
307
-			$date_end = mktime( $hour + 1, $minute, $second, $month, $dates['day'], $dates['year'] );
306
+			$date     = mktime($hour, $minute, $second, $month, $dates['day'], $dates['year']);
307
+			$date_end = mktime($hour + 1, $minute, $second, $month, $dates['day'], $dates['year']);
308 308
 
309
-			$sales = $stats->get_sales( $form_id, $date, $date_end );
309
+			$sales = $stats->get_sales($form_id, $date, $date_end);
310 310
 			$sales_totals += $sales;
311 311
 
312
-			$earnings = $stats->get_earnings( $form_id, $date, $date_end );
312
+			$earnings = $stats->get_earnings($form_id, $date, $date_end);
313 313
 			$earnings_totals += $earnings;
314 314
 
315
-			$sales_data[]    = array( $date * 1000, $sales );
316
-			$earnings_data[] = array( $date * 1000, $earnings );
315
+			$sales_data[]    = array($date * 1000, $sales);
316
+			$earnings_data[] = array($date * 1000, $earnings);
317 317
 
318
-			$hour ++;
318
+			$hour++;
319 319
 		endwhile;
320 320
 
321
-	} elseif ( $dates['range'] == 'this_week' || $dates['range'] == 'last_week' ) {
321
+	} elseif ($dates['range'] == 'this_week' || $dates['range'] == 'last_week') {
322 322
 
323 323
 		//Day by day
324 324
 		$day     = $dates['day'];
325 325
 		$day_end = $dates['day_end'];
326 326
 		$month   = $dates['m_start'];
327
-		while ( $day <= $day_end ) :
327
+		while ($day <= $day_end) :
328 328
 
329
-			$date     = mktime( 0, 0, 0, $month, $day, $dates['year'] );
330
-			$date_end = mktime( 0, 0, 0, $month, $day + 1, $dates['year'] );
331
-			$sales    = $stats->get_sales( $form_id, $date, $date_end );
329
+			$date     = mktime(0, 0, 0, $month, $day, $dates['year']);
330
+			$date_end = mktime(0, 0, 0, $month, $day + 1, $dates['year']);
331
+			$sales    = $stats->get_sales($form_id, $date, $date_end);
332 332
 			$sales_totals += $sales;
333 333
 
334
-			$earnings = $stats->get_earnings( $form_id, $date, $date_end );
334
+			$earnings = $stats->get_earnings($form_id, $date, $date_end);
335 335
 			$earnings_totals += $earnings;
336 336
 
337
-			$sales_data[]    = array( $date * 1000, $sales );
338
-			$earnings_data[] = array( $date * 1000, $earnings );
337
+			$sales_data[]    = array($date * 1000, $sales);
338
+			$earnings_data[] = array($date * 1000, $earnings);
339 339
 
340
-			$day ++;
340
+			$day++;
341 341
 		endwhile;
342 342
 
343 343
 	} else {
344 344
 
345 345
 		$y = $dates['year'];
346 346
 
347
-		while ( $y <= $dates['year_end'] ) :
347
+		while ($y <= $dates['year_end']) :
348 348
 
349 349
 			$last_year = false;
350 350
 
351
-			if ( $dates['year'] == $dates['year_end'] ) {
351
+			if ($dates['year'] == $dates['year_end']) {
352 352
 				$month_start = $dates['m_start'];
353 353
 				$month_end   = $dates['m_end'];
354 354
 				$last_year   = true;
355
-			} elseif ( $y == $dates['year'] ) {
355
+			} elseif ($y == $dates['year']) {
356 356
 				$month_start = $dates['m_start'];
357 357
 				$month_end   = 12;
358 358
 			} else {
@@ -361,75 +361,75 @@  discard block
 block discarded – undo
361 361
 			}
362 362
 
363 363
 			$i = $month_start;
364
-			while ( $i <= $month_end ) :
364
+			while ($i <= $month_end) :
365 365
 
366
-				if ( $day_by_day ) :
366
+				if ($day_by_day) :
367 367
 
368
-					if ( $i == $month_end && $last_year ) {
368
+					if ($i == $month_end && $last_year) {
369 369
 
370 370
 						$num_of_days = $dates['day_end'];
371 371
 
372 372
 					} else {
373 373
 
374
-						$num_of_days = cal_days_in_month( CAL_GREGORIAN, $i, $y );
374
+						$num_of_days = cal_days_in_month(CAL_GREGORIAN, $i, $y);
375 375
 
376 376
 					}
377 377
 
378 378
 					$d = $dates['day'];
379
-					while ( $d <= $num_of_days ) :
379
+					while ($d <= $num_of_days) :
380 380
 
381
-						$date     = mktime( 0, 0, 0, $i, $d, $y );
382
-						$end_date = mktime( 23, 59, 59, $i, $d, $y );
381
+						$date     = mktime(0, 0, 0, $i, $d, $y);
382
+						$end_date = mktime(23, 59, 59, $i, $d, $y);
383 383
 
384
-						$sales = $stats->get_sales( $form_id, $date, $end_date );
384
+						$sales = $stats->get_sales($form_id, $date, $end_date);
385 385
 						$sales_totals += $sales;
386 386
 
387
-						$earnings = $stats->get_earnings( $form_id, $date, $end_date );
387
+						$earnings = $stats->get_earnings($form_id, $date, $end_date);
388 388
 						$earnings_totals += $earnings;
389 389
 
390
-						$sales_data[]    = array( $date * 1000, $sales );
391
-						$earnings_data[] = array( $date * 1000, $earnings );
392
-						$d ++;
390
+						$sales_data[]    = array($date * 1000, $sales);
391
+						$earnings_data[] = array($date * 1000, $earnings);
392
+						$d++;
393 393
 
394 394
 					endwhile;
395 395
 
396 396
 				else :
397 397
 
398
-					$num_of_days = cal_days_in_month( CAL_GREGORIAN, $i, $y );
398
+					$num_of_days = cal_days_in_month(CAL_GREGORIAN, $i, $y);
399 399
 
400
-					$date     = mktime( 0, 0, 0, $i, 1, $y );
401
-					$end_date = mktime( 23, 59, 59, $i, $num_of_days, $y );
400
+					$date     = mktime(0, 0, 0, $i, 1, $y);
401
+					$end_date = mktime(23, 59, 59, $i, $num_of_days, $y);
402 402
 
403
-					$sales = $stats->get_sales( $form_id, $date, $end_date );
403
+					$sales = $stats->get_sales($form_id, $date, $end_date);
404 404
 					$sales_totals += $sales;
405 405
 
406
-					$earnings = $stats->get_earnings( $form_id, $date, $end_date );
406
+					$earnings = $stats->get_earnings($form_id, $date, $end_date);
407 407
 					$earnings_totals += $earnings;
408 408
 
409
-					$sales_data[]    = array( $date * 1000, $sales );
410
-					$earnings_data[] = array( $date * 1000, $earnings );
409
+					$sales_data[]    = array($date * 1000, $sales);
410
+					$earnings_data[] = array($date * 1000, $earnings);
411 411
 				endif;
412 412
 
413
-				$i ++;
413
+				$i++;
414 414
 
415 415
 			endwhile;
416 416
 
417
-			$y ++;
417
+			$y++;
418 418
 		endwhile;
419 419
 
420 420
 	}
421 421
 
422 422
 	$data = array(
423
-		__( 'Income', 'give' )    => $earnings_data,
424
-		__( 'Donations', 'give' ) => $sales_data
423
+		__('Income', 'give')    => $earnings_data,
424
+		__('Donations', 'give') => $sales_data
425 425
 	);
426 426
 
427 427
 	?>
428 428
 	<h3><span><?php
429 429
 		printf(
430 430
 			/* translators: %s: form title */
431
-			__( 'Income Over Time for %s', 'give' ),
432
-			get_the_title( $form_id )
431
+			__('Income Over Time for %s', 'give'),
432
+			get_the_title($form_id)
433 433
 		);
434 434
 	?></span></h3>
435 435
 
@@ -437,9 +437,9 @@  discard block
 block discarded – undo
437 437
 		<div class="postbox">
438 438
 			<div class="inside">
439 439
 				<?php
440
-				$graph = new Give_Graph( $data );
441
-				$graph->set( 'x_mode', 'time' );
442
-				$graph->set( 'multiple_y_axes', true );
440
+				$graph = new Give_Graph($data);
441
+				$graph->set('x_mode', 'time');
442
+				$graph->set('multiple_y_axes', true);
443 443
 				$graph->display();
444 444
 				?>
445 445
 			</div>
@@ -449,26 +449,26 @@  discard block
 block discarded – undo
449 449
 			<tbody>
450 450
 			<tr>
451 451
 				<td class="row-title">
452
-					<label for="tablecell"><?php _e( 'Total income for period: ', 'give' ); ?></label></td>
453
-				<td><?php echo give_currency_filter( give_format_amount( $earnings_totals ) ); ?></td>
452
+					<label for="tablecell"><?php _e('Total income for period: ', 'give'); ?></label></td>
453
+				<td><?php echo give_currency_filter(give_format_amount($earnings_totals)); ?></td>
454 454
 			</tr>
455 455
 			<tr class="alternate">
456 456
 				<td class="row-title">
457
-					<label for="tablecell"><?php _e( 'Total donations for period: ', 'give' ); ?></label>
457
+					<label for="tablecell"><?php _e('Total donations for period: ', 'give'); ?></label>
458 458
 				</td>
459 459
 				<td><?php echo $sales_totals; ?></td>
460 460
 			</tr>
461 461
 			<tr>
462 462
 				<td class="row-title">
463
-					<label for="tablecell"><?php _e( 'Average monthly income: ', 'give' ); ?></label>
463
+					<label for="tablecell"><?php _e('Average monthly income: ', 'give'); ?></label>
464 464
 				</td>
465
-				<td><?php echo give_currency_filter( give_format_amount( give_get_average_monthly_form_earnings( $form_id ) ) ); ?></td>
465
+				<td><?php echo give_currency_filter(give_format_amount(give_get_average_monthly_form_earnings($form_id))); ?></td>
466 466
 			</tr>
467 467
 			<tr class="alternate">
468 468
 				<td class="row-title">
469
-					<label for="tablecell"><?php _e( 'Average monthly donations: ', 'give' ); ?></label>
469
+					<label for="tablecell"><?php _e('Average monthly donations: ', 'give'); ?></label>
470 470
 				</td>
471
-				<td><?php echo number_format( give_get_average_monthly_form_sales( $form_id ), 0 ); ?></td>
471
+				<td><?php echo number_format(give_get_average_monthly_form_sales($form_id), 0); ?></td>
472 472
 			</tr>
473 473
 			</tbody>
474 474
 		</table>
@@ -485,29 +485,29 @@  discard block
 block discarded – undo
485 485
  * @return void
486 486
  */
487 487
 function give_reports_graph_controls() {
488
-	$date_options = apply_filters( 'give_report_date_options', array(
489
-		'today'        => __( 'Today', 'give' ),
490
-		'yesterday'    => __( 'Yesterday', 'give' ),
491
-		'this_week'    => __( 'This Week', 'give' ),
492
-		'last_week'    => __( 'Last Week', 'give' ),
493
-		'this_month'   => __( 'This Month', 'give' ),
494
-		'last_month'   => __( 'Last Month', 'give' ),
495
-		'this_quarter' => __( 'This Quarter', 'give' ),
496
-		'last_quarter' => __( 'Last Quarter', 'give' ),
497
-		'this_year'    => __( 'This Year', 'give' ),
498
-		'last_year'    => __( 'Last Year', 'give' ),
499
-		'other'        => __( 'Custom', 'give' )
500
-	) );
488
+	$date_options = apply_filters('give_report_date_options', array(
489
+		'today'        => __('Today', 'give'),
490
+		'yesterday'    => __('Yesterday', 'give'),
491
+		'this_week'    => __('This Week', 'give'),
492
+		'last_week'    => __('Last Week', 'give'),
493
+		'this_month'   => __('This Month', 'give'),
494
+		'last_month'   => __('Last Month', 'give'),
495
+		'this_quarter' => __('This Quarter', 'give'),
496
+		'last_quarter' => __('Last Quarter', 'give'),
497
+		'this_year'    => __('This Year', 'give'),
498
+		'last_year'    => __('Last Year', 'give'),
499
+		'other'        => __('Custom', 'give')
500
+	));
501 501
 
502 502
 	$dates   = give_get_report_dates();
503 503
 	$display = $dates['range'] == 'other' ? '' : 'style="display:none;"';
504 504
 	$view    = give_get_reporting_view();
505 505
 
506
-	if ( empty( $dates['day_end'] ) ) {
507
-		$dates['day_end'] = cal_days_in_month( CAL_GREGORIAN, date( 'n' ), date( 'Y' ) );
506
+	if (empty($dates['day_end'])) {
507
+		$dates['day_end'] = cal_days_in_month(CAL_GREGORIAN, date('n'), date('Y'));
508 508
 	}
509 509
 
510
-	do_action( 'give_report_graph_controls_before' );
510
+	do_action('give_report_graph_controls_before');
511 511
 	?>
512 512
 	<form id="give-graphs-filter" method="get" class="alignright">
513 513
 		<div class="tablenav top alignright">
@@ -515,53 +515,53 @@  discard block
 block discarded – undo
515 515
 
516 516
 				<input type="hidden" name="post_type" value="give_forms" />
517 517
 				<input type="hidden" name="page" value="give-reports" />
518
-				<input type="hidden" name="view" value="<?php echo esc_attr( $view ); ?>" />
518
+				<input type="hidden" name="view" value="<?php echo esc_attr($view); ?>" />
519 519
 
520
-				<?php if ( isset( $_GET['form-id'] ) ) : ?>
521
-					<input type="hidden" name="form-id" value="<?php echo absint( $_GET['form-id'] ); ?>" />
520
+				<?php if (isset($_GET['form-id'])) : ?>
521
+					<input type="hidden" name="form-id" value="<?php echo absint($_GET['form-id']); ?>" />
522 522
 				<?php endif; ?>
523 523
 
524 524
 				<div id="give-graphs-date-options-wrap" class="alignright">
525 525
 					<select id="give-graphs-date-options" name="range">
526
-						<?php foreach ( $date_options as $key => $option ) : ?>
527
-							<option value="<?php echo esc_attr( $key ); ?>"<?php selected( $key, $dates['range'] ); ?>><?php echo esc_html( $option ); ?></option>
526
+						<?php foreach ($date_options as $key => $option) : ?>
527
+							<option value="<?php echo esc_attr($key); ?>"<?php selected($key, $dates['range']); ?>><?php echo esc_html($option); ?></option>
528 528
 						<?php endforeach; ?>
529 529
 					</select>
530 530
 
531
-					<input type="submit" class="button-secondary" value="<?php _e( 'Filter', 'give' ); ?>" />
531
+					<input type="submit" class="button-secondary" value="<?php _e('Filter', 'give'); ?>" />
532 532
 				</div>
533 533
 
534 534
 				<div id="give-date-range-options" <?php echo $display; ?>>
535
-					<span><?php _e( 'From', 'give' ); ?>&nbsp;</span>
535
+					<span><?php _e('From', 'give'); ?>&nbsp;</span>
536 536
 					<select id="give-graphs-month-start" name="m_start">
537
-						<?php for ( $i = 1; $i <= 12; $i ++ ) : ?>
538
-							<option value="<?php echo absint( $i ); ?>" <?php selected( $i, $dates['m_start'] ); ?>><?php echo give_month_num_to_name( $i ); ?></option>
537
+						<?php for ($i = 1; $i <= 12; $i++) : ?>
538
+							<option value="<?php echo absint($i); ?>" <?php selected($i, $dates['m_start']); ?>><?php echo give_month_num_to_name($i); ?></option>
539 539
 						<?php endfor; ?>
540 540
 					</select>
541 541
 					<select id="give-graphs-day-start" name="day">
542
-						<?php for ( $i = 1; $i <= 31; $i ++ ) : ?>
543
-							<option value="<?php echo absint( $i ); ?>" <?php selected( $i, $dates['day'] ); ?>><?php echo $i; ?></option>
542
+						<?php for ($i = 1; $i <= 31; $i++) : ?>
543
+							<option value="<?php echo absint($i); ?>" <?php selected($i, $dates['day']); ?>><?php echo $i; ?></option>
544 544
 						<?php endfor; ?>
545 545
 					</select>
546 546
 					<select id="give-graphs-year-start" name="year">
547
-						<?php for ( $i = 2007; $i <= date( 'Y' ); $i ++ ) : ?>
548
-							<option value="<?php echo absint( $i ); ?>" <?php selected( $i, $dates['year'] ); ?>><?php echo $i; ?></option>
547
+						<?php for ($i = 2007; $i <= date('Y'); $i++) : ?>
548
+							<option value="<?php echo absint($i); ?>" <?php selected($i, $dates['year']); ?>><?php echo $i; ?></option>
549 549
 						<?php endfor; ?>
550 550
 					</select>
551
-					<span><?php _e( 'To', 'give' ); ?>&nbsp;</span>
551
+					<span><?php _e('To', 'give'); ?>&nbsp;</span>
552 552
 					<select id="give-graphs-month-end" name="m_end">
553
-						<?php for ( $i = 1; $i <= 12; $i ++ ) : ?>
554
-							<option value="<?php echo absint( $i ); ?>" <?php selected( $i, $dates['m_end'] ); ?>><?php echo give_month_num_to_name( $i ); ?></option>
553
+						<?php for ($i = 1; $i <= 12; $i++) : ?>
554
+							<option value="<?php echo absint($i); ?>" <?php selected($i, $dates['m_end']); ?>><?php echo give_month_num_to_name($i); ?></option>
555 555
 						<?php endfor; ?>
556 556
 					</select>
557 557
 					<select id="give-graphs-day-end" name="day_end">
558
-						<?php for ( $i = 1; $i <= 31; $i ++ ) : ?>
559
-							<option value="<?php echo absint( $i ); ?>" <?php selected( $i, $dates['day_end'] ); ?>><?php echo $i; ?></option>
558
+						<?php for ($i = 1; $i <= 31; $i++) : ?>
559
+							<option value="<?php echo absint($i); ?>" <?php selected($i, $dates['day_end']); ?>><?php echo $i; ?></option>
560 560
 						<?php endfor; ?>
561 561
 					</select>
562 562
 					<select id="give-graphs-year-end" name="year_end">
563
-						<?php for ( $i = 2007; $i <= date( 'Y' ); $i ++ ) : ?>
564
-							<option value="<?php echo absint( $i ); ?>" <?php selected( $i, $dates['year_end'] ); ?>><?php echo $i; ?></option>
563
+						<?php for ($i = 2007; $i <= date('Y'); $i++) : ?>
564
+							<option value="<?php echo absint($i); ?>" <?php selected($i, $dates['year_end']); ?>><?php echo $i; ?></option>
565 565
 						<?php endfor; ?>
566 566
 					</select>
567 567
 				</div>
@@ -571,7 +571,7 @@  discard block
 block discarded – undo
571 571
 		</div>
572 572
 	</form>
573 573
 	<?php
574
-	do_action( 'give_report_graph_controls_after' );
574
+	do_action('give_report_graph_controls_after');
575 575
 }
576 576
 
577 577
 /**
@@ -586,65 +586,65 @@  discard block
 block discarded – undo
586 586
 function give_get_report_dates() {
587 587
 	$dates = array();
588 588
 
589
-	$current_time = current_time( 'timestamp' );
589
+	$current_time = current_time('timestamp');
590 590
 
591
-	$dates['range']    = isset( $_GET['range'] ) ? $_GET['range'] : 'this_month';
592
-	$dates['year']     = isset( $_GET['year'] ) ? $_GET['year'] : date( 'Y' );
593
-	$dates['year_end'] = isset( $_GET['year_end'] ) ? $_GET['year_end'] : date( 'Y' );
594
-	$dates['m_start']  = isset( $_GET['m_start'] ) ? $_GET['m_start'] : 1;
595
-	$dates['m_end']    = isset( $_GET['m_end'] ) ? $_GET['m_end'] : 12;
596
-	$dates['day']      = isset( $_GET['day'] ) ? $_GET['day'] : 1;
597
-	$dates['day_end']  = isset( $_GET['day_end'] ) ? $_GET['day_end'] : cal_days_in_month( CAL_GREGORIAN, $dates['m_end'], $dates['year'] );
591
+	$dates['range']    = isset($_GET['range']) ? $_GET['range'] : 'this_month';
592
+	$dates['year']     = isset($_GET['year']) ? $_GET['year'] : date('Y');
593
+	$dates['year_end'] = isset($_GET['year_end']) ? $_GET['year_end'] : date('Y');
594
+	$dates['m_start']  = isset($_GET['m_start']) ? $_GET['m_start'] : 1;
595
+	$dates['m_end']    = isset($_GET['m_end']) ? $_GET['m_end'] : 12;
596
+	$dates['day']      = isset($_GET['day']) ? $_GET['day'] : 1;
597
+	$dates['day_end']  = isset($_GET['day_end']) ? $_GET['day_end'] : cal_days_in_month(CAL_GREGORIAN, $dates['m_end'], $dates['year']);
598 598
 
599 599
 	// Modify dates based on predefined ranges
600
-	switch ( $dates['range'] ) :
600
+	switch ($dates['range']) :
601 601
 
602 602
 		case 'this_month' :
603
-			$dates['m_start']  = date( 'n', $current_time );
604
-			$dates['m_end']    = date( 'n', $current_time );
603
+			$dates['m_start']  = date('n', $current_time);
604
+			$dates['m_end']    = date('n', $current_time);
605 605
 			$dates['day']      = 1;
606
-			$dates['day_end']  = cal_days_in_month( CAL_GREGORIAN, $dates['m_end'], $dates['year'] );
607
-			$dates['year']     = date( 'Y' );
608
-			$dates['year_end'] = date( 'Y' );
606
+			$dates['day_end']  = cal_days_in_month(CAL_GREGORIAN, $dates['m_end'], $dates['year']);
607
+			$dates['year']     = date('Y');
608
+			$dates['year_end'] = date('Y');
609 609
 			break;
610 610
 
611 611
 		case 'last_month' :
612
-			if ( date( 'n' ) == 1 ) {
612
+			if (date('n') == 1) {
613 613
 				$dates['m_start']  = 12;
614 614
 				$dates['m_end']    = 12;
615
-				$dates['year']     = date( 'Y', $current_time ) - 1;
616
-				$dates['year_end'] = date( 'Y', $current_time ) - 1;
615
+				$dates['year']     = date('Y', $current_time) - 1;
616
+				$dates['year_end'] = date('Y', $current_time) - 1;
617 617
 			} else {
618
-				$dates['m_start']  = date( 'n' ) - 1;
619
-				$dates['m_end']    = date( 'n' ) - 1;
618
+				$dates['m_start']  = date('n') - 1;
619
+				$dates['m_end']    = date('n') - 1;
620 620
 				$dates['year_end'] = $dates['year'];
621 621
 			}
622
-			$dates['day_end'] = cal_days_in_month( CAL_GREGORIAN, $dates['m_end'], $dates['year'] );
622
+			$dates['day_end'] = cal_days_in_month(CAL_GREGORIAN, $dates['m_end'], $dates['year']);
623 623
 			break;
624 624
 
625 625
 		case 'today' :
626
-			$dates['day']     = date( 'd', $current_time );
627
-			$dates['m_start'] = date( 'n', $current_time );
628
-			$dates['m_end']   = date( 'n', $current_time );
629
-			$dates['year']    = date( 'Y', $current_time );
626
+			$dates['day']     = date('d', $current_time);
627
+			$dates['m_start'] = date('n', $current_time);
628
+			$dates['m_end']   = date('n', $current_time);
629
+			$dates['year']    = date('Y', $current_time);
630 630
 			break;
631 631
 
632 632
 		case 'yesterday' :
633 633
 
634
-			$year  = date( 'Y', $current_time );
635
-			$month = date( 'n', $current_time );
636
-			$day   = date( 'd', $current_time );
634
+			$year  = date('Y', $current_time);
635
+			$month = date('n', $current_time);
636
+			$day   = date('d', $current_time);
637 637
 
638
-			if ( $month == 1 && $day == 1 ) {
638
+			if ($month == 1 && $day == 1) {
639 639
 
640 640
 				$year -= 1;
641 641
 				$month = 12;
642
-				$day   = cal_days_in_month( CAL_GREGORIAN, $month, $year );
642
+				$day   = cal_days_in_month(CAL_GREGORIAN, $month, $year);
643 643
 
644
-			} elseif ( $month > 1 && $day == 1 ) {
644
+			} elseif ($month > 1 && $day == 1) {
645 645
 
646 646
 				$month -= 1;
647
-				$day = cal_days_in_month( CAL_GREGORIAN, $month, $year );
647
+				$day = cal_days_in_month(CAL_GREGORIAN, $month, $year);
648 648
 
649 649
 			} else {
650 650
 
@@ -660,91 +660,91 @@  discard block
 block discarded – undo
660 660
 			break;
661 661
 
662 662
 		case 'this_week' :
663
-			$dates['day'] = date( 'd', $current_time - ( date( 'w', $current_time ) - 1 ) * 60 * 60 * 24 ) - 1;
664
-			$dates['day'] += get_option( 'start_of_week' );
663
+			$dates['day'] = date('d', $current_time - (date('w', $current_time) - 1) * 60 * 60 * 24) - 1;
664
+			$dates['day'] += get_option('start_of_week');
665 665
 			$dates['day_end'] = $dates['day'] + 6;
666
-			$dates['m_start'] = date( 'n', $current_time );
667
-			$dates['m_end']   = date( 'n', $current_time );
668
-			$dates['year']    = date( 'Y', $current_time );
666
+			$dates['m_start'] = date('n', $current_time);
667
+			$dates['m_end']   = date('n', $current_time);
668
+			$dates['year']    = date('Y', $current_time);
669 669
 			break;
670 670
 
671 671
 		case 'last_week' :
672
-			$dates['day'] = date( 'd', $current_time - ( date( 'w' ) - 1 ) * 60 * 60 * 24 ) - 8;
673
-			$dates['day'] += get_option( 'start_of_week' );
672
+			$dates['day'] = date('d', $current_time - (date('w') - 1) * 60 * 60 * 24) - 8;
673
+			$dates['day'] += get_option('start_of_week');
674 674
 			$dates['day_end'] = $dates['day'] + 6;
675
-			$dates['year']    = date( 'Y' );
676
-
677
-			if ( date( 'j', $current_time ) <= 7 ) {
678
-				$dates['m_start'] = date( 'n', $current_time ) - 1;
679
-				$dates['m_end']   = date( 'n', $current_time ) - 1;
680
-				if ( $dates['m_start'] <= 1 ) {
681
-					$dates['year']     = date( 'Y', $current_time ) - 1;
682
-					$dates['year_end'] = date( 'Y', $current_time ) - 1;
675
+			$dates['year']    = date('Y');
676
+
677
+			if (date('j', $current_time) <= 7) {
678
+				$dates['m_start'] = date('n', $current_time) - 1;
679
+				$dates['m_end']   = date('n', $current_time) - 1;
680
+				if ($dates['m_start'] <= 1) {
681
+					$dates['year']     = date('Y', $current_time) - 1;
682
+					$dates['year_end'] = date('Y', $current_time) - 1;
683 683
 				}
684 684
 			} else {
685
-				$dates['m_start'] = date( 'n', $current_time );
686
-				$dates['m_end']   = date( 'n', $current_time );
685
+				$dates['m_start'] = date('n', $current_time);
686
+				$dates['m_end']   = date('n', $current_time);
687 687
 			}
688 688
 			break;
689 689
 
690 690
 		case 'this_quarter' :
691
-			$month_now = date( 'n', $current_time );
691
+			$month_now = date('n', $current_time);
692 692
 
693
-			if ( $month_now <= 3 ) {
693
+			if ($month_now <= 3) {
694 694
 
695 695
 				$dates['m_start'] = 1;
696 696
 				$dates['m_end']   = 4;
697
-				$dates['year']    = date( 'Y', $current_time );
697
+				$dates['year']    = date('Y', $current_time);
698 698
 
699
-			} else if ( $month_now <= 6 ) {
699
+			} else if ($month_now <= 6) {
700 700
 
701 701
 				$dates['m_start'] = 4;
702 702
 				$dates['m_end']   = 7;
703
-				$dates['year']    = date( 'Y', $current_time );
703
+				$dates['year']    = date('Y', $current_time);
704 704
 
705
-			} else if ( $month_now <= 9 ) {
705
+			} else if ($month_now <= 9) {
706 706
 
707 707
 				$dates['m_start'] = 7;
708 708
 				$dates['m_end']   = 10;
709
-				$dates['year']    = date( 'Y', $current_time );
709
+				$dates['year']    = date('Y', $current_time);
710 710
 
711 711
 			} else {
712 712
 
713 713
 				$dates['m_start']  = 10;
714 714
 				$dates['m_end']    = 1;
715
-				$dates['year']     = date( 'Y', $current_time );
716
-				$dates['year_end'] = date( 'Y', $current_time ) + 1;
715
+				$dates['year']     = date('Y', $current_time);
716
+				$dates['year_end'] = date('Y', $current_time) + 1;
717 717
 
718 718
 			}
719 719
 			break;
720 720
 
721 721
 		case 'last_quarter' :
722
-			$month_now = date( 'n' );
722
+			$month_now = date('n');
723 723
 
724
-			if ( $month_now <= 3 ) {
724
+			if ($month_now <= 3) {
725 725
 
726 726
 				$dates['m_start']  = 10;
727 727
 				$dates['m_end']    = 12;
728
-				$dates['year']     = date( 'Y', $current_time ) - 1; // Previous year
729
-				$dates['year_end'] = date( 'Y', $current_time ) - 1; // Previous year
728
+				$dates['year']     = date('Y', $current_time) - 1; // Previous year
729
+				$dates['year_end'] = date('Y', $current_time) - 1; // Previous year
730 730
 
731
-			} else if ( $month_now <= 6 ) {
731
+			} else if ($month_now <= 6) {
732 732
 
733 733
 				$dates['m_start'] = 1;
734 734
 				$dates['m_end']   = 3;
735
-				$dates['year']    = date( 'Y', $current_time );
735
+				$dates['year']    = date('Y', $current_time);
736 736
 
737
-			} else if ( $month_now <= 9 ) {
737
+			} else if ($month_now <= 9) {
738 738
 
739 739
 				$dates['m_start'] = 4;
740 740
 				$dates['m_end']   = 6;
741
-				$dates['year']    = date( 'Y', $current_time );
741
+				$dates['year']    = date('Y', $current_time);
742 742
 
743 743
 			} else {
744 744
 
745 745
 				$dates['m_start'] = 7;
746 746
 				$dates['m_end']   = 9;
747
-				$dates['year']    = date( 'Y', $current_time );
747
+				$dates['year']    = date('Y', $current_time);
748 748
 
749 749
 			}
750 750
 			break;
@@ -752,19 +752,19 @@  discard block
 block discarded – undo
752 752
 		case 'this_year' :
753 753
 			$dates['m_start'] = 1;
754 754
 			$dates['m_end']   = 12;
755
-			$dates['year']    = date( 'Y', $current_time );
755
+			$dates['year']    = date('Y', $current_time);
756 756
 			break;
757 757
 
758 758
 		case 'last_year' :
759 759
 			$dates['m_start']  = 1;
760 760
 			$dates['m_end']    = 12;
761
-			$dates['year']     = date( 'Y', $current_time ) - 1;
762
-			$dates['year_end'] = date( 'Y', $current_time ) - 1;
761
+			$dates['year']     = date('Y', $current_time) - 1;
762
+			$dates['year_end'] = date('Y', $current_time) - 1;
763 763
 			break;
764 764
 
765 765
 	endswitch;
766 766
 
767
-	return apply_filters( 'give_report_dates', $dates );
767
+	return apply_filters('give_report_dates', $dates);
768 768
 }
769 769
 
770 770
 /**
@@ -774,17 +774,17 @@  discard block
 block discarded – undo
774 774
  *
775 775
  * @param $data
776 776
  */
777
-function give_parse_report_dates( $data ) {
777
+function give_parse_report_dates($data) {
778 778
 	$dates = give_get_report_dates();
779 779
 
780 780
 	$view = give_get_reporting_view();
781
-	$id   = isset( $_GET['form-id'] ) ? $_GET['form-id'] : null;
781
+	$id   = isset($_GET['form-id']) ? $_GET['form-id'] : null;
782 782
 
783
-	wp_redirect( add_query_arg( $dates, admin_url( 'edit.php?post_type=give_forms&page=give-reports&view=' . esc_attr( $view ) . '&form-id=' . absint( $id ) ) ) );
783
+	wp_redirect(add_query_arg($dates, admin_url('edit.php?post_type=give_forms&page=give-reports&view='.esc_attr($view).'&form-id='.absint($id))));
784 784
 	give_die();
785 785
 }
786 786
 
787
-add_action( 'give_filter_reports', 'give_parse_report_dates' );
787
+add_action('give_filter_reports', 'give_parse_report_dates');
788 788
 
789 789
 
790 790
 /**
@@ -796,16 +796,16 @@  discard block
 block discarded – undo
796 796
  */
797 797
 function give_reports_refresh_button() {
798 798
 
799
-	$url = wp_nonce_url( add_query_arg( array(
799
+	$url = wp_nonce_url(add_query_arg(array(
800 800
 		'give_action'  => 'refresh_reports_transients',
801 801
 		'give-message' => 'refreshed-reports'
802
-	) ), 'give-refresh-reports' );
802
+	)), 'give-refresh-reports');
803 803
 
804
-	echo '<a href="' . $url . '" data-tooltip="' . __( 'Clicking this will clear the reports cache.', 'give' ) . '" data-tooltip-my-position="right center"  data-tooltip-target-position="left center" class="button alignright give-refresh-reports-button give-tooltip">' . __( 'Refresh Reports', 'give' ) . '</a>';
804
+	echo '<a href="'.$url.'" data-tooltip="'.__('Clicking this will clear the reports cache.', 'give').'" data-tooltip-my-position="right center"  data-tooltip-target-position="left center" class="button alignright give-refresh-reports-button give-tooltip">'.__('Refresh Reports', 'give').'</a>';
805 805
 
806 806
 }
807 807
 
808
-add_action( 'give_reports_graph_additional_stats', 'give_reports_refresh_button' );
808
+add_action('give_reports_graph_additional_stats', 'give_reports_refresh_button');
809 809
 
810 810
 /**
811 811
  * Trigger the refresh of reports transients
@@ -816,18 +816,18 @@  discard block
 block discarded – undo
816 816
  *
817 817
  * @return void
818 818
  */
819
-function give_run_refresh_reports_transients( $data ) {
819
+function give_run_refresh_reports_transients($data) {
820 820
 
821
-	if ( ! wp_verify_nonce( $data['_wpnonce'], 'give-refresh-reports' ) ) {
821
+	if ( ! wp_verify_nonce($data['_wpnonce'], 'give-refresh-reports')) {
822 822
 		return;
823 823
 	}
824 824
 
825 825
 	//Delete transients
826
-	delete_transient( 'give_estimated_monthly_stats' );
827
-	delete_transient( 'give_earnings_total' );
828
-	delete_transient( md5( 'give_earnings_this_monththis_month' ) );
829
-	delete_transient( md5( 'give_earnings_todaytoday' ) );
826
+	delete_transient('give_estimated_monthly_stats');
827
+	delete_transient('give_earnings_total');
828
+	delete_transient(md5('give_earnings_this_monththis_month'));
829
+	delete_transient(md5('give_earnings_todaytoday'));
830 830
 
831 831
 }
832 832
 
833
-add_action( 'give_refresh_reports_transients', 'give_run_refresh_reports_transients' );
834 833
\ No newline at end of file
834
+add_action('give_refresh_reports_transients', 'give_run_refresh_reports_transients');
835 835
\ No newline at end of file
Please login to merge, or discard this patch.