Test Failed
Push — master ( ec2740...fa2c4d )
by Devin
05:06
created
includes/admin/tools/export/export-functions.php 1 patch
Spacing   +27 added lines, -28 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
  */
12 12
 
13 13
 // Exit if accessed directly.
14
-if ( ! defined( 'ABSPATH' ) ) {
14
+if ( ! defined('ABSPATH')) {
15 15
 	exit;
16 16
 }
17 17
 
@@ -25,14 +25,14 @@  discard block
 block discarded – undo
25 25
  */
26 26
 function give_do_ajax_export() {
27 27
 
28
-	require_once GIVE_PLUGIN_DIR . 'includes/admin/tools/export/class-batch-export.php';
28
+	require_once GIVE_PLUGIN_DIR.'includes/admin/tools/export/class-batch-export.php';
29 29
 
30
-	parse_str( $_POST['form'], $form );
30
+	parse_str($_POST['form'], $form);
31 31
 
32 32
 	$_REQUEST = $form = (array) $form;
33 33
 
34
-	if ( ! wp_verify_nonce( $_REQUEST['give_ajax_export'], 'give_ajax_export' ) ) {
35
-		die( '-2' );
34
+	if ( ! wp_verify_nonce($_REQUEST['give_ajax_export'], 'give_ajax_export')) {
35
+		die('-2');
36 36
 	}
37 37
 
38 38
 	/**
@@ -42,28 +42,28 @@  discard block
 block discarded – undo
42 42
 	 *
43 43
 	 * @param string $class Export class.
44 44
 	 */
45
-	do_action( 'give_batch_export_class_include', $form['give-export-class'] );
45
+	do_action('give_batch_export_class_include', $form['give-export-class']);
46 46
 
47
-	$step   = absint( $_POST['step'] );
48
-	$class  = sanitize_text_field( $form['give-export-class'] );
47
+	$step   = absint($_POST['step']);
48
+	$class  = sanitize_text_field($form['give-export-class']);
49 49
 
50 50
 	/* @var Give_Batch_Export $export */
51
-	$export = new $class( $step );
51
+	$export = new $class($step);
52 52
 
53
-	if ( ! $export->can_export() ) {
54
-		die( '-1' );
53
+	if ( ! $export->can_export()) {
54
+		die('-1');
55 55
 	}
56 56
 
57
-	if ( ! $export->is_writable ) {
57
+	if ( ! $export->is_writable) {
58 58
 		$json_args = array(
59 59
 			'error'   => true,
60
-			'message' => esc_html__( 'Export location or file not writable.', 'give' )
60
+			'message' => esc_html__('Export location or file not writable.', 'give')
61 61
 		);
62 62
 		echo json_encode($json_args);
63 63
 		exit;
64 64
 	}
65 65
 
66
-	$export->set_properties( give_clean( $_REQUEST ) );
66
+	$export->set_properties(give_clean($_REQUEST));
67 67
 
68 68
 	$export->pre_fetch();
69 69
 
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
 
72 72
 	$percentage = $export->get_percentage_complete();
73 73
 
74
-	if ( $ret ) {
74
+	if ($ret) {
75 75
 
76 76
 		$step += 1;
77 77
 		$json_data = array(
@@ -79,18 +79,17 @@  discard block
 block discarded – undo
79 79
 			'percentage' => $percentage
80 80
 		);
81 81
 
82
-	} elseif ( true === $export->is_empty ) {
82
+	} elseif (true === $export->is_empty) {
83 83
 
84 84
 		$json_data = array(
85 85
 			'error'   => true,
86
-			'message' => esc_html__( 'No data found for export parameters.', 'give' )
86
+			'message' => esc_html__('No data found for export parameters.', 'give')
87 87
 		);
88 88
 
89
-	} elseif ( true === $export->done && true === $export->is_void ) {
89
+	} elseif (true === $export->done && true === $export->is_void) {
90 90
 
91
-		$message = ! empty( $export->message ) ?
92
-			$export->message :
93
-			esc_html__( 'Batch Processing Complete', 'give' );
91
+		$message = ! empty($export->message) ?
92
+			$export->message : esc_html__('Batch Processing Complete', 'give');
94 93
 
95 94
 		$json_data = array(
96 95
 			'success' => true,
@@ -99,23 +98,23 @@  discard block
 block discarded – undo
99 98
 
100 99
 	} else {
101 100
 		
102
-		$args = array_merge( $_REQUEST, array(
101
+		$args = array_merge($_REQUEST, array(
103 102
 			'step'        => $step,
104 103
 			'class'       => $class,
105
-			'nonce'       => wp_create_nonce( 'give-batch-export' ),
104
+			'nonce'       => wp_create_nonce('give-batch-export'),
106 105
 			'give_action' => 'form_batch_export',
107
-		) );
106
+		));
108 107
 
109 108
 		$json_data = array(
110 109
 			'step' => 'done',
111
-			'url' => add_query_arg( $args, admin_url() )
110
+			'url' => add_query_arg($args, admin_url())
112 111
 		);
113 112
 
114 113
 	}
115 114
 
116
-	$export->unset_properties( give_clean( $_REQUEST ), $export );
117
-	echo json_encode( $json_data );
115
+	$export->unset_properties(give_clean($_REQUEST), $export);
116
+	echo json_encode($json_data);
118 117
 	exit;
119 118
 }
120 119
 
121
-add_action( 'wp_ajax_give_do_ajax_export', 'give_do_ajax_export' );
120
+add_action('wp_ajax_give_do_ajax_export', 'give_do_ajax_export');
Please login to merge, or discard this patch.
includes/admin/tools/export/class-batch-export-donors.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -245,7 +245,7 @@
 block discarded – undo
245 245
 
246 246
 					// Continue if donor already included.
247 247
 					if ( empty( $payment->customer_id ) ||
248
-					     in_array( $payment->customer_id, $cached_donor_ids )
248
+						 in_array( $payment->customer_id, $cached_donor_ids )
249 249
 					) {
250 250
 						continue;
251 251
 					}
Please login to merge, or discard this patch.
Spacing   +102 added lines, -104 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
  */
13 13
 
14 14
 // Exit if accessed directly.
15
-if ( ! defined( 'ABSPATH' ) ) {
15
+if ( ! defined('ABSPATH')) {
16 16
 	exit;
17 17
 }
18 18
 
@@ -70,23 +70,23 @@  discard block
 block discarded – undo
70 70
 	 *
71 71
 	 * @param array $request The Form Data passed into the batch processing
72 72
 	 */
73
-	public function set_properties( $request ) {
73
+	public function set_properties($request) {
74 74
 
75 75
 		// Set data from form submission
76
-		if ( isset( $_POST['form'] ) ) {
77
-			parse_str( $_POST['form'], $this->data );
76
+		if (isset($_POST['form'])) {
77
+			parse_str($_POST['form'], $this->data);
78 78
 		}
79 79
 
80 80
 		$this->form = $this->data['forms'];
81 81
 
82 82
 		// Setup donor ids cache.
83
-		if ( ! empty( $this->form ) ) {
83
+		if ( ! empty($this->form)) {
84 84
 			// Cache donor ids to output unique list of donor.
85
-			$this->query_id = give_clean( $_REQUEST['give_export_option']['query_id'] );
85
+			$this->query_id = give_clean($_REQUEST['give_export_option']['query_id']);
86 86
 			$this->cache_donor_ids();
87 87
 		}
88 88
 
89
-		$this->price_id = ! empty( $request['give_price_option'] ) && 'all' !== $request['give_price_option'] ? absint( $request['give_price_option'] ) : null;
89
+		$this->price_id = ! empty($request['give_price_option']) && 'all' !== $request['give_price_option'] ? absint($request['give_price_option']) : null;
90 90
 
91 91
 	}
92 92
 
@@ -101,12 +101,12 @@  discard block
 block discarded – undo
101 101
 		// Fetch already cached donor ids.
102 102
 		$donor_ids = $this->donor_ids;
103 103
 
104
-		if ( $cached_donor_ids = Give_Cache::get( $this->query_id, true ) ) {
105
-			$donor_ids = array_unique( array_merge( $cached_donor_ids, $this->donor_ids ) );
104
+		if ($cached_donor_ids = Give_Cache::get($this->query_id, true)) {
105
+			$donor_ids = array_unique(array_merge($cached_donor_ids, $this->donor_ids));
106 106
 		}
107 107
 
108
-		$donor_ids = array_values( $donor_ids );
109
-		Give_Cache::set( $this->query_id, $donor_ids, HOUR_IN_SECONDS, true );
108
+		$donor_ids = array_values($donor_ids);
109
+		Give_Cache::set($this->query_id, $donor_ids, HOUR_IN_SECONDS, true);
110 110
 	}
111 111
 
112 112
 	/**
@@ -118,14 +118,14 @@  discard block
 block discarded – undo
118 118
 	 */
119 119
 	public function csv_cols() {
120 120
 
121
-		$columns = isset( $this->data['give_export_option'] ) ? $this->data['give_export_option'] : array();
121
+		$columns = isset($this->data['give_export_option']) ? $this->data['give_export_option'] : array();
122 122
 
123 123
 		// We need columns.
124
-		if ( empty( $columns ) ) {
124
+		if (empty($columns)) {
125 125
 			return false;
126 126
 		}
127 127
 
128
-		$cols = $this->get_cols( $columns );
128
+		$cols = $this->get_cols($columns);
129 129
 
130 130
 		return $cols;
131 131
 	}
@@ -137,41 +137,41 @@  discard block
 block discarded – undo
137 137
 	 *
138 138
 	 * @return array
139 139
 	 */
140
-	private function get_cols( $columns ) {
140
+	private function get_cols($columns) {
141 141
 
142 142
 		$cols = array();
143 143
 
144
-		foreach ( $columns as $key => $value ) {
144
+		foreach ($columns as $key => $value) {
145 145
 
146
-			switch ( $key ) {
146
+			switch ($key) {
147 147
 				case 'full_name' :
148
-					$cols['full_name'] = esc_html__( 'Full Name', 'give' );
148
+					$cols['full_name'] = esc_html__('Full Name', 'give');
149 149
 					break;
150 150
 				case 'email' :
151
-					$cols['email'] = esc_html__( 'Email Address', 'give' );
151
+					$cols['email'] = esc_html__('Email Address', 'give');
152 152
 					break;
153 153
 				case 'address' :
154
-					$cols['address_line1']   = esc_html__( 'Address', 'give' );
155
-					$cols['address_line2']   = esc_html__( 'Address 2', 'give' );
156
-					$cols['address_city']    = esc_html__( 'City', 'give' );
157
-					$cols['address_state']   = esc_html__( 'State', 'give' );
158
-					$cols['address_zip']     = esc_html__( 'Zip', 'give' );
159
-					$cols['address_country'] = esc_html__( 'Country', 'give' );
154
+					$cols['address_line1']   = esc_html__('Address', 'give');
155
+					$cols['address_line2']   = esc_html__('Address 2', 'give');
156
+					$cols['address_city']    = esc_html__('City', 'give');
157
+					$cols['address_state']   = esc_html__('State', 'give');
158
+					$cols['address_zip']     = esc_html__('Zip', 'give');
159
+					$cols['address_country'] = esc_html__('Country', 'give');
160 160
 					break;
161 161
 				case 'userid' :
162
-					$cols['userid'] = esc_html__( 'User ID', 'give' );
162
+					$cols['userid'] = esc_html__('User ID', 'give');
163 163
 					break;
164 164
 				case 'donation_form' :
165
-					$cols['donation_form'] = esc_html__( 'Donation Form', 'give' );
165
+					$cols['donation_form'] = esc_html__('Donation Form', 'give');
166 166
 					break;
167 167
 				case 'date_first_donated' :
168
-					$cols['date_first_donated'] = esc_html__( 'First Donation Date', 'give' );
168
+					$cols['date_first_donated'] = esc_html__('First Donation Date', 'give');
169 169
 					break;
170 170
 				case 'donations' :
171
-					$cols['donations'] = esc_html__( 'Number of Donations', 'give' );
171
+					$cols['donations'] = esc_html__('Number of Donations', 'give');
172 172
 					break;
173 173
 				case 'donation_sum' :
174
-					$cols['donation_sum'] = esc_html__( 'Sum of Donations', 'give' );
174
+					$cols['donation_sum'] = esc_html__('Sum of Donations', 'give');
175 175
 					break;
176 176
 			}
177 177
 		}
@@ -192,29 +192,29 @@  discard block
 block discarded – undo
192 192
 		$i = 0;
193 193
 
194 194
 		$data             = array();
195
-		$cached_donor_ids = Give_Cache::get( $this->query_id, true );
195
+		$cached_donor_ids = Give_Cache::get($this->query_id, true);
196 196
 
197
-		if ( ! empty( $this->form ) ) {
197
+		if ( ! empty($this->form)) {
198 198
 
199 199
 			// Export donors for a specific donation form and also within specified timeframe
200 200
 			$args = array(
201 201
 				'output'     => 'payments', // Use 'posts' to get standard post objects
202
-				'post_type'  => array( 'give_payment' ),
202
+				'post_type'  => array('give_payment'),
203 203
 				'number'     => 30,
204 204
 				'paged'      => $this->step,
205 205
 				'status'     => 'publish',
206 206
 				'meta_key'   => '_give_payment_form_id',
207
-				'meta_value' => absint( $this->form ),
207
+				'meta_value' => absint($this->form),
208 208
 			);
209 209
 
210 210
 			// Check for date option filter
211
-			if ( ! empty( $this->data['donor_export_start_date'] ) || ! empty( $this->data['donor_export_end_date'] ) ) {
212
-				$args['start_date'] = ! empty( $this->data['donor_export_start_date'] ) ? date( 'Y-n-d 00:00:00', strtotime( $this->data['donor_export_start_date'] ) ) : date( 'Y-n-d 23:59:59', '1970-1-01 00:00:00' );
213
-				$args['end_date']   = ! empty( $this->data['donor_export_end_date'] ) ? date( 'Y-n-d 23:59:59', strtotime( $this->data['donor_export_end_date'] ) ) : date( 'Y-n-d 23:59:59', current_time( 'timestamp' ) );
211
+			if ( ! empty($this->data['donor_export_start_date']) || ! empty($this->data['donor_export_end_date'])) {
212
+				$args['start_date'] = ! empty($this->data['donor_export_start_date']) ? date('Y-n-d 00:00:00', strtotime($this->data['donor_export_start_date'])) : date('Y-n-d 23:59:59', '1970-1-01 00:00:00');
213
+				$args['end_date']   = ! empty($this->data['donor_export_end_date']) ? date('Y-n-d 23:59:59', strtotime($this->data['donor_export_end_date'])) : date('Y-n-d 23:59:59', current_time('timestamp'));
214 214
 			}
215 215
 
216 216
 			// Check for price option.
217
-			if ( null !== $this->price_id ) {
217
+			if (null !== $this->price_id) {
218 218
 				$args['meta_query'] = array(
219 219
 					array(
220 220
 						'key'   => '_give_payment_price_id',
@@ -223,45 +223,43 @@  discard block
 block discarded – undo
223 223
 				);
224 224
 			}
225 225
 
226
-			$payments_query = new Give_Payments_Query( $args );
226
+			$payments_query = new Give_Payments_Query($args);
227 227
 			$payments       = $payments_query->get_payments();
228 228
 
229
-			if ( $payments ) {
229
+			if ($payments) {
230 230
 				/* @var Give_Payment $payment */
231
-				foreach ( $payments as $payment ) {
231
+				foreach ($payments as $payment) {
232 232
 					// Set donation sum.
233
-					$this->payment_stats[ $payment->customer_id ]['donation_sum'] = isset( $this->payment_stats[ $payment->customer_id ]['donation_sum'] ) ?
234
-						$this->payment_stats[ $payment->customer_id ]['donation_sum'] :
235
-						0;
236
-					$this->payment_stats[ $payment->customer_id ]['donation_sum'] += $payment->total;
233
+					$this->payment_stats[$payment->customer_id]['donation_sum'] = isset($this->payment_stats[$payment->customer_id]['donation_sum']) ?
234
+						$this->payment_stats[$payment->customer_id]['donation_sum'] : 0;
235
+					$this->payment_stats[$payment->customer_id]['donation_sum'] += $payment->total;
237 236
 
238 237
 					// Set donation count.
239
-					$this->payment_stats[ $payment->customer_id ]['donations'] = isset( $this->payment_stats[ $payment->customer_id ]['donations'] ) ?
240
-						++ $this->payment_stats[ $payment->customer_id ]['donations'] :
241
-						1;
238
+					$this->payment_stats[$payment->customer_id]['donations'] = isset($this->payment_stats[$payment->customer_id]['donations']) ?
239
+						++$this->payment_stats[$payment->customer_id]['donations'] : 1;
242 240
 
243 241
 					// Set donation form name.
244
-					$this->payment_stats[ $payment->customer_id ]['form_title'] = $payment->form_title;
242
+					$this->payment_stats[$payment->customer_id]['form_title'] = $payment->form_title;
245 243
 
246 244
 					// Continue if donor already included.
247
-					if ( empty( $payment->customer_id ) ||
248
-					     in_array( $payment->customer_id, $cached_donor_ids )
245
+					if (empty($payment->customer_id) ||
246
+					     in_array($payment->customer_id, $cached_donor_ids)
249 247
 					) {
250 248
 						continue;
251 249
 					}
252 250
 
253 251
 					$this->donor_ids[] = $cached_donor_ids[] = $payment->customer_id;
254 252
 
255
-					$i ++;
253
+					$i++;
256 254
 				}
257 255
 
258
-				if ( ! empty( $this->donor_ids ) ) {
259
-					foreach ( $this->donor_ids as $donor_id ) {
260
-						$donor                      = Give()->donors->get_donor_by( 'id', $donor_id );
261
-						$donor->donation_form_title = $this->payment_stats[ $donor_id ]['form_title'];
262
-						$donor->purchase_count      = $this->payment_stats[ $donor_id ]['donations'];
263
-						$donor->purchase_value      = $this->payment_stats[ $donor_id ]['donation_sum'];
264
-						$data[]                     = $this->set_donor_data( $i, $data, $donor );
256
+				if ( ! empty($this->donor_ids)) {
257
+					foreach ($this->donor_ids as $donor_id) {
258
+						$donor                      = Give()->donors->get_donor_by('id', $donor_id);
259
+						$donor->donation_form_title = $this->payment_stats[$donor_id]['form_title'];
260
+						$donor->purchase_count      = $this->payment_stats[$donor_id]['donations'];
261
+						$donor->purchase_value      = $this->payment_stats[$donor_id]['donation_sum'];
262
+						$data[]                     = $this->set_donor_data($i, $data, $donor);
265 263
 					}
266 264
 
267 265
 					// Cache donor ids only if admin export donor for specific form.
@@ -271,7 +269,7 @@  discard block
 block discarded – undo
271 269
 		} else {
272 270
 
273 271
 			// Export all donors.
274
-			$offset = 30 * ( $this->step - 1 );
272
+			$offset = 30 * ($this->step - 1);
275 273
 
276 274
 			$args = array(
277 275
 				'number' => 30,
@@ -279,31 +277,31 @@  discard block
 block discarded – undo
279 277
 			);
280 278
 
281 279
 			// Check for date option filter
282
-			if ( ! empty( $this->data['donor_export_start_date'] ) || ! empty( $this->data['donor_export_end_date'] ) ) {
280
+			if ( ! empty($this->data['donor_export_start_date']) || ! empty($this->data['donor_export_end_date'])) {
283 281
 				$args['date'] = array(
284
-					'start' => ! empty( $this->data['donor_export_start_date'] ) ? date( 'Y-n-d 00:00:00', strtotime( $this->data['donor_export_start_date'] ) ) : date( 'Y-n-d 23:59:59', '1970-1-01 00:00:00' ),
285
-					'end'   => ! empty( $this->data['donor_export_end_date'] ) ? date( 'Y-n-d 23:59:59', strtotime( $this->data['donor_export_end_date'] ) ) : date( 'Y-n-d 23:59:59', current_time( 'timestamp' ) ),
282
+					'start' => ! empty($this->data['donor_export_start_date']) ? date('Y-n-d 00:00:00', strtotime($this->data['donor_export_start_date'])) : date('Y-n-d 23:59:59', '1970-1-01 00:00:00'),
283
+					'end'   => ! empty($this->data['donor_export_end_date']) ? date('Y-n-d 23:59:59', strtotime($this->data['donor_export_end_date'])) : date('Y-n-d 23:59:59', current_time('timestamp')),
286 284
 				);
287 285
 			}
288 286
 
289
-			$donors = Give()->donors->get_donors( $args );
287
+			$donors = Give()->donors->get_donors($args);
290 288
 
291
-			foreach ( $donors as $donor ) {
289
+			foreach ($donors as $donor) {
292 290
 
293 291
 				// Continue if donor already included.
294
-				if ( empty( $donor->id ) || empty( $donor->payment_ids ) ) {
292
+				if (empty($donor->id) || empty($donor->payment_ids)) {
295 293
 					continue;
296 294
 				}
297 295
 
298
-				$payment                    = new Give_Payment( $donor->payment_ids );
296
+				$payment                    = new Give_Payment($donor->payment_ids);
299 297
 				$donor->donation_form_title = $payment->form_title;
300
-				$data[]                     = $this->set_donor_data( $i, $data, $donor );
301
-				$i ++;
298
+				$data[]                     = $this->set_donor_data($i, $data, $donor);
299
+				$i++;
302 300
 			}
303 301
 		}// End if().
304 302
 
305
-		$data = apply_filters( 'give_export_get_data', $data );
306
-		$data = apply_filters( "give_export_get_data_{$this->export_type}", $data );
303
+		$data = apply_filters('give_export_get_data', $data);
304
+		$data = apply_filters("give_export_get_data_{$this->export_type}", $data);
307 305
 
308 306
 		return $data;
309 307
 	}
@@ -319,18 +317,18 @@  discard block
 block discarded – undo
319 317
 		$percentage = 0;
320 318
 
321 319
 		// We can't count the number when getting them for a specific form.
322
-		if ( empty( $this->form ) ) {
320
+		if (empty($this->form)) {
323 321
 
324 322
 			$total = Give()->donors->count();
325 323
 
326
-			if ( $total > 0 ) {
324
+			if ($total > 0) {
327 325
 
328
-				$percentage = ( ( 30 * $this->step ) / $total ) * 100;
326
+				$percentage = ((30 * $this->step) / $total) * 100;
329 327
 
330 328
 			}
331 329
 		}
332 330
 
333
-		if ( $percentage > 100 ) {
331
+		if ($percentage > 100) {
334 332
 			$percentage = 100;
335 333
 		}
336 334
 
@@ -346,49 +344,49 @@  discard block
 block discarded – undo
346 344
 	 *
347 345
 	 * @return mixed
348 346
 	 */
349
-	private function set_donor_data( $i, $data, $donor ) {
347
+	private function set_donor_data($i, $data, $donor) {
350 348
 
351 349
 		$columns = $this->csv_cols();
352 350
 
353 351
 		// Set address variable
354 352
 		$address = '';
355
-		if ( isset( $donor->user_id ) && $donor->user_id > 0 ) {
356
-			$address = give_get_donor_address( $donor->user_id );
353
+		if (isset($donor->user_id) && $donor->user_id > 0) {
354
+			$address = give_get_donor_address($donor->user_id);
357 355
 		}
358 356
 
359 357
 		// Set columns
360
-		if ( ! empty( $columns['full_name'] ) ) {
361
-			$data[ $i ]['full_name'] = $donor->name;
358
+		if ( ! empty($columns['full_name'])) {
359
+			$data[$i]['full_name'] = $donor->name;
362 360
 		}
363
-		if ( ! empty( $columns['email'] ) ) {
364
-			$data[ $i ]['email'] = $donor->email;
361
+		if ( ! empty($columns['email'])) {
362
+			$data[$i]['email'] = $donor->email;
365 363
 		}
366
-		if ( ! empty( $columns['address_line1'] ) ) {
367
-
368
-			$data[ $i ]['address_line1']   = isset( $address['line1'] ) ? $address['line1'] : '';
369
-			$data[ $i ]['address_line2']   = isset( $address['line2'] ) ? $address['line2'] : '';
370
-			$data[ $i ]['address_city']    = isset( $address['city'] ) ? $address['city'] : '';
371
-			$data[ $i ]['address_state']   = isset( $address['state'] ) ? $address['state'] : '';
372
-			$data[ $i ]['address_zip']     = isset( $address['zip'] ) ? $address['zip'] : '';
373
-			$data[ $i ]['address_country'] = isset( $address['country'] ) ? $address['country'] : '';
364
+		if ( ! empty($columns['address_line1'])) {
365
+
366
+			$data[$i]['address_line1']   = isset($address['line1']) ? $address['line1'] : '';
367
+			$data[$i]['address_line2']   = isset($address['line2']) ? $address['line2'] : '';
368
+			$data[$i]['address_city']    = isset($address['city']) ? $address['city'] : '';
369
+			$data[$i]['address_state']   = isset($address['state']) ? $address['state'] : '';
370
+			$data[$i]['address_zip']     = isset($address['zip']) ? $address['zip'] : '';
371
+			$data[$i]['address_country'] = isset($address['country']) ? $address['country'] : '';
374 372
 		}
375
-		if ( ! empty( $columns['userid'] ) ) {
376
-			$data[ $i ]['userid'] = ! empty( $donor->user_id ) ? $donor->user_id : '';
373
+		if ( ! empty($columns['userid'])) {
374
+			$data[$i]['userid'] = ! empty($donor->user_id) ? $donor->user_id : '';
377 375
 		}
378
-		if ( ! empty( $columns['donation_form'] ) ) {
379
-			$data[ $i ]['donation_form'] = ! empty( $donor->donation_form_title ) ? $donor->donation_form_title : '';
376
+		if ( ! empty($columns['donation_form'])) {
377
+			$data[$i]['donation_form'] = ! empty($donor->donation_form_title) ? $donor->donation_form_title : '';
380 378
 		}
381
-		if ( ! empty( $columns['date_first_donated'] ) ) {
382
-			$data[ $i ]['date_first_donated'] = date_i18n( give_date_format(), strtotime( $donor->date_created ) );
379
+		if ( ! empty($columns['date_first_donated'])) {
380
+			$data[$i]['date_first_donated'] = date_i18n(give_date_format(), strtotime($donor->date_created));
383 381
 		}
384
-		if ( ! empty( $columns['donations'] ) ) {
385
-			$data[ $i ]['donations'] = $donor->purchase_count;
382
+		if ( ! empty($columns['donations'])) {
383
+			$data[$i]['donations'] = $donor->purchase_count;
386 384
 		}
387
-		if ( ! empty( $columns['donation_sum'] ) ) {
388
-			$data[ $i ]['donation_sum'] = give_format_amount( $donor->purchase_value, array( 'sanitize' => false ) );
385
+		if ( ! empty($columns['donation_sum'])) {
386
+			$data[$i]['donation_sum'] = give_format_amount($donor->purchase_value, array('sanitize' => false));
389 387
 		}
390 388
 
391
-		return $data[ $i ];
389
+		return $data[$i];
392 390
 
393 391
 	}
394 392
 
@@ -398,9 +396,9 @@  discard block
 block discarded – undo
398 396
 	 * @param array             $request
399 397
 	 * @param Give_Batch_Export $export
400 398
 	 */
401
-	public function unset_properties( $request, $export ) {
402
-		if ( $export->done ) {
403
-			Give_Cache::delete( "give_cache_{$this->query_id}" );
399
+	public function unset_properties($request, $export) {
400
+		if ($export->done) {
401
+			Give_Cache::delete("give_cache_{$this->query_id}");
404 402
 		}
405 403
 	}
406 404
 }
407 405
\ No newline at end of file
Please login to merge, or discard this patch.
includes/admin/tools/export/class-batch-export.php 1 patch
Spacing   +38 added lines, -38 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
  */
13 13
 
14 14
 // Exit if accessed directly.
15
-if ( ! defined( 'ABSPATH' ) ) {
15
+if ( ! defined('ABSPATH')) {
16 16
 	exit;
17 17
 }
18 18
 
@@ -118,14 +118,14 @@  discard block
 block discarded – undo
118 118
 	 *
119 119
 	 * @param int $_step
120 120
 	 */
121
-	public function __construct( $_step = 1 ) {
121
+	public function __construct($_step = 1) {
122 122
 
123 123
 		$upload_dir     = wp_upload_dir();
124 124
 		$this->filetype = '.csv';
125
-		$this->filename = 'give-' . $this->export_type . $this->filetype;
126
-		$this->file     = trailingslashit( $upload_dir['basedir'] ) . $this->filename;
125
+		$this->filename = 'give-'.$this->export_type.$this->filetype;
126
+		$this->file     = trailingslashit($upload_dir['basedir']).$this->filename;
127 127
 
128
-		if ( ! is_writeable( $upload_dir['basedir'] ) ) {
128
+		if ( ! is_writeable($upload_dir['basedir'])) {
129 129
 			$this->is_writable = false;
130 130
 		}
131 131
 
@@ -141,22 +141,22 @@  discard block
 block discarded – undo
141 141
 	 */
142 142
 	public function process_step() {
143 143
 
144
-		if ( ! $this->can_export() ) {
145
-			wp_die( esc_html__( 'You do not have permission to export data.', 'give' ), esc_html__( 'Error', 'give' ), array(
144
+		if ( ! $this->can_export()) {
145
+			wp_die(esc_html__('You do not have permission to export data.', 'give'), esc_html__('Error', 'give'), array(
146 146
 				'response' => 403,
147
-			) );
147
+			));
148 148
 		}
149 149
 
150
-		if ( $this->step < 2 ) {
150
+		if ($this->step < 2) {
151 151
 
152 152
 			// Make sure we start with a fresh file on step 1.
153
-			@unlink( $this->file );
153
+			@unlink($this->file);
154 154
 			$this->print_csv_cols();
155 155
 		}
156 156
 
157 157
 		$rows = $this->print_csv_rows();
158 158
 
159
-		if ( $rows ) {
159
+		if ($rows) {
160 160
 			return true;
161 161
 		} else {
162 162
 			return false;
@@ -176,14 +176,14 @@  discard block
 block discarded – undo
176 176
 		$col_data = '';
177 177
 		$cols     = $this->get_csv_cols();
178 178
 		$i        = 1;
179
-		foreach ( $cols as $col_id => $column ) {
180
-			$col_data .= '"' . addslashes( $column ) . '"';
181
-			$col_data .= $i == count( $cols ) ? '' : ',';
182
-			$i ++;
179
+		foreach ($cols as $col_id => $column) {
180
+			$col_data .= '"'.addslashes($column).'"';
181
+			$col_data .= $i == count($cols) ? '' : ',';
182
+			$i++;
183 183
 		}
184 184
 		$col_data .= "\r\n";
185 185
 
186
-		$this->stash_step_data( $col_data );
186
+		$this->stash_step_data($col_data);
187 187
 
188 188
 		return $col_data;
189 189
 
@@ -202,23 +202,23 @@  discard block
 block discarded – undo
202 202
 		$data     = $this->get_data();
203 203
 		$cols     = $this->get_csv_cols();
204 204
 
205
-		if ( $data ) {
205
+		if ($data) {
206 206
 
207 207
 			// Output each row
208
-			foreach ( $data as $row ) {
208
+			foreach ($data as $row) {
209 209
 				$i = 1;
210
-				foreach ( $row as $col_id => $column ) {
210
+				foreach ($row as $col_id => $column) {
211 211
 					// Make sure the column is valid
212
-					if ( array_key_exists( $col_id, $cols ) ) {
213
-						$row_data .= '"' . addslashes( preg_replace( '/"/', "'", $column ) ) . '"';
214
-						$row_data .= $i == count( $cols ) ? '' : ',';
215
-						$i ++;
212
+					if (array_key_exists($col_id, $cols)) {
213
+						$row_data .= '"'.addslashes(preg_replace('/"/', "'", $column)).'"';
214
+						$row_data .= $i == count($cols) ? '' : ',';
215
+						$i++;
216 216
 					}
217 217
 				}
218 218
 				$row_data .= "\r\n";
219 219
 			}
220 220
 
221
-			$this->stash_step_data( $row_data );
221
+			$this->stash_step_data($row_data);
222 222
 
223 223
 			return $row_data;
224 224
 		}
@@ -246,18 +246,18 @@  discard block
 block discarded – undo
246 246
 
247 247
 		$file = '';
248 248
 
249
-		if ( @file_exists( $this->file ) ) {
249
+		if (@file_exists($this->file)) {
250 250
 
251
-			if ( ! is_writeable( $this->file ) ) {
251
+			if ( ! is_writeable($this->file)) {
252 252
 				$this->is_writable = false;
253 253
 			}
254 254
 
255
-			$file = @file_get_contents( $this->file );
255
+			$file = @file_get_contents($this->file);
256 256
 
257 257
 		} else {
258 258
 
259
-			@file_put_contents( $this->file, '' );
260
-			@chmod( $this->file, 0664 );
259
+			@file_put_contents($this->file, '');
260
+			@chmod($this->file, 0664);
261 261
 
262 262
 		}
263 263
 
@@ -273,18 +273,18 @@  discard block
 block discarded – undo
273 273
 	 *
274 274
 	 * @return void
275 275
 	 */
276
-	protected function stash_step_data( $data = '' ) {
276
+	protected function stash_step_data($data = '') {
277 277
 
278 278
 		$file = $this->get_file();
279 279
 		$file .= $data;
280
-		@file_put_contents( $this->file, $file );
280
+		@file_put_contents($this->file, $file);
281 281
 
282 282
 		// If we have no rows after this step, mark it as an empty export.
283
-		$file_rows    = file( $this->file, FILE_SKIP_EMPTY_LINES );
283
+		$file_rows    = file($this->file, FILE_SKIP_EMPTY_LINES);
284 284
 		$default_cols = $this->get_csv_cols();
285
-		$default_cols = empty( $default_cols ) ? 0 : 1;
285
+		$default_cols = empty($default_cols) ? 0 : 1;
286 286
 
287
-		$this->is_empty = count( $file_rows ) == $default_cols ? true : false;
287
+		$this->is_empty = count($file_rows) == $default_cols ? true : false;
288 288
 
289 289
 	}
290 290
 
@@ -302,7 +302,7 @@  discard block
 block discarded – undo
302 302
 
303 303
 		$file = $this->get_file();
304 304
 
305
-		@unlink( $this->file );
305
+		@unlink($this->file);
306 306
 
307 307
 		echo $file;
308 308
 
@@ -311,7 +311,7 @@  discard block
 block discarded – undo
311 311
 		 *
312 312
 		 * @since 1.8
313 313
 		 */
314
-		do_action( 'give_file_export_complete', $_REQUEST );
314
+		do_action('give_file_export_complete', $_REQUEST);
315 315
 
316 316
 		give_die();
317 317
 	}
@@ -323,7 +323,7 @@  discard block
 block discarded – undo
323 323
 	 *
324 324
 	 * @param array $request The Form Data passed into the batch processing.
325 325
 	 */
326
-	public function set_properties( $request ) {
326
+	public function set_properties($request) {
327 327
 	}
328 328
 
329 329
 	/**
@@ -334,7 +334,7 @@  discard block
 block discarded – undo
334 334
 	 * @param array             $request The Form Data passed into the batch processing.
335 335
 	 * @param Give_Batch_Export $export
336 336
 	 */
337
-	public function unset_properties( $request, $export ) {
337
+	public function unset_properties($request, $export) {
338 338
 	}
339 339
 
340 340
 	/**
Please login to merge, or discard this patch.
includes/admin/tools/views/html-admin-page-exports.php 1 patch
Spacing   +56 added lines, -56 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
  * Admin View: Exports
4 4
  */
5 5
 
6
-if ( ! defined( 'ABSPATH' ) ) {
6
+if ( ! defined('ABSPATH')) {
7 7
 	exit;
8 8
 } ?>
9 9
 
@@ -18,14 +18,14 @@  discard block
 block discarded – undo
18 18
 				 *
19 19
 				 * @since 1.0
20 20
 				 */
21
-				do_action( 'give_tools_tab_export_content_top' );
21
+				do_action('give_tools_tab_export_content_top');
22 22
 				?>
23 23
 
24 24
 				<table class="widefat export-options-table give-table">
25 25
 					<thead>
26 26
 					<tr>
27
-						<th scope="col"><?php esc_html_e( 'Export Type', 'give' ); ?></th>
28
-						<th scope="col"><?php esc_html_e( 'Export Options', 'give' ); ?></th>
27
+						<th scope="col"><?php esc_html_e('Export Type', 'give'); ?></th>
28
+						<th scope="col"><?php esc_html_e('Export Options', 'give'); ?></th>
29 29
 					</tr>
30 30
 					</thead>
31 31
 					<tbody>
@@ -38,42 +38,42 @@  discard block
 block discarded – undo
38 38
 					 *
39 39
 					 * @since 1.0
40 40
 					 */
41
-					do_action( 'give_tools_tab_export_table_top' );
41
+					do_action('give_tools_tab_export_table_top');
42 42
 					?>
43 43
 					<tr class="give-export-pdf-sales-earnings">
44 44
 						<td scope="row" class="row-title">
45 45
 							<h3>
46
-								<span><?php esc_html_e( 'Export PDF of Donations and Income', 'give' ); ?></span>
46
+								<span><?php esc_html_e('Export PDF of Donations and Income', 'give'); ?></span>
47 47
 							</h3>
48
-							<p><?php esc_html_e( 'Download a PDF of Donations and Income reports for all forms for the current year.', 'give' ); ?></p>
48
+							<p><?php esc_html_e('Download a PDF of Donations and Income reports for all forms for the current year.', 'give'); ?></p>
49 49
 						</td>
50 50
 						<td>
51
-							<a class="button" href="<?php echo wp_nonce_url( add_query_arg( array( 'give-action' => 'generate_pdf' ) ), 'give_generate_pdf' ); ?>">
52
-								<?php esc_html_e( 'Generate PDF', 'give' ); ?>
51
+							<a class="button" href="<?php echo wp_nonce_url(add_query_arg(array('give-action' => 'generate_pdf')), 'give_generate_pdf'); ?>">
52
+								<?php esc_html_e('Generate PDF', 'give'); ?>
53 53
 							</a>
54 54
 						</td>
55 55
 					</tr>
56 56
 					<tr class="alternate give-export-sales-earnings">
57 57
 						<td scope="row" class="row-title">
58 58
 							<h3>
59
-								<span><?php esc_html_e( 'Export Income and Donation Stats', 'give' ); ?></span>
59
+								<span><?php esc_html_e('Export Income and Donation Stats', 'give'); ?></span>
60 60
 							</h3>
61
-							<p><?php esc_html_e( 'Download a CSV of income and donations over time.', 'give' ); ?></p>
61
+							<p><?php esc_html_e('Download a CSV of income and donations over time.', 'give'); ?></p>
62 62
 						</td>
63 63
 						<td>
64 64
 							<form method="post">
65 65
 								<?php
66 66
 								printf(
67 67
 								/* translators: 1: start date dropdown 2: end date dropdown */
68
-									esc_html__( '%1$s to %2$s', 'give' ),
69
-									Give()->html->year_dropdown( 'start_year' ) . ' ' . Give()->html->month_dropdown( 'start_month' ),
70
-									Give()->html->year_dropdown( 'end_year' ) . ' ' . Give()->html->month_dropdown( 'end_month' )
68
+									esc_html__('%1$s to %2$s', 'give'),
69
+									Give()->html->year_dropdown('start_year').' '.Give()->html->month_dropdown('start_month'),
70
+									Give()->html->year_dropdown('end_year').' '.Give()->html->month_dropdown('end_month')
71 71
 								);
72 72
 								?>
73 73
 								<input type="hidden" name="give-action"
74 74
 								       value="earnings_export"/>
75 75
 								<input type="submit"
76
-								       value="<?php esc_attr_e( 'Generate CSV', 'give' ); ?>"
76
+								       value="<?php esc_attr_e('Generate CSV', 'give'); ?>"
77 77
 								       class="button-secondary"/>
78 78
 							</form>
79 79
 						</td>
@@ -81,37 +81,37 @@  discard block
 block discarded – undo
81 81
 					<tr class="give-export-payment-history">
82 82
 						<td scope="row" class="row-title">
83 83
 							<h3>
84
-								<span><?php esc_html_e( 'Export Donation History', 'give' ); ?></span>
84
+								<span><?php esc_html_e('Export Donation History', 'give'); ?></span>
85 85
 							</h3>
86
-							<p><?php esc_html_e( 'Download a CSV of all donations recorded.', 'give' ); ?></p>
86
+							<p><?php esc_html_e('Download a CSV of all donations recorded.', 'give'); ?></p>
87 87
 						</td>
88 88
 						<td>
89 89
 							<form id="give-export-payments"
90 90
 							      class="give-export-form" method="post">
91 91
 								<?php
92
-								echo Give()->html->date_field( array(
92
+								echo Give()->html->date_field(array(
93 93
 									'id'          => 'give-payment-export-start',
94 94
 									'name'        => 'start',
95
-									'placeholder' => esc_attr__( 'Start date', 'give' ),
96
-								) );
95
+									'placeholder' => esc_attr__('Start date', 'give'),
96
+								));
97 97
 
98
-								echo Give()->html->date_field( array(
98
+								echo Give()->html->date_field(array(
99 99
 									'id'          => 'give-payment-export-end',
100 100
 									'name'        => 'end',
101
-									'placeholder' => esc_attr__( 'End date', 'give' ),
102
-								) );
101
+									'placeholder' => esc_attr__('End date', 'give'),
102
+								));
103 103
 								?>
104 104
 								<select name="status">
105
-									<option value="any"><?php esc_html_e( 'All Statuses', 'give' ); ?></option>
105
+									<option value="any"><?php esc_html_e('All Statuses', 'give'); ?></option>
106 106
 									<?php
107 107
 									$statuses = give_get_payment_statuses();
108
-									foreach ( $statuses as $status => $label ) {
109
-										echo '<option value="' . $status . '">' . $label . '</option>';
108
+									foreach ($statuses as $status => $label) {
109
+										echo '<option value="'.$status.'">'.$label.'</option>';
110 110
 									}
111 111
 									?>
112 112
 								</select>
113 113
 								<?php
114
-								if ( give_is_setting_enabled( give_get_option( 'categories' ) ) ) {
114
+								if (give_is_setting_enabled(give_get_option('categories'))) {
115 115
 									echo Give()->html->category_dropdown(
116 116
 										'give_forms_categories[]',
117 117
 										0,
@@ -121,12 +121,12 @@  discard block
 block discarded – undo
121 121
 											'multiple'        => true,
122 122
 											'selected'        => array(),
123 123
 											'show_option_all' => false,
124
-											'placeholder'     => __( 'Choose one or more from categories', 'give' ),
124
+											'placeholder'     => __('Choose one or more from categories', 'give'),
125 125
 										)
126 126
 									);
127 127
 								}
128 128
 
129
-								if ( give_is_setting_enabled( give_get_option( 'tags' ) ) ) {
129
+								if (give_is_setting_enabled(give_get_option('tags'))) {
130 130
 									echo Give()->html->tags_dropdown(
131 131
 										'give_forms_tags[]',
132 132
 										0,
@@ -136,18 +136,18 @@  discard block
 block discarded – undo
136 136
 											'multiple'        => true,
137 137
 											'selected'        => array(),
138 138
 											'show_option_all' => false,
139
-											'placeholder'     => __( 'Choose one or more from tags', 'give' ),
139
+											'placeholder'     => __('Choose one or more from tags', 'give'),
140 140
 										)
141 141
 									);
142 142
 								}
143 143
 
144
-								wp_nonce_field( 'give_ajax_export', 'give_ajax_export' );
144
+								wp_nonce_field('give_ajax_export', 'give_ajax_export');
145 145
 								?>
146 146
 								<input type="hidden" name="give-export-class"
147 147
 								       value="Give_Batch_Payments_Export"/>
148 148
 								<span>
149 149
 									<input type="submit"
150
-									       value="<?php esc_attr_e( 'Generate CSV', 'give' ); ?>"
150
+									       value="<?php esc_attr_e('Generate CSV', 'give'); ?>"
151 151
 									       class="button-secondary"/>
152 152
 									<span class="spinner"></span>
153 153
 								</span>
@@ -157,9 +157,9 @@  discard block
 block discarded – undo
157 157
 					<tr class="alternate give-export-donors">
158 158
 						<td scope="row" class="row-title">
159 159
 							<h3>
160
-								<span><?php esc_html_e( 'Export Donors in CSV', 'give' ); ?></span>
160
+								<span><?php esc_html_e('Export Donors in CSV', 'give'); ?></span>
161 161
 							</h3>
162
-							<p><?php esc_html_e( 'Download an export of donors for all donation forms or only those who have given to a particular form.', 'give' ); ?></p>
162
+							<p><?php esc_html_e('Download an export of donors for all donation forms or only those who have given to a particular form.', 'give'); ?></p>
163 163
 						</td>
164 164
 						<td>
165 165
 							<form method="post" id="give_donor_export"
@@ -167,99 +167,99 @@  discard block
 block discarded – undo
167 167
 
168 168
 								<?php
169 169
 								// Start Date form field for donors
170
-								echo Give()->html->date_field( array(
170
+								echo Give()->html->date_field(array(
171 171
 									'id'          => 'give_donor_export_start_date',
172 172
 									'name'        => 'donor_export_start_date',
173
-									'placeholder' => esc_attr__( 'Start date', 'give' ),
174
-								) );
173
+									'placeholder' => esc_attr__('Start date', 'give'),
174
+								));
175 175
 
176 176
 								// End Date form field for donors
177
-								echo Give()->html->date_field( array(
177
+								echo Give()->html->date_field(array(
178 178
 									'id'          => 'give_donor_export_end_date',
179 179
 									'name'        => 'donor_export_end_date',
180
-									'placeholder' => esc_attr__( 'End date', 'give' ),
181
-								) );
180
+									'placeholder' => esc_attr__('End date', 'give'),
181
+								));
182 182
 
183 183
 								// Donation forms dropdown for donors export
184
-								echo Give()->html->forms_dropdown( array(
184
+								echo Give()->html->forms_dropdown(array(
185 185
 									'name'   => 'forms',
186 186
 									'id'     => 'give_donor_export_form',
187 187
 									'chosen' => true,
188
-								) );
188
+								));
189 189
 								?>
190 190
 
191 191
 								<input type="submit"
192
-								       value="<?php esc_attr_e( 'Generate CSV', 'give' ); ?>"
192
+								       value="<?php esc_attr_e('Generate CSV', 'give'); ?>"
193 193
 								       class="button-secondary"/>
194 194
 
195 195
 								<div id="export-donor-options-wrap"
196 196
 								     class="give-clearfix">
197
-									<p><?php esc_html_e( 'Export Columns:', 'give' ); ?></p>
197
+									<p><?php esc_html_e('Export Columns:', 'give'); ?></p>
198 198
 									<ul id="give-export-option-ul">
199 199
 										<li>
200 200
 											<label for="give-export-fullname">
201 201
 												<input type="checkbox" checked
202 202
 												       name="give_export_option[full_name]"
203
-												       id="give-export-fullname"><?php esc_html_e( 'Name', 'give' ); ?>
203
+												       id="give-export-fullname"><?php esc_html_e('Name', 'give'); ?>
204 204
 											</label>
205 205
 										</li>
206 206
 										<li>
207 207
 											<label for="give-export-email">
208 208
 												<input type="checkbox" checked
209 209
 												       name="give_export_option[email]"
210
-												       id="give-export-email"><?php esc_html_e( 'Email', 'give' ); ?>
210
+												       id="give-export-email"><?php esc_html_e('Email', 'give'); ?>
211 211
 											</label>
212 212
 										</li>
213 213
 										<li>
214 214
 											<label for="give-export-address">
215 215
 												<input type="checkbox" checked
216 216
 												       name="give_export_option[address]"
217
-												       id="give-export-address"><?php esc_html_e( 'Address', 'give' ); ?>
217
+												       id="give-export-address"><?php esc_html_e('Address', 'give'); ?>
218 218
 											</label>
219 219
 										</li>
220 220
 										<li>
221 221
 											<label for="give-export-userid">
222 222
 												<input type="checkbox" checked
223 223
 												       name="give_export_option[userid]"
224
-												       id="give-export-userid"><?php esc_html_e( 'User ID', 'give' ); ?>
224
+												       id="give-export-userid"><?php esc_html_e('User ID', 'give'); ?>
225 225
 											</label>
226 226
 										</li>
227 227
 										<li>
228 228
 											<label for="give-export-donation-form">
229 229
 												<input type="checkbox" checked
230 230
 												       name="give_export_option[donation_form]"
231
-												       id="give-export-donation-form"><?php esc_html_e( 'Donation Form', 'give' ); ?>
231
+												       id="give-export-donation-form"><?php esc_html_e('Donation Form', 'give'); ?>
232 232
 											</label>
233 233
 										</li>
234 234
 										<li>
235 235
 											<label for="give-export-first-donation-date">
236 236
 												<input type="checkbox" checked
237 237
 												       name="give_export_option[date_first_donated]"
238
-												       id="give-export-first-donation-date"><?php esc_html_e( 'First Donation Date', 'give' ); ?>
238
+												       id="give-export-first-donation-date"><?php esc_html_e('First Donation Date', 'give'); ?>
239 239
 											</label>
240 240
 										</li>
241 241
 										<li>
242 242
 											<label for="give-export-donation-number">
243 243
 												<input type="checkbox" checked
244 244
 												       name="give_export_option[donations]"
245
-												       id="give-export-donation-number"><?php esc_html_e( 'Number of Donations', 'give' ); ?>
245
+												       id="give-export-donation-number"><?php esc_html_e('Number of Donations', 'give'); ?>
246 246
 											</label>
247 247
 										</li>
248 248
 										<li>
249 249
 											<label for="give-export-donation-sum">
250 250
 												<input type="checkbox" checked
251 251
 												       name="give_export_option[donation_sum]"
252
-												       id="give-export-donation-sum"><?php esc_html_e( 'Total Donated', 'give' ); ?>
252
+												       id="give-export-donation-sum"><?php esc_html_e('Total Donated', 'give'); ?>
253 253
 											</label>
254 254
 										</li>
255 255
 									</ul>
256 256
 								</div>
257
-								<?php wp_nonce_field( 'give_ajax_export', 'give_ajax_export' ); ?>
257
+								<?php wp_nonce_field('give_ajax_export', 'give_ajax_export'); ?>
258 258
 								<input type="hidden" name="give-export-class"
259 259
 								       value="Give_Batch_Donors_Export"/>
260 260
 								<input type="hidden"
261 261
 								       name="give_export_option[query_id]"
262
-								       value="<?php echo uniqid( 'give_' ); ?>"/>
262
+								       value="<?php echo uniqid('give_'); ?>"/>
263 263
 							</form>
264 264
 						</td>
265 265
 					</tr>
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
 					 *
273 273
 					 * @since 1.0
274 274
 					 */
275
-					do_action( 'give_tools_tab_export_table_bottom' );
275
+					do_action('give_tools_tab_export_table_bottom');
276 276
 					?>
277 277
 					</tbody>
278 278
 				</table>
@@ -283,7 +283,7 @@  discard block
 block discarded – undo
283 283
 				 *
284 284
 				 * @since 1.0
285 285
 				 */
286
-				do_action( 'give_tools_tab_export_content_bottom' );
286
+				do_action('give_tools_tab_export_content_bottom');
287 287
 				?>
288 288
 
289 289
 			</div>
Please login to merge, or discard this patch.
includes/admin/admin-actions.php 1 patch
Spacing   +117 added lines, -118 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,19 +20,19 @@  discard block
 block discarded – undo
20 20
  * @since 1.8
21 21
  */
22 22
 function give_load_wp_editor() {
23
-	if ( ! isset( $_POST['wp_editor'] ) ) {
23
+	if ( ! isset($_POST['wp_editor'])) {
24 24
 		die();
25 25
 	}
26 26
 
27
-	$wp_editor                     = json_decode( base64_decode( $_POST['wp_editor'] ), true );
27
+	$wp_editor                     = json_decode(base64_decode($_POST['wp_editor']), true);
28 28
 	$wp_editor[2]['textarea_name'] = $_POST['textarea_name'];
29 29
 
30
-	wp_editor( $wp_editor[0], $_POST['wp_editor_id'], $wp_editor[2] );
30
+	wp_editor($wp_editor[0], $_POST['wp_editor_id'], $wp_editor[2]);
31 31
 
32 32
 	die();
33 33
 }
34 34
 
35
-add_action( 'wp_ajax_give_load_wp_editor', 'give_load_wp_editor' );
35
+add_action('wp_ajax_give_load_wp_editor', 'give_load_wp_editor');
36 36
 
37 37
 
38 38
 /**
@@ -51,13 +51,13 @@  discard block
 block discarded – undo
51 51
 	);
52 52
 
53 53
 	// Get current page.
54
-	$current_page = isset( $_GET['page'] ) ? esc_attr( $_GET['page'] ) : '';
54
+	$current_page = isset($_GET['page']) ? esc_attr($_GET['page']) : '';
55 55
 
56 56
 	// Bailout.
57 57
 	if (
58
-		empty( $current_page )
59
-		|| empty( $_GET['_wp_http_referer'] )
60
-		|| ! in_array( $current_page, $give_pages )
58
+		empty($current_page)
59
+		|| empty($_GET['_wp_http_referer'])
60
+		|| ! in_array($current_page, $give_pages)
61 61
 	) {
62 62
 		return false;
63 63
 	}
@@ -67,21 +67,21 @@  discard block
 block discarded – undo
67 67
 	 *
68 68
 	 * @since 1.8
69 69
 	 */
70
-	$redirect = apply_filters( "give_validate_{$current_page}", true );
70
+	$redirect = apply_filters("give_validate_{$current_page}", true);
71 71
 
72
-	if ( $redirect ) {
72
+	if ($redirect) {
73 73
 		// Redirect.
74 74
 		wp_redirect(
75 75
 			remove_query_arg(
76
-				array( '_wp_http_referer', '_wpnonce' ),
77
-				wp_unslash( $_SERVER['REQUEST_URI'] )
76
+				array('_wp_http_referer', '_wpnonce'),
77
+				wp_unslash($_SERVER['REQUEST_URI'])
78 78
 			)
79 79
 		);
80 80
 		exit;
81 81
 	}
82 82
 }
83 83
 
84
-add_action( 'admin_init', 'give_redirect_to_clean_url_admin_pages' );
84
+add_action('admin_init', 'give_redirect_to_clean_url_admin_pages');
85 85
 
86 86
 
87 87
 /**
@@ -95,25 +95,25 @@  discard block
 block discarded – undo
95 95
  */
96 96
 function give_hide_outdated_php_notice() {
97 97
 
98
-	if ( ! isset( $_POST['_give_hide_outdated_php_notices_shortly'] ) ) {
98
+	if ( ! isset($_POST['_give_hide_outdated_php_notices_shortly'])) {
99 99
 		give_die();
100 100
 	}
101 101
 
102 102
 	// Transient key name.
103 103
 	$transient_key = "_give_hide_outdated_php_notices_shortly";
104 104
 
105
-	if ( Give_Cache::get( $transient_key, true ) ) {
105
+	if (Give_Cache::get($transient_key, true)) {
106 106
 		return;
107 107
 	}
108 108
 
109 109
 	// Hide notice for 24 hours.
110
-	Give_Cache::set( $transient_key, true, DAY_IN_SECONDS, true );
110
+	Give_Cache::set($transient_key, true, DAY_IN_SECONDS, true);
111 111
 
112 112
 	give_die();
113 113
 
114 114
 }
115 115
 
116
-add_action( 'wp_ajax_give_hide_outdated_php_notice', 'give_hide_outdated_php_notice' );
116
+add_action('wp_ajax_give_hide_outdated_php_notice', 'give_hide_outdated_php_notice');
117 117
 
118 118
 /**
119 119
  * Register admin notices.
@@ -122,43 +122,43 @@  discard block
 block discarded – undo
122 122
  */
123 123
 function _give_register_admin_notices() {
124 124
 	// Bailout.
125
-	if( ! is_admin() ) {
125
+	if ( ! is_admin()) {
126 126
 		return;
127 127
 	}
128 128
 
129 129
 	// Add PHP version update notice
130
-	if ( function_exists( 'phpversion' ) && version_compare( GIVE_REQUIRED_PHP_VERSION, phpversion(), '>' ) ) {
130
+	if (function_exists('phpversion') && version_compare(GIVE_REQUIRED_PHP_VERSION, phpversion(), '>')) {
131 131
 
132
-		$notice_desc = '<p><strong>' . __( 'Your site could be faster and more secure with a newer PHP version.', 'give' ) . '</strong></p>';
133
-		$notice_desc .= '<p>' . __( 'Hey, we\'ve noticed that you\'re running an outdated version of PHP. PHP is the programming language that WordPress and Give are built on. The version that is currently used for your site is no longer supported. Newer versions of PHP are both faster and more secure. In fact, your version of PHP no longer receives security updates, which is why we\'re sending you this notice.', 'give' ) . '</p>';
134
-		$notice_desc .= '<p>' . __( 'Hosts have the ability to update your PHP version, but sometimes they don\'t dare to do that because they\'re afraid they\'ll break your site.', 'give' ) . '</p>';
135
-		$notice_desc .= '<p><strong>' . __( 'To which version should I update?', 'give' ) . '</strong></p>';
136
-		$notice_desc .= '<p>' .  __( 'You should update your PHP version to either 5.6 or to 7.0 or 7.1. On a normal WordPress site, switching to PHP 5.6 should never cause issues. We would however actually recommend you switch to PHP7. There are some plugins that are not ready for PHP7 though, so do some testing first. PHP7 is much faster than PHP 5.6. It\'s also the only PHP version still in active development and therefore the better option for your site in the long run.', 'give' ) . '</p>';
137
-		$notice_desc .= '<p><strong>' . __( 'Can\'t update? Ask your host!', 'give' ) . '</strong></p>';
138
-		$notice_desc .= '<p>' . sprintf( __( 'If you cannot upgrade your PHP version yourself, you can send an email to your host. If they don\'t want to upgrade your PHP version, we would suggest you switch hosts. Have a look at one of the recommended %1$sWordPress hosting partners%2$s.', 'give' ), sprintf( '<a href="%1$s" target="_blank">', esc_url( 'https://wordpress.org/hosting/' ) ), '</a>' ) . '</p>';
132
+		$notice_desc = '<p><strong>'.__('Your site could be faster and more secure with a newer PHP version.', 'give').'</strong></p>';
133
+		$notice_desc .= '<p>'.__('Hey, we\'ve noticed that you\'re running an outdated version of PHP. PHP is the programming language that WordPress and Give are built on. The version that is currently used for your site is no longer supported. Newer versions of PHP are both faster and more secure. In fact, your version of PHP no longer receives security updates, which is why we\'re sending you this notice.', 'give').'</p>';
134
+		$notice_desc .= '<p>'.__('Hosts have the ability to update your PHP version, but sometimes they don\'t dare to do that because they\'re afraid they\'ll break your site.', 'give').'</p>';
135
+		$notice_desc .= '<p><strong>'.__('To which version should I update?', 'give').'</strong></p>';
136
+		$notice_desc .= '<p>'.__('You should update your PHP version to either 5.6 or to 7.0 or 7.1. On a normal WordPress site, switching to PHP 5.6 should never cause issues. We would however actually recommend you switch to PHP7. There are some plugins that are not ready for PHP7 though, so do some testing first. PHP7 is much faster than PHP 5.6. It\'s also the only PHP version still in active development and therefore the better option for your site in the long run.', 'give').'</p>';
137
+		$notice_desc .= '<p><strong>'.__('Can\'t update? Ask your host!', 'give').'</strong></p>';
138
+		$notice_desc .= '<p>'.sprintf(__('If you cannot upgrade your PHP version yourself, you can send an email to your host. If they don\'t want to upgrade your PHP version, we would suggest you switch hosts. Have a look at one of the recommended %1$sWordPress hosting partners%2$s.', 'give'), sprintf('<a href="%1$s" target="_blank">', esc_url('https://wordpress.org/hosting/')), '</a>').'</p>';
139 139
 
140
-		Give()->notices->register_notice( array(
140
+		Give()->notices->register_notice(array(
141 141
 			'id'          => 'give-invalid-php-version',
142 142
 			'type'        => 'error',
143 143
 			'description' => $notice_desc,
144 144
 			'dismissible_type' => 'user',
145 145
 			'dismiss_interval' => 'shortly',
146
-		) );
146
+		));
147 147
 	}
148 148
 
149 149
 	// Add payment bulk notice.
150 150
 	if (
151
-		current_user_can( 'edit_give_payments' )
152
-		&& isset( $_GET['action'] )
153
-		&& ! empty( $_GET['action'] )
154
-		&& isset( $_GET['payment'] )
155
-		&& ! empty( $_GET['payment'] )
151
+		current_user_can('edit_give_payments')
152
+		&& isset($_GET['action'])
153
+		&& ! empty($_GET['action'])
154
+		&& isset($_GET['payment'])
155
+		&& ! empty($_GET['payment'])
156 156
 	) {
157
-		$payment_count = isset( $_GET['payment'] ) ? count( $_GET['payment'] ) : 0;
157
+		$payment_count = isset($_GET['payment']) ? count($_GET['payment']) : 0;
158 158
 
159
-		switch ( $_GET['action'] ) {
159
+		switch ($_GET['action']) {
160 160
 			case 'delete':
161
-				Give()->notices->register_notice( array(
161
+				Give()->notices->register_notice(array(
162 162
 					'id'          => 'bulk_action_delete',
163 163
 					'type'        => 'updated',
164 164
 					'description' => sprintf(
@@ -170,12 +170,12 @@  discard block
 block discarded – undo
170 170
 						),
171 171
 						$payment_count ),
172 172
 					'show'        => true,
173
-				) );
173
+				));
174 174
 
175 175
 				break;
176 176
 
177 177
 			case 'resend-receipt':
178
-				Give()->notices->register_notice( array(
178
+				Give()->notices->register_notice(array(
179 179
 					'id'          => 'bulk_action_resend_receipt',
180 180
 					'type'        => 'updated',
181 181
 					'description' => sprintf(
@@ -188,196 +188,196 @@  discard block
 block discarded – undo
188 188
 						$payment_count
189 189
 					),
190 190
 					'show'        => true,
191
-				) );
191
+				));
192 192
 				break;
193 193
 		}
194 194
 	}
195 195
 
196 196
 	// Add give message notices.
197
-	if ( ! empty( $_GET['give-message'] ) ) {
197
+	if ( ! empty($_GET['give-message'])) {
198 198
 		// Donation reports errors.
199
-		if ( current_user_can( 'view_give_reports' ) ) {
200
-			switch ( $_GET['give-message'] ) {
199
+		if (current_user_can('view_give_reports')) {
200
+			switch ($_GET['give-message']) {
201 201
 				case 'donation_deleted' :
202
-					Give()->notices->register_notice( array(
202
+					Give()->notices->register_notice(array(
203 203
 						'id'          => 'give-donation-deleted',
204 204
 						'type'        => 'updated',
205
-						'description' => __( 'The donation has been deleted.', 'give' ),
205
+						'description' => __('The donation has been deleted.', 'give'),
206 206
 						'show'        => true,
207
-					) );
207
+					));
208 208
 					break;
209 209
 				case 'email_sent' :
210
-					Give()->notices->register_notice( array(
210
+					Give()->notices->register_notice(array(
211 211
 						'id'          => 'give-payment-sent',
212 212
 						'type'        => 'updated',
213
-						'description' => __( 'The donation receipt has been resent.', 'give' ),
213
+						'description' => __('The donation receipt has been resent.', 'give'),
214 214
 						'show'        => true,
215
-					) );
215
+					));
216 216
 					break;
217 217
 				case 'refreshed-reports' :
218
-					Give()->notices->register_notice( array(
218
+					Give()->notices->register_notice(array(
219 219
 						'id'          => 'give-refreshed-reports',
220 220
 						'type'        => 'updated',
221
-						'description' => __( 'The reports cache has been cleared.', 'give' ),
221
+						'description' => __('The reports cache has been cleared.', 'give'),
222 222
 						'show'        => true,
223
-					) );
223
+					));
224 224
 					break;
225 225
 				case 'donation-note-deleted' :
226
-					Give()->notices->register_notice( array(
226
+					Give()->notices->register_notice(array(
227 227
 						'id'          => 'give-donation-note-deleted',
228 228
 						'type'        => 'updated',
229
-						'description' => __( 'The donation note has been deleted.', 'give' ),
229
+						'description' => __('The donation note has been deleted.', 'give'),
230 230
 						'show'        => true,
231
-					) );
231
+					));
232 232
 					break;
233 233
 			}
234 234
 		}
235 235
 
236 236
 		// Give settings notices and errors.
237
-		if ( current_user_can( 'manage_give_settings' ) ) {
238
-			switch ( $_GET['give-message'] ) {
237
+		if (current_user_can('manage_give_settings')) {
238
+			switch ($_GET['give-message']) {
239 239
 				case 'settings-imported' :
240
-					Give()->notices->register_notice( array(
240
+					Give()->notices->register_notice(array(
241 241
 						'id'          => 'give-settings-imported',
242 242
 						'type'        => 'updated',
243
-						'description' => __( 'The settings have been imported.', 'give' ),
243
+						'description' => __('The settings have been imported.', 'give'),
244 244
 						'show'        => true,
245
-					) );
245
+					));
246 246
 					break;
247 247
 				case 'api-key-generated' :
248
-					Give()->notices->register_notice( array(
248
+					Give()->notices->register_notice(array(
249 249
 						'id'          => 'give-api-key-generated',
250 250
 						'type'        => 'updated',
251
-						'description' => __( 'API keys have been generated.', 'give' ),
251
+						'description' => __('API keys have been generated.', 'give'),
252 252
 						'show'        => true,
253
-					) );
253
+					));
254 254
 					break;
255 255
 				case 'api-key-exists' :
256
-					Give()->notices->register_notice( array(
256
+					Give()->notices->register_notice(array(
257 257
 						'id'          => 'give-api-key-exists',
258 258
 						'type'        => 'updated',
259
-						'description' => __( 'The specified user already has API keys.', 'give' ),
259
+						'description' => __('The specified user already has API keys.', 'give'),
260 260
 						'show'        => true,
261
-					) );
261
+					));
262 262
 					break;
263 263
 				case 'api-key-regenerated' :
264
-					Give()->notices->register_notice( array(
264
+					Give()->notices->register_notice(array(
265 265
 						'id'          => 'give-api-key-regenerated',
266 266
 						'type'        => 'updated',
267
-						'description' => __( 'API keys have been regenerated.', 'give' ),
267
+						'description' => __('API keys have been regenerated.', 'give'),
268 268
 						'show'        => true,
269
-					) );
269
+					));
270 270
 					break;
271 271
 				case 'api-key-revoked' :
272
-					Give()->notices->register_notice( array(
272
+					Give()->notices->register_notice(array(
273 273
 						'id'          => 'give-api-key-revoked',
274 274
 						'type'        => 'updated',
275
-						'description' => __( 'API keys have been revoked.', 'give' ),
275
+						'description' => __('API keys have been revoked.', 'give'),
276 276
 						'show'        => true,
277
-					) );
277
+					));
278 278
 					break;
279 279
 				case 'sent-test-email' :
280
-					Give()->notices->register_notice( array(
280
+					Give()->notices->register_notice(array(
281 281
 						'id'          => 'give-sent-test-email',
282 282
 						'type'        => 'updated',
283
-						'description' => __( 'The test email has been sent.', 'give' ),
283
+						'description' => __('The test email has been sent.', 'give'),
284 284
 						'show'        => true,
285
-					) );
285
+					));
286 286
 					break;
287 287
 				case 'matched-success-failure-page':
288
-					Give()->notices->register_notice( array(
288
+					Give()->notices->register_notice(array(
289 289
 						'id'          => 'give-matched-success-failure-page',
290 290
 						'type'        => 'updated',
291
-						'description' => __( 'You cannot set the success and failed pages to the same page', 'give' ),
291
+						'description' => __('You cannot set the success and failed pages to the same page', 'give'),
292 292
 						'show'        => true,
293
-					) );
293
+					));
294 294
 					break;
295 295
 			}
296 296
 		}
297 297
 		// Payments errors.
298
-		if ( current_user_can( 'edit_give_payments' ) ) {
299
-			switch ( $_GET['give-message'] ) {
298
+		if (current_user_can('edit_give_payments')) {
299
+			switch ($_GET['give-message']) {
300 300
 				case 'note-added' :
301
-					Give()->notices->register_notice( array(
301
+					Give()->notices->register_notice(array(
302 302
 						'id'          => 'give-note-added',
303 303
 						'type'        => 'updated',
304
-						'description' => __( 'The donation note has been added.', 'give' ),
304
+						'description' => __('The donation note has been added.', 'give'),
305 305
 						'show'        => true,
306
-					) );
306
+					));
307 307
 					break;
308 308
 				case 'payment-updated' :
309
-					Give()->notices->register_notice( array(
309
+					Give()->notices->register_notice(array(
310 310
 						'id'          => 'give-payment-updated',
311 311
 						'type'        => 'updated',
312
-						'description' => __( 'The donation has been updated.', 'give' ),
312
+						'description' => __('The donation has been updated.', 'give'),
313 313
 						'show'        => true,
314
-					) );
314
+					));
315 315
 					break;
316 316
 			}
317 317
 		}
318 318
 
319 319
 		// Donor Notices.
320
-		if ( current_user_can( 'edit_give_payments' ) ) {
321
-			switch ( $_GET['give-message'] ) {
320
+		if (current_user_can('edit_give_payments')) {
321
+			switch ($_GET['give-message']) {
322 322
 				case 'donor-deleted' :
323
-					Give()->notices->register_notice( array(
323
+					Give()->notices->register_notice(array(
324 324
 						'id'          => 'give-donor-deleted',
325 325
 						'type'        => 'updated',
326
-						'description' => __( 'The donor has been deleted.', 'give' ),
326
+						'description' => __('The donor has been deleted.', 'give'),
327 327
 						'show'        => true,
328
-					) );
328
+					));
329 329
 					break;
330 330
 
331 331
 				case 'email-added' :
332
-					Give()->notices->register_notice( array(
332
+					Give()->notices->register_notice(array(
333 333
 						'id'          => 'give-donor-email-added',
334 334
 						'type'        => 'updated',
335
-						'description' => __( 'Donor email added.', 'give' ),
335
+						'description' => __('Donor email added.', 'give'),
336 336
 						'show'        => true,
337
-					) );
337
+					));
338 338
 					break;
339 339
 
340 340
 				case 'email-removed' :
341
-					Give()->notices->register_notice( array(
341
+					Give()->notices->register_notice(array(
342 342
 						'id'          => 'give-donor-email-removed',
343 343
 						'type'        => 'updated',
344
-						'description' => __( 'Donor email removed.', 'give' ),
344
+						'description' => __('Donor email removed.', 'give'),
345 345
 						'show'        => true,
346
-					) );
346
+					));
347 347
 					break;
348 348
 
349 349
 				case 'email-remove-failed' :
350
-					Give()->notices->register_notice( array(
350
+					Give()->notices->register_notice(array(
351 351
 						'id'          => 'give-donor-email-remove-failed',
352 352
 						'type'        => 'updated',
353
-						'description' => __( 'Failed to remove donor email.', 'give' ),
353
+						'description' => __('Failed to remove donor email.', 'give'),
354 354
 						'show'        => true,
355
-					) );
355
+					));
356 356
 					break;
357 357
 
358 358
 				case 'primary-email-updated' :
359
-					Give()->notices->register_notice( array(
359
+					Give()->notices->register_notice(array(
360 360
 						'id'          => 'give-donor-primary-email-updated',
361 361
 						'type'        => 'updated',
362
-						'description' => __( 'Primary email updated for donor.', 'give' ),
362
+						'description' => __('Primary email updated for donor.', 'give'),
363 363
 						'show'        => true,
364
-					) );
364
+					));
365 365
 					break;
366 366
 
367 367
 				case 'primary-email-failed' :
368
-					Give()->notices->register_notice( array(
368
+					Give()->notices->register_notice(array(
369 369
 						'id'          => 'give-donor-primary-email-failed',
370 370
 						'type'        => 'updated',
371
-						'description' => __( 'Failed to set primary email.', 'give' ),
371
+						'description' => __('Failed to set primary email.', 'give'),
372 372
 						'show'        => true,
373
-					) );
373
+					));
374 374
 					break;
375 375
 			}
376 376
 		}
377 377
 	}
378 378
 }
379 379
 
380
-add_action( 'admin_notices', '_give_register_admin_notices', - 1 );
380
+add_action('admin_notices', '_give_register_admin_notices', - 1);
381 381
 
382 382
 
383 383
 /**
@@ -387,27 +387,26 @@  discard block
 block discarded – undo
387 387
  *
388 388
  * @return bool
389 389
  */
390
-function _give_show_test_mode_notice_in_admin_bar( $wp_admin_bar ) {
391
-	$is_test_mode = ! empty( $_POST['test_mode'] ) ?
392
-		give_is_setting_enabled( $_POST['test_mode'] ) :
393
-		give_is_test_mode();
390
+function _give_show_test_mode_notice_in_admin_bar($wp_admin_bar) {
391
+	$is_test_mode = ! empty($_POST['test_mode']) ?
392
+		give_is_setting_enabled($_POST['test_mode']) : give_is_test_mode();
394 393
 
395 394
 	if (
396
-		! current_user_can( 'view_give_reports' ) ||
395
+		! current_user_can('view_give_reports') ||
397 396
 		! $is_test_mode
398 397
 	) {
399 398
 		return false;
400 399
 	}
401 400
 
402 401
 	// Add the main siteadmin menu item.
403
-	$wp_admin_bar->add_menu( array(
402
+	$wp_admin_bar->add_menu(array(
404 403
 		'id'     => 'give-test-notice',
405
-		'href'   => admin_url( 'edit.php?post_type=give_forms&page=give-settings&tab=gateways' ),
404
+		'href'   => admin_url('edit.php?post_type=give_forms&page=give-settings&tab=gateways'),
406 405
 		'parent' => 'top-secondary',
407
-		'title'  => esc_html__( 'Give Test Mode Active', 'give' ),
408
-		'meta'   => array( 'class' => 'give-test-mode-active' ),
409
-	) );
406
+		'title'  => esc_html__('Give Test Mode Active', 'give'),
407
+		'meta'   => array('class' => 'give-test-mode-active'),
408
+	));
410 409
 
411 410
 	return true;
412 411
 }
413
-add_action( 'admin_bar_menu', '_give_show_test_mode_notice_in_admin_bar', 1000, 1 );
414 412
\ No newline at end of file
413
+add_action('admin_bar_menu', '_give_show_test_mode_notice_in_admin_bar', 1000, 1);
415 414
\ No newline at end of file
Please login to merge, or discard this patch.
includes/admin/payments/view-payment-details.php 3 patches
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -514,16 +514,16 @@
 block discarded – undo
514 514
 											<p>
515 515
 												<strong><?php esc_html_e( 'Donor Name:', 'give' ); ?></strong><br>
516 516
 												<?php
517
-                                                $donor_billing_name = give_get_donor_name_by( $payment_id, 'donation' );
518
-                                                $donor_name = give_get_donor_name_by( $donor_id, 'donor' );
519
-
520
-                                                // Check whether the donor name and WP_User name is same or not.
521
-                                                if( sanitize_title( $donor_billing_name ) != sanitize_title( $donor_name ) ){
522
-                                                    echo $donor_billing_name . ' (<a href="' . esc_url( admin_url( "edit.php?post_type=give_forms&page=give-donors&view=overview&id=$donor_id" ) ) . '">' . $donor_name . '</a>)';
523
-                                                }else{
524
-                                                    echo $donor_name;
525
-                                                }
526
-                                                ?>
517
+												$donor_billing_name = give_get_donor_name_by( $payment_id, 'donation' );
518
+												$donor_name = give_get_donor_name_by( $donor_id, 'donor' );
519
+
520
+												// Check whether the donor name and WP_User name is same or not.
521
+												if( sanitize_title( $donor_billing_name ) != sanitize_title( $donor_name ) ){
522
+													echo $donor_billing_name . ' (<a href="' . esc_url( admin_url( "edit.php?post_type=give_forms&page=give-donors&view=overview&id=$donor_id" ) ) . '">' . $donor_name . '</a>)';
523
+												}else{
524
+													echo $donor_name;
525
+												}
526
+												?>
527 527
 											</p>
528 528
 											<p>
529 529
 												<strong><?php esc_html_e( 'Donor Email:', 'give' ); ?></strong><br>
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -520,7 +520,7 @@
 block discarded – undo
520 520
                                                 // Check whether the donor name and WP_User name is same or not.
521 521
                                                 if( sanitize_title( $donor_billing_name ) != sanitize_title( $donor_name ) ){
522 522
                                                     echo $donor_billing_name . ' (<a href="' . esc_url( admin_url( "edit.php?post_type=give_forms&page=give-donors&view=overview&id=$donor_id" ) ) . '">' . $donor_name . '</a>)';
523
-                                                }else{
523
+                                                } else{
524 524
                                                     echo $donor_name;
525 525
                                                 }
526 526
                                                 ?>
Please login to merge, or discard this patch.
Spacing   +143 added lines, -143 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( esc_html__( 'Donation ID not supplied. Please try again.', 'give' ), esc_html__( 'Error', 'give' ), array( 'response' => 400 ) );
23
+if ( ! isset($_GET['id']) || ! is_numeric($_GET['id'])) {
24
+	wp_die(esc_html__('Donation ID not supplied. Please try again.', 'give'), esc_html__('Error', 'give'), array('response' => 400));
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 donation ID is invalid
32 32
 $payment_exists = $payment->ID;
33
-if ( empty( $payment_exists ) ) {
34
-	wp_die( esc_html__( 'The specified ID does not belong to a donation. Please try again.', 'give' ), esc_html__( 'Error', 'give' ), array( 'response' => 400 ) );
33
+if (empty($payment_exists)) {
34
+	wp_die(esc_html__('The specified ID does not belong to a donation. Please try again.', 'give'), esc_html__('Error', 'give'), array('response' => 400));
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
 $donor_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
 $currency_code  = $payment->currency;
46 46
 $gateway        = $payment->gateway;
@@ -52,11 +52,11 @@  discard block
 block discarded – undo
52 52
 	<h1 id="transaction-details-heading"><?php
53 53
 		printf(
54 54
 			/* translators: %s: donation number */
55
-			esc_html__( 'Donation %s', 'give' ),
55
+			esc_html__('Donation %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="' . esc_attr__( 'This donation was made in test mode.', 'give' ) . '" data-tooltip-my-position="center left" data-tooltip-target-position="center right">' . esc_html__( 'Test Donation', 'give' ) . '</span>';
58
+		if ($payment_mode == 'test') {
59
+			echo '<span id="test-payment-label" class="give-item-label give-item-label-orange" data-tooltip="'.esc_attr__('This donation was made in test mode.', 'give').'" data-tooltip-my-position="center left" data-tooltip-target-position="center right">'.esc_html__('Test Donation', 'give').'</span>';
60 60
 		}
61 61
 		?></h1>
62 62
 
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 	 *
69 69
 	 * @param int $payment_id Payment id.
70 70
 	 */
71
-	do_action( 'give_view_order_details_before', $payment_id );
71
+	do_action('give_view_order_details_before', $payment_id);
72 72
 	?>
73 73
 	<form id="give-edit-order-form" method="post">
74 74
 		<?php
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 		 *
80 80
 		 * @param int $payment_id Payment id.
81 81
 		 */
82
-		do_action( 'give_view_order_details_form_top', $payment_id );
82
+		do_action('give_view_order_details_form_top', $payment_id);
83 83
 		?>
84 84
 		<div id="poststuff">
85 85
 			<div id="give-dashboard-widgets-wrap">
@@ -95,12 +95,12 @@  discard block
 block discarded – undo
95 95
 							 *
96 96
 							 * @param int $payment_id Payment id.
97 97
 							 */
98
-							do_action( 'give_view_order_details_sidebar_before', $payment_id );
98
+							do_action('give_view_order_details_sidebar_before', $payment_id);
99 99
 							?>
100 100
 
101 101
 							<div id="give-order-update" class="postbox give-order-data">
102 102
 
103
-								<h3 class="hndle"><?php esc_html_e( 'Update Donation', 'give' ); ?></h3>
103
+								<h3 class="hndle"><?php esc_html_e('Update Donation', 'give'); ?></h3>
104 104
 
105 105
 								<div class="inside">
106 106
 									<div class="give-admin-box">
@@ -113,33 +113,33 @@  discard block
 block discarded – undo
113 113
 										 *
114 114
 										 * @param int $payment_id Payment id.
115 115
 										 */
116
-										do_action( 'give_view_order_details_totals_before', $payment_id );
116
+										do_action('give_view_order_details_totals_before', $payment_id);
117 117
 										?>
118 118
 
119 119
 										<div class="give-admin-box-inside">
120 120
 											<p>
121
-												<label for="give-payment-status" class="strong"><?php esc_html_e( 'Status:', 'give' ); ?></label>&nbsp;
121
+												<label for="give-payment-status" class="strong"><?php esc_html_e('Status:', 'give'); ?></label>&nbsp;
122 122
 												<select id="give-payment-status" name="give-payment-status" class="medium-text">
123
-													<?php foreach ( give_get_payment_statuses() as $key => $status ) : ?>
124
-														<option value="<?php echo esc_attr( $key ); ?>"<?php selected( $payment->status, $key, true ); ?>><?php echo esc_html( $status ); ?></option>
123
+													<?php foreach (give_get_payment_statuses() as $key => $status) : ?>
124
+														<option value="<?php echo esc_attr($key); ?>"<?php selected($payment->status, $key, true); ?>><?php echo esc_html($status); ?></option>
125 125
 													<?php endforeach; ?>
126 126
 												</select>
127
-												<span class="give-donation-status status-<?php echo sanitize_title( $payment->status ); ?>"><span class="give-donation-status-icon"></span></span>
127
+												<span class="give-donation-status status-<?php echo sanitize_title($payment->status); ?>"><span class="give-donation-status-icon"></span></span>
128 128
 											</p>
129 129
 										</div>
130 130
 
131 131
 										<div class="give-admin-box-inside">
132 132
 											<p>
133
-												<label for="give-payment-date" class="strong"><?php esc_html_e( 'Date:', 'give' ); ?></label>&nbsp;
134
-												<input type="text" id="give-payment-date" name="give-payment-date" value="<?php echo esc_attr( date( 'm/d/Y', $payment_date ) ); ?>" class="medium-text give_datepicker"/>
133
+												<label for="give-payment-date" class="strong"><?php esc_html_e('Date:', 'give'); ?></label>&nbsp;
134
+												<input type="text" id="give-payment-date" name="give-payment-date" value="<?php echo esc_attr(date('m/d/Y', $payment_date)); ?>" class="medium-text give_datepicker"/>
135 135
 											</p>
136 136
 										</div>
137 137
 
138 138
 										<div class="give-admin-box-inside">
139 139
 											<p>
140
-												<label for="give-payment-time-hour" class="strong"><?php esc_html_e( 'Time:', 'give' ); ?></label>&nbsp;
141
-												<input type="number" step="1" max="24" id="give-payment-time-hour" name="give-payment-time-hour" value="<?php echo esc_attr( date_i18n( 'H', $payment_date ) ); ?>" class="small-text give-payment-time-hour"/>&nbsp;:&nbsp;
142
-												<input type="number" step="1" max="59" id="give-payment-time-min" name="give-payment-time-min" value="<?php echo esc_attr( date( 'i', $payment_date ) ); ?>" class="small-text give-payment-time-min"/>
140
+												<label for="give-payment-time-hour" class="strong"><?php esc_html_e('Time:', 'give'); ?></label>&nbsp;
141
+												<input type="number" step="1" max="24" id="give-payment-time-hour" name="give-payment-time-hour" value="<?php echo esc_attr(date_i18n('H', $payment_date)); ?>" class="small-text give-payment-time-hour"/>&nbsp;:&nbsp;
142
+												<input type="number" step="1" max="59" id="give-payment-time-min" name="give-payment-time-min" value="<?php echo esc_attr(date('i', $payment_date)); ?>" class="small-text give-payment-time-min"/>
143 143
 											</p>
144 144
 										</div>
145 145
 
@@ -153,13 +153,13 @@  discard block
 block discarded – undo
153 153
 										 *
154 154
 										 * @param int $payment_id Payment id.
155 155
 										 */
156
-										do_action( 'give_view_order_details_update_inner', $payment_id ); ?>
156
+										do_action('give_view_order_details_update_inner', $payment_id); ?>
157 157
 
158 158
 										<div class="give-order-payment give-admin-box-inside">
159 159
 											<p>
160
-												<label for="give-payment-total" class="strong"><?php esc_html_e( 'Total Donation:', 'give' ); ?></label>&nbsp;
161
-												<?php echo give_currency_symbol( $payment->currency ); ?>
162
-												&nbsp;<input id="give-payment-total" 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 ), false, false ) ); ?>"/>
160
+												<label for="give-payment-total" class="strong"><?php esc_html_e('Total Donation:', 'give'); ?></label>&nbsp;
161
+												<?php echo give_currency_symbol($payment->currency); ?>
162
+												&nbsp;<input id="give-payment-total" 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), false, false)); ?>"/>
163 163
 											</p>
164 164
 										</div>
165 165
 
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
 										 *
172 172
 										 * @param int $payment_id Payment id.
173 173
 										 */
174
-										do_action( 'give_view_order_details_totals_after', $payment_id );
174
+										do_action('give_view_order_details_totals_after', $payment_id);
175 175
 										?>
176 176
 
177 177
 									</div>
@@ -189,17 +189,17 @@  discard block
 block discarded – undo
189 189
 									 *
190 190
 									 * @param int $payment_id Payment id.
191 191
 									 */
192
-									do_action( 'give_view_order_details_update_before', $payment_id );
192
+									do_action('give_view_order_details_update_before', $payment_id);
193 193
 									?>
194 194
 
195 195
 									<div id="major-publishing-actions">
196 196
 										<div id="publishing-action">
197
-											<input type="submit" class="button button-primary right" value="<?php esc_attr_e( 'Save Donation', 'give' ); ?>"/>
198
-											<?php if ( give_is_payment_complete( $payment_id ) ) : ?>
199
-												<a href="<?php echo esc_url( add_query_arg( array(
197
+											<input type="submit" class="button button-primary right" value="<?php esc_attr_e('Save Donation', 'give'); ?>"/>
198
+											<?php if (give_is_payment_complete($payment_id)) : ?>
199
+												<a href="<?php echo esc_url(add_query_arg(array(
200 200
 													'give-action' => 'email_links',
201 201
 													'purchase_id' => $payment_id,
202
-												) ) ); ?>" id="give-resend-receipt" class="button-secondary right"><?php esc_html_e( 'Resend Receipt', 'give' ); ?></a>
202
+												))); ?>" id="give-resend-receipt" class="button-secondary right"><?php esc_html_e('Resend Receipt', 'give'); ?></a>
203 203
 											<?php endif; ?>
204 204
 										</div>
205 205
 										<div class="clear"></div>
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
 									 *
214 214
 									 * @param int $payment_id Payment id.
215 215
 									 */
216
-									do_action( 'give_view_order_details_update_after', $payment_id );
216
+									do_action('give_view_order_details_update_after', $payment_id);
217 217
 									?>
218 218
 
219 219
 								</div>
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
 
225 225
 							<div id="give-order-details" class="postbox give-order-data">
226 226
 
227
-								<h3 class="hndle"><?php esc_html_e( 'Donation Meta', 'give' ); ?></h3>
227
+								<h3 class="hndle"><?php esc_html_e('Donation Meta', 'give'); ?></h3>
228 228
 
229 229
 								<div class="inside">
230 230
 									<div class="give-admin-box">
@@ -237,44 +237,44 @@  discard block
 block discarded – undo
237 237
 										 *
238 238
 										 * @param int $payment_id Payment id.
239 239
 										 */
240
-										do_action( 'give_view_order_details_payment_meta_before', $payment_id );
240
+										do_action('give_view_order_details_payment_meta_before', $payment_id);
241 241
 
242
-										$gateway = give_get_payment_gateway( $payment_id );
243
-										if ( $gateway ) : ?>
242
+										$gateway = give_get_payment_gateway($payment_id);
243
+										if ($gateway) : ?>
244 244
 											<div class="give-order-gateway give-admin-box-inside">
245 245
 												<p>
246
-													<strong><?php esc_html_e( 'Gateway:', 'give' ); ?></strong>&nbsp;
247
-													<?php echo give_get_gateway_admin_label( $gateway ); ?>
246
+													<strong><?php esc_html_e('Gateway:', 'give'); ?></strong>&nbsp;
247
+													<?php echo give_get_gateway_admin_label($gateway); ?>
248 248
 												</p>
249 249
 											</div>
250 250
 										<?php endif; ?>
251 251
 
252 252
 										<div class="give-order-payment-key give-admin-box-inside">
253 253
 											<p>
254
-												<strong><?php esc_html_e( 'Key:', 'give' ); ?></strong>&nbsp;
255
-												<?php echo give_get_payment_key( $payment_id ); ?>
254
+												<strong><?php esc_html_e('Key:', 'give'); ?></strong>&nbsp;
255
+												<?php echo give_get_payment_key($payment_id); ?>
256 256
 											</p>
257 257
 										</div>
258 258
 
259 259
 										<div class="give-order-ip give-admin-box-inside">
260 260
 											<p>
261
-												<strong><?php esc_html_e( 'IP:', 'give' ); ?></strong>&nbsp;
262
-												<?php echo esc_html( give_get_payment_user_ip( $payment_id ) ); ?>
261
+												<strong><?php esc_html_e('IP:', 'give'); ?></strong>&nbsp;
262
+												<?php echo esc_html(give_get_payment_user_ip($payment_id)); ?>
263 263
 											</p>
264 264
 										</div>
265 265
 
266
-										<?php if ( $transaction_id ) : ?>
266
+										<?php if ($transaction_id) : ?>
267 267
 											<div class="give-order-tx-id give-admin-box-inside">
268 268
 												<p>
269
-													<strong><?php esc_html_e( 'Donation ID:', 'give' ); ?></strong>&nbsp;
270
-													<?php echo apply_filters( "give_payment_details_transaction_id-{$gateway}", $transaction_id, $payment_id ); ?>
269
+													<strong><?php esc_html_e('Donation ID:', 'give'); ?></strong>&nbsp;
270
+													<?php echo apply_filters("give_payment_details_transaction_id-{$gateway}", $transaction_id, $payment_id); ?>
271 271
 												</p>
272 272
 											</div>
273 273
 										<?php endif; ?>
274 274
 
275 275
 										<div class="give-admin-box-inside">
276
-											<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 ) ) ) ); ?>
277
-												<a href="<?php echo $purchase_url; ?>"><?php esc_html_e( 'View all donations for this donor &raquo;', 'give' ); ?></a>
276
+											<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)))); ?>
277
+												<a href="<?php echo $purchase_url; ?>"><?php esc_html_e('View all donations for this donor &raquo;', 'give'); ?></a>
278 278
 											</p>
279 279
 										</div>
280 280
 
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
 										 *
287 287
 										 * @param int $payment_id Payment id.
288 288
 										 */
289
-										do_action( 'give_view_order_details_payment_meta_after', $payment_id );
289
+										do_action('give_view_order_details_payment_meta_after', $payment_id);
290 290
 										?>
291 291
 
292 292
 									</div>
@@ -306,7 +306,7 @@  discard block
 block discarded – undo
306 306
 							 *
307 307
 							 * @param int $payment_id Payment id.
308 308
 							 */
309
-							do_action( 'give_view_order_details_sidebar_after', $payment_id );
309
+							do_action('give_view_order_details_sidebar_after', $payment_id);
310 310
 							?>
311 311
 
312 312
 						</div>
@@ -326,56 +326,56 @@  discard block
 block discarded – undo
326 326
 							 *
327 327
 							 * @param int $payment_id Payment id.
328 328
 							 */
329
-							do_action( 'give_view_order_details_main_before', $payment_id );
329
+							do_action('give_view_order_details_main_before', $payment_id);
330 330
 							?>
331 331
 
332 332
 							<?php $column_count = 'columns-3'; ?>
333 333
 							<div id="give-donation-overview" class="postbox <?php echo $column_count; ?>">
334
-								<h3 class="hndle"><?php esc_html_e( 'Donation Information', 'give' ); ?></h3>
334
+								<h3 class="hndle"><?php esc_html_e('Donation Information', 'give'); ?></h3>
335 335
 
336 336
 								<div class="inside">
337 337
 
338 338
 									<div class="column-container">
339 339
 										<div class="column">
340 340
 											<p>
341
-												<strong><?php esc_html_e( 'Donation Form ID:', 'give' ); ?></strong><br>
341
+												<strong><?php esc_html_e('Donation Form ID:', 'give'); ?></strong><br>
342 342
 												<?php
343
-												if ( $payment_meta['form_id'] ) :
343
+												if ($payment_meta['form_id']) :
344 344
 													printf(
345 345
 														'<a href="%1$s" target="_blank">#%2$s</a>',
346
-														admin_url( 'post.php?action=edit&post=' . $payment_meta['form_id'] ),
346
+														admin_url('post.php?action=edit&post='.$payment_meta['form_id']),
347 347
 														$payment_meta['form_id']
348 348
 													);
349 349
 												endif;
350 350
 												?>
351 351
 											</p>
352 352
 											<p>
353
-												<strong><?php esc_html_e( 'Donation Form Title:', 'give' ); ?></strong><br>
354
-												<?php echo Give()->html->forms_dropdown( array(
353
+												<strong><?php esc_html_e('Donation Form Title:', 'give'); ?></strong><br>
354
+												<?php echo Give()->html->forms_dropdown(array(
355 355
 													'selected' => $payment_meta['form_id'],
356 356
 													'name'   => 'give-payment-form-select',
357 357
 													'id'     => 'give-payment-form-select',
358 358
 													'chosen' => true,
359
-												) ); ?>
359
+												)); ?>
360 360
 											</p>
361 361
 										</div>
362 362
 										<div class="column">
363 363
 											<p>
364
-												<strong><?php esc_html_e( 'Donation Date:', 'give' ); ?></strong><br>
365
-												<?php echo date_i18n( give_date_format(), $payment_date ); ?>
364
+												<strong><?php esc_html_e('Donation Date:', 'give'); ?></strong><br>
365
+												<?php echo date_i18n(give_date_format(), $payment_date); ?>
366 366
 											</p>
367 367
 											<p>
368
-												<strong><?php esc_html_e( 'Donation Level:', 'give' ); ?></strong><br>
368
+												<strong><?php esc_html_e('Donation Level:', 'give'); ?></strong><br>
369 369
 												<span class="give-donation-level">
370 370
 													<?php
371
-													$var_prices = give_has_variable_prices( $payment_meta['form_id'] );
372
-													if ( empty( $var_prices ) ) {
373
-														esc_html_e( 'n/a', 'give' );
371
+													$var_prices = give_has_variable_prices($payment_meta['form_id']);
372
+													if (empty($var_prices)) {
373
+														esc_html_e('n/a', 'give');
374 374
 													} else {
375 375
 														$prices_atts = '';
376
-														if( $variable_prices = give_get_variable_prices( $payment_meta['form_id'] ) ) {
377
-															foreach ( $variable_prices as $variable_price ) {
378
-																$prices_atts[$variable_price['_give_id']['level_id']] = give_format_amount( $variable_price['_give_amount'], array( 'sanitize' => false ) );
376
+														if ($variable_prices = give_get_variable_prices($payment_meta['form_id'])) {
377
+															foreach ($variable_prices as $variable_price) {
378
+																$prices_atts[$variable_price['_give_id']['level_id']] = give_format_amount($variable_price['_give_amount'], array('sanitize' => false));
379 379
 															}
380 380
 														}
381 381
 														// Variable price dropdown options.
@@ -384,12 +384,12 @@  discard block
 block discarded – undo
384 384
 															'name'             => 'give-variable-price',
385 385
 															'chosen'           => true,
386 386
 															'show_option_all'  => '',
387
-															'show_option_none' => ( '' === get_post_meta( $payment_id, '_give_payment_price_id', true ) ? __( 'None', 'give' )  : '' ),
388
-															'select_atts'      => 'data-prices=' . esc_attr( json_encode( $prices_atts ) ),
387
+															'show_option_none' => ('' === get_post_meta($payment_id, '_give_payment_price_id', true) ? __('None', 'give') : ''),
388
+															'select_atts'      => 'data-prices='.esc_attr(json_encode($prices_atts)),
389 389
 															'selected'         => $payment_meta['price_id'],
390 390
 														);
391 391
 														// Render variable prices select tag html.
392
-														give_get_form_variable_price_dropdown( $variable_price_dropdown_option, true );
392
+														give_get_form_variable_price_dropdown($variable_price_dropdown_option, true);
393 393
 													}
394 394
 													?>
395 395
 												</span>
@@ -397,8 +397,8 @@  discard block
 block discarded – undo
397 397
 										</div>
398 398
 										<div class="column">
399 399
 											<p>
400
-												<strong><?php esc_html_e( 'Total Donation:', 'give' ); ?></strong><br>
401
-												<?php echo give_currency_filter( give_format_amount( $payment->total, array( 'sanitize' => false ) ), give_get_payment_currency_code( $payment->ID ) ); ?>
400
+												<strong><?php esc_html_e('Total Donation:', 'give'); ?></strong><br>
401
+												<?php echo give_currency_filter(give_format_amount($payment->total, array('sanitize' => false)), give_get_payment_currency_code($payment->ID)); ?>
402 402
 											</p>
403 403
 											<p>
404 404
 												<?php
@@ -411,7 +411,7 @@  discard block
 block discarded – undo
411 411
 												 *
412 412
 												 * @param int $payment_id Payment id.
413 413
 												 */
414
-												do_action( 'give_donation_details_thead_before', $payment_id );
414
+												do_action('give_donation_details_thead_before', $payment_id);
415 415
 
416 416
 
417 417
 												/**
@@ -423,7 +423,7 @@  discard block
 block discarded – undo
423 423
 												 *
424 424
 												 * @param int $payment_id Payment id.
425 425
 												 */
426
-												do_action( 'give_donation_details_thead_after', $payment_id );
426
+												do_action('give_donation_details_thead_after', $payment_id);
427 427
 
428 428
 												/**
429 429
 												 * Fires in order details page, in the donation-information metabox, before the body elements.
@@ -434,7 +434,7 @@  discard block
 block discarded – undo
434 434
 												 *
435 435
 												 * @param int $payment_id Payment id.
436 436
 												 */
437
-												do_action( 'give_donation_details_tbody_before', $payment_id );
437
+												do_action('give_donation_details_tbody_before', $payment_id);
438 438
 
439 439
 												/**
440 440
 												 * Fires in order details page, in the donation-information metabox, after the body elements.
@@ -445,7 +445,7 @@  discard block
 block discarded – undo
445 445
 												 *
446 446
 												 * @param int $payment_id Payment id.
447 447
 												 */
448
-												do_action( 'give_donation_details_tbody_after', $payment_id );
448
+												do_action('give_donation_details_tbody_after', $payment_id);
449 449
 												?>
450 450
 											</p>
451 451
 										</div>
@@ -465,67 +465,67 @@  discard block
 block discarded – undo
465 465
 							 *
466 466
 							 * @param int $payment_id Payment id.
467 467
 							 */
468
-							do_action( 'give_view_order_details_files_after', $payment_id );
468
+							do_action('give_view_order_details_files_after', $payment_id);
469 469
 							?>
470 470
 
471 471
 							<div id="give-donor-details" class="postbox">
472
-								<h3 class="hndle"><?php esc_html_e( 'Donor Details', 'give' ); ?></h3>
472
+								<h3 class="hndle"><?php esc_html_e('Donor Details', 'give'); ?></h3>
473 473
 
474 474
 								<div class="inside">
475 475
 
476
-									<?php $donor = new Give_Donor( $donor_id ); ?>
476
+									<?php $donor = new Give_Donor($donor_id); ?>
477 477
 
478 478
 									<div class="column-container donor-info">
479 479
 										<div class="column">
480 480
 											<p>
481
-												<strong><?php esc_html_e( 'Donor ID:', 'give' ); ?></strong><br>
481
+												<strong><?php esc_html_e('Donor ID:', 'give'); ?></strong><br>
482 482
 												<?php
483
-												if ( ! empty( $donor->id ) ) {
483
+												if ( ! empty($donor->id)) {
484 484
 													printf(
485 485
 														'<a href="%1$s" target="_blank">#%2$s</a>',
486
-														admin_url( 'edit.php?post_type=give_forms&page=give-donors&view=overview&id=' . $donor->id ),
486
+														admin_url('edit.php?post_type=give_forms&page=give-donors&view=overview&id='.$donor->id),
487 487
 														$donor->id
488 488
 													);
489 489
 												}
490 490
 												?>
491 491
 											</p>
492 492
 											<p>
493
-												<strong><?php esc_html_e( 'Donor Since:', 'give' ); ?></strong><br>
494
-												<?php echo date_i18n( give_date_format(), strtotime( $donor->date_created ) ) ?>
493
+												<strong><?php esc_html_e('Donor Since:', 'give'); ?></strong><br>
494
+												<?php echo date_i18n(give_date_format(), strtotime($donor->date_created)) ?>
495 495
 											</p>
496 496
 										</div>
497 497
 										<div class="column">
498 498
 											<p>
499
-												<strong><?php esc_html_e( 'Donor Name:', 'give' ); ?></strong><br>
499
+												<strong><?php esc_html_e('Donor Name:', 'give'); ?></strong><br>
500 500
 												<?php
501
-                                                $donor_billing_name = give_get_donor_name_by( $payment_id, 'donation' );
502
-                                                $donor_name = give_get_donor_name_by( $donor_id, 'donor' );
501
+                                                $donor_billing_name = give_get_donor_name_by($payment_id, 'donation');
502
+                                                $donor_name = give_get_donor_name_by($donor_id, 'donor');
503 503
 
504 504
                                                 // Check whether the donor name and WP_User name is same or not.
505
-                                                if( sanitize_title( $donor_billing_name ) != sanitize_title( $donor_name ) ){
506
-                                                    echo $donor_billing_name . ' (<a href="' . esc_url( admin_url( "edit.php?post_type=give_forms&page=give-donors&view=overview&id=$donor_id" ) ) . '">' . $donor_name . '</a>)';
507
-                                                }else{
505
+                                                if (sanitize_title($donor_billing_name) != sanitize_title($donor_name)) {
506
+                                                    echo $donor_billing_name.' (<a href="'.esc_url(admin_url("edit.php?post_type=give_forms&page=give-donors&view=overview&id=$donor_id")).'">'.$donor_name.'</a>)';
507
+                                                } else {
508 508
                                                     echo $donor_name;
509 509
                                                 }
510 510
                                                 ?>
511 511
 											</p>
512 512
 											<p>
513
-												<strong><?php esc_html_e( 'Donor Email:', 'give' ); ?></strong><br>
513
+												<strong><?php esc_html_e('Donor Email:', 'give'); ?></strong><br>
514 514
 												<?php echo $donor->email; ?>
515 515
 											</p>
516 516
 										</div>
517 517
 										<div class="column">
518 518
 											<p>
519
-												<strong><?php esc_html_e( 'Change Donor:', 'give' ); ?></strong><br>
519
+												<strong><?php esc_html_e('Change Donor:', 'give'); ?></strong><br>
520 520
 												<?php
521
-												echo Give()->html->donor_dropdown( array(
521
+												echo Give()->html->donor_dropdown(array(
522 522
 													'selected' => $donor->id,
523 523
 													'name'     => 'donor-id',
524
-												) );
524
+												));
525 525
 												?>
526 526
 											</p>
527 527
 											<p>
528
-												<a href="#new" class="give-payment-new-donor"><?php esc_html_e( 'Create New Donor', 'give' ); ?></a>
528
+												<a href="#new" class="give-payment-new-donor"><?php esc_html_e('Create New Donor', 'give'); ?></a>
529 529
 											</p>
530 530
 										</div>
531 531
 									</div>
@@ -533,13 +533,13 @@  discard block
 block discarded – undo
533 533
 									<div class="column-container new-donor" style="display: none">
534 534
 										<div class="column">
535 535
 											<p>
536
-												<label for="give-new-donor-name"><?php esc_html_e( 'New Donor Name:', 'give' ); ?></label>
536
+												<label for="give-new-donor-name"><?php esc_html_e('New Donor Name:', 'give'); ?></label>
537 537
 												<input id="give-new-donor-name" type="text" name="give-new-donor-name" value="" class="medium-text"/>
538 538
 											</p>
539 539
 										</div>
540 540
 										<div class="column">
541 541
 											<p>
542
-												<label for="give-new-donor-email"><?php esc_html_e( 'New Donor Email:', 'give' ); ?></label>
542
+												<label for="give-new-donor-email"><?php esc_html_e('New Donor Email:', 'give'); ?></label>
543 543
 												<input id="give-new-donor-email" type="email" name="give-new-donor-email" value="" class="medium-text"/>
544 544
 											</p>
545 545
 										</div>
@@ -547,9 +547,9 @@  discard block
 block discarded – undo
547 547
 											<p>
548 548
 												<input type="hidden" name="give-current-donor" value="<?php echo $donor->id; ?>"/>
549 549
 												<input type="hidden" id="give-new-donor" name="give-new-donor" value="0"/>
550
-												<a href="#cancel" class="give-payment-new-donor-cancel give-delete"><?php esc_html_e( 'Cancel', 'give' ); ?></a>
550
+												<a href="#cancel" class="give-payment-new-donor-cancel give-delete"><?php esc_html_e('Cancel', 'give'); ?></a>
551 551
 												<br>
552
-												<em><?php esc_html_e( 'Click "Save Donation" to create new donor.', 'give' ); ?></em>
552
+												<em><?php esc_html_e('Click "Save Donation" to create new donor.', 'give'); ?></em>
553 553
 											</p>
554 554
 										</div>
555 555
 									</div>
@@ -565,7 +565,7 @@  discard block
 block discarded – undo
565 565
 									 * @param array $payment_meta Payment meta.
566 566
 									 * @param array $user_info    User information.
567 567
 									 */
568
-									do_action( 'give_payment_personal_details_list', $payment_meta, $user_info );
568
+									do_action('give_payment_personal_details_list', $payment_meta, $user_info);
569 569
 
570 570
 									/**
571 571
 									 * Fires on the donation details page, in the donor-details metabox.
@@ -574,7 +574,7 @@  discard block
 block discarded – undo
574 574
 									 *
575 575
 									 * @param int $payment_id Payment id.
576 576
 									 */
577
-									do_action( 'give_payment_view_details', $payment_id );
577
+									do_action('give_payment_view_details', $payment_id);
578 578
 									?>
579 579
 
580 580
 								</div>
@@ -590,11 +590,11 @@  discard block
 block discarded – undo
590 590
 							 *
591 591
 							 * @param int $payment_id Payment id.
592 592
 							 */
593
-							do_action( 'give_view_order_details_billing_before', $payment_id );
593
+							do_action('give_view_order_details_billing_before', $payment_id);
594 594
 							?>
595 595
 
596 596
 							<div id="give-billing-details" class="postbox">
597
-								<h3 class="hndle"><?php esc_html_e( 'Billing Address', 'give' ); ?></h3>
597
+								<h3 class="hndle"><?php esc_html_e('Billing Address', 'give'); ?></h3>
598 598
 
599 599
 								<div class="inside">
600 600
 
@@ -604,59 +604,59 @@  discard block
 block discarded – undo
604 604
 											<div class="data column-container">
605 605
 												<div class="column">
606 606
 													<div class="give-wrap-address-line1">
607
-														<label for="give-payment-address-line1" class="order-data-address"><?php esc_html_e( 'Address 1:', 'give' ); ?></label>
608
-														<input id="give-payment-address-line1" type="text" name="give-payment-address[0][line1]" value="<?php echo esc_attr( $address['line1'] ); ?>" class="medium-text"/>
607
+														<label for="give-payment-address-line1" class="order-data-address"><?php esc_html_e('Address 1:', 'give'); ?></label>
608
+														<input id="give-payment-address-line1" type="text" name="give-payment-address[0][line1]" value="<?php echo esc_attr($address['line1']); ?>" class="medium-text"/>
609 609
 													</div>
610 610
 													<div class="give-wrap-address-line2">
611
-														<label for="give-payment-address-line2" class="order-data-address-line"><?php esc_html_e( 'Address 2:', 'give' ); ?></label>
612
-														<input id="give-payment-address-line2" type="text" name="give-payment-address[0][line2]" value="<?php echo esc_attr( $address['line2'] ); ?>" class="medium-text"/>
611
+														<label for="give-payment-address-line2" class="order-data-address-line"><?php esc_html_e('Address 2:', 'give'); ?></label>
612
+														<input id="give-payment-address-line2" type="text" name="give-payment-address[0][line2]" value="<?php echo esc_attr($address['line2']); ?>" class="medium-text"/>
613 613
 													</div>
614 614
 												</div>
615 615
 												<div class="column">
616 616
 													<div class="give-wrap-address-city">
617
-														<label for="give-payment-address-city" class="order-data-address-line"><?php esc_html_e( 'City:', 'give' ); ?></label>
618
-														<input id="give-payment-address-city" type="text" name="give-payment-address[0][city]" value="<?php echo esc_attr( $address['city'] ); ?>" class="medium-text"/>
617
+														<label for="give-payment-address-city" class="order-data-address-line"><?php esc_html_e('City:', 'give'); ?></label>
618
+														<input id="give-payment-address-city" type="text" name="give-payment-address[0][city]" value="<?php echo esc_attr($address['city']); ?>" class="medium-text"/>
619 619
 													</div>
620 620
 													<div class="give-wrap-address-zip">
621
-														<label for="give-payment-address-zip" class="order-data-address-line"><?php esc_html_e( 'Zip / Postal Code:', 'give' ); ?></label>
622
-														<input id="give-payment-address-zip" type="text" name="give-payment-address[0][zip]" value="<?php echo esc_attr( $address['zip'] ); ?>" class="medium-text"/>
621
+														<label for="give-payment-address-zip" class="order-data-address-line"><?php esc_html_e('Zip / Postal Code:', 'give'); ?></label>
622
+														<input id="give-payment-address-zip" type="text" name="give-payment-address[0][zip]" value="<?php echo esc_attr($address['zip']); ?>" class="medium-text"/>
623 623
 
624 624
 													</div>
625 625
 												</div>
626 626
 												<div class="column">
627 627
 													<div id="give-order-address-country-wrap">
628
-														<label class="order-data-address-line"><?php esc_html_e( 'Country:', 'give' ); ?></label>
628
+														<label class="order-data-address-line"><?php esc_html_e('Country:', 'give'); ?></label>
629 629
 														<?php
630
-														echo Give()->html->select( array(
630
+														echo Give()->html->select(array(
631 631
 															'options'          => give_get_country_list(),
632 632
 															'name'             => 'give-payment-address[0][country]',
633 633
 															'selected'         => $address['country'],
634 634
 															'show_option_all'  => false,
635 635
 															'show_option_none' => false,
636 636
 															'chosen'           => true,
637
-															'placeholder'      => esc_attr__( 'Select a country', 'give' ),
638
-															'data'             => array( 'search-type' => 'no_ajax' ),
639
-														) );
637
+															'placeholder'      => esc_attr__('Select a country', 'give'),
638
+															'data'             => array('search-type' => 'no_ajax'),
639
+														));
640 640
 														?>
641 641
 													</div>
642 642
 													<div id="give-order-address-state-wrap">
643
-														<label for="give-payment-address-state" class="order-data-address-line"><?php esc_html_e( 'State / Province / County:', 'give' ); ?></label>
643
+														<label for="give-payment-address-state" class="order-data-address-line"><?php esc_html_e('State / Province / County:', 'give'); ?></label>
644 644
 														<?php
645
-														$states = give_get_states( $address['country'] );
646
-														if ( ! empty( $states ) ) {
647
-															echo Give()->html->select( array(
645
+														$states = give_get_states($address['country']);
646
+														if ( ! empty($states)) {
647
+															echo Give()->html->select(array(
648 648
 																'options'          => $states,
649 649
 																'name'             => 'give-payment-address[0][state]',
650 650
 																'selected'         => $address['state'],
651 651
 																'show_option_all'  => false,
652 652
 																'show_option_none' => false,
653 653
 																'chosen'           => true,
654
-																'placeholder'      => esc_attr__( 'Select a state', 'give' ),
655
-																'data'             => array( 'search-type' => 'no_ajax' ),
656
-															) );
654
+																'placeholder'      => esc_attr__('Select a state', 'give'),
655
+																'data'             => array('search-type' => 'no_ajax'),
656
+															));
657 657
 														} else {
658 658
 															?>
659
-															<input id="give-payment-address-state" type="text" name="give-payment-address[0][state]" value="<?php echo esc_attr( $address['state'] ); ?>" class="medium-text"/>
659
+															<input id="give-payment-address-state" type="text" name="give-payment-address[0][state]" value="<?php echo esc_attr($address['state']); ?>" class="medium-text"/>
660 660
 															<?php
661 661
 														} ?>
662 662
 													</div>
@@ -676,7 +676,7 @@  discard block
 block discarded – undo
676 676
 									 *
677 677
 									 * @param int $payment_id Payment id.
678 678
 									 */
679
-									do_action( 'give_payment_billing_details', $payment_id );
679
+									do_action('give_payment_billing_details', $payment_id);
680 680
 									?>
681 681
 
682 682
 								</div>
@@ -692,32 +692,32 @@  discard block
 block discarded – undo
692 692
 							 *
693 693
 							 * @param int $payment_id Payment id.
694 694
 							 */
695
-							do_action( 'give_view_order_details_billing_after', $payment_id );
695
+							do_action('give_view_order_details_billing_after', $payment_id);
696 696
 							?>
697 697
 
698 698
 							<div id="give-payment-notes" class="postbox">
699
-								<h3 class="hndle"><?php esc_html_e( 'Donation Notes', 'give' ); ?></h3>
699
+								<h3 class="hndle"><?php esc_html_e('Donation Notes', 'give'); ?></h3>
700 700
 
701 701
 								<div class="inside">
702 702
 									<div id="give-payment-notes-inner">
703 703
 										<?php
704
-										$notes = give_get_payment_notes( $payment_id );
705
-										if ( ! empty( $notes ) ) {
704
+										$notes = give_get_payment_notes($payment_id);
705
+										if ( ! empty($notes)) {
706 706
 											$no_notes_display = ' style="display:none;"';
707
-											foreach ( $notes as $note ) :
707
+											foreach ($notes as $note) :
708 708
 
709
-												echo give_get_payment_note_html( $note, $payment_id );
709
+												echo give_get_payment_note_html($note, $payment_id);
710 710
 
711 711
 											endforeach;
712 712
 										} else {
713 713
 											$no_notes_display = '';
714 714
 										}
715
-										echo '<p class="give-no-payment-notes"' . $no_notes_display . '>' . esc_html__( 'No donation notes.', 'give' ) . '</p>'; ?>
715
+										echo '<p class="give-no-payment-notes"'.$no_notes_display.'>'.esc_html__('No donation notes.', 'give').'</p>'; ?>
716 716
 									</div>
717 717
 									<textarea name="give-payment-note" id="give-payment-note" class="large-text"></textarea>
718 718
 
719 719
 									<div class="give-clearfix">
720
-										<button id="give-add-payment-note" class="button button-secondary button-small" data-payment-id="<?php echo absint( $payment_id ); ?>"><?php esc_html_e( 'Add Note', 'give' ); ?></button>
720
+										<button id="give-add-payment-note" class="button button-secondary button-small" data-payment-id="<?php echo absint($payment_id); ?>"><?php esc_html_e('Add Note', 'give'); ?></button>
721 721
 									</div>
722 722
 
723 723
 								</div>
@@ -733,7 +733,7 @@  discard block
 block discarded – undo
733 733
 							 *
734 734
 							 * @param int $payment_id Payment id.
735 735
 							 */
736
-							do_action( 'give_view_order_details_main_after', $payment_id );
736
+							do_action('give_view_order_details_main_after', $payment_id);
737 737
 							?>
738 738
 
739 739
 						</div>
@@ -755,11 +755,11 @@  discard block
 block discarded – undo
755 755
 		 *
756 756
 		 * @param int $payment_id Payment id.
757 757
 		 */
758
-		do_action( 'give_view_order_details_form_bottom', $payment_id );
758
+		do_action('give_view_order_details_form_bottom', $payment_id);
759 759
 
760
-		wp_nonce_field( 'give_update_payment_details_nonce' );
760
+		wp_nonce_field('give_update_payment_details_nonce');
761 761
 		?>
762
-		<input type="hidden" name="give_payment_id" value="<?php echo esc_attr( $payment_id ); ?>"/>
762
+		<input type="hidden" name="give_payment_id" value="<?php echo esc_attr($payment_id); ?>"/>
763 763
 		<input type="hidden" name="give_action" value="update_payment_details"/>
764 764
 	</form>
765 765
 	<?php
@@ -770,6 +770,6 @@  discard block
 block discarded – undo
770 770
 	 *
771 771
 	 * @param int $payment_id Payment id.
772 772
 	 */
773
-	do_action( 'give_view_order_details_after', $payment_id );
773
+	do_action('give_view_order_details_after', $payment_id);
774 774
 	?>
775 775
 </div><!-- /.wrap -->
Please login to merge, or discard this patch.
includes/admin/payments/payments-history.php 1 patch
Spacing   +22 added lines, -22 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,12 +25,12 @@  discard block
 block discarded – undo
25 25
 */
26 26
 function give_payment_history_page() {
27 27
 
28
-	$give_payment = get_post_type_object( 'give_payment' );
28
+	$give_payment = get_post_type_object('give_payment');
29 29
 
30
-	if ( isset( $_GET['view'] ) && 'view-payment-details' == $_GET['view'] ) {
31
-		require_once GIVE_PLUGIN_DIR . 'includes/admin/payments/view-payment-details.php';
30
+	if (isset($_GET['view']) && 'view-payment-details' == $_GET['view']) {
31
+		require_once GIVE_PLUGIN_DIR.'includes/admin/payments/view-payment-details.php';
32 32
 	} else {
33
-		require_once GIVE_PLUGIN_DIR . 'includes/admin/payments/class-payments-table.php';
33
+		require_once GIVE_PLUGIN_DIR.'includes/admin/payments/class-payments-table.php';
34 34
 		$payments_table = new Give_Payment_History_Table();
35 35
 		$payments_table->prepare_items();
36 36
 	?>
@@ -44,17 +44,17 @@  discard block
 block discarded – undo
44 44
 		 *
45 45
 		 * @since 1.7
46 46
 		 */
47
-		do_action( 'give_payments_page_top' );
47
+		do_action('give_payments_page_top');
48 48
 		?>
49 49
 
50
-		<form id="give-payments-advanced-filter" method="get" action="<?php echo admin_url( 'edit.php?post_type=give_forms&page=give-payment-history' ); ?>">
50
+		<form id="give-payments-advanced-filter" method="get" action="<?php echo admin_url('edit.php?post_type=give_forms&page=give-payment-history'); ?>">
51 51
 			<input type="hidden" name="post_type" value="give_forms" />
52 52
 			<input type="hidden" name="page" value="give-payment-history" />
53 53
 			<?php $payments_table->views() ?>
54 54
 			<?php $payments_table->advanced_filters(); ?>
55 55
 		</form>
56 56
 
57
-		<form id="give-payments-filter" method="get" action="<?php echo admin_url( 'edit.php?post_type=give_forms&page=give-payment-history' ); ?>">
57
+		<form id="give-payments-filter" method="get" action="<?php echo admin_url('edit.php?post_type=give_forms&page=give-payment-history'); ?>">
58 58
 			<input type="hidden" name="post_type" value="give_forms" />
59 59
 			<input type="hidden" name="page" value="give-payment-history" />
60 60
 			<?php $payments_table->display() ?>
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 		 *
67 67
 		 * @since 1.7
68 68
 		 */
69
-		do_action( 'give_payments_page_bottom' );
69
+		do_action('give_payments_page_bottom');
70 70
 		?>
71 71
 
72 72
 	</div>
@@ -83,29 +83,29 @@  discard block
 block discarded – undo
83 83
  * @param $title
84 84
  * @return string
85 85
  */
86
-function give_view_order_details_title( $admin_title, $title ) {
86
+function give_view_order_details_title($admin_title, $title) {
87 87
 
88
-	if ( 'give_forms_page_give-payment-history' != get_current_screen()->base ) {
88
+	if ('give_forms_page_give-payment-history' != get_current_screen()->base) {
89 89
 		return $admin_title;
90 90
 	}
91 91
 
92
-	if( ! isset( $_GET['give-action'] ) ) {
92
+	if ( ! isset($_GET['give-action'])) {
93 93
 		return $admin_title;
94 94
 	}
95 95
 
96
-	switch( $_GET['give-action'] ) :
96
+	switch ($_GET['give-action']) :
97 97
 
98 98
 		case 'view-payment-details' :
99 99
 			$title = sprintf(
100 100
 				/* translators: %s: admin title */
101
-				esc_html__( 'View Donation Details - %s', 'give' ),
101
+				esc_html__('View Donation Details - %s', 'give'),
102 102
 				$admin_title
103 103
 			);
104 104
 			break;
105 105
 		case 'edit-payment' :
106 106
 			$title = sprintf(
107 107
 				/* translators: %s: admin title */
108
-				esc_html__( 'Edit Donation - %s', 'give' ),
108
+				esc_html__('Edit Donation - %s', 'give'),
109 109
 				$admin_title
110 110
 			);
111 111
 			break;
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
 
117 117
 	return $title;
118 118
 }
119
-add_filter( 'admin_title', 'give_view_order_details_title', 10, 2 );
119
+add_filter('admin_title', 'give_view_order_details_title', 10, 2);
120 120
 
121 121
 /**
122 122
  * Intercept default Edit post links for Give payments and rewrite them to the View Order Details screen.
@@ -128,20 +128,20 @@  discard block
 block discarded – undo
128 128
  * @param $context
129 129
  * @return string
130 130
  */
131
-function give_override_edit_post_for_payment_link( $url, $post_id = 0, $context ) {
131
+function give_override_edit_post_for_payment_link($url, $post_id = 0, $context) {
132 132
 
133
-	$post = get_post( $post_id );
133
+	$post = get_post($post_id);
134 134
 
135
-	if( ! $post ) {
135
+	if ( ! $post) {
136 136
 		return $url;
137 137
 	}
138 138
 
139
-	if( 'give_payment' != $post->post_type ) {
139
+	if ('give_payment' != $post->post_type) {
140 140
 		return $url;
141 141
 	}
142 142
 
143
-	$url = admin_url( 'edit.php?post_type=give_forms&page=give-payment-history&view=view-payment-details&id=' . $post_id );
143
+	$url = admin_url('edit.php?post_type=give_forms&page=give-payment-history&view=view-payment-details&id='.$post_id);
144 144
 
145 145
 	return $url;
146 146
 }
147
-add_filter( 'get_edit_post_link', 'give_override_edit_post_for_payment_link', 10, 3 );
147
+add_filter('get_edit_post_link', 'give_override_edit_post_for_payment_link', 10, 3);
Please login to merge, or discard this patch.
includes/admin/donors/donor-functions.php 1 patch
Spacing   +12 added lines, -12 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,7 +23,7 @@  discard block
 block discarded – undo
23 23
  *
24 24
  * @return array        The altered list of views.
25 25
  */
26
-function give_register_default_donor_views( $views ) {
26
+function give_register_default_donor_views($views) {
27 27
 
28 28
 	$default_views = array(
29 29
 		'overview' => 'give_donor_view',
@@ -31,11 +31,11 @@  discard block
 block discarded – undo
31 31
 		'notes'    => 'give_donor_notes_view',
32 32
 	);
33 33
 
34
-	return array_merge( $views, $default_views );
34
+	return array_merge($views, $default_views);
35 35
 
36 36
 }
37 37
 
38
-add_filter( 'give_donor_views', 'give_register_default_donor_views', 1, 1 );
38
+add_filter('give_donor_views', 'give_register_default_donor_views', 1, 1);
39 39
 
40 40
 /**
41 41
  * Register a tab for the single donor view.
@@ -46,23 +46,23 @@  discard block
 block discarded – undo
46 46
  *
47 47
  * @return array       The altered list of tabs
48 48
  */
49
-function give_register_default_donor_tabs( $tabs ) {
49
+function give_register_default_donor_tabs($tabs) {
50 50
 
51 51
 	$default_tabs = array(
52 52
 		'overview' => array(
53 53
 			'dashicon' => 'dashicons-admin-users',
54
-			'title' => __( 'Donor Profile', 'give' ),
54
+			'title' => __('Donor Profile', 'give'),
55 55
 		),
56 56
 		'notes'    => array(
57 57
 			'dashicon' => 'dashicons-admin-comments',
58
-			'title' => __( 'Donor Notes', 'give' ),
58
+			'title' => __('Donor Notes', 'give'),
59 59
 		),
60 60
 	);
61 61
 
62
-	return array_merge( $tabs, $default_tabs );
62
+	return array_merge($tabs, $default_tabs);
63 63
 }
64 64
 
65
-add_filter( 'give_donor_tabs', 'give_register_default_donor_tabs', 1, 1 );
65
+add_filter('give_donor_tabs', 'give_register_default_donor_tabs', 1, 1);
66 66
 
67 67
 /**
68 68
  * Register the Delete icon as late as possible so it's at the bottom.
@@ -73,14 +73,14 @@  discard block
 block discarded – undo
73 73
  *
74 74
  * @return array       The altered list of tabs, with 'delete' at the bottom.
75 75
  */
76
-function give_register_delete_donor_tab( $tabs ) {
76
+function give_register_delete_donor_tab($tabs) {
77 77
 
78 78
 	$tabs['delete'] = array(
79 79
 		'dashicon' => 'dashicons-trash',
80
-		'title' => esc_html__( 'Delete Donor', 'give' ),
80
+		'title' => esc_html__('Delete Donor', 'give'),
81 81
 	);
82 82
 
83 83
 	return $tabs;
84 84
 }
85 85
 
86
-add_filter( 'give_donor_tabs', 'give_register_delete_donor_tab', PHP_INT_MAX, 1 );
86
+add_filter('give_donor_tabs', 'give_register_delete_donor_tab', PHP_INT_MAX, 1);
Please login to merge, or discard this patch.
includes/class-give-html-elements.php 1 patch
Spacing   +151 added lines, -151 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
 
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 	 *
36 36
 	 * @return string       Donations dropdown.
37 37
 	 */
38
-	public function donations_dropdown( $args = array() ) {
38
+	public function donations_dropdown($args = array()) {
39 39
 
40 40
 		$defaults = array(
41 41
 			'name'        => 'donations',
@@ -45,32 +45,32 @@  discard block
 block discarded – undo
45 45
 			'selected'    => 0,
46 46
 			'chosen'      => false,
47 47
 			'number'      => 30,
48
-			'placeholder' => __( 'Select a donation', 'give' ),
48
+			'placeholder' => __('Select a donation', 'give'),
49 49
 		);
50 50
 
51
-		$args = wp_parse_args( $args, $defaults );
51
+		$args = wp_parse_args($args, $defaults);
52 52
 
53
-		$payments = new Give_Payments_Query( array(
53
+		$payments = new Give_Payments_Query(array(
54 54
 			'number' => $args['number'],
55
-		) );
55
+		));
56 56
 
57 57
 		$payments = $payments->get_payments();
58 58
 
59 59
 		$options = array();
60 60
 
61 61
 		// Provide nice human readable options.
62
-		if ( $payments ) {
62
+		if ($payments) {
63 63
 			$options[0] = $args['placeholder'];
64
-			foreach ( $payments as $payment ) {
64
+			foreach ($payments as $payment) {
65 65
 
66
-				$options[ absint( $payment->ID ) ] = esc_html( '#' . $payment->ID . ' - ' . $payment->email . ' - ' . $payment->form_title );
66
+				$options[absint($payment->ID)] = esc_html('#'.$payment->ID.' - '.$payment->email.' - '.$payment->form_title);
67 67
 
68 68
 			}
69 69
 		} else {
70
-			$options[0] = __( 'No donations found.', 'give' );
70
+			$options[0] = __('No donations found.', 'give');
71 71
 		}
72 72
 
73
-		$output = $this->select( array(
73
+		$output = $this->select(array(
74 74
 			'name'             => $args['name'],
75 75
 			'selected'         => $args['selected'],
76 76
 			'id'               => $args['id'],
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
 			'select_atts'      => $args['select_atts'],
83 83
 			'show_option_all'  => false,
84 84
 			'show_option_none' => false,
85
-		) );
85
+		));
86 86
 
87 87
 		return $output;
88 88
 	}
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
 	 *
100 100
 	 * @return string      Give forms dropdown.
101 101
 	 */
102
-	public function forms_dropdown( $args = array() ) {
102
+	public function forms_dropdown($args = array()) {
103 103
 
104 104
 		$defaults = array(
105 105
 			'name'        => 'forms',
@@ -109,39 +109,39 @@  discard block
 block discarded – undo
109 109
 			'selected'    => 0,
110 110
 			'chosen'      => false,
111 111
 			'number'      => 30,
112
-			'placeholder' => esc_attr__( 'Select a Donation Form', 'give' ),
112
+			'placeholder' => esc_attr__('Select a Donation Form', 'give'),
113 113
 			'data'        => array(
114 114
 				'search-type' => 'form',
115 115
 			),
116 116
 		);
117 117
 
118
-		$args = wp_parse_args( $args, $defaults );
118
+		$args = wp_parse_args($args, $defaults);
119 119
 
120
-		$forms = get_posts( array(
120
+		$forms = get_posts(array(
121 121
 			'post_type'      => 'give_forms',
122 122
 			'orderby'        => 'title',
123 123
 			'order'          => 'ASC',
124 124
 			'posts_per_page' => $args['number'],
125
-		) );
125
+		));
126 126
 
127 127
 		$options = array();
128 128
 
129 129
 		// Ensure the selected.
130
-		if ( false !== $args['selected'] && $args['selected'] !== 0 ) {
131
-			$options[ $args['selected'] ] = get_the_title( $args['selected'] );
130
+		if (false !== $args['selected'] && $args['selected'] !== 0) {
131
+			$options[$args['selected']] = get_the_title($args['selected']);
132 132
 		}
133 133
 
134
-		if ( $forms ) {
134
+		if ($forms) {
135 135
 			$options[0] = $args['placeholder'];
136
-			foreach ( $forms as $form ) {
137
-				$form_title                     = empty( $form->post_title ) ? sprintf( __( 'Untitled (#%s)', 'give' ), $form->ID ) : $form->post_title;
138
-				$options[ absint( $form->ID ) ] = esc_html( $form_title );
136
+			foreach ($forms as $form) {
137
+				$form_title                     = empty($form->post_title) ? sprintf(__('Untitled (#%s)', 'give'), $form->ID) : $form->post_title;
138
+				$options[absint($form->ID)] = esc_html($form_title);
139 139
 			}
140 140
 		} else {
141
-			$options[0] = esc_html__( 'No forms found.', 'give' );
141
+			$options[0] = esc_html__('No forms found.', 'give');
142 142
 		}
143 143
 
144
-		$output = $this->select( array(
144
+		$output = $this->select(array(
145 145
 			'name'             => $args['name'],
146 146
 			'selected'         => $args['selected'],
147 147
 			'id'               => $args['id'],
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
 			'show_option_all'  => false,
154 154
 			'show_option_none' => false,
155 155
 			'data'             => $args['data'],
156
-		) );
156
+		));
157 157
 
158 158
 		return $output;
159 159
 	}
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
 	 *
171 171
 	 * @return string      Donors dropdown.
172 172
 	 */
173
-	public function donor_dropdown( $args = array() ) {
173
+	public function donor_dropdown($args = array()) {
174 174
 
175 175
 		$defaults = array(
176 176
 			'name'        => 'donors',
@@ -179,57 +179,57 @@  discard block
 block discarded – undo
179 179
 			'multiple'    => false,
180 180
 			'selected'    => 0,
181 181
 			'chosen'      => true,
182
-			'placeholder' => esc_attr__( 'Select a Donor', 'give' ),
182
+			'placeholder' => esc_attr__('Select a Donor', 'give'),
183 183
 			'number'      => 30,
184 184
 			'data'        => array(
185 185
 				'search-type' => 'donor',
186 186
 			),
187 187
 		);
188 188
 
189
-		$args = wp_parse_args( $args, $defaults );
189
+		$args = wp_parse_args($args, $defaults);
190 190
 
191
-		$donors = Give()->donors->get_donors( array(
191
+		$donors = Give()->donors->get_donors(array(
192 192
 			'number' => $args['number']
193
-		) );
193
+		));
194 194
 
195 195
 		$options = array();
196 196
 
197
-		if ( $donors ) {
198
-			$options[0] = esc_html__( 'No donor attached', 'give' );
199
-			foreach ( $donors as $donor ) {
200
-				$options[ absint( $donor->id ) ] = esc_html( $donor->name . ' (' . $donor->email . ')' );
197
+		if ($donors) {
198
+			$options[0] = esc_html__('No donor attached', 'give');
199
+			foreach ($donors as $donor) {
200
+				$options[absint($donor->id)] = esc_html($donor->name.' ('.$donor->email.')');
201 201
 			}
202 202
 		} else {
203
-			$options[0] = esc_html__( 'No donors found.', 'give' );
203
+			$options[0] = esc_html__('No donors found.', 'give');
204 204
 		}
205 205
 
206
-		if ( ! empty( $args['selected'] ) ) {
206
+		if ( ! empty($args['selected'])) {
207 207
 
208 208
 			// If a selected customer has been specified, we need to ensure it's in the initial list of customers displayed.
209
-			if ( ! array_key_exists( $args['selected'], $options ) ) {
209
+			if ( ! array_key_exists($args['selected'], $options)) {
210 210
 
211
-				$donor = new Give_Donor( $args['selected'] );
211
+				$donor = new Give_Donor($args['selected']);
212 212
 
213
-				if ( $donor ) {
213
+				if ($donor) {
214 214
 
215
-					$options[ absint( $args['selected'] ) ] = esc_html( $donor->name . ' (' . $donor->email . ')' );
215
+					$options[absint($args['selected'])] = esc_html($donor->name.' ('.$donor->email.')');
216 216
 
217 217
 				}
218 218
 			}
219 219
 		}
220 220
 
221
-		$output = $this->select( array(
221
+		$output = $this->select(array(
222 222
 			'name'             => $args['name'],
223 223
 			'selected'         => $args['selected'],
224 224
 			'id'               => $args['id'],
225
-			'class'            => $args['class'] . ' give-customer-select',
225
+			'class'            => $args['class'].' give-customer-select',
226 226
 			'options'          => $options,
227 227
 			'multiple'         => $args['multiple'],
228 228
 			'chosen'           => $args['chosen'],
229 229
 			'show_option_all'  => false,
230 230
 			'show_option_none' => false,
231 231
 			'data'             => $args['data'],
232
-		) );
232
+		));
233 233
 
234 234
 		return $output;
235 235
 	}
@@ -248,21 +248,21 @@  discard block
 block discarded – undo
248 248
 	 *
249 249
 	 * @return string           Categories dropdown.
250 250
 	 */
251
-	public function category_dropdown( $name = 'give_forms_categories', $selected = 0, $args = array() ) {
252
-		$categories = get_terms( 'give_forms_category', apply_filters( 'give_forms_category_dropdown', array() ) );
251
+	public function category_dropdown($name = 'give_forms_categories', $selected = 0, $args = array()) {
252
+		$categories = get_terms('give_forms_category', apply_filters('give_forms_category_dropdown', array()));
253 253
 		$options    = array();
254 254
 
255
-		foreach ( $categories as $category ) {
256
-			$options[ absint( $category->term_id ) ] = esc_html( $category->name );
255
+		foreach ($categories as $category) {
256
+			$options[absint($category->term_id)] = esc_html($category->name);
257 257
 		}
258 258
 
259
-		$output = $this->select( wp_parse_args( $args, array(
259
+		$output = $this->select(wp_parse_args($args, array(
260 260
 			'name'             => $name,
261 261
 			'selected'         => $selected,
262 262
 			'options'          => $options,
263
-			'show_option_all'  => esc_html__( 'All Categories', 'give' ),
263
+			'show_option_all'  => esc_html__('All Categories', 'give'),
264 264
 			'show_option_none' => false,
265
-		) ) );
265
+		)));
266 266
 
267 267
 		return $output;
268 268
 	}
@@ -281,21 +281,21 @@  discard block
 block discarded – undo
281 281
 	 *
282 282
 	 * @return string           Tags dropdown.
283 283
 	 */
284
-	public function tags_dropdown( $name = 'give_forms_tags', $selected = 0, $args = array() ) {
285
-		$tags    = get_terms( 'give_forms_tag', apply_filters( 'give_forms_tag_dropdown', array() ) );
284
+	public function tags_dropdown($name = 'give_forms_tags', $selected = 0, $args = array()) {
285
+		$tags    = get_terms('give_forms_tag', apply_filters('give_forms_tag_dropdown', array()));
286 286
 		$options = array();
287 287
 
288
-		foreach ( $tags as $tag ) {
289
-			$options[ absint( $tag->term_id ) ] = esc_html( $tag->name );
288
+		foreach ($tags as $tag) {
289
+			$options[absint($tag->term_id)] = esc_html($tag->name);
290 290
 		}
291 291
 
292
-		$output = $this->select( wp_parse_args( $args, array(
292
+		$output = $this->select(wp_parse_args($args, array(
293 293
 			'name'             => $name,
294 294
 			'selected'         => $selected,
295 295
 			'options'          => $options,
296
-			'show_option_all'  => esc_html__( 'All Tags', 'give' ),
296
+			'show_option_all'  => esc_html__('All Tags', 'give'),
297 297
 			'show_option_none' => false,
298
-		) ) );
298
+		)));
299 299
 
300 300
 		return $output;
301 301
 	}
@@ -315,25 +315,25 @@  discard block
 block discarded – undo
315 315
 	 *
316 316
 	 * @return string               Years dropdown.
317 317
 	 */
318
-	public function year_dropdown( $name = 'year', $selected = 0, $years_before = 5, $years_after = 0 ) {
319
-		$current    = date( 'Y' );
320
-		$start_year = $current - absint( $years_before );
321
-		$end_year   = $current + absint( $years_after );
322
-		$selected   = empty( $selected ) ? date( 'Y' ) : $selected;
318
+	public function year_dropdown($name = 'year', $selected = 0, $years_before = 5, $years_after = 0) {
319
+		$current    = date('Y');
320
+		$start_year = $current - absint($years_before);
321
+		$end_year   = $current + absint($years_after);
322
+		$selected   = empty($selected) ? date('Y') : $selected;
323 323
 		$options    = array();
324 324
 
325
-		while ( $start_year <= $end_year ) {
326
-			$options[ absint( $start_year ) ] = $start_year;
327
-			$start_year ++;
325
+		while ($start_year <= $end_year) {
326
+			$options[absint($start_year)] = $start_year;
327
+			$start_year++;
328 328
 		}
329 329
 
330
-		$output = $this->select( array(
330
+		$output = $this->select(array(
331 331
 			'name'             => $name,
332 332
 			'selected'         => $selected,
333 333
 			'options'          => $options,
334 334
 			'show_option_all'  => false,
335 335
 			'show_option_none' => false,
336
-		) );
336
+		));
337 337
 
338 338
 		return $output;
339 339
 	}
@@ -351,23 +351,23 @@  discard block
 block discarded – undo
351 351
 	 *
352 352
 	 * @return string           Months dropdown.
353 353
 	 */
354
-	public function month_dropdown( $name = 'month', $selected = 0 ) {
354
+	public function month_dropdown($name = 'month', $selected = 0) {
355 355
 		$month    = 1;
356 356
 		$options  = array();
357
-		$selected = empty( $selected ) ? date( 'n' ) : $selected;
357
+		$selected = empty($selected) ? date('n') : $selected;
358 358
 
359
-		while ( $month <= 12 ) {
360
-			$options[ absint( $month ) ] = give_month_num_to_name( $month );
361
-			$month ++;
359
+		while ($month <= 12) {
360
+			$options[absint($month)] = give_month_num_to_name($month);
361
+			$month++;
362 362
 		}
363 363
 
364
-		$output = $this->select( array(
364
+		$output = $this->select(array(
365 365
 			'name'             => $name,
366 366
 			'selected'         => $selected,
367 367
 			'options'          => $options,
368 368
 			'show_option_all'  => false,
369 369
 			'show_option_none' => false,
370
-		) );
370
+		));
371 371
 
372 372
 		return $output;
373 373
 	}
@@ -384,7 +384,7 @@  discard block
 block discarded – undo
384 384
 	 *
385 385
 	 * @return string      The dropdown.
386 386
 	 */
387
-	public function select( $args = array() ) {
387
+	public function select($args = array()) {
388 388
 		$defaults = array(
389 389
 			'options'          => array(),
390 390
 			'name'             => null,
@@ -395,67 +395,67 @@  discard block
 block discarded – undo
395 395
 			'placeholder'      => null,
396 396
 			'multiple'         => false,
397 397
 			'select_atts'      => false,
398
-			'show_option_all'  => __( 'All', 'give' ),
399
-			'show_option_none' => __( 'None', 'give' ),
398
+			'show_option_all'  => __('All', 'give'),
399
+			'show_option_none' => __('None', 'give'),
400 400
 			'data'             => array(),
401 401
 			'readonly'         => false,
402 402
 			'disabled'         => false,
403 403
 		);
404 404
 
405
-		$args = wp_parse_args( $args, $defaults );
405
+		$args = wp_parse_args($args, $defaults);
406 406
 
407 407
 		$data_elements = '';
408
-		foreach ( $args['data'] as $key => $value ) {
409
-			$data_elements .= ' data-' . esc_attr( $key ) . '="' . esc_attr( $value ) . '"';
408
+		foreach ($args['data'] as $key => $value) {
409
+			$data_elements .= ' data-'.esc_attr($key).'="'.esc_attr($value).'"';
410 410
 		}
411 411
 
412
-		if ( $args['multiple'] ) {
412
+		if ($args['multiple']) {
413 413
 			$multiple = ' MULTIPLE';
414 414
 		} else {
415 415
 			$multiple = '';
416 416
 		}
417 417
 
418
-		if ( $args['chosen'] ) {
418
+		if ($args['chosen']) {
419 419
 			$args['class'] .= ' give-select-chosen';
420 420
 		}
421 421
 
422
-		if ( $args['placeholder'] ) {
422
+		if ($args['placeholder']) {
423 423
 			$placeholder = $args['placeholder'];
424 424
 		} else {
425 425
 			$placeholder = '';
426 426
 		}
427 427
 
428
-		$output = '<select name="' . esc_attr( $args['name'] ) . '" id="' . esc_attr( sanitize_key( str_replace( '-', '_', $args['id'] ) ) ) . '" class="give-select ' . esc_attr( $args['class'] ) . '"' . $multiple . ' ' . $args['select_atts'] . ' data-placeholder="' . $placeholder . '"' . $data_elements . '>';
428
+		$output = '<select name="'.esc_attr($args['name']).'" id="'.esc_attr(sanitize_key(str_replace('-', '_', $args['id']))).'" class="give-select '.esc_attr($args['class']).'"'.$multiple.' '.$args['select_atts'].' data-placeholder="'.$placeholder.'"'.$data_elements.'>';
429 429
 
430
-		if ( $args['show_option_all'] ) {
431
-			if ( $args['multiple'] ) {
432
-				$selected = selected( true, in_array( 0, $args['selected'] ), false );
430
+		if ($args['show_option_all']) {
431
+			if ($args['multiple']) {
432
+				$selected = selected(true, in_array(0, $args['selected']), false);
433 433
 			} else {
434
-				$selected = selected( $args['selected'], 0, false );
434
+				$selected = selected($args['selected'], 0, false);
435 435
 			}
436
-			$output .= '<option value="all"' . $selected . '>' . esc_html( $args['show_option_all'] ) . '</option>';
436
+			$output .= '<option value="all"'.$selected.'>'.esc_html($args['show_option_all']).'</option>';
437 437
 		}
438 438
 
439
-		if ( ! empty( $args['options'] ) ) {
439
+		if ( ! empty($args['options'])) {
440 440
 
441
-			if ( $args['show_option_none'] ) {
442
-				if ( $args['multiple'] ) {
443
-					$selected = selected( true, in_array( - 1, $args['selected'] ), false );
441
+			if ($args['show_option_none']) {
442
+				if ($args['multiple']) {
443
+					$selected = selected(true, in_array( -1, $args['selected'] ), false);
444 444
 				} else {
445
-					$selected = selected( $args['selected'], - 1, false );
445
+					$selected = selected($args['selected'], - 1, false);
446 446
 				}
447
-				$output .= '<option value="-1"' . $selected . '>' . esc_html( $args['show_option_none'] ) . '</option>';
447
+				$output .= '<option value="-1"'.$selected.'>'.esc_html($args['show_option_none']).'</option>';
448 448
 			}
449 449
 
450
-			foreach ( $args['options'] as $key => $option ) {
450
+			foreach ($args['options'] as $key => $option) {
451 451
 
452
-				if ( $args['multiple'] && is_array( $args['selected'] ) ) {
453
-					$selected = selected( true, in_array( $key, $args['selected'] ), false );
452
+				if ($args['multiple'] && is_array($args['selected'])) {
453
+					$selected = selected(true, in_array($key, $args['selected']), false);
454 454
 				} else {
455
-					$selected = selected( $args['selected'], $key, false );
455
+					$selected = selected($args['selected'], $key, false);
456 456
 				}
457 457
 
458
-				$output .= '<option value="' . esc_attr( $key ) . '"' . $selected . '>' . esc_html( $option ) . '</option>';
458
+				$output .= '<option value="'.esc_attr($key).'"'.$selected.'>'.esc_html($option).'</option>';
459 459
 			}
460 460
 		}
461 461
 
@@ -476,7 +476,7 @@  discard block
 block discarded – undo
476 476
 	 *
477 477
 	 * @return string      The checkbox.
478 478
 	 */
479
-	public function checkbox( $args = array() ) {
479
+	public function checkbox($args = array()) {
480 480
 		$defaults = array(
481 481
 			'name'    => null,
482 482
 			'current' => null,
@@ -487,16 +487,16 @@  discard block
 block discarded – undo
487 487
 			),
488 488
 		);
489 489
 
490
-		$args = wp_parse_args( $args, $defaults );
490
+		$args = wp_parse_args($args, $defaults);
491 491
 
492 492
 		$options = '';
493
-		if ( ! empty( $args['options']['disabled'] ) ) {
493
+		if ( ! empty($args['options']['disabled'])) {
494 494
 			$options .= ' disabled="disabled"';
495
-		} elseif ( ! empty( $args['options']['readonly'] ) ) {
495
+		} elseif ( ! empty($args['options']['readonly'])) {
496 496
 			$options .= ' readonly';
497 497
 		}
498 498
 
499
-		$output = '<input type="checkbox"' . $options . ' name="' . esc_attr( $args['name'] ) . '" id="' . esc_attr( $args['name'] ) . '" class="' . $args['class'] . ' ' . esc_attr( $args['name'] ) . '" ' . checked( 1, $args['current'], false ) . ' />';
499
+		$output = '<input type="checkbox"'.$options.' name="'.esc_attr($args['name']).'" id="'.esc_attr($args['name']).'" class="'.$args['class'].' '.esc_attr($args['name']).'" '.checked(1, $args['current'], false).' />';
500 500
 
501 501
 		return $output;
502 502
 	}
@@ -513,22 +513,22 @@  discard block
 block discarded – undo
513 513
 	 *
514 514
 	 * @return string      The text field.
515 515
 	 */
516
-	public function text( $args = array() ) {
516
+	public function text($args = array()) {
517 517
 		// Backwards compatibility.
518
-		if ( func_num_args() > 1 ) {
518
+		if (func_num_args() > 1) {
519 519
 			$args = func_get_args();
520 520
 
521 521
 			$name  = $args[0];
522
-			$value = isset( $args[1] ) ? $args[1] : '';
523
-			$label = isset( $args[2] ) ? $args[2] : '';
524
-			$desc  = isset( $args[3] ) ? $args[3] : '';
522
+			$value = isset($args[1]) ? $args[1] : '';
523
+			$label = isset($args[2]) ? $args[2] : '';
524
+			$desc  = isset($args[3]) ? $args[3] : '';
525 525
 		}
526 526
 
527 527
 		$defaults = array(
528
-			'name'         => isset( $name ) ? $name : 'text',
529
-			'value'        => isset( $value ) ? $value : null,
530
-			'label'        => isset( $label ) ? $label : null,
531
-			'desc'         => isset( $desc ) ? $desc : null,
528
+			'name'         => isset($name) ? $name : 'text',
529
+			'value'        => isset($value) ? $value : null,
530
+			'label'        => isset($label) ? $label : null,
531
+			'desc'         => isset($desc) ? $desc : null,
532 532
 			'placeholder'  => '',
533 533
 			'class'        => 'regular-text',
534 534
 			'disabled'     => false,
@@ -536,29 +536,29 @@  discard block
 block discarded – undo
536 536
 			'data'         => false,
537 537
 		);
538 538
 
539
-		$args = wp_parse_args( $args, $defaults );
539
+		$args = wp_parse_args($args, $defaults);
540 540
 
541 541
 		$disabled = '';
542
-		if ( $args['disabled'] ) {
542
+		if ($args['disabled']) {
543 543
 			$disabled = ' disabled="disabled"';
544 544
 		}
545 545
 
546 546
 		$data = '';
547
-		if ( ! empty( $args['data'] ) ) {
548
-			foreach ( $args['data'] as $key => $value ) {
549
-				$data .= 'data-' . $key . '="' . $value . '" ';
547
+		if ( ! empty($args['data'])) {
548
+			foreach ($args['data'] as $key => $value) {
549
+				$data .= 'data-'.$key.'="'.$value.'" ';
550 550
 			}
551 551
 		}
552 552
 
553
-		$output = '<span id="give-' . sanitize_key( $args['name'] ) . '-wrap">';
553
+		$output = '<span id="give-'.sanitize_key($args['name']).'-wrap">';
554 554
 
555
-		$output .= '<label class="give-label" for="give-' . sanitize_key( $args['name'] ) . '">' . esc_html( $args['label'] ) . '</label>';
555
+		$output .= '<label class="give-label" for="give-'.sanitize_key($args['name']).'">'.esc_html($args['label']).'</label>';
556 556
 
557
-		if ( ! empty( $args['desc'] ) ) {
558
-			$output .= '<span class="give-description">' . esc_html( $args['desc'] ) . '</span>';
557
+		if ( ! empty($args['desc'])) {
558
+			$output .= '<span class="give-description">'.esc_html($args['desc']).'</span>';
559 559
 		}
560 560
 
561
-		$output .= '<input type="text" name="' . esc_attr( $args['name'] ) . '" id="' . esc_attr( $args['name'] ) . '" autocomplete="' . esc_attr( $args['autocomplete'] ) . '" value="' . esc_attr( $args['value'] ) . '" placeholder="' . esc_attr( $args['placeholder'] ) . '" class="' . $args['class'] . '" ' . $data . '' . $disabled . '/>';
561
+		$output .= '<input type="text" name="'.esc_attr($args['name']).'" id="'.esc_attr($args['name']).'" autocomplete="'.esc_attr($args['autocomplete']).'" value="'.esc_attr($args['value']).'" placeholder="'.esc_attr($args['placeholder']).'" class="'.$args['class'].'" '.$data.''.$disabled.'/>';
562 562
 
563 563
 		$output .= '</span>';
564 564
 
@@ -577,15 +577,15 @@  discard block
 block discarded – undo
577 577
 	 *
578 578
 	 * @return string      The date picker.
579 579
 	 */
580
-	public function date_field( $args = array() ) {
580
+	public function date_field($args = array()) {
581 581
 
582
-		if ( empty( $args['class'] ) ) {
582
+		if (empty($args['class'])) {
583 583
 			$args['class'] = 'give_datepicker';
584
-		} elseif ( ! strpos( $args['class'], 'give_datepicker' ) ) {
584
+		} elseif ( ! strpos($args['class'], 'give_datepicker')) {
585 585
 			$args['class'] .= ' give_datepicker';
586 586
 		}
587 587
 
588
-		return $this->text( $args );
588
+		return $this->text($args);
589 589
 	}
590 590
 
591 591
 	/**
@@ -600,7 +600,7 @@  discard block
 block discarded – undo
600 600
 	 *
601 601
 	 * @return string      The textarea.
602 602
 	 */
603
-	public function textarea( $args = array() ) {
603
+	public function textarea($args = array()) {
604 604
 		$defaults = array(
605 605
 			'name'     => 'textarea',
606 606
 			'value'    => null,
@@ -610,21 +610,21 @@  discard block
 block discarded – undo
610 610
 			'disabled' => false,
611 611
 		);
612 612
 
613
-		$args = wp_parse_args( $args, $defaults );
613
+		$args = wp_parse_args($args, $defaults);
614 614
 
615 615
 		$disabled = '';
616
-		if ( $args['disabled'] ) {
616
+		if ($args['disabled']) {
617 617
 			$disabled = ' disabled="disabled"';
618 618
 		}
619 619
 
620
-		$output = '<span id="give-' . sanitize_key( $args['name'] ) . '-wrap">';
620
+		$output = '<span id="give-'.sanitize_key($args['name']).'-wrap">';
621 621
 
622
-		$output .= '<label class="give-label" for="give-' . sanitize_key( $args['name'] ) . '">' . esc_html( $args['label'] ) . '</label>';
622
+		$output .= '<label class="give-label" for="give-'.sanitize_key($args['name']).'">'.esc_html($args['label']).'</label>';
623 623
 
624
-		$output .= '<textarea name="' . esc_attr( $args['name'] ) . '" id="' . esc_attr( $args['name'] ) . '" class="' . $args['class'] . '"' . $disabled . '>' . esc_attr( $args['value'] ) . '</textarea>';
624
+		$output .= '<textarea name="'.esc_attr($args['name']).'" id="'.esc_attr($args['name']).'" class="'.$args['class'].'"'.$disabled.'>'.esc_attr($args['value']).'</textarea>';
625 625
 
626
-		if ( ! empty( $args['desc'] ) ) {
627
-			$output .= '<span class="give-description">' . esc_html( $args['desc'] ) . '</span>';
626
+		if ( ! empty($args['desc'])) {
627
+			$output .= '<span class="give-description">'.esc_html($args['desc']).'</span>';
628 628
 		}
629 629
 
630 630
 		$output .= '</span>';
@@ -644,7 +644,7 @@  discard block
 block discarded – undo
644 644
 	 *
645 645
 	 * @return string      The text field with ajax search.
646 646
 	 */
647
-	public function ajax_user_search( $args = array() ) {
647
+	public function ajax_user_search($args = array()) {
648 648
 
649 649
 		$defaults = array(
650 650
 			'name'        => 'users',
@@ -655,13 +655,13 @@  discard block
 block discarded – undo
655 655
 			'chosen'      => true,
656 656
 			'number'      => 30,
657 657
 			'select_atts' => '',
658
-			'placeholder' => __( 'Select a user', 'give' ),
658
+			'placeholder' => __('Select a user', 'give'),
659 659
 			'data'        => array(
660 660
 				'search-type' => 'user',
661 661
 			),
662 662
 		);
663 663
 
664
-		$args = wp_parse_args( $args, $defaults );
664
+		$args = wp_parse_args($args, $defaults);
665 665
 
666 666
 		// Set initial args.
667 667
 		$get_users_args = array(
@@ -670,31 +670,31 @@  discard block
 block discarded – undo
670 670
 
671 671
 		// Ensure selected user is not included in initial query.
672 672
 		// This is because sites with many users, it's not a guarantee the selected user will be returned.
673
-		if ( ! empty( $args['selected'] ) ) {
673
+		if ( ! empty($args['selected'])) {
674 674
 			$get_users_args['exclude'] = $args['selected'];
675 675
 		}
676 676
 
677 677
 		// Initial users array.
678
-		$users = apply_filters( 'give_ajax_user_search_initial_results', get_users( $get_users_args ), $args );
678
+		$users = apply_filters('give_ajax_user_search_initial_results', get_users($get_users_args), $args);
679 679
 
680 680
 		// Now add the selected user to the $users array if the arg is present.
681
-		if ( ! empty( $args['selected'] ) ) {
682
-			$selected_user =  apply_filters( 'give_ajax_user_search_selected_results', get_users( "include={$args['selected']}" ), $args );;
683
-			$users         = array_merge( $users, $selected_user );
681
+		if ( ! empty($args['selected'])) {
682
+			$selected_user = apply_filters('give_ajax_user_search_selected_results', get_users("include={$args['selected']}"), $args); ;
683
+			$users         = array_merge($users, $selected_user);
684 684
 		}
685 685
 
686 686
 		$options = array();
687 687
 
688
-		if ( $users ) {
688
+		if ($users) {
689 689
 			$options[0] = $args['placeholder'];
690
-			foreach ( $users as $user ) {
691
-				$options[ absint( $user->ID ) ] = esc_html( $user->user_login . ' (' . $user->user_email . ')' );
690
+			foreach ($users as $user) {
691
+				$options[absint($user->ID)] = esc_html($user->user_login.' ('.$user->user_email.')');
692 692
 			}
693 693
 		} else {
694
-			$options[0] = __( 'No users found.', 'give' );
694
+			$options[0] = __('No users found.', 'give');
695 695
 		}
696 696
 
697
-		$output = $this->select( array(
697
+		$output = $this->select(array(
698 698
 			'name'             => $args['name'],
699 699
 			'selected'         => $args['selected'],
700 700
 			'id'               => $args['id'],
@@ -707,7 +707,7 @@  discard block
 block discarded – undo
707 707
 			'show_option_all'  => false,
708 708
 			'show_option_none' => false,
709 709
 			'data'             => $args['data'],
710
-		) );
710
+		));
711 711
 
712 712
 		return $output;
713 713
 
Please login to merge, or discard this patch.