Completed
Push — master ( 47e416...82a250 )
by Devin
12s
created
includes/emails/class-give-email-tags.php 2 patches
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,6 +50,7 @@  discard block
 block discarded – undo
50 50
 	 *
51 51
 	 * @param string   $tag  Email tag to be replace in email
52 52
 	 * @param callable $func Hook to run when email tag is found
53
+	 * @param string $description
53 54
 	 */
54 55
 	public function add( $tag, $description, $func ) {
55 56
 		if ( is_callable( $func ) ) {
@@ -477,7 +478,7 @@  discard block
 block discarded – undo
477 478
  *
478 479
  * @param int $payment_id
479 480
  *
480
- * @return int payment_id
481
+ * @return string payment_id
481 482
  */
482 483
 function give_email_tag_payment_id( $payment_id ) {
483 484
 	return give_get_payment_number( $payment_id );
Please login to merge, or discard this patch.
Spacing   +93 added lines, -93 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
  */
24 24
 
25 25
 // Exit if accessed directly
26
-if ( ! defined( 'ABSPATH' ) ) {
26
+if ( ! defined('ABSPATH')) {
27 27
 	exit;
28 28
 }
29 29
 
@@ -54,9 +54,9 @@  discard block
 block discarded – undo
54 54
 	 * @param string $tag Email tag to be replace in email
55 55
 	 * @param callable $func Hook to run when email tag is found
56 56
 	 */
57
-	public function add( $tag, $description, $func ) {
58
-		if ( is_callable( $func ) ) {
59
-			$this->tags[ $tag ] = array(
57
+	public function add($tag, $description, $func) {
58
+		if (is_callable($func)) {
59
+			$this->tags[$tag] = array(
60 60
 				'tag'         => $tag,
61 61
 				'description' => $description,
62 62
 				'func'        => $func
@@ -71,8 +71,8 @@  discard block
 block discarded – undo
71 71
 	 *
72 72
 	 * @param string $tag Email tag to remove hook from
73 73
 	 */
74
-	public function remove( $tag ) {
75
-		unset( $this->tags[ $tag ] );
74
+	public function remove($tag) {
75
+		unset($this->tags[$tag]);
76 76
 	}
77 77
 
78 78
 	/**
@@ -84,8 +84,8 @@  discard block
 block discarded – undo
84 84
 	 *
85 85
 	 * @return bool
86 86
 	 */
87
-	public function email_tag_exists( $tag ) {
88
-		return array_key_exists( $tag, $this->tags );
87
+	public function email_tag_exists($tag) {
88
+		return array_key_exists($tag, $this->tags);
89 89
 	}
90 90
 
91 91
 	/**
@@ -109,16 +109,16 @@  discard block
 block discarded – undo
109 109
 	 *
110 110
 	 * @return string Content with email tags filtered out.
111 111
 	 */
112
-	public function do_tags( $content, $payment_id ) {
112
+	public function do_tags($content, $payment_id) {
113 113
 
114 114
 		// Check if there is atleast one tag added
115
-		if ( empty( $this->tags ) || ! is_array( $this->tags ) ) {
115
+		if (empty($this->tags) || ! is_array($this->tags)) {
116 116
 			return $content;
117 117
 		}
118 118
 
119 119
 		$this->payment_id = $payment_id;
120 120
 
121
-		$new_content = preg_replace_callback( "/{([A-z0-9\-\_]+)}/s", array( $this, 'do_tag' ), $content );
121
+		$new_content = preg_replace_callback("/{([A-z0-9\-\_]+)}/s", array($this, 'do_tag'), $content);
122 122
 
123 123
 		$this->payment_id = null;
124 124
 
@@ -134,17 +134,17 @@  discard block
 block discarded – undo
134 134
 	 *
135 135
 	 * @return mixed
136 136
 	 */
137
-	public function do_tag( $m ) {
137
+	public function do_tag($m) {
138 138
 
139 139
 		// Get tag
140 140
 		$tag = $m[1];
141 141
 
142 142
 		// Return tag if tag not set
143
-		if ( ! $this->email_tag_exists( $tag ) ) {
143
+		if ( ! $this->email_tag_exists($tag)) {
144 144
 			return $m[0];
145 145
 		}
146 146
 
147
-		return call_user_func( $this->tags[ $tag ]['func'], $this->payment_id, $tag );
147
+		return call_user_func($this->tags[$tag]['func'], $this->payment_id, $tag);
148 148
 	}
149 149
 
150 150
 }
@@ -158,8 +158,8 @@  discard block
 block discarded – undo
158 158
  * @param string $description Description of the email tag added
159 159
  * @param callable $func Hook to run when email tag is found
160 160
  */
161
-function give_add_email_tag( $tag, $description, $func ) {
162
-	Give()->email_tags->add( $tag, $description, $func );
161
+function give_add_email_tag($tag, $description, $func) {
162
+	Give()->email_tags->add($tag, $description, $func);
163 163
 }
164 164
 
165 165
 /**
@@ -169,8 +169,8 @@  discard block
 block discarded – undo
169 169
  *
170 170
  * @param string $tag Email tag to remove hook from
171 171
  */
172
-function give_remove_email_tag( $tag ) {
173
-	Give()->email_tags->remove( $tag );
172
+function give_remove_email_tag($tag) {
173
+	Give()->email_tags->remove($tag);
174 174
 }
175 175
 
176 176
 /**
@@ -182,8 +182,8 @@  discard block
 block discarded – undo
182 182
  *
183 183
  * @return bool
184 184
  */
185
-function give_email_tag_exists( $tag ) {
186
-	return Give()->email_tags->email_tag_exists( $tag );
185
+function give_email_tag_exists($tag) {
186
+	return Give()->email_tags->email_tag_exists($tag);
187 187
 }
188 188
 
189 189
 /**
@@ -212,13 +212,13 @@  discard block
 block discarded – undo
212 212
 	$email_tags = give_get_email_tags();
213 213
 
214 214
 	// Check
215
-	if ( count( $email_tags ) > 0 ) {
215
+	if (count($email_tags) > 0) {
216 216
 
217 217
 		// Loop
218
-		foreach ( $email_tags as $email_tag ) {
218
+		foreach ($email_tags as $email_tag) {
219 219
 
220 220
 			// Add email tag to list
221
-			$list .= '<code>{' . $email_tag['tag'] . '}</code> - ' . $email_tag['description'] . '<br/>';
221
+			$list .= '<code>{'.$email_tag['tag'].'}</code> - '.$email_tag['description'].'<br/>';
222 222
 
223 223
 		}
224 224
 
@@ -238,13 +238,13 @@  discard block
 block discarded – undo
238 238
  *
239 239
  * @return string Content with email tags filtered out.
240 240
  */
241
-function give_do_email_tags( $content, $payment_id ) {
241
+function give_do_email_tags($content, $payment_id) {
242 242
 
243 243
 	// Replace all tags
244
-	$content = Give()->email_tags->do_tags( $content, $payment_id );
244
+	$content = Give()->email_tags->do_tags($content, $payment_id);
245 245
 
246 246
 	// Maintaining backwards compatibility
247
-	$content = apply_filters( 'give_email_template_tags', $content, give_get_payment_meta( $payment_id ), $payment_id );
247
+	$content = apply_filters('give_email_template_tags', $content, give_get_payment_meta($payment_id), $payment_id);
248 248
 
249 249
 	// Return content
250 250
 	return $content;
@@ -256,10 +256,10 @@  discard block
 block discarded – undo
256 256
  * @since 1.0
257 257
  */
258 258
 function give_load_email_tags() {
259
-	do_action( 'give_add_email_tags' );
259
+	do_action('give_add_email_tags');
260 260
 }
261 261
 
262
-add_action( 'init', 'give_load_email_tags', - 999 );
262
+add_action('init', 'give_load_email_tags', - 999);
263 263
 
264 264
 /**
265 265
  * Add default Give email template tags
@@ -272,82 +272,82 @@  discard block
 block discarded – undo
272 272
 	$email_tags = array(
273 273
 		array(
274 274
 			'tag'         => 'donation',
275
-			'description' => esc_html( 'The name of completed donation form and the donation level chosen if applicable.', 'give' ),
275
+			'description' => esc_html('The name of completed donation form and the donation level chosen if applicable.', 'give'),
276 276
 			'function'    => 'give_email_tag_donation'
277 277
 		),
278 278
 		array(
279 279
 			'tag'         => 'name',
280
-			'description' => esc_html( 'The donor\'s first name.', 'give' ),
280
+			'description' => esc_html('The donor\'s first name.', 'give'),
281 281
 			'function'    => 'give_email_tag_first_name'
282 282
 		),
283 283
 		array(
284 284
 			'tag'         => 'fullname',
285
-			'description' => esc_html( 'The donor\'s full name, first and last.', 'give' ),
285
+			'description' => esc_html('The donor\'s full name, first and last.', 'give'),
286 286
 			'function'    => 'give_email_tag_fullname'
287 287
 		),
288 288
 		array(
289 289
 			'tag'         => 'username',
290
-			'description' => esc_html( 'The donor\'s user name on the site, if they registered an account.', 'give' ),
290
+			'description' => esc_html('The donor\'s user name on the site, if they registered an account.', 'give'),
291 291
 			'function'    => 'give_email_tag_username'
292 292
 		),
293 293
 		array(
294 294
 			'tag'         => 'user_email',
295
-			'description' => esc_html( 'The donor\'s email address.', 'give' ),
295
+			'description' => esc_html('The donor\'s email address.', 'give'),
296 296
 			'function'    => 'give_email_tag_user_email'
297 297
 		),
298 298
 		array(
299 299
 			'tag'         => 'billing_address',
300
-			'description' => esc_html( 'The donor\'s billing address.', 'give' ),
300
+			'description' => esc_html('The donor\'s billing address.', 'give'),
301 301
 			'function'    => 'give_email_tag_billing_address'
302 302
 		),
303 303
 		array(
304 304
 			'tag'         => 'date',
305
-			'description' => esc_html( 'The date of the donation.', 'give' ),
305
+			'description' => esc_html('The date of the donation.', 'give'),
306 306
 			'function'    => 'give_email_tag_date'
307 307
 		),
308 308
 		array(
309 309
 			'tag'         => 'price',
310
-			'description' => esc_html( 'The total price of the donation.', 'give' ),
310
+			'description' => esc_html('The total price of the donation.', 'give'),
311 311
 			'function'    => 'give_email_tag_price'
312 312
 		),
313 313
 		array(
314 314
 			'tag'         => 'payment_id',
315
-			'description' => esc_html( 'The unique ID number for this donation.', 'give' ),
315
+			'description' => esc_html('The unique ID number for this donation.', 'give'),
316 316
 			'function'    => 'give_email_tag_payment_id'
317 317
 		),
318 318
 		array(
319 319
 			'tag'         => 'receipt_id',
320
-			'description' => esc_html( 'The unique ID number for this donation receipt.', 'give' ),
320
+			'description' => esc_html('The unique ID number for this donation receipt.', 'give'),
321 321
 			'function'    => 'give_email_tag_receipt_id'
322 322
 		),
323 323
 		array(
324 324
 			'tag'         => 'payment_method',
325
-			'description' => esc_html( 'The method of payment used for this donation.', 'give' ),
325
+			'description' => esc_html('The method of payment used for this donation.', 'give'),
326 326
 			'function'    => 'give_email_tag_payment_method'
327 327
 		),
328 328
 		array(
329 329
 			'tag'         => 'sitename',
330
-			'description' => esc_html( 'Your site name', 'give' ),
330
+			'description' => esc_html('Your site name', 'give'),
331 331
 			'function'    => 'give_email_tag_sitename'
332 332
 		),
333 333
 		array(
334 334
 			'tag'         => 'receipt_link',
335
-			'description' => esc_html( 'Adds a link so users can view their receipt directly on your website if they are unable to view it in the browser correctly.', 'give' ),
335
+			'description' => esc_html('Adds a link so users can view their receipt directly on your website if they are unable to view it in the browser correctly.', 'give'),
336 336
 			'function'    => 'give_email_tag_receipt_link'
337 337
 		),
338 338
 	);
339 339
 
340 340
 	// Apply give_email_tags filter
341
-	$email_tags = apply_filters( 'give_email_tags', $email_tags );
341
+	$email_tags = apply_filters('give_email_tags', $email_tags);
342 342
 
343 343
 	// Add email tags
344
-	foreach ( $email_tags as $email_tag ) {
345
-		give_add_email_tag( $email_tag['tag'], $email_tag['description'], $email_tag['function'] );
344
+	foreach ($email_tags as $email_tag) {
345
+		give_add_email_tag($email_tag['tag'], $email_tag['description'], $email_tag['function']);
346 346
 	}
347 347
 
348 348
 }
349 349
 
350
-add_action( 'give_add_email_tags', 'give_setup_email_tags' );
350
+add_action('give_add_email_tags', 'give_setup_email_tags');
351 351
 
352 352
 
353 353
 /**
@@ -358,15 +358,15 @@  discard block
 block discarded – undo
358 358
  *
359 359
  * @return string name
360 360
  */
361
-function give_email_tag_first_name( $payment_id ) {
362
-	$payment   = new Give_Payment( $payment_id );
361
+function give_email_tag_first_name($payment_id) {
362
+	$payment   = new Give_Payment($payment_id);
363 363
 	$user_info = $payment->user_info;
364 364
 
365
-	if ( empty( $user_info ) ) {
365
+	if (empty($user_info)) {
366 366
 		return '';
367 367
 	}
368 368
 
369
-	$email_name = give_get_email_names( $user_info );
369
+	$email_name = give_get_email_names($user_info);
370 370
 
371 371
 	return $email_name['name'];
372 372
 }
@@ -379,15 +379,15 @@  discard block
 block discarded – undo
379 379
  *
380 380
  * @return string fullname
381 381
  */
382
-function give_email_tag_fullname( $payment_id ) {
383
-	$payment   = new Give_Payment( $payment_id );
382
+function give_email_tag_fullname($payment_id) {
383
+	$payment   = new Give_Payment($payment_id);
384 384
 	$user_info = $payment->user_info;
385 385
 
386
-	if ( empty( $user_info ) ) {
386
+	if (empty($user_info)) {
387 387
 		return '';
388 388
 	}
389 389
 
390
-	$email_name = give_get_email_names( $user_info );
390
+	$email_name = give_get_email_names($user_info);
391 391
 
392 392
 	return $email_name['fullname'];
393 393
 }
@@ -400,15 +400,15 @@  discard block
 block discarded – undo
400 400
  *
401 401
  * @return string username
402 402
  */
403
-function give_email_tag_username( $payment_id ) {
404
-	$payment   = new Give_Payment( $payment_id );
403
+function give_email_tag_username($payment_id) {
404
+	$payment   = new Give_Payment($payment_id);
405 405
 	$user_info = $payment->user_info;
406 406
 
407
-	if ( empty( $user_info ) ) {
407
+	if (empty($user_info)) {
408 408
 		return '';
409 409
 	}
410 410
 
411
-	$email_name = give_get_email_names( $user_info );
411
+	$email_name = give_get_email_names($user_info);
412 412
 
413 413
 	return $email_name['username'];
414 414
 }
@@ -421,8 +421,8 @@  discard block
 block discarded – undo
421 421
  *
422 422
  * @return string user_email
423 423
  */
424
-function give_email_tag_user_email( $payment_id ) {
425
-	$payment = new Give_Payment( $payment_id );
424
+function give_email_tag_user_email($payment_id) {
425
+	$payment = new Give_Payment($payment_id);
426 426
 
427 427
 	return $payment->email;
428 428
 }
@@ -435,10 +435,10 @@  discard block
 block discarded – undo
435 435
  *
436 436
  * @return string billing_address
437 437
  */
438
-function give_email_tag_billing_address( $payment_id ) {
438
+function give_email_tag_billing_address($payment_id) {
439 439
 
440
-	$user_info    = give_get_payment_meta_user_info( $payment_id );
441
-	$user_address = ! empty( $user_info['address'] ) ? $user_info['address'] : array(
440
+	$user_info    = give_get_payment_meta_user_info($payment_id);
441
+	$user_address = ! empty($user_info['address']) ? $user_info['address'] : array(
442 442
 		'line1'   => '',
443 443
 		'line2'   => '',
444 444
 		'city'    => '',
@@ -447,11 +447,11 @@  discard block
 block discarded – undo
447 447
 		'zip'     => ''
448 448
 	);
449 449
 
450
-	$return = $user_address['line1'] . "\n";
451
-	if ( ! empty( $user_address['line2'] ) ) {
452
-		$return .= $user_address['line2'] . "\n";
450
+	$return = $user_address['line1']."\n";
451
+	if ( ! empty($user_address['line2'])) {
452
+		$return .= $user_address['line2']."\n";
453 453
 	}
454
-	$return .= $user_address['city'] . ' ' . $user_address['zip'] . ' ' . $user_address['state'] . "\n";
454
+	$return .= $user_address['city'].' '.$user_address['zip'].' '.$user_address['state']."\n";
455 455
 	$return .= $user_address['country'];
456 456
 
457 457
 	return $return;
@@ -465,10 +465,10 @@  discard block
 block discarded – undo
465 465
  *
466 466
  * @return string date
467 467
  */
468
-function give_email_tag_date( $payment_id ) {
469
-	$payment = new Give_Payment( $payment_id );
468
+function give_email_tag_date($payment_id) {
469
+	$payment = new Give_Payment($payment_id);
470 470
 
471
-	return date_i18n( get_option( 'date_format' ), strtotime( $payment->date ) );
471
+	return date_i18n(get_option('date_format'), strtotime($payment->date));
472 472
 }
473 473
 
474 474
 /**
@@ -479,11 +479,11 @@  discard block
 block discarded – undo
479 479
  *
480 480
  * @return string price
481 481
  */
482
-function give_email_tag_price( $payment_id ) {
483
-	$payment = new Give_Payment( $payment_id );
484
-	$price   = give_currency_filter( give_format_amount( $payment->total ), $payment->currency );
482
+function give_email_tag_price($payment_id) {
483
+	$payment = new Give_Payment($payment_id);
484
+	$price   = give_currency_filter(give_format_amount($payment->total), $payment->currency);
485 485
 
486
-	return html_entity_decode( $price, ENT_COMPAT, 'UTF-8' );
486
+	return html_entity_decode($price, ENT_COMPAT, 'UTF-8');
487 487
 }
488 488
 
489 489
 /**
@@ -494,8 +494,8 @@  discard block
 block discarded – undo
494 494
  *
495 495
  * @return int payment_id
496 496
  */
497
-function give_email_tag_payment_id( $payment_id ) {
498
-	$payment = new Give_Payment( $payment_id );
497
+function give_email_tag_payment_id($payment_id) {
498
+	$payment = new Give_Payment($payment_id);
499 499
 
500 500
 	return $payment->number;
501 501
 }
@@ -508,8 +508,8 @@  discard block
 block discarded – undo
508 508
  *
509 509
  * @return string receipt_id
510 510
  */
511
-function give_email_tag_receipt_id( $payment_id ) {
512
-	$payment = new Give_Payment( $payment_id );
511
+function give_email_tag_receipt_id($payment_id) {
512
+	$payment = new Give_Payment($payment_id);
513 513
 
514 514
 	return $payment->key;
515 515
 }
@@ -523,11 +523,11 @@  discard block
 block discarded – undo
523 523
  *
524 524
  * @return string $form_title
525 525
  */
526
-function give_email_tag_donation( $payment_id ) {
527
-	$payment    = new Give_Payment( $payment_id );
528
-	$form_title = strip_tags( give_get_payment_form_title( $payment->meta, false, '-' ) );
526
+function give_email_tag_donation($payment_id) {
527
+	$payment    = new Give_Payment($payment_id);
528
+	$form_title = strip_tags(give_get_payment_form_title($payment->meta, false, '-'));
529 529
 
530
-	return ! empty( $form_title ) ? $form_title : esc_html( 'There was an error retrieving this donation title.', 'give' );
530
+	return ! empty($form_title) ? $form_title : esc_html('There was an error retrieving this donation title.', 'give');
531 531
 
532 532
 }
533 533
 
@@ -539,10 +539,10 @@  discard block
 block discarded – undo
539 539
  *
540 540
  * @return string gateway
541 541
  */
542
-function give_email_tag_payment_method( $payment_id ) {
543
-	$payment = new Give_Payment( $payment_id );
542
+function give_email_tag_payment_method($payment_id) {
543
+	$payment = new Give_Payment($payment_id);
544 544
 
545
-	return give_get_gateway_checkout_label( $payment->gateway );
545
+	return give_get_gateway_checkout_label($payment->gateway);
546 546
 }
547 547
 
548 548
 /**
@@ -553,8 +553,8 @@  discard block
 block discarded – undo
553 553
  *
554 554
  * @return string sitename
555 555
  */
556
-function give_email_tag_sitename( $payment_id ) {
557
-	return wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES );
556
+function give_email_tag_sitename($payment_id) {
557
+	return wp_specialchars_decode(get_bloginfo('name'), ENT_QUOTES);
558 558
 }
559 559
 
560 560
 /**
@@ -566,19 +566,19 @@  discard block
 block discarded – undo
566 566
  *
567 567
  * @return string receipt_link
568 568
  */
569
-function give_email_tag_receipt_link( $payment_id ) {
569
+function give_email_tag_receipt_link($payment_id) {
570 570
 
571
-	$receipt_url = esc_url( add_query_arg( array(
572
-		'payment_key' => give_get_payment_key( $payment_id ),
571
+	$receipt_url = esc_url(add_query_arg(array(
572
+		'payment_key' => give_get_payment_key($payment_id),
573 573
 		'give_action' => 'view_receipt'
574
-	), home_url() ) );
575
-	$formatted   = sprintf(
574
+	), home_url()));
575
+	$formatted = sprintf(
576 576
 		'<a href="%1$s">%2$s</a>',
577 577
 		$receipt_url,
578
-		esc_html( 'View it in your browser', 'give' )
578
+		esc_html('View it in your browser', 'give')
579 579
 	);
580 580
 
581
-	if ( give_get_option( 'email_template' ) !== 'none' ) {
581
+	if (give_get_option('email_template') !== 'none') {
582 582
 		return $formatted;
583 583
 	} else {
584 584
 		return $receipt_url;
Please login to merge, or discard this patch.
includes/error-tracking.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
  *
66 66
  * @since 1.0
67 67
  * @uses  Give_Session::get()
68
- * @return mixed array if errors are present, false if none found
68
+ * @return string array if errors are present, false if none found
69 69
  */
70 70
 function give_get_errors() {
71 71
 	return Give()->session->get( 'give_errors' );
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
  * Register die handler for give_die()
127 127
  *
128 128
  * @since  1.0
129
- * @return void
129
+ * @return string|null
130 130
  */
131 131
 function _give_die_handler() {
132 132
 	if ( defined( 'GIVE_UNIT_TESTS' ) ) {
Please login to merge, or discard this patch.
Spacing   +30 added lines, -30 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
 
@@ -29,33 +29,33 @@  discard block
 block discarded – undo
29 29
  *
30 30
  * @return void
31 31
  */
32
-function give_print_errors( $form_id ) {
32
+function give_print_errors($form_id) {
33 33
 
34 34
 	$errors = give_get_errors();
35 35
 
36
-	$request_form_id = isset( $_REQUEST['form-id'] ) ? intval( $_REQUEST['form-id'] ) : 0;
36
+	$request_form_id = isset($_REQUEST['form-id']) ? intval($_REQUEST['form-id']) : 0;
37 37
 
38 38
 	//Sanity checks first: Ensure that gateway returned errors display on the appropriate form
39
-	if ( ! isset( $_POST['give_ajax'] ) && $request_form_id !== $form_id ) {
39
+	if ( ! isset($_POST['give_ajax']) && $request_form_id !== $form_id) {
40 40
 		return;
41 41
 	}
42 42
 
43
-	if ( $errors ) {
44
-		$classes = apply_filters( 'give_error_class', array(
43
+	if ($errors) {
44
+		$classes = apply_filters('give_error_class', array(
45 45
 			'give_errors'
46
-		) );
47
-		echo '<div class="' . implode( ' ', $classes ) . '">';
46
+		));
47
+		echo '<div class="'.implode(' ', $classes).'">';
48 48
 		// Loop error codes and display errors
49
-		foreach ( $errors as $error_id => $error ) {
50
-			echo '<div class="give_error" id="give_error_' . $error_id . '"><p><strong>' . esc_html( 'Error', 'give' ) . '</strong>: ' . $error . '</p></div>';
49
+		foreach ($errors as $error_id => $error) {
50
+			echo '<div class="give_error" id="give_error_'.$error_id.'"><p><strong>'.esc_html('Error', 'give').'</strong>: '.$error.'</p></div>';
51 51
 		}
52 52
 		echo '</div>';
53 53
 		give_clear_errors();
54 54
 	}
55 55
 }
56 56
 
57
-add_action( 'give_purchase_form_before_personal_info', 'give_print_errors' );
58
-add_action( 'give_ajax_checkout_errors', 'give_print_errors' );
57
+add_action('give_purchase_form_before_personal_info', 'give_print_errors');
58
+add_action('give_ajax_checkout_errors', 'give_print_errors');
59 59
 
60 60
 /**
61 61
  * Get Errors
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
  * @return mixed array if errors are present, false if none found
69 69
  */
70 70
 function give_get_errors() {
71
-	return Give()->session->get( 'give_errors' );
71
+	return Give()->session->get('give_errors');
72 72
 }
73 73
 
74 74
 /**
@@ -84,13 +84,13 @@  discard block
 block discarded – undo
84 84
  *
85 85
  * @return void
86 86
  */
87
-function give_set_error( $error_id, $error_message ) {
87
+function give_set_error($error_id, $error_message) {
88 88
 	$errors = give_get_errors();
89
-	if ( ! $errors ) {
89
+	if ( ! $errors) {
90 90
 		$errors = array();
91 91
 	}
92
-	$errors[ $error_id ] = $error_message;
93
-	Give()->session->set( 'give_errors', $errors );
92
+	$errors[$error_id] = $error_message;
93
+	Give()->session->set('give_errors', $errors);
94 94
 }
95 95
 
96 96
 /**
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
  * @return void
102 102
  */
103 103
 function give_clear_errors() {
104
-	Give()->session->set( 'give_errors', null );
104
+	Give()->session->set('give_errors', null);
105 105
 }
106 106
 
107 107
 /**
@@ -114,11 +114,11 @@  discard block
 block discarded – undo
114 114
  *
115 115
  * @return string
116 116
  */
117
-function give_unset_error( $error_id ) {
117
+function give_unset_error($error_id) {
118 118
 	$errors = give_get_errors();
119
-	if ( $errors ) {
120
-		unset( $errors[ $error_id ] );
121
-		Give()->session->set( 'give_errors', $errors );
119
+	if ($errors) {
120
+		unset($errors[$error_id]);
121
+		Give()->session->set('give_errors', $errors);
122 122
 	}
123 123
 }
124 124
 
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
  * @return void
130 130
  */
131 131
 function _give_die_handler() {
132
-	if ( defined( 'GIVE_UNIT_TESTS' ) ) {
132
+	if (defined('GIVE_UNIT_TESTS')) {
133 133
 		return '_give_die_handler';
134 134
 	} else {
135 135
 		die();
@@ -144,10 +144,10 @@  discard block
 block discarded – undo
144 144
  * @since  1.0
145 145
  * @return void
146 146
  */
147
-function give_die( $message = '', $title = '', $status = 400 ) {
148
-	add_filter( 'wp_die_ajax_handler', '_give_die_handler', 10, 3 );
149
-	add_filter( 'wp_die_handler', '_give_die_handler', 10, 3 );
150
-	wp_die( $message, $title, array( 'response' => $status ) );
147
+function give_die($message = '', $title = '', $status = 400) {
148
+	add_filter('wp_die_ajax_handler', '_give_die_handler', 10, 3);
149
+	add_filter('wp_die_handler', '_give_die_handler', 10, 3);
150
+	wp_die($message, $title, array('response' => $status));
151 151
 }
152 152
 
153 153
 /**
@@ -162,10 +162,10 @@  discard block
 block discarded – undo
162 162
  *
163 163
  * @return   string  $error
164 164
  */
165
-function give_output_error( $message, $echo = true, $error_id = 'warning' ) {
166
-	$error = '<div class="give_errors" id="give_error_' . $error_id . '"><p class="give_error  give_' . $error_id . '">' . $message . '</p></div>';
165
+function give_output_error($message, $echo = true, $error_id = 'warning') {
166
+	$error = '<div class="give_errors" id="give_error_'.$error_id.'"><p class="give_error  give_'.$error_id.'">'.$message.'</p></div>';
167 167
 
168
-	if ( $echo ) {
168
+	if ($echo) {
169 169
 		echo $error;
170 170
 	} else {
171 171
 		return $error;
Please login to merge, or discard this patch.
includes/admin/reporting/class-donor-reports-table.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -115,8 +115,8 @@
 block discarded – undo
115 115
 
116 116
 			case 'num_purchases' :
117 117
 				$value = '<a href="' .
118
-				         admin_url( '/edit.php?post_type=give_forms&page=give-payment-history&user=' . urlencode( $item['email'] )
119
-				         ) . '">' . esc_html( $item['num_purchases'] ) . '</a>';
118
+						 admin_url( '/edit.php?post_type=give_forms&page=give-payment-history&user=' . urlencode( $item['email'] )
119
+						 ) . '">' . esc_html( $item['num_purchases'] ) . '</a>';
120 120
 				break;
121 121
 
122 122
 			case 'amount_spent' :
Please login to merge, or discard this patch.
Spacing   +60 added lines, -60 removed lines patch added patch discarded remove patch
@@ -10,13 +10,13 @@  discard block
 block discarded – undo
10 10
  */
11 11
 
12 12
 // Exit if accessed directly
13
-if ( ! defined( 'ABSPATH' ) ) {
13
+if ( ! defined('ABSPATH')) {
14 14
 	exit;
15 15
 }
16 16
 
17 17
 // Load WP_List_Table if not loaded
18
-if ( ! class_exists( 'WP_List_Table' ) ) {
19
-	require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php';
18
+if ( ! class_exists('WP_List_Table')) {
19
+	require_once ABSPATH.'wp-admin/includes/class-wp-list-table.php';
20 20
 }
21 21
 
22 22
 /**
@@ -62,11 +62,11 @@  discard block
 block discarded – undo
62 62
 		global $status, $page;
63 63
 
64 64
 		// Set parent defaults
65
-		parent::__construct( array(
66
-			'singular' => esc_html( 'Donor', 'give' ),     // Singular name of the listed records
67
-			'plural'   => esc_html( 'Donors', 'give' ),    // Plural name of the listed records
65
+		parent::__construct(array(
66
+			'singular' => esc_html('Donor', 'give'), // Singular name of the listed records
67
+			'plural'   => esc_html('Donors', 'give'), // Plural name of the listed records
68 68
 			'ajax'     => false                        // Does this table support ajax?
69
-		) );
69
+		));
70 70
 
71 71
 	}
72 72
 
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
 	 *
84 84
 	 * @return false
85 85
 	 */
86
-	public function search_box( $text, $input_id ) {
86
+	public function search_box($text, $input_id) {
87 87
 		return;
88 88
 	}
89 89
 
@@ -98,20 +98,20 @@  discard block
 block discarded – undo
98 98
 	 *
99 99
 	 * @return void
100 100
 	 */
101
-	public function give_search_box( $text, $input_id ) {
102
-		$input_id = $input_id . '-search-input';
101
+	public function give_search_box($text, $input_id) {
102
+		$input_id = $input_id.'-search-input';
103 103
 
104
-		if ( ! empty( $_REQUEST['orderby'] ) ) {
105
-			echo '<input type="hidden" name="orderby" value="' . esc_attr( $_REQUEST['orderby'] ) . '" />';
104
+		if ( ! empty($_REQUEST['orderby'])) {
105
+			echo '<input type="hidden" name="orderby" value="'.esc_attr($_REQUEST['orderby']).'" />';
106 106
 		}
107
-		if ( ! empty( $_REQUEST['order'] ) ) {
108
-			echo '<input type="hidden" name="order" value="' . esc_attr( $_REQUEST['order'] ) . '" />';
107
+		if ( ! empty($_REQUEST['order'])) {
108
+			echo '<input type="hidden" name="order" value="'.esc_attr($_REQUEST['order']).'" />';
109 109
 		}
110 110
 		?>
111 111
 		<p class="search-box donor-search">
112 112
 			<label class="screen-reader-text" for="<?php echo $input_id ?>"><?php echo $text; ?>:</label>
113 113
 			<input type="search" id="<?php echo $input_id ?>" name="s" value="<?php _admin_search_query(); ?>" />
114
-			<?php submit_button( $text, 'button', false, false, array( 'ID' => 'search-submit' ) ); ?>
114
+			<?php submit_button($text, 'button', false, false, array('ID' => 'search-submit')); ?>
115 115
 		</p>
116 116
 	<?php
117 117
 	}
@@ -124,29 +124,29 @@  discard block
 block discarded – undo
124 124
 	 *
125 125
 	 * @param string $which
126 126
 	 */
127
-	protected function display_tablenav( $which ) {
127
+	protected function display_tablenav($which) {
128 128
 
129
-		if ( 'top' == $which ) {
130
-			wp_nonce_field( 'bulk-' . $this->_args['plural'] );
129
+		if ('top' == $which) {
130
+			wp_nonce_field('bulk-'.$this->_args['plural']);
131 131
 		}
132 132
 		?>
133
-		<div class="tablenav give-clearfix <?php esc_attr_e( $which ); ?>">
133
+		<div class="tablenav give-clearfix <?php esc_attr_e($which); ?>">
134 134
 
135
-			<h3 class="alignleft reports-earnings-title"><span><?php esc_html_e( 'Donors Report', 'give' ); ?></span></h3>
135
+			<h3 class="alignleft reports-earnings-title"><span><?php esc_html_e('Donors Report', 'give'); ?></span></h3>
136 136
 
137 137
 			<div class="alignright tablenav-right">
138 138
 				<div class="actions bulkactions">
139 139
 					<?php
140
-					if ( 'top' == $which ) {
141
-						$this->give_search_box( esc_html( 'Search Donors', 'give' ), 'give-donors-report-search' );
140
+					if ('top' == $which) {
141
+						$this->give_search_box(esc_html('Search Donors', 'give'), 'give-donors-report-search');
142 142
 					}
143 143
 
144
-					$this->bulk_actions( $which ); ?>
144
+					$this->bulk_actions($which); ?>
145 145
 
146 146
 				</div>
147 147
 				<?php
148
-				$this->extra_tablenav( $which );
149
-				$this->pagination( $which );
148
+				$this->extra_tablenav($which);
149
+				$this->pagination($which);
150 150
 				?>
151 151
 			</div>
152 152
 
@@ -168,25 +168,25 @@  discard block
 block discarded – undo
168 168
 	 *
169 169
 	 * @return string Column Name
170 170
 	 */
171
-	public function column_default( $item, $column_name ) {
172
-		switch ( $column_name ) {
171
+	public function column_default($item, $column_name) {
172
+		switch ($column_name) {
173 173
 
174 174
 			case 'num_purchases' :
175
-				$value = '<a href="' .
176
-				         admin_url( '/edit.php?post_type=give_forms&page=give-payment-history&user=' . urlencode( $item['email'] )
177
-				         ) . '">' . esc_html( $item['num_purchases'] ) . '</a>';
175
+				$value = '<a href="'.
176
+				         admin_url('/edit.php?post_type=give_forms&page=give-payment-history&user='.urlencode($item['email'])
177
+				         ).'">'.esc_html($item['num_purchases']).'</a>';
178 178
 				break;
179 179
 
180 180
 			case 'amount_spent' :
181
-				$value = give_currency_filter( give_format_amount( $item[ $column_name ] ) );
181
+				$value = give_currency_filter(give_format_amount($item[$column_name]));
182 182
 				break;
183 183
 
184 184
 			default:
185
-				$value = isset( $item[ $column_name ] ) ? $item[ $column_name ] : null;
185
+				$value = isset($item[$column_name]) ? $item[$column_name] : null;
186 186
 				break;
187 187
 		}
188 188
 
189
-		return apply_filters( 'give_report_column_' . $column_name, $value, $item['id'] );
189
+		return apply_filters('give_report_column_'.$column_name, $value, $item['id']);
190 190
 	}
191 191
 
192 192
 	/**
@@ -198,14 +198,14 @@  discard block
 block discarded – undo
198 198
 	 */
199 199
 	public function get_columns() {
200 200
 		$columns = array(
201
-			'name'          => esc_html( 'Name', 'give' ),
202
-			'id'            => esc_html( 'ID', 'give' ),
203
-			'email'         => esc_html( 'Email', 'give' ),
204
-			'num_purchases' => esc_html( 'Purchases', 'give' ),
205
-			'amount_spent'  => esc_html( 'Total Spent', 'give' )
201
+			'name'          => esc_html('Name', 'give'),
202
+			'id'            => esc_html('ID', 'give'),
203
+			'email'         => esc_html('Email', 'give'),
204
+			'num_purchases' => esc_html('Purchases', 'give'),
205
+			'amount_spent'  => esc_html('Total Spent', 'give')
206 206
 		);
207 207
 
208
-		return apply_filters( 'give_report_donor_columns', $columns );
208
+		return apply_filters('give_report_donor_columns', $columns);
209 209
 
210 210
 	}
211 211
 
@@ -218,10 +218,10 @@  discard block
 block discarded – undo
218 218
 	 */
219 219
 	public function get_sortable_columns() {
220 220
 		return array(
221
-			'id'            => array( 'id', true ),
222
-			'name'          => array( 'name', true ),
223
-			'num_purchases' => array( 'purchase_count', false ),
224
-			'amount_spent'  => array( 'purchase_value', false ),
221
+			'id'            => array('id', true),
222
+			'name'          => array('name', true),
223
+			'num_purchases' => array('purchase_count', false),
224
+			'amount_spent'  => array('purchase_value', false),
225 225
 		);
226 226
 	}
227 227
 
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
 	 * @since  1.0
233 233
 	 * @return void
234 234
 	 */
235
-	public function bulk_actions( $which = '' ) {
235
+	public function bulk_actions($which = '') {
236 236
 		// These aren't really bulk actions but this outputs the markup in the right place
237 237
 		give_report_views();
238 238
 	}
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
 	 * @return int Current page number
246 246
 	 */
247 247
 	public function get_paged() {
248
-		return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1;
248
+		return isset($_GET['paged']) ? absint($_GET['paged']) : 1;
249 249
 	}
250 250
 
251 251
 	/**
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
 	 * @return mixed string If search is present, false otherwise
257 257
 	 */
258 258
 	public function get_search() {
259
-		return ! empty( $_GET['s'] ) ? urldecode( trim( $_GET['s'] ) ) : false;
259
+		return ! empty($_GET['s']) ? urldecode(trim($_GET['s'])) : false;
260 260
 	}
261 261
 
262 262
 	/**
@@ -273,10 +273,10 @@  discard block
 block discarded – undo
273 273
 
274 274
 		$data    = array();
275 275
 		$paged   = $this->get_paged();
276
-		$offset  = $this->per_page * ( $paged - 1 );
276
+		$offset  = $this->per_page * ($paged - 1);
277 277
 		$search  = $this->get_search();
278
-		$order   = isset( $_GET['order'] ) ? sanitize_text_field( $_GET['order'] ) : 'DESC';
279
-		$orderby = isset( $_GET['orderby'] ) ? sanitize_text_field( $_GET['orderby'] ) : 'id';
278
+		$order   = isset($_GET['order']) ? sanitize_text_field($_GET['order']) : 'DESC';
279
+		$orderby = isset($_GET['orderby']) ? sanitize_text_field($_GET['orderby']) : 'id';
280 280
 
281 281
 		$args = array(
282 282
 			'number'  => $this->per_page,
@@ -285,21 +285,21 @@  discard block
 block discarded – undo
285 285
 			'orderby' => $orderby
286 286
 		);
287 287
 
288
-		if ( is_email( $search ) ) {
288
+		if (is_email($search)) {
289 289
 			$args['email'] = $search;
290
-		} elseif ( is_numeric( $search ) ) {
290
+		} elseif (is_numeric($search)) {
291 291
 			$args['id'] = $search;
292 292
 		}
293 293
 
294
-		$donors = Give()->customers->get_customers( $args );
294
+		$donors = Give()->customers->get_customers($args);
295 295
 
296
-		if ( $donors ) {
296
+		if ($donors) {
297 297
 
298
-			$this->count = count( $donors );
298
+			$this->count = count($donors);
299 299
 
300
-			foreach ( $donors as $donor ) {
300
+			foreach ($donors as $donor) {
301 301
 
302
-				$user_id = ! empty( $donor->user_id ) ? absint( $donor->user_id ) : 0;
302
+				$user_id = ! empty($donor->user_id) ? absint($donor->user_id) : 0;
303 303
 
304 304
 				$data[] = array(
305 305
 					'id'            => $donor->id,
@@ -332,16 +332,16 @@  discard block
 block discarded – undo
332 332
 		$hidden   = array(); // No hidden columns
333 333
 		$sortable = $this->get_sortable_columns();
334 334
 
335
-		$this->_column_headers = array( $columns, $hidden, $sortable );
335
+		$this->_column_headers = array($columns, $hidden, $sortable);
336 336
 
337 337
 		$this->items = $this->reports_data();
338 338
 
339 339
 		$this->total = give_count_total_customers();
340 340
 
341
-		$this->set_pagination_args( array(
341
+		$this->set_pagination_args(array(
342 342
 			'total_items' => $this->total,
343 343
 			'per_page'    => $this->per_page,
344
-			'total_pages' => ceil( $this->total / $this->per_page )
345
-		) );
344
+			'total_pages' => ceil($this->total / $this->per_page)
345
+		));
346 346
 	}
347 347
 }
348 348
\ No newline at end of file
Please login to merge, or discard this patch.
includes/forms/functions.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
  * Used to redirect a user back to the purchase
155 155
  * page if there are errors present.
156 156
  *
157
- * @param array $args
157
+ * @param string $args
158 158
  *
159 159
  * @access public
160 160
  * @since  1.0
@@ -773,7 +773,7 @@  discard block
 block discarded – undo
773 773
  *
774 774
  * @param int $form_id ID number of the form to retrieve the minimum price for
775 775
  *
776
- * @return mixed string|int Minimum price of the form
776
+ * @return string string|int Minimum price of the form
777 777
  */
778 778
 function give_get_form_minimum_price( $form_id = 0 ) {
779 779
 
@@ -878,7 +878,7 @@  discard block
 block discarded – undo
878 878
  *
879 879
  * @param int $form_id ID number of the form to retrieve a goal for
880 880
  *
881
- * @return mixed string|int Goal of the form
881
+ * @return string string|int Goal of the form
882 882
  */
883 883
 function give_get_form_goal( $form_id = 0 ) {
884 884
 
Please login to merge, or discard this patch.
Spacing   +183 added lines, -183 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,14 +23,14 @@  discard block
 block discarded – undo
23 23
 
24 24
 	global $typenow;
25 25
 
26
-	if ( $typenow != 'give_forms' ) {
26
+	if ($typenow != 'give_forms') {
27 27
 		return true;
28 28
 	}
29 29
 
30 30
 	return false;
31 31
 }
32 32
 
33
-add_filter( 'give_shortcode_button_condition', 'give_shortcode_button_condition' );
33
+add_filter('give_shortcode_button_condition', 'give_shortcode_button_condition');
34 34
 
35 35
 
36 36
 /**
@@ -40,11 +40,11 @@  discard block
 block discarded – undo
40 40
  *
41 41
  * @return int|false
42 42
  */
43
-function get_form_id_from_args( $args ) {
43
+function get_form_id_from_args($args) {
44 44
 
45
-	if ( isset( $args['form_id'] ) && $args['form_id'] != 0 ) {
45
+	if (isset($args['form_id']) && $args['form_id'] != 0) {
46 46
 
47
-		return intval( $args['form_id'] );
47
+		return intval($args['form_id']);
48 48
 	}
49 49
 
50 50
 	return false;
@@ -59,23 +59,23 @@  discard block
 block discarded – undo
59 59
  *
60 60
  * @return bool
61 61
  */
62
-function give_is_float_labels_enabled( $args ) {
62
+function give_is_float_labels_enabled($args) {
63 63
 
64 64
 	$float_labels = '';
65 65
 
66
-	if ( ! empty( $args['float_labels'] ) ) {
66
+	if ( ! empty($args['float_labels'])) {
67 67
 		$float_labels = $args['float_labels'];
68 68
 	}
69 69
 
70
-	if ( empty( $float_labels ) ) {
71
-		$float_labels = get_post_meta( $args['form_id'], '_give_form_floating_labels', true );
70
+	if (empty($float_labels)) {
71
+		$float_labels = get_post_meta($args['form_id'], '_give_form_floating_labels', true);
72 72
 	}
73 73
 
74
-	if ( empty( $float_labels ) ) {
75
-		$float_labels = give_get_option( 'enable_floatlabels' ) ? 'enabled' : 'disabled';
74
+	if (empty($float_labels)) {
75
+		$float_labels = give_get_option('enable_floatlabels') ? 'enabled' : 'disabled';
76 76
 	}
77 77
 
78
-	return ( $float_labels == 'enabled' ) ? true : false;
78
+	return ($float_labels == 'enabled') ? true : false;
79 79
 }
80 80
 
81 81
 /**
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
 
91 91
 	$can_checkout = true;
92 92
 
93
-	return (bool) apply_filters( 'give_can_checkout', $can_checkout );
93
+	return (bool) apply_filters('give_can_checkout', $can_checkout);
94 94
 }
95 95
 
96 96
 /**
@@ -103,9 +103,9 @@  discard block
 block discarded – undo
103 103
 function give_get_success_page_uri() {
104 104
 	global $give_options;
105 105
 
106
-	$success_page = isset( $give_options['success_page'] ) ? get_permalink( absint( $give_options['success_page'] ) ) : get_bloginfo( 'url' );
106
+	$success_page = isset($give_options['success_page']) ? get_permalink(absint($give_options['success_page'])) : get_bloginfo('url');
107 107
 
108
-	return apply_filters( 'give_get_success_page_uri', $success_page );
108
+	return apply_filters('give_get_success_page_uri', $success_page);
109 109
 }
110 110
 
111 111
 /**
@@ -116,9 +116,9 @@  discard block
 block discarded – undo
116 116
  */
117 117
 function give_is_success_page() {
118 118
 	global $give_options;
119
-	$is_success_page = isset( $give_options['success_page'] ) ? is_page( $give_options['success_page'] ) : false;
119
+	$is_success_page = isset($give_options['success_page']) ? is_page($give_options['success_page']) : false;
120 120
 
121
-	return apply_filters( 'give_is_success_page', $is_success_page );
121
+	return apply_filters('give_is_success_page', $is_success_page);
122 122
 }
123 123
 
124 124
 /**
@@ -132,17 +132,17 @@  discard block
 block discarded – undo
132 132
  * @since       1.0
133 133
  * @return      void
134 134
  */
135
-function give_send_to_success_page( $query_string = null ) {
135
+function give_send_to_success_page($query_string = null) {
136 136
 
137 137
 	$redirect = give_get_success_page_uri();
138 138
 
139
-	if ( $query_string ) {
139
+	if ($query_string) {
140 140
 		$redirect .= $query_string;
141 141
 	}
142 142
 
143
-	$gateway = isset( $_REQUEST['give-gateway'] ) ? $_REQUEST['give-gateway'] : '';
143
+	$gateway = isset($_REQUEST['give-gateway']) ? $_REQUEST['give-gateway'] : '';
144 144
 
145
-	wp_redirect( apply_filters( 'give_success_page_redirect', $redirect, $gateway, $query_string ) );
145
+	wp_redirect(apply_filters('give_success_page_redirect', $redirect, $gateway, $query_string));
146 146
 	give_die();
147 147
 }
148 148
 
@@ -159,25 +159,25 @@  discard block
 block discarded – undo
159 159
  * @since  1.0
160 160
  * @return Void
161 161
  */
162
-function give_send_back_to_checkout( $args = array() ) {
162
+function give_send_back_to_checkout($args = array()) {
163 163
 
164
-	$redirect = ( isset( $_POST['give-current-url'] ) ) ? $_POST['give-current-url'] : '';
165
-	$form_id  = isset( $_POST['give-form-id'] ) ? $_POST['give-form-id'] : 0;
164
+	$redirect = (isset($_POST['give-current-url'])) ? $_POST['give-current-url'] : '';
165
+	$form_id  = isset($_POST['give-form-id']) ? $_POST['give-form-id'] : 0;
166 166
 
167 167
 	$defaults = array(
168 168
 		'form-id' => (int) $form_id
169 169
 	);
170 170
 
171 171
 	// Check for backward compatibility
172
-	if ( is_string( $args ) ) {
173
-		$args = str_replace( '?', '', $args );
172
+	if (is_string($args)) {
173
+		$args = str_replace('?', '', $args);
174 174
 	}
175 175
 
176
-	$args = wp_parse_args( $args, $defaults );
176
+	$args = wp_parse_args($args, $defaults);
177 177
 
178
-	$redirect = add_query_arg( $args, $redirect ) . '#give-form-' . $form_id . '-wrap';
178
+	$redirect = add_query_arg($args, $redirect).'#give-form-'.$form_id.'-wrap';
179 179
 
180
-	wp_redirect( apply_filters( 'give_send_back_to_checkout', $redirect, $args ) );
180
+	wp_redirect(apply_filters('give_send_back_to_checkout', $redirect, $args));
181 181
 	give_die();
182 182
 }
183 183
 
@@ -192,16 +192,16 @@  discard block
 block discarded – undo
192 192
  * @since       1.0
193 193
  * @return      string
194 194
  */
195
-function give_get_success_page_url( $query_string = null ) {
195
+function give_get_success_page_url($query_string = null) {
196 196
 
197
-	$success_page = give_get_option( 'success_page', 0 );
198
-	$success_page = get_permalink( $success_page );
197
+	$success_page = give_get_option('success_page', 0);
198
+	$success_page = get_permalink($success_page);
199 199
 
200
-	if ( $query_string ) {
200
+	if ($query_string) {
201 201
 		$success_page .= $query_string;
202 202
 	}
203 203
 
204
-	return apply_filters( 'give_success_page_url', $success_page );
204
+	return apply_filters('give_success_page_url', $success_page);
205 205
 
206 206
 }
207 207
 
@@ -215,15 +215,15 @@  discard block
 block discarded – undo
215 215
  *
216 216
  * @return mixed|void Full URL to the Transaction Failed page, if present, home page if it doesn't exist
217 217
  */
218
-function give_get_failed_transaction_uri( $extras = false ) {
218
+function give_get_failed_transaction_uri($extras = false) {
219 219
 	global $give_options;
220 220
 
221
-	$uri = ! empty( $give_options['failure_page'] ) ? trailingslashit( get_permalink( $give_options['failure_page'] ) ) : home_url();
222
-	if ( $extras ) {
221
+	$uri = ! empty($give_options['failure_page']) ? trailingslashit(get_permalink($give_options['failure_page'])) : home_url();
222
+	if ($extras) {
223 223
 		$uri .= $extras;
224 224
 	}
225 225
 
226
-	return apply_filters( 'give_get_failed_transaction_uri', $uri );
226
+	return apply_filters('give_get_failed_transaction_uri', $uri);
227 227
 }
228 228
 
229 229
 /**
@@ -234,9 +234,9 @@  discard block
 block discarded – undo
234 234
  */
235 235
 function give_is_failed_transaction_page() {
236 236
 	global $give_options;
237
-	$ret = isset( $give_options['failure_page'] ) ? is_page( $give_options['failure_page'] ) : false;
237
+	$ret = isset($give_options['failure_page']) ? is_page($give_options['failure_page']) : false;
238 238
 
239
-	return apply_filters( 'give_is_failure_page', $ret );
239
+	return apply_filters('give_is_failure_page', $ret);
240 240
 }
241 241
 
242 242
 /**
@@ -248,18 +248,18 @@  discard block
 block discarded – undo
248 248
  */
249 249
 function give_listen_for_failed_payments() {
250 250
 
251
-	$failed_page = give_get_option( 'failure_page', 0 );
251
+	$failed_page = give_get_option('failure_page', 0);
252 252
 
253
-	if ( ! empty( $failed_page ) && is_page( $failed_page ) && ! empty( $_GET['payment-id'] ) ) {
253
+	if ( ! empty($failed_page) && is_page($failed_page) && ! empty($_GET['payment-id'])) {
254 254
 
255
-		$payment_id = absint( $_GET['payment-id'] );
256
-		give_update_payment_status( $payment_id, 'failed' );
255
+		$payment_id = absint($_GET['payment-id']);
256
+		give_update_payment_status($payment_id, 'failed');
257 257
 
258 258
 	}
259 259
 
260 260
 }
261 261
 
262
-add_action( 'template_redirect', 'give_listen_for_failed_payments' );
262
+add_action('template_redirect', 'give_listen_for_failed_payments');
263 263
 
264 264
 
265 265
 /**
@@ -272,11 +272,11 @@  discard block
 block discarded – undo
272 272
  * @since       1.0
273 273
  * @return      bool
274 274
  */
275
-function give_field_is_required( $field = '', $form_id ) {
275
+function give_field_is_required($field = '', $form_id) {
276 276
 
277
-	$required_fields = give_purchase_form_required_fields( $form_id );
277
+	$required_fields = give_purchase_form_required_fields($form_id);
278 278
 
279
-	return array_key_exists( $field, $required_fields );
279
+	return array_key_exists($field, $required_fields);
280 280
 }
281 281
 
282 282
 /**
@@ -294,14 +294,14 @@  discard block
 block discarded – undo
294 294
  *
295 295
  * @return void
296 296
  */
297
-function give_record_sale_in_log( $give_form_id = 0, $payment_id, $price_id = false, $sale_date = null ) {
297
+function give_record_sale_in_log($give_form_id = 0, $payment_id, $price_id = false, $sale_date = null) {
298 298
 	global $give_logs;
299 299
 
300 300
 	$log_data = array(
301 301
 		'post_parent'   => $give_form_id,
302 302
 		'log_type'      => 'sale',
303
-		'post_date'     => isset( $sale_date ) ? $sale_date : null,
304
-		'post_date_gmt' => isset( $sale_date ) ? $sale_date : null
303
+		'post_date'     => isset($sale_date) ? $sale_date : null,
304
+		'post_date_gmt' => isset($sale_date) ? $sale_date : null
305 305
 	);
306 306
 
307 307
 	$log_meta = array(
@@ -309,7 +309,7 @@  discard block
 block discarded – undo
309 309
 		'price_id'   => (int) $price_id
310 310
 	);
311 311
 
312
-	$give_logs->insert_log( $log_data, $log_meta );
312
+	$give_logs->insert_log($log_data, $log_meta);
313 313
 }
314 314
 
315 315
 
@@ -323,11 +323,11 @@  discard block
 block discarded – undo
323 323
  *
324 324
  * @return bool|int
325 325
  */
326
-function give_increase_purchase_count( $form_id = 0, $quantity = 1 ) {
326
+function give_increase_purchase_count($form_id = 0, $quantity = 1) {
327 327
 	$quantity = (int) $quantity;
328
-	$form     = new Give_Donate_Form( $form_id );
328
+	$form     = new Give_Donate_Form($form_id);
329 329
 
330
-	return $form->increase_sales( $quantity );
330
+	return $form->increase_sales($quantity);
331 331
 }
332 332
 
333 333
 /**
@@ -340,11 +340,11 @@  discard block
 block discarded – undo
340 340
  *
341 341
  * @return bool|int
342 342
  */
343
-function give_decrease_purchase_count( $form_id = 0, $quantity = 1 ) {
343
+function give_decrease_purchase_count($form_id = 0, $quantity = 1) {
344 344
 	$quantity = (int) $quantity;
345
-	$form     = new Give_Donate_Form( $form_id );
345
+	$form     = new Give_Donate_Form($form_id);
346 346
 
347
-	return $form->decrease_sales( $quantity );
347
+	return $form->decrease_sales($quantity);
348 348
 }
349 349
 
350 350
 /**
@@ -357,10 +357,10 @@  discard block
 block discarded – undo
357 357
  *
358 358
  * @return bool|int
359 359
  */
360
-function give_increase_earnings( $give_form_id = 0, $amount ) {
361
-	$form = new Give_Donate_Form( $give_form_id );
360
+function give_increase_earnings($give_form_id = 0, $amount) {
361
+	$form = new Give_Donate_Form($give_form_id);
362 362
 
363
-	return $form->increase_earnings( $amount );
363
+	return $form->increase_earnings($amount);
364 364
 }
365 365
 
366 366
 /**
@@ -373,10 +373,10 @@  discard block
 block discarded – undo
373 373
  *
374 374
  * @return bool|int
375 375
  */
376
-function give_decrease_earnings( $form_id = 0, $amount ) {
377
-	$form = new Give_Donate_Form( $form_id );
376
+function give_decrease_earnings($form_id = 0, $amount) {
377
+	$form = new Give_Donate_Form($form_id);
378 378
 
379
-	return $form->decrease_earnings( $amount );
379
+	return $form->decrease_earnings($amount);
380 380
 }
381 381
 
382 382
 
@@ -389,8 +389,8 @@  discard block
 block discarded – undo
389 389
  *
390 390
  * @return int $earnings Earnings for a certain form
391 391
  */
392
-function give_get_form_earnings_stats( $form_id = 0 ) {
393
-	$give_form = new Give_Donate_Form( $form_id );
392
+function give_get_form_earnings_stats($form_id = 0) {
393
+	$give_form = new Give_Donate_Form($form_id);
394 394
 
395 395
 	return $give_form->earnings;
396 396
 }
@@ -405,8 +405,8 @@  discard block
 block discarded – undo
405 405
  *
406 406
  * @return int $sales Amount of sales for a certain form
407 407
  */
408
-function give_get_form_sales_stats( $give_form_id = 0 ) {
409
-	$give_form = new Give_Donate_Form( $give_form_id );
408
+function give_get_form_sales_stats($give_form_id = 0) {
409
+	$give_form = new Give_Donate_Form($give_form_id);
410 410
 
411 411
 	return $give_form->sales;
412 412
 }
@@ -421,16 +421,16 @@  discard block
 block discarded – undo
421 421
  *
422 422
  * @return float $sales Average monthly sales
423 423
  */
424
-function give_get_average_monthly_form_sales( $form_id = 0 ) {
425
-	$sales        = give_get_form_sales_stats( $form_id );
426
-	$release_date = get_post_field( 'post_date', $form_id );
424
+function give_get_average_monthly_form_sales($form_id = 0) {
425
+	$sales        = give_get_form_sales_stats($form_id);
426
+	$release_date = get_post_field('post_date', $form_id);
427 427
 
428
-	$diff = abs( current_time( 'timestamp' ) - strtotime( $release_date ) );
428
+	$diff = abs(current_time('timestamp') - strtotime($release_date));
429 429
 
430
-	$months = floor( $diff / ( 30 * 60 * 60 * 24 ) ); // Number of months since publication
430
+	$months = floor($diff / (30 * 60 * 60 * 24)); // Number of months since publication
431 431
 
432
-	if ( $months > 0 ) {
433
-		$sales = ( $sales / $months );
432
+	if ($months > 0) {
433
+		$sales = ($sales / $months);
434 434
 	}
435 435
 
436 436
 	return $sales;
@@ -446,16 +446,16 @@  discard block
 block discarded – undo
446 446
  *
447 447
  * @return float $earnings Average monthly earnings
448 448
  */
449
-function give_get_average_monthly_form_earnings( $form_id = 0 ) {
450
-	$earnings     = give_get_form_earnings_stats( $form_id );
451
-	$release_date = get_post_field( 'post_date', $form_id );
449
+function give_get_average_monthly_form_earnings($form_id = 0) {
450
+	$earnings     = give_get_form_earnings_stats($form_id);
451
+	$release_date = get_post_field('post_date', $form_id);
452 452
 
453
-	$diff = abs( current_time( 'timestamp' ) - strtotime( $release_date ) );
453
+	$diff = abs(current_time('timestamp') - strtotime($release_date));
454 454
 
455
-	$months = floor( $diff / ( 30 * 60 * 60 * 24 ) ); // Number of months since publication
455
+	$months = floor($diff / (30 * 60 * 60 * 24)); // Number of months since publication
456 456
 
457
-	if ( $months > 0 ) {
458
-		$earnings = ( $earnings / $months );
457
+	if ($months > 0) {
458
+		$earnings = ($earnings / $months);
459 459
 	}
460 460
 
461 461
 	return $earnings < 0 ? 0 : $earnings;
@@ -475,25 +475,25 @@  discard block
 block discarded – undo
475 475
  *
476 476
  * @return string $price_name Name of the price option
477 477
  */
478
-function give_get_price_option_name( $form_id = 0, $price_id = 0, $payment_id = 0 ) {
478
+function give_get_price_option_name($form_id = 0, $price_id = 0, $payment_id = 0) {
479 479
 
480
-	$prices     = give_get_variable_prices( $form_id );
480
+	$prices     = give_get_variable_prices($form_id);
481 481
 	$price_name = '';
482 482
 
483
-	foreach ( $prices as $price ) {
483
+	foreach ($prices as $price) {
484 484
 
485
-		if ( intval( $price['_give_id']['level_id'] ) == intval( $price_id ) ) {
485
+		if (intval($price['_give_id']['level_id']) == intval($price_id)) {
486 486
 
487
-			$price_text     = isset( $price['_give_text'] ) ? $price['_give_text'] : '';
488
-			$price_fallback = give_currency_filter( give_format_amount( $price['_give_amount'] ) );
489
-			$price_name     = ! empty( $price_text ) ? $price_text : $price_fallback;
487
+			$price_text     = isset($price['_give_text']) ? $price['_give_text'] : '';
488
+			$price_fallback = give_currency_filter(give_format_amount($price['_give_amount']));
489
+			$price_name     = ! empty($price_text) ? $price_text : $price_fallback;
490 490
 
491 491
 		}
492 492
 
493 493
 	}
494 494
 
495 495
 
496
-	return apply_filters( 'give_get_price_option_name', $price_name, $form_id, $payment_id, $price_id );
496
+	return apply_filters('give_get_price_option_name', $price_name, $form_id, $payment_id, $price_id);
497 497
 }
498 498
 
499 499
 
@@ -506,14 +506,14 @@  discard block
 block discarded – undo
506 506
  *
507 507
  * @return string $range A fully formatted price range
508 508
  */
509
-function give_price_range( $form_id = 0 ) {
510
-	$low   = give_get_lowest_price_option( $form_id );
511
-	$high  = give_get_highest_price_option( $form_id );
512
-	$range = '<span class="give_price_range_low">' . give_currency_filter( give_format_amount( $low ) ) . '</span>';
509
+function give_price_range($form_id = 0) {
510
+	$low   = give_get_lowest_price_option($form_id);
511
+	$high  = give_get_highest_price_option($form_id);
512
+	$range = '<span class="give_price_range_low">'.give_currency_filter(give_format_amount($low)).'</span>';
513 513
 	$range .= '<span class="give_price_range_sep">&nbsp;&ndash;&nbsp;</span>';
514
-	$range .= '<span class="give_price_range_high">' . give_currency_filter( give_format_amount( $high ) ) . '</span>';
514
+	$range .= '<span class="give_price_range_high">'.give_currency_filter(give_format_amount($high)).'</span>';
515 515
 
516
-	return apply_filters( 'give_price_range', $range, $form_id, $low, $high );
516
+	return apply_filters('give_price_range', $range, $form_id, $low, $high);
517 517
 }
518 518
 
519 519
 
@@ -528,36 +528,36 @@  discard block
 block discarded – undo
528 528
  *
529 529
  * @return int ID of the lowest price
530 530
  */
531
-function give_get_lowest_price_id( $form_id = 0 ) {
531
+function give_get_lowest_price_id($form_id = 0) {
532 532
 
533
-	if ( empty( $form_id ) ) {
533
+	if (empty($form_id)) {
534 534
 		$form_id = get_the_ID();
535 535
 	}
536 536
 
537
-	if ( ! give_has_variable_prices( $form_id ) ) {
538
-		return give_get_form_price( $form_id );
537
+	if ( ! give_has_variable_prices($form_id)) {
538
+		return give_get_form_price($form_id);
539 539
 	}
540 540
 
541
-	$prices = give_get_variable_prices( $form_id );
541
+	$prices = give_get_variable_prices($form_id);
542 542
 
543 543
 	$low    = 0.00;
544 544
 	$min_id = 1;
545 545
 
546
-	if ( ! empty( $prices ) ) {
546
+	if ( ! empty($prices)) {
547 547
 
548
-		foreach ( $prices as $key => $price ) {
548
+		foreach ($prices as $key => $price) {
549 549
 
550
-			if ( empty( $price['_give_amount'] ) ) {
550
+			if (empty($price['_give_amount'])) {
551 551
 				continue;
552 552
 			}
553 553
 
554
-			if ( ! isset( $min ) ) {
554
+			if ( ! isset($min)) {
555 555
 				$min = $price['_give_amount'];
556 556
 			} else {
557
-				$min = min( $min, $price['_give_amount'] );
557
+				$min = min($min, $price['_give_amount']);
558 558
 			}
559 559
 
560
-			if ( $price['_give_amount'] == $min ) {
560
+			if ($price['_give_amount'] == $min) {
561 561
 				$min_id = $price['_give_id']['level_id'];
562 562
 			}
563 563
 		}
@@ -575,43 +575,43 @@  discard block
 block discarded – undo
575 575
  *
576 576
  * @return float Amount of the lowest price
577 577
  */
578
-function give_get_lowest_price_option( $form_id = 0 ) {
579
-	if ( empty( $form_id ) ) {
578
+function give_get_lowest_price_option($form_id = 0) {
579
+	if (empty($form_id)) {
580 580
 		$form_id = get_the_ID();
581 581
 	}
582 582
 
583
-	if ( ! give_has_variable_prices( $form_id ) ) {
584
-		return give_get_form_price( $form_id );
583
+	if ( ! give_has_variable_prices($form_id)) {
584
+		return give_get_form_price($form_id);
585 585
 	}
586 586
 
587
-	$prices = give_get_variable_prices( $form_id );
587
+	$prices = give_get_variable_prices($form_id);
588 588
 
589 589
 	$low = 0.00;
590 590
 
591
-	if ( ! empty( $prices ) ) {
591
+	if ( ! empty($prices)) {
592 592
 
593
-		foreach ( $prices as $key => $price ) {
593
+		foreach ($prices as $key => $price) {
594 594
 
595
-			if ( empty( $price['_give_amount'] ) ) {
595
+			if (empty($price['_give_amount'])) {
596 596
 				continue;
597 597
 			}
598 598
 
599
-			if ( ! isset( $min ) ) {
599
+			if ( ! isset($min)) {
600 600
 				$min = $price['_give_amount'];
601 601
 			} else {
602
-				$min = min( $min, give_sanitize_amount( $price['_give_amount'] ) );
602
+				$min = min($min, give_sanitize_amount($price['_give_amount']));
603 603
 			}
604 604
 
605
-			if ( $price['_give_amount'] == $min ) {
605
+			if ($price['_give_amount'] == $min) {
606 606
 				$min_id = $key;
607 607
 			}
608 608
 		}
609 609
 
610
-		$low = $prices[ $min_id ]['_give_amount'];
610
+		$low = $prices[$min_id]['_give_amount'];
611 611
 
612 612
 	}
613 613
 
614
-	return give_sanitize_amount( $low );
614
+	return give_sanitize_amount($low);
615 615
 }
616 616
 
617 617
 /**
@@ -623,41 +623,41 @@  discard block
 block discarded – undo
623 623
  *
624 624
  * @return float Amount of the highest price
625 625
  */
626
-function give_get_highest_price_option( $form_id = 0 ) {
626
+function give_get_highest_price_option($form_id = 0) {
627 627
 
628
-	if ( empty( $form_id ) ) {
628
+	if (empty($form_id)) {
629 629
 		$form_id = get_the_ID();
630 630
 	}
631 631
 
632
-	if ( ! give_has_variable_prices( $form_id ) ) {
633
-		return give_get_form_price( $form_id );
632
+	if ( ! give_has_variable_prices($form_id)) {
633
+		return give_get_form_price($form_id);
634 634
 	}
635 635
 
636
-	$prices = give_get_variable_prices( $form_id );
636
+	$prices = give_get_variable_prices($form_id);
637 637
 
638 638
 	$high = 0.00;
639 639
 
640
-	if ( ! empty( $prices ) ) {
640
+	if ( ! empty($prices)) {
641 641
 
642 642
 		$max = 0;
643 643
 
644
-		foreach ( $prices as $key => $price ) {
645
-			if ( empty( $price['_give_amount'] ) ) {
644
+		foreach ($prices as $key => $price) {
645
+			if (empty($price['_give_amount'])) {
646 646
 				continue;
647 647
 			}
648
-			$give_amount = give_sanitize_amount( $price['_give_amount'] );
648
+			$give_amount = give_sanitize_amount($price['_give_amount']);
649 649
 
650
-			$max = max( $max, $give_amount );
650
+			$max = max($max, $give_amount);
651 651
 
652
-			if ( $give_amount == $max ) {
652
+			if ($give_amount == $max) {
653 653
 				$max_id = $key;
654 654
 			}
655 655
 		}
656 656
 
657
-		$high = $prices[ $max_id ]['_give_amount'];
657
+		$high = $prices[$max_id]['_give_amount'];
658 658
 	}
659 659
 
660
-	return give_sanitize_amount( $high );
660
+	return give_sanitize_amount($high);
661 661
 }
662 662
 
663 663
 /**
@@ -669,15 +669,15 @@  discard block
 block discarded – undo
669 669
  *
670 670
  * @return mixed string|int Price of the form
671 671
  */
672
-function give_get_form_price( $form_id = 0 ) {
672
+function give_get_form_price($form_id = 0) {
673 673
 
674
-	if ( empty( $form_id ) ) {
674
+	if (empty($form_id)) {
675 675
 		return false;
676 676
 	}
677 677
 
678
-	$form = new Give_Donate_Form( $form_id );
678
+	$form = new Give_Donate_Form($form_id);
679 679
 
680
-	return $form->__get( 'price' );
680
+	return $form->__get('price');
681 681
 }
682 682
 
683 683
 /**
@@ -689,15 +689,15 @@  discard block
 block discarded – undo
689 689
  *
690 690
  * @return mixed string|int Minimum price of the form
691 691
  */
692
-function give_get_form_minimum_price( $form_id = 0 ) {
692
+function give_get_form_minimum_price($form_id = 0) {
693 693
 
694
-	if ( empty( $form_id ) ) {
694
+	if (empty($form_id)) {
695 695
 		return false;
696 696
 	}
697 697
 
698
-	$form = new Give_Donate_Form( $form_id );
698
+	$form = new Give_Donate_Form($form_id);
699 699
 
700
-	return $form->__get( 'minimum_price' );
700
+	return $form->__get('minimum_price');
701 701
 
702 702
 }
703 703
 
@@ -712,52 +712,52 @@  discard block
 block discarded – undo
712 712
  *
713 713
  * @return int $formatted_price
714 714
  */
715
-function give_price( $form_id = 0, $echo = true, $price_id = false ) {
715
+function give_price($form_id = 0, $echo = true, $price_id = false) {
716 716
 
717
-	if ( empty( $form_id ) ) {
717
+	if (empty($form_id)) {
718 718
 		$form_id = get_the_ID();
719 719
 	}
720 720
 
721
-	if ( give_has_variable_prices( $form_id ) ) {
721
+	if (give_has_variable_prices($form_id)) {
722 722
 
723
-		$prices = give_get_variable_prices( $form_id );
723
+		$prices = give_get_variable_prices($form_id);
724 724
 
725
-		if ( false !== $price_id ) {
725
+		if (false !== $price_id) {
726 726
 
727 727
 			//loop through multi-prices to see which is default
728
-			foreach ( $prices as $price ) {
728
+			foreach ($prices as $price) {
729 729
 				//this is the default price
730
-				if ( isset( $price['_give_default'] ) && $price['_give_default'] === 'default' ) {
730
+				if (isset($price['_give_default']) && $price['_give_default'] === 'default') {
731 731
 					$price = (float) $price['_give_amount'];
732 732
 				};
733 733
 			}
734 734
 
735 735
 		} else {
736 736
 
737
-			$price = give_get_lowest_price_option( $form_id );
737
+			$price = give_get_lowest_price_option($form_id);
738 738
 		}
739 739
 
740
-		$price = give_sanitize_amount( $price );
740
+		$price = give_sanitize_amount($price);
741 741
 
742 742
 	} else {
743 743
 
744
-		$price = give_get_form_price( $form_id );
744
+		$price = give_get_form_price($form_id);
745 745
 
746 746
 	}
747 747
 
748
-	$price           = apply_filters( 'give_form_price', give_sanitize_amount( $price ), $form_id );
749
-	$formatted_price = '<span class="give_price" id="give_price_' . $form_id . '">' . $price . '</span>';
750
-	$formatted_price = apply_filters( 'give_form_price_after_html', $formatted_price, $form_id, $price );
748
+	$price           = apply_filters('give_form_price', give_sanitize_amount($price), $form_id);
749
+	$formatted_price = '<span class="give_price" id="give_price_'.$form_id.'">'.$price.'</span>';
750
+	$formatted_price = apply_filters('give_form_price_after_html', $formatted_price, $form_id, $price);
751 751
 
752
-	if ( $echo ) {
752
+	if ($echo) {
753 753
 		echo $formatted_price;
754 754
 	} else {
755 755
 		return $formatted_price;
756 756
 	}
757 757
 }
758 758
 
759
-add_filter( 'give_form_price', 'give_format_amount', 10 );
760
-add_filter( 'give_form_price', 'give_currency_filter', 20 );
759
+add_filter('give_form_price', 'give_format_amount', 10);
760
+add_filter('give_form_price', 'give_currency_filter', 20);
761 761
 
762 762
 
763 763
 /**
@@ -771,18 +771,18 @@  discard block
 block discarded – undo
771 771
  *
772 772
  * @return float $amount Amount of the price option
773 773
  */
774
-function give_get_price_option_amount( $form_id = 0, $price_id = 0 ) {
775
-	$prices = give_get_variable_prices( $form_id );
774
+function give_get_price_option_amount($form_id = 0, $price_id = 0) {
775
+	$prices = give_get_variable_prices($form_id);
776 776
 
777 777
 	$amount = 0.00;
778 778
 
779
-	foreach ( $prices as $price ) {
780
-		if ( isset( $price['_give_id']['level_id'] ) && $price['_give_id']['level_id'] == $price_id ) {
781
-			$amount = isset( $price['_give_amount'] ) ? $price['_give_amount'] : 0.00;
779
+	foreach ($prices as $price) {
780
+		if (isset($price['_give_id']['level_id']) && $price['_give_id']['level_id'] == $price_id) {
781
+			$amount = isset($price['_give_amount']) ? $price['_give_amount'] : 0.00;
782 782
 		};
783 783
 	}
784 784
 
785
-	return apply_filters( 'give_get_price_option_amount', give_sanitize_amount( $amount ), $form_id, $price_id );
785
+	return apply_filters('give_get_price_option_amount', give_sanitize_amount($amount), $form_id, $price_id);
786 786
 }
787 787
 
788 788
 /**
@@ -794,13 +794,13 @@  discard block
 block discarded – undo
794 794
  *
795 795
  * @return mixed string|int Goal of the form
796 796
  */
797
-function give_get_form_goal( $form_id = 0 ) {
797
+function give_get_form_goal($form_id = 0) {
798 798
 
799
-	if ( empty( $form_id ) ) {
799
+	if (empty($form_id)) {
800 800
 		return false;
801 801
 	}
802 802
 
803
-	$form = new Give_Donate_Form( $form_id );
803
+	$form = new Give_Donate_Form($form_id);
804 804
 
805 805
 	return $form->goal;
806 806
 
@@ -816,27 +816,27 @@  discard block
 block discarded – undo
816 816
  *
817 817
  * @return string $formatted_goal
818 818
  */
819
-function give_goal( $form_id = 0, $echo = true ) {
819
+function give_goal($form_id = 0, $echo = true) {
820 820
 
821
-	if ( empty( $form_id ) ) {
821
+	if (empty($form_id)) {
822 822
 		$form_id = get_the_ID();
823 823
 	}
824 824
 
825
-	$goal = give_get_form_goal( $form_id );
825
+	$goal = give_get_form_goal($form_id);
826 826
 
827
-	$goal           = apply_filters( 'give_form_goal', give_sanitize_amount( $goal ), $form_id );
828
-	$formatted_goal = '<span class="give_price" id="give_price_' . $form_id . '">' . $goal . '</span>';
829
-	$formatted_goal = apply_filters( 'give_form_price_after_html', $formatted_goal, $form_id, $goal );
827
+	$goal           = apply_filters('give_form_goal', give_sanitize_amount($goal), $form_id);
828
+	$formatted_goal = '<span class="give_price" id="give_price_'.$form_id.'">'.$goal.'</span>';
829
+	$formatted_goal = apply_filters('give_form_price_after_html', $formatted_goal, $form_id, $goal);
830 830
 
831
-	if ( $echo ) {
831
+	if ($echo) {
832 832
 		echo $formatted_goal;
833 833
 	} else {
834 834
 		return $formatted_goal;
835 835
 	}
836 836
 }
837 837
 
838
-add_filter( 'give_form_goal', 'give_format_amount', 10 );
839
-add_filter( 'give_form_goal', 'give_currency_filter', 20 );
838
+add_filter('give_form_goal', 'give_format_amount', 10);
839
+add_filter('give_form_goal', 'give_currency_filter', 20);
840 840
 
841 841
 
842 842
 /**
@@ -846,13 +846,13 @@  discard block
 block discarded – undo
846 846
  * @global $give_options
847 847
  * @return bool $ret Whether or not the logged_in_only setting is set
848 848
  */
849
-function give_logged_in_only( $form_id ) {
849
+function give_logged_in_only($form_id) {
850 850
 
851
-	$form_option = get_post_meta( $form_id, '_give_logged_in_only', true );
851
+	$form_option = get_post_meta($form_id, '_give_logged_in_only', true);
852 852
 
853
-	$ret = ! empty( $form_option ) ? $form_option : false;
853
+	$ret = ! empty($form_option) ? $form_option : false;
854 854
 
855
-	return (bool) apply_filters( 'give_logged_in_only', $ret, $form_id );
855
+	return (bool) apply_filters('give_logged_in_only', $ret, $form_id);
856 856
 
857 857
 }
858 858
 
@@ -864,10 +864,10 @@  discard block
 block discarded – undo
864 864
  *
865 865
  * @param $form_id
866 866
  */
867
-function give_show_login_register_option( $form_id ) {
867
+function give_show_login_register_option($form_id) {
868 868
 
869
-	$show_register_form = get_post_meta( $form_id, '_give_show_register_form', true );
869
+	$show_register_form = get_post_meta($form_id, '_give_show_register_form', true);
870 870
 
871
-	return apply_filters( 'give_show_register_form', $show_register_form, $form_id );
871
+	return apply_filters('give_show_register_form', $show_register_form, $form_id);
872 872
 
873 873
 }
874 874
\ No newline at end of file
Please login to merge, or discard this patch.
includes/plugin-compatibility.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,6 +19,6 @@
 block discarded – undo
19 19
  * @return void
20 20
  */
21 21
 function give_disable_mandrill_nl2br() {
22
-	add_filter( 'mandrill_nl2br', '__return_false' );
22
+	add_filter('mandrill_nl2br', '__return_false');
23 23
 }
24
-add_action( 'give_email_send_before', 'give_disable_mandrill_nl2br');
24
+add_action('give_email_send_before', 'give_disable_mandrill_nl2br');
Please login to merge, or discard this patch.
includes/class-give-session.php 2 patches
Doc Comments   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -165,10 +165,9 @@  discard block
 block discarded – undo
165 165
 	 *
166 166
 	 * @since 1.0
167 167
 	 *
168
-	 * @param $key $_SESSION key
169
-	 * @param $value $_SESSION variable
170 168
 	 *
171
-	 * @return mixed Session variable
169
+	 * @param string $key
170
+	 * @return string Session variable
172 171
 	 */
173 172
 	public function set( $key, $value ) {
174 173
 
@@ -220,12 +219,12 @@  discard block
 block discarded – undo
220 219
 	/**
221 220
 	 * Starts a new session if one hasn't started yet.
222 221
 	 *
223
-	 * @return null
222
+	 * @return boolean
224 223
 	 * Checks to see if the server supports PHP sessions or if the GIVE_USE_PHP_SESSIONS constant is defined
225 224
 	 *
226 225
 	 * @access public
227 226
 	 * @since  1.0
228
-	 * @return bool $ret True if we are using PHP sessions, false otherwise
227
+	 * @return boolean $ret True if we are using PHP sessions, false otherwise
229 228
 	 */
230 229
 	public function use_php_sessions() {
231 230
 
Please login to merge, or discard this patch.
Spacing   +61 added lines, -61 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,53 +70,53 @@  discard block
 block discarded – undo
70 70
 	public function __construct() {
71 71
 
72 72
 		$this->use_php_sessions = $this->use_php_sessions();
73
-		$this->exp_option       = give_get_option( 'session_lifetime' );
73
+		$this->exp_option       = give_get_option('session_lifetime');
74 74
 
75 75
 		//PHP Sessions
76
-		if ( $this->use_php_sessions ) {
76
+		if ($this->use_php_sessions) {
77 77
 
78
-			if ( is_multisite() ) {
78
+			if (is_multisite()) {
79 79
 
80
-				$this->prefix = '_' . get_current_blog_id();
80
+				$this->prefix = '_'.get_current_blog_id();
81 81
 
82 82
 			}
83 83
 
84
-			add_action( 'init', array( $this, 'maybe_start_session' ), - 2 );
84
+			add_action('init', array($this, 'maybe_start_session'), - 2);
85 85
 
86 86
 		} else {
87 87
 
88
-			if ( ! $this->should_start_session() ) {
88
+			if ( ! $this->should_start_session()) {
89 89
 				return;
90 90
 			}
91 91
 
92 92
 			// Use WP_Session
93
-			if ( ! defined( 'WP_SESSION_COOKIE' ) ) {
94
-				define( 'WP_SESSION_COOKIE', 'give_wp_session' );
93
+			if ( ! defined('WP_SESSION_COOKIE')) {
94
+				define('WP_SESSION_COOKIE', 'give_wp_session');
95 95
 			}
96 96
 
97
-			if ( ! class_exists( 'Recursive_ArrayAccess' ) ) {
98
-				require_once GIVE_PLUGIN_DIR . 'includes/libraries/sessions/class-recursive-arrayaccess.php';
97
+			if ( ! class_exists('Recursive_ArrayAccess')) {
98
+				require_once GIVE_PLUGIN_DIR.'includes/libraries/sessions/class-recursive-arrayaccess.php';
99 99
 			}
100 100
 
101
-			if ( ! class_exists( 'WP_Session' ) ) {
102
-				require_once GIVE_PLUGIN_DIR . 'includes/libraries/sessions/class-wp-session.php';
103
-				require_once GIVE_PLUGIN_DIR . 'includes/libraries/sessions/wp-session.php';
101
+			if ( ! class_exists('WP_Session')) {
102
+				require_once GIVE_PLUGIN_DIR.'includes/libraries/sessions/class-wp-session.php';
103
+				require_once GIVE_PLUGIN_DIR.'includes/libraries/sessions/wp-session.php';
104 104
 			}
105 105
 
106
-			add_filter( 'wp_session_expiration_variant', array( $this, 'set_expiration_variant_time' ), 99999 );
107
-			add_filter( 'wp_session_expiration', array( $this, 'set_expiration_time' ), 99999 );
106
+			add_filter('wp_session_expiration_variant', array($this, 'set_expiration_variant_time'), 99999);
107
+			add_filter('wp_session_expiration', array($this, 'set_expiration_time'), 99999);
108 108
 
109 109
 		}
110 110
 
111 111
 		//Init Session
112
-		if ( empty( $this->session ) && ! $this->use_php_sessions ) {
113
-			add_action( 'plugins_loaded', array( $this, 'init' ), - 1 );
112
+		if (empty($this->session) && ! $this->use_php_sessions) {
113
+			add_action('plugins_loaded', array($this, 'init'), - 1);
114 114
 		} else {
115
-			add_action( 'init', array( $this, 'init' ), - 1 );
115
+			add_action('init', array($this, 'init'), - 1);
116 116
 		}
117 117
 
118 118
 		//Set cookie on Donation Completion page
119
-		add_action( 'give_pre_process_purchase', array( $this, 'set_session_cookies' ) );
119
+		add_action('give_pre_process_purchase', array($this, 'set_session_cookies'));
120 120
 
121 121
 	}
122 122
 
@@ -129,8 +129,8 @@  discard block
 block discarded – undo
129 129
 	 */
130 130
 	public function init() {
131 131
 
132
-		if ( $this->use_php_sessions ) {
133
-			$this->session = isset( $_SESSION[ 'give' . $this->prefix ] ) && is_array( $_SESSION[ 'give' . $this->prefix ] ) ? $_SESSION[ 'give' . $this->prefix ] : array();
132
+		if ($this->use_php_sessions) {
133
+			$this->session = isset($_SESSION['give'.$this->prefix]) && is_array($_SESSION['give'.$this->prefix]) ? $_SESSION['give'.$this->prefix] : array();
134 134
 		} else {
135 135
 			$this->session = WP_Session::get_instance();
136 136
 		}
@@ -162,10 +162,10 @@  discard block
 block discarded – undo
162 162
 	 *
163 163
 	 * @return string Session variable
164 164
 	 */
165
-	public function get( $key ) {
166
-		$key = sanitize_key( $key );
165
+	public function get($key) {
166
+		$key = sanitize_key($key);
167 167
 
168
-		return isset( $this->session[ $key ] ) ? maybe_unserialize( $this->session[ $key ] ) : false;
168
+		return isset($this->session[$key]) ? maybe_unserialize($this->session[$key]) : false;
169 169
 
170 170
 	}
171 171
 
@@ -179,21 +179,21 @@  discard block
 block discarded – undo
179 179
 	 *
180 180
 	 * @return mixed Session variable
181 181
 	 */
182
-	public function set( $key, $value ) {
182
+	public function set($key, $value) {
183 183
 
184
-		$key = sanitize_key( $key );
184
+		$key = sanitize_key($key);
185 185
 
186
-		if ( is_array( $value ) ) {
187
-			$this->session[ $key ] = serialize( $value );
186
+		if (is_array($value)) {
187
+			$this->session[$key] = serialize($value);
188 188
 		} else {
189
-			$this->session[ $key ] = $value;
189
+			$this->session[$key] = $value;
190 190
 		}
191 191
 
192
-		if ( $this->use_php_sessions ) {
193
-			$_SESSION[ 'give' . $this->prefix ] = $this->session;
192
+		if ($this->use_php_sessions) {
193
+			$_SESSION['give'.$this->prefix] = $this->session;
194 194
 		}
195 195
 
196
-		return $this->session[ $key ];
196
+		return $this->session[$key];
197 197
 	}
198 198
 
199 199
 	/**
@@ -206,10 +206,10 @@  discard block
 block discarded – undo
206 206
 	 * @since 1.4
207 207
 	 */
208 208
 	public function set_session_cookies() {
209
-		if( ! headers_sent() ) {
210
-			$lifetime = current_time( 'timestamp' ) + $this->set_expiration_time();
211
-			@setcookie( session_name(), session_id(), $lifetime, COOKIEPATH, COOKIE_DOMAIN, false  );
212
-			@setcookie( session_name() . '_expiration', $lifetime, $lifetime,  COOKIEPATH, COOKIE_DOMAIN, false  );
209
+		if ( ! headers_sent()) {
210
+			$lifetime = current_time('timestamp') + $this->set_expiration_time();
211
+			@setcookie(session_name(), session_id(), $lifetime, COOKIEPATH, COOKIE_DOMAIN, false);
212
+			@setcookie(session_name().'_expiration', $lifetime, $lifetime, COOKIEPATH, COOKIE_DOMAIN, false);
213 213
 		}
214 214
 	}
215 215
 
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
 	 */
226 226
 	public function set_expiration_variant_time() {
227 227
 
228
-		return ( ! empty( $this->exp_option ) ? ( intval( $this->exp_option ) - 3600 ) : 30 * 60 * 23 );
228
+		return ( ! empty($this->exp_option) ? (intval($this->exp_option) - 3600) : 30 * 60 * 23);
229 229
 	}
230 230
 
231 231
 	/**
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
 	 */
241 241
 	public function set_expiration_time() {
242 242
 
243
-		return ( ! empty( $this->exp_option ) ? intval( $this->exp_option ) : 30 * 60 * 24 );
243
+		return ( ! empty($this->exp_option) ? intval($this->exp_option) : 30 * 60 * 24);
244 244
 	}
245 245
 
246 246
 	/**
@@ -258,21 +258,21 @@  discard block
 block discarded – undo
258 258
 		$ret = false;
259 259
 
260 260
 		// If the database variable is already set, no need to run autodetection
261
-		$give_use_php_sessions = (bool) get_option( 'give_use_php_sessions' );
261
+		$give_use_php_sessions = (bool) get_option('give_use_php_sessions');
262 262
 
263
-		if ( ! $give_use_php_sessions ) {
263
+		if ( ! $give_use_php_sessions) {
264 264
 
265 265
 			// Attempt to detect if the server supports PHP sessions
266
-			if ( function_exists( 'session_start' ) && ! ini_get( 'safe_mode' ) ) {
266
+			if (function_exists('session_start') && ! ini_get('safe_mode')) {
267 267
 
268
-				$this->set( 'give_use_php_sessions', 1 );
268
+				$this->set('give_use_php_sessions', 1);
269 269
 
270
-				if ( $this->get( 'give_use_php_sessions' ) ) {
270
+				if ($this->get('give_use_php_sessions')) {
271 271
 
272 272
 					$ret = true;
273 273
 
274 274
 					// Set the database option
275
-					update_option( 'give_use_php_sessions', true );
275
+					update_option('give_use_php_sessions', true);
276 276
 
277 277
 				}
278 278
 
@@ -284,13 +284,13 @@  discard block
 block discarded – undo
284 284
 		}
285 285
 
286 286
 		// Enable or disable PHP Sessions based on the GIVE_USE_PHP_SESSIONS constant
287
-		if ( defined( 'GIVE_USE_PHP_SESSIONS' ) && GIVE_USE_PHP_SESSIONS ) {
287
+		if (defined('GIVE_USE_PHP_SESSIONS') && GIVE_USE_PHP_SESSIONS) {
288 288
 			$ret = true;
289
-		} else if ( defined( 'GIVE_USE_PHP_SESSIONS' ) && ! GIVE_USE_PHP_SESSIONS ) {
289
+		} else if (defined('GIVE_USE_PHP_SESSIONS') && ! GIVE_USE_PHP_SESSIONS) {
290 290
 			$ret = false;
291 291
 		}
292 292
 
293
-		return (bool) apply_filters( 'give_use_php_sessions', $ret );
293
+		return (bool) apply_filters('give_use_php_sessions', $ret);
294 294
 	}
295 295
 
296 296
 	/**
@@ -303,9 +303,9 @@  discard block
 block discarded – undo
303 303
 
304 304
 		$start_session = true;
305 305
 
306
-		if ( ! empty( $_SERVER['REQUEST_URI'] ) ) {
306
+		if ( ! empty($_SERVER['REQUEST_URI'])) {
307 307
 
308
-			$blacklist = apply_filters( 'give_session_start_uri_blacklist', array(
308
+			$blacklist = apply_filters('give_session_start_uri_blacklist', array(
309 309
 				'feed',
310 310
 				'feed',
311 311
 				'feed/rss',
@@ -313,21 +313,21 @@  discard block
 block discarded – undo
313 313
 				'feed/rdf',
314 314
 				'feed/atom',
315 315
 				'comments/feed/'
316
-			) );
317
-			$uri       = ltrim( $_SERVER['REQUEST_URI'], '/' );
318
-			$uri       = untrailingslashit( $uri );
319
-			if ( in_array( $uri, $blacklist ) ) {
316
+			));
317
+			$uri       = ltrim($_SERVER['REQUEST_URI'], '/');
318
+			$uri       = untrailingslashit($uri);
319
+			if (in_array($uri, $blacklist)) {
320 320
 				$start_session = false;
321 321
 			}
322
-			if ( false !== strpos( $uri, 'feed=' ) ) {
322
+			if (false !== strpos($uri, 'feed=')) {
323 323
 				$start_session = false;
324 324
 			}
325
-			if ( is_admin() ) {
325
+			if (is_admin()) {
326 326
 				$start_session = false;
327 327
 			}
328 328
 		}
329 329
 
330
-		return apply_filters( 'give_start_session', $start_session );
330
+		return apply_filters('give_start_session', $start_session);
331 331
 	}
332 332
 
333 333
 	/**
@@ -338,11 +338,11 @@  discard block
 block discarded – undo
338 338
 	 */
339 339
 	public function maybe_start_session() {
340 340
 
341
-		if ( ! $this->should_start_session() ) {
341
+		if ( ! $this->should_start_session()) {
342 342
 			return;
343 343
 		}
344 344
 
345
-		if ( ! session_id() && ! headers_sent() ) {
345
+		if ( ! session_id() && ! headers_sent()) {
346 346
 			session_start();
347 347
 		}
348 348
 
@@ -358,9 +358,9 @@  discard block
 block discarded – undo
358 358
 
359 359
 		$expiration = false;
360 360
 
361
-		if ( session_id() && isset( $_COOKIE[ session_name() . '_expiration' ] ) ) {
361
+		if (session_id() && isset($_COOKIE[session_name().'_expiration'])) {
362 362
 
363
-			$expiration = date( 'D, d M Y h:i:s', intval( $_COOKIE[ session_name() . '_expiration' ] ) );
363
+			$expiration = date('D, d M Y h:i:s', intval($_COOKIE[session_name().'_expiration']));
364 364
 
365 365
 		}
366 366
 
Please login to merge, or discard this patch.
includes/admin/system-info.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
  *
50 50
  * @since: 1.4
51 51
  *
52
- * @return bool
52
+ * @return boolean|null
53 53
  */
54 54
 function give_allow_sessions_for_sysinfo() {
55 55
 	if ( is_admin() && ( isset( $_GET['page'] ) && isset( $_GET['tab'] ) ) && ( $_GET['tab'] == 'system_info' && $_GET['page'] == 'give-settings' ) ) {
Please login to merge, or discard this patch.
Spacing   +146 added lines, -146 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
 
@@ -24,14 +24,14 @@  discard block
 block discarded – undo
24 24
  */
25 25
 function give_system_info_callback() {
26 26
 
27
-	if ( ! current_user_can( 'manage_give_settings' ) ) {
27
+	if ( ! current_user_can('manage_give_settings')) {
28 28
 		return;
29 29
 	}
30 30
 	?>
31
-	<textarea readonly="readonly" onclick="this.focus(); this.select()" id="system-info-textarea" name="give-sysinfo" title="<?php esc_attr_e( 'To copy the system info, click below then press Ctrl + C (PC) or Cmd + C (Mac).', 'give' ); ?>"><?php echo give_tools_sysinfo_get(); ?></textarea>
31
+	<textarea readonly="readonly" onclick="this.focus(); this.select()" id="system-info-textarea" name="give-sysinfo" title="<?php esc_attr_e('To copy the system info, click below then press Ctrl + C (PC) or Cmd + C (Mac).', 'give'); ?>"><?php echo give_tools_sysinfo_get(); ?></textarea>
32 32
 	<p class="submit">
33 33
 		<input type="hidden" name="give-action" value="download_sysinfo"/>
34
-		<?php submit_button( esc_html( 'Download System Info File', 'give' ), 'secondary', 'give-download-sysinfo', false ); ?>
34
+		<?php submit_button(esc_html('Download System Info File', 'give'), 'secondary', 'give-download-sysinfo', false); ?>
35 35
 	</p>
36 36
 	<?php
37 37
 }
@@ -47,12 +47,12 @@  discard block
 block discarded – undo
47 47
  * @return bool
48 48
  */
49 49
 function give_allow_sessions_for_sysinfo() {
50
-	if ( is_admin() && ( isset( $_GET['page'] ) && isset( $_GET['tab'] ) ) && ( $_GET['tab'] == 'system_info' && $_GET['page'] == 'give-settings' ) ) {
50
+	if (is_admin() && (isset($_GET['page']) && isset($_GET['tab'])) && ($_GET['tab'] == 'system_info' && $_GET['page'] == 'give-settings')) {
51 51
 		return true;
52 52
 	}
53 53
 }
54 54
 
55
-add_filter( 'give_start_session', 'give_allow_sessions_for_sysinfo' );
55
+add_filter('give_start_session', 'give_allow_sessions_for_sysinfo');
56 56
 
57 57
 
58 58
 /**
@@ -67,63 +67,63 @@  discard block
 block discarded – undo
67 67
 function give_tools_sysinfo_get() {
68 68
 	global $wpdb, $give_options;
69 69
 
70
-	if ( ! class_exists( 'Browser' ) ) {
71
-		require_once GIVE_PLUGIN_DIR . 'includes/libraries/browser.php';
70
+	if ( ! class_exists('Browser')) {
71
+		require_once GIVE_PLUGIN_DIR.'includes/libraries/browser.php';
72 72
 	}
73 73
 
74 74
 	$browser = new Browser();
75 75
 
76 76
 	// Get theme info
77
-	if ( get_bloginfo( 'version' ) < '3.4' ) {
78
-		$theme_data = wp_get_theme( get_stylesheet_directory() . '/style.css' );
79
-		$theme      = $theme_data['Name'] . ' ' . $theme_data['Version'];
77
+	if (get_bloginfo('version') < '3.4') {
78
+		$theme_data = wp_get_theme(get_stylesheet_directory().'/style.css');
79
+		$theme      = $theme_data['Name'].' '.$theme_data['Version'];
80 80
 	} else {
81 81
 		$theme_data = wp_get_theme();
82
-		$theme      = $theme_data->Name . ' ' . $theme_data->Version;
82
+		$theme      = $theme_data->Name.' '.$theme_data->Version;
83 83
 	}
84 84
 
85 85
 	// Try to identify the hosting provider
86 86
 	$host = give_get_host();
87 87
 
88
-	$return = '### Begin System Info ###' . "\n\n";
88
+	$return = '### Begin System Info ###'."\n\n";
89 89
 
90 90
 	// Start with the basics...
91
-	$return .= '-- Site Info' . "\n\n";
92
-	$return .= 'Site URL:                 ' . site_url() . "\n";
93
-	$return .= 'Home URL:                 ' . home_url() . "\n";
94
-	$return .= 'Multisite:                ' . ( is_multisite() ? 'Yes' : 'No' ) . "\n";
91
+	$return .= '-- Site Info'."\n\n";
92
+	$return .= 'Site URL:                 '.site_url()."\n";
93
+	$return .= 'Home URL:                 '.home_url()."\n";
94
+	$return .= 'Multisite:                '.(is_multisite() ? 'Yes' : 'No')."\n";
95 95
 
96
-	$return = apply_filters( 'give_sysinfo_after_site_info', $return );
96
+	$return = apply_filters('give_sysinfo_after_site_info', $return);
97 97
 
98 98
 	// Can we determine the site's host?
99
-	if ( $host ) {
100
-		$return .= "\n" . '-- Hosting Provider' . "\n\n";
101
-		$return .= 'Host:                     ' . $host . "\n";
99
+	if ($host) {
100
+		$return .= "\n".'-- Hosting Provider'."\n\n";
101
+		$return .= 'Host:                     '.$host."\n";
102 102
 
103
-		$return = apply_filters( 'give_sysinfo_after_host_info', $return );
103
+		$return = apply_filters('give_sysinfo_after_host_info', $return);
104 104
 	}
105 105
 
106 106
 	// The local users' browser information, handled by the Browser class
107
-	$return .= "\n" . '-- User Browser' . "\n\n";
107
+	$return .= "\n".'-- User Browser'."\n\n";
108 108
 	$return .= $browser;
109 109
 
110
-	$return = apply_filters( 'give_sysinfo_after_user_browser', $return );
110
+	$return = apply_filters('give_sysinfo_after_user_browser', $return);
111 111
 
112 112
 	// WordPress configuration
113
-	$return .= "\n" . '-- WordPress Configuration' . "\n\n";
114
-	$return .= 'Version:                  ' . get_bloginfo( 'version' ) . "\n";
115
-	$return .= 'Language:                 ' . ( defined( 'WPLANG' ) && WPLANG ? WPLANG : 'en_US' ) . "\n";
116
-	$return .= 'Permalink Structure:      ' . ( get_option( 'permalink_structure' ) ? get_option( 'permalink_structure' ) : 'Default' ) . "\n";
117
-	$return .= 'Active Theme:             ' . $theme . "\n";
118
-	$return .= 'Show On Front:            ' . get_option( 'show_on_front' ) . "\n";
113
+	$return .= "\n".'-- WordPress Configuration'."\n\n";
114
+	$return .= 'Version:                  '.get_bloginfo('version')."\n";
115
+	$return .= 'Language:                 '.(defined('WPLANG') && WPLANG ? WPLANG : 'en_US')."\n";
116
+	$return .= 'Permalink Structure:      '.(get_option('permalink_structure') ? get_option('permalink_structure') : 'Default')."\n";
117
+	$return .= 'Active Theme:             '.$theme."\n";
118
+	$return .= 'Show On Front:            '.get_option('show_on_front')."\n";
119 119
 
120 120
 	// Only show page specs if frontpage is set to 'page'
121
-	if ( get_option( 'show_on_front' ) == 'page' ) {
122
-		$front_page_id = get_option( 'page_on_front' );
123
-		$blog_page_id  = get_option( 'page_for_posts' );
121
+	if (get_option('show_on_front') == 'page') {
122
+		$front_page_id = get_option('page_on_front');
123
+		$blog_page_id  = get_option('page_for_posts');
124 124
 
125
-		$return .= 'Page On Front:            ' . ( $front_page_id != 0 ? get_the_title( $front_page_id ) . ' (#' . $front_page_id . ')' : 'Unset' ) . "\n";
126
-		$return .= 'Page For Posts:           ' . ( $blog_page_id != 0 ? get_the_title( $blog_page_id ) . ' (#' . $blog_page_id . ')' : 'Unset' ) . "\n";
125
+		$return .= 'Page On Front:            '.($front_page_id != 0 ? get_the_title($front_page_id).' (#'.$front_page_id.')' : 'Unset')."\n";
126
+		$return .= 'Page For Posts:           '.($blog_page_id != 0 ? get_the_title($blog_page_id).' (#'.$blog_page_id.')' : 'Unset')."\n";
127 127
 	}
128 128
 
129 129
 	// Make sure wp_remote_post() is working
@@ -132,205 +132,205 @@  discard block
 block discarded – undo
132 132
 	$params = array(
133 133
 		'sslverify'  => false,
134 134
 		'timeout'    => 60,
135
-		'user-agent' => 'Give/' . GIVE_VERSION,
135
+		'user-agent' => 'Give/'.GIVE_VERSION,
136 136
 		'body'       => $request
137 137
 	);
138 138
 
139
-	$response = wp_remote_post( 'https://www.paypal.com/cgi-bin/webscr', $params );
139
+	$response = wp_remote_post('https://www.paypal.com/cgi-bin/webscr', $params);
140 140
 
141
-	if ( ! is_wp_error( $response ) && $response['response']['code'] >= 200 && $response['response']['code'] < 300 ) {
141
+	if ( ! is_wp_error($response) && $response['response']['code'] >= 200 && $response['response']['code'] < 300) {
142 142
 		$WP_REMOTE_POST = 'wp_remote_post() works';
143 143
 	} else {
144 144
 		$WP_REMOTE_POST = 'wp_remote_post() does not work';
145 145
 	}
146 146
 
147
-	$return .= 'Remote Post:              ' . $WP_REMOTE_POST . "\n";
148
-	$return .= 'Table Prefix:             ' . 'Length: ' . strlen( $wpdb->prefix ) . '   Status: ' . ( strlen( $wpdb->prefix ) > 16 ? 'ERROR: Too long' : 'Acceptable' ) . "\n";
149
-	$return .= 'Admin AJAX:               ' . ( give_test_ajax_works() ? 'Accessible' : 'Inaccessible' ) . "\n";
150
-	$return .= 'WP_DEBUG:                 ' . ( defined( 'WP_DEBUG' ) ? WP_DEBUG ? 'Enabled' : 'Disabled' : 'Not set' ) . "\n";
151
-	$return .= 'Memory Limit:             ' . WP_MEMORY_LIMIT . "\n";
152
-	$return .= 'Registered Post Stati:    ' . implode( ', ', get_post_stati() ) . "\n";
147
+	$return .= 'Remote Post:              '.$WP_REMOTE_POST."\n";
148
+	$return .= 'Table Prefix:             '.'Length: '.strlen($wpdb->prefix).'   Status: '.(strlen($wpdb->prefix) > 16 ? 'ERROR: Too long' : 'Acceptable')."\n";
149
+	$return .= 'Admin AJAX:               '.(give_test_ajax_works() ? 'Accessible' : 'Inaccessible')."\n";
150
+	$return .= 'WP_DEBUG:                 '.(defined('WP_DEBUG') ? WP_DEBUG ? 'Enabled' : 'Disabled' : 'Not set')."\n";
151
+	$return .= 'Memory Limit:             '.WP_MEMORY_LIMIT."\n";
152
+	$return .= 'Registered Post Stati:    '.implode(', ', get_post_stati())."\n";
153 153
 
154
-	$return = apply_filters( 'give_sysinfo_after_wordpress_config', $return );
154
+	$return = apply_filters('give_sysinfo_after_wordpress_config', $return);
155 155
 
156 156
 	// GIVE configuration
157
-	$return .= "\n" . '-- Give Configuration' . "\n\n";
158
-	$return .= 'Version:                  ' . GIVE_VERSION . "\n";
159
-	$return .= 'Upgraded From:            ' . get_option( 'give_version_upgraded_from', 'None' ) . "\n";
160
-	$return .= 'Test Mode:                ' . ( give_is_test_mode() ? "Enabled\n" : "Disabled\n" );
161
-	$return .= 'Currency Code:            ' . give_get_currency() . "\n";
162
-	$return .= 'Currency Position:        ' . give_get_option( 'currency_position', 'before' ) . "\n";
163
-	$return .= 'Decimal Separator:        ' . give_get_option( 'decimal_separator', '.' ) . "\n";
164
-	$return .= 'Thousands Separator:      ' . give_get_option( 'thousands_separator', ',' ) . "\n";
157
+	$return .= "\n".'-- Give Configuration'."\n\n";
158
+	$return .= 'Version:                  '.GIVE_VERSION."\n";
159
+	$return .= 'Upgraded From:            '.get_option('give_version_upgraded_from', 'None')."\n";
160
+	$return .= 'Test Mode:                '.(give_is_test_mode() ? "Enabled\n" : "Disabled\n");
161
+	$return .= 'Currency Code:            '.give_get_currency()."\n";
162
+	$return .= 'Currency Position:        '.give_get_option('currency_position', 'before')."\n";
163
+	$return .= 'Decimal Separator:        '.give_get_option('decimal_separator', '.')."\n";
164
+	$return .= 'Thousands Separator:      '.give_get_option('thousands_separator', ',')."\n";
165 165
 
166
-	$return = apply_filters( 'give_sysinfo_after_give_config', $return );
166
+	$return = apply_filters('give_sysinfo_after_give_config', $return);
167 167
 
168 168
 	// GIVE pages
169
-	$return .= "\n" . '-- Give Page Configuration' . "\n\n";
170
-	$return .= 'Success Page:             ' . ( ! empty( $give_options['success_page'] ) ? get_permalink( $give_options['success_page'] ) . "\n" : "Unset\n" );
171
-	$return .= 'Failure Page:             ' . ( ! empty( $give_options['failure_page'] ) ? get_permalink( $give_options['failure_page'] ) . "\n" : "Unset\n" );
172
-	$return .= 'Give Forms Slug:           ' . ( defined( 'GIVE_SLUG' ) ? '/' . GIVE_SLUG . "\n" : "/donations\n" );
169
+	$return .= "\n".'-- Give Page Configuration'."\n\n";
170
+	$return .= 'Success Page:             '.( ! empty($give_options['success_page']) ? get_permalink($give_options['success_page'])."\n" : "Unset\n");
171
+	$return .= 'Failure Page:             '.( ! empty($give_options['failure_page']) ? get_permalink($give_options['failure_page'])."\n" : "Unset\n");
172
+	$return .= 'Give Forms Slug:           '.(defined('GIVE_SLUG') ? '/'.GIVE_SLUG."\n" : "/donations\n");
173 173
 
174
-	$return = apply_filters( 'give_sysinfo_after_give_pages', $return );
174
+	$return = apply_filters('give_sysinfo_after_give_pages', $return);
175 175
 
176 176
 	// GIVE gateways
177
-	$return .= "\n" . '-- Give Gateway Configuration' . "\n\n";
177
+	$return .= "\n".'-- Give Gateway Configuration'."\n\n";
178 178
 
179 179
 	$active_gateways = give_get_enabled_payment_gateways();
180
-	if ( $active_gateways ) {
181
-		$default_gateway_is_active = give_is_gateway_active( give_get_default_gateway( null ) );
182
-		if ( $default_gateway_is_active ) {
183
-			$default_gateway = give_get_default_gateway( null );
184
-			$default_gateway = $active_gateways[ $default_gateway ]['admin_label'];
180
+	if ($active_gateways) {
181
+		$default_gateway_is_active = give_is_gateway_active(give_get_default_gateway(null));
182
+		if ($default_gateway_is_active) {
183
+			$default_gateway = give_get_default_gateway(null);
184
+			$default_gateway = $active_gateways[$default_gateway]['admin_label'];
185 185
 		} else {
186 186
 			$default_gateway = 'Test Payment';
187 187
 		}
188 188
 
189 189
 		$gateways = array();
190
-		foreach ( $active_gateways as $gateway ) {
190
+		foreach ($active_gateways as $gateway) {
191 191
 			$gateways[] = $gateway['admin_label'];
192 192
 		}
193 193
 
194
-		$return .= 'Enabled Gateways:         ' . implode( ', ', $gateways ) . "\n";
195
-		$return .= 'Default Gateway:          ' . $default_gateway . "\n";
194
+		$return .= 'Enabled Gateways:         '.implode(', ', $gateways)."\n";
195
+		$return .= 'Default Gateway:          '.$default_gateway."\n";
196 196
 	} else {
197
-		$return .= 'Enabled Gateways:         None' . "\n";
197
+		$return .= 'Enabled Gateways:         None'."\n";
198 198
 	}
199 199
 
200
-	$return = apply_filters( 'give_sysinfo_after_give_gateways', $return );
200
+	$return = apply_filters('give_sysinfo_after_give_gateways', $return);
201 201
 
202 202
 	// GIVE Templates
203
-	$dir = get_stylesheet_directory() . '/give_templates/*';
204
-	if ( is_dir( $dir ) && ( count( glob( "$dir/*" ) ) !== 0 ) ) {
205
-		$return .= "\n" . '-- Give Template Overrides' . "\n\n";
203
+	$dir = get_stylesheet_directory().'/give_templates/*';
204
+	if (is_dir($dir) && (count(glob("$dir/*")) !== 0)) {
205
+		$return .= "\n".'-- Give Template Overrides'."\n\n";
206 206
 
207
-		foreach ( glob( $dir ) as $file ) {
208
-			$return .= 'Filename:                 ' . basename( $file ) . "\n";
207
+		foreach (glob($dir) as $file) {
208
+			$return .= 'Filename:                 '.basename($file)."\n";
209 209
 		}
210 210
 
211
-		$return = apply_filters( 'give_sysinfo_after_give_templates', $return );
211
+		$return = apply_filters('give_sysinfo_after_give_templates', $return);
212 212
 	}
213 213
 
214 214
 	// Must-use plugins
215 215
 	$muplugins = get_mu_plugins();
216
-	if ( count( $muplugins > 0 ) ) {
217
-		$return .= "\n" . '-- Must-Use Plugins' . "\n\n";
216
+	if (count($muplugins > 0)) {
217
+		$return .= "\n".'-- Must-Use Plugins'."\n\n";
218 218
 
219
-		foreach ( $muplugins as $plugin => $plugin_data ) {
220
-			$return .= $plugin_data['Name'] . ': ' . $plugin_data['Version'] . "\n";
219
+		foreach ($muplugins as $plugin => $plugin_data) {
220
+			$return .= $plugin_data['Name'].': '.$plugin_data['Version']."\n";
221 221
 		}
222 222
 
223
-		$return = apply_filters( 'give_sysinfo_after_wordpress_mu_plugins', $return );
223
+		$return = apply_filters('give_sysinfo_after_wordpress_mu_plugins', $return);
224 224
 	}
225 225
 
226 226
 	// WordPress active plugins
227
-	$return .= "\n" . '-- WordPress Active Plugins' . "\n\n";
227
+	$return .= "\n".'-- WordPress Active Plugins'."\n\n";
228 228
 
229 229
 	$plugins        = get_plugins();
230
-	$active_plugins = get_option( 'active_plugins', array() );
230
+	$active_plugins = get_option('active_plugins', array());
231 231
 
232
-	foreach ( $plugins as $plugin_path => $plugin ) {
233
-		if ( ! in_array( $plugin_path, $active_plugins ) ) {
232
+	foreach ($plugins as $plugin_path => $plugin) {
233
+		if ( ! in_array($plugin_path, $active_plugins)) {
234 234
 			continue;
235 235
 		}
236 236
 
237
-		$return .= $plugin['Name'] . ': ' . $plugin['Version'] . "\n";
237
+		$return .= $plugin['Name'].': '.$plugin['Version']."\n";
238 238
 	}
239 239
 
240
-	$return = apply_filters( 'give_sysinfo_after_wordpress_plugins', $return );
240
+	$return = apply_filters('give_sysinfo_after_wordpress_plugins', $return);
241 241
 
242 242
 	// WordPress inactive plugins
243
-	$return .= "\n" . '-- WordPress Inactive Plugins' . "\n\n";
243
+	$return .= "\n".'-- WordPress Inactive Plugins'."\n\n";
244 244
 
245
-	foreach ( $plugins as $plugin_path => $plugin ) {
246
-		if ( in_array( $plugin_path, $active_plugins ) ) {
245
+	foreach ($plugins as $plugin_path => $plugin) {
246
+		if (in_array($plugin_path, $active_plugins)) {
247 247
 			continue;
248 248
 		}
249 249
 
250
-		$return .= $plugin['Name'] . ': ' . $plugin['Version'] . "\n";
250
+		$return .= $plugin['Name'].': '.$plugin['Version']."\n";
251 251
 	}
252 252
 
253
-	$return = apply_filters( 'give_sysinfo_after_wordpress_plugins_inactive', $return );
253
+	$return = apply_filters('give_sysinfo_after_wordpress_plugins_inactive', $return);
254 254
 
255
-	if ( is_multisite() ) {
255
+	if (is_multisite()) {
256 256
 		// WordPress Multisite active plugins
257
-		$return .= "\n" . '-- Network Active Plugins' . "\n\n";
257
+		$return .= "\n".'-- Network Active Plugins'."\n\n";
258 258
 
259 259
 		$plugins        = wp_get_active_network_plugins();
260
-		$active_plugins = get_site_option( 'active_sitewide_plugins', array() );
260
+		$active_plugins = get_site_option('active_sitewide_plugins', array());
261 261
 
262
-		foreach ( $plugins as $plugin_path ) {
263
-			$plugin_base = plugin_basename( $plugin_path );
262
+		foreach ($plugins as $plugin_path) {
263
+			$plugin_base = plugin_basename($plugin_path);
264 264
 
265
-			if ( ! array_key_exists( $plugin_base, $active_plugins ) ) {
265
+			if ( ! array_key_exists($plugin_base, $active_plugins)) {
266 266
 				continue;
267 267
 			}
268 268
 
269
-			$plugin = get_plugin_data( $plugin_path );
270
-			$return .= $plugin['Name'] . ': ' . $plugin['Version'] . "\n";
269
+			$plugin = get_plugin_data($plugin_path);
270
+			$return .= $plugin['Name'].': '.$plugin['Version']."\n";
271 271
 		}
272 272
 
273
-		$return = apply_filters( 'give_sysinfo_after_wordpress_ms_plugins', $return );
273
+		$return = apply_filters('give_sysinfo_after_wordpress_ms_plugins', $return);
274 274
 	}
275 275
 
276 276
 	// Server configuration (really just versioning)
277
-	$return .= "\n" . '-- Webserver Configuration' . "\n\n";
278
-	$return .= 'PHP Version:              ' . PHP_VERSION . "\n";
279
-	$return .= 'MySQL Version:            ' . $wpdb->db_version() . "\n";
280
-	$return .= 'Webserver Info:           ' . $_SERVER['SERVER_SOFTWARE'] . "\n";
277
+	$return .= "\n".'-- Webserver Configuration'."\n\n";
278
+	$return .= 'PHP Version:              '.PHP_VERSION."\n";
279
+	$return .= 'MySQL Version:            '.$wpdb->db_version()."\n";
280
+	$return .= 'Webserver Info:           '.$_SERVER['SERVER_SOFTWARE']."\n";
281 281
 
282
-	$return = apply_filters( 'give_sysinfo_after_webserver_config', $return );
282
+	$return = apply_filters('give_sysinfo_after_webserver_config', $return);
283 283
 
284 284
 	// PHP configs... now we're getting to the important stuff
285
-	$return .= "\n" . '-- PHP Configuration' . "\n\n";
286
-	$return .= 'Safe Mode:                ' . ( ini_get( 'safe_mode' ) ? 'Enabled' : 'Disabled' . "\n" );
287
-	$return .= 'Memory Limit:             ' . ini_get( 'memory_limit' ) . "\n";
288
-	$return .= 'Upload Max Size:          ' . ini_get( 'upload_max_filesize' ) . "\n";
289
-	$return .= 'Post Max Size:            ' . ini_get( 'post_max_size' ) . "\n";
290
-	$return .= 'Upload Max Filesize:      ' . ini_get( 'upload_max_filesize' ) . "\n";
291
-	$return .= 'Time Limit:               ' . ini_get( 'max_execution_time' ) . "\n";
292
-	$return .= 'Max Input Vars:           ' . ini_get( 'max_input_vars' ) . "\n";
293
-	$return .= 'URL-aware fopen:          ' . ( ini_get( 'allow_url_fopen' ) ? 'On (' . ini_get( 'allow_url_fopen' ) . ')' : 'N/A' ) . "\n";
294
-	$return .= 'Display Errors:           ' . ( ini_get( 'display_errors' ) ? 'On (' . ini_get( 'display_errors' ) . ')' : 'N/A' ) . "\n";
295
-
296
-	$return = apply_filters( 'give_sysinfo_after_php_config', $return );
285
+	$return .= "\n".'-- PHP Configuration'."\n\n";
286
+	$return .= 'Safe Mode:                '.(ini_get('safe_mode') ? 'Enabled' : 'Disabled'."\n");
287
+	$return .= 'Memory Limit:             '.ini_get('memory_limit')."\n";
288
+	$return .= 'Upload Max Size:          '.ini_get('upload_max_filesize')."\n";
289
+	$return .= 'Post Max Size:            '.ini_get('post_max_size')."\n";
290
+	$return .= 'Upload Max Filesize:      '.ini_get('upload_max_filesize')."\n";
291
+	$return .= 'Time Limit:               '.ini_get('max_execution_time')."\n";
292
+	$return .= 'Max Input Vars:           '.ini_get('max_input_vars')."\n";
293
+	$return .= 'URL-aware fopen:          '.(ini_get('allow_url_fopen') ? 'On ('.ini_get('allow_url_fopen').')' : 'N/A')."\n";
294
+	$return .= 'Display Errors:           '.(ini_get('display_errors') ? 'On ('.ini_get('display_errors').')' : 'N/A')."\n";
295
+
296
+	$return = apply_filters('give_sysinfo_after_php_config', $return);
297 297
 
298 298
 	// PHP extensions and such
299
-	$return .= "\n" . '-- PHP Extensions' . "\n\n";
300
-	$return .= 'cURL:                     ' . ( function_exists( 'curl_init' ) ? 'Supported' : 'Not Supported' ) . "\n";
299
+	$return .= "\n".'-- PHP Extensions'."\n\n";
300
+	$return .= 'cURL:                     '.(function_exists('curl_init') ? 'Supported' : 'Not Supported')."\n";
301 301
 
302 302
 	//cURL version
303
-	if ( function_exists( 'curl_init' ) && function_exists( 'curl_version' ) ) {
303
+	if (function_exists('curl_init') && function_exists('curl_version')) {
304 304
 		$curl_values = curl_version();
305
-		$return .= 'cURL Version:             ' . $curl_values["version"] . "\n";
305
+		$return .= 'cURL Version:             '.$curl_values["version"]."\n";
306 306
 	}
307
-	$return .= 'zlib:                     ' . ( function_exists( 'gzcompress' ) ? 'Supported' : 'Not Supported' ) . "\n";
308
-	$return .= 'GD:                       ' . ( ( extension_loaded( 'gd' ) && function_exists( 'gd_info' ) ) ? 'Supported' : 'Not Supported' ) . "\n";
309
-	$return .= 'fsockopen:                ' . ( function_exists( 'fsockopen' ) ? 'Supported' : 'Not Supported' ) . "\n";
310
-	$return .= 'SOAP Client:              ' . ( class_exists( 'SoapClient' ) ? 'Installed' : 'Not Installed' ) . "\n";
311
-	$return .= 'Suhosin:                  ' . ( extension_loaded( 'suhosin' ) ? 'Installed' : 'Not Installed' ) . "\n";
312
-	$return .= 'DOM:                      ' . ( extension_loaded( 'dom' ) ? 'Installed' : 'Not Installed' ) . "\n";
313
-	$return .= 'MBString:                 ' . ( extension_loaded( 'mbstring' ) ? 'Installed' : 'Not Installed' ) . "\n";
307
+	$return .= 'zlib:                     '.(function_exists('gzcompress') ? 'Supported' : 'Not Supported')."\n";
308
+	$return .= 'GD:                       '.((extension_loaded('gd') && function_exists('gd_info')) ? 'Supported' : 'Not Supported')."\n";
309
+	$return .= 'fsockopen:                '.(function_exists('fsockopen') ? 'Supported' : 'Not Supported')."\n";
310
+	$return .= 'SOAP Client:              '.(class_exists('SoapClient') ? 'Installed' : 'Not Installed')."\n";
311
+	$return .= 'Suhosin:                  '.(extension_loaded('suhosin') ? 'Installed' : 'Not Installed')."\n";
312
+	$return .= 'DOM:                      '.(extension_loaded('dom') ? 'Installed' : 'Not Installed')."\n";
313
+	$return .= 'MBString:                 '.(extension_loaded('mbstring') ? 'Installed' : 'Not Installed')."\n";
314 314
 
315
-	$return = apply_filters( 'give_sysinfo_after_php_ext', $return );
315
+	$return = apply_filters('give_sysinfo_after_php_ext', $return);
316 316
 
317 317
 	// Session stuff
318
-	$return .= "\n" . '-- Session Configuration' . "\n\n";
319
-	$return .= 'Give Use Sessions:        ' . ( defined( 'GIVE_USE_PHP_SESSIONS' ) && GIVE_USE_PHP_SESSIONS ? 'Enforced' : ( Give()->session->use_php_sessions() ? 'Enabled' : 'Disabled' ) ) . "\n";
320
-	$return .= 'Session:                  ' . ( isset( $_SESSION ) ? 'Enabled' : 'Disabled' ) . "\n";
318
+	$return .= "\n".'-- Session Configuration'."\n\n";
319
+	$return .= 'Give Use Sessions:        '.(defined('GIVE_USE_PHP_SESSIONS') && GIVE_USE_PHP_SESSIONS ? 'Enforced' : (Give()->session->use_php_sessions() ? 'Enabled' : 'Disabled'))."\n";
320
+	$return .= 'Session:                  '.(isset($_SESSION) ? 'Enabled' : 'Disabled')."\n";
321 321
 
322 322
 	// The rest of this is only relevant is session is enabled
323
-	if ( isset( $_SESSION ) ) {
324
-		$return .= 'Session Name:             ' . esc_html( ini_get( 'session.name' ) ) . "\n";
325
-		$return .= 'Cookie Path:              ' . esc_html( ini_get( 'session.cookie_path' ) ) . "\n";
326
-		$return .= 'Save Path:                ' . esc_html( ini_get( 'session.save_path' ) ) . "\n";
327
-		$return .= 'Use Cookies:              ' . ( ini_get( 'session.use_cookies' ) ? 'On' : 'Off' ) . "\n";
328
-		$return .= 'Use Only Cookies:         ' . ( ini_get( 'session.use_only_cookies' ) ? 'On' : 'Off' ) . "\n";
323
+	if (isset($_SESSION)) {
324
+		$return .= 'Session Name:             '.esc_html(ini_get('session.name'))."\n";
325
+		$return .= 'Cookie Path:              '.esc_html(ini_get('session.cookie_path'))."\n";
326
+		$return .= 'Save Path:                '.esc_html(ini_get('session.save_path'))."\n";
327
+		$return .= 'Use Cookies:              '.(ini_get('session.use_cookies') ? 'On' : 'Off')."\n";
328
+		$return .= 'Use Only Cookies:         '.(ini_get('session.use_only_cookies') ? 'On' : 'Off')."\n";
329 329
 	}
330 330
 
331
-	$return = apply_filters( 'give_sysinfo_after_session_config', $return );
331
+	$return = apply_filters('give_sysinfo_after_session_config', $return);
332 332
 
333
-	$return .= "\n" . '### End System Info ###';
333
+	$return .= "\n".'### End System Info ###';
334 334
 
335 335
 	return $return;
336 336
 }
@@ -344,17 +344,17 @@  discard block
 block discarded – undo
344 344
  */
345 345
 function give_tools_sysinfo_download() {
346 346
 
347
-	if ( ! current_user_can( 'manage_give_settings' ) ) {
347
+	if ( ! current_user_can('manage_give_settings')) {
348 348
 		return;
349 349
 	}
350 350
 
351 351
 	nocache_headers();
352 352
 
353
-	header( 'Content-Type: text/plain' );
354
-	header( 'Content-Disposition: attachment; filename="give-system-info.txt"' );
353
+	header('Content-Type: text/plain');
354
+	header('Content-Disposition: attachment; filename="give-system-info.txt"');
355 355
 
356
-	echo wp_strip_all_tags( $_POST['give-sysinfo'] );
356
+	echo wp_strip_all_tags($_POST['give-sysinfo']);
357 357
 	give_die();
358 358
 }
359 359
 
360
-add_action( 'give_download_sysinfo', 'give_tools_sysinfo_download' );
361 360
\ No newline at end of file
361
+add_action('give_download_sysinfo', 'give_tools_sysinfo_download');
362 362
\ No newline at end of file
Please login to merge, or discard this patch.
includes/class-give-db-customers.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
 	 * @param int $user_id
283 283
 	 * @param $old_user_data
284 284
 	 *
285
-	 * @return bool
285
+	 * @return false|null
286 286
 	 */
287 287
 	public function update_customer_email_on_user_update( $user_id = 0, $old_user_data ) {
288 288
 
@@ -331,7 +331,7 @@  discard block
 block discarded – undo
331 331
 	 * @since  1.0
332 332
 	 *
333 333
 	 * @param  string $field id or email
334
-	 * @param  mixed  $value The Customer ID or email to search
334
+	 * @param  integer  $value The Customer ID or email to search
335 335
 	 *
336 336
 	 * @return mixed          Upon success, an object of the customer. Upon failure, NULL
337 337
 	 */
Please login to merge, or discard this patch.
Spacing   +129 added lines, -129 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
 
@@ -33,11 +33,11 @@  discard block
 block discarded – undo
33 33
 
34 34
 		global $wpdb;
35 35
 
36
-		$this->table_name  = $wpdb->prefix . 'give_customers';
36
+		$this->table_name  = $wpdb->prefix.'give_customers';
37 37
 		$this->primary_key = 'id';
38 38
 		$this->version     = '1.0';
39 39
 		
40
-		add_action( 'profile_update', array( $this, 'update_customer_email_on_user_update' ), 10, 2 );
40
+		add_action('profile_update', array($this, 'update_customer_email_on_user_update'), 10, 2);
41 41
 
42 42
 	}
43 43
 
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
 			'purchase_value' => 0.00,
77 77
 			'purchase_count' => 0,
78 78
 			'notes'          => '',
79
-			'date_created'   => date( 'Y-m-d H:i:s' ),
79
+			'date_created'   => date('Y-m-d H:i:s'),
80 80
 		);
81 81
 	}
82 82
 
@@ -86,40 +86,40 @@  discard block
 block discarded – undo
86 86
 	 * @access  public
87 87
 	 * @since   1.0
88 88
 	 */
89
-	public function add( $data = array() ) {
89
+	public function add($data = array()) {
90 90
 
91 91
 		$defaults = array(
92 92
 			'payment_ids' => ''
93 93
 		);
94 94
 
95
-		$args = wp_parse_args( $data, $defaults );
95
+		$args = wp_parse_args($data, $defaults);
96 96
 
97
-		if ( empty( $args['email'] ) ) {
97
+		if (empty($args['email'])) {
98 98
 			return false;
99 99
 		}
100 100
 
101
-		if ( ! empty( $args['payment_ids'] ) && is_array( $args['payment_ids'] ) ) {
102
-			$args['payment_ids'] = implode( ',', array_unique( array_values( $args['payment_ids'] ) ) );
101
+		if ( ! empty($args['payment_ids']) && is_array($args['payment_ids'])) {
102
+			$args['payment_ids'] = implode(',', array_unique(array_values($args['payment_ids'])));
103 103
 		}
104 104
 
105
-		$customer = $this->get_customer_by( 'email', $args['email'] );
105
+		$customer = $this->get_customer_by('email', $args['email']);
106 106
 
107
-		if ( $customer ) {
107
+		if ($customer) {
108 108
 			// update an existing customer
109 109
 
110 110
 			// Update the payment IDs attached to the customer
111
-			if ( ! empty( $args['payment_ids'] ) ) {
111
+			if ( ! empty($args['payment_ids'])) {
112 112
 
113
-				if ( empty( $customer->payment_ids ) ) {
113
+				if (empty($customer->payment_ids)) {
114 114
 
115 115
 					$customer->payment_ids = $args['payment_ids'];
116 116
 
117 117
 				} else {
118 118
 
119
-					$existing_ids          = array_map( 'absint', explode( ',', $customer->payment_ids ) );
120
-					$payment_ids           = array_map( 'absint', explode( ',', $args['payment_ids'] ) );
121
-					$payment_ids           = array_merge( $payment_ids, $existing_ids );
122
-					$customer->payment_ids = implode( ',', array_unique( array_values( $payment_ids ) ) );
119
+					$existing_ids          = array_map('absint', explode(',', $customer->payment_ids));
120
+					$payment_ids           = array_map('absint', explode(',', $args['payment_ids']));
121
+					$payment_ids           = array_merge($payment_ids, $existing_ids);
122
+					$customer->payment_ids = implode(',', array_unique(array_values($payment_ids)));
123 123
 
124 124
 				}
125 125
 
@@ -127,13 +127,13 @@  discard block
 block discarded – undo
127 127
 
128 128
 			}
129 129
 
130
-			$this->update( $customer->id, $args );
130
+			$this->update($customer->id, $args);
131 131
 
132 132
 			return $customer->id;
133 133
 
134 134
 		} else {
135 135
 
136
-			return $this->insert( $args, 'customer' );
136
+			return $this->insert($args, 'customer');
137 137
 
138 138
 		}
139 139
 
@@ -152,20 +152,20 @@  discard block
 block discarded – undo
152 152
 	 *
153 153
 	 * @return bool|false|int
154 154
 	 */
155
-	public function delete( $_id_or_email = false ) {
155
+	public function delete($_id_or_email = false) {
156 156
 
157
-		if ( empty( $_id_or_email ) ) {
157
+		if (empty($_id_or_email)) {
158 158
 			return false;
159 159
 		}
160 160
 
161
-		$column   = is_email( $_id_or_email ) ? 'email' : 'id';
162
-		$customer = $this->get_customer_by( $column, $_id_or_email );
161
+		$column   = is_email($_id_or_email) ? 'email' : 'id';
162
+		$customer = $this->get_customer_by($column, $_id_or_email);
163 163
 
164
-		if ( $customer->id > 0 ) {
164
+		if ($customer->id > 0) {
165 165
 
166 166
 			global $wpdb;
167 167
 
168
-			return $wpdb->delete( $this->table_name, array( 'id' => $customer->id ), array( '%d' ) );
168
+			return $wpdb->delete($this->table_name, array('id' => $customer->id), array('%d'));
169 169
 
170 170
 		} else {
171 171
 			return false;
@@ -179,14 +179,14 @@  discard block
 block discarded – undo
179 179
 	 * @access  public
180 180
 	 * @since   1.0
181 181
 	 */
182
-	public function exists( $value = '', $field = 'email' ) {
182
+	public function exists($value = '', $field = 'email') {
183 183
 		
184 184
 		$columns = $this->get_columns();
185
-		if ( ! array_key_exists( $field, $columns ) ) {
185
+		if ( ! array_key_exists($field, $columns)) {
186 186
 			return false;
187 187
 		}
188 188
 
189
-		return (bool) $this->get_column_by( 'id', $field, $value );
189
+		return (bool) $this->get_column_by('id', $field, $value);
190 190
 
191 191
 	}
192 192
 
@@ -196,16 +196,16 @@  discard block
 block discarded – undo
196 196
 	 * @access  public
197 197
 	 * @since   1.0
198 198
 	 */
199
-	public function attach_payment( $customer_id = 0, $payment_id = 0 ) {
199
+	public function attach_payment($customer_id = 0, $payment_id = 0) {
200 200
 
201
-		$customer = new Give_Customer( $customer_id );
201
+		$customer = new Give_Customer($customer_id);
202 202
 
203
-		if ( empty( $customer->id ) ) {
203
+		if (empty($customer->id)) {
204 204
 			return false;
205 205
 		}
206 206
 
207 207
 		// Attach the payment, but don't increment stats, as this function previously did not
208
-		return $customer->attach_payment( $payment_id, false );
208
+		return $customer->attach_payment($payment_id, false);
209 209
 
210 210
 	}
211 211
 
@@ -215,16 +215,16 @@  discard block
 block discarded – undo
215 215
 	 * @access  public
216 216
 	 * @since   1.0
217 217
 	 */
218
-	public function remove_payment( $customer_id = 0, $payment_id = 0 ) {
218
+	public function remove_payment($customer_id = 0, $payment_id = 0) {
219 219
 
220
-		$customer = new Give_Customer( $customer_id );
220
+		$customer = new Give_Customer($customer_id);
221 221
 
222
-		if ( ! $customer ) {
222
+		if ( ! $customer) {
223 223
 			return false;
224 224
 		}
225 225
 
226 226
 		// Remove the payment, but don't decrease stats, as this function previously did not
227
-		return $customer->remove_payment( $payment_id, false );
227
+		return $customer->remove_payment($payment_id, false);
228 228
 
229 229
 	}
230 230
 
@@ -236,18 +236,18 @@  discard block
 block discarded – undo
236 236
 	 *
237 237
 	 * @return bool
238 238
 	 */
239
-	public function increment_stats( $customer_id = 0, $amount = 0.00 ) {
239
+	public function increment_stats($customer_id = 0, $amount = 0.00) {
240 240
 
241
-		$customer = new Give_Customer( $customer_id );
241
+		$customer = new Give_Customer($customer_id);
242 242
 
243
-		if ( empty( $customer->id ) ) {
243
+		if (empty($customer->id)) {
244 244
 			return false;
245 245
 		}
246 246
 
247 247
 		$increased_count = $customer->increase_purchase_count();
248
-		$increased_value = $customer->increase_value( $amount );
248
+		$increased_value = $customer->increase_value($amount);
249 249
 
250
-		return ( $increased_count && $increased_value ) ? true : false;
250
+		return ($increased_count && $increased_value) ? true : false;
251 251
 
252 252
 	}
253 253
 
@@ -257,18 +257,18 @@  discard block
 block discarded – undo
257 257
 	 * @access  public
258 258
 	 * @since   1.0
259 259
 	 */
260
-	public function decrement_stats( $customer_id = 0, $amount = 0.00 ) {
260
+	public function decrement_stats($customer_id = 0, $amount = 0.00) {
261 261
 
262
-		$customer = new Give_Customer( $customer_id );
262
+		$customer = new Give_Customer($customer_id);
263 263
 
264
-		if ( ! $customer ) {
264
+		if ( ! $customer) {
265 265
 			return false;
266 266
 		}
267 267
 
268 268
 		$decreased_count = $customer->decrease_purchase_count();
269
-		$decreased_value = $customer->decrease_value( $amount );
269
+		$decreased_value = $customer->decrease_value($amount);
270 270
 
271
-		return ( $decreased_count && $decreased_value ) ? true : false;
271
+		return ($decreased_count && $decreased_value) ? true : false;
272 272
 
273 273
 	}
274 274
 
@@ -284,37 +284,37 @@  discard block
 block discarded – undo
284 284
 	 *
285 285
 	 * @return bool
286 286
 	 */
287
-	public function update_customer_email_on_user_update( $user_id = 0, $old_user_data ) {
287
+	public function update_customer_email_on_user_update($user_id = 0, $old_user_data) {
288 288
 
289
-		$customer = new Give_Customer( $user_id, true );
289
+		$customer = new Give_Customer($user_id, true);
290 290
 
291
-		if( ! $customer ) {
291
+		if ( ! $customer) {
292 292
 			return false;
293 293
 		}
294 294
 
295
-		$user = get_userdata( $user_id );
295
+		$user = get_userdata($user_id);
296 296
 
297
-		if( ! empty( $user ) && $user->user_email !== $customer->email ) {
297
+		if ( ! empty($user) && $user->user_email !== $customer->email) {
298 298
 
299
-			if( ! $this->get_customer_by( 'email', $user->user_email ) ) {
299
+			if ( ! $this->get_customer_by('email', $user->user_email)) {
300 300
 
301
-				$success = $this->update( $customer->id, array( 'email' => $user->user_email ) );
301
+				$success = $this->update($customer->id, array('email' => $user->user_email));
302 302
 
303
-				if( $success ) {
303
+				if ($success) {
304 304
 					// Update some payment meta if we need to
305
-					$payments_array = explode( ',', $customer->payment_ids );
305
+					$payments_array = explode(',', $customer->payment_ids);
306 306
 
307
-					if( ! empty( $payments_array ) ) {
307
+					if ( ! empty($payments_array)) {
308 308
 
309
-						foreach ( $payments_array as $payment_id ) {
309
+						foreach ($payments_array as $payment_id) {
310 310
 
311
-							give_update_payment_meta( $payment_id, 'email', $user->user_email );
311
+							give_update_payment_meta($payment_id, 'email', $user->user_email);
312 312
 
313 313
 						}
314 314
 
315 315
 					}
316 316
 
317
-					do_action( 'give_update_customer_email_on_user_update', $user, $customer );
317
+					do_action('give_update_customer_email_on_user_update', $user, $customer);
318 318
 
319 319
 				}
320 320
 
@@ -335,45 +335,45 @@  discard block
 block discarded – undo
335 335
 	 *
336 336
 	 * @return mixed          Upon success, an object of the customer. Upon failure, NULL
337 337
 	 */
338
-	public function get_customer_by( $field = 'id', $value = 0 ) {
338
+	public function get_customer_by($field = 'id', $value = 0) {
339 339
 		global $wpdb;
340 340
 
341
-		if ( empty( $field ) || empty( $value ) ) {
341
+		if (empty($field) || empty($value)) {
342 342
 			return null;
343 343
 		}
344 344
 
345
-		if ( 'id' == $field || 'user_id' == $field ) {
345
+		if ('id' == $field || 'user_id' == $field) {
346 346
 			// Make sure the value is numeric to avoid casting objects, for example,
347 347
 			// to int 1.
348
-			if ( ! is_numeric( $value ) ) {
348
+			if ( ! is_numeric($value)) {
349 349
 				return false;
350 350
 			}
351 351
 
352
-			$value = intval( $value );
352
+			$value = intval($value);
353 353
 
354
-			if ( $value < 1 ) {
354
+			if ($value < 1) {
355 355
 				return false;
356 356
 			}
357 357
 
358
-		} elseif ( 'email' === $field ) {
358
+		} elseif ('email' === $field) {
359 359
 
360
-			if ( ! is_email( $value ) ) {
360
+			if ( ! is_email($value)) {
361 361
 				return false;
362 362
 			}
363 363
 
364
-			$value = trim( $value );
364
+			$value = trim($value);
365 365
 		}
366 366
 
367
-		if ( ! $value ) {
367
+		if ( ! $value) {
368 368
 			return false;
369 369
 		}
370 370
 
371
-		switch ( $field ) {
371
+		switch ($field) {
372 372
 			case 'id':
373 373
 				$db_field = 'id';
374 374
 				break;
375 375
 			case 'email':
376
-				$value    = sanitize_text_field( $value );
376
+				$value    = sanitize_text_field($value);
377 377
 				$db_field = 'email';
378 378
 				break;
379 379
 			case 'user_id':
@@ -383,7 +383,7 @@  discard block
 block discarded – undo
383 383
 				return false;
384 384
 		}
385 385
 
386
-		if ( ! $customer = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $this->table_name WHERE $db_field = %s LIMIT 1", $value ) ) ) {
386
+		if ( ! $customer = $wpdb->get_row($wpdb->prepare("SELECT * FROM $this->table_name WHERE $db_field = %s LIMIT 1", $value))) {
387 387
 			return false;
388 388
 		}
389 389
 
@@ -396,7 +396,7 @@  discard block
 block discarded – undo
396 396
 	 * @access  public
397 397
 	 * @since   1.0
398 398
 	 */
399
-	public function get_customers( $args = array() ) {
399
+	public function get_customers($args = array()) {
400 400
 
401 401
 		global $wpdb;
402 402
 
@@ -408,21 +408,21 @@  discard block
 block discarded – undo
408 408
 			'order'   => 'DESC'
409 409
 		);
410 410
 
411
-		$args = wp_parse_args( $args, $defaults );
411
+		$args = wp_parse_args($args, $defaults);
412 412
 
413
-		if ( $args['number'] < 1 ) {
413
+		if ($args['number'] < 1) {
414 414
 			$args['number'] = 999999999999;
415 415
 		}
416 416
 
417 417
 		$where = ' WHERE 1=1 ';
418 418
 
419 419
 		// specific customers
420
-		if ( ! empty( $args['id'] ) ) {
420
+		if ( ! empty($args['id'])) {
421 421
 
422
-			if ( is_array( $args['id'] ) ) {
423
-				$ids = implode( ',', array_map( 'intval', $args['id'] ) );
422
+			if (is_array($args['id'])) {
423
+				$ids = implode(',', array_map('intval', $args['id']));
424 424
 			} else {
425
-				$ids = intval( $args['id'] );
425
+				$ids = intval($args['id']);
426 426
 			}
427 427
 
428 428
 			$where .= " AND `id` IN( {$ids} ) ";
@@ -430,12 +430,12 @@  discard block
 block discarded – undo
430 430
 		}
431 431
 
432 432
 		// customers for specific user accounts
433
-		if ( ! empty( $args['user_id'] ) ) {
433
+		if ( ! empty($args['user_id'])) {
434 434
 
435
-			if ( is_array( $args['user_id'] ) ) {
436
-				$user_ids = implode( ',', array_map( 'intval', $args['user_id'] ) );
435
+			if (is_array($args['user_id'])) {
436
+				$user_ids = implode(',', array_map('intval', $args['user_id']));
437 437
 			} else {
438
-				$user_ids = intval( $args['user_id'] );
438
+				$user_ids = intval($args['user_id']);
439 439
 			}
440 440
 
441 441
 			$where .= " AND `user_id` IN( {$user_ids} ) ";
@@ -443,41 +443,41 @@  discard block
 block discarded – undo
443 443
 		}
444 444
 
445 445
 		//specific customers by email
446
-		if( ! empty( $args['email'] ) ) {
446
+		if ( ! empty($args['email'])) {
447 447
 
448
-			if( is_array( $args['email'] ) ) {
448
+			if (is_array($args['email'])) {
449 449
 
450
-				$emails_count       = count( $args['email'] );
451
-				$emails_placeholder = array_fill( 0, $emails_count, '%s' );
452
-				$emails             = implode( ', ', $emails_placeholder );
450
+				$emails_count       = count($args['email']);
451
+				$emails_placeholder = array_fill(0, $emails_count, '%s');
452
+				$emails             = implode(', ', $emails_placeholder);
453 453
 
454
-				$where .= $wpdb->prepare( " AND `email` IN( $emails ) ", $args['email'] );
454
+				$where .= $wpdb->prepare(" AND `email` IN( $emails ) ", $args['email']);
455 455
 			} else {
456
-				$where .= $wpdb->prepare( " AND `email` = %s ", $args['email'] );
456
+				$where .= $wpdb->prepare(" AND `email` = %s ", $args['email']);
457 457
 			}
458 458
 		}
459 459
 
460 460
 		// specific customers by name
461
-		if( ! empty( $args['name'] ) ) {
462
-			$where .= $wpdb->prepare( " AND `name` LIKE '%%%%" . '%s' . "%%%%' ", $args['name'] );
461
+		if ( ! empty($args['name'])) {
462
+			$where .= $wpdb->prepare(" AND `name` LIKE '%%%%".'%s'."%%%%' ", $args['name']);
463 463
 		}
464 464
 
465 465
 		// Customers created for a specific date or in a date range
466
-		if ( ! empty( $args['date'] ) ) {
466
+		if ( ! empty($args['date'])) {
467 467
 
468
-			if ( is_array( $args['date'] ) ) {
468
+			if (is_array($args['date'])) {
469 469
 
470
-				if ( ! empty( $args['date']['start'] ) ) {
470
+				if ( ! empty($args['date']['start'])) {
471 471
 
472
-					$start = date( 'Y-m-d H:i:s', strtotime( $args['date']['start'] ) );
472
+					$start = date('Y-m-d H:i:s', strtotime($args['date']['start']));
473 473
 
474 474
 					$where .= " AND `date_created` >= '{$start}'";
475 475
 
476 476
 				}
477 477
 
478
-				if ( ! empty( $args['date']['end'] ) ) {
478
+				if ( ! empty($args['date']['end'])) {
479 479
 
480
-					$end = date( 'Y-m-d H:i:s', strtotime( $args['date']['end'] ) );
480
+					$end = date('Y-m-d H:i:s', strtotime($args['date']['end']));
481 481
 
482 482
 					$where .= " AND `date_created` <= '{$end}'";
483 483
 
@@ -485,31 +485,31 @@  discard block
 block discarded – undo
485 485
 
486 486
 			} else {
487 487
 
488
-				$year  = date( 'Y', strtotime( $args['date'] ) );
489
-				$month = date( 'm', strtotime( $args['date'] ) );
490
-				$day   = date( 'd', strtotime( $args['date'] ) );
488
+				$year  = date('Y', strtotime($args['date']));
489
+				$month = date('m', strtotime($args['date']));
490
+				$day   = date('d', strtotime($args['date']));
491 491
 
492 492
 				$where .= " AND $year = YEAR ( date_created ) AND $month = MONTH ( date_created ) AND $day = DAY ( date_created )";
493 493
 			}
494 494
 
495 495
 		}
496 496
 
497
-		$args['orderby'] = ! array_key_exists( $args['orderby'], $this->get_columns() ) ? 'id' : $args['orderby'];
497
+		$args['orderby'] = ! array_key_exists($args['orderby'], $this->get_columns()) ? 'id' : $args['orderby'];
498 498
 
499
-		if ( 'purchase_value' == $args['orderby'] ) {
499
+		if ('purchase_value' == $args['orderby']) {
500 500
 			$args['orderby'] = 'purchase_value+0';
501 501
 		}
502 502
 
503
-		$cache_key = md5( 'give_customers_' . serialize( $args ) );
503
+		$cache_key = md5('give_customers_'.serialize($args));
504 504
 
505
-		$customers = wp_cache_get( $cache_key, 'customers' );
505
+		$customers = wp_cache_get($cache_key, 'customers');
506 506
 
507
-		$args['orderby'] = esc_sql( $args['orderby'] );
508
-		$args['order']   = esc_sql( $args['order'] );
507
+		$args['orderby'] = esc_sql($args['orderby']);
508
+		$args['order']   = esc_sql($args['order']);
509 509
 
510
-		if ( $customers === false ) {
511
-			$customers = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM  $this->table_name $where ORDER BY {$args['orderby']} {$args['order']} LIMIT %d,%d;", absint( $args['offset'] ), absint( $args['number'] ) ) );
512
-			wp_cache_set( $cache_key, $customers, 'customers', 3600 );
510
+		if ($customers === false) {
511
+			$customers = $wpdb->get_results($wpdb->prepare("SELECT * FROM  $this->table_name $where ORDER BY {$args['orderby']} {$args['order']} LIMIT %d,%d;", absint($args['offset']), absint($args['number'])));
512
+			wp_cache_set($cache_key, $customers, 'customers', 3600);
513 513
 		}
514 514
 
515 515
 		return $customers;
@@ -523,26 +523,26 @@  discard block
 block discarded – undo
523 523
 	 * @access  public
524 524
 	 * @since   1.0
525 525
 	 */
526
-	public function count( $args = array() ) {
526
+	public function count($args = array()) {
527 527
 
528 528
 		global $wpdb;
529 529
 
530 530
 		$where = ' WHERE 1=1 ';
531 531
 
532
-		if ( ! empty( $args['date'] ) ) {
532
+		if ( ! empty($args['date'])) {
533 533
 
534
-			if ( is_array( $args['date'] ) ) {
534
+			if (is_array($args['date'])) {
535 535
 
536
-				$start = date( 'Y-m-d H:i:s', strtotime( $args['date']['start'] ) );
537
-				$end   = date( 'Y-m-d H:i:s', strtotime( $args['date']['end'] ) );
536
+				$start = date('Y-m-d H:i:s', strtotime($args['date']['start']));
537
+				$end   = date('Y-m-d H:i:s', strtotime($args['date']['end']));
538 538
 
539 539
 				$where .= " AND `date_created` >= '{$start}' AND `date_created` <= '{$end}'";
540 540
 
541 541
 			} else {
542 542
 
543
-				$year  = date( 'Y', strtotime( $args['date'] ) );
544
-				$month = date( 'm', strtotime( $args['date'] ) );
545
-				$day   = date( 'd', strtotime( $args['date'] ) );
543
+				$year  = date('Y', strtotime($args['date']));
544
+				$month = date('m', strtotime($args['date']));
545
+				$day   = date('d', strtotime($args['date']));
546 546
 
547 547
 				$where .= " AND $year = YEAR ( date_created ) AND $month = MONTH ( date_created ) AND $day = DAY ( date_created )";
548 548
 			}
@@ -550,16 +550,16 @@  discard block
 block discarded – undo
550 550
 		}
551 551
 
552 552
 
553
-		$cache_key = md5( 'give_customers_count' . serialize( $args ) );
553
+		$cache_key = md5('give_customers_count'.serialize($args));
554 554
 
555
-		$count = wp_cache_get( $cache_key, 'customers' );
555
+		$count = wp_cache_get($cache_key, 'customers');
556 556
 
557
-		if ( $count === false ) {
558
-			$count = $wpdb->get_var( "SELECT COUNT($this->primary_key) FROM " . $this->table_name . "{$where};" );
559
-			wp_cache_set( $cache_key, $count, 'customers', 3600 );
557
+		if ($count === false) {
558
+			$count = $wpdb->get_var("SELECT COUNT($this->primary_key) FROM ".$this->table_name."{$where};");
559
+			wp_cache_set($cache_key, $count, 'customers', 3600);
560 560
 		}
561 561
 
562
-		return absint( $count );
562
+		return absint($count);
563 563
 
564 564
 	}
565 565
 
@@ -571,9 +571,9 @@  discard block
 block discarded – undo
571 571
 	 */
572 572
 	public function create_table() {
573 573
 		
574
-		require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
574
+		require_once(ABSPATH.'wp-admin/includes/upgrade.php');
575 575
 
576
-		$sql = "CREATE TABLE " . $this->table_name . " (
576
+		$sql = "CREATE TABLE ".$this->table_name." (
577 577
 		id bigint(20) NOT NULL AUTO_INCREMENT,
578 578
 		user_id bigint(20) NOT NULL,
579 579
 		email varchar(50) NOT NULL,
@@ -588,9 +588,9 @@  discard block
 block discarded – undo
588 588
 		KEY user (user_id)
589 589
 		) CHARACTER SET utf8 COLLATE utf8_general_ci;";
590 590
 
591
-		dbDelta( $sql );
591
+		dbDelta($sql);
592 592
 
593
-		update_option( $this->table_name . '_db_version', $this->version );
593
+		update_option($this->table_name.'_db_version', $this->version);
594 594
 	}
595 595
 	
596 596
 	/**
@@ -600,6 +600,6 @@  discard block
 block discarded – undo
600 600
 	 * @return bool Returns if the customers table was installed and upgrade routine run
601 601
 	 */
602 602
 	public function installed() {
603
-		return $this->table_exists( $this->table_name );
603
+		return $this->table_exists($this->table_name);
604 604
 	}
605 605
 }
Please login to merge, or discard this patch.
includes/admin/payments/class-payments-table.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -304,7 +304,6 @@
 block discarded – undo
304 304
 	 * @access public
305 305
 	 * @since  1.0
306 306
 	 *
307
-	 * @param array $item Contains all the data of the discount code
308 307
 	 * @param string $column_name The name of the column
309 308
 	 *
310 309
 	 * @return string Column Name
Please login to merge, or discard this patch.
Spacing   +182 added lines, -182 removed lines patch added patch discarded remove patch
@@ -10,13 +10,13 @@  discard block
 block discarded – undo
10 10
  */
11 11
 
12 12
 // Exit if accessed directly
13
-if ( ! defined( 'ABSPATH' ) ) {
13
+if ( ! defined('ABSPATH')) {
14 14
 	exit;
15 15
 }
16 16
 
17 17
 // Load WP_List_Table if not loaded
18
-if ( ! class_exists( 'WP_List_Table' ) ) {
19
-	require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php';
18
+if ( ! class_exists('WP_List_Table')) {
19
+	require_once ABSPATH.'wp-admin/includes/class-wp-list-table.php';
20 20
 }
21 21
 
22 22
 /**
@@ -120,37 +120,37 @@  discard block
 block discarded – undo
120 120
 		global $status, $page;
121 121
 
122 122
 		// Set parent defaults
123
-		parent::__construct( array(
124
-			'singular' => give_get_forms_label_singular(),    // Singular name of the listed records
125
-			'plural'   => give_get_forms_label_plural(),        // Plural name of the listed records
123
+		parent::__construct(array(
124
+			'singular' => give_get_forms_label_singular(), // Singular name of the listed records
125
+			'plural'   => give_get_forms_label_plural(), // Plural name of the listed records
126 126
 			'ajax'     => false                        // Does this table support ajax?
127
-		) );
127
+		));
128 128
 
129 129
 		$this->get_payment_counts();
130 130
 		$this->process_bulk_action();
131
-		$this->base_url = admin_url( 'edit.php?post_type=give_forms&page=give-payment-history' );
131
+		$this->base_url = admin_url('edit.php?post_type=give_forms&page=give-payment-history');
132 132
 	}
133 133
 
134 134
 	public function advanced_filters() {
135
-		$start_date = isset( $_GET['start-date'] ) ? sanitize_text_field( $_GET['start-date'] ) : null;
136
-		$end_date   = isset( $_GET['end-date'] ) ? sanitize_text_field( $_GET['end-date'] ) : null;
137
-		$status     = isset( $_GET['status'] ) ? $_GET['status'] : '';
135
+		$start_date = isset($_GET['start-date']) ? sanitize_text_field($_GET['start-date']) : null;
136
+		$end_date   = isset($_GET['end-date']) ? sanitize_text_field($_GET['end-date']) : null;
137
+		$status     = isset($_GET['status']) ? $_GET['status'] : '';
138 138
 		?>
139 139
 		<div id="give-payment-filters">
140 140
 			<span id="give-payment-date-filters">
141
-				<label for="start-date" class="give-start-date-label"><?php esc_html_e( 'Start Date:', 'give' ); ?></label>
141
+				<label for="start-date" class="give-start-date-label"><?php esc_html_e('Start Date:', 'give'); ?></label>
142 142
 				<input type="text" id="start-date" name="start-date" class="give_datepicker" value="<?php echo $start_date; ?>" placeholder="mm/dd/yyyy"/>
143
-				<label for="end-date" class="give-end-date-label"><?php esc_html_e( 'End Date:', 'give' ); ?></label>
143
+				<label for="end-date" class="give-end-date-label"><?php esc_html_e('End Date:', 'give'); ?></label>
144 144
 				<input type="text" id="end-date" name="end-date" class="give_datepicker" value="<?php echo $end_date; ?>" placeholder="mm/dd/yyyy"/>
145
-				<input type="submit" class="button-secondary" value="<?php esc_attr_e( 'Apply', 'give' ); ?>"/>
145
+				<input type="submit" class="button-secondary" value="<?php esc_attr_e('Apply', 'give'); ?>"/>
146 146
 			</span>
147
-			<?php if ( ! empty( $status ) ) : ?>
148
-				<input type="hidden" name="status" value="<?php esc_attr_e( $status ); ?>"/>
147
+			<?php if ( ! empty($status)) : ?>
148
+				<input type="hidden" name="status" value="<?php esc_attr_e($status); ?>"/>
149 149
 			<?php endif; ?>
150
-			<?php if ( ! empty( $start_date ) || ! empty( $end_date ) ) : ?>
151
-				<a href="<?php echo admin_url( 'edit.php?post_type=give_forms&page=give-payment-history' ); ?>" class="button-secondary"><?php esc_html_e( 'Clear Filter', 'give' ); ?></a>
150
+			<?php if ( ! empty($start_date) || ! empty($end_date)) : ?>
151
+				<a href="<?php echo admin_url('edit.php?post_type=give_forms&page=give-payment-history'); ?>" class="button-secondary"><?php esc_html_e('Clear Filter', 'give'); ?></a>
152 152
 			<?php endif; ?>
153
-			<?php $this->search_box( esc_html( 'Search', 'give' ), 'give-payments' ); ?>
153
+			<?php $this->search_box(esc_html('Search', 'give'), 'give-payments'); ?>
154 154
 		</div>
155 155
 
156 156
 		<?php
@@ -167,25 +167,25 @@  discard block
 block discarded – undo
167 167
 	 *
168 168
 	 * @return void
169 169
 	 */
170
-	public function search_box( $text, $input_id ) {
171
-		if ( empty( $_REQUEST['s'] ) && ! $this->has_items() ) {
170
+	public function search_box($text, $input_id) {
171
+		if (empty($_REQUEST['s']) && ! $this->has_items()) {
172 172
 			return;
173 173
 		}
174 174
 
175
-		$input_id = $input_id . '-search-input';
175
+		$input_id = $input_id.'-search-input';
176 176
 
177
-		if ( ! empty( $_REQUEST['orderby'] ) ) {
178
-			echo '<input type="hidden" name="orderby" value="' . esc_attr( $_REQUEST['orderby'] ) . '" />';
177
+		if ( ! empty($_REQUEST['orderby'])) {
178
+			echo '<input type="hidden" name="orderby" value="'.esc_attr($_REQUEST['orderby']).'" />';
179 179
 		}
180
-		if ( ! empty( $_REQUEST['order'] ) ) {
181
-			echo '<input type="hidden" name="order" value="' . esc_attr( $_REQUEST['order'] ) . '" />';
180
+		if ( ! empty($_REQUEST['order'])) {
181
+			echo '<input type="hidden" name="order" value="'.esc_attr($_REQUEST['order']).'" />';
182 182
 		}
183 183
 		?>
184 184
 		<p class="search-box">
185
-			<?php do_action( 'give_payment_history_search' ); ?>
185
+			<?php do_action('give_payment_history_search'); ?>
186 186
 			<label class="screen-reader-text" for="<?php echo $input_id ?>"><?php echo $text; ?>:</label>
187 187
 			<input type="search" id="<?php echo $input_id ?>" name="s" value="<?php _admin_search_query(); ?>"/>
188
-			<?php submit_button( $text, 'button', false, false, array( 'ID' => 'search-submit' ) ); ?><br/>
188
+			<?php submit_button($text, 'button', false, false, array('ID' => 'search-submit')); ?><br/>
189 189
 		</p>
190 190
 		<?php
191 191
 	}
@@ -199,52 +199,52 @@  discard block
 block discarded – undo
199 199
 	 */
200 200
 	public function get_views() {
201 201
 
202
-		$current         = isset( $_GET['status'] ) ? $_GET['status'] : '';
203
-		$total_count     = '&nbsp;<span class="count">(' . $this->total_count . ')</span>';
204
-		$complete_count  = '&nbsp;<span class="count">(' . $this->complete_count . ')</span>';
205
-		$cancelled_count = '&nbsp;<span class="count">(' . $this->cancelled_count . ')</span>';
206
-		$pending_count   = '&nbsp;<span class="count">(' . $this->pending_count . ')</span>';
207
-		$refunded_count  = '&nbsp;<span class="count">(' . $this->refunded_count . ')</span>';
208
-		$failed_count    = '&nbsp;<span class="count">(' . $this->failed_count . ')</span>';
209
-		$abandoned_count = '&nbsp;<span class="count">(' . $this->abandoned_count . ')</span>';
210
-		$revoked_count   = '&nbsp;<span class="count">(' . $this->revoked_count . ')</span>';
202
+		$current         = isset($_GET['status']) ? $_GET['status'] : '';
203
+		$total_count     = '&nbsp;<span class="count">('.$this->total_count.')</span>';
204
+		$complete_count  = '&nbsp;<span class="count">('.$this->complete_count.')</span>';
205
+		$cancelled_count = '&nbsp;<span class="count">('.$this->cancelled_count.')</span>';
206
+		$pending_count   = '&nbsp;<span class="count">('.$this->pending_count.')</span>';
207
+		$refunded_count  = '&nbsp;<span class="count">('.$this->refunded_count.')</span>';
208
+		$failed_count    = '&nbsp;<span class="count">('.$this->failed_count.')</span>';
209
+		$abandoned_count = '&nbsp;<span class="count">('.$this->abandoned_count.')</span>';
210
+		$revoked_count   = '&nbsp;<span class="count">('.$this->revoked_count.')</span>';
211 211
 
212 212
 		$views = array(
213
-			'all'       => sprintf( '<a href="%s"%s>%s</a>', remove_query_arg( array(
213
+			'all'       => sprintf('<a href="%s"%s>%s</a>', remove_query_arg(array(
214 214
 				'status',
215 215
 				'paged'
216
-			) ), $current === 'all' || $current == '' ? ' class="current"' : '', esc_html( 'All', 'give' ) . $total_count ),
217
-			'publish'   => sprintf( '<a href="%s"%s>%s</a>', esc_url( add_query_arg( array(
216
+			)), $current === 'all' || $current == '' ? ' class="current"' : '', esc_html('All', 'give').$total_count),
217
+			'publish'   => sprintf('<a href="%s"%s>%s</a>', esc_url(add_query_arg(array(
218 218
 				'status' => 'publish',
219 219
 				'paged'  => false
220
-			) ) ), $current === 'publish' ? ' class="current"' : '', esc_html( 'Completed', 'give' ) . $complete_count ),
221
-			'pending'   => sprintf( '<a href="%s"%s>%s</a>', esc_url( add_query_arg( array(
220
+			))), $current === 'publish' ? ' class="current"' : '', esc_html('Completed', 'give').$complete_count),
221
+			'pending'   => sprintf('<a href="%s"%s>%s</a>', esc_url(add_query_arg(array(
222 222
 				'status' => 'pending',
223 223
 				'paged'  => false
224
-			) ) ), $current === 'pending' ? ' class="current"' : '', esc_html( 'Pending', 'give' ) . $pending_count ),
225
-			'refunded'  => sprintf( '<a href="%s"%s>%s</a>', esc_url( add_query_arg( array(
224
+			))), $current === 'pending' ? ' class="current"' : '', esc_html('Pending', 'give').$pending_count),
225
+			'refunded'  => sprintf('<a href="%s"%s>%s</a>', esc_url(add_query_arg(array(
226 226
 				'status' => 'refunded',
227 227
 				'paged'  => false
228
-			) ) ), $current === 'refunded' ? ' class="current"' : '', esc_html( 'Refunded', 'give' ) . $refunded_count ),
229
-			'revoked'   => sprintf( '<a href="%s"%s>%s</a>', esc_url( add_query_arg( array(
228
+			))), $current === 'refunded' ? ' class="current"' : '', esc_html('Refunded', 'give').$refunded_count),
229
+			'revoked'   => sprintf('<a href="%s"%s>%s</a>', esc_url(add_query_arg(array(
230 230
 				'status' => 'revoked',
231 231
 				'paged'  => false
232
-			) ) ), $current === 'revoked' ? ' class="current"' : '', esc_html( 'Revoked', 'give' ) . $revoked_count ),
233
-			'failed'    => sprintf( '<a href="%s"%s>%s</a>', esc_url( add_query_arg( array(
232
+			))), $current === 'revoked' ? ' class="current"' : '', esc_html('Revoked', 'give').$revoked_count),
233
+			'failed'    => sprintf('<a href="%s"%s>%s</a>', esc_url(add_query_arg(array(
234 234
 				'status' => 'failed',
235 235
 				'paged'  => false
236
-			) ) ), $current === 'failed' ? ' class="current"' : '', esc_html( 'Failed', 'give' ) . $failed_count ),
237
-			'cancelled' => sprintf( '<a href="%s"%s>%s</a>', esc_url( add_query_arg( array(
236
+			))), $current === 'failed' ? ' class="current"' : '', esc_html('Failed', 'give').$failed_count),
237
+			'cancelled' => sprintf('<a href="%s"%s>%s</a>', esc_url(add_query_arg(array(
238 238
 				'status' => 'cancelled',
239 239
 				'paged'  => false
240
-			) ) ), $current === 'cancelled' ? ' class="current"' : '', esc_html( 'Cancelled', 'give' ) . $cancelled_count ),
241
-			'abandoned' => sprintf( '<a href="%s"%s>%s</a>', esc_url( add_query_arg( array(
240
+			))), $current === 'cancelled' ? ' class="current"' : '', esc_html('Cancelled', 'give').$cancelled_count),
241
+			'abandoned' => sprintf('<a href="%s"%s>%s</a>', esc_url(add_query_arg(array(
242 242
 				'status' => 'abandoned',
243 243
 				'paged'  => false
244
-			) ) ), $current === 'abandoned' ? ' class="current"' : '', esc_html( 'Abandoned', 'give' ) . $abandoned_count )
244
+			))), $current === 'abandoned' ? ' class="current"' : '', esc_html('Abandoned', 'give').$abandoned_count)
245 245
 		);
246 246
 
247
-		return apply_filters( 'give_payments_table_views', $views );
247
+		return apply_filters('give_payments_table_views', $views);
248 248
 	}
249 249
 
250 250
 	/**
@@ -257,17 +257,17 @@  discard block
 block discarded – undo
257 257
 	public function get_columns() {
258 258
 		$columns = array(
259 259
 			'cb'       => '<input type="checkbox" />', //Render a checkbox instead of text
260
-			'email'    => esc_html( 'Email', 'give' ),
261
-			'details'  => esc_html( 'Details', 'give' ),
262
-			'amount'   => esc_html( 'Amount', 'give' ),
263
-			'donation' => esc_html( 'Donation', 'give' ),
264
-			'status'   => esc_html( 'Status', 'give' ),
265
-			'date'     => esc_html( 'Date', 'give' ),
266
-			'donor'    => esc_html( 'Donor', 'give' ),
267
-			'ID'       => esc_html( 'ID', 'give' ),
260
+			'email'    => esc_html('Email', 'give'),
261
+			'details'  => esc_html('Details', 'give'),
262
+			'amount'   => esc_html('Amount', 'give'),
263
+			'donation' => esc_html('Donation', 'give'),
264
+			'status'   => esc_html('Status', 'give'),
265
+			'date'     => esc_html('Date', 'give'),
266
+			'donor'    => esc_html('Donor', 'give'),
267
+			'ID'       => esc_html('ID', 'give'),
268 268
 		);
269 269
 
270
-		return apply_filters( 'give_payments_table_columns', $columns );
270
+		return apply_filters('give_payments_table_columns', $columns);
271 271
 	}
272 272
 
273 273
 	/**
@@ -279,12 +279,12 @@  discard block
 block discarded – undo
279 279
 	 */
280 280
 	public function get_sortable_columns() {
281 281
 		$columns = array(
282
-			'ID'     => array( 'ID', true ),
283
-			'amount' => array( 'amount', false ),
284
-			'date'   => array( 'date', false )
282
+			'ID'     => array('ID', true),
283
+			'amount' => array('amount', false),
284
+			'date'   => array('date', false)
285 285
 		);
286 286
 
287
-		return apply_filters( 'give_payments_table_sortable_columns', $columns );
287
+		return apply_filters('give_payments_table_sortable_columns', $columns);
288 288
 	}
289 289
 
290 290
 	/**
@@ -310,41 +310,41 @@  discard block
 block discarded – undo
310 310
 	 *
311 311
 	 * @return string Column Name
312 312
 	 */
313
-	public function column_default( $payment, $column_name ) {
314
-		switch ( $column_name ) {
313
+	public function column_default($payment, $column_name) {
314
+		switch ($column_name) {
315 315
 			case 'amount' :
316
-				$amount = ! empty( $payment->total ) ? $payment->total : 0;
317
-				$value  = give_currency_filter( give_format_amount( $amount ), give_get_payment_currency_code( $payment->ID ) );
316
+				$amount = ! empty($payment->total) ? $payment->total : 0;
317
+				$value  = give_currency_filter(give_format_amount($amount), give_get_payment_currency_code($payment->ID));
318 318
 				break;
319 319
 			case 'donation' :
320
-				$value = '<a href="' . get_permalink( $payment->form_id ) . '">' . $payment->form_title . '</a>';
321
-				$level = give_get_payment_form_title( $payment->meta, true );
320
+				$value = '<a href="'.get_permalink($payment->form_id).'">'.$payment->form_title.'</a>';
321
+				$level = give_get_payment_form_title($payment->meta, true);
322 322
 
323
-				if ( ! empty( $level ) ) {
323
+				if ( ! empty($level)) {
324 324
 					$value .= $level;
325 325
 				}
326 326
 
327 327
 				break;
328 328
 			case 'date' :
329
-				$date  = strtotime( $payment->date );
330
-				$value = date_i18n( get_option( 'date_format' ), $date );
329
+				$date  = strtotime($payment->date);
330
+				$value = date_i18n(get_option('date_format'), $date);
331 331
 				break;
332 332
 			case 'status' :
333
-				$value = '<div class="give-donation-status status-' . sanitize_title( give_get_payment_status( $payment, true ) ) . '"><span class="give-donation-status-icon"></span> ' . give_get_payment_status( $payment, true ) . '</div>';
334
-				if ( $payment->mode == 'test' ) {
335
-					$value .= ' <span class="give-item-label give-item-label-orange give-test-mode-transactions-label" data-tooltip="' . esc_attr( 'This payment was made in test mode', 'give' ) . '">' . esc_html( 'Test', 'give' ) . '</span>';
333
+				$value = '<div class="give-donation-status status-'.sanitize_title(give_get_payment_status($payment, true)).'"><span class="give-donation-status-icon"></span> '.give_get_payment_status($payment, true).'</div>';
334
+				if ($payment->mode == 'test') {
335
+					$value .= ' <span class="give-item-label give-item-label-orange give-test-mode-transactions-label" data-tooltip="'.esc_attr('This payment was made in test mode', 'give').'">'.esc_html('Test', 'give').'</span>';
336 336
 				}
337 337
 				break;
338 338
 			case 'details' :
339
-				$value = '<div class="give-payment-details-link-wrap"><a href="' . esc_url( add_query_arg( 'id', $payment->ID, admin_url( 'edit.php?post_type=give_forms&page=give-payment-history&view=view-order-details' ) ) ) . '" class="give-payment-details-link button button-small">' . esc_html( 'View Details', 'give' ) . '</a></div>';
339
+				$value = '<div class="give-payment-details-link-wrap"><a href="'.esc_url(add_query_arg('id', $payment->ID, admin_url('edit.php?post_type=give_forms&page=give-payment-history&view=view-order-details'))).'" class="give-payment-details-link button button-small">'.esc_html('View Details', 'give').'</a></div>';
340 340
 				break;
341 341
 			default:
342
-				$value = isset( $payment->$column_name ) ? $payment->$column_name : '';
342
+				$value = isset($payment->$column_name) ? $payment->$column_name : '';
343 343
 				break;
344 344
 
345 345
 		}
346 346
 
347
-		return apply_filters( 'give_payments_table_column', $value, $payment->ID, $column_name );
347
+		return apply_filters('give_payments_table_column', $value, $payment->ID, $column_name);
348 348
 	}
349 349
 
350 350
 	/**
@@ -357,40 +357,40 @@  discard block
 block discarded – undo
357 357
 	 *
358 358
 	 * @return string Data shown in the Email column
359 359
 	 */
360
-	public function column_email( $payment ) {
360
+	public function column_email($payment) {
361 361
 
362 362
 		$row_actions = array();
363 363
 
364
-		$email = give_get_payment_user_email( $payment->ID );
364
+		$email = give_get_payment_user_email($payment->ID);
365 365
 
366 366
 		// Add search term string back to base URL
367
-		$search_terms = ( isset( $_GET['s'] ) ? trim( $_GET['s'] ) : '' );
368
-		if ( ! empty( $search_terms ) ) {
369
-			$this->base_url = add_query_arg( 's', $search_terms, $this->base_url );
367
+		$search_terms = (isset($_GET['s']) ? trim($_GET['s']) : '');
368
+		if ( ! empty($search_terms)) {
369
+			$this->base_url = add_query_arg('s', $search_terms, $this->base_url);
370 370
 		}
371 371
 
372
-		if ( give_is_payment_complete( $payment->ID ) && ! empty( $email ) ) {
373
-			$row_actions['email_links'] = '<a href="' . add_query_arg( array(
372
+		if (give_is_payment_complete($payment->ID) && ! empty($email)) {
373
+			$row_actions['email_links'] = '<a href="'.add_query_arg(array(
374 374
 					'give-action' => 'email_links',
375 375
 					'purchase_id' => $payment->ID
376
-				), $this->base_url ) . '">' . esc_html( 'Resend Donation Receipt', 'give' ) . '</a>';
376
+				), $this->base_url).'">'.esc_html('Resend Donation Receipt', 'give').'</a>';
377 377
 
378 378
 		}
379 379
 
380
-		$row_actions['delete'] = '<a href="' . wp_nonce_url( add_query_arg( array(
380
+		$row_actions['delete'] = '<a href="'.wp_nonce_url(add_query_arg(array(
381 381
 				'give-action' => 'delete_payment',
382 382
 				'purchase_id' => $payment->ID
383
-			), $this->base_url ), 'give_payment_nonce' ) . '">' . esc_html( 'Delete', 'give' ) . '</a>';
383
+			), $this->base_url), 'give_payment_nonce').'">'.esc_html('Delete', 'give').'</a>';
384 384
 
385
-		$row_actions = apply_filters( 'give_payment_row_actions', $row_actions, $payment );
385
+		$row_actions = apply_filters('give_payment_row_actions', $row_actions, $payment);
386 386
 
387
-		if ( empty( $email ) ) {
388
-			$email = esc_html( '(unknown)', 'give' );
387
+		if (empty($email)) {
388
+			$email = esc_html('(unknown)', 'give');
389 389
 		}
390 390
 
391
-		$value = '<span class="give-email-column-value">' . $email . '</span>' . $this->row_actions( $row_actions );
391
+		$value = '<span class="give-email-column-value">'.$email.'</span>'.$this->row_actions($row_actions);
392 392
 
393
-		return apply_filters( 'give_payments_table_column', $value, $payment->ID, 'email' );
393
+		return apply_filters('give_payments_table_column', $value, $payment->ID, 'email');
394 394
 	}
395 395
 
396 396
 	/**
@@ -403,7 +403,7 @@  discard block
 block discarded – undo
403 403
 	 *
404 404
 	 * @return string Displays a checkbox
405 405
 	 */
406
-	public function column_cb( $payment ) {
406
+	public function column_cb($payment) {
407 407
 		return sprintf(
408 408
 			'<input type="checkbox" name="%1$s[]" value="%2$s" />',
409 409
 			'payment',
@@ -421,8 +421,8 @@  discard block
 block discarded – undo
421 421
 	 *
422 422
 	 * @return string Displays a checkbox
423 423
 	 */
424
-	public function column_ID( $payment ) {
425
-		return '<span class="give-payment-id">' . give_get_payment_number( $payment->ID ) . '</span>';
424
+	public function column_ID($payment) {
425
+		return '<span class="give-payment-id">'.give_get_payment_number($payment->ID).'</span>';
426 426
 	}
427 427
 
428 428
 	/**
@@ -435,19 +435,19 @@  discard block
 block discarded – undo
435 435
 	 *
436 436
 	 * @return string Data shown in the User column
437 437
 	 */
438
-	public function column_donor( $payment ) {
438
+	public function column_donor($payment) {
439 439
 
440
-		$customer_id = give_get_payment_customer_id( $payment->ID );
440
+		$customer_id = give_get_payment_customer_id($payment->ID);
441 441
 
442
-		if ( ! empty( $customer_id ) ) {
443
-			$customer = new Give_Customer( $customer_id );
444
-			$value    = '<a href="' . esc_url( admin_url( "edit.php?post_type=give_forms&page=give-donors&view=overview&id=$customer_id" ) ) . '">' . $customer->name . '</a>';
442
+		if ( ! empty($customer_id)) {
443
+			$customer = new Give_Customer($customer_id);
444
+			$value    = '<a href="'.esc_url(admin_url("edit.php?post_type=give_forms&page=give-donors&view=overview&id=$customer_id")).'">'.$customer->name.'</a>';
445 445
 		} else {
446
-			$email = give_get_payment_user_email( $payment->ID );
447
-			$value = '<a href="' . esc_url( admin_url( "edit.php?post_type=give_forms&page=give-payment-history&s=$email" ) ) . '">' . esc_html( '(donor missing)', 'give' ) . '</a>';
446
+			$email = give_get_payment_user_email($payment->ID);
447
+			$value = '<a href="'.esc_url(admin_url("edit.php?post_type=give_forms&page=give-payment-history&s=$email")).'">'.esc_html('(donor missing)', 'give').'</a>';
448 448
 		}
449 449
 
450
-		return apply_filters( 'give_payments_table_column', $value, $payment->ID, 'donor' );
450
+		return apply_filters('give_payments_table_column', $value, $payment->ID, 'donor');
451 451
 	}
452 452
 
453 453
 	/**
@@ -459,18 +459,18 @@  discard block
 block discarded – undo
459 459
 	 */
460 460
 	public function get_bulk_actions() {
461 461
 		$actions = array(
462
-			'delete'               => esc_html( 'Delete', 'give' ),
463
-			'set-status-publish'   => esc_html( 'Set To Completed', 'give' ),
464
-			'set-status-pending'   => esc_html( 'Set To Pending', 'give' ),
465
-			'set-status-refunded'  => esc_html( 'Set To Refunded', 'give' ),
466
-			'set-status-revoked'   => esc_html( 'Set To Revoked', 'give' ),
467
-			'set-status-failed'    => esc_html( 'Set To Failed', 'give' ),
468
-			'set-status-cancelled' => esc_html( 'Set To Cancelled', 'give' ),
469
-			'set-status-abandoned' => esc_html( 'Set To Abandoned', 'give' ),
470
-			'resend-receipt'       => esc_html( 'Resend Email Receipts', 'give' )
462
+			'delete'               => esc_html('Delete', 'give'),
463
+			'set-status-publish'   => esc_html('Set To Completed', 'give'),
464
+			'set-status-pending'   => esc_html('Set To Pending', 'give'),
465
+			'set-status-refunded'  => esc_html('Set To Refunded', 'give'),
466
+			'set-status-revoked'   => esc_html('Set To Revoked', 'give'),
467
+			'set-status-failed'    => esc_html('Set To Failed', 'give'),
468
+			'set-status-cancelled' => esc_html('Set To Cancelled', 'give'),
469
+			'set-status-abandoned' => esc_html('Set To Abandoned', 'give'),
470
+			'resend-receipt'       => esc_html('Resend Email Receipts', 'give')
471 471
 		);
472 472
 
473
-		return apply_filters( 'give_payments_table_bulk_actions', $actions );
473
+		return apply_filters('give_payments_table_bulk_actions', $actions);
474 474
 	}
475 475
 
476 476
 	/**
@@ -481,61 +481,61 @@  discard block
 block discarded – undo
481 481
 	 * @return void
482 482
 	 */
483 483
 	public function process_bulk_action() {
484
-		$ids    = isset( $_GET['payment'] ) ? $_GET['payment'] : false;
484
+		$ids    = isset($_GET['payment']) ? $_GET['payment'] : false;
485 485
 		$action = $this->current_action();
486 486
 
487
-		if ( ! is_array( $ids ) ) {
488
-			$ids = array( $ids );
487
+		if ( ! is_array($ids)) {
488
+			$ids = array($ids);
489 489
 		}
490 490
 
491
-		if ( empty( $action ) ) {
491
+		if (empty($action)) {
492 492
 			return;
493 493
 		}
494 494
 
495
-		foreach ( $ids as $id ) {
495
+		foreach ($ids as $id) {
496 496
 
497 497
 			// Detect when a bulk action is being triggered...
498
-			if ( 'delete' === $this->current_action() ) {
499
-				give_delete_purchase( $id );
498
+			if ('delete' === $this->current_action()) {
499
+				give_delete_purchase($id);
500 500
 			}
501 501
 
502
-			if ( 'set-status-publish' === $this->current_action() ) {
503
-				give_update_payment_status( $id, 'publish' );
502
+			if ('set-status-publish' === $this->current_action()) {
503
+				give_update_payment_status($id, 'publish');
504 504
 			}
505 505
 
506
-			if ( 'set-status-pending' === $this->current_action() ) {
507
-				give_update_payment_status( $id, 'pending' );
506
+			if ('set-status-pending' === $this->current_action()) {
507
+				give_update_payment_status($id, 'pending');
508 508
 			}
509 509
 
510
-			if ( 'set-status-refunded' === $this->current_action() ) {
511
-				give_update_payment_status( $id, 'refunded' );
510
+			if ('set-status-refunded' === $this->current_action()) {
511
+				give_update_payment_status($id, 'refunded');
512 512
 			}
513 513
 
514
-			if ( 'set-status-revoked' === $this->current_action() ) {
515
-				give_update_payment_status( $id, 'revoked' );
514
+			if ('set-status-revoked' === $this->current_action()) {
515
+				give_update_payment_status($id, 'revoked');
516 516
 			}
517 517
 
518
-			if ( 'set-status-failed' === $this->current_action() ) {
519
-				give_update_payment_status( $id, 'failed' );
518
+			if ('set-status-failed' === $this->current_action()) {
519
+				give_update_payment_status($id, 'failed');
520 520
 			}
521 521
 
522
-			if ( 'set-status-cancelled' === $this->current_action() ) {
523
-				give_update_payment_status( $id, 'cancelled' );
522
+			if ('set-status-cancelled' === $this->current_action()) {
523
+				give_update_payment_status($id, 'cancelled');
524 524
 			}
525 525
 
526
-			if ( 'set-status-abandoned' === $this->current_action() ) {
527
-				give_update_payment_status( $id, 'abandoned' );
526
+			if ('set-status-abandoned' === $this->current_action()) {
527
+				give_update_payment_status($id, 'abandoned');
528 528
 			}
529 529
 
530
-			if ( 'set-status-preapproval' === $this->current_action() ) {
531
-				give_update_payment_status( $id, 'preapproval' );
530
+			if ('set-status-preapproval' === $this->current_action()) {
531
+				give_update_payment_status($id, 'preapproval');
532 532
 			}
533 533
 
534
-			if ( 'resend-receipt' === $this->current_action() ) {
535
-				give_email_donation_receipt( $id, false );
534
+			if ('resend-receipt' === $this->current_action()) {
535
+				give_email_donation_receipt($id, false);
536 536
 			}
537 537
 
538
-			do_action( 'give_payments_table_do_bulk_action', $id, $this->current_action() );
538
+			do_action('give_payments_table_do_bulk_action', $id, $this->current_action());
539 539
 		}
540 540
 
541 541
 	}
@@ -553,27 +553,27 @@  discard block
 block discarded – undo
553 553
 
554 554
 		$args = array();
555 555
 
556
-		if ( isset( $_GET['user'] ) ) {
557
-			$args['user'] = urldecode( $_GET['user'] );
558
-		} elseif ( isset( $_GET['s'] ) ) {
559
-			$is_user = strpos( $_GET['s'], strtolower( 'user:' ) ) !== false;
560
-			if ( $is_user ) {
561
-				$args['user'] = absint( trim( str_replace( 'user:', '', strtolower( $_GET['s'] ) ) ) );
562
-				unset( $args['s'] );
556
+		if (isset($_GET['user'])) {
557
+			$args['user'] = urldecode($_GET['user']);
558
+		} elseif (isset($_GET['s'])) {
559
+			$is_user = strpos($_GET['s'], strtolower('user:')) !== false;
560
+			if ($is_user) {
561
+				$args['user'] = absint(trim(str_replace('user:', '', strtolower($_GET['s']))));
562
+				unset($args['s']);
563 563
 			} else {
564
-				$args['s'] = sanitize_text_field( $_GET['s'] );
564
+				$args['s'] = sanitize_text_field($_GET['s']);
565 565
 			}
566 566
 		}
567 567
 
568
-		if ( ! empty( $_GET['start-date'] ) ) {
569
-			$args['start-date'] = urldecode( $_GET['start-date'] );
568
+		if ( ! empty($_GET['start-date'])) {
569
+			$args['start-date'] = urldecode($_GET['start-date']);
570 570
 		}
571 571
 
572
-		if ( ! empty( $_GET['end-date'] ) ) {
573
-			$args['end-date'] = urldecode( $_GET['end-date'] );
572
+		if ( ! empty($_GET['end-date'])) {
573
+			$args['end-date'] = urldecode($_GET['end-date']);
574 574
 		}
575 575
 
576
-		$payment_count         = give_count_payments( $args );
576
+		$payment_count         = give_count_payments($args);
577 577
 		$this->complete_count  = $payment_count->publish;
578 578
 		$this->pending_count   = $payment_count->pending;
579 579
 		$this->refunded_count  = $payment_count->refunded;
@@ -582,7 +582,7 @@  discard block
 block discarded – undo
582 582
 		$this->cancelled_count = $payment_count->cancelled;
583 583
 		$this->abandoned_count = $payment_count->abandoned;
584 584
 
585
-		foreach ( $payment_count as $count ) {
585
+		foreach ($payment_count as $count) {
586 586
 			$this->total_count += $count;
587 587
 		}
588 588
 	}
@@ -597,26 +597,26 @@  discard block
 block discarded – undo
597 597
 	public function payments_data() {
598 598
 
599 599
 		$per_page   = $this->per_page;
600
-		$orderby    = isset( $_GET['orderby'] ) ? urldecode( $_GET['orderby'] ) : 'ID';
601
-		$order      = isset( $_GET['order'] ) ? $_GET['order'] : 'DESC';
602
-		$user       = isset( $_GET['user'] ) ? $_GET['user'] : null;
603
-		$status     = isset( $_GET['status'] ) ? $_GET['status'] : give_get_payment_status_keys();
604
-		$meta_key   = isset( $_GET['meta_key'] ) ? $_GET['meta_key'] : null;
605
-		$year       = isset( $_GET['year'] ) ? $_GET['year'] : null;
606
-		$month      = isset( $_GET['m'] ) ? $_GET['m'] : null;
607
-		$day        = isset( $_GET['day'] ) ? $_GET['day'] : null;
608
-		$search     = isset( $_GET['s'] ) ? sanitize_text_field( $_GET['s'] ) : null;
609
-		$start_date = isset( $_GET['start-date'] ) ? sanitize_text_field( $_GET['start-date'] ) : null;
610
-		$end_date   = isset( $_GET['end-date'] ) ? sanitize_text_field( $_GET['end-date'] ) : $start_date;
611
-
612
-		if ( ! empty( $search ) ) {
600
+		$orderby    = isset($_GET['orderby']) ? urldecode($_GET['orderby']) : 'ID';
601
+		$order      = isset($_GET['order']) ? $_GET['order'] : 'DESC';
602
+		$user       = isset($_GET['user']) ? $_GET['user'] : null;
603
+		$status     = isset($_GET['status']) ? $_GET['status'] : give_get_payment_status_keys();
604
+		$meta_key   = isset($_GET['meta_key']) ? $_GET['meta_key'] : null;
605
+		$year       = isset($_GET['year']) ? $_GET['year'] : null;
606
+		$month      = isset($_GET['m']) ? $_GET['m'] : null;
607
+		$day        = isset($_GET['day']) ? $_GET['day'] : null;
608
+		$search     = isset($_GET['s']) ? sanitize_text_field($_GET['s']) : null;
609
+		$start_date = isset($_GET['start-date']) ? sanitize_text_field($_GET['start-date']) : null;
610
+		$end_date   = isset($_GET['end-date']) ? sanitize_text_field($_GET['end-date']) : $start_date;
611
+
612
+		if ( ! empty($search)) {
613 613
 			$status = 'any'; // Force all payment statuses when searching
614 614
 		}
615 615
 
616 616
 		$args = array(
617 617
 			'output'     => 'payments',
618 618
 			'number'     => $per_page,
619
-			'page'       => isset( $_GET['paged'] ) ? $_GET['paged'] : null,
619
+			'page'       => isset($_GET['paged']) ? $_GET['paged'] : null,
620 620
 			'orderby'    => $orderby,
621 621
 			'order'      => $order,
622 622
 			'user'       => $user,
@@ -630,14 +630,14 @@  discard block
 block discarded – undo
630 630
 			'end_date'   => $end_date,
631 631
 		);
632 632
 
633
-		if ( is_string( $search ) && false !== strpos( $search, 'txn:' ) ) {
633
+		if (is_string($search) && false !== strpos($search, 'txn:')) {
634 634
 
635 635
 			$args['search_in_notes'] = true;
636
-			$args['s']               = trim( str_replace( 'txn:', '', $args['s'] ) );
636
+			$args['s']               = trim(str_replace('txn:', '', $args['s']));
637 637
 
638 638
 		}
639 639
 
640
-		$p_query = new Give_Payments_Query( $args );
640
+		$p_query = new Give_Payments_Query($args);
641 641
 
642 642
 		return $p_query->get_payments();
643 643
 
@@ -657,17 +657,17 @@  discard block
 block discarded – undo
657 657
 	 */
658 658
 	public function prepare_items() {
659 659
 
660
-		wp_reset_vars( array( 'action', 'payment', 'orderby', 'order', 's' ) );
660
+		wp_reset_vars(array('action', 'payment', 'orderby', 'order', 's'));
661 661
 
662 662
 		$columns  = $this->get_columns();
663 663
 		$hidden   = array(); // No hidden columns
664 664
 		$sortable = $this->get_sortable_columns();
665 665
 		$data     = $this->payments_data();
666
-		$status   = isset( $_GET['status'] ) ? $_GET['status'] : 'any';
666
+		$status   = isset($_GET['status']) ? $_GET['status'] : 'any';
667 667
 
668
-		$this->_column_headers = array( $columns, $hidden, $sortable );
668
+		$this->_column_headers = array($columns, $hidden, $sortable);
669 669
 
670
-		switch ( $status ) {
670
+		switch ($status) {
671 671
 			case 'publish':
672 672
 				$total_items = $this->complete_count;
673 673
 				break;
@@ -694,18 +694,18 @@  discard block
 block discarded – undo
694 694
 				break;
695 695
 			default:
696 696
 				// Retrieve the count of the non-default-Give status
697
-				$count       = wp_count_posts( 'give_payment' );
697
+				$count       = wp_count_posts('give_payment');
698 698
 				$total_items = $count->{$status};
699 699
 		}
700 700
 
701 701
 		$this->items = $data;
702 702
 
703
-		$this->set_pagination_args( array(
703
+		$this->set_pagination_args(array(
704 704
 				'total_items' => $total_items,
705 705
 				// WE have to calculate the total number of items
706 706
 				'per_page'    => $this->per_page,
707 707
 				// WE have to determine how many items to show on a page
708
-				'total_pages' => ceil( $total_items / $this->per_page )
708
+				'total_pages' => ceil($total_items / $this->per_page)
709 709
 				// WE have to calculate the total number of pages
710 710
 			)
711 711
 		);
Please login to merge, or discard this patch.