Completed
Branch master (5a8fbc)
by Mike
02:16
created
includes/class-test-content.php 4 patches
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -427,29 +427,29 @@  discard block
 block discarded – undo
427 427
 		}
428 428
 
429 429
 		// Download the file
430
-	    $tmp = \download_url( $url );
430
+		$tmp = \download_url( $url );
431 431
 
432
-	    preg_match( '/[^\?]+\.(jpg|JPG|jpe|JPE|jpeg|JPEG|gif|GIF|png|PNG)/', $url, $matches );
432
+		preg_match( '/[^\?]+\.(jpg|JPG|jpe|JPE|jpeg|JPEG|gif|GIF|png|PNG)/', $url, $matches );
433 433
 
434
-        $file_array['name'] = basename( $matches[0] );
435
-        $file_array['tmp_name'] = $tmp;
434
+		$file_array['name'] = basename( $matches[0] );
435
+		$file_array['tmp_name'] = $tmp;
436 436
 
437
-	    // Check for download errors
438
-	    if ( is_wp_error( $tmp ) ) {
439
-	        unlink( $file_array[ 'tmp_name' ] );
440
-	        error_log( $tmp->get_error_message() );
441
-	    }
437
+		// Check for download errors
438
+		if ( is_wp_error( $tmp ) ) {
439
+			unlink( $file_array[ 'tmp_name' ] );
440
+			error_log( $tmp->get_error_message() );
441
+		}
442 442
 
443 443
 		// Pull the image into the media library
444
-	    $image_id = media_handle_sideload( $file_array, $post_id );
444
+		$image_id = media_handle_sideload( $file_array, $post_id );
445 445
 
446
-	    // Check for handle sideload errors.
447
-	    if ( is_wp_error( $image_id ) ) {
448
-	        unlink( $file_array['tmp_name'] );
449
-	        error_log( $image_id->get_error_message() );
450
-	    }
446
+		// Check for handle sideload errors.
447
+		if ( is_wp_error( $image_id ) ) {
448
+			unlink( $file_array['tmp_name'] );
449
+			error_log( $image_id->get_error_message() );
450
+		}
451 451
 
452
-	    return apply_filters( "tc_image_data", $image_id );
452
+		return apply_filters( "tc_image_data", $image_id );
453 453
 
454 454
 	}
455 455
 
@@ -472,9 +472,9 @@  discard block
 block discarded – undo
472 472
 
473 473
 		// If our cURL failed
474 474
 		if ( $curl_response === false ) {
475
-		    $info = curl_getinfo( $curl );
476
-		    curl_close( $curl );
477
-		    die( 'error occured during curl exec. Additional info: ' . var_export( $info ) );
475
+			$info = curl_getinfo( $curl );
476
+			curl_close( $curl );
477
+			die( 'error occured during curl exec. Additional info: ' . var_export( $info ) );
478 478
 		}
479 479
 
480 480
 		curl_close( $curl );
@@ -620,7 +620,7 @@  discard block
 block discarded – undo
620 620
 			$char = "0123456789abcdefghijklmnopqrstuvwxyz";
621 621
 
622 622
 			$user_length = mt_rand( 5, 20 );
623
-		    $domain_length = mt_rand( 7, 12 );
623
+			$domain_length = mt_rand( 7, 12 );
624 624
 
625 625
 			for ( $i = 1; $i <= $user_length; $i++ ){
626 626
 				$user .= substr( $char, mt_rand( 0, strlen( $char ) ), 1 );
Please login to merge, or discard this patch.
Spacing   +37 added lines, -37 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
  * @subpackage Evans
15 15
  * @author     Old Town Media
16 16
  */
17
-class TestContent{
17
+class TestContent {
18 18
 
19 19
 	/**
20 20
 	 * Title function.
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 	 * @param int $num_words Number of words to return.
27 27
 	 * @return string Random title string.
28 28
 	 */
29
-	public static function title( $num_words = '' ){
29
+	public static function title( $num_words = '' ) {
30 30
 
31 31
 		$title = '';
32 32
 
@@ -67,12 +67,12 @@  discard block
 block discarded – undo
67 67
 		);
68 68
 
69 69
 		// If we didn't choose a count, make one
70
-		if ( empty( $num_words ) ){
70
+		if ( empty( $num_words ) ) {
71 71
 			$num_words = rand( 2, 10 );
72 72
 		}
73 73
 
74 74
 		// Pull random words
75
-		for( $i = 1; $i <= $num_words; $i++ ){
75
+		for ( $i = 1; $i <= $num_words; $i++ ) {
76 76
 			$title .= $random_words[ rand( 0, 31 ) ] . " ";
77 77
 		}
78 78
 
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
 	 *
90 90
 	 * @return string Paragraph(s) of text.
91 91
 	 */
92
-	public static function paragraphs(){
92
+	public static function paragraphs() {
93 93
 
94 94
 		$content = '';
95 95
 
@@ -351,17 +351,17 @@  discard block
 block discarded – undo
351 351
 		);
352 352
 
353 353
 		$used_keys = array();
354
-		for( $i = 1; $i < 7; $i++ ){
354
+		for ( $i = 1; $i < 7; $i++ ) {
355 355
 
356 356
 			// Pull a new random key and make sure we're not repeating any elements
357 357
 			$key = rand( 0, 12 );
358
-			while( in_array( $key, $used_keys ) ){
358
+			while ( in_array( $key, $used_keys ) ) {
359 359
 				$key = rand( 0, 12 );
360 360
 			}
361 361
 
362
-			$content .= $random_content_types[$key];
362
+			$content .= $random_content_types[ $key ];
363 363
 
364
-			$used_keys[] = $key;
364
+			$used_keys[ ] = $key;
365 365
 		}
366 366
 
367 367
 		return apply_filters( "tc_paragraphs_data", $content );
@@ -376,7 +376,7 @@  discard block
 block discarded – undo
376 376
 	 *
377 377
 	 * @return string Plain text paragraphs.
378 378
 	 */
379
-	public static function plain_text(){
379
+	public static function plain_text() {
380 380
 
381 381
 		$paragraphs = array(
382 382
 			'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean tincidunt luctus eros, a tincidunt massa aliquet sit amet. Sed faucibus, eros non lacinia porttitor, risus odio efficitur sapien, id porta urna massa ac est. Cras efficitur lacinia magna eget tempus. Fusce ex felis, finibus consectetur mi at, finibus rhoncus augue. In ut tortor lacinia, rutrum mauris vel, maximus tortor. Praesent ac arcu nec eros pharetra tristique. Morbi congue leo sed ipsum fermentum vulputate. Ut nulla eros, porta varius pulvinar eget, bibendum quis dolor. Morbi sed diam eu dui semper ornare nec quis nisl.',
@@ -407,20 +407,20 @@  discard block
 block discarded – undo
407 407
 	 * @param int $post_id Post ID.
408 408
 	 * @return mixed Attachment ID or WP Error.
409 409
 	 */
410
-	public static function image( $post_id ){
410
+	public static function image( $post_id ) {
411 411
 		$file_array = array();
412 412
 
413 413
 		// Get the image from the API
414 414
 		$url = self::get_image_link();
415 415
 
416 416
 		// If the returned string is empty or it's not a string, try again.
417
-		if ( empty( $url ) || !is_string( $url ) ){
417
+		if ( empty( $url ) || ! is_string( $url ) ) {
418 418
 
419 419
 			// Try again
420 420
 			$url = self::get_image_link();
421 421
 
422 422
 			// If it fails again, just give up
423
-			if ( empty( $url ) || !is_string( $url ) ){
423
+			if ( empty( $url ) || ! is_string( $url ) ) {
424 424
 				return;
425 425
 			}
426 426
 
@@ -431,8 +431,8 @@  discard block
 block discarded – undo
431 431
 
432 432
 	    preg_match( '/[^\?]+\.(jpg|JPG|jpe|JPE|jpeg|JPEG|gif|GIF|png|PNG)/', $url, $matches );
433 433
 
434
-        $file_array['name'] = basename( $matches[0] );
435
-        $file_array['tmp_name'] = $tmp;
434
+        $file_array[ 'name' ] = basename( $matches[ 0 ] );
435
+        $file_array[ 'tmp_name' ] = $tmp;
436 436
 
437 437
 	    // Check for download errors
438 438
 	    if ( is_wp_error( $tmp ) ) {
@@ -445,7 +445,7 @@  discard block
 block discarded – undo
445 445
 
446 446
 	    // Check for handle sideload errors.
447 447
 	    if ( is_wp_error( $image_id ) ) {
448
-	        unlink( $file_array['tmp_name'] );
448
+	        unlink( $file_array[ 'tmp_name' ] );
449 449
 	        error_log( $image_id->get_error_message() );
450 450
 	    }
451 451
 
@@ -461,7 +461,7 @@  discard block
 block discarded – undo
461 461
 	 *
462 462
 	 * @return string Image URL.
463 463
 	 */
464
-	private static function get_image_link(){
464
+	private static function get_image_link() {
465 465
 
466 466
 		// cURL an image API for a completely random photo
467 467
 		$curl = curl_init( "http://www.splashbase.co/api/v1/images/random?images_only=true" );
@@ -483,10 +483,10 @@  discard block
 block discarded – undo
483 483
 		$response = json_decode( $curl_response, true );
484 484
 
485 485
 		// Check to make sure that the return contains a valid image extensions
486
-		preg_match('/[^\?]+\.(jpg|JPG|jpe|JPE|jpeg|JPEG|gif|GIF|png|PNG)/', $response['url'], $matches);
486
+		preg_match( '/[^\?]+\.(jpg|JPG|jpe|JPE|jpeg|JPEG|gif|GIF|png|PNG)/', $response[ 'url' ], $matches );
487 487
 
488
-		if ( !empty( $matches ) ){
489
-			return $response['url'];
488
+		if ( ! empty( $matches ) ) {
489
+			return $response[ 'url' ];
490 490
 		}
491 491
 
492 492
 	}
@@ -500,7 +500,7 @@  discard block
 block discarded – undo
500 500
 	 * @param string $format PHP Date format.
501 501
 	 * @return mixed Date in the format requested.
502 502
 	 */
503
-	public static function date( $format ){
503
+	public static function date( $format ) {
504 504
 
505 505
 		$num_days = rand( 1, 60 );
506 506
 		$date = date( $format, strtotime( " +$num_days days" ) );
@@ -517,16 +517,16 @@  discard block
 block discarded – undo
517 517
 	 *
518 518
 	 * @return string Time string
519 519
 	 */
520
-	public static function time(){
520
+	public static function time() {
521 521
 
522 522
 		$times = array(
523 523
 			'8:00 am',
524 524
 			'5:00PM',
525 525
 			'13:00',
526 526
 			'2015',
527
-			date( 'G:i', strtotime( " +".rand( 4, 24 )." hours" ) ),
528
-			date( 'g:i', strtotime( " +".rand( 4, 24 )." hours" ) ),
529
-			date( 'G:i A', strtotime( " +".rand( 4, 24 )." hours" ) )
527
+			date( 'G:i', strtotime( " +" . rand( 4, 24 ) . " hours" ) ),
528
+			date( 'g:i', strtotime( " +" . rand( 4, 24 ) . " hours" ) ),
529
+			date( 'G:i A', strtotime( " +" . rand( 4, 24 ) . " hours" ) )
530 530
 		);
531 531
 
532 532
 		return apply_filters( "tc_time_data", $times[ rand( 0, 6 ) ] );
@@ -541,7 +541,7 @@  discard block
 block discarded – undo
541 541
 	 *
542 542
 	 * @return string Timezone
543 543
 	 */
544
-	public static function timezone(){
544
+	public static function timezone() {
545 545
 
546 546
 		$timezones = array(
547 547
 			'America/Denver',
@@ -572,7 +572,7 @@  discard block
 block discarded – undo
572 572
 	 *
573 573
 	 * @return string Phone #.
574 574
 	 */
575
-	public static function phone(){
575
+	public static function phone() {
576 576
 
577 577
 		$phone_numbers = array(
578 578
 			'7203893101',
@@ -600,11 +600,11 @@  discard block
 block discarded – undo
600 600
 	 *
601 601
 	 * @return string Email address.
602 602
 	 */
603
-	public static function email( $superrandom = false ){
603
+	public static function email( $superrandom = false ) {
604 604
 
605 605
 		// In certain situations we need to ensure that the email is never
606 606
 		// duplicated, like in creating new users.
607
-		if ( $superrandom !== false ){
607
+		if ( $superrandom !== false ) {
608 608
 			$user = $domain = '';
609 609
 
610 610
 			$tlds = array(
@@ -622,11 +622,11 @@  discard block
 block discarded – undo
622 622
 			$user_length = mt_rand( 5, 20 );
623 623
 		    $domain_length = mt_rand( 7, 12 );
624 624
 
625
-			for ( $i = 1; $i <= $user_length; $i++ ){
625
+			for ( $i = 1; $i <= $user_length; $i++ ) {
626 626
 				$user .= substr( $char, mt_rand( 0, strlen( $char ) ), 1 );
627 627
 			}
628 628
 
629
-			for ( $i = 1; $i <= $domain_length; $i++ ){
629
+			for ( $i = 1; $i <= $domain_length; $i++ ) {
630 630
 				$domain .= substr( $char, mt_rand( 0, strlen( $char ) ), 1 );
631 631
 			}
632 632
 
@@ -666,7 +666,7 @@  discard block
 block discarded – undo
666 666
 	 *
667 667
 	 * @return string URL.
668 668
 	 */
669
-	public static function link(){
669
+	public static function link() {
670 670
 
671 671
 		$links = array(
672 672
 			'http://google.com',
@@ -690,7 +690,7 @@  discard block
 block discarded – undo
690 690
 	 *
691 691
 	 * @return string URL.
692 692
 	 */
693
-	public static function oembed(){
693
+	public static function oembed() {
694 694
 
695 695
 		$links = array(
696 696
 			'https://www.youtube.com/watch?v=A85-YQsm6pY',
@@ -715,10 +715,10 @@  discard block
 block discarded – undo
715 715
 	 * @param	string $type Video service to get link from
716 716
 	 * @return	string URL.
717 717
 	 */
718
-	public static function video( $type ){
718
+	public static function video( $type ) {
719 719
 
720 720
 		// Switch through our video types. Expecting to add more in the future
721
-		switch( $type ){
721
+		switch ( $type ) {
722 722
 
723 723
 			// YouTube videos
724 724
 			case 'youtube' :
@@ -770,7 +770,7 @@  discard block
 block discarded – undo
770 770
 	 *
771 771
 	 * @return array Randomly strung together name.
772 772
 	 */
773
-	public static function name(){
773
+	public static function name() {
774 774
 
775 775
 		$first_names = array(
776 776
 			'Jacqui',
@@ -832,7 +832,7 @@  discard block
 block discarded – undo
832 832
 	 *
833 833
 	 * @return	string Organization name.
834 834
 	 */
835
-	public static function organization(){
835
+	public static function organization() {
836 836
 
837 837
 		$orgs = array(
838 838
 			'Red Cross',
Please login to merge, or discard this patch.
Braces   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
  * @subpackage Evans
15 15
  * @author     Old Town Media
16 16
  */
17
-class TestContent{
17
+class TestContent {
18 18
 
19 19
 	/**
20 20
 	 * Title function.
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 	 * @param int $num_words Number of words to return.
27 27
 	 * @return string Random title string.
28 28
 	 */
29
-	public static function title( $num_words = '' ){
29
+	public static function title( $num_words = '' ) {
30 30
 
31 31
 		$title = '';
32 32
 
@@ -67,12 +67,12 @@  discard block
 block discarded – undo
67 67
 		);
68 68
 
69 69
 		// If we didn't choose a count, make one
70
-		if ( empty( $num_words ) ){
70
+		if ( empty( $num_words ) ) {
71 71
 			$num_words = rand( 2, 10 );
72 72
 		}
73 73
 
74 74
 		// Pull random words
75
-		for( $i = 1; $i <= $num_words; $i++ ){
75
+		for( $i = 1; $i <= $num_words; $i++ ) {
76 76
 			$title .= $random_words[ rand( 0, 31 ) ] . " ";
77 77
 		}
78 78
 
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
 	 *
90 90
 	 * @return string Paragraph(s) of text.
91 91
 	 */
92
-	public static function paragraphs(){
92
+	public static function paragraphs() {
93 93
 
94 94
 		$content = '';
95 95
 
@@ -351,11 +351,11 @@  discard block
 block discarded – undo
351 351
 		);
352 352
 
353 353
 		$used_keys = array();
354
-		for( $i = 1; $i < 7; $i++ ){
354
+		for( $i = 1; $i < 7; $i++ ) {
355 355
 
356 356
 			// Pull a new random key and make sure we're not repeating any elements
357 357
 			$key = rand( 0, 12 );
358
-			while( in_array( $key, $used_keys ) ){
358
+			while( in_array( $key, $used_keys ) ) {
359 359
 				$key = rand( 0, 12 );
360 360
 			}
361 361
 
@@ -376,7 +376,7 @@  discard block
 block discarded – undo
376 376
 	 *
377 377
 	 * @return string Plain text paragraphs.
378 378
 	 */
379
-	public static function plain_text(){
379
+	public static function plain_text() {
380 380
 
381 381
 		$paragraphs = array(
382 382
 			'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean tincidunt luctus eros, a tincidunt massa aliquet sit amet. Sed faucibus, eros non lacinia porttitor, risus odio efficitur sapien, id porta urna massa ac est. Cras efficitur lacinia magna eget tempus. Fusce ex felis, finibus consectetur mi at, finibus rhoncus augue. In ut tortor lacinia, rutrum mauris vel, maximus tortor. Praesent ac arcu nec eros pharetra tristique. Morbi congue leo sed ipsum fermentum vulputate. Ut nulla eros, porta varius pulvinar eget, bibendum quis dolor. Morbi sed diam eu dui semper ornare nec quis nisl.',
@@ -407,20 +407,20 @@  discard block
 block discarded – undo
407 407
 	 * @param int $post_id Post ID.
408 408
 	 * @return mixed Attachment ID or WP Error.
409 409
 	 */
410
-	public static function image( $post_id ){
410
+	public static function image( $post_id ) {
411 411
 		$file_array = array();
412 412
 
413 413
 		// Get the image from the API
414 414
 		$url = self::get_image_link();
415 415
 
416 416
 		// If the returned string is empty or it's not a string, try again.
417
-		if ( empty( $url ) || !is_string( $url ) ){
417
+		if ( empty( $url ) || !is_string( $url ) ) {
418 418
 
419 419
 			// Try again
420 420
 			$url = self::get_image_link();
421 421
 
422 422
 			// If it fails again, just give up
423
-			if ( empty( $url ) || !is_string( $url ) ){
423
+			if ( empty( $url ) || !is_string( $url ) ) {
424 424
 				return;
425 425
 			}
426 426
 
@@ -461,7 +461,7 @@  discard block
 block discarded – undo
461 461
 	 *
462 462
 	 * @return string Image URL.
463 463
 	 */
464
-	private static function get_image_link(){
464
+	private static function get_image_link() {
465 465
 
466 466
 		// cURL an image API for a completely random photo
467 467
 		$curl = curl_init( "http://www.splashbase.co/api/v1/images/random?images_only=true" );
@@ -485,7 +485,7 @@  discard block
 block discarded – undo
485 485
 		// Check to make sure that the return contains a valid image extensions
486 486
 		preg_match('/[^\?]+\.(jpg|JPG|jpe|JPE|jpeg|JPEG|gif|GIF|png|PNG)/', $response['url'], $matches);
487 487
 
488
-		if ( !empty( $matches ) ){
488
+		if ( !empty( $matches ) ) {
489 489
 			return $response['url'];
490 490
 		}
491 491
 
@@ -500,7 +500,7 @@  discard block
 block discarded – undo
500 500
 	 * @param string $format PHP Date format.
501 501
 	 * @return mixed Date in the format requested.
502 502
 	 */
503
-	public static function date( $format ){
503
+	public static function date( $format ) {
504 504
 
505 505
 		$num_days = rand( 1, 60 );
506 506
 		$date = date( $format, strtotime( " +$num_days days" ) );
@@ -517,7 +517,7 @@  discard block
 block discarded – undo
517 517
 	 *
518 518
 	 * @return string Time string
519 519
 	 */
520
-	public static function time(){
520
+	public static function time() {
521 521
 
522 522
 		$times = array(
523 523
 			'8:00 am',
@@ -541,7 +541,7 @@  discard block
 block discarded – undo
541 541
 	 *
542 542
 	 * @return string Timezone
543 543
 	 */
544
-	public static function timezone(){
544
+	public static function timezone() {
545 545
 
546 546
 		$timezones = array(
547 547
 			'America/Denver',
@@ -572,7 +572,7 @@  discard block
 block discarded – undo
572 572
 	 *
573 573
 	 * @return string Phone #.
574 574
 	 */
575
-	public static function phone(){
575
+	public static function phone() {
576 576
 
577 577
 		$phone_numbers = array(
578 578
 			'7203893101',
@@ -600,11 +600,11 @@  discard block
 block discarded – undo
600 600
 	 *
601 601
 	 * @return string Email address.
602 602
 	 */
603
-	public static function email( $superrandom = false ){
603
+	public static function email( $superrandom = false ) {
604 604
 
605 605
 		// In certain situations we need to ensure that the email is never
606 606
 		// duplicated, like in creating new users.
607
-		if ( $superrandom !== false ){
607
+		if ( $superrandom !== false ) {
608 608
 			$user = $domain = '';
609 609
 
610 610
 			$tlds = array(
@@ -622,11 +622,11 @@  discard block
 block discarded – undo
622 622
 			$user_length = mt_rand( 5, 20 );
623 623
 		    $domain_length = mt_rand( 7, 12 );
624 624
 
625
-			for ( $i = 1; $i <= $user_length; $i++ ){
625
+			for ( $i = 1; $i <= $user_length; $i++ ) {
626 626
 				$user .= substr( $char, mt_rand( 0, strlen( $char ) ), 1 );
627 627
 			}
628 628
 
629
-			for ( $i = 1; $i <= $domain_length; $i++ ){
629
+			for ( $i = 1; $i <= $domain_length; $i++ ) {
630 630
 				$domain .= substr( $char, mt_rand( 0, strlen( $char ) ), 1 );
631 631
 			}
632 632
 
@@ -666,7 +666,7 @@  discard block
 block discarded – undo
666 666
 	 *
667 667
 	 * @return string URL.
668 668
 	 */
669
-	public static function link(){
669
+	public static function link() {
670 670
 
671 671
 		$links = array(
672 672
 			'http://google.com',
@@ -690,7 +690,7 @@  discard block
 block discarded – undo
690 690
 	 *
691 691
 	 * @return string URL.
692 692
 	 */
693
-	public static function oembed(){
693
+	public static function oembed() {
694 694
 
695 695
 		$links = array(
696 696
 			'https://www.youtube.com/watch?v=A85-YQsm6pY',
@@ -715,10 +715,10 @@  discard block
 block discarded – undo
715 715
 	 * @param	string $type Video service to get link from
716 716
 	 * @return	string URL.
717 717
 	 */
718
-	public static function video( $type ){
718
+	public static function video( $type ) {
719 719
 
720 720
 		// Switch through our video types. Expecting to add more in the future
721
-		switch( $type ){
721
+		switch( $type ) {
722 722
 
723 723
 			// YouTube videos
724 724
 			case 'youtube' :
@@ -770,7 +770,7 @@  discard block
 block discarded – undo
770 770
 	 *
771 771
 	 * @return array Randomly strung together name.
772 772
 	 */
773
-	public static function name(){
773
+	public static function name() {
774 774
 
775 775
 		$first_names = array(
776 776
 			'Jacqui',
@@ -832,7 +832,7 @@  discard block
 block discarded – undo
832 832
 	 *
833 833
 	 * @return	string Organization name.
834 834
 	 */
835
-	public static function organization(){
835
+	public static function organization() {
836 836
 
837 837
 		$orgs = array(
838 838
 			'Red Cross',
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -466,7 +466,7 @@
 block discarded – undo
466 466
 		// cURL an image API for a completely random photo
467 467
 		$curl = curl_init( "http://www.splashbase.co/api/v1/images/random?images_only=true" );
468 468
 
469
-		curl_setopt( $curl, CURLOPT_RETURNTRANSFER, TRUE );
469
+		curl_setopt( $curl, CURLOPT_RETURNTRANSFER, true );
470 470
 
471 471
 		$curl_response = curl_exec( $curl );
472 472
 
Please login to merge, or discard this patch.
includes/class-admin-page.php 3 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -130,8 +130,8 @@
 block discarded – undo
130 130
 		} else {
131 131
 			// We didn't get a reponse so print the notice out
132 132
 			echo '<div class="notice notice-error">';
133
-		        echo '<p>'.__( 'WordPress could not connect to Splashbase and therefore images will not pull into metaboxes/thumbnails. Turn Airplane Mode off or reconnect to the Internet to get images when creating test data.', 'dummybot' ).'</p>';
134
-		    echo '</div>';
133
+				echo '<p>'.__( 'WordPress could not connect to Splashbase and therefore images will not pull into metaboxes/thumbnails. Turn Airplane Mode off or reconnect to the Internet to get images when creating test data.', 'dummybot' ).'</p>';
134
+			echo '</div>';
135 135
 		}
136 136
 
137 137
 	}
Please login to merge, or discard this patch.
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
  * @subpackage Evans
9 9
  * @author     Old Town Media
10 10
  */
11
-class AdminPage{
11
+class AdminPage {
12 12
 
13 13
 	/**
14 14
 	 * plugin
@@ -45,14 +45,14 @@  discard block
 block discarded – undo
45 45
 	 *
46 46
 	 * @see admin_menu, wp_ajax actions
47 47
 	 */
48
-	public function hooks(){
48
+	public function hooks() {
49 49
 
50 50
 		$connection = new ConnectionTest;
51
-		$this->definitions	= $this->plugin->get_definitions();
52
-		$this->connected	= $connection->test();
51
+		$this->definitions = $this->plugin->get_definitions();
52
+		$this->connected = $connection->test();
53 53
 
54
-		add_action( 'admin_menu' , array( $this, 'add_menu_item' ) );
55
-		add_filter( 'plugin_action_links_' . $this->definitions->basename , array( $this, 'add_settings_link' ) );
54
+		add_action( 'admin_menu', array( $this, 'add_menu_item' ) );
55
+		add_filter( 'plugin_action_links_' . $this->definitions->basename, array( $this, 'add_settings_link' ) );
56 56
 		add_action( 'admin_notices', array( $this, 'internet_connected_admin_notice' ) );
57 57
 
58 58
 	}
@@ -113,13 +113,13 @@  discard block
 block discarded – undo
113 113
 	 * Internet, and the test fails displays a notice informing the user that
114 114
 	 * images will not pull into test data.
115 115
 	 */
116
-	public function internet_connected_admin_notice(){
116
+	public function internet_connected_admin_notice() {
117 117
 
118 118
 		// Get the current admin screen & verify that we're on the right one
119 119
 		// before continuing.
120 120
 		$screen = get_current_screen();
121 121
 
122
-		if ( $screen->base != 'tools_page_create-test-data' ){
122
+		if ( $screen->base != 'tools_page_create-test-data' ) {
123 123
 			return;
124 124
 		}
125 125
 
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
 		} else {
131 131
 			// We didn't get a reponse so print the notice out
132 132
 			echo '<div class="notice notice-error">';
133
-		        echo '<p>'.__( 'WordPress could not connect to Splashbase and therefore images will not pull into metaboxes/thumbnails. Turn Airplane Mode off or reconnect to the Internet to get images when creating test data.', 'dummybot' ).'</p>';
133
+		        echo '<p>' . __( 'WordPress could not connect to Splashbase and therefore images will not pull into metaboxes/thumbnails. Turn Airplane Mode off or reconnect to the Internet to get images when creating test data.', 'dummybot' ) . '</p>';
134 134
 		    echo '</div>';
135 135
 		}
136 136
 
@@ -140,10 +140,10 @@  discard block
 block discarded – undo
140 140
 	/**
141 141
 	 * Load our script in the admin section and serve in data.
142 142
 	 */
143
-	public function load_scripts(){
143
+	public function load_scripts() {
144 144
 
145
-		wp_enqueue_script( 'test-content-js', plugins_url( 'assets/admin.js' , dirname( __FILE__ ) ) );
146
-		wp_enqueue_style( 'test-content-css', plugins_url( 'assets/admin.css' , dirname( __FILE__ ) ) );
145
+		wp_enqueue_script( 'test-content-js', plugins_url( 'assets/admin.js', dirname( __FILE__ ) ) );
146
+		wp_enqueue_style( 'test-content-css', plugins_url( 'assets/admin.css', dirname( __FILE__ ) ) );
147 147
 
148 148
 		$data = array(
149 149
 			'nonce'			=> wp_create_nonce( 'handle-test-data' ),
@@ -162,10 +162,10 @@  discard block
 block discarded – undo
162 162
 	/**
163 163
 	 * Print out our admin page to control test data.
164 164
 	 */
165
-	public function admin_page(){
165
+	public function admin_page() {
166 166
 		echo '<div class="wrap" id="options_editor">' . "\n";
167 167
 
168
-			echo '<h2>' . __( 'Create Test Data' , 'dummybot' ) . '</h2>' . "\n";
168
+			echo '<h2>' . __( 'Create Test Data', 'dummybot' ) . '</h2>' . "\n";
169 169
 
170 170
 			echo "<div class='nav-tab-wrapper'>";
171 171
 
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
 
180 180
 			echo "";
181 181
 
182
-			echo "<input type='hidden' id='connection-status' value='".$this->connected."'>";
182
+			echo "<input type='hidden' id='connection-status' value='" . $this->connected . "'>";
183 183
 
184 184
 			echo "<pre class='test-data-status-box' id='status-updates'></pre>";
185 185
 
Please login to merge, or discard this patch.
Braces   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
  * @subpackage Evans
9 9
  * @author     Old Town Media
10 10
  */
11
-class AdminPage{
11
+class AdminPage {
12 12
 
13 13
 	/**
14 14
 	 * plugin
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
 	 *
46 46
 	 * @see admin_menu, wp_ajax actions
47 47
 	 */
48
-	public function hooks(){
48
+	public function hooks() {
49 49
 
50 50
 		$connection = new ConnectionTest;
51 51
 		$this->definitions	= $this->plugin->get_definitions();
@@ -113,13 +113,13 @@  discard block
 block discarded – undo
113 113
 	 * Internet, and the test fails displays a notice informing the user that
114 114
 	 * images will not pull into test data.
115 115
 	 */
116
-	public function internet_connected_admin_notice(){
116
+	public function internet_connected_admin_notice() {
117 117
 
118 118
 		// Get the current admin screen & verify that we're on the right one
119 119
 		// before continuing.
120 120
 		$screen = get_current_screen();
121 121
 
122
-		if ( $screen->base != 'tools_page_create-test-data' ){
122
+		if ( $screen->base != 'tools_page_create-test-data' ) {
123 123
 			return;
124 124
 		}
125 125
 
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
 	/**
141 141
 	 * Load our script in the admin section and serve in data.
142 142
 	 */
143
-	public function load_scripts(){
143
+	public function load_scripts() {
144 144
 
145 145
 		wp_enqueue_script( 'test-content-js', plugins_url( 'assets/admin.js' , dirname( __FILE__ ) ) );
146 146
 		wp_enqueue_style( 'test-content-css', plugins_url( 'assets/admin.css' , dirname( __FILE__ ) ) );
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
 	/**
163 163
 	 * Print out our admin page to control test data.
164 164
 	 */
165
-	public function admin_page(){
165
+	public function admin_page() {
166 166
 		echo '<div class="wrap" id="options_editor">' . "\n";
167 167
 
168 168
 			echo '<h2>' . __( 'Create Test Data' , 'dummybot' ) . '</h2>' . "\n";
Please login to merge, or discard this patch.
includes/class-plugin.php 4 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
 	 * @see load_plugin_textdomain
95 95
 	 */
96 96
 	public function load_textdomain() {
97
-	    load_plugin_textdomain( 'dummybot', FALSE, basename( dirname( $this->definitions->file ) ) . '/languages/' );
97
+		load_plugin_textdomain( 'dummybot', FALSE, basename( dirname( $this->definitions->file ) ) . '/languages/' );
98 98
 	}
99 99
 
100 100
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
  * @subpackage Evans
9 9
  * @author     Old Town Media
10 10
  */
11
-class Plugin{
11
+class Plugin {
12 12
 
13 13
 	/**
14 14
 	 * Plugin definitions.
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
  * @subpackage Evans
9 9
  * @author     Old Town Media
10 10
  */
11
-class Plugin{
11
+class Plugin {
12 12
 
13 13
 	/**
14 14
 	 * Plugin definitions.
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
 	 * @see load_plugin_textdomain
95 95
 	 */
96 96
 	public function load_textdomain() {
97
-	    load_plugin_textdomain( 'dummybot', FALSE, basename( dirname( $this->definitions->file ) ) . '/languages/' );
97
+	    load_plugin_textdomain( 'dummybot', false, basename( dirname( $this->definitions->file ) ) . '/languages/' );
98 98
 	}
99 99
 
100 100
 }
Please login to merge, or discard this patch.
types/term.php 3 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -166,20 +166,20 @@
 block discarded – undo
166 166
 
167 167
 		// Query for our terms
168 168
 		$args = array(
169
-		    'hide_empty' => false,
170
-		    'meta_query' => array(
169
+			'hide_empty' => false,
170
+			'meta_query' => array(
171 171
 				'relation'		=> 'OR',
172
-		        array(
173
-		           'key'       => 'dummypress_test_data',
174
-		           'value'     => '__test__',
175
-		           'compare'   => '='
172
+				array(
173
+				   'key'       => 'dummypress_test_data',
174
+				   'value'     => '__test__',
175
+				   'compare'   => '='
176 176
 			   ),
177 177
 			   array(
178 178
 				  'key'       => 'evans_test_content',
179 179
 				  'value'     => '__test__',
180 180
 				  'compare'   => '='
181 181
 			  ),
182
-		    )
182
+			)
183 183
 		);
184 184
 
185 185
 		$terms = get_terms( $slug, $args );
Please login to merge, or discard this patch.
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
  * @subpackage Evans
13 13
  * @author     Old Town Media
14 14
  */
15
-class Term extends Abs\Type{
15
+class Term extends Abs\Type {
16 16
 
17 17
 	/**
18 18
 	 * type
@@ -37,10 +37,10 @@  discard block
 block discarded – undo
37 37
 	 * @param string $slug a custom post type ID.
38 38
 	 * @param int $num Optional. Number of posts to create.
39 39
 	 */
40
-	public function create_objects( $slug, $connection, $num = '' ){
40
+	public function create_objects( $slug, $connection, $num = '' ) {
41 41
 
42 42
 		// If we're missing a custom post type id - don't do anything
43
-		if ( empty( $slug ) ){
43
+		if ( empty( $slug ) ) {
44 44
 			return;
45 45
 		}
46 46
 
@@ -48,12 +48,12 @@  discard block
 block discarded – undo
48 48
 		$this->connected = $connection;
49 49
 
50 50
 		// If we forgot to put in a quantity, make one for us
51
-		if ( empty( $num ) ){
51
+		if ( empty( $num ) ) {
52 52
 			$num = rand( 5, 30 );
53 53
 		}
54 54
 
55 55
 		// Create test terms
56
-		for( $i = 0; $i < $num; $i++ ){
56
+		for ( $i = 0; $i < $num; $i++ ) {
57 57
 
58 58
 			$return = $this->create_test_object( $slug );
59 59
 
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
 	 *
78 78
 	 * @param string $slug a custom post type ID.
79 79
 	 */
80
-	private function create_test_object( $slug ){
80
+	private function create_test_object( $slug ) {
81 81
 
82 82
 		// Get a random title
83 83
 		$title = apply_filters( "tc_{$slug}_term_title", TestContent::title() );
@@ -93,20 +93,20 @@  discard block
 block discarded – undo
93 93
 		);
94 94
 
95 95
 		// Then, set a test content flag on the new post for later deletion
96
-		add_term_meta( $return['term_id'], 'dummypress_test_data', '__test__', true );
96
+		add_term_meta( $return[ 'term_id' ], 'dummypress_test_data', '__test__', true );
97 97
 
98 98
 		// Check if we have errors and return them or created message
99
-		if ( is_wp_error( $return ) ){
99
+		if ( is_wp_error( $return ) ) {
100 100
 			error_log( $return->get_error_message() );
101 101
 			return $return;
102 102
 		} else {
103 103
 			return array(
104 104
 				'action'	=> 'created',
105 105
 				'object'	=> 'term',
106
-				'oid'		=> $return['term_id'],
106
+				'oid'		=> $return[ 'term_id' ],
107 107
 				'type'		=> $slug,
108
-				'link_edit'	=> admin_url( '/edit-tags.php?action=edit&taxonomy='.$slug.'&tag_ID='.$return['term_id'] ),
109
-				'link_view'	=> get_term_link( $return['term_id'] )
108
+				'link_edit'	=> admin_url( '/edit-tags.php?action=edit&taxonomy=' . $slug . '&tag_ID=' . $return[ 'term_id' ] ),
109
+				'link_view'	=> get_term_link( $return[ 'term_id' ] )
110 110
 			);
111 111
 		}
112 112
 
@@ -119,12 +119,12 @@  discard block
 block discarded – undo
119 119
 	 *
120 120
 	 * @see Delete
121 121
 	 */
122
-	public function delete_all(){
122
+	public function delete_all() {
123 123
 
124
-		$delete =  new Delete;
124
+		$delete = new Delete;
125 125
 
126 126
 		// Make sure that the current user is logged in & has full permissions.
127
-		if ( ! $delete->user_can_delete() ){
127
+		if ( ! $delete->user_can_delete() ) {
128 128
 			return;
129 129
 		}
130 130
 
@@ -150,17 +150,17 @@  discard block
 block discarded – undo
150 150
 	 *
151 151
 	 * @param string $slug a custom post type ID.
152 152
 	 */
153
-	public function delete( $slug ){
153
+	public function delete( $slug ) {
154 154
 
155
-		$delete =  new Delete;
155
+		$delete = new Delete;
156 156
 
157 157
 		// Make sure that the current user is logged in & has full permissions.
158
-		if ( !$delete->user_can_delete() ){
158
+		if ( ! $delete->user_can_delete() ) {
159 159
 			return;
160 160
 		}
161 161
 
162 162
 		// Check that $cptslg has a string.
163
-		if ( empty( $slug ) ){
163
+		if ( empty( $slug ) ) {
164 164
 			return;
165 165
 		}
166 166
 
@@ -184,18 +184,18 @@  discard block
 block discarded – undo
184 184
 
185 185
 		$terms = get_terms( $slug, $args );
186 186
 
187
-		if ( !empty( $terms ) ){
187
+		if ( ! empty( $terms ) ) {
188 188
 
189 189
 			$events = array();
190 190
 
191
-			foreach ( $terms as $term ){
191
+			foreach ( $terms as $term ) {
192 192
 
193 193
 				// Double check our set user meta value
194
-				if ( '__test__' != get_term_meta( $term->term_id, 'dummypress_test_data', true ) && '__test__' != get_term_meta( $term->term_id, 'evans_test_content', true ) ){
194
+				if ( '__test__' != get_term_meta( $term->term_id, 'dummypress_test_data', true ) && '__test__' != get_term_meta( $term->term_id, 'evans_test_content', true ) ) {
195 195
 					continue;
196 196
 				}
197 197
 
198
-				$events[] = array(
198
+				$events[ ] = array(
199 199
 					'action'	=> 'deleted',
200 200
 					'oid'		=> $term->term_id,
201 201
 					'type'		=> $slug,
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
 
210 210
 			$taxonomy = get_taxonomy( $slug );
211 211
 
212
-			$events[] = array(
212
+			$events[ ] = array(
213 213
 				'action'	=> 'general',
214 214
 				'message'	=> __( 'Deleted', 'dummybot' ) . ' ' . $taxonomy->labels->name
215 215
 			);
Please login to merge, or discard this patch.
Braces   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
  * @subpackage Evans
13 13
  * @author     Old Town Media
14 14
  */
15
-class Term extends Abs\Type{
15
+class Term extends Abs\Type {
16 16
 
17 17
 	/**
18 18
 	 * type
@@ -37,10 +37,10 @@  discard block
 block discarded – undo
37 37
 	 * @param string $slug a custom post type ID.
38 38
 	 * @param int $num Optional. Number of posts to create.
39 39
 	 */
40
-	public function create_objects( $slug, $connection, $num = '' ){
40
+	public function create_objects( $slug, $connection, $num = '' ) {
41 41
 
42 42
 		// If we're missing a custom post type id - don't do anything
43
-		if ( empty( $slug ) ){
43
+		if ( empty( $slug ) ) {
44 44
 			return;
45 45
 		}
46 46
 
@@ -48,12 +48,12 @@  discard block
 block discarded – undo
48 48
 		$this->connected = $connection;
49 49
 
50 50
 		// If we forgot to put in a quantity, make one for us
51
-		if ( empty( $num ) ){
51
+		if ( empty( $num ) ) {
52 52
 			$num = rand( 5, 30 );
53 53
 		}
54 54
 
55 55
 		// Create test terms
56
-		for( $i = 0; $i < $num; $i++ ){
56
+		for( $i = 0; $i < $num; $i++ ) {
57 57
 
58 58
 			$return = $this->create_test_object( $slug );
59 59
 
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
 	 *
78 78
 	 * @param string $slug a custom post type ID.
79 79
 	 */
80
-	private function create_test_object( $slug ){
80
+	private function create_test_object( $slug ) {
81 81
 
82 82
 		// Get a random title
83 83
 		$title = apply_filters( "tc_{$slug}_term_title", TestContent::title() );
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 		add_term_meta( $return['term_id'], 'dummypress_test_data', '__test__', true );
97 97
 
98 98
 		// Check if we have errors and return them or created message
99
-		if ( is_wp_error( $return ) ){
99
+		if ( is_wp_error( $return ) ) {
100 100
 			error_log( $return->get_error_message() );
101 101
 			return $return;
102 102
 		} else {
@@ -119,12 +119,12 @@  discard block
 block discarded – undo
119 119
 	 *
120 120
 	 * @see Delete
121 121
 	 */
122
-	public function delete_all(){
122
+	public function delete_all() {
123 123
 
124 124
 		$delete =  new Delete;
125 125
 
126 126
 		// Make sure that the current user is logged in & has full permissions.
127
-		if ( ! $delete->user_can_delete() ){
127
+		if ( ! $delete->user_can_delete() ) {
128 128
 			return;
129 129
 		}
130 130
 
@@ -150,17 +150,17 @@  discard block
 block discarded – undo
150 150
 	 *
151 151
 	 * @param string $slug a custom post type ID.
152 152
 	 */
153
-	public function delete( $slug ){
153
+	public function delete( $slug ) {
154 154
 
155 155
 		$delete =  new Delete;
156 156
 
157 157
 		// Make sure that the current user is logged in & has full permissions.
158
-		if ( !$delete->user_can_delete() ){
158
+		if ( !$delete->user_can_delete() ) {
159 159
 			return;
160 160
 		}
161 161
 
162 162
 		// Check that $cptslg has a string.
163
-		if ( empty( $slug ) ){
163
+		if ( empty( $slug ) ) {
164 164
 			return;
165 165
 		}
166 166
 
@@ -184,14 +184,14 @@  discard block
 block discarded – undo
184 184
 
185 185
 		$terms = get_terms( $slug, $args );
186 186
 
187
-		if ( !empty( $terms ) ){
187
+		if ( !empty( $terms ) ) {
188 188
 
189 189
 			$events = array();
190 190
 
191
-			foreach ( $terms as $term ){
191
+			foreach ( $terms as $term ) {
192 192
 
193 193
 				// Double check our set user meta value
194
-				if ( '__test__' != get_term_meta( $term->term_id, 'dummypress_test_data', true ) && '__test__' != get_term_meta( $term->term_id, 'evans_test_content', true ) ){
194
+				if ( '__test__' != get_term_meta( $term->term_id, 'dummypress_test_data', true ) && '__test__' != get_term_meta( $term->term_id, 'evans_test_content', true ) ) {
195 195
 					continue;
196 196
 				}
197 197
 
Please login to merge, or discard this patch.
types/user.php 3 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
 		global $wp_roles;
138 138
 		$clean_roles = array();
139 139
 
140
-	    $role_names = $wp_roles->get_names();
140
+		$role_names = $wp_roles->get_names();
141 141
 		$flipped = array_flip( $role_names );
142 142
 
143 143
 		// Loop through all available roles
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
 		$post_types = get_post_types( array( 'public' => true ), 'objects' );
184 184
 		foreach ( $post_types as $post_type ) :
185 185
 
186
-		    $this->delete( $post_type->name );
186
+			$this->delete( $post_type->name );
187 187
 
188 188
 		endforeach;
189 189
 
@@ -228,10 +228,10 @@  discard block
 block discarded – undo
228 228
 			'number'		=> 500,
229 229
 			'meta_query' 	=> array(
230 230
 				'relation'		=> 'OR',
231
-		        array(
232
-		           'key'       => 'dummypress_test_data',
233
-		           'value'     => '__test__',
234
-		           'compare'   => '='
231
+				array(
232
+				   'key'       => 'dummypress_test_data',
233
+				   'value'     => '__test__',
234
+				   'compare'   => '='
235 235
 			   ),
236 236
 			   array(
237 237
 				  'key'       => 'evans_test_content',
Please login to merge, or discard this patch.
Spacing   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
  * @subpackage Evans
14 14
  * @author     Old Town Media
15 15
  */
16
-class User extends Abs\Type{
16
+class User extends Abs\Type {
17 17
 
18 18
 	/**
19 19
 	 * type
@@ -39,10 +39,10 @@  discard block
 block discarded – undo
39 39
 	 * @param boolean $connection Whether or not we're connected to the Internet.
40 40
 	 * @param int $num Optional. Number of posts to create.
41 41
 	 */
42
-	public function create_objects( $slug, $connection, $num = '' ){
42
+	public function create_objects( $slug, $connection, $num = '' ) {
43 43
 
44 44
 		// If we're missing a custom post type id - don't do anything
45
-		if ( empty( $slug ) ){
45
+		if ( empty( $slug ) ) {
46 46
 			return;
47 47
 		}
48 48
 
@@ -50,12 +50,12 @@  discard block
 block discarded – undo
50 50
 		$this->connected = $connection;
51 51
 
52 52
 		// If we forgot to put in a quantity, make one for us
53
-		if ( empty( $num ) ){
53
+		if ( empty( $num ) ) {
54 54
 			$num = rand( 5, 30 );
55 55
 		}
56 56
 
57 57
 		// Create test posts
58
-		for( $i = 0; $i < $num; $i++ ){
58
+		for ( $i = 0; $i < $num; $i++ ) {
59 59
 
60 60
 			$return = $this->create_test_object( $slug );
61 61
 
@@ -79,9 +79,9 @@  discard block
 block discarded – undo
79 79
 	 *
80 80
 	 * @param string $slug a custom post type ID.
81 81
 	 */
82
-	private function create_test_object( $slug ){
82
+	private function create_test_object( $slug ) {
83 83
 
84
-		if ( !is_user_logged_in() ){
84
+		if ( ! is_user_logged_in() ) {
85 85
 			return false;
86 86
 		}
87 87
 
@@ -90,11 +90,11 @@  discard block
 block discarded – undo
90 90
 		// First, insert our post
91 91
 		$userdata = array(
92 92
 			'user_pass'			=> wp_generate_password( 12, true, true ),
93
-			'user_login'		=> strtolower( $name['first'] . $name['last'] ) . rand( 10, 100 ),
93
+			'user_login'		=> strtolower( $name[ 'first' ] . $name[ 'last' ] ) . rand( 10, 100 ),
94 94
 			'user_email'		=> apply_filters( "tc_{$slug}_user_email", TestContent::email( true ) ),
95
-			'display_name'		=> strtolower( $name['first'] . $name['last'] ),
96
-			'first_name'		=> $name['first'],
97
-			'last_name'			=> $name['last'],
95
+			'display_name'		=> strtolower( $name[ 'first' ] . $name[ 'last' ] ),
96
+			'first_name'		=> $name[ 'first' ],
97
+			'last_name'			=> $name[ 'last' ],
98 98
 			'description'		=> TestContent::title(),
99 99
 			'user_registered'	=> date( 'Y-m-d H:i:s' ),
100 100
 			'role'				=> $slug,
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
 		add_user_meta( $user_id, 'dummypress_test_data', '__test__', true );
108 108
 
109 109
 		// Check if we have errors and return them or created message
110
-		if ( is_wp_error( $user_id ) ){
110
+		if ( is_wp_error( $user_id ) ) {
111 111
 			error_log( $user_id->get_error_message() );
112 112
 			return $user_id;
113 113
 		} else {
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
 	 *
134 134
 	 * @return array Array of roles for use in creation and deletion
135 135
 	 */
136
-	public function get_roles(){
136
+	public function get_roles() {
137 137
 		global $wp_roles;
138 138
 		$clean_roles = array();
139 139
 
@@ -147,15 +147,15 @@  discard block
 block discarded – undo
147 147
 			'Administrator'
148 148
 		);
149 149
 
150
-		foreach ( $roles as $role ){
150
+		foreach ( $roles as $role ) {
151 151
 
152
-			if ( in_array( $role['name'], $skipped_roles ) ){
152
+			if ( in_array( $role[ 'name' ], $skipped_roles ) ) {
153 153
 				continue;
154 154
 			}
155 155
 
156
-			$clean_roles[] = array(
157
-				'name'	=> $role['name'],
158
-				'slug'	=> $flipped[ $role['name'] ]
156
+			$clean_roles[ ] = array(
157
+				'name'	=> $role[ 'name' ],
158
+				'slug'	=> $flipped[ $role[ 'name' ] ]
159 159
 			);
160 160
 
161 161
 		}
@@ -170,12 +170,12 @@  discard block
 block discarded – undo
170 170
 	 *
171 171
 	 * @see Delete
172 172
 	 */
173
-	public function delete_all(){
173
+	public function delete_all() {
174 174
 
175
-		$delete =  new Delete;
175
+		$delete = new Delete;
176 176
 
177 177
 		// Make sure that the current user is logged in & has full permissions.
178
-		if ( ! $delete->user_can_delete() ){
178
+		if ( ! $delete->user_can_delete() ) {
179 179
 			return;
180 180
 		}
181 181
 
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
 		// Loop through all user roles and remove any data
191 191
 		foreach ( $this->get_roles() as $role ) :
192 192
 
193
-			$this->delete( $role['slug'] );
193
+			$this->delete( $role[ 'slug' ] );
194 194
 
195 195
 		endforeach;
196 196
 
@@ -208,17 +208,17 @@  discard block
 block discarded – undo
208 208
 	 *
209 209
 	 * @param string $slug a custom post type ID.
210 210
 	 */
211
-	public function delete( $slug ){
211
+	public function delete( $slug ) {
212 212
 
213 213
 		$delete = new Delete;
214 214
 
215 215
 		// Make sure that the current user is logged in & has full permissions.
216
-		if ( !$delete->user_can_delete() ){
216
+		if ( ! $delete->user_can_delete() ) {
217 217
 			return;
218 218
 		}
219 219
 
220 220
 		// Check that $cptslg has a string.
221
-		if ( empty( $slug ) ){
221
+		if ( empty( $slug ) ) {
222 222
 			return;
223 223
 		}
224 224
 
@@ -242,25 +242,25 @@  discard block
 block discarded – undo
242 242
 		);
243 243
 
244 244
 		$objects = new \WP_User_Query( $query );
245
-		$users	 = $objects->get_results();
245
+		$users = $objects->get_results();
246 246
 
247
-		if ( !empty( $users ) ){
247
+		if ( ! empty( $users ) ) {
248 248
 
249 249
 			$events = array();
250 250
 
251
-			foreach ( $users as $user ){
251
+			foreach ( $users as $user ) {
252 252
 
253 253
 				// Make sure we can't delete ourselves by accident
254
-				if ( $user->ID == get_current_user_id() ){
254
+				if ( $user->ID == get_current_user_id() ) {
255 255
 					continue;
256 256
 				}
257 257
 
258 258
 				// Double check our set user meta value
259
-				if ( '__test__' != get_user_meta( $user->ID, 'dummypress_test_data', true ) && '__test__' != get_user_meta( $user->ID, 'evans_test_content', true ) ){
259
+				if ( '__test__' != get_user_meta( $user->ID, 'dummypress_test_data', true ) && '__test__' != get_user_meta( $user->ID, 'evans_test_content', true ) ) {
260 260
 					continue;
261 261
 				}
262 262
 
263
-				$events[] = array(
263
+				$events[ ] = array(
264 264
 					'action'	=> 'deleted',
265 265
 					'oid'		=> $user->ID,
266 266
 					'type'		=> $slug,
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
 
273 273
 			}
274 274
 
275
-			$events[] = array(
275
+			$events[ ] = array(
276 276
 				'action'	=> 'general',
277 277
 				'message'	=> __( 'Deleted', 'dummybot' ) . ' ' . $slug
278 278
 			);
Please login to merge, or discard this patch.
Braces   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
  * @subpackage Evans
14 14
  * @author     Old Town Media
15 15
  */
16
-class User extends Abs\Type{
16
+class User extends Abs\Type {
17 17
 
18 18
 	/**
19 19
 	 * type
@@ -39,10 +39,10 @@  discard block
 block discarded – undo
39 39
 	 * @param boolean $connection Whether or not we're connected to the Internet.
40 40
 	 * @param int $num Optional. Number of posts to create.
41 41
 	 */
42
-	public function create_objects( $slug, $connection, $num = '' ){
42
+	public function create_objects( $slug, $connection, $num = '' ) {
43 43
 
44 44
 		// If we're missing a custom post type id - don't do anything
45
-		if ( empty( $slug ) ){
45
+		if ( empty( $slug ) ) {
46 46
 			return;
47 47
 		}
48 48
 
@@ -50,12 +50,12 @@  discard block
 block discarded – undo
50 50
 		$this->connected = $connection;
51 51
 
52 52
 		// If we forgot to put in a quantity, make one for us
53
-		if ( empty( $num ) ){
53
+		if ( empty( $num ) ) {
54 54
 			$num = rand( 5, 30 );
55 55
 		}
56 56
 
57 57
 		// Create test posts
58
-		for( $i = 0; $i < $num; $i++ ){
58
+		for( $i = 0; $i < $num; $i++ ) {
59 59
 
60 60
 			$return = $this->create_test_object( $slug );
61 61
 
@@ -79,9 +79,9 @@  discard block
 block discarded – undo
79 79
 	 *
80 80
 	 * @param string $slug a custom post type ID.
81 81
 	 */
82
-	private function create_test_object( $slug ){
82
+	private function create_test_object( $slug ) {
83 83
 
84
-		if ( !is_user_logged_in() ){
84
+		if ( !is_user_logged_in() ) {
85 85
 			return false;
86 86
 		}
87 87
 
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
 		add_user_meta( $user_id, 'dummypress_test_data', '__test__', true );
108 108
 
109 109
 		// Check if we have errors and return them or created message
110
-		if ( is_wp_error( $user_id ) ){
110
+		if ( is_wp_error( $user_id ) ) {
111 111
 			error_log( $user_id->get_error_message() );
112 112
 			return $user_id;
113 113
 		} else {
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
 	 *
134 134
 	 * @return array Array of roles for use in creation and deletion
135 135
 	 */
136
-	public function get_roles(){
136
+	public function get_roles() {
137 137
 		global $wp_roles;
138 138
 		$clean_roles = array();
139 139
 
@@ -147,9 +147,9 @@  discard block
 block discarded – undo
147 147
 			'Administrator'
148 148
 		);
149 149
 
150
-		foreach ( $roles as $role ){
150
+		foreach ( $roles as $role ) {
151 151
 
152
-			if ( in_array( $role['name'], $skipped_roles ) ){
152
+			if ( in_array( $role['name'], $skipped_roles ) ) {
153 153
 				continue;
154 154
 			}
155 155
 
@@ -170,12 +170,12 @@  discard block
 block discarded – undo
170 170
 	 *
171 171
 	 * @see Delete
172 172
 	 */
173
-	public function delete_all(){
173
+	public function delete_all() {
174 174
 
175 175
 		$delete =  new Delete;
176 176
 
177 177
 		// Make sure that the current user is logged in & has full permissions.
178
-		if ( ! $delete->user_can_delete() ){
178
+		if ( ! $delete->user_can_delete() ) {
179 179
 			return;
180 180
 		}
181 181
 
@@ -208,17 +208,17 @@  discard block
 block discarded – undo
208 208
 	 *
209 209
 	 * @param string $slug a custom post type ID.
210 210
 	 */
211
-	public function delete( $slug ){
211
+	public function delete( $slug ) {
212 212
 
213 213
 		$delete = new Delete;
214 214
 
215 215
 		// Make sure that the current user is logged in & has full permissions.
216
-		if ( !$delete->user_can_delete() ){
216
+		if ( !$delete->user_can_delete() ) {
217 217
 			return;
218 218
 		}
219 219
 
220 220
 		// Check that $cptslg has a string.
221
-		if ( empty( $slug ) ){
221
+		if ( empty( $slug ) ) {
222 222
 			return;
223 223
 		}
224 224
 
@@ -244,19 +244,19 @@  discard block
 block discarded – undo
244 244
 		$objects = new \WP_User_Query( $query );
245 245
 		$users	 = $objects->get_results();
246 246
 
247
-		if ( !empty( $users ) ){
247
+		if ( !empty( $users ) ) {
248 248
 
249 249
 			$events = array();
250 250
 
251
-			foreach ( $users as $user ){
251
+			foreach ( $users as $user ) {
252 252
 
253 253
 				// Make sure we can't delete ourselves by accident
254
-				if ( $user->ID == get_current_user_id() ){
254
+				if ( $user->ID == get_current_user_id() ) {
255 255
 					continue;
256 256
 				}
257 257
 
258 258
 				// Double check our set user meta value
259
-				if ( '__test__' != get_user_meta( $user->ID, 'dummypress_test_data', true ) && '__test__' != get_user_meta( $user->ID, 'evans_test_content', true ) ){
259
+				if ( '__test__' != get_user_meta( $user->ID, 'dummypress_test_data', true ) && '__test__' != get_user_meta( $user->ID, 'evans_test_content', true ) ) {
260 260
 					continue;
261 261
 				}
262 262
 
Please login to merge, or discard this patch.
types/post.php 3 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
 		$post_types = get_post_types( array( 'public' => true ), 'objects' );
287 287
 		foreach ( $post_types as $post_type ) :
288 288
 
289
-		    return $this->delete( $post_type->name );
289
+			return $this->delete( $post_type->name );
290 290
 
291 291
 		endforeach;
292 292
 
@@ -324,10 +324,10 @@  discard block
 block discarded – undo
324 324
 			'posts_per_page'	=> 500,
325 325
 			'meta_query' 		=> array(
326 326
 				'relation'		=> 'OR',
327
-		        array(
328
-		           'key'       => 'dummypress_test_data',
329
-		           'value'     => '__test__',
330
-		           'compare'   => '='
327
+				array(
328
+				   'key'       => 'dummypress_test_data',
329
+				   'value'     => '__test__',
330
+				   'compare'   => '='
331 331
 			   ),
332 332
 			   array(
333 333
 				  'key'       => 'evans_test_content',
Please login to merge, or discard this patch.
Spacing   +42 added lines, -42 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
  * @subpackage Evans
14 14
  * @author     Old Town Media
15 15
  */
16
-class Post extends Abs\Type{
16
+class Post extends Abs\Type {
17 17
 
18 18
 	/**
19 19
 	 * metabox_types
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 	 *
48 48
 	 * @see MetaboxTypes, MetaboxValues
49 49
 	 */
50
-	public function __construct(){
50
+	public function __construct() {
51 51
 
52 52
 		$this->metabox_types = new Main\MetaboxTypes;
53 53
 		$this->metabox_values = new Main\MetaboxValues;
@@ -69,10 +69,10 @@  discard block
 block discarded – undo
69 69
 	 * @param boolean $connection Whether or not we're connected to the Internet.
70 70
 	 * @param int $num Optional. Number of posts to create.
71 71
 	 */
72
-	public function create_objects( $slug, $connection, $num = '' ){
72
+	public function create_objects( $slug, $connection, $num = '' ) {
73 73
 
74 74
 		// If we're missing a custom post type id - don't do anything
75
-		if ( empty( $slug ) ){
75
+		if ( empty( $slug ) ) {
76 76
 			return;
77 77
 		}
78 78
 
@@ -84,12 +84,12 @@  discard block
 block discarded – undo
84 84
 		$this->connected = $connection;
85 85
 
86 86
 		// If we forgot to put in a quantity, make one for us
87
-		if ( empty( $num ) ){
87
+		if ( empty( $num ) ) {
88 88
 			$num = rand( 5, 30 );
89 89
 		}
90 90
 
91 91
 		// Create test posts
92
-		for( $i = 0; $i < $num; $i++ ){
92
+		for ( $i = 0; $i < $num; $i++ ) {
93 93
 
94 94
 			$return = $this->create_test_object( $slug, $supports, $metaboxes );
95 95
 
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
 	 * @param array $supports Features that the post type supports.
116 116
 	 * @param array $supports All CMB2 metaboxes attached to the post type.
117 117
 	 */
118
-	private function create_test_object( $slug, $supports, $metaboxes ){
118
+	private function create_test_object( $slug, $supports, $metaboxes ) {
119 119
 		$return = '';
120 120
 
121 121
 		// Get a random title
@@ -131,18 +131,18 @@  discard block
 block discarded – undo
131 131
 		);
132 132
 
133 133
 		// Add title if supported
134
-		if ( $supports['title'] === true ){
135
-			$post['post_title'] = $title;
134
+		if ( $supports[ 'title' ] === true ) {
135
+			$post[ 'post_title' ] = $title;
136 136
 		}
137 137
 
138 138
 		// Add main content if supported
139
-		if ( $supports['editor'] === true ){
140
-			$post['post_content'] = apply_filters( "tc_{$slug}_post_content", TestContent::paragraphs() );
139
+		if ( $supports[ 'editor' ] === true ) {
140
+			$post[ 'post_content' ] = apply_filters( "tc_{$slug}_post_content", TestContent::paragraphs() );
141 141
 		}
142 142
 
143 143
 		// Add excerpt content if supported
144
-		if ( $supports['excerpt'] === true ){
145
-			$post['post_excerpt'] = apply_filters( "tc_{$slug}_post_excerpt", TestContent::plain_text() );
144
+		if ( $supports[ 'excerpt' ] === true ) {
145
+			$post[ 'post_excerpt' ] = apply_filters( "tc_{$slug}_post_excerpt", TestContent::plain_text() );
146 146
 		}
147 147
 
148 148
 		// Insert then post object
@@ -152,26 +152,26 @@  discard block
 block discarded – undo
152 152
 		add_post_meta( $post_id, 'dummypress_test_data', '__test__', true );
153 153
 
154 154
 		// Add thumbnail if supported
155
-		if ( $this->connected == true && ( $supports['thumbnail'] === true || in_array( $slug, array( 'post', 'page' ) ) ) ){
155
+		if ( $this->connected == true && ( $supports[ 'thumbnail' ] === true || in_array( $slug, array( 'post', 'page' ) ) ) ) {
156 156
 			 update_post_meta( $post_id, '_thumbnail_id', TestContent::image( $post_id ) );
157 157
 		}
158 158
 
159 159
 		$taxonomies = get_object_taxonomies( $slug );
160 160
 
161 161
 		// Assign the post to terms
162
-		if ( !empty( $taxonomies ) ){
162
+		if ( ! empty( $taxonomies ) ) {
163 163
 			$return .= $this->assign_terms( $post_id, $taxonomies );
164 164
 		}
165 165
 
166 166
 		// Spin up metaboxes
167
-		if ( !empty( $metaboxes ) ){
167
+		if ( ! empty( $metaboxes ) ) {
168 168
 			foreach ( $metaboxes as $cmb ) :
169 169
 				$return .= $this->metabox_values->get_values( $post_id, $cmb, $this->connected );
170 170
 			endforeach;
171 171
 		}
172 172
 
173 173
 		// Check if we have errors and return them or created message
174
-		if ( is_wp_error( $post_id ) ){
174
+		if ( is_wp_error( $post_id ) ) {
175 175
 			error_log( $post_id->get_error_message() );
176 176
 			return $post_id;
177 177
 		} else {
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
 				'object'	=> 'post',
181 181
 				'oid'		=> $post_id,
182 182
 				'type'		=> get_post_type( $post_id ),
183
-				'link_edit'	=> admin_url( '/post.php?post='.$post_id.'&action=edit' ),
183
+				'link_edit'	=> admin_url( '/post.php?post=' . $post_id . '&action=edit' ),
184 184
 				'link_view'	=> get_permalink( $post_id ),
185 185
 			);
186 186
 		}
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
 	 * @param string $slug a custom post type ID.
199 199
 	 * @return array Array of necessary supports booleans.
200 200
 	 */
201
-	private function get_cpt_supports( $slug ){
201
+	private function get_cpt_supports( $slug ) {
202 202
 
203 203
 		$supports = array(
204 204
 			'title'		=> post_type_supports( $slug, 'title' ),
@@ -225,21 +225,21 @@  discard block
 block discarded – undo
225 225
 	 * @param array $taxonomies taxonomies assigned to this cpt.
226 226
 	 * @return object WP Error if there is one.
227 227
 	 */
228
-	private function assign_terms( $post_id, $taxonomies ){
228
+	private function assign_terms( $post_id, $taxonomies ) {
229 229
 
230 230
 		// Make sure it's an array & has items
231
-		if ( empty( $taxonomies ) || !is_array( $taxonomies ) ){
231
+		if ( empty( $taxonomies ) || ! is_array( $taxonomies ) ) {
232 232
 			return;
233 233
 		}
234 234
 
235
-		foreach ( $taxonomies as $tax ){
235
+		foreach ( $taxonomies as $tax ) {
236 236
 
237 237
 			// Get the individual terms already existing
238 238
 			$terms = get_terms( $tax, array( 'hide_empty'	=> false ) );
239 239
 			$count = count( $terms ) - 1;
240 240
 
241 241
 			// If there are no terms, skip to the next taxonomy
242
-			if ( empty( $terms ) ){
242
+			if ( empty( $terms ) ) {
243 243
 				continue;
244 244
 			}
245 245
 
@@ -252,13 +252,13 @@  discard block
 block discarded – undo
252 252
 			);
253 253
 
254 254
 			// Set the term data to update
255
-			$post_data['tax_input'][ $tax ] = array( $terms[$index]->term_id );
255
+			$post_data[ 'tax_input' ][ $tax ] = array( $terms[ $index ]->term_id );
256 256
 
257 257
 			// Update the post with the taxonomy info
258 258
 			$return = wp_update_post( $post_data );
259 259
 
260 260
 			// Return the error if it exists
261
-			if ( is_wp_error( $return ) ){
261
+			if ( is_wp_error( $return ) ) {
262 262
 				error_log( $return->get_error_messages() );
263 263
 				return $return->get_error_messages();
264 264
 			}
@@ -273,12 +273,12 @@  discard block
 block discarded – undo
273 273
 	 *
274 274
 	 * @see Delete
275 275
 	 */
276
-	public function delete_all(){
276
+	public function delete_all() {
277 277
 
278
-		$delete =  new Delete;
278
+		$delete = new Delete;
279 279
 
280 280
 		// Make sure that the current user is logged in & has full permissions.
281
-		if ( ! $delete->user_can_delete() ){
281
+		if ( ! $delete->user_can_delete() ) {
282 282
 			return;
283 283
 		}
284 284
 
@@ -304,17 +304,17 @@  discard block
 block discarded – undo
304 304
 	 *
305 305
 	 * @param string $slug a custom post type ID.
306 306
 	 */
307
-	public function delete( $slug ){
307
+	public function delete( $slug ) {
308 308
 
309
-		$delete =  new Delete;
309
+		$delete = new Delete;
310 310
 
311 311
 		// Make sure that the current user is logged in & has full permissions.
312
-		if ( ! $delete->user_can_delete() ){
312
+		if ( ! $delete->user_can_delete() ) {
313 313
 			return;
314 314
 		}
315 315
 
316 316
 		// Check that $cptslg has a string.
317
-		if ( empty( $slug ) ){
317
+		if ( empty( $slug ) ) {
318 318
 			return;
319 319
 		}
320 320
 
@@ -339,7 +339,7 @@  discard block
 block discarded – undo
339 339
 
340 340
 		$objects = new \WP_Query( $query );
341 341
 
342
-		if ( $objects->have_posts() ){
342
+		if ( $objects->have_posts() ) {
343 343
 
344 344
 			$events = array();
345 345
 
@@ -349,11 +349,11 @@  discard block
 block discarded – undo
349 349
 				$this->delete_associated_media( get_the_id() );
350 350
 
351 351
 				// Double check our set user meta value
352
-				if ( '__test__' != get_post_meta( get_the_id(), 'dummypress_test_data', true ) && '__test__' != get_post_meta( get_the_id(), 'evans_test_content', true ) ){
352
+				if ( '__test__' != get_post_meta( get_the_id(), 'dummypress_test_data', true ) && '__test__' != get_post_meta( get_the_id(), 'evans_test_content', true ) ) {
353 353
 					continue;
354 354
 				}
355 355
 
356
-				$events[] = array(
356
+				$events[ ] = array(
357 357
 					'action'	=> 'deleted',
358 358
 					'oid'		=> get_the_id(),
359 359
 					'type'		=> get_post_type( get_the_id() ),
@@ -367,7 +367,7 @@  discard block
 block discarded – undo
367 367
 
368 368
 			$obj = get_post_type_object( $slug );
369 369
 
370
-			$events[] = array(
370
+			$events[ ] = array(
371 371
 				'action'	=> 'general',
372 372
 				'message'	=> __( 'Deleted', 'dummybot' ) . ' ' . $obj->labels->all_items
373 373
 			);
@@ -392,27 +392,27 @@  discard block
 block discarded – undo
392 392
 	 *
393 393
 	 * @param int $pid a custom post type ID.
394 394
 	 */
395
-	private function delete_associated_media( $pid ){
395
+	private function delete_associated_media( $pid ) {
396 396
 
397
-		$delete =  new Delete;
397
+		$delete = new Delete;
398 398
 
399 399
 		// Make sure that the current user is logged in & has full permissions.
400
-		if ( !$delete->user_can_delete() ){
400
+		if ( ! $delete->user_can_delete() ) {
401 401
 			return;
402 402
 		}
403 403
 
404 404
 		// Make sure $pid is, in fact, an ID
405
-		if ( !is_int( $pid ) ){
405
+		if ( ! is_int( $pid ) ) {
406 406
 			return;
407 407
 		}
408 408
 
409 409
 		// Get our images
410 410
 		$media = get_attached_media( 'image', $pid );
411 411
 
412
-		if ( !empty( $media ) ){
412
+		if ( ! empty( $media ) ) {
413 413
 
414 414
 			// Loop through the media & delete each one
415
-			foreach ( $media as $attachment ){
415
+			foreach ( $media as $attachment ) {
416 416
 				wp_delete_attachment( $attachment->ID, true );
417 417
 			}
418 418
 
Please login to merge, or discard this patch.
Braces   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
  * @subpackage Evans
14 14
  * @author     Old Town Media
15 15
  */
16
-class Post extends Abs\Type{
16
+class Post extends Abs\Type {
17 17
 
18 18
 	/**
19 19
 	 * metabox_types
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 	 *
48 48
 	 * @see MetaboxTypes, MetaboxValues
49 49
 	 */
50
-	public function __construct(){
50
+	public function __construct() {
51 51
 
52 52
 		$this->metabox_types = new Main\MetaboxTypes;
53 53
 		$this->metabox_values = new Main\MetaboxValues;
@@ -69,10 +69,10 @@  discard block
 block discarded – undo
69 69
 	 * @param boolean $connection Whether or not we're connected to the Internet.
70 70
 	 * @param int $num Optional. Number of posts to create.
71 71
 	 */
72
-	public function create_objects( $slug, $connection, $num = '' ){
72
+	public function create_objects( $slug, $connection, $num = '' ) {
73 73
 
74 74
 		// If we're missing a custom post type id - don't do anything
75
-		if ( empty( $slug ) ){
75
+		if ( empty( $slug ) ) {
76 76
 			return;
77 77
 		}
78 78
 
@@ -84,12 +84,12 @@  discard block
 block discarded – undo
84 84
 		$this->connected = $connection;
85 85
 
86 86
 		// If we forgot to put in a quantity, make one for us
87
-		if ( empty( $num ) ){
87
+		if ( empty( $num ) ) {
88 88
 			$num = rand( 5, 30 );
89 89
 		}
90 90
 
91 91
 		// Create test posts
92
-		for( $i = 0; $i < $num; $i++ ){
92
+		for( $i = 0; $i < $num; $i++ ) {
93 93
 
94 94
 			$return = $this->create_test_object( $slug, $supports, $metaboxes );
95 95
 
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
 	 * @param array $supports Features that the post type supports.
116 116
 	 * @param array $supports All CMB2 metaboxes attached to the post type.
117 117
 	 */
118
-	private function create_test_object( $slug, $supports, $metaboxes ){
118
+	private function create_test_object( $slug, $supports, $metaboxes ) {
119 119
 		$return = '';
120 120
 
121 121
 		// Get a random title
@@ -131,17 +131,17 @@  discard block
 block discarded – undo
131 131
 		);
132 132
 
133 133
 		// Add title if supported
134
-		if ( $supports['title'] === true ){
134
+		if ( $supports['title'] === true ) {
135 135
 			$post['post_title'] = $title;
136 136
 		}
137 137
 
138 138
 		// Add main content if supported
139
-		if ( $supports['editor'] === true ){
139
+		if ( $supports['editor'] === true ) {
140 140
 			$post['post_content'] = apply_filters( "tc_{$slug}_post_content", TestContent::paragraphs() );
141 141
 		}
142 142
 
143 143
 		// Add excerpt content if supported
144
-		if ( $supports['excerpt'] === true ){
144
+		if ( $supports['excerpt'] === true ) {
145 145
 			$post['post_excerpt'] = apply_filters( "tc_{$slug}_post_excerpt", TestContent::plain_text() );
146 146
 		}
147 147
 
@@ -152,26 +152,26 @@  discard block
 block discarded – undo
152 152
 		add_post_meta( $post_id, 'dummypress_test_data', '__test__', true );
153 153
 
154 154
 		// Add thumbnail if supported
155
-		if ( $this->connected == true && ( $supports['thumbnail'] === true || in_array( $slug, array( 'post', 'page' ) ) ) ){
155
+		if ( $this->connected == true && ( $supports['thumbnail'] === true || in_array( $slug, array( 'post', 'page' ) ) ) ) {
156 156
 			 update_post_meta( $post_id, '_thumbnail_id', TestContent::image( $post_id ) );
157 157
 		}
158 158
 
159 159
 		$taxonomies = get_object_taxonomies( $slug );
160 160
 
161 161
 		// Assign the post to terms
162
-		if ( !empty( $taxonomies ) ){
162
+		if ( !empty( $taxonomies ) ) {
163 163
 			$return .= $this->assign_terms( $post_id, $taxonomies );
164 164
 		}
165 165
 
166 166
 		// Spin up metaboxes
167
-		if ( !empty( $metaboxes ) ){
167
+		if ( !empty( $metaboxes ) ) {
168 168
 			foreach ( $metaboxes as $cmb ) :
169 169
 				$return .= $this->metabox_values->get_values( $post_id, $cmb, $this->connected );
170 170
 			endforeach;
171 171
 		}
172 172
 
173 173
 		// Check if we have errors and return them or created message
174
-		if ( is_wp_error( $post_id ) ){
174
+		if ( is_wp_error( $post_id ) ) {
175 175
 			error_log( $post_id->get_error_message() );
176 176
 			return $post_id;
177 177
 		} else {
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
 	 * @param string $slug a custom post type ID.
199 199
 	 * @return array Array of necessary supports booleans.
200 200
 	 */
201
-	private function get_cpt_supports( $slug ){
201
+	private function get_cpt_supports( $slug ) {
202 202
 
203 203
 		$supports = array(
204 204
 			'title'		=> post_type_supports( $slug, 'title' ),
@@ -225,21 +225,21 @@  discard block
 block discarded – undo
225 225
 	 * @param array $taxonomies taxonomies assigned to this cpt.
226 226
 	 * @return object WP Error if there is one.
227 227
 	 */
228
-	private function assign_terms( $post_id, $taxonomies ){
228
+	private function assign_terms( $post_id, $taxonomies ) {
229 229
 
230 230
 		// Make sure it's an array & has items
231
-		if ( empty( $taxonomies ) || !is_array( $taxonomies ) ){
231
+		if ( empty( $taxonomies ) || !is_array( $taxonomies ) ) {
232 232
 			return;
233 233
 		}
234 234
 
235
-		foreach ( $taxonomies as $tax ){
235
+		foreach ( $taxonomies as $tax ) {
236 236
 
237 237
 			// Get the individual terms already existing
238 238
 			$terms = get_terms( $tax, array( 'hide_empty'	=> false ) );
239 239
 			$count = count( $terms ) - 1;
240 240
 
241 241
 			// If there are no terms, skip to the next taxonomy
242
-			if ( empty( $terms ) ){
242
+			if ( empty( $terms ) ) {
243 243
 				continue;
244 244
 			}
245 245
 
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
 			$return = wp_update_post( $post_data );
259 259
 
260 260
 			// Return the error if it exists
261
-			if ( is_wp_error( $return ) ){
261
+			if ( is_wp_error( $return ) ) {
262 262
 				error_log( $return->get_error_messages() );
263 263
 				return $return->get_error_messages();
264 264
 			}
@@ -273,12 +273,12 @@  discard block
 block discarded – undo
273 273
 	 *
274 274
 	 * @see Delete
275 275
 	 */
276
-	public function delete_all(){
276
+	public function delete_all() {
277 277
 
278 278
 		$delete =  new Delete;
279 279
 
280 280
 		// Make sure that the current user is logged in & has full permissions.
281
-		if ( ! $delete->user_can_delete() ){
281
+		if ( ! $delete->user_can_delete() ) {
282 282
 			return;
283 283
 		}
284 284
 
@@ -304,17 +304,17 @@  discard block
 block discarded – undo
304 304
 	 *
305 305
 	 * @param string $slug a custom post type ID.
306 306
 	 */
307
-	public function delete( $slug ){
307
+	public function delete( $slug ) {
308 308
 
309 309
 		$delete =  new Delete;
310 310
 
311 311
 		// Make sure that the current user is logged in & has full permissions.
312
-		if ( ! $delete->user_can_delete() ){
312
+		if ( ! $delete->user_can_delete() ) {
313 313
 			return;
314 314
 		}
315 315
 
316 316
 		// Check that $cptslg has a string.
317
-		if ( empty( $slug ) ){
317
+		if ( empty( $slug ) ) {
318 318
 			return;
319 319
 		}
320 320
 
@@ -339,7 +339,7 @@  discard block
 block discarded – undo
339 339
 
340 340
 		$objects = new \WP_Query( $query );
341 341
 
342
-		if ( $objects->have_posts() ){
342
+		if ( $objects->have_posts() ) {
343 343
 
344 344
 			$events = array();
345 345
 
@@ -349,7 +349,7 @@  discard block
 block discarded – undo
349 349
 				$this->delete_associated_media( get_the_id() );
350 350
 
351 351
 				// Double check our set user meta value
352
-				if ( '__test__' != get_post_meta( get_the_id(), 'dummypress_test_data', true ) && '__test__' != get_post_meta( get_the_id(), 'evans_test_content', true ) ){
352
+				if ( '__test__' != get_post_meta( get_the_id(), 'dummypress_test_data', true ) && '__test__' != get_post_meta( get_the_id(), 'evans_test_content', true ) ) {
353 353
 					continue;
354 354
 				}
355 355
 
@@ -392,27 +392,27 @@  discard block
 block discarded – undo
392 392
 	 *
393 393
 	 * @param int $pid a custom post type ID.
394 394
 	 */
395
-	private function delete_associated_media( $pid ){
395
+	private function delete_associated_media( $pid ) {
396 396
 
397 397
 		$delete =  new Delete;
398 398
 
399 399
 		// Make sure that the current user is logged in & has full permissions.
400
-		if ( !$delete->user_can_delete() ){
400
+		if ( !$delete->user_can_delete() ) {
401 401
 			return;
402 402
 		}
403 403
 
404 404
 		// Make sure $pid is, in fact, an ID
405
-		if ( !is_int( $pid ) ){
405
+		if ( !is_int( $pid ) ) {
406 406
 			return;
407 407
 		}
408 408
 
409 409
 		// Get our images
410 410
 		$media = get_attached_media( 'image', $pid );
411 411
 
412
-		if ( !empty( $media ) ){
412
+		if ( !empty( $media ) ) {
413 413
 
414 414
 			// Loop through the media & delete each one
415
-			foreach ( $media as $attachment ){
415
+			foreach ( $media as $attachment ) {
416 416
 				wp_delete_attachment( $attachment->ID, true );
417 417
 			}
418 418
 
Please login to merge, or discard this patch.
dummybot.php 3 patches
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
  		return;
29 29
  	}
30 30
 
31
-    $class = str_replace( __NAMESPACE__ . '\\', '', $class );
31
+	$class = str_replace( __NAMESPACE__ . '\\', '', $class );
32 32
 
33 33
 	$nss = array(
34 34
 		'Abstracts',
@@ -37,13 +37,13 @@  discard block
 block discarded – undo
37 37
 	);
38 38
 
39 39
 	if ( in_array( $namespace[1], $nss ) ){
40
-        $class = strtolower( preg_replace( '/(?<!^)([A-Z])/', '/\1', $class ) );
41
-        $class = str_replace( '\\', '', $class );
42
-     	$file  = dirname( __FILE__ ) . '/' . $class . '.php';
43
-    } else {
44
-        $class = strtolower( preg_replace( '/(?<!^)([A-Z])/', '-\\1', $class ) );
45
-     	$file  = dirname( __FILE__ ) . '/includes/class-' . $class . '.php';
46
-    }
40
+		$class = strtolower( preg_replace( '/(?<!^)([A-Z])/', '/\1', $class ) );
41
+		$class = str_replace( '\\', '', $class );
42
+	 	$file  = dirname( __FILE__ ) . '/' . $class . '.php';
43
+	} else {
44
+		$class = strtolower( preg_replace( '/(?<!^)([A-Z])/', '-\\1', $class ) );
45
+	 	$file  = dirname( __FILE__ ) . '/includes/class-' . $class . '.php';
46
+	}
47 47
 
48 48
  	if ( is_readable( $file ) ) {
49 49
  		require_once( $file );
@@ -82,8 +82,8 @@  discard block
 block discarded – undo
82 82
  // Register hook providers and views.
83 83
  plugin()->register_hooks( new AdminPage() )
84 84
  		 ->register_hooks( new Ajax() )
85
-         ->register_view( new Views\Posts() )
86
-         ->register_view( new Views\Terms() )
85
+		 ->register_view( new Views\Posts() )
86
+		 ->register_view( new Views\Terms() )
87 87
 		 ->register_view( new Views\Users() )
88 88
 		 ->register_view( new Views\Various() )
89 89
 		 ->register_type( new Types\Post() )
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 function dummypress_autoloader( $class ) {
25 25
 	$namespace = explode( '\\', $class );
26 26
 
27
- 	if ( __NAMESPACE__ !== $namespace[0] ){
27
+ 	if ( __NAMESPACE__ !== $namespace[ 0 ] ) {
28 28
  		return;
29 29
  	}
30 30
 
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 		'Views'
37 37
 	);
38 38
 
39
-	if ( in_array( $namespace[1], $nss ) ){
39
+	if ( in_array( $namespace[ 1 ], $nss ) ) {
40 40
         $class = strtolower( preg_replace( '/(?<!^)([A-Z])/', '/\1', $class ) );
41 41
         $class = str_replace( '\\', '', $class );
42 42
      	$file  = dirname( __FILE__ ) . '/' . $class . '.php';
Please login to merge, or discard this patch.
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 function dummypress_autoloader( $class ) {
25 25
 	$namespace = explode( '\\', $class );
26 26
 
27
- 	if ( __NAMESPACE__ !== $namespace[0] ){
27
+ 	if ( __NAMESPACE__ !== $namespace[0] ) {
28 28
  		return;
29 29
  	}
30 30
 
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 		'Views'
37 37
 	);
38 38
 
39
-	if ( in_array( $namespace[1], $nss ) ){
39
+	if ( in_array( $namespace[1], $nss ) ) {
40 40
         $class = strtolower( preg_replace( '/(?<!^)([A-Z])/', '/\1', $class ) );
41 41
         $class = str_replace( '\\', '', $class );
42 42
      	$file  = dirname( __FILE__ ) . '/' . $class . '.php';
Please login to merge, or discard this patch.
uninstall.php 3 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,12 +4,12 @@
 block discarded – undo
4 4
 
5 5
 // If uninstall is not called from WordPress, exit
6 6
 if ( !defined( 'WP_UNINSTALL_PLUGIN' ) ) {
7
-    exit();
7
+	exit();
8 8
 }
9 9
 
10 10
 // Check if the current user has priveledges to run this method
11 11
 if ( ! current_user_can( 'activate_plugins' ) ){
12
-    return;
12
+	return;
13 13
 }
14 14
 
15 15
 require dirname( __FILE__ ) . '/includes/class-delete.php';
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,12 +3,12 @@
 block discarded – undo
3 3
 use DummyPress as test;
4 4
 
5 5
 // If uninstall is not called from WordPress, exit
6
-if ( !defined( 'WP_UNINSTALL_PLUGIN' ) ) {
6
+if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
7 7
     exit();
8 8
 }
9 9
 
10 10
 // Check if the current user has priveledges to run this method
11
-if ( ! current_user_can( 'activate_plugins' ) ){
11
+if ( ! current_user_can( 'activate_plugins' ) ) {
12 12
     return;
13 13
 }
14 14
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 }
9 9
 
10 10
 // Check if the current user has priveledges to run this method
11
-if ( ! current_user_can( 'activate_plugins' ) ){
11
+if ( ! current_user_can( 'activate_plugins' ) ) {
12 12
     return;
13 13
 }
14 14
 
Please login to merge, or discard this patch.
includes/class-connection-test.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
 	 *
25 25
 	 * @see check_admin_page, check_airplane_mode, check_internet, check_splashbase
26 26
 	 *
27
-	 * @return boolean Status of connection to Internet/Splashbase.
27
+	 * @return null|boolean Status of connection to Internet/Splashbase.
28 28
 	 */
29 29
 	public function test(){
30 30
 
Please login to merge, or discard this patch.
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
  * @subpackage Evans
18 18
  * @author     Old Town Media
19 19
  */
20
-class ConnectionTest{
20
+class ConnectionTest {
21 21
 
22 22
 	/**
23 23
 	 * Run all of our connection tests.
@@ -26,33 +26,33 @@  discard block
 block discarded – undo
26 26
 	 *
27 27
 	 * @return boolean Status of connection to Internet/Splashbase.
28 28
 	 */
29
-	public function test(){
29
+	public function test() {
30 30
 
31 31
 		/*
32 32
 		 * Make sure that we're looking at the correct admin page
33 33
 		 */
34
-		if ( ! $this->check_admin_page() ){
34
+		if ( ! $this->check_admin_page() ) {
35 35
 			return;
36 36
 		}
37 37
 
38 38
 		/*
39 39
 		 * Test #1 - Check for Airplane Mode plugin status
40 40
 		 */
41
-		if ( ! $this->check_airplane_mode() ){
41
+		if ( ! $this->check_airplane_mode() ) {
42 42
 			return false;
43 43
 		}
44 44
 
45 45
 		/*
46 46
 		 * Test #2 - Check Internet connection in general
47 47
 		 */
48
-		if ( ! $this->check_internet() ){
48
+		if ( ! $this->check_internet() ) {
49 49
 			return false;
50 50
 		}
51 51
 
52 52
 		/*
53 53
 		 * Test #3 - Check External URL itself (Splashbase here)
54 54
 		 */
55
-		if ( ! $this->check_external_url( 'http://www.splashbase.co/api/v1/images/' ) ){
55
+		if ( ! $this->check_external_url( 'http://www.splashbase.co/api/v1/images/' ) ) {
56 56
 			return false;
57 57
 		}
58 58
 
@@ -75,22 +75,22 @@  discard block
 block discarded – undo
75 75
 	 *
76 76
 	 * @return boolean Whether or not we're in the right place.
77 77
 	 */
78
-	private function check_admin_page(){
78
+	private function check_admin_page() {
79 79
 		global $current_screen;
80 80
 
81 81
 		// Only run if we're in the admin page
82
-		if ( !is_admin() ){
82
+		if ( ! is_admin() ) {
83 83
 			return false;
84 84
 		}
85 85
 
86 86
 		// Get the current admin screen & verify that we're on the right one
87 87
 		// before continuing.
88
-		if ( isset ( $current_screen ) && 'tools_page_create-test-data' != $current_screen->base ){
88
+		if ( isset ( $current_screen ) && 'tools_page_create-test-data' != $current_screen->base ) {
89 89
 			return false;
90 90
 		}
91 91
 
92
-		$last_uri_bit = explode( '=', $_SERVER['REQUEST_URI'] );
93
-		if ( 'create-test-data' != end( $last_uri_bit ) ){
92
+		$last_uri_bit = explode( '=', $_SERVER[ 'REQUEST_URI' ] );
93
+		if ( 'create-test-data' != end( $last_uri_bit ) ) {
94 94
 			return false;
95 95
 		}
96 96
 
@@ -108,13 +108,13 @@  discard block
 block discarded – undo
108 108
 	 *
109 109
 	 * @return boolean Connected or not.
110 110
 	 */
111
-	private function check_airplane_mode(){
111
+	private function check_airplane_mode() {
112 112
 
113
-		if ( class_exists( 'Airplane_Mode_Core' ) ){
113
+		if ( class_exists( 'Airplane_Mode_Core' ) ) {
114 114
 			// Is airplane mode active?
115 115
 			$airplane_mode = get_site_option( 'airplane-mode' );
116 116
 
117
-			if ( $airplane_mode === 'on' ){
117
+			if ( $airplane_mode === 'on' ) {
118 118
 				return false;
119 119
 			}
120 120
 		}
@@ -133,12 +133,12 @@  discard block
 block discarded – undo
133 133
 	 *
134 134
 	 * @return boolean Connected or not.
135 135
 	 */
136
-	private function check_internet(){
136
+	private function check_internet() {
137 137
 
138 138
 		// Attempt to open a socket connection to Google
139 139
 		$connected = @fsockopen( "www.google.com", 80 );
140 140
 
141
-		if ( !$connected ){
141
+		if ( ! $connected ) {
142 142
 			return false;
143 143
 		}
144 144
 
@@ -160,12 +160,12 @@  discard block
 block discarded – undo
160 160
 	 * @param string $url External URL to attempt to reach.
161 161
 	 * @return boolean Connected or not.
162 162
 	 */
163
-	private function check_external_url( $url ){
163
+	private function check_external_url( $url ) {
164 164
 
165 165
 		$test_url = esc_url( $url );
166 166
 		$response = wp_remote_get( $test_url );
167 167
 
168
-		if ( !is_array( $response ) ){
168
+		if ( ! is_array( $response ) ) {
169 169
 			return false;
170 170
 		}
171 171
 
Please login to merge, or discard this patch.
Braces   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
  * @subpackage Evans
18 18
  * @author     Old Town Media
19 19
  */
20
-class ConnectionTest{
20
+class ConnectionTest {
21 21
 
22 22
 	/**
23 23
 	 * Run all of our connection tests.
@@ -26,33 +26,33 @@  discard block
 block discarded – undo
26 26
 	 *
27 27
 	 * @return boolean Status of connection to Internet/Splashbase.
28 28
 	 */
29
-	public function test(){
29
+	public function test() {
30 30
 
31 31
 		/*
32 32
 		 * Make sure that we're looking at the correct admin page
33 33
 		 */
34
-		if ( ! $this->check_admin_page() ){
34
+		if ( ! $this->check_admin_page() ) {
35 35
 			return;
36 36
 		}
37 37
 
38 38
 		/*
39 39
 		 * Test #1 - Check for Airplane Mode plugin status
40 40
 		 */
41
-		if ( ! $this->check_airplane_mode() ){
41
+		if ( ! $this->check_airplane_mode() ) {
42 42
 			return false;
43 43
 		}
44 44
 
45 45
 		/*
46 46
 		 * Test #2 - Check Internet connection in general
47 47
 		 */
48
-		if ( ! $this->check_internet() ){
48
+		if ( ! $this->check_internet() ) {
49 49
 			return false;
50 50
 		}
51 51
 
52 52
 		/*
53 53
 		 * Test #3 - Check External URL itself (Splashbase here)
54 54
 		 */
55
-		if ( ! $this->check_external_url( 'http://www.splashbase.co/api/v1/images/' ) ){
55
+		if ( ! $this->check_external_url( 'http://www.splashbase.co/api/v1/images/' ) ) {
56 56
 			return false;
57 57
 		}
58 58
 
@@ -75,22 +75,22 @@  discard block
 block discarded – undo
75 75
 	 *
76 76
 	 * @return boolean Whether or not we're in the right place.
77 77
 	 */
78
-	private function check_admin_page(){
78
+	private function check_admin_page() {
79 79
 		global $current_screen;
80 80
 
81 81
 		// Only run if we're in the admin page
82
-		if ( !is_admin() ){
82
+		if ( !is_admin() ) {
83 83
 			return false;
84 84
 		}
85 85
 
86 86
 		// Get the current admin screen & verify that we're on the right one
87 87
 		// before continuing.
88
-		if ( isset ( $current_screen ) && 'tools_page_create-test-data' != $current_screen->base ){
88
+		if ( isset ( $current_screen ) && 'tools_page_create-test-data' != $current_screen->base ) {
89 89
 			return false;
90 90
 		}
91 91
 
92 92
 		$last_uri_bit = explode( '=', $_SERVER['REQUEST_URI'] );
93
-		if ( 'create-test-data' != end( $last_uri_bit ) ){
93
+		if ( 'create-test-data' != end( $last_uri_bit ) ) {
94 94
 			return false;
95 95
 		}
96 96
 
@@ -108,13 +108,13 @@  discard block
 block discarded – undo
108 108
 	 *
109 109
 	 * @return boolean Connected or not.
110 110
 	 */
111
-	private function check_airplane_mode(){
111
+	private function check_airplane_mode() {
112 112
 
113
-		if ( class_exists( 'Airplane_Mode_Core' ) ){
113
+		if ( class_exists( 'Airplane_Mode_Core' ) ) {
114 114
 			// Is airplane mode active?
115 115
 			$airplane_mode = get_site_option( 'airplane-mode' );
116 116
 
117
-			if ( $airplane_mode === 'on' ){
117
+			if ( $airplane_mode === 'on' ) {
118 118
 				return false;
119 119
 			}
120 120
 		}
@@ -133,12 +133,12 @@  discard block
 block discarded – undo
133 133
 	 *
134 134
 	 * @return boolean Connected or not.
135 135
 	 */
136
-	private function check_internet(){
136
+	private function check_internet() {
137 137
 
138 138
 		// Attempt to open a socket connection to Google
139 139
 		$connected = @fsockopen( "www.google.com", 80 );
140 140
 
141
-		if ( !$connected ){
141
+		if ( !$connected ) {
142 142
 			return false;
143 143
 		}
144 144
 
@@ -160,12 +160,12 @@  discard block
 block discarded – undo
160 160
 	 * @param string $url External URL to attempt to reach.
161 161
 	 * @return boolean Connected or not.
162 162
 	 */
163
-	private function check_external_url( $url ){
163
+	private function check_external_url( $url ) {
164 164
 
165 165
 		$test_url = esc_url( $url );
166 166
 		$response = wp_remote_get( $test_url );
167 167
 
168
-		if ( !is_array( $response ) ){
168
+		if ( !is_array( $response ) ) {
169 169
 			return false;
170 170
 		}
171 171
 
Please login to merge, or discard this patch.