Completed
Push — master ( 92b4ca...04de2e )
by Matt
17:28
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   +92 added lines, -92 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' => __( 'The name of completed donation form and the donation level chosen if applicable.', 'give' ),
275
+			'description' => __('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' => __( 'The donor\'s first name', 'give' ),
280
+			'description' => __('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' => __( 'The donor\'s full name, first and last', 'give' ),
285
+			'description' => __('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' => __( 'The donor\'s user name on the site, if they registered an account', 'give' ),
290
+			'description' => __('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' => __( 'The donor\'s email address', 'give' ),
295
+			'description' => __('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' => __( 'The donor\'s billing address', 'give' ),
300
+			'description' => __('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' => __( 'The date of the donation', 'give' ),
305
+			'description' => __('The date of the donation', 'give'),
306 306
 			'function'    => 'give_email_tag_date'
307 307
 		),
308 308
 		array(
309 309
 			'tag'         => 'price',
310
-			'description' => __( 'The total price of the donation', 'give' ),
310
+			'description' => __('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' => __( 'The unique ID number for this donation', 'give' ),
315
+			'description' => __('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' => __( 'The unique ID number for this donation receipt', 'give' ),
320
+			'description' => __('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' => __( 'The method of payment used for this donation', 'give' ),
325
+			'description' => __('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' => __( 'Your site name', 'give' ),
330
+			'description' => __('Your site name', 'give'),
331 331
 			'function'    => 'give_email_tag_sitename'
332 332
 		),
333 333
 		array(
334 334
 			'tag'         => 'receipt_link',
335
-			'description' => __( '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' => __('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 = 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 = give_get_payment_form_title($payment->meta, false, '-');
529 529
 
530
-	return ! empty( $form_title ) ? $form_title : __( 'There was an error retrieving this donation title', 'give' );
530
+	return ! empty($form_title) ? $form_title : __('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,15 +566,15 @@  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( __( '%1$sView it in your browser %2$s', 'give' ), '<a href="' . $receipt_url . '">', '&raquo;</a>' );
574
+	), home_url()));
575
+	$formatted = sprintf(__('%1$sView it in your browser %2$s', 'give'), '<a href="'.$receipt_url.'">', '&raquo;</a>');
576 576
 
577
-	if ( give_get_option( 'email_template' ) !== 'none' ) {
577
+	if (give_get_option('email_template') !== 'none') {
578 578
 		return $formatted;
579 579
 	} else {
580 580
 		return $receipt_url;
Please login to merge, or discard this patch.
includes/admin/dashboard-widgets.php 1 patch
Spacing   +32 added lines, -32 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
 
@@ -21,12 +21,12 @@  discard block
 block discarded – undo
21 21
  * @return void
22 22
  */
23 23
 function give_register_dashboard_widgets() {
24
-	if ( current_user_can( apply_filters( 'give_dashboard_stats_cap', 'view_give_reports' ) ) ) {
25
-		wp_add_dashboard_widget( 'give_dashboard_sales', __( 'Give: Donation Statistics', 'give' ), 'give_dashboard_sales_widget' );
24
+	if (current_user_can(apply_filters('give_dashboard_stats_cap', 'view_give_reports'))) {
25
+		wp_add_dashboard_widget('give_dashboard_sales', __('Give: Donation Statistics', 'give'), 'give_dashboard_sales_widget');
26 26
 	}
27 27
 }
28 28
 
29
-add_action( 'wp_dashboard_setup', 'give_register_dashboard_widgets', 10 );
29
+add_action('wp_dashboard_setup', 'give_register_dashboard_widgets', 10);
30 30
 
31 31
 /**
32 32
  * Sales Summary Dashboard Widget
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
  */
39 39
 function give_dashboard_sales_widget() {
40 40
 
41
-	if ( ! current_user_can( apply_filters( 'give_dashboard_stats_cap', 'view_give_reports' ) ) ) {
41
+	if ( ! current_user_can(apply_filters('give_dashboard_stats_cap', 'view_give_reports'))) {
42 42
 		return;
43 43
 	}
44 44
 	$stats = new Give_Payment_Stats; ?>
@@ -46,19 +46,19 @@  discard block
 block discarded – undo
46 46
 	<div class="give-dashboard-widget">
47 47
 
48 48
 		<div class="give-dashboard-today give-clearfix">
49
-			<h3 class="give-dashboard-date-today"><?php echo date( 'F j, Y' ); ?></h3>
49
+			<h3 class="give-dashboard-date-today"><?php echo date('F j, Y'); ?></h3>
50 50
 
51
-			<p class="give-dashboard-happy-day"><?php printf( __( 'Happy %1$s!', 'give' ), date( 'l', current_time( 'timestamp' ) ) ); ?></p>
51
+			<p class="give-dashboard-happy-day"><?php printf(__('Happy %1$s!', 'give'), date('l', current_time('timestamp'))); ?></p>
52 52
 
53
-			<?php $earnings_today = $stats->get_earnings( 0, 'today', false ); ?>
53
+			<?php $earnings_today = $stats->get_earnings(0, 'today', false); ?>
54 54
 
55
-			<p class="give-dashboard-today-earnings"><?php echo give_currency_filter( give_format_amount( $earnings_today ) ); ?></p>
55
+			<p class="give-dashboard-today-earnings"><?php echo give_currency_filter(give_format_amount($earnings_today)); ?></p>
56 56
 
57
-			<p class="give-orders-today"><?php $donations_today = $stats->get_sales( 0, 'today', false, array(
57
+			<p class="give-orders-today"><?php $donations_today = $stats->get_sales(0, 'today', false, array(
58 58
 					'publish',
59 59
 					'revoked'
60
-				) ); ?><?php echo give_format_amount( $donations_today, false ); ?>
61
-				<span><?php echo _x( 'donations today', 'Displays in WP admin dashboard widget after the day\'s total donations', 'give' ); ?></span>
60
+				)); ?><?php echo give_format_amount($donations_today, false); ?>
61
+				<span><?php echo _x('donations today', 'Displays in WP admin dashboard widget after the day\'s total donations', 'give'); ?></span>
62 62
 			</p>
63 63
 
64 64
 
@@ -68,34 +68,34 @@  discard block
 block discarded – undo
68 68
 		<table class="give-table-stats">
69 69
 			<thead style="display: none;">
70 70
 			<tr>
71
-				<th><?php _e( 'This Week', 'give' ); ?></th>
72
-				<th><?php _e( 'This Month', 'give' ); ?></th>
73
-				<th><?php _e( 'Past 30 Days', 'give' ); ?></th>
71
+				<th><?php _e('This Week', 'give'); ?></th>
72
+				<th><?php _e('This Month', 'give'); ?></th>
73
+				<th><?php _e('Past 30 Days', 'give'); ?></th>
74 74
 			</tr>
75 75
 			</thead>
76 76
 			<tbody>
77 77
 			<tr id="give-table-stats-tr-1">
78 78
 				<td>
79
-					<p class="give-dashboard-stat-total"><?php echo give_currency_filter( give_format_amount( $stats->get_earnings( 0, 'this_week' ) ) ); ?></p>
79
+					<p class="give-dashboard-stat-total"><?php echo give_currency_filter(give_format_amount($stats->get_earnings(0, 'this_week'))); ?></p>
80 80
 
81
-					<p class="give-dashboard-stat-total-label"><?php _e( 'this week', 'give' ); ?></p>
81
+					<p class="give-dashboard-stat-total-label"><?php _e('this week', 'give'); ?></p>
82 82
 				</td>
83 83
 				<td>
84
-					<p class="give-dashboard-stat-total"><?php echo give_currency_filter( give_format_amount( $stats->get_earnings( 0, 'this_month' ) ) ); ?></p>
84
+					<p class="give-dashboard-stat-total"><?php echo give_currency_filter(give_format_amount($stats->get_earnings(0, 'this_month'))); ?></p>
85 85
 
86
-					<p class="give-dashboard-stat-total-label"><?php _e( 'this month', 'give' ); ?></p>
86
+					<p class="give-dashboard-stat-total-label"><?php _e('this month', 'give'); ?></p>
87 87
 				</td>
88 88
 			</tr>
89 89
 			<tr id="give-table-stats-tr-2">
90 90
 				<td>
91
-					<p class="give-dashboard-stat-total"><?php echo give_currency_filter( give_format_amount( $stats->get_earnings( 0, 'last_month' ) ) ) ?></p>
91
+					<p class="give-dashboard-stat-total"><?php echo give_currency_filter(give_format_amount($stats->get_earnings(0, 'last_month'))) ?></p>
92 92
 
93
-					<p class="give-dashboard-stat-total-label"><?php _e( 'last month', 'give' ); ?></p>
93
+					<p class="give-dashboard-stat-total-label"><?php _e('last month', 'give'); ?></p>
94 94
 				</td>
95 95
 				<td>
96
-					<p class="give-dashboard-stat-total"><?php echo give_currency_filter( give_format_amount( $stats->get_earnings( 0, 'this_year', false ) ) ) ?></p>
96
+					<p class="give-dashboard-stat-total"><?php echo give_currency_filter(give_format_amount($stats->get_earnings(0, 'this_year', false))) ?></p>
97 97
 
98
-					<p class="give-dashboard-stat-total-label"><?php _e( 'this year', 'give' ); ?></p>
98
+					<p class="give-dashboard-stat-total-label"><?php _e('this year', 'give'); ?></p>
99 99
 				</td>
100 100
 			</tr>
101 101
 			</tbody>
@@ -115,19 +115,19 @@  discard block
 block discarded – undo
115 115
  *
116 116
  * @return array
117 117
  */
118
-function give_dashboard_at_a_glance_widget( $items ) {
119
-	$num_posts = wp_count_posts( 'give_forms' );
118
+function give_dashboard_at_a_glance_widget($items) {
119
+	$num_posts = wp_count_posts('give_forms');
120 120
 
121
-	if ( $num_posts && $num_posts->publish ) {
121
+	if ($num_posts && $num_posts->publish) {
122 122
         
123
-		$text = sprintf( _n( '%1$s Give %2$s', '%1$s Give %3$s', $num_posts->publish, 'give' ), $num_posts->publish, give_get_forms_label_singular(), give_get_forms_label_plural() );
123
+		$text = sprintf(_n('%1$s Give %2$s', '%1$s Give %3$s', $num_posts->publish, 'give'), $num_posts->publish, give_get_forms_label_singular(), give_get_forms_label_plural());
124 124
 
125
-		$text = sprintf( $text, number_format_i18n( $num_posts->publish ) );
125
+		$text = sprintf($text, number_format_i18n($num_posts->publish));
126 126
 
127
-		if ( current_user_can( 'edit_give_forms', get_current_user_id() ) ) {
128
-			$text = sprintf( '<a class="give-forms-count" href="edit.php?post_type=give_forms">%1$s</a>', $text );
127
+		if (current_user_can('edit_give_forms', get_current_user_id())) {
128
+			$text = sprintf('<a class="give-forms-count" href="edit.php?post_type=give_forms">%1$s</a>', $text);
129 129
 		} else {
130
-			$text = sprintf( '<span class="give-forms-count">%1$s</span>', $text );
130
+			$text = sprintf('<span class="give-forms-count">%1$s</span>', $text);
131 131
 		}
132 132
 
133 133
 		$items[] = $text;
@@ -136,4 +136,4 @@  discard block
 block discarded – undo
136 136
 	return $items;
137 137
 }
138 138
 
139
-add_filter( 'dashboard_glance_items', 'give_dashboard_at_a_glance_widget', 1, 1);
139
+add_filter('dashboard_glance_items', 'give_dashboard_at_a_glance_widget', 1, 1);
Please login to merge, or discard this patch.
includes/post-types.php 1 patch
Spacing   +161 added lines, -161 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,40 +23,40 @@  discard block
 block discarded – undo
23 23
 function give_setup_post_types() {
24 24
 
25 25
 	/** Give Forms Post Type */
26
-	$give_forms_singular = give_get_option( 'disable_forms_singular' ) !== 'on' ? true : false;
26
+	$give_forms_singular = give_get_option('disable_forms_singular') !== 'on' ? true : false;
27 27
 
28
-	$give_forms_archives = give_get_option( 'disable_forms_archives' ) !== 'on' ? true : false;
28
+	$give_forms_archives = give_get_option('disable_forms_archives') !== 'on' ? true : false;
29 29
 
30
-	$give_forms_slug = defined( 'GIVE_SLUG' ) ? GIVE_SLUG : 'donations';
30
+	$give_forms_slug = defined('GIVE_SLUG') ? GIVE_SLUG : 'donations';
31 31
 	//support for old 'GIVE_FORMS_SLUG' constant
32
-	if ( defined( 'GIVE_FORMS_SLUG' ) ) {
32
+	if (defined('GIVE_FORMS_SLUG')) {
33 33
 		$give_forms_slug = GIVE_FORMS_SLUG;
34 34
 	}
35 35
 
36
-	$give_forms_rewrite = defined( 'GIVE_DISABLE_FORMS_REWRITE' ) && GIVE_DISABLE_FORMS_REWRITE ? false : array(
36
+	$give_forms_rewrite = defined('GIVE_DISABLE_FORMS_REWRITE') && GIVE_DISABLE_FORMS_REWRITE ? false : array(
37 37
 		'slug'       => $give_forms_slug,
38 38
 		'with_front' => false
39 39
 	);
40 40
 
41
-	$give_forms_labels = apply_filters( 'give_forms_labels', array(
42
-		'name'               => __( 'Donation %2$s', 'give' ),
41
+	$give_forms_labels = apply_filters('give_forms_labels', array(
42
+		'name'               => __('Donation %2$s', 'give'),
43 43
 		'singular_name'      => '%1$s',
44
-		'add_new'            => __( 'Add %1$s', 'give' ),
45
-		'add_new_item'       => __( 'Add New Donation %1$s', 'give' ),
46
-		'edit_item'          => __( 'Edit Donation %1$s', 'give' ),
47
-		'new_item'           => __( 'New %1$s', 'give' ),
48
-		'all_items'          => __( 'All %2$s', 'give' ),
49
-		'view_item'          => __( 'View %1$s', 'give' ),
50
-		'search_items'       => __( 'Search %2$s', 'give' ),
51
-		'not_found'          => __( 'No %2$s found', 'give' ),
52
-		'not_found_in_trash' => __( 'No %2$s found in Trash', 'give' ),
44
+		'add_new'            => __('Add %1$s', 'give'),
45
+		'add_new_item'       => __('Add New Donation %1$s', 'give'),
46
+		'edit_item'          => __('Edit Donation %1$s', 'give'),
47
+		'new_item'           => __('New %1$s', 'give'),
48
+		'all_items'          => __('All %2$s', 'give'),
49
+		'view_item'          => __('View %1$s', 'give'),
50
+		'search_items'       => __('Search %2$s', 'give'),
51
+		'not_found'          => __('No %2$s found', 'give'),
52
+		'not_found_in_trash' => __('No %2$s found in Trash', 'give'),
53 53
 		'parent_item_colon'  => '',
54
-		'menu_name'          => apply_filters( 'give_menu_name', __( 'Donations', 'give' ) ),
55
-		'name_admin_bar'     => apply_filters( 'give_name_admin_bar_name', __( 'Donation Form', 'give' ) )
56
-	) );
54
+		'menu_name'          => apply_filters('give_menu_name', __('Donations', 'give')),
55
+		'name_admin_bar'     => apply_filters('give_name_admin_bar_name', __('Donation Form', 'give'))
56
+	));
57 57
 
58
-	foreach ( $give_forms_labels as $key => $value ) {
59
-		$give_forms_labels[ $key ] = sprintf( $value, give_get_forms_label_singular(), give_get_forms_label_plural() );
58
+	foreach ($give_forms_labels as $key => $value) {
59
+		$give_forms_labels[$key] = sprintf($value, give_get_forms_label_singular(), give_get_forms_label_plural());
60 60
 	}
61 61
 
62 62
 	//Default give_forms supports
@@ -69,14 +69,14 @@  discard block
 block discarded – undo
69 69
 	);
70 70
 
71 71
 	//Has the user disabled the excerpt
72
-	if ( give_get_option( 'disable_forms_excerpt' ) === 'on' ) {
73
-		unset( $give_form_supports[2] );
72
+	if (give_get_option('disable_forms_excerpt') === 'on') {
73
+		unset($give_form_supports[2]);
74 74
 	}
75 75
 
76 76
 	//Has user disabled the featured image?
77
-	if ( give_get_option( 'disable_form_featured_img' ) === 'on' ) {
78
-		unset( $give_form_supports[1] );
79
-		remove_action( 'give_before_single_form_summary', 'give_show_form_images' );
77
+	if (give_get_option('disable_form_featured_img') === 'on') {
78
+		unset($give_form_supports[1]);
79
+		remove_action('give_before_single_form_summary', 'give_show_form_images');
80 80
 	}
81 81
 
82 82
 	$give_forms_args = array(
@@ -92,36 +92,36 @@  discard block
 block discarded – undo
92 92
 		'has_archive'        => $give_forms_archives,
93 93
 		'menu_icon'          => 'dashicons-give',
94 94
 		'hierarchical'       => false,
95
-		'supports'           => apply_filters( 'give_forms_supports', $give_form_supports ),
95
+		'supports'           => apply_filters('give_forms_supports', $give_form_supports),
96 96
 	);
97
-	register_post_type( 'give_forms', apply_filters( 'give_forms_post_type_args', $give_forms_args ) );
97
+	register_post_type('give_forms', apply_filters('give_forms_post_type_args', $give_forms_args));
98 98
 
99 99
 
100 100
 	/** Give Campaigns Post Type */
101
-	$give_campaigns_archives = defined( 'GIVE_DISABLE_CAMPAIGNS_ARCHIVE' ) && GIVE_DISABLE_CAMPAIGNS_ARCHIVE ? false : true;
102
-	$give_campaigns_slug     = defined( 'GIVE_CAMPAIGNS_SLUG' ) ? GIVE_CAMPAIGNS_SLUG : 'campaigns';
103
-	$give_campaigns_rewrite  = defined( 'GIVE_DISABLE_CAMPAIGNS_REWRITE' ) && GIVE_DISABLE_CAMPAIGNS_REWRITE ? false : array(
101
+	$give_campaigns_archives = defined('GIVE_DISABLE_CAMPAIGNS_ARCHIVE') && GIVE_DISABLE_CAMPAIGNS_ARCHIVE ? false : true;
102
+	$give_campaigns_slug     = defined('GIVE_CAMPAIGNS_SLUG') ? GIVE_CAMPAIGNS_SLUG : 'campaigns';
103
+	$give_campaigns_rewrite  = defined('GIVE_DISABLE_CAMPAIGNS_REWRITE') && GIVE_DISABLE_CAMPAIGNS_REWRITE ? false : array(
104 104
 		'slug'       => $give_campaigns_slug,
105 105
 		'with_front' => false
106 106
 	);
107 107
 
108
-	$give_campaigns_labels = apply_filters( 'give_campaign_labels', array(
108
+	$give_campaigns_labels = apply_filters('give_campaign_labels', array(
109 109
 		'name'               => '%2$s',
110 110
 		'singular_name'      => '%1$s',
111
-		'add_new'            => __( 'Add %1$s', 'give' ),
112
-		'add_new_item'       => __( 'Add New %1$s', 'give' ),
113
-		'edit_item'          => __( 'Edit %1$s', 'give' ),
114
-		'new_item'           => __( 'New %1$s', 'give' ),
115
-		'all_items'          => __( 'All %2$s', 'give' ),
116
-		'view_item'          => __( 'View %1$s', 'give' ),
117
-		'search_items'       => __( 'Search %2$s', 'give' ),
118
-		'not_found'          => __( 'No %2$s found', 'give' ),
119
-		'not_found_in_trash' => __( 'No %2$s found in Trash', 'give' ),
111
+		'add_new'            => __('Add %1$s', 'give'),
112
+		'add_new_item'       => __('Add New %1$s', 'give'),
113
+		'edit_item'          => __('Edit %1$s', 'give'),
114
+		'new_item'           => __('New %1$s', 'give'),
115
+		'all_items'          => __('All %2$s', 'give'),
116
+		'view_item'          => __('View %1$s', 'give'),
117
+		'search_items'       => __('Search %2$s', 'give'),
118
+		'not_found'          => __('No %2$s found', 'give'),
119
+		'not_found_in_trash' => __('No %2$s found in Trash', 'give'),
120 120
 		'parent_item_colon'  => '',
121
-	) );
121
+	));
122 122
 
123
-	foreach ( $give_campaigns_labels as $key => $value ) {
124
-		$give_campaigns_labels[ $key ] = sprintf( $value, give_get_campaigns_label_singular(), give_get_campaigns_label_plural() );
123
+	foreach ($give_campaigns_labels as $key => $value) {
124
+		$give_campaigns_labels[$key] = sprintf($value, give_get_campaigns_label_singular(), give_get_campaigns_label_plural());
125 125
 	}
126 126
 
127 127
 	$give_campaigns_args = array(
@@ -136,48 +136,48 @@  discard block
 block discarded – undo
136 136
 		'capability_type'    => 'give_campaigns',
137 137
 		'has_archive'        => $give_campaigns_archives,
138 138
 		'hierarchical'       => false,
139
-		'supports'           => apply_filters( 'give_campaigns_supports', array(
139
+		'supports'           => apply_filters('give_campaigns_supports', array(
140 140
 			'title',
141 141
 			'thumbnail',
142 142
 			'excerpt',
143 143
 			'revisions',
144 144
 			'author'
145
-		) ),
145
+		)),
146 146
 	);
147 147
 	//	register_post_type( 'give_campaigns', apply_filters( 'give_campaigns_post_type_args', $give_campaigns_args ) );
148 148
 
149 149
 	/** Payment Post Type */
150 150
 	$payment_labels = array(
151
-		'name'               => _x( 'Donations', 'post type general name', 'give' ),
152
-		'singular_name'      => _x( 'Donation', 'post type singular name', 'give' ),
153
-		'add_new'            => __( 'Add New', 'give' ),
154
-		'add_new_item'       => __( 'Add New Donation', 'give' ),
155
-		'edit_item'          => __( 'Edit Donation', 'give' ),
156
-		'new_item'           => __( 'New Donation', 'give' ),
157
-		'all_items'          => __( 'All Donations', 'give' ),
158
-		'view_item'          => __( 'View Donation', 'give' ),
159
-		'search_items'       => __( 'Search Donations', 'give' ),
160
-		'not_found'          => __( 'No Donations found', 'give' ),
161
-		'not_found_in_trash' => __( 'No Donations found in Trash', 'give' ),
151
+		'name'               => _x('Donations', 'post type general name', 'give'),
152
+		'singular_name'      => _x('Donation', 'post type singular name', 'give'),
153
+		'add_new'            => __('Add New', 'give'),
154
+		'add_new_item'       => __('Add New Donation', 'give'),
155
+		'edit_item'          => __('Edit Donation', 'give'),
156
+		'new_item'           => __('New Donation', 'give'),
157
+		'all_items'          => __('All Donations', 'give'),
158
+		'view_item'          => __('View Donation', 'give'),
159
+		'search_items'       => __('Search Donations', 'give'),
160
+		'not_found'          => __('No Donations found', 'give'),
161
+		'not_found_in_trash' => __('No Donations found in Trash', 'give'),
162 162
 		'parent_item_colon'  => '',
163
-		'menu_name'          => __( 'Transactions', 'give' )
163
+		'menu_name'          => __('Transactions', 'give')
164 164
 	);
165 165
 
166 166
 	$payment_args = array(
167
-		'labels'          => apply_filters( 'give_payment_labels', $payment_labels ),
167
+		'labels'          => apply_filters('give_payment_labels', $payment_labels),
168 168
 		'public'          => false,
169 169
 		'query_var'       => false,
170 170
 		'rewrite'         => false,
171 171
 		'map_meta_cap'    => true,
172 172
 		'capability_type' => 'give_payment',
173
-		'supports'        => array( 'title' ),
173
+		'supports'        => array('title'),
174 174
 		'can_export'      => true
175 175
 	);
176
-	register_post_type( 'give_payment', $payment_args );
176
+	register_post_type('give_payment', $payment_args);
177 177
 
178 178
 }
179 179
 
180
-add_action( 'init', 'give_setup_post_types', 1 );
180
+add_action('init', 'give_setup_post_types', 1);
181 181
 
182 182
 
183 183
 /**
@@ -190,30 +190,30 @@  discard block
 block discarded – undo
190 190
  */
191 191
 function give_setup_taxonomies() {
192 192
 
193
-	$slug = defined( 'GIVE_FORMS_SLUG' ) ? GIVE_FORMS_SLUG : 'donations';
193
+	$slug = defined('GIVE_FORMS_SLUG') ? GIVE_FORMS_SLUG : 'donations';
194 194
 
195 195
 	/** Categories */
196 196
 	$category_labels = array(
197
-		'name'              => sprintf( _x( '%s Categories', 'taxonomy general name', 'give' ), give_get_forms_label_singular() ),
198
-		'singular_name'     => _x( 'Category', 'taxonomy singular name', 'give' ),
199
-		'search_items'      => __( 'Search Categories', 'give' ),
200
-		'all_items'         => __( 'All Categories', 'give' ),
201
-		'parent_item'       => __( 'Parent Category', 'give' ),
202
-		'parent_item_colon' => __( 'Parent Category:', 'give' ),
203
-		'edit_item'         => __( 'Edit Category', 'give' ),
204
-		'update_item'       => __( 'Update Category', 'give' ),
205
-		'add_new_item'      => sprintf( __( 'Add New %s Category', 'give' ), give_get_forms_label_singular() ),
206
-		'new_item_name'     => __( 'New Category Name', 'give' ),
207
-		'menu_name'         => __( 'Categories', 'give' ),
197
+		'name'              => sprintf(_x('%s Categories', 'taxonomy general name', 'give'), give_get_forms_label_singular()),
198
+		'singular_name'     => _x('Category', 'taxonomy singular name', 'give'),
199
+		'search_items'      => __('Search Categories', 'give'),
200
+		'all_items'         => __('All Categories', 'give'),
201
+		'parent_item'       => __('Parent Category', 'give'),
202
+		'parent_item_colon' => __('Parent Category:', 'give'),
203
+		'edit_item'         => __('Edit Category', 'give'),
204
+		'update_item'       => __('Update Category', 'give'),
205
+		'add_new_item'      => sprintf(__('Add New %s Category', 'give'), give_get_forms_label_singular()),
206
+		'new_item_name'     => __('New Category Name', 'give'),
207
+		'menu_name'         => __('Categories', 'give'),
208 208
 	);
209 209
 
210
-	$category_args = apply_filters( 'give_forms_category_args', array(
210
+	$category_args = apply_filters('give_forms_category_args', array(
211 211
 			'hierarchical' => true,
212
-			'labels'       => apply_filters( 'give_forms_category_labels', $category_labels ),
212
+			'labels'       => apply_filters('give_forms_category_labels', $category_labels),
213 213
 			'show_ui'      => true,
214 214
 			'query_var'    => 'give_forms_category',
215 215
 			'rewrite'      => array(
216
-				'slug'         => $slug . '/category',
216
+				'slug'         => $slug.'/category',
217 217
 				'with_front'   => false,
218 218
 				'hierarchical' => true
219 219
 			),
@@ -227,34 +227,34 @@  discard block
 block discarded – undo
227 227
 	);
228 228
 
229 229
 	//Does the user want categories?
230
-	if ( give_get_option( 'enable_categories' ) == 'on' ) {
231
-		register_taxonomy( 'give_forms_category', array( 'give_forms' ), $category_args );
232
-		register_taxonomy_for_object_type( 'give_forms_category', 'give_forms' );
230
+	if (give_get_option('enable_categories') == 'on') {
231
+		register_taxonomy('give_forms_category', array('give_forms'), $category_args);
232
+		register_taxonomy_for_object_type('give_forms_category', 'give_forms');
233 233
 	}
234 234
 
235 235
 
236 236
 	/** Tags */
237 237
 	$tag_labels = array(
238
-		'name'                  => sprintf( _x( '%s Tags', 'taxonomy general name', 'give' ), give_get_forms_label_singular() ),
239
-		'singular_name'         => _x( 'Tag', 'taxonomy singular name', 'give' ),
240
-		'search_items'          => __( 'Search Tags', 'give' ),
241
-		'all_items'             => __( 'All Tags', 'give' ),
242
-		'parent_item'           => __( 'Parent Tag', 'give' ),
243
-		'parent_item_colon'     => __( 'Parent Tag:', 'give' ),
244
-		'edit_item'             => __( 'Edit Tag', 'give' ),
245
-		'update_item'           => __( 'Update Tag', 'give' ),
246
-		'add_new_item'          => __( 'Add New Tag', 'give' ),
247
-		'new_item_name'         => __( 'New Tag Name', 'give' ),
248
-		'menu_name'             => __( 'Tags', 'give' ),
249
-		'choose_from_most_used' => sprintf( __( 'Choose from most used %s tags', 'give' ), give_get_forms_label_singular() ),
238
+		'name'                  => sprintf(_x('%s Tags', 'taxonomy general name', 'give'), give_get_forms_label_singular()),
239
+		'singular_name'         => _x('Tag', 'taxonomy singular name', 'give'),
240
+		'search_items'          => __('Search Tags', 'give'),
241
+		'all_items'             => __('All Tags', 'give'),
242
+		'parent_item'           => __('Parent Tag', 'give'),
243
+		'parent_item_colon'     => __('Parent Tag:', 'give'),
244
+		'edit_item'             => __('Edit Tag', 'give'),
245
+		'update_item'           => __('Update Tag', 'give'),
246
+		'add_new_item'          => __('Add New Tag', 'give'),
247
+		'new_item_name'         => __('New Tag Name', 'give'),
248
+		'menu_name'             => __('Tags', 'give'),
249
+		'choose_from_most_used' => sprintf(__('Choose from most used %s tags', 'give'), give_get_forms_label_singular()),
250 250
 	);
251 251
 
252
-	$tag_args = apply_filters( 'give_forms_tag_args', array(
252
+	$tag_args = apply_filters('give_forms_tag_args', array(
253 253
 			'hierarchical' => false,
254
-			'labels'       => apply_filters( 'give_forms_tag_labels', $tag_labels ),
254
+			'labels'       => apply_filters('give_forms_tag_labels', $tag_labels),
255 255
 			'show_ui'      => true,
256 256
 			'query_var'    => 'give_forms_tag',
257
-			'rewrite'      => array( 'slug' => $slug . '/tag', 'with_front' => false, 'hierarchical' => true ),
257
+			'rewrite'      => array('slug' => $slug.'/tag', 'with_front' => false, 'hierarchical' => true),
258 258
 			'capabilities' => array(
259 259
 				'manage_terms' => 'manage_give_forms_terms',
260 260
 				'edit_terms'   => 'edit_give_forms_terms',
@@ -265,15 +265,15 @@  discard block
 block discarded – undo
265 265
 		)
266 266
 	);
267 267
 
268
-	if ( give_get_option( 'enable_tags' ) == 'on' ) {
269
-		register_taxonomy( 'give_forms_tag', array( 'give_forms' ), $tag_args );
270
-		register_taxonomy_for_object_type( 'give_forms_tag', 'give_forms' );
268
+	if (give_get_option('enable_tags') == 'on') {
269
+		register_taxonomy('give_forms_tag', array('give_forms'), $tag_args);
270
+		register_taxonomy_for_object_type('give_forms_tag', 'give_forms');
271 271
 	}
272 272
 
273 273
 
274 274
 }
275 275
 
276
-add_action( 'init', 'give_setup_taxonomies', 0 );
276
+add_action('init', 'give_setup_taxonomies', 0);
277 277
 
278 278
 
279 279
 /**
@@ -284,11 +284,11 @@  discard block
 block discarded – undo
284 284
  */
285 285
 function give_get_default_form_labels() {
286 286
 	$defaults = array(
287
-		'singular' => __( 'Form', 'give' ),
288
-		'plural'   => __( 'Forms', 'give' )
287
+		'singular' => __('Form', 'give'),
288
+		'plural'   => __('Forms', 'give')
289 289
 	);
290 290
 
291
-	return apply_filters( 'give_default_form_name', $defaults );
291
+	return apply_filters('give_default_form_name', $defaults);
292 292
 }
293 293
 
294 294
 /**
@@ -299,11 +299,11 @@  discard block
 block discarded – undo
299 299
  */
300 300
 function give_get_default_campaign_labels() {
301 301
 	$defaults = array(
302
-		'singular' => __( 'Campaign', 'give' ),
303
-		'plural'   => __( 'Campaigns', 'give' )
302
+		'singular' => __('Campaign', 'give'),
303
+		'plural'   => __('Campaigns', 'give')
304 304
 	);
305 305
 
306
-	return apply_filters( 'give_default_campaign_name', $defaults );
306
+	return apply_filters('give_default_campaign_name', $defaults);
307 307
 }
308 308
 
309 309
 /**
@@ -315,10 +315,10 @@  discard block
 block discarded – undo
315 315
  *
316 316
  * @return string $defaults['singular'] Singular label
317 317
  */
318
-function give_get_forms_label_singular( $lowercase = false ) {
318
+function give_get_forms_label_singular($lowercase = false) {
319 319
 	$defaults = give_get_default_form_labels();
320 320
 
321
-	return ( $lowercase ) ? strtolower( $defaults['singular'] ) : $defaults['singular'];
321
+	return ($lowercase) ? strtolower($defaults['singular']) : $defaults['singular'];
322 322
 }
323 323
 
324 324
 /**
@@ -327,10 +327,10 @@  discard block
 block discarded – undo
327 327
  * @since 1.0
328 328
  * @return string $defaults['plural'] Plural label
329 329
  */
330
-function give_get_forms_label_plural( $lowercase = false ) {
330
+function give_get_forms_label_plural($lowercase = false) {
331 331
 	$defaults = give_get_default_form_labels();
332 332
 
333
-	return ( $lowercase ) ? strtolower( $defaults['plural'] ) : $defaults['plural'];
333
+	return ($lowercase) ? strtolower($defaults['plural']) : $defaults['plural'];
334 334
 }
335 335
 
336 336
 /**
@@ -342,10 +342,10 @@  discard block
 block discarded – undo
342 342
  *
343 343
  * @return string $defaults['singular'] Singular label
344 344
  */
345
-function give_get_campaigns_label_singular( $lowercase = false ) {
345
+function give_get_campaigns_label_singular($lowercase = false) {
346 346
 	$defaults = give_get_default_campaign_labels();
347 347
 
348
-	return ( $lowercase ) ? strtolower( $defaults['singular'] ) : $defaults['singular'];
348
+	return ($lowercase) ? strtolower($defaults['singular']) : $defaults['singular'];
349 349
 }
350 350
 
351 351
 /**
@@ -354,10 +354,10 @@  discard block
 block discarded – undo
354 354
  * @since 1.0
355 355
  * @return string $defaults['plural'] Plural label
356 356
  */
357
-function give_get_campaigns_label_plural( $lowercase = false ) {
357
+function give_get_campaigns_label_plural($lowercase = false) {
358 358
 	$defaults = give_get_default_campaign_labels();
359 359
 
360
-	return ( $lowercase ) ? strtolower( $defaults['plural'] ) : $defaults['plural'];
360
+	return ($lowercase) ? strtolower($defaults['plural']) : $defaults['plural'];
361 361
 }
362 362
 
363 363
 /**
@@ -369,26 +369,26 @@  discard block
 block discarded – undo
369 369
  *
370 370
  * @return string $title New placeholder text
371 371
  */
372
-function give_change_default_title( $title ) {
372
+function give_change_default_title($title) {
373 373
 	// If a frontend plugin uses this filter (check extensions before changing this function)
374
-	if ( ! is_admin() ) {
374
+	if ( ! is_admin()) {
375 375
 		$label = give_get_forms_label_singular();
376
-		$title = sprintf( __( 'Enter %s title here', 'give' ), $label );
376
+		$title = sprintf(__('Enter %s title here', 'give'), $label);
377 377
 
378 378
 		return $title;
379 379
 	}
380 380
 
381 381
 	$screen = get_current_screen();
382 382
 
383
-	if ( 'give_forms' == $screen->post_type ) {
383
+	if ('give_forms' == $screen->post_type) {
384 384
 		$label = give_get_forms_label_singular();
385
-		$title = sprintf( __( 'Enter %s title here', 'give' ), $label );
385
+		$title = sprintf(__('Enter %s title here', 'give'), $label);
386 386
 	}
387 387
 
388 388
 	return $title;
389 389
 }
390 390
 
391
-add_filter( 'enter_title_here', 'give_change_default_title' );
391
+add_filter('enter_title_here', 'give_change_default_title');
392 392
 
393 393
 /**
394 394
  * Registers Custom Post Statuses which are used by the Payments
@@ -398,50 +398,50 @@  discard block
 block discarded – undo
398 398
  */
399 399
 function give_register_post_type_statuses() {
400 400
 	// Payment Statuses
401
-	register_post_status( 'refunded', array(
402
-		'label'                     => _x( 'Refunded', 'Refunded payment status', 'give' ),
401
+	register_post_status('refunded', array(
402
+		'label'                     => _x('Refunded', 'Refunded payment status', 'give'),
403 403
 		'public'                    => true,
404 404
 		'exclude_from_search'       => false,
405 405
 		'show_in_admin_all_list'    => true,
406 406
 		'show_in_admin_status_list' => true,
407
-		'label_count'               => _n_noop( 'Refunded <span class="count">(%s)</span>', 'Refunded <span class="count">(%s)</span>', 'give' )
408
-	) );
409
-	register_post_status( 'failed', array(
410
-		'label'                     => _x( 'Failed', 'Failed payment status', 'give' ),
407
+		'label_count'               => _n_noop('Refunded <span class="count">(%s)</span>', 'Refunded <span class="count">(%s)</span>', 'give')
408
+	));
409
+	register_post_status('failed', array(
410
+		'label'                     => _x('Failed', 'Failed payment status', 'give'),
411 411
 		'public'                    => true,
412 412
 		'exclude_from_search'       => false,
413 413
 		'show_in_admin_all_list'    => true,
414 414
 		'show_in_admin_status_list' => true,
415
-		'label_count'               => _n_noop( 'Failed <span class="count">(%s)</span>', 'Failed <span class="count">(%s)</span>', 'give' )
416
-	) );
417
-	register_post_status( 'revoked', array(
418
-		'label'                     => _x( 'Revoked', 'Revoked payment status', 'give' ),
415
+		'label_count'               => _n_noop('Failed <span class="count">(%s)</span>', 'Failed <span class="count">(%s)</span>', 'give')
416
+	));
417
+	register_post_status('revoked', array(
418
+		'label'                     => _x('Revoked', 'Revoked payment status', 'give'),
419 419
 		'public'                    => true,
420 420
 		'exclude_from_search'       => false,
421 421
 		'show_in_admin_all_list'    => true,
422 422
 		'show_in_admin_status_list' => true,
423
-		'label_count'               => _n_noop( 'Revoked <span class="count">(%s)</span>', 'Revoked <span class="count">(%s)</span>', 'give' )
424
-	) );
425
-	register_post_status( 'cancelled', array(
426
-		'label'                     => _x( 'Cancelled', 'Cancelled payment status', 'give' ),
423
+		'label_count'               => _n_noop('Revoked <span class="count">(%s)</span>', 'Revoked <span class="count">(%s)</span>', 'give')
424
+	));
425
+	register_post_status('cancelled', array(
426
+		'label'                     => _x('Cancelled', 'Cancelled payment status', 'give'),
427 427
 		'public'                    => true,
428 428
 		'exclude_from_search'       => false,
429 429
 		'show_in_admin_all_list'    => true,
430 430
 		'show_in_admin_status_list' => true,
431
-		'label_count'               => _n_noop( 'Cancelled <span class="count">(%s)</span>', 'Cancelled <span class="count">(%s)</span>', 'give' )
432
-	) );
433
-	register_post_status( 'abandoned', array(
434
-		'label'                     => _x( 'Abandoned', 'Abandoned payment status', 'give' ),
431
+		'label_count'               => _n_noop('Cancelled <span class="count">(%s)</span>', 'Cancelled <span class="count">(%s)</span>', 'give')
432
+	));
433
+	register_post_status('abandoned', array(
434
+		'label'                     => _x('Abandoned', 'Abandoned payment status', 'give'),
435 435
 		'public'                    => true,
436 436
 		'exclude_from_search'       => false,
437 437
 		'show_in_admin_all_list'    => true,
438 438
 		'show_in_admin_status_list' => true,
439
-		'label_count'               => _n_noop( 'Abandoned <span class="count">(%s)</span>', 'Abandoned <span class="count">(%s)</span>', 'give' )
440
-	) );
439
+		'label_count'               => _n_noop('Abandoned <span class="count">(%s)</span>', 'Abandoned <span class="count">(%s)</span>', 'give')
440
+	));
441 441
 
442 442
 }
443 443
 
444
-add_action( 'init', 'give_register_post_type_statuses' );
444
+add_action('init', 'give_register_post_type_statuses');
445 445
 
446 446
 /**
447 447
  * Updated Messages
@@ -454,44 +454,44 @@  discard block
 block discarded – undo
454 454
  *
455 455
  * @return array $messages New post updated messages
456 456
  */
457
-function give_updated_messages( $messages ) {
457
+function give_updated_messages($messages) {
458 458
 	global $post, $post_ID;
459 459
 
460
-	$url1 = '<a href="' . get_permalink( $post_ID ) . '">';
460
+	$url1 = '<a href="'.get_permalink($post_ID).'">';
461 461
 	$url2 = give_get_forms_label_singular();
462 462
 	$url3 = '</a>';
463 463
 
464 464
 	$messages['give_forms'] = array(
465
-		1 => sprintf( __( '%2$s updated. %1$sView %2$s%3$s.', 'give' ), $url1, $url2, $url3 ),
466
-		4 => sprintf( __( '%2$s updated. %1$sView %2$s%3$s.', 'give' ), $url1, $url2, $url3 ),
467
-		6 => sprintf( __( '%2$s published. %1$sView %2$s%3$s.', 'give' ), $url1, $url2, $url3 ),
468
-		7 => sprintf( __( '%2$s saved. %1$sView %2$s%3$s.', 'give' ), $url1, $url2, $url3 ),
469
-		8 => sprintf( __( '%2$s submitted. %1$sView %2$s%3$s.', 'give' ), $url1, $url2, $url3 )
465
+		1 => sprintf(__('%2$s updated. %1$sView %2$s%3$s.', 'give'), $url1, $url2, $url3),
466
+		4 => sprintf(__('%2$s updated. %1$sView %2$s%3$s.', 'give'), $url1, $url2, $url3),
467
+		6 => sprintf(__('%2$s published. %1$sView %2$s%3$s.', 'give'), $url1, $url2, $url3),
468
+		7 => sprintf(__('%2$s saved. %1$sView %2$s%3$s.', 'give'), $url1, $url2, $url3),
469
+		8 => sprintf(__('%2$s submitted. %1$sView %2$s%3$s.', 'give'), $url1, $url2, $url3)
470 470
 	);
471 471
 
472 472
 	return $messages;
473 473
 }
474 474
 
475
-add_filter( 'post_updated_messages', 'give_updated_messages' );
475
+add_filter('post_updated_messages', 'give_updated_messages');
476 476
 
477 477
 
478 478
 /**
479 479
  * Setup Post Type Images
480 480
  */
481
-add_action( 'after_setup_theme', 'give_add_thumbnail_support', 10 );
481
+add_action('after_setup_theme', 'give_add_thumbnail_support', 10);
482 482
 
483 483
 /**
484 484
  * Ensure post thumbnail support is turned on
485 485
  */
486 486
 function give_add_thumbnail_support() {
487
-	if ( give_get_option( 'disable_form_featured_img' ) === 'on' ) {
487
+	if (give_get_option('disable_form_featured_img') === 'on') {
488 488
 		return;
489 489
 	}
490
-	if ( ! current_theme_supports( 'post-thumbnails' ) ) {
491
-		add_theme_support( 'post-thumbnails' );
490
+	if ( ! current_theme_supports('post-thumbnails')) {
491
+		add_theme_support('post-thumbnails');
492 492
 	}
493
-	add_post_type_support( 'give_forms', 'thumbnail' );
494
-	add_post_type_support( 'give_campaigns', 'thumbnail' );
493
+	add_post_type_support('give_forms', 'thumbnail');
494
+	add_post_type_support('give_campaigns', 'thumbnail');
495 495
 }
496 496
 
497 497
 /**
@@ -503,19 +503,19 @@  discard block
 block discarded – undo
503 503
 function give_widgets_init() {
504 504
 
505 505
 	//Single Give Forms (disabled if single turned off in settings)
506
-	if ( give_get_option( 'disable_forms_singular' ) !== 'on' && give_get_option( 'disable_form_sidebar' ) !== 'on' ) {
506
+	if (give_get_option('disable_forms_singular') !== 'on' && give_get_option('disable_form_sidebar') !== 'on') {
507 507
 
508
-		register_sidebar( apply_filters( 'give_forms_single_sidebar', array(
509
-			'name'          => __( 'Give Single Form Sidebar', 'give' ),
508
+		register_sidebar(apply_filters('give_forms_single_sidebar', array(
509
+			'name'          => __('Give Single Form Sidebar', 'give'),
510 510
 			'id'            => 'give-forms-sidebar',
511
-			'description'   => __( 'Widgets in this area will be shown on the single Give forms aside area. This sidebar will not display for embedded forms.', 'give' ),
511
+			'description'   => __('Widgets in this area will be shown on the single Give forms aside area. This sidebar will not display for embedded forms.', 'give'),
512 512
 			'before_widget' => '<div id="%1$s" class="widget %2$s">',
513 513
 			'after_widget'  => '</div>',
514 514
 			'before_title'  => '<h3 class="widgettitle widget-title">',
515 515
 			'after_title'   => '</h3>',
516
-		) ) );
516
+		)));
517 517
 
518 518
 	}
519 519
 }
520 520
 
521
-add_action( 'widgets_init', 'give_widgets_init', 999 );
521
+add_action('widgets_init', 'give_widgets_init', 999);
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' && $typenow != 'give_campaigns' ) {
26
+	if ($typenow != 'give_forms' && $typenow != 'give_campaigns') {
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/admin/plugins.php 1 patch
Spacing   +16 added lines, -16 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
 
@@ -26,16 +26,16 @@  discard block
 block discarded – undo
26 26
  *
27 27
  * @return array $links
28 28
  */
29
-function give_plugin_action_links( $links, $file ) {
30
-	$settings_link = '<a href="' . admin_url( 'edit.php?post_type=give_forms&page=give-settings' ) . '">' . esc_html__( 'Settings', 'give' ) . '</a>';
31
-	if ( $file == 'give/give.php' ) {
32
-		array_unshift( $links, $settings_link );
29
+function give_plugin_action_links($links, $file) {
30
+	$settings_link = '<a href="'.admin_url('edit.php?post_type=give_forms&page=give-settings').'">'.esc_html__('Settings', 'give').'</a>';
31
+	if ($file == 'give/give.php') {
32
+		array_unshift($links, $settings_link);
33 33
 	}
34 34
 
35 35
 	return $links;
36 36
 }
37 37
 
38
-add_filter( 'plugin_action_links', 'give_plugin_action_links', 10, 2 );
38
+add_filter('plugin_action_links', 'give_plugin_action_links', 10, 2);
39 39
 
40 40
 
41 41
 /**
@@ -48,33 +48,33 @@  discard block
 block discarded – undo
48 48
  *
49 49
  * @return array $input
50 50
  */
51
-function give_plugin_row_meta( $input, $file ) {
52
-	if ( $file != 'give/give.php' ) {
51
+function give_plugin_row_meta($input, $file) {
52
+	if ($file != 'give/give.php') {
53 53
 		return $input;
54 54
 	}
55 55
 
56
-	$give_addons_link = esc_url( add_query_arg( array(
56
+	$give_addons_link = esc_url(add_query_arg(array(
57 57
 			'utm_source'   => 'plugins-page',
58 58
 			'utm_medium'   => 'plugin-row',
59 59
 			'utm_campaign' => 'admin',
60
-		), 'https://givewp.com/addons/' )
60
+		), 'https://givewp.com/addons/')
61 61
 	);
62 62
 
63
-	$give_docs_link = esc_url( add_query_arg( array(
63
+	$give_docs_link = esc_url(add_query_arg(array(
64 64
 			'utm_source'   => 'plugins-page',
65 65
 			'utm_medium'   => 'plugin-row',
66 66
 			'utm_campaign' => 'admin',
67
-		), 'https://givewp.com/documentation/' )
67
+		), 'https://givewp.com/documentation/')
68 68
 	);
69 69
 
70 70
 	$links = array(
71
-		'<a href="' . $give_docs_link . '" target="_blank">' . esc_html__( 'Documentation', 'give' ) . '</a>',
72
-		'<a href="' . $give_addons_link . '" target="_blank">' . esc_html__( 'Add-ons', 'give' ) . '</a>',
71
+		'<a href="'.$give_docs_link.'" target="_blank">'.esc_html__('Documentation', 'give').'</a>',
72
+		'<a href="'.$give_addons_link.'" target="_blank">'.esc_html__('Add-ons', 'give').'</a>',
73 73
 	);
74 74
 
75
-	$input = array_merge( $input, $links );
75
+	$input = array_merge($input, $links);
76 76
 
77 77
 	return $input;
78 78
 }
79 79
 
80
-add_filter( 'plugin_row_meta', 'give_plugin_row_meta', 10, 2 );
80
+add_filter('plugin_row_meta', 'give_plugin_row_meta', 10, 2);
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/template-functions.php 1 patch
Spacing   +63 added lines, -63 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
 
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
  * @return string
22 22
  */
23 23
 function give_get_templates_dir() {
24
-	return GIVE_PLUGIN_DIR . 'templates';
24
+	return GIVE_PLUGIN_DIR.'templates';
25 25
 }
26 26
 
27 27
 /**
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
  * @return string
32 32
  */
33 33
 function give_get_templates_url() {
34
-	return GIVE_PLUGIN_URL . 'templates';
34
+	return GIVE_PLUGIN_URL.'templates';
35 35
 }
36 36
 
37 37
 /**
@@ -51,23 +51,23 @@  discard block
 block discarded – undo
51 51
  * @uses  load_template()
52 52
  * @uses  get_template_part()
53 53
  */
54
-function give_get_template_part( $slug, $name = null, $load = true ) {
54
+function give_get_template_part($slug, $name = null, $load = true) {
55 55
 
56 56
 	// Execute code for this part
57
-	do_action( 'get_template_part_' . $slug, $slug, $name );
57
+	do_action('get_template_part_'.$slug, $slug, $name);
58 58
 
59 59
 	// Setup possible parts
60 60
 	$templates = array();
61
-	if ( isset( $name ) ) {
62
-		$templates[] = $slug . '-' . $name . '.php';
61
+	if (isset($name)) {
62
+		$templates[] = $slug.'-'.$name.'.php';
63 63
 	}
64
-	$templates[] = $slug . '.php';
64
+	$templates[] = $slug.'.php';
65 65
 
66 66
 	// Allow template parts to be filtered
67
-	$templates = apply_filters( 'give_get_template_part', $templates, $slug, $name );
67
+	$templates = apply_filters('give_get_template_part', $templates, $slug, $name);
68 68
 
69 69
 	// Return the part that is found
70
-	return give_locate_template( $templates, $load, false );
70
+	return give_locate_template($templates, $load, false);
71 71
 }
72 72
 
73 73
 /**
@@ -88,37 +88,37 @@  discard block
 block discarded – undo
88 88
  *
89 89
  * @return string The template filename if one is located.
90 90
  */
91
-function give_locate_template( $template_names, $load = false, $require_once = true ) {
91
+function give_locate_template($template_names, $load = false, $require_once = true) {
92 92
 	// No file found yet
93 93
 	$located = false;
94 94
 
95 95
 	// Try to find a template file
96
-	foreach ( (array) $template_names as $template_name ) {
96
+	foreach ((array) $template_names as $template_name) {
97 97
 
98 98
 		// Continue if template is empty
99
-		if ( empty( $template_name ) ) {
99
+		if (empty($template_name)) {
100 100
 			continue;
101 101
 		}
102 102
 
103 103
 		// Trim off any slashes from the template name
104
-		$template_name = ltrim( $template_name, '/' );
104
+		$template_name = ltrim($template_name, '/');
105 105
 
106 106
 		// try locating this template file by looping through the template paths
107
-		foreach ( give_get_theme_template_paths() as $template_path ) {
107
+		foreach (give_get_theme_template_paths() as $template_path) {
108 108
 
109
-			if ( file_exists( $template_path . $template_name ) ) {
110
-				$located = $template_path . $template_name;
109
+			if (file_exists($template_path.$template_name)) {
110
+				$located = $template_path.$template_name;
111 111
 				break;
112 112
 			}
113 113
 		}
114 114
 
115
-		if ( $located ) {
115
+		if ($located) {
116 116
 			break;
117 117
 		}
118 118
 	}
119 119
 
120
-	if ( ( true == $load ) && ! empty( $located ) ) {
121
-		load_template( $located, $require_once );
120
+	if ((true == $load) && ! empty($located)) {
121
+		load_template($located, $require_once);
122 122
 	}
123 123
 
124 124
 	return $located;
@@ -135,17 +135,17 @@  discard block
 block discarded – undo
135 135
 	$template_dir = give_get_theme_template_dir_name();
136 136
 
137 137
 	$file_paths = array(
138
-		1   => trailingslashit( get_stylesheet_directory() ) . $template_dir,
139
-		10  => trailingslashit( get_template_directory() ) . $template_dir,
138
+		1   => trailingslashit(get_stylesheet_directory()).$template_dir,
139
+		10  => trailingslashit(get_template_directory()).$template_dir,
140 140
 		100 => give_get_templates_dir()
141 141
 	);
142 142
 
143
-	$file_paths = apply_filters( 'give_template_paths', $file_paths );
143
+	$file_paths = apply_filters('give_template_paths', $file_paths);
144 144
 
145 145
 	// sort the file paths based on priority
146
-	ksort( $file_paths, SORT_NUMERIC );
146
+	ksort($file_paths, SORT_NUMERIC);
147 147
 
148
-	return array_map( 'trailingslashit', $file_paths );
148
+	return array_map('trailingslashit', $file_paths);
149 149
 }
150 150
 
151 151
 /**
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
  * @return string
158 158
  */
159 159
 function give_get_theme_template_dir_name() {
160
-	return trailingslashit( apply_filters( 'give_templates_dir', 'give' ) );
160
+	return trailingslashit(apply_filters('give_templates_dir', 'give'));
161 161
 }
162 162
 
163 163
 /**
@@ -167,10 +167,10 @@  discard block
 block discarded – undo
167 167
  * @return void
168 168
  */
169 169
 function give_version_in_header() {
170
-	echo '<meta name="generator" content="Give v' . GIVE_VERSION . '" />' . "\n";
170
+	echo '<meta name="generator" content="Give v'.GIVE_VERSION.'" />'."\n";
171 171
 }
172 172
 
173
-add_action( 'wp_head', 'give_version_in_header' );
173
+add_action('wp_head', 'give_version_in_header');
174 174
 
175 175
 /**
176 176
  * Determines if we're currently on the Donations History page.
@@ -180,9 +180,9 @@  discard block
 block discarded – undo
180 180
  */
181 181
 function give_is_donation_history_page() {
182 182
 
183
-	$ret = is_page( give_get_option( 'history_page' ) );
183
+	$ret = is_page(give_get_option('history_page'));
184 184
 
185
-	return apply_filters( 'give_is_donation_history_page', $ret );
185
+	return apply_filters('give_is_donation_history_page', $ret);
186 186
 }
187 187
 
188 188
 /**
@@ -194,25 +194,25 @@  discard block
 block discarded – undo
194 194
  *
195 195
  * @return array Modified array of classes
196 196
  */
197
-function give_add_body_classes( $class ) {
197
+function give_add_body_classes($class) {
198 198
 	$classes = (array) $class;
199 199
 
200
-	if ( give_is_success_page() ) {
200
+	if (give_is_success_page()) {
201 201
 		$classes[] = 'give-success';
202 202
 		$classes[] = 'give-page';
203 203
 	}
204 204
 
205
-	if ( give_is_failed_transaction_page() ) {
205
+	if (give_is_failed_transaction_page()) {
206 206
 		$classes[] = 'give-failed-transaction';
207 207
 		$classes[] = 'give-page';
208 208
 	}
209 209
 
210
-	if ( give_is_donation_history_page() ) {
210
+	if (give_is_donation_history_page()) {
211 211
 		$classes[] = 'give-donation-history';
212 212
 		$classes[] = 'give-page';
213 213
 	}
214 214
 
215
-	if ( give_is_test_mode() ) {
215
+	if (give_is_test_mode()) {
216 216
 		$classes[] = 'give-test-mode';
217 217
 		$classes[] = 'give-page';
218 218
 	}
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
 	//Theme-specific Classes used to prevent conflicts via CSS
221 221
 	$current_theme = wp_get_theme();
222 222
 
223
-	switch ( $current_theme->template ) {
223
+	switch ($current_theme->template) {
224 224
 
225 225
 		case 'Divi':
226 226
 			$classes[] = 'give-divi';
@@ -234,10 +234,10 @@  discard block
 block discarded – undo
234 234
 
235 235
 	}
236 236
 
237
-	return array_unique( $classes );
237
+	return array_unique($classes);
238 238
 }
239 239
 
240
-add_filter( 'body_class', 'give_add_body_classes' );
240
+add_filter('body_class', 'give_add_body_classes');
241 241
 
242 242
 
243 243
 /**
@@ -253,22 +253,22 @@  discard block
 block discarded – undo
253 253
  *
254 254
  * @return array
255 255
  */
256
-function give_add_post_class( $classes, $class = '', $post_id = '' ) {
257
-	if ( ! $post_id || 'give_forms' !== get_post_type( $post_id ) ) {
256
+function give_add_post_class($classes, $class = '', $post_id = '') {
257
+	if ( ! $post_id || 'give_forms' !== get_post_type($post_id)) {
258 258
 		return $classes;
259 259
 	}
260 260
 
261 261
 	//@TODO: Add classes for custom taxonomy and form configurations (multi vs single donations, etc).
262 262
 
263
-	if ( false !== ( $key = array_search( 'hentry', $classes ) ) ) {
264
-		unset( $classes[ $key ] );
263
+	if (false !== ($key = array_search('hentry', $classes))) {
264
+		unset($classes[$key]);
265 265
 	}
266 266
 
267 267
 	return $classes;
268 268
 }
269 269
 
270 270
 
271
-add_filter( 'post_class', 'give_add_post_class', 20, 3 );
271
+add_filter('post_class', 'give_add_post_class', 20, 3);
272 272
 
273 273
 /**
274 274
  * Get the placeholder image URL for forms etc
@@ -278,84 +278,84 @@  discard block
 block discarded – undo
278 278
  */
279 279
 function give_get_placeholder_img_src() {
280 280
 
281
-	$placeholder_url = 'http://placehold.it/600x600&text=' . urlencode( esc_attr__( 'Give Placeholder Image', 'give' ) );
281
+	$placeholder_url = 'http://placehold.it/600x600&text='.urlencode(esc_attr__('Give Placeholder Image', 'give'));
282 282
 
283
-	return apply_filters( 'give_placeholder_img_src', $placeholder_url );
283
+	return apply_filters('give_placeholder_img_src', $placeholder_url);
284 284
 }
285 285
 
286 286
 
287 287
 /**
288 288
  * Global
289 289
  */
290
-if ( ! function_exists( 'give_output_content_wrapper' ) ) {
290
+if ( ! function_exists('give_output_content_wrapper')) {
291 291
 
292 292
 	/**
293 293
 	 * Output the start of the page wrapper.
294 294
 	 */
295 295
 	function give_output_content_wrapper() {
296
-		give_get_template_part( 'global/wrapper-start' );
296
+		give_get_template_part('global/wrapper-start');
297 297
 	}
298 298
 }
299
-if ( ! function_exists( 'give_output_content_wrapper_end' ) ) {
299
+if ( ! function_exists('give_output_content_wrapper_end')) {
300 300
 
301 301
 	/**
302 302
 	 * Output the end of the page wrapper.
303 303
 	 */
304 304
 	function give_output_content_wrapper_end() {
305
-		give_get_template_part( 'global/wrapper-end' );
305
+		give_get_template_part('global/wrapper-end');
306 306
 	}
307 307
 }
308 308
 
309 309
 /**
310 310
  * Single Give Form
311 311
  */
312
-if ( ! function_exists( 'give_left_sidebar_pre_wrap' ) ) {
312
+if ( ! function_exists('give_left_sidebar_pre_wrap')) {
313 313
 	function give_left_sidebar_pre_wrap() {
314
-		echo apply_filters( 'give_left_sidebar_pre_wrap', '<div id="give-sidebar-left" class="give-sidebar give-single-form-sidebar-left">' );
314
+		echo apply_filters('give_left_sidebar_pre_wrap', '<div id="give-sidebar-left" class="give-sidebar give-single-form-sidebar-left">');
315 315
 	}
316 316
 }
317 317
 
318
-if ( ! function_exists( 'give_left_sidebar_post_wrap' ) ) {
318
+if ( ! function_exists('give_left_sidebar_post_wrap')) {
319 319
 	function give_left_sidebar_post_wrap() {
320
-		echo apply_filters( 'give_left_sidebar_post_wrap', '</div>' );
320
+		echo apply_filters('give_left_sidebar_post_wrap', '</div>');
321 321
 	}
322 322
 }
323 323
 
324
-if ( ! function_exists( 'give_get_forms_sidebar' ) ) {
324
+if ( ! function_exists('give_get_forms_sidebar')) {
325 325
 	function give_get_forms_sidebar() {
326
-		give_get_template_part( 'single-give-form/sidebar' );
326
+		give_get_template_part('single-give-form/sidebar');
327 327
 	}
328 328
 }
329 329
 
330
-if ( ! function_exists( 'give_show_form_images' ) ) {
330
+if ( ! function_exists('give_show_form_images')) {
331 331
 
332 332
 	/**
333 333
 	 * Output the product image before the single product summary.
334 334
 	 */
335 335
 	function give_show_form_images() {
336
-		$featured_image_option = give_get_option( 'disable_form_featured_img' );
337
-		if ( $featured_image_option !== 'on' ) {
338
-			give_get_template_part( 'single-give-form/featured-image' );
336
+		$featured_image_option = give_get_option('disable_form_featured_img');
337
+		if ($featured_image_option !== 'on') {
338
+			give_get_template_part('single-give-form/featured-image');
339 339
 		}
340 340
 	}
341 341
 }
342 342
 
343
-if ( ! function_exists( 'give_template_single_title' ) ) {
343
+if ( ! function_exists('give_template_single_title')) {
344 344
 
345 345
 	/**
346 346
 	 * Output the product title.
347 347
 	 */
348 348
 	function give_template_single_title() {
349
-		give_get_template_part( 'single-give-form/title' );
349
+		give_get_template_part('single-give-form/title');
350 350
 	}
351 351
 }
352 352
 
353
-if ( ! function_exists( 'give_show_avatars' ) ) {
353
+if ( ! function_exists('give_show_avatars')) {
354 354
 
355 355
 	/**
356 356
 	 * Output the product title.
357 357
 	 */
358 358
 	function give_show_avatars() {
359
-		echo do_shortcode( '[give_donators_gravatars]' );
359
+		echo do_shortcode('[give_donators_gravatars]');
360 360
 	}
361 361
 }
362 362
\ No newline at end of file
Please login to merge, or discard this patch.
includes/emails/template.php 1 patch
Spacing   +69 added lines, -69 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
 
@@ -41,8 +41,8 @@  discard block
 block discarded – undo
41 41
  *
42 42
  * @return string $message Fully formatted message
43 43
  */
44
-function give_email_template_tags( $message, $payment_data, $payment_id, $admin_notice = false ) {
45
-	return give_do_email_tags( $message, $payment_id );
44
+function give_email_template_tags($message, $payment_data, $payment_id, $admin_notice = false) {
45
+	return give_do_email_tags($message, $payment_id);
46 46
 }
47 47
 
48 48
 /**
@@ -55,38 +55,38 @@  discard block
 block discarded – undo
55 55
  *
56 56
  * @return string $message Fully formatted message
57 57
  */
58
-function give_email_preview_template_tags( $message ) {
58
+function give_email_preview_template_tags($message) {
59 59
 	global $give_options;
60 60
 
61
-	$price = give_currency_filter( give_format_amount( 10.50 ) );
61
+	$price = give_currency_filter(give_format_amount(10.50));
62 62
 
63 63
 	$gateway = 'PayPal';
64 64
 
65
-	$receipt_id = strtolower( md5( uniqid() ) );
65
+	$receipt_id = strtolower(md5(uniqid()));
66 66
 
67
-	$notes = __( 'These are some sample notes added to a donation.', 'give' );
67
+	$notes = __('These are some sample notes added to a donation.', 'give');
68 68
 
69
-	$payment_id = rand( 1, 100 );
69
+	$payment_id = rand(1, 100);
70 70
 
71 71
 	$user = wp_get_current_user();
72 72
 
73
-	$message = str_replace( '{name}', $user->display_name, $message );
74
-	$message = str_replace( '{fullname}', $user->display_name, $message );
75
-	$message = str_replace( '{username}', $user->user_login, $message );
76
-	$message = str_replace( '{date}', date( get_option( 'date_format' ), current_time( 'timestamp' ) ), $message );
77
-	$message = str_replace( '{price}', $price, $message );
78
-	$message = str_replace( '{donation}', 'Sample Donation Form Title', $message );
79
-	$message = str_replace( '{receipt_id}', $receipt_id, $message );
80
-	$message = str_replace( '{payment_method}', $gateway, $message );
81
-	$message = str_replace( '{sitename}', get_bloginfo( 'name' ), $message );
82
-	$message = str_replace( '{product_notes}', $notes, $message );
83
-	$message = str_replace( '{payment_id}', $payment_id, $message );
84
-	$message = str_replace( '{receipt_link}', sprintf( __( '%1$sView the receipt in your browser %2$s', 'give' ), '<a href="' . esc_url( add_query_arg( array(
73
+	$message = str_replace('{name}', $user->display_name, $message);
74
+	$message = str_replace('{fullname}', $user->display_name, $message);
75
+	$message = str_replace('{username}', $user->user_login, $message);
76
+	$message = str_replace('{date}', date(get_option('date_format'), current_time('timestamp')), $message);
77
+	$message = str_replace('{price}', $price, $message);
78
+	$message = str_replace('{donation}', 'Sample Donation Form Title', $message);
79
+	$message = str_replace('{receipt_id}', $receipt_id, $message);
80
+	$message = str_replace('{payment_method}', $gateway, $message);
81
+	$message = str_replace('{sitename}', get_bloginfo('name'), $message);
82
+	$message = str_replace('{product_notes}', $notes, $message);
83
+	$message = str_replace('{payment_id}', $payment_id, $message);
84
+	$message = str_replace('{receipt_link}', sprintf(__('%1$sView the receipt in your browser %2$s', 'give'), '<a href="'.esc_url(add_query_arg(array(
85 85
 			'payment_key' => $receipt_id,
86 86
 			'give_action' => 'view_receipt'
87
-		), home_url() ) ) . '">', '&raquo;</a>' ), $message );
87
+		), home_url())).'">', '&raquo;</a>'), $message);
88 88
 
89
-	return wpautop( apply_filters( 'give_email_preview_template_tags', $message ) );
89
+	return wpautop(apply_filters('give_email_preview_template_tags', $message));
90 90
 }
91 91
 
92 92
 /**
@@ -99,20 +99,20 @@  discard block
 block discarded – undo
99 99
  * @since  1.0
100 100
  * @return array|bool
101 101
  */
102
-add_filter( 'give_settings_emails', 'give_email_template_preview' );
102
+add_filter('give_settings_emails', 'give_email_template_preview');
103 103
 
104
-function give_email_template_preview( $array ) {
104
+function give_email_template_preview($array) {
105 105
 
106
-	if ( ! current_user_can( 'manage_give_settings' ) ) {
106
+	if ( ! current_user_can('manage_give_settings')) {
107 107
 		return false;
108 108
 	}
109 109
 	$custom_field = array(
110
-		'name' => __( 'Preview Email', 'give' ),
111
-		'desc' => __( 'Click the buttons to preview emails.', 'give' ),
110
+		'name' => __('Preview Email', 'give'),
111
+		'desc' => __('Click the buttons to preview emails.', 'give'),
112 112
 		'id'   => 'give_email_preview_buttons',
113 113
 		'type' => 'email_preview_buttons'
114 114
 	);
115
-	array_splice( $array, 5, 0, array( $custom_field ) );
115
+	array_splice($array, 5, 0, array($custom_field));
116 116
 
117 117
 	return $array; // splice in at position 3;
118 118
 }
@@ -128,11 +128,11 @@  discard block
 block discarded – undo
128 128
 function give_email_preview_buttons_callback() {
129 129
 	ob_start();
130 130
 	?>
131
-	<a href="<?php echo esc_url( add_query_arg( array( 'give_action' => 'preview_email' ), home_url() ) ); ?>" class="button-secondary" target="_blank" title="<?php _e( 'Donation Receipt Preview', 'give' ); ?> "><?php _e( 'Preview Donation Receipt', 'give' ); ?></a>
132
-	<a href="<?php echo wp_nonce_url( add_query_arg( array(
131
+	<a href="<?php echo esc_url(add_query_arg(array('give_action' => 'preview_email'), home_url())); ?>" class="button-secondary" target="_blank" title="<?php _e('Donation Receipt Preview', 'give'); ?> "><?php _e('Preview Donation Receipt', 'give'); ?></a>
132
+	<a href="<?php echo wp_nonce_url(add_query_arg(array(
133 133
 		'give_action'  => 'send_test_email',
134 134
 		'give-message' => 'sent-test-email'
135
-	) ), 'give-test-email' ); ?>" title="<?php _e( 'This will send a demo donation receipt to the emails listed below.', 'give' ); ?>" class="button-secondary"><?php _e( 'Send Test Email', 'give' ); ?></a>
135
+	)), 'give-test-email'); ?>" title="<?php _e('This will send a demo donation receipt to the emails listed below.', 'give'); ?>" class="button-secondary"><?php _e('Send Test Email', 'give'); ?></a>
136 136
 	<?php
137 137
 	echo ob_get_clean();
138 138
 }
@@ -145,27 +145,27 @@  discard block
 block discarded – undo
145 145
  */
146 146
 function give_display_email_template_preview() {
147 147
 
148
-	if ( empty( $_GET['give_action'] ) ) {
148
+	if (empty($_GET['give_action'])) {
149 149
 		return;
150 150
 	}
151 151
 
152
-	if ( 'preview_email' !== $_GET['give_action'] ) {
152
+	if ('preview_email' !== $_GET['give_action']) {
153 153
 		return;
154 154
 	}
155 155
 
156
-	if ( ! current_user_can( 'manage_give_settings' ) ) {
156
+	if ( ! current_user_can('manage_give_settings')) {
157 157
 		return;
158 158
 	}
159 159
 
160
-	Give()->emails->heading = __( 'Donation Receipt', 'give' );
160
+	Give()->emails->heading = __('Donation Receipt', 'give');
161 161
 
162
-	echo Give()->emails->build_email( give_email_preview_template_tags( give_get_email_body_content( 0, array() ) ) );
162
+	echo Give()->emails->build_email(give_email_preview_template_tags(give_get_email_body_content(0, array())));
163 163
 
164 164
 	exit;
165 165
 
166 166
 }
167 167
 
168
-add_action( 'template_redirect', 'give_display_email_template_preview' );
168
+add_action('template_redirect', 'give_display_email_template_preview');
169 169
 
170 170
 /**
171 171
  * Email Template Body
@@ -177,19 +177,19 @@  discard block
 block discarded – undo
177 177
  *
178 178
  * @return string $email_body Body of the email
179 179
  */
180
-function give_get_email_body_content( $payment_id = 0, $payment_data = array() ) {
180
+function give_get_email_body_content($payment_id = 0, $payment_data = array()) {
181 181
 
182 182
 	global $give_options;
183 183
 
184 184
 	$default_email_body = give_get_default_donation_receipt_email();
185 185
 
186
-	$email = isset( $give_options['donation_receipt'] ) ? stripslashes( $give_options['donation_receipt'] ) : $default_email_body;
186
+	$email = isset($give_options['donation_receipt']) ? stripslashes($give_options['donation_receipt']) : $default_email_body;
187 187
 
188
-	$email_body = wpautop( $email );
188
+	$email_body = wpautop($email);
189 189
 
190
-	$email_body = apply_filters( 'give_donation_receipt_' . Give()->emails->get_template(), $email_body, $payment_id, $payment_data );
190
+	$email_body = apply_filters('give_donation_receipt_'.Give()->emails->get_template(), $email_body, $payment_id, $payment_data);
191 191
 
192
-	return apply_filters( 'give_donation_receipt', $email_body, $payment_id, $payment_data );
192
+	return apply_filters('give_donation_receipt', $email_body, $payment_id, $payment_data);
193 193
 }
194 194
 
195 195
 
@@ -205,37 +205,37 @@  discard block
 block discarded – undo
205 205
  *
206 206
  * @return string $email_body Body of the email
207 207
  */
208
-function give_get_donation_notification_body_content( $payment_id = 0, $payment_data = array() ) {
208
+function give_get_donation_notification_body_content($payment_id = 0, $payment_data = array()) {
209 209
 	global $give_options;
210 210
 
211
-	$user_info = maybe_unserialize( $payment_data['user_info'] );
212
-	$email     = give_get_payment_user_email( $payment_id );
211
+	$user_info = maybe_unserialize($payment_data['user_info']);
212
+	$email     = give_get_payment_user_email($payment_id);
213 213
 
214
-	if ( isset( $user_info['id'] ) && $user_info['id'] > 0 ) {
215
-		$user_data = get_userdata( $user_info['id'] );
214
+	if (isset($user_info['id']) && $user_info['id'] > 0) {
215
+		$user_data = get_userdata($user_info['id']);
216 216
 		$name      = $user_data->display_name;
217
-	} elseif ( isset( $user_info['first_name'] ) && isset( $user_info['last_name'] ) ) {
218
-		$name = $user_info['first_name'] . ' ' . $user_info['last_name'];
217
+	} elseif (isset($user_info['first_name']) && isset($user_info['last_name'])) {
218
+		$name = $user_info['first_name'].' '.$user_info['last_name'];
219 219
 	} else {
220 220
 		$name = $email;
221 221
 	}
222 222
 
223
-	$gateway = give_get_gateway_admin_label( get_post_meta( $payment_id, '_give_payment_gateway', true ) );
223
+	$gateway = give_get_gateway_admin_label(get_post_meta($payment_id, '_give_payment_gateway', true));
224 224
 
225
-	$default_email_body = __( 'Hello', 'give' ) . "\n\n" . __( 'A donation has been made', 'give' ) . ".\n\n";
226
-	$default_email_body .= sprintf( __( '%s sold:', 'give' ), give_get_forms_label_plural() ) . "\n\n";
225
+	$default_email_body = __('Hello', 'give')."\n\n".__('A donation has been made', 'give').".\n\n";
226
+	$default_email_body .= sprintf(__('%s sold:', 'give'), give_get_forms_label_plural())."\n\n";
227 227
 
228
-	$default_email_body .= __( 'Donor: ', 'give' ) . " " . html_entity_decode( $name, ENT_COMPAT, 'UTF-8' ) . "\n";
229
-	$default_email_body .= __( 'Amount: ', 'give' ) . " " . html_entity_decode( give_currency_filter( give_format_amount( give_get_payment_amount( $payment_id ) ) ), ENT_COMPAT, 'UTF-8' ) . "\n";
230
-	$default_email_body .= __( 'Payment Method: ', 'give' ) . " " . $gateway . "\n\n";
228
+	$default_email_body .= __('Donor: ', 'give')." ".html_entity_decode($name, ENT_COMPAT, 'UTF-8')."\n";
229
+	$default_email_body .= __('Amount: ', 'give')." ".html_entity_decode(give_currency_filter(give_format_amount(give_get_payment_amount($payment_id))), ENT_COMPAT, 'UTF-8')."\n";
230
+	$default_email_body .= __('Payment Method: ', 'give')." ".$gateway."\n\n";
231 231
 
232
-	$default_email_body .= __( 'Thank you', 'give' );
232
+	$default_email_body .= __('Thank you', 'give');
233 233
 
234
-	$email = isset( $give_options['donation_notification'] ) ? stripslashes( $give_options['donation_notification'] ) : $default_email_body;
234
+	$email = isset($give_options['donation_notification']) ? stripslashes($give_options['donation_notification']) : $default_email_body;
235 235
 
236
-	$email_body = give_do_email_tags( $email, $payment_id );
236
+	$email_body = give_do_email_tags($email, $payment_id);
237 237
 
238
-	return apply_filters( 'give_donation_notification', wpautop( $email_body ), $payment_id, $payment_data );
238
+	return apply_filters('give_donation_notification', wpautop($email_body), $payment_id, $payment_data);
239 239
 }
240 240
 
241 241
 /**
@@ -248,15 +248,15 @@  discard block
 block discarded – undo
248 248
  * @since  1.0
249 249
  */
250 250
 function give_render_receipt_in_browser() {
251
-	if ( ! isset( $_GET['payment_key'] ) ) {
252
-		wp_die( __( 'Missing donation payment key.', 'give' ), __( 'Error', 'give' ) );
251
+	if ( ! isset($_GET['payment_key'])) {
252
+		wp_die(__('Missing donation payment key.', 'give'), __('Error', 'give'));
253 253
 	}
254 254
 
255
-	$key = urlencode( $_GET['payment_key'] );
255
+	$key = urlencode($_GET['payment_key']);
256 256
 
257 257
 	ob_start();
258 258
 	//Disallows caching of the page
259
-	header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
259
+	header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
260 260
 	header("Cache-Control: no-store, no-cache, must-revalidate"); // HTTP/1.1
261 261
 	header("Cache-Control: post-check=0, pre-check=0", false);
262 262
 	header("Pragma: no-cache"); // HTTP/1.0
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
 	<!DOCTYPE html>
266 266
 	<html lang="en">
267 267
 		<head>
268
-			<title><?php _e( 'Donation Receipt', 'give' ); ?></title>
268
+			<title><?php _e('Donation Receipt', 'give'); ?></title>
269 269
 			<meta charset="utf-8" />
270 270
 
271 271
 			<!-- Further disallowing of caching of this page -->
@@ -279,12 +279,12 @@  discard block
 block discarded – undo
279 279
 
280 280
 			<?php wp_head(); ?>
281 281
 		</head>
282
-		<body class="<?php echo apply_filters( 'give_receipt_page_body_class', 'give_receipt_page' ); ?>">
282
+		<body class="<?php echo apply_filters('give_receipt_page_body_class', 'give_receipt_page'); ?>">
283 283
 
284 284
 			<div id="give_receipt_wrapper">
285
-				<?php do_action( 'give_render_receipt_in_browser_before' ); ?>
286
-				<?php echo do_shortcode( '[give_receipt payment_key=' . $key . ']' ); ?>
287
-				<?php do_action( 'give_render_receipt_in_browser_after' ); ?>
285
+				<?php do_action('give_render_receipt_in_browser_before'); ?>
286
+				<?php echo do_shortcode('[give_receipt payment_key='.$key.']'); ?>
287
+				<?php do_action('give_render_receipt_in_browser_after'); ?>
288 288
 			</div>
289 289
 
290 290
 			<?php wp_footer(); ?>
@@ -295,4 +295,4 @@  discard block
 block discarded – undo
295 295
 	die();
296 296
 }
297 297
 
298
-add_action( 'give_view_receipt', 'give_render_receipt_in_browser' );
298
+add_action('give_view_receipt', 'give_render_receipt_in_browser');
Please login to merge, or discard this patch.