Test Setup Failed
Push — master ( 2261e5...599f56 )
by Stiofan
02:03
created
geodirectory-admin/google-api-php-client/src/Google/Auth/Abstract.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
  */
17 17
 
18 18
 if (!class_exists('Google_Client')) {
19
-  require_once dirname(__FILE__) . '/../autoload.php';
19
+  require_once dirname(__FILE__).'/../autoload.php';
20 20
 }
21 21
 
22 22
 /**
Please login to merge, or discard this patch.
geodirectory-functions/comments_functions.php 3 patches
Braces   +60 added lines, -48 removed lines patch added patch discarded remove patch
@@ -278,8 +278,9 @@  discard block
 block discarded – undo
278 278
 
279 279
     $post_id = isset($comment_info->comment_post_ID) ? $comment_info->comment_post_ID : '';
280 280
 
281
-    if (!empty($comment_info))
282
-        $status = $comment_info->comment_approved;
281
+    if (!empty($comment_info)) {
282
+            $status = $comment_info->comment_approved;
283
+    }
283 284
 
284 285
     if ($status == 'approve' || $status == 1) {
285 286
         $status = 1;
@@ -418,12 +419,14 @@  discard block
 block discarded – undo
418 419
         }
419 420
     } else {
420 421
         $rating = 0;
421
-        if (!empty($comment))
422
-            $rating = geodir_get_commentoverall($comment->comment_ID);
422
+        if (!empty($comment)) {
423
+                    $rating = geodir_get_commentoverall($comment->comment_ID);
424
+        }
423 425
         if ($rating != 0 && !is_admin()) {
424 426
             return '<div><div class="gd-rating-text">' . __('Overall Rating', 'geodirectory') . ': <div class="rating">' . $rating . '</div></div>' . geodir_get_rating_stars($rating, $comment->comment_ID) . '</div><div class="description">' . $content . '</div>';
425
-        } else
426
-            return $content;
427
+        } else {
428
+                    return $content;
429
+        }
427 430
     }
428 431
 }
429 432
 
@@ -512,11 +515,12 @@  discard block
 block discarded – undo
512 515
         $post_ratings = get_post_meta($post_id, 'overall_rating');
513 516
     }
514 517
 
515
-    if ($post_ratings)
516
-        return $post_ratings;
517
-    else
518
-        return false;
519
-}
518
+    if ($post_ratings) {
519
+            return $post_ratings;
520
+    } else {
521
+            return false;
522
+    }
523
+    }
520 524
 
521 525
 
522 526
 /**
@@ -541,11 +545,12 @@  discard block
 block discarded – undo
541 545
         )
542 546
     );
543 547
 
544
-    if (!empty($reatings))
545
-        return $reatings;
546
-    else
547
-        return false;
548
-}
548
+    if (!empty($reatings)) {
549
+            return $reatings;
550
+    } else {
551
+            return false;
552
+    }
553
+    }
549 554
 
550 555
 /**
551 556
  * Get review total of a Post.
@@ -569,11 +574,12 @@  discard block
 block discarded – undo
569 574
         )
570 575
     );
571 576
 
572
-    if (!empty($results))
573
-        return $results;
574
-    else
575
-        return false;
576
-}
577
+    if (!empty($results)) {
578
+            return $results;
579
+    } else {
580
+            return false;
581
+    }
582
+    }
577 583
 
578 584
 /**
579 585
  * Get review count by user ID.
@@ -596,11 +602,12 @@  discard block
 block discarded – undo
596 602
         )
597 603
     );
598 604
 
599
-    if (!empty($results))
600
-        return $results;
601
-    else
602
-        return false;
603
-}
605
+    if (!empty($results)) {
606
+            return $results;
607
+    } else {
608
+            return false;
609
+    }
610
+    }
604 611
 
605 612
 /**
606 613
  * Get average overall rating of a Post.
@@ -634,11 +641,12 @@  discard block
 block discarded – undo
634 641
         )
635 642
     );
636 643
 
637
-    if (!empty($results))
638
-        return $results;
639
-    else
640
-        return false;
641
-}
644
+    if (!empty($results)) {
645
+            return $results;
646
+    } else {
647
+            return false;
648
+    }
649
+    }
642 650
 
643 651
 /**
644 652
  * Get review count of a Post.
@@ -662,11 +670,12 @@  discard block
 block discarded – undo
662 670
         )
663 671
     );
664 672
 
665
-    if (!empty($results))
666
-        return $results;
667
-    else
668
-        return false;
669
-}
673
+    if (!empty($results)) {
674
+            return $results;
675
+    } else {
676
+            return false;
677
+    }
678
+    }
670 679
 
671 680
 /**
672 681
  * Get comments count of a Post.
@@ -692,11 +701,12 @@  discard block
 block discarded – undo
692 701
     );
693 702
 
694 703
 
695
-    if (!empty($results))
696
-        return $results;
697
-    else
698
-        return false;
699
-}
704
+    if (!empty($results)) {
705
+            return $results;
706
+    } else {
707
+            return false;
708
+    }
709
+    }
700 710
 
701 711
 /**
702 712
  * Get overall rating of a comment.
@@ -720,11 +730,12 @@  discard block
 block discarded – undo
720 730
         )
721 731
     );
722 732
 
723
-    if ($reatings)
724
-        return $reatings;
725
-    else
726
-        return false;
727
-}
733
+    if ($reatings) {
734
+            return $reatings;
735
+    } else {
736
+            return false;
737
+    }
738
+    }
728 739
 
729 740
 /**
730 741
  * Returns average overall rating of a Post. Depreciated since ver 1.3.6.
@@ -970,8 +981,9 @@  discard block
 block discarded – undo
970 981
     $active_tabs = get_option('geodir_detail_page_tabs_excluded');
971 982
 
972 983
     $is_display = true;
973
-    if (!empty($active_tabs) && in_array('reviews', $active_tabs))
974
-        $is_display = false;
984
+    if (!empty($active_tabs) && in_array('reviews', $active_tabs)) {
985
+            $is_display = false;
986
+    }
975 987
 
976 988
     /**
977 989
      * Filter to change display value.
Please login to merge, or discard this patch.
Spacing   +58 added lines, -58 removed lines patch added patch discarded remove patch
@@ -67,10 +67,10 @@  discard block
 block discarded – undo
67 67
  */
68 68
 function geodir_comment_rating_meta($comment) {
69 69
     $post_type = get_post_type($comment->comment_post_ID);
70
-	if (in_array($post_type, (array)geodir_get_posttypes()) && (int)$comment->comment_parent == 0 && !(!empty($post_type) && geodir_cpt_has_rating_disabled($post_type))) {
70
+	if (in_array($post_type, (array) geodir_get_posttypes()) && (int) $comment->comment_parent == 0 && !(!empty($post_type) && geodir_cpt_has_rating_disabled($post_type))) {
71 71
 		$rating = geodir_get_commentoverall($comment->comment_ID);
72 72
 		
73
-		if ((int)get_option('geodir_reviewrating_enable_font_awesome') == 1) {
73
+		if ((int) get_option('geodir_reviewrating_enable_font_awesome') == 1) {
74 74
 			$star_texts = array();
75 75
 			$star_texts[] = __('Terrible', 'geodirectory');
76 76
 			$star_texts[] = __('Poor', 'geodirectory');
@@ -81,13 +81,13 @@  discard block
 block discarded – undo
81 81
 			echo geodir_font_awesome_rating_form_html('', $star_texts, $rating);
82 82
 		} else {			
83 83
 			if ($rating) {
84
-				echo '<div class="gd_rating" data-average="' . $rating . '" data-id="5">';
84
+				echo '<div class="gd_rating" data-average="'.$rating.'" data-id="5">';
85 85
 
86 86
 			} else {
87 87
 				echo '<div class="gd_rating" data-average="0" data-id="5"></div>';
88 88
 			}
89 89
 		}
90
-		echo '<input type="hidden" id="geodir_overallrating" name="geodir_overallrating" value="' . $rating . '"  />';
90
+		echo '<input type="hidden" id="geodir_overallrating" name="geodir_overallrating" value="'.$rating.'"  />';
91 91
 	}
92 92
 }
93 93
 
@@ -140,9 +140,9 @@  discard block
 block discarded – undo
140 140
 {
141 141
 
142 142
     if (strpos($link, 'wp-login.php?') !== false) {
143
-        $link = str_replace(wp_login_url(),geodir_login_url(),$link);
143
+        $link = str_replace(wp_login_url(), geodir_login_url(), $link);
144 144
     }
145
-    $link = '<div class="gd_comment_replaylink">' . $link . '</div>';
145
+    $link = '<div class="gd_comment_replaylink">'.$link.'</div>';
146 146
 
147 147
     return $link;
148 148
 }
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
 function geodir_cancle_replaylink($link)
160 160
 {
161 161
 
162
-    $link = '<span class="gd-cancel-replaylink">' . $link . '</span>';
162
+    $link = '<span class="gd-cancel-replaylink">'.$link.'</span>';
163 163
 
164 164
     return $link;
165 165
 }
@@ -199,10 +199,10 @@  discard block
 block discarded – undo
199 199
     if (isset($_REQUEST['geodir_overallrating'])) {
200 200
         $overall_rating = $_REQUEST['geodir_overallrating'];
201 201
         
202
-		if (isset($comment_info->comment_parent) && (int)$comment_info->comment_parent == 0) {
202
+		if (isset($comment_info->comment_parent) && (int) $comment_info->comment_parent == 0) {
203 203
             $overall_rating = $overall_rating > 0 ? $overall_rating : '0';
204 204
 
205
-            $sqlqry = $wpdb->prepare("INSERT INTO " . GEODIR_REVIEW_TABLE . " SET
205
+            $sqlqry = $wpdb->prepare("INSERT INTO ".GEODIR_REVIEW_TABLE." SET
206 206
 					post_id		= %d,
207 207
 					post_type = %s,
208 208
 					post_title	= %s,
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
 
290 290
     $post_type = get_post_type($post_id);
291 291
 
292
-    $detail_table = $plugin_prefix . $post_type . '_detail';
292
+    $detail_table = $plugin_prefix.$post_type.'_detail';
293 293
 
294 294
     if ($comment_id) {
295 295
 
@@ -297,7 +297,7 @@  discard block
 block discarded – undo
297 297
 
298 298
         if (isset($old_rating)) {
299 299
 
300
-            $sqlqry = $wpdb->prepare("UPDATE " . GEODIR_REVIEW_TABLE . " SET
300
+            $sqlqry = $wpdb->prepare("UPDATE ".GEODIR_REVIEW_TABLE." SET
301 301
 						overall_rating = %f,
302 302
 						status		= %s,
303 303
 						comment_content = %s 
@@ -339,18 +339,18 @@  discard block
 block discarded – undo
339 339
 
340 340
     $post_type = get_post_type($post_id);
341 341
 
342
-    $detail_table = $plugin_prefix . $post_type . '_detail';
342
+    $detail_table = $plugin_prefix.$post_type.'_detail';
343 343
 
344 344
     if (isset($_REQUEST['geodir_overallrating'])) {
345 345
 
346 346
         $overall_rating = $_REQUEST['geodir_overallrating'];
347 347
 
348
-        if (isset($comment_info->comment_parent) && (int)$comment_info->comment_parent == 0) {
348
+        if (isset($comment_info->comment_parent) && (int) $comment_info->comment_parent == 0) {
349 349
             $overall_rating = $overall_rating > 0 ? $overall_rating : '0';
350 350
 
351 351
             if (isset($old_rating)) {
352 352
 
353
-                $sqlqry = $wpdb->prepare("UPDATE " . GEODIR_REVIEW_TABLE . " SET
353
+                $sqlqry = $wpdb->prepare("UPDATE ".GEODIR_REVIEW_TABLE." SET
354 354
 						overall_rating = %f,
355 355
 						status		= %s,
356 356
 						comment_content	= %s 
@@ -388,7 +388,7 @@  discard block
 block discarded – undo
388 388
 
389 389
     $wpdb->query(
390 390
         $wpdb->prepare(
391
-            "DELETE FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id=%d",
391
+            "DELETE FROM ".GEODIR_REVIEW_TABLE." WHERE comment_id=%d",
392 392
             array($comment_id)
393 393
         )
394 394
     );
@@ -407,9 +407,9 @@  discard block
 block discarded – undo
407 407
  * @return string The comment content.
408 408
  */
409 409
 function geodir_wrap_comment_text($content, $comment = '') {
410
-    if (!empty($comment->comment_post_ID) && geodir_cpt_has_rating_disabled((int)$comment->comment_post_ID)) {
410
+    if (!empty($comment->comment_post_ID) && geodir_cpt_has_rating_disabled((int) $comment->comment_post_ID)) {
411 411
         if (!is_admin()) {
412
-            return '<div class="description">' . $content . '</div>';
412
+            return '<div class="description">'.$content.'</div>';
413 413
         } else {
414 414
             return $content;
415 415
         }
@@ -418,7 +418,7 @@  discard block
 block discarded – undo
418 418
         if (!empty($comment))
419 419
             $rating = geodir_get_commentoverall($comment->comment_ID);
420 420
         if ($rating != 0 && !is_admin()) {
421
-            return '<div><div class="gd-rating-text">' . __('Overall Rating', 'geodirectory') . ': <div class="rating">' . $rating . '</div></div>' . geodir_get_rating_stars($rating, $comment->comment_ID) . '</div><div class="description">' . $content . '</div>';
421
+            return '<div><div class="gd-rating-text">'.__('Overall Rating', 'geodirectory').': <div class="rating">'.$rating.'</div></div>'.geodir_get_rating_stars($rating, $comment->comment_ID).'</div><div class="description">'.$content.'</div>';
422 422
         } else
423 423
             return $content;
424 424
     }
@@ -442,18 +442,18 @@  discard block
 block discarded – undo
442 442
     if (!$post_type) {
443 443
         $post_type = get_post_type($post_id);
444 444
     }
445
-    $detail_table = $plugin_prefix . $post_type . '_detail';
445
+    $detail_table = $plugin_prefix.$post_type.'_detail';
446 446
     $post_newrating = geodir_get_post_rating($post_id, 1);
447 447
     $post_newrating_count = geodir_get_review_count_total($post_id);
448 448
 
449 449
 
450 450
     //$post_newrating = ( (float)$post_oldrating - (float)$old_rating ) + (float)$overall_rating ;
451 451
 
452
-    if ($wpdb->get_var("SHOW TABLES LIKE '" . $detail_table . "'") == $detail_table) {
452
+    if ($wpdb->get_var("SHOW TABLES LIKE '".$detail_table."'") == $detail_table) {
453 453
 
454 454
         $wpdb->query(
455 455
             $wpdb->prepare(
456
-                "UPDATE " . $detail_table . " SET
456
+                "UPDATE ".$detail_table." SET
457 457
 						overall_rating = %f,
458 458
 						rating_count = %f
459 459
 						where post_id = %d",
@@ -472,7 +472,7 @@  discard block
 block discarded – undo
472 472
      * @package GeoDirectory
473 473
      * @param int $post_id The post ID.
474 474
      */
475
-    do_action('geodir_update_postrating',$post_id);
475
+    do_action('geodir_update_postrating', $post_id);
476 476
 
477 477
 }
478 478
 
@@ -493,13 +493,13 @@  discard block
 block discarded – undo
493 493
     global $wpdb, $plugin_prefix;
494 494
 
495 495
     $post_type = get_post_type($post_id);
496
-    $detail_table = $plugin_prefix . $post_type . '_detail';
496
+    $detail_table = $plugin_prefix.$post_type.'_detail';
497 497
 
498
-    if ($wpdb->get_var("SHOW TABLES LIKE '" . $detail_table . "'") == $detail_table) {
498
+    if ($wpdb->get_var("SHOW TABLES LIKE '".$detail_table."'") == $detail_table) {
499 499
 
500 500
         $post_ratings = $wpdb->get_var(
501 501
             $wpdb->prepare(
502
-                "SELECT overall_rating FROM " . $detail_table . " WHERE post_id = %d",
502
+                "SELECT overall_rating FROM ".$detail_table." WHERE post_id = %d",
503 503
                 array($post_id)
504 504
             )
505 505
         );
@@ -533,7 +533,7 @@  discard block
 block discarded – undo
533 533
 
534 534
     $reatings = $wpdb->get_row(
535 535
         $wpdb->prepare(
536
-            "SELECT * FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id = %d",
536
+            "SELECT * FROM ".GEODIR_REVIEW_TABLE." WHERE comment_id = %d",
537 537
             array($comment_id)
538 538
         )
539 539
     );
@@ -561,7 +561,7 @@  discard block
 block discarded – undo
561 561
 
562 562
     $results = $wpdb->get_var(
563 563
         $wpdb->prepare(
564
-            "SELECT SUM(overall_rating) FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id = %d AND status=1 AND overall_rating>0",
564
+            "SELECT SUM(overall_rating) FROM ".GEODIR_REVIEW_TABLE." WHERE post_id = %d AND status=1 AND overall_rating>0",
565 565
             array($post_id)
566 566
         )
567 567
     );
@@ -588,7 +588,7 @@  discard block
 block discarded – undo
588 588
     global $wpdb;
589 589
     $results = $wpdb->get_var(
590 590
         $wpdb->prepare(
591
-            "SELECT COUNT(overall_rating) FROM " . GEODIR_REVIEW_TABLE . " WHERE user_id = %d AND status=1 AND overall_rating>0",
591
+            "SELECT COUNT(overall_rating) FROM ".GEODIR_REVIEW_TABLE." WHERE user_id = %d AND status=1 AND overall_rating>0",
592 592
             array($user_id)
593 593
         )
594 594
     );
@@ -626,7 +626,7 @@  discard block
 block discarded – undo
626 626
 
627 627
     $results = $wpdb->get_var(
628 628
         $wpdb->prepare(
629
-            "SELECT COALESCE(avg(overall_rating),0) FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id = %d AND status=1 AND overall_rating>0",
629
+            "SELECT COALESCE(avg(overall_rating),0) FROM ".GEODIR_REVIEW_TABLE." WHERE post_id = %d AND status=1 AND overall_rating>0",
630 630
             array($post_id)
631 631
         )
632 632
     );
@@ -654,7 +654,7 @@  discard block
 block discarded – undo
654 654
 
655 655
     $results = $wpdb->get_var(
656 656
         $wpdb->prepare(
657
-            "SELECT COUNT(overall_rating) FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id = %d AND status=1 AND overall_rating>0",
657
+            "SELECT COUNT(overall_rating) FROM ".GEODIR_REVIEW_TABLE." WHERE post_id = %d AND status=1 AND overall_rating>0",
658 658
             array($post_id)
659 659
         )
660 660
     );
@@ -683,7 +683,7 @@  discard block
 block discarded – undo
683 683
 
684 684
     $results = $wpdb->get_var(
685 685
         $wpdb->prepare(
686
-            "SELECT COUNT(overall_rating) FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id = %d AND status=1 AND overall_rating>0",
686
+            "SELECT COUNT(overall_rating) FROM ".GEODIR_REVIEW_TABLE." WHERE post_id = %d AND status=1 AND overall_rating>0",
687 687
             array($post_id)
688 688
         )
689 689
     );
@@ -712,7 +712,7 @@  discard block
 block discarded – undo
712 712
 
713 713
     $reatings = $wpdb->get_var(
714 714
         $wpdb->prepare(
715
-            "SELECT overall_rating FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id = %d",
715
+            "SELECT overall_rating FROM ".GEODIR_REVIEW_TABLE." WHERE comment_id = %d",
716 716
             array($comment_id)
717 717
         )
718 718
     );
@@ -766,7 +766,7 @@  discard block
 block discarded – undo
766 766
         
767 767
         $template = locate_template(array("geodirectory/reviews.php")); // Use theme template if available
768 768
         if (!$template) {
769
-            $template = dirname(__FILE__) . '/reviews.php';
769
+            $template = dirname(__FILE__).'/reviews.php';
770 770
         }
771 771
         return $template;
772 772
     }
@@ -838,7 +838,7 @@  discard block
 block discarded – undo
838 838
                         printf('<cite><b class="reviewer">%1$s</b> %2$s</cite>',
839 839
                             get_comment_author_link(),
840 840
                             // If current post author is also comment author, make it known visually.
841
-                            ($comment->user_id === $post->post_author) ? '<span>' . __('Post author', 'geodirectory') . '</span>' : ''
841
+                            ($comment->user_id === $post->post_author) ? '<span>'.__('Post author', 'geodirectory').'</span>' : ''
842 842
                         );
843 843
                         echo "<span class='item'><small><span class='fn'>$post->post_title</span></small></span>";
844 844
                         printf('<a href="%1$s"><time datetime="%2$s" class="dtreviewed">%3$s<span class="value-title" title="%2$s"></span></time></a>',
@@ -896,7 +896,7 @@  discard block
 block discarded – undo
896 896
             global $post;
897 897
             $post_types = geodir_get_posttypes();
898 898
 
899
-            if (in_array(get_post_type($post_id), $post_types) && !geodir_cpt_has_rating_disabled((int)$post_id)) {
899
+            if (in_array(get_post_type($post_id), $post_types) && !geodir_cpt_has_rating_disabled((int) $post_id)) {
900 900
                 $review_count = geodir_get_review_count_total($post_id);
901 901
                 return $review_count;
902 902
 
@@ -929,29 +929,29 @@  discard block
 block discarded – undo
929 929
  */
930 930
 function geodir_get_rating_stars($rating, $post_id, $small = false)
931 931
 {
932
-    if (!empty($post_id) && geodir_cpt_has_rating_disabled((int)$post_id)) {
932
+    if (!empty($post_id) && geodir_cpt_has_rating_disabled((int) $post_id)) {
933 933
         return NULL;
934 934
     }
935 935
     $a_rating = $rating / 5 * 100;
936 936
 
937 937
     if ($small) {
938
-        $r_html = '<div class="rating"><div class="gd_rating_map" data-average="' . $rating . '" data-id="' . $post_id . '"><div class="geodir_RatingColor" ></div><div class="geodir_RatingAverage_small" style="width: ' . $a_rating . '%;"></div><div class="geodir_Star_small"></div></div></div>';
938
+        $r_html = '<div class="rating"><div class="gd_rating_map" data-average="'.$rating.'" data-id="'.$post_id.'"><div class="geodir_RatingColor" ></div><div class="geodir_RatingAverage_small" style="width: '.$a_rating.'%;"></div><div class="geodir_Star_small"></div></div></div>';
939 939
     } else {
940 940
 		if (function_exists('geodir_reviewrating_draw_overall_rating')) {
941 941
 			// Show rating stars from review rating manager
942 942
 			$r_html = geodir_reviewrating_draw_overall_rating($rating);
943 943
 		} else {
944
-			$rating_img = '<img alt="rating icon" src="' . get_option('geodir_default_rating_star_icon') . '" />';
944
+			$rating_img = '<img alt="rating icon" src="'.get_option('geodir_default_rating_star_icon').'" />';
945 945
 			
946 946
 			/* fix rating star for safari */
947 947
 			$star_width = 23 * 5;
948 948
 			
949 949
 			if ($star_width > 0) {
950
-				$attach_style = 'max-width:' . $star_width . 'px';
950
+				$attach_style = 'max-width:'.$star_width.'px';
951 951
 			} else {
952 952
 				$attach_style = '';
953 953
 			}
954
-			$r_html = '<div class="geodir-rating" style="' . $attach_style . '"><div class="gd_rating_show" data-average="' . $rating . '" data-id="' . $post_id . '"><div class="geodir_RatingAverage" style="width: ' . $a_rating . '%;"></div><div class="geodir_Star">' . $rating_img . $rating_img . $rating_img . $rating_img . $rating_img . '</div></div></div>';
954
+			$r_html = '<div class="geodir-rating" style="'.$attach_style.'"><div class="gd_rating_show" data-average="'.$rating.'" data-id="'.$post_id.'"><div class="geodir_RatingAverage" style="width: '.$a_rating.'%;"></div><div class="geodir_Star">'.$rating_img.$rating_img.$rating_img.$rating_img.$rating_img.'</div></div></div>';
955 955
 		}
956 956
     }
957 957
     return apply_filters('geodir_get_rating_stars_html', $r_html, $rating, 5);
@@ -991,10 +991,10 @@  discard block
 block discarded – undo
991 991
 /*
992 992
  * If Disqus plugin is active, do some fixes to show on blogs but no on GD post types
993 993
  */
994
-if(function_exists('dsq_can_replace')) {
994
+if (function_exists('dsq_can_replace')) {
995 995
     remove_filter('comments_template', 'dsq_comments_template');
996 996
     add_filter('comments_template', 'dsq_comments_template', 100);
997
-    add_filter('pre_option_disqus_active', 'geodir_option_disqus_active',10,1);
997
+    add_filter('pre_option_disqus_active', 'geodir_option_disqus_active', 10, 1);
998 998
 }
999 999
 
1000 1000
 
@@ -1007,11 +1007,11 @@  discard block
 block discarded – undo
1007 1007
  * @param string $disqus_active Hook called before DB call for option so this is empty.
1008 1008
  * @return string `1` if active `0` if disabled.
1009 1009
  */
1010
-function geodir_option_disqus_active($disqus_active){
1010
+function geodir_option_disqus_active($disqus_active) {
1011 1011
     global $post;
1012 1012
     $all_postypes = geodir_get_posttypes();
1013 1013
 
1014
-    if(isset($post->post_type) && is_array($all_postypes) && in_array($post->post_type,$all_postypes)){
1014
+    if (isset($post->post_type) && is_array($all_postypes) && in_array($post->post_type, $all_postypes)) {
1015 1015
         $disqus_active = '0';
1016 1016
     }
1017 1017
 
@@ -1055,17 +1055,17 @@  discard block
 block discarded – undo
1055 1055
  *
1056 1056
  * @since 1.6.21
1057 1057
  */
1058
-function geodir_jetpack_disable_comments(){
1058
+function geodir_jetpack_disable_comments() {
1059 1059
     //only run if jetpack installed
1060
-    if(defined('JETPACK__VERSION')){
1060
+    if (defined('JETPACK__VERSION')) {
1061 1061
         $post_types = geodir_get_posttypes();
1062
-        foreach($post_types as $post_type){
1063
-            add_filter('jetpack_comment_form_enabled_for_' . $post_type, '__return_false');
1062
+        foreach ($post_types as $post_type) {
1063
+            add_filter('jetpack_comment_form_enabled_for_'.$post_type, '__return_false');
1064 1064
         }
1065 1065
     }
1066 1066
 }
1067 1067
 
1068
-add_action('plugins_loaded','geodir_jetpack_disable_comments');
1068
+add_action('plugins_loaded', 'geodir_jetpack_disable_comments');
1069 1069
 
1070 1070
 /**
1071 1071
  * Check whether the current post is open for reviews.
@@ -1076,16 +1076,16 @@  discard block
 block discarded – undo
1076 1076
  * @param int  $post_id The post ID.
1077 1077
  * @return bool True if allowed otherwise False.
1078 1078
  */
1079
-function geodir_check_reviews_open( $open, $post_id ) {
1080
-    if ( $open && $post_id && geodir_is_page( 'detail' ) ) {
1081
-        if ( in_array( get_post_status( $post_id ), array( 'draft', 'pending', 'auto-draft', 'trash' ) ) ) {
1079
+function geodir_check_reviews_open($open, $post_id) {
1080
+    if ($open && $post_id && geodir_is_page('detail')) {
1081
+        if (in_array(get_post_status($post_id), array('draft', 'pending', 'auto-draft', 'trash'))) {
1082 1082
             $open = false;
1083 1083
         }
1084 1084
     }
1085 1085
     
1086 1086
     return $open;
1087 1087
 }
1088
-add_filter( 'comments_open', 'geodir_check_reviews_open', 10, 2 );
1088
+add_filter('comments_open', 'geodir_check_reviews_open', 10, 2);
1089 1089
 
1090 1090
 /**
1091 1091
  * Filter the [img] tags from comment.
@@ -1097,11 +1097,11 @@  discard block
 block discarded – undo
1097 1097
  * @param array           $args         An array of arguments.
1098 1098
  * @return string Filtered comment content.
1099 1099
  */
1100
-function geodir_remove_img_tags_from_comment( $comment_text, $comment = array(), $args = array() ) {
1101
-    if ( !empty( $comment_text ) && !empty( $comment ) && strpos( $comment_text, '[img' ) !== false && strpos( get_post_type( $comment->comment_post_ID ), 'gd_' ) === 0 ) {
1102
-        $comment_text = preg_replace( '#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_text );
1103
-        $comment_text = trim( $comment_text );
1100
+function geodir_remove_img_tags_from_comment($comment_text, $comment = array(), $args = array()) {
1101
+    if (!empty($comment_text) && !empty($comment) && strpos($comment_text, '[img') !== false && strpos(get_post_type($comment->comment_post_ID), 'gd_') === 0) {
1102
+        $comment_text = preg_replace('#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_text);
1103
+        $comment_text = trim($comment_text);
1104 1104
     }
1105 1105
     return $comment_text;
1106 1106
 }
1107
-add_filter( 'comment_text', 'geodir_remove_img_tags_from_comment', 10, 3 );
1108 1107
\ No newline at end of file
1108
+add_filter('comment_text', 'geodir_remove_img_tags_from_comment', 10, 3);
1109 1109
\ No newline at end of file
Please login to merge, or discard this patch.
Indentation   +471 added lines, -471 removed lines patch added patch discarded remove patch
@@ -31,13 +31,13 @@  discard block
 block discarded – undo
31 31
  */
32 32
 function geodir_comment_meta_row_action($a)
33 33
 {
34
-    global $comment;
34
+	global $comment;
35 35
 
36
-    $rating = geodir_get_commentoverall($comment->comment_ID);
37
-    if ($rating != 0) {
38
-        echo geodir_get_rating_stars($rating, $comment->comment_ID);
39
-    }
40
-    return $a;
36
+	$rating = geodir_get_commentoverall($comment->comment_ID);
37
+	if ($rating != 0) {
38
+		echo geodir_get_rating_stars($rating, $comment->comment_ID);
39
+	}
40
+	return $a;
41 41
 }
42 42
 
43 43
 add_action('add_meta_boxes_comment', 'geodir_comment_add_meta_box');
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
  */
53 53
 function geodir_comment_add_meta_box($comment)
54 54
 {
55
-    add_meta_box('gd-comment-rating', __('Comment Rating', 'geodirectory'), 'geodir_comment_rating_meta', 'comment', 'normal', 'high');
55
+	add_meta_box('gd-comment-rating', __('Comment Rating', 'geodirectory'), 'geodir_comment_rating_meta', 'comment', 'normal', 'high');
56 56
 }
57 57
 
58 58
 /**
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
  * @param object $comment The comment object.
67 67
  */
68 68
 function geodir_comment_rating_meta($comment) {
69
-    $post_type = get_post_type($comment->comment_post_ID);
69
+	$post_type = get_post_type($comment->comment_post_ID);
70 70
 	if (in_array($post_type, (array)geodir_get_posttypes()) && (int)$comment->comment_parent == 0 && !(!empty($post_type) && geodir_cpt_has_rating_disabled($post_type))) {
71 71
 		$rating = geodir_get_commentoverall($comment->comment_ID);
72 72
 		
@@ -106,24 +106,24 @@  discard block
 block discarded – undo
106 106
  * @global object $post The post object.
107 107
  */
108 108
 function geodir_comment_rating_fields() {
109
-    global $post;
109
+	global $post;
110 110
 
111
-    $post_types = geodir_get_posttypes();
111
+	$post_types = geodir_get_posttypes();
112 112
 
113
-    if (!empty($post->post_type) && in_array($post->post_type, $post_types) && !(!empty($post->post_type) && geodir_cpt_has_rating_disabled($post->post_type))) {
114
-        $star_texts = array();
115
-        $star_texts[] = __('Terrible', 'geodirectory');
116
-        $star_texts[] = __('Poor', 'geodirectory');
117
-        $star_texts[] = __('Average', 'geodirectory');
118
-        $star_texts[] = __('Very Good', 'geodirectory');
119
-        $star_texts[] = __('Excellent', 'geodirectory');
113
+	if (!empty($post->post_type) && in_array($post->post_type, $post_types) && !(!empty($post->post_type) && geodir_cpt_has_rating_disabled($post->post_type))) {
114
+		$star_texts = array();
115
+		$star_texts[] = __('Terrible', 'geodirectory');
116
+		$star_texts[] = __('Poor', 'geodirectory');
117
+		$star_texts[] = __('Average', 'geodirectory');
118
+		$star_texts[] = __('Very Good', 'geodirectory');
119
+		$star_texts[] = __('Excellent', 'geodirectory');
120 120
         
121
-        $gd_rating_html = apply_filters('gd_rating_form_html', '<div class="gd_rating" data-average="0" data-id="5"></div>', $star_texts);
122
-        echo $gd_rating_html;
123
-        ?>
121
+		$gd_rating_html = apply_filters('gd_rating_form_html', '<div class="gd_rating" data-average="0" data-id="5"></div>', $star_texts);
122
+		echo $gd_rating_html;
123
+		?>
124 124
         <input type="hidden" id="geodir_overallrating" name="geodir_overallrating" value="0"/>
125 125
         <?php
126
-    }
126
+	}
127 127
 }
128 128
 
129 129
 add_filter('comment_reply_link', 'geodir_comment_replaylink');
@@ -139,12 +139,12 @@  discard block
 block discarded – undo
139 139
 function geodir_comment_replaylink($link)
140 140
 {
141 141
 
142
-    if (strpos($link, 'wp-login.php?') !== false) {
143
-        $link = str_replace(wp_login_url(),geodir_login_url(),$link);
144
-    }
145
-    $link = '<div class="gd_comment_replaylink">' . $link . '</div>';
142
+	if (strpos($link, 'wp-login.php?') !== false) {
143
+		$link = str_replace(wp_login_url(),geodir_login_url(),$link);
144
+	}
145
+	$link = '<div class="gd_comment_replaylink">' . $link . '</div>';
146 146
 
147
-    return $link;
147
+	return $link;
148 148
 }
149 149
 
150 150
 add_filter('cancel_comment_reply_link', 'geodir_cancle_replaylink');
@@ -159,9 +159,9 @@  discard block
 block discarded – undo
159 159
 function geodir_cancle_replaylink($link)
160 160
 {
161 161
 
162
-    $link = '<span class="gd-cancel-replaylink">' . $link . '</span>';
162
+	$link = '<span class="gd-cancel-replaylink">' . $link . '</span>';
163 163
 
164
-    return $link;
164
+	return $link;
165 165
 }
166 166
 
167 167
 add_action('comment_post', 'geodir_save_rating');
@@ -177,32 +177,32 @@  discard block
 block discarded – undo
177 177
  */
178 178
 function geodir_save_rating($comment = 0)
179 179
 {
180
-    global $wpdb, $user_ID, $plugin_prefix;
180
+	global $wpdb, $user_ID, $plugin_prefix;
181 181
 
182
-    $comment_info = get_comment($comment);
182
+	$comment_info = get_comment($comment);
183 183
 
184
-    $post_id = $comment_info->comment_post_ID;
185
-    $status = $comment_info->comment_approved;
186
-    $rating_ip = geodir_get_ip();
184
+	$post_id = $comment_info->comment_post_ID;
185
+	$status = $comment_info->comment_approved;
186
+	$rating_ip = geodir_get_ip();
187 187
 	
188
-    $post = geodir_get_post_info($post_id);
189
-    if (empty($post)) {
190
-        return;
191
-    }
192
-
193
-    if ($post->post_status == 'publish') {
194
-        $post_status = '1';
195
-    } else {
196
-        $post_status = '0';
197
-    }
188
+	$post = geodir_get_post_info($post_id);
189
+	if (empty($post)) {
190
+		return;
191
+	}
192
+
193
+	if ($post->post_status == 'publish') {
194
+		$post_status = '1';
195
+	} else {
196
+		$post_status = '0';
197
+	}
198 198
 	
199
-    if (isset($_REQUEST['geodir_overallrating'])) {
200
-        $overall_rating = $_REQUEST['geodir_overallrating'];
199
+	if (isset($_REQUEST['geodir_overallrating'])) {
200
+		$overall_rating = $_REQUEST['geodir_overallrating'];
201 201
         
202 202
 		if (isset($comment_info->comment_parent) && (int)$comment_info->comment_parent == 0) {
203
-            $overall_rating = $overall_rating > 0 ? $overall_rating : '0';
203
+			$overall_rating = $overall_rating > 0 ? $overall_rating : '0';
204 204
 
205
-            $sqlqry = $wpdb->prepare("INSERT INTO " . GEODIR_REVIEW_TABLE . " SET
205
+			$sqlqry = $wpdb->prepare("INSERT INTO " . GEODIR_REVIEW_TABLE . " SET
206 206
 					post_id		= %d,
207 207
 					post_type = %s,
208 208
 					post_title	= %s,
@@ -220,35 +220,35 @@  discard block
 block discarded – undo
220 220
 					post_latitude	= %s,
221 221
 					comment_content	= %s 
222 222
 					",
223
-                array($post_id, $post->post_type, $post->post_title, $user_ID, $comment, $rating_ip, $overall_rating, $status, $post_status, date_i18n('Y-m-d H:i:s', current_time('timestamp')), $post->post_city, $post->post_region, $post->post_country, $post->post_latitude, $post->post_longitude, $comment_info->comment_content)
224
-            );
225
-
226
-            $wpdb->query($sqlqry);
227
-
228
-            /**
229
-             * Called after saving the comment.
230
-             *
231
-             * @since 1.0.0
232
-             * @package GeoDirectory
233
-             * @param array $_REQUEST {
234
-             *    Attributes of the $_REQUEST variable.
235
-             *
236
-             *    @type string $geodir_overallrating Overall rating.
237
-             *    @type string $comment Comment text.
238
-             *    @type string $submit Submit button text.
239
-             *    @type string $comment_post_ID Comment post ID.
240
-             *    @type string $comment_parent Comment Parent ID.
241
-             *    @type string $_wp_unfiltered_html_comment Unfiltered html comment string.
242
-             *
243
-             * }
244
-             */
245
-            do_action('geodir_after_save_comment', $_REQUEST, 'Comment Your Post');
246
-
247
-            if ($status) {
248
-                geodir_update_postrating($post_id);
249
-            }
250
-        }
251
-    }
223
+				array($post_id, $post->post_type, $post->post_title, $user_ID, $comment, $rating_ip, $overall_rating, $status, $post_status, date_i18n('Y-m-d H:i:s', current_time('timestamp')), $post->post_city, $post->post_region, $post->post_country, $post->post_latitude, $post->post_longitude, $comment_info->comment_content)
224
+			);
225
+
226
+			$wpdb->query($sqlqry);
227
+
228
+			/**
229
+			 * Called after saving the comment.
230
+			 *
231
+			 * @since 1.0.0
232
+			 * @package GeoDirectory
233
+			 * @param array $_REQUEST {
234
+			 *    Attributes of the $_REQUEST variable.
235
+			 *
236
+			 *    @type string $geodir_overallrating Overall rating.
237
+			 *    @type string $comment Comment text.
238
+			 *    @type string $submit Submit button text.
239
+			 *    @type string $comment_post_ID Comment post ID.
240
+			 *    @type string $comment_parent Comment Parent ID.
241
+			 *    @type string $_wp_unfiltered_html_comment Unfiltered html comment string.
242
+			 *
243
+			 * }
244
+			 */
245
+			do_action('geodir_after_save_comment', $_REQUEST, 'Comment Your Post');
246
+
247
+			if ($status) {
248
+				geodir_update_postrating($post_id);
249
+			}
250
+		}
251
+	}
252 252
 }
253 253
 
254 254
 
@@ -266,51 +266,51 @@  discard block
 block discarded – undo
266 266
  */
267 267
 function geodir_update_rating_status_change($comment_id, $status)
268 268
 {
269
-    if ($status == 'delete') {
270
-        return;
271
-    }
272
-    global $wpdb, $plugin_prefix, $user_ID;
269
+	if ($status == 'delete') {
270
+		return;
271
+	}
272
+	global $wpdb, $plugin_prefix, $user_ID;
273 273
 
274
-    $comment_info = get_comment($comment_id);
274
+	$comment_info = get_comment($comment_id);
275 275
 
276
-    $post_id = isset($comment_info->comment_post_ID) ? $comment_info->comment_post_ID : '';
276
+	$post_id = isset($comment_info->comment_post_ID) ? $comment_info->comment_post_ID : '';
277 277
 
278
-    if (!empty($comment_info))
279
-        $status = $comment_info->comment_approved;
278
+	if (!empty($comment_info))
279
+		$status = $comment_info->comment_approved;
280 280
 
281
-    if ($status == 'approve' || $status == 1) {
282
-        $status = 1;
283
-    } else {
284
-        $status = 0;
285
-    }
281
+	if ($status == 'approve' || $status == 1) {
282
+		$status = 1;
283
+	} else {
284
+		$status = 0;
285
+	}
286 286
 
287
-    $comment_info_ID = isset($comment_info->comment_ID) ? $comment_info->comment_ID : '';
288
-    $old_rating = geodir_get_commentoverall($comment_info_ID);
287
+	$comment_info_ID = isset($comment_info->comment_ID) ? $comment_info->comment_ID : '';
288
+	$old_rating = geodir_get_commentoverall($comment_info_ID);
289 289
 
290
-    $post_type = get_post_type($post_id);
290
+	$post_type = get_post_type($post_id);
291 291
 
292
-    $detail_table = $plugin_prefix . $post_type . '_detail';
292
+	$detail_table = $plugin_prefix . $post_type . '_detail';
293 293
 
294
-    if ($comment_id) {
294
+	if ($comment_id) {
295 295
 
296
-        $overall_rating = $old_rating;
296
+		$overall_rating = $old_rating;
297 297
 
298
-        if (isset($old_rating)) {
298
+		if (isset($old_rating)) {
299 299
 
300
-            $sqlqry = $wpdb->prepare("UPDATE " . GEODIR_REVIEW_TABLE . " SET
300
+			$sqlqry = $wpdb->prepare("UPDATE " . GEODIR_REVIEW_TABLE . " SET
301 301
 						overall_rating = %f,
302 302
 						status		= %s,
303 303
 						comment_content = %s 
304 304
 						WHERE comment_id = %d ", array($overall_rating, $status, $comment_info->comment_content, $comment_id));
305 305
 
306
-            $wpdb->query($sqlqry);
306
+			$wpdb->query($sqlqry);
307 307
 
308
-            //update rating
309
-            geodir_update_postrating($post_id, $post_type);
308
+			//update rating
309
+			geodir_update_postrating($post_id, $post_type);
310 310
 
311
-        }
311
+		}
312 312
 
313
-    }
313
+	}
314 314
 
315 315
 }
316 316
 
@@ -329,41 +329,41 @@  discard block
 block discarded – undo
329 329
 function geodir_update_rating($comment_id = 0)
330 330
 {
331 331
 
332
-    global $wpdb, $plugin_prefix, $user_ID;
332
+	global $wpdb, $plugin_prefix, $user_ID;
333 333
 
334
-    $comment_info = get_comment($comment_id);
334
+	$comment_info = get_comment($comment_id);
335 335
 
336
-    $post_id = $comment_info->comment_post_ID;
337
-    $status = $comment_info->comment_approved;
338
-    $old_rating = geodir_get_commentoverall($comment_info->comment_ID);
336
+	$post_id = $comment_info->comment_post_ID;
337
+	$status = $comment_info->comment_approved;
338
+	$old_rating = geodir_get_commentoverall($comment_info->comment_ID);
339 339
 
340
-    $post_type = get_post_type($post_id);
340
+	$post_type = get_post_type($post_id);
341 341
 
342
-    $detail_table = $plugin_prefix . $post_type . '_detail';
342
+	$detail_table = $plugin_prefix . $post_type . '_detail';
343 343
 
344
-    if (isset($_REQUEST['geodir_overallrating'])) {
344
+	if (isset($_REQUEST['geodir_overallrating'])) {
345 345
 
346
-        $overall_rating = $_REQUEST['geodir_overallrating'];
346
+		$overall_rating = $_REQUEST['geodir_overallrating'];
347 347
 
348
-        if (isset($comment_info->comment_parent) && (int)$comment_info->comment_parent == 0) {
349
-            $overall_rating = $overall_rating > 0 ? $overall_rating : '0';
348
+		if (isset($comment_info->comment_parent) && (int)$comment_info->comment_parent == 0) {
349
+			$overall_rating = $overall_rating > 0 ? $overall_rating : '0';
350 350
 
351
-            if (isset($old_rating)) {
351
+			if (isset($old_rating)) {
352 352
 
353
-                $sqlqry = $wpdb->prepare("UPDATE " . GEODIR_REVIEW_TABLE . " SET
353
+				$sqlqry = $wpdb->prepare("UPDATE " . GEODIR_REVIEW_TABLE . " SET
354 354
 						overall_rating = %f,
355 355
 						status		= %s,
356 356
 						comment_content	= %s 
357 357
 						WHERE comment_id = %d ", array($overall_rating, $status, $comment_info->comment_content, $comment_id));
358 358
 
359
-                $wpdb->query($sqlqry);
359
+				$wpdb->query($sqlqry);
360 360
 
361
-                //update rating
362
-                geodir_update_postrating($post_id, $post_type);
361
+				//update rating
362
+				geodir_update_postrating($post_id, $post_type);
363 363
 
364
-            }
365
-        }
366
-    }
364
+			}
365
+		}
366
+	}
367 367
 
368 368
 
369 369
 }
@@ -379,19 +379,19 @@  discard block
 block discarded – undo
379 379
  */
380 380
 function geodir_comment_delete_comment($comment_id)
381 381
 {
382
-    global $wpdb;
382
+	global $wpdb;
383 383
 
384
-    $review_info = geodir_get_review($comment_id);
385
-    if ($review_info) {
386
-        geodir_update_postrating($review_info->post_id);
387
-    }
384
+	$review_info = geodir_get_review($comment_id);
385
+	if ($review_info) {
386
+		geodir_update_postrating($review_info->post_id);
387
+	}
388 388
 
389
-    $wpdb->query(
390
-        $wpdb->prepare(
391
-            "DELETE FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id=%d",
392
-            array($comment_id)
393
-        )
394
-    );
389
+	$wpdb->query(
390
+		$wpdb->prepare(
391
+			"DELETE FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id=%d",
392
+			array($comment_id)
393
+		)
394
+	);
395 395
 
396 396
 }
397 397
 
@@ -407,21 +407,21 @@  discard block
 block discarded – undo
407 407
  * @return string The comment content.
408 408
  */
409 409
 function geodir_wrap_comment_text($content, $comment = '') {
410
-    if (!empty($comment->comment_post_ID) && geodir_cpt_has_rating_disabled((int)$comment->comment_post_ID)) {
411
-        if (!is_admin()) {
412
-            return '<div class="description">' . $content . '</div>';
413
-        } else {
414
-            return $content;
415
-        }
416
-    } else {
417
-        $rating = 0;
418
-        if (!empty($comment))
419
-            $rating = geodir_get_commentoverall($comment->comment_ID);
420
-        if ($rating != 0 && !is_admin()) {
421
-            return '<div><div class="gd-rating-text">' . __('Overall Rating', 'geodirectory') . ': <div class="rating">' . $rating . '</div></div>' . geodir_get_rating_stars($rating, $comment->comment_ID) . '</div><div class="description">' . $content . '</div>';
422
-        } else
423
-            return $content;
424
-    }
410
+	if (!empty($comment->comment_post_ID) && geodir_cpt_has_rating_disabled((int)$comment->comment_post_ID)) {
411
+		if (!is_admin()) {
412
+			return '<div class="description">' . $content . '</div>';
413
+		} else {
414
+			return $content;
415
+		}
416
+	} else {
417
+		$rating = 0;
418
+		if (!empty($comment))
419
+			$rating = geodir_get_commentoverall($comment->comment_ID);
420
+		if ($rating != 0 && !is_admin()) {
421
+			return '<div><div class="gd-rating-text">' . __('Overall Rating', 'geodirectory') . ': <div class="rating">' . $rating . '</div></div>' . geodir_get_rating_stars($rating, $comment->comment_ID) . '</div><div class="description">' . $content . '</div>';
422
+		} else
423
+			return $content;
424
+	}
425 425
 }
426 426
 
427 427
 
@@ -438,41 +438,41 @@  discard block
 block discarded – undo
438 438
  */
439 439
 function geodir_update_postrating($post_id = 0, $post_type = '', $delete = false)
440 440
 {
441
-    global $wpdb, $plugin_prefix, $comment;
442
-    if (!$post_type) {
443
-        $post_type = get_post_type($post_id);
444
-    }
445
-    $detail_table = $plugin_prefix . $post_type . '_detail';
446
-    $post_newrating = geodir_get_post_rating($post_id, 1);
447
-    $post_newrating_count = geodir_get_review_count_total($post_id);
441
+	global $wpdb, $plugin_prefix, $comment;
442
+	if (!$post_type) {
443
+		$post_type = get_post_type($post_id);
444
+	}
445
+	$detail_table = $plugin_prefix . $post_type . '_detail';
446
+	$post_newrating = geodir_get_post_rating($post_id, 1);
447
+	$post_newrating_count = geodir_get_review_count_total($post_id);
448 448
 
449 449
 
450
-    //$post_newrating = ( (float)$post_oldrating - (float)$old_rating ) + (float)$overall_rating ;
450
+	//$post_newrating = ( (float)$post_oldrating - (float)$old_rating ) + (float)$overall_rating ;
451 451
 
452
-    if ($wpdb->get_var("SHOW TABLES LIKE '" . $detail_table . "'") == $detail_table) {
452
+	if ($wpdb->get_var("SHOW TABLES LIKE '" . $detail_table . "'") == $detail_table) {
453 453
 
454
-        $wpdb->query(
455
-            $wpdb->prepare(
456
-                "UPDATE " . $detail_table . " SET
454
+		$wpdb->query(
455
+			$wpdb->prepare(
456
+				"UPDATE " . $detail_table . " SET
457 457
 						overall_rating = %f,
458 458
 						rating_count = %f
459 459
 						where post_id = %d",
460
-                array($post_newrating, $post_newrating_count, $post_id)
461
-            )
462
-        );
463
-
464
-        update_post_meta($post_id, 'overall_rating', $post_newrating);
465
-        update_post_meta($post_id, 'rating_count', $post_newrating_count);
466
-    }
467
-    /**
468
-     * Called after Updating post overall rating and rating count.
469
-     *
470
-     * @since 1.0.0
471
-     * @since 1.4.3 Added `$post_id` param.
472
-     * @package GeoDirectory
473
-     * @param int $post_id The post ID.
474
-     */
475
-    do_action('geodir_update_postrating',$post_id);
460
+				array($post_newrating, $post_newrating_count, $post_id)
461
+			)
462
+		);
463
+
464
+		update_post_meta($post_id, 'overall_rating', $post_newrating);
465
+		update_post_meta($post_id, 'rating_count', $post_newrating_count);
466
+	}
467
+	/**
468
+	 * Called after Updating post overall rating and rating count.
469
+	 *
470
+	 * @since 1.0.0
471
+	 * @since 1.4.3 Added `$post_id` param.
472
+	 * @package GeoDirectory
473
+	 * @param int $post_id The post ID.
474
+	 */
475
+	do_action('geodir_update_postrating',$post_id);
476 476
 
477 477
 }
478 478
 
@@ -490,29 +490,29 @@  discard block
 block discarded – undo
490 490
  */
491 491
 function geodir_get_postoverall($post_id = 0)
492 492
 {
493
-    global $wpdb, $plugin_prefix;
493
+	global $wpdb, $plugin_prefix;
494 494
 
495
-    $post_type = get_post_type($post_id);
496
-    $detail_table = $plugin_prefix . $post_type . '_detail';
495
+	$post_type = get_post_type($post_id);
496
+	$detail_table = $plugin_prefix . $post_type . '_detail';
497 497
 
498
-    if ($wpdb->get_var("SHOW TABLES LIKE '" . $detail_table . "'") == $detail_table) {
498
+	if ($wpdb->get_var("SHOW TABLES LIKE '" . $detail_table . "'") == $detail_table) {
499 499
 
500
-        $post_ratings = $wpdb->get_var(
501
-            $wpdb->prepare(
502
-                "SELECT overall_rating FROM " . $detail_table . " WHERE post_id = %d",
503
-                array($post_id)
504
-            )
505
-        );
500
+		$post_ratings = $wpdb->get_var(
501
+			$wpdb->prepare(
502
+				"SELECT overall_rating FROM " . $detail_table . " WHERE post_id = %d",
503
+				array($post_id)
504
+			)
505
+		);
506 506
 
507 507
 
508
-    } else {
509
-        $post_ratings = get_post_meta($post_id, 'overall_rating');
510
-    }
508
+	} else {
509
+		$post_ratings = get_post_meta($post_id, 'overall_rating');
510
+	}
511 511
 
512
-    if ($post_ratings)
513
-        return $post_ratings;
514
-    else
515
-        return false;
512
+	if ($post_ratings)
513
+		return $post_ratings;
514
+	else
515
+		return false;
516 516
 }
517 517
 
518 518
 
@@ -529,19 +529,19 @@  discard block
 block discarded – undo
529 529
  */
530 530
 function geodir_get_review($comment_id = 0)
531 531
 {
532
-    global $wpdb;
533
-
534
-    $reatings = $wpdb->get_row(
535
-        $wpdb->prepare(
536
-            "SELECT * FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id = %d",
537
-            array($comment_id)
538
-        )
539
-    );
540
-
541
-    if (!empty($reatings))
542
-        return $reatings;
543
-    else
544
-        return false;
532
+	global $wpdb;
533
+
534
+	$reatings = $wpdb->get_row(
535
+		$wpdb->prepare(
536
+			"SELECT * FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id = %d",
537
+			array($comment_id)
538
+		)
539
+	);
540
+
541
+	if (!empty($reatings))
542
+		return $reatings;
543
+	else
544
+		return false;
545 545
 }
546 546
 
547 547
 /**
@@ -557,19 +557,19 @@  discard block
 block discarded – undo
557 557
  */
558 558
 function geodir_get_review_total($post_id = 0)
559 559
 {
560
-    global $wpdb;
561
-
562
-    $results = $wpdb->get_var(
563
-        $wpdb->prepare(
564
-            "SELECT SUM(overall_rating) FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id = %d AND status=1 AND overall_rating>0",
565
-            array($post_id)
566
-        )
567
-    );
568
-
569
-    if (!empty($results))
570
-        return $results;
571
-    else
572
-        return false;
560
+	global $wpdb;
561
+
562
+	$results = $wpdb->get_var(
563
+		$wpdb->prepare(
564
+			"SELECT SUM(overall_rating) FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id = %d AND status=1 AND overall_rating>0",
565
+			array($post_id)
566
+		)
567
+	);
568
+
569
+	if (!empty($results))
570
+		return $results;
571
+	else
572
+		return false;
573 573
 }
574 574
 
575 575
 /**
@@ -585,18 +585,18 @@  discard block
 block discarded – undo
585 585
  */
586 586
 function geodir_get_review_count_by_user_id($user_id = 0)
587 587
 {
588
-    global $wpdb;
589
-    $results = $wpdb->get_var(
590
-        $wpdb->prepare(
591
-            "SELECT COUNT(overall_rating) FROM " . GEODIR_REVIEW_TABLE . " WHERE user_id = %d AND status=1 AND overall_rating>0",
592
-            array($user_id)
593
-        )
594
-    );
595
-
596
-    if (!empty($results))
597
-        return $results;
598
-    else
599
-        return false;
588
+	global $wpdb;
589
+	$results = $wpdb->get_var(
590
+		$wpdb->prepare(
591
+			"SELECT COUNT(overall_rating) FROM " . GEODIR_REVIEW_TABLE . " WHERE user_id = %d AND status=1 AND overall_rating>0",
592
+			array($user_id)
593
+		)
594
+	);
595
+
596
+	if (!empty($results))
597
+		return $results;
598
+	else
599
+		return false;
600 600
 }
601 601
 
602 602
 /**
@@ -614,27 +614,27 @@  discard block
 block discarded – undo
614 614
  */
615 615
 function geodir_get_post_rating($post_id = 0, $force_query = 0)
616 616
 {
617
-    global $wpdb, $post;
618
-
619
-    if (isset($post->ID) && $post->ID == $post_id && !$force_query) {
620
-        if (isset($post->rating_count) && $post->rating_count > 0 && isset($post->overall_rating) && $post->overall_rating > 0) {
621
-            return $post->overall_rating;
622
-        } else {
623
-            return 0;
624
-        }
625
-    }
626
-
627
-    $results = $wpdb->get_var(
628
-        $wpdb->prepare(
629
-            "SELECT COALESCE(avg(overall_rating),0) FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id = %d AND status=1 AND overall_rating>0",
630
-            array($post_id)
631
-        )
632
-    );
633
-
634
-    if (!empty($results))
635
-        return $results;
636
-    else
637
-        return false;
617
+	global $wpdb, $post;
618
+
619
+	if (isset($post->ID) && $post->ID == $post_id && !$force_query) {
620
+		if (isset($post->rating_count) && $post->rating_count > 0 && isset($post->overall_rating) && $post->overall_rating > 0) {
621
+			return $post->overall_rating;
622
+		} else {
623
+			return 0;
624
+		}
625
+	}
626
+
627
+	$results = $wpdb->get_var(
628
+		$wpdb->prepare(
629
+			"SELECT COALESCE(avg(overall_rating),0) FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id = %d AND status=1 AND overall_rating>0",
630
+			array($post_id)
631
+		)
632
+	);
633
+
634
+	if (!empty($results))
635
+		return $results;
636
+	else
637
+		return false;
638 638
 }
639 639
 
640 640
 /**
@@ -650,19 +650,19 @@  discard block
 block discarded – undo
650 650
  */
651 651
 function geodir_get_review_count_total($post_id = 0)
652 652
 {
653
-    global $wpdb;
654
-
655
-    $results = $wpdb->get_var(
656
-        $wpdb->prepare(
657
-            "SELECT COUNT(overall_rating) FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id = %d AND status=1 AND overall_rating>0",
658
-            array($post_id)
659
-        )
660
-    );
661
-
662
-    if (!empty($results))
663
-        return $results;
664
-    else
665
-        return false;
653
+	global $wpdb;
654
+
655
+	$results = $wpdb->get_var(
656
+		$wpdb->prepare(
657
+			"SELECT COUNT(overall_rating) FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id = %d AND status=1 AND overall_rating>0",
658
+			array($post_id)
659
+		)
660
+	);
661
+
662
+	if (!empty($results))
663
+		return $results;
664
+	else
665
+		return false;
666 666
 }
667 667
 
668 668
 /**
@@ -679,20 +679,20 @@  discard block
 block discarded – undo
679 679
  */
680 680
 function geodir_get_comments_number($post_id = 0)
681 681
 {
682
-    global $wpdb;
682
+	global $wpdb;
683 683
 
684
-    $results = $wpdb->get_var(
685
-        $wpdb->prepare(
686
-            "SELECT COUNT(overall_rating) FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id = %d AND status=1 AND overall_rating>0",
687
-            array($post_id)
688
-        )
689
-    );
684
+	$results = $wpdb->get_var(
685
+		$wpdb->prepare(
686
+			"SELECT COUNT(overall_rating) FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id = %d AND status=1 AND overall_rating>0",
687
+			array($post_id)
688
+		)
689
+	);
690 690
 
691 691
 
692
-    if (!empty($results))
693
-        return $results;
694
-    else
695
-        return false;
692
+	if (!empty($results))
693
+		return $results;
694
+	else
695
+		return false;
696 696
 }
697 697
 
698 698
 /**
@@ -708,19 +708,19 @@  discard block
 block discarded – undo
708 708
  */
709 709
 function geodir_get_commentoverall($comment_id = 0)
710 710
 {
711
-    global $wpdb;
712
-
713
-    $reatings = $wpdb->get_var(
714
-        $wpdb->prepare(
715
-            "SELECT overall_rating FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id = %d",
716
-            array($comment_id)
717
-        )
718
-    );
719
-
720
-    if ($reatings)
721
-        return $reatings;
722
-    else
723
-        return false;
711
+	global $wpdb;
712
+
713
+	$reatings = $wpdb->get_var(
714
+		$wpdb->prepare(
715
+			"SELECT overall_rating FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id = %d",
716
+			array($comment_id)
717
+		)
718
+	);
719
+
720
+	if ($reatings)
721
+		return $reatings;
722
+	else
723
+		return false;
724 724
 }
725 725
 
726 726
 /**
@@ -734,7 +734,7 @@  discard block
 block discarded – undo
734 734
  */
735 735
 function geodir_get_commentoverall_number($post_id = 0)
736 736
 {
737
-    return geodir_get_post_rating($post_id);
737
+	return geodir_get_post_rating($post_id);
738 738
 }
739 739
 
740 740
 
@@ -752,102 +752,102 @@  discard block
 block discarded – undo
752 752
  */
753 753
 function geodir_comment_template($comment_template)
754 754
 {
755
-    global $post;
755
+	global $post;
756 756
 
757
-    $post_types = geodir_get_posttypes();
757
+	$post_types = geodir_get_posttypes();
758 758
 
759
-    if (!(is_singular() && (have_comments() || (isset($post->comment_status) && 'open' == $post->comment_status)))) {
760
-        return;
761
-    }
762
-    if (in_array($post->post_type, $post_types)) { // assuming there is a post type called business
763
-        if (geodir_cpt_has_rating_disabled($post->post_type)) {
764
-            return $comment_template;
765
-        }
759
+	if (!(is_singular() && (have_comments() || (isset($post->comment_status) && 'open' == $post->comment_status)))) {
760
+		return;
761
+	}
762
+	if (in_array($post->post_type, $post_types)) { // assuming there is a post type called business
763
+		if (geodir_cpt_has_rating_disabled($post->post_type)) {
764
+			return $comment_template;
765
+		}
766 766
         
767
-        $template = locate_template(array("geodirectory/reviews.php")); // Use theme template if available
768
-        if (!$template) {
769
-            $template = dirname(__FILE__) . '/reviews.php';
770
-        }
771
-        return $template;
772
-    }
767
+		$template = locate_template(array("geodirectory/reviews.php")); // Use theme template if available
768
+		if (!$template) {
769
+			$template = dirname(__FILE__) . '/reviews.php';
770
+		}
771
+		return $template;
772
+	}
773 773
 }
774 774
 
775 775
 add_filter("comments_template", "geodir_comment_template");
776 776
 
777 777
 
778 778
 if (!function_exists('geodir_comment')) {
779
-    /**
780
-     * Comment HTML markup.
781
-     *
782
-     * @since 1.0.0
783
-     * @package GeoDirectory
784
-     * @global object $post The current post object.
785
-     * @param object $comment The comment object.
786
-     * @param string|array $args {
787
-     *     Optional. Formatting options.
788
-     *
789
-     *     @type object $walker            Instance of a Walker class to list comments. Default null.
790
-     *     @type int    $max_depth         The maximum comments depth. Default empty.
791
-     *     @type string $style             The style of list ordering. Default 'ul'. Accepts 'ul', 'ol'.
792
-     *     @type string $callback          Callback function to use. Default null.
793
-     *     @type string $end-callback      Callback function to use at the end. Default null.
794
-     *     @type string $type              Type of comments to list.
795
-     *                                     Default 'all'. Accepts 'all', 'comment', 'pingback', 'trackback', 'pings'.
796
-     *     @type int    $page              Page ID to list comments for. Default empty.
797
-     *     @type int    $per_page          Number of comments to list per page. Default empty.
798
-     *     @type int    $avatar_size       Height and width dimensions of the avatar size. Default 32.
799
-     *     @type string $reverse_top_level Ordering of the listed comments. Default null. Accepts 'desc', 'asc'.
800
-     *     @type bool   $reverse_children  Whether to reverse child comments in the list. Default null.
801
-     *     @type string $format            How to format the comments list.
802
-     *                                     Default 'html5' if the theme supports it. Accepts 'html5', 'xhtml'.
803
-     *     @type bool   $short_ping        Whether to output short pings. Default false.
804
-     *     @type bool   $echo              Whether to echo the output or return it. Default true.
805
-     * }
806
-     * @param int $depth Depth of comment.
807
-     */
808
-    function geodir_comment($comment, $args, $depth)
809
-    {
810
-        $GLOBALS['comment'] = $comment;
811
-        switch ($comment->comment_type) :
812
-            case 'pingback' :
813
-            case 'trackback' :
814
-                // Display trackbacks differently than normal comments.
815
-                ?>
779
+	/**
780
+	 * Comment HTML markup.
781
+	 *
782
+	 * @since 1.0.0
783
+	 * @package GeoDirectory
784
+	 * @global object $post The current post object.
785
+	 * @param object $comment The comment object.
786
+	 * @param string|array $args {
787
+	 *     Optional. Formatting options.
788
+	 *
789
+	 *     @type object $walker            Instance of a Walker class to list comments. Default null.
790
+	 *     @type int    $max_depth         The maximum comments depth. Default empty.
791
+	 *     @type string $style             The style of list ordering. Default 'ul'. Accepts 'ul', 'ol'.
792
+	 *     @type string $callback          Callback function to use. Default null.
793
+	 *     @type string $end-callback      Callback function to use at the end. Default null.
794
+	 *     @type string $type              Type of comments to list.
795
+	 *                                     Default 'all'. Accepts 'all', 'comment', 'pingback', 'trackback', 'pings'.
796
+	 *     @type int    $page              Page ID to list comments for. Default empty.
797
+	 *     @type int    $per_page          Number of comments to list per page. Default empty.
798
+	 *     @type int    $avatar_size       Height and width dimensions of the avatar size. Default 32.
799
+	 *     @type string $reverse_top_level Ordering of the listed comments. Default null. Accepts 'desc', 'asc'.
800
+	 *     @type bool   $reverse_children  Whether to reverse child comments in the list. Default null.
801
+	 *     @type string $format            How to format the comments list.
802
+	 *                                     Default 'html5' if the theme supports it. Accepts 'html5', 'xhtml'.
803
+	 *     @type bool   $short_ping        Whether to output short pings. Default false.
804
+	 *     @type bool   $echo              Whether to echo the output or return it. Default true.
805
+	 * }
806
+	 * @param int $depth Depth of comment.
807
+	 */
808
+	function geodir_comment($comment, $args, $depth)
809
+	{
810
+		$GLOBALS['comment'] = $comment;
811
+		switch ($comment->comment_type) :
812
+			case 'pingback' :
813
+			case 'trackback' :
814
+				// Display trackbacks differently than normal comments.
815
+				?>
816 816
                 <li <?php comment_class('geodir-comment'); ?> id="comment-<?php comment_ID(); ?>">
817 817
                 <p><?php _e('Pingback:', 'geodirectory'); ?> <?php comment_author_link(); ?> <?php edit_comment_link(__('(Edit)', 'geodirectory'), '<span class="edit-link">', '</span>'); ?></p>
818 818
                 <?php
819
-                break;
820
-            default :
821
-                // Proceed with normal comments.
822
-                global $post;
823
-                ?>
819
+				break;
820
+			default :
821
+				// Proceed with normal comments.
822
+				global $post;
823
+				?>
824 824
             <li <?php comment_class('geodir-comment'); ?> id="li-comment-<?php comment_ID(); ?>">
825 825
                 <article id="comment-<?php comment_ID(); ?>" class="comment">
826 826
                     <header class="comment-meta comment-author vcard">
827 827
                         <?php
828
-                        /**
829
-                         * Filter to modify comment avatar size
830
-                         *
831
-                         * You can use this filter to change comment avatar size.
832
-                         *
833
-                         * @since 1.0.0
834
-                         * @package GeoDirectory
835
-                         */
836
-                        $avatar_size = apply_filters('geodir_comment_avatar_size', 44);
837
-                        echo get_avatar($comment, $avatar_size);
838
-                        printf('<cite><b class="reviewer">%1$s</b> %2$s</cite>',
839
-                            get_comment_author_link(),
840
-                            // If current post author is also comment author, make it known visually.
841
-                            ($comment->user_id === $post->post_author) ? '<span>' . __('Post author', 'geodirectory') . '</span>' : ''
842
-                        );
843
-                        echo "<span class='item'><small><span class='fn'>$post->post_title</span></small></span>";
844
-                        printf('<a href="%1$s"><time datetime="%2$s" class="dtreviewed">%3$s<span class="value-title" title="%2$s"></span></time></a>',
845
-                            esc_url(get_comment_link($comment->comment_ID)),
846
-                            get_comment_time('c'),
847
-                            /* translators: 1: date, 2: time */
848
-                            sprintf(__('%1$s at %2$s', 'geodirectory'), get_comment_date(), get_comment_time())
849
-                        );
850
-                        ?>
828
+						/**
829
+						 * Filter to modify comment avatar size
830
+						 *
831
+						 * You can use this filter to change comment avatar size.
832
+						 *
833
+						 * @since 1.0.0
834
+						 * @package GeoDirectory
835
+						 */
836
+						$avatar_size = apply_filters('geodir_comment_avatar_size', 44);
837
+						echo get_avatar($comment, $avatar_size);
838
+						printf('<cite><b class="reviewer">%1$s</b> %2$s</cite>',
839
+							get_comment_author_link(),
840
+							// If current post author is also comment author, make it known visually.
841
+							($comment->user_id === $post->post_author) ? '<span>' . __('Post author', 'geodirectory') . '</span>' : ''
842
+						);
843
+						echo "<span class='item'><small><span class='fn'>$post->post_title</span></small></span>";
844
+						printf('<a href="%1$s"><time datetime="%2$s" class="dtreviewed">%3$s<span class="value-title" title="%2$s"></span></time></a>',
845
+							esc_url(get_comment_link($comment->comment_ID)),
846
+							get_comment_time('c'),
847
+							/* translators: 1: date, 2: time */
848
+							sprintf(__('%1$s at %2$s', 'geodirectory'), get_comment_date(), get_comment_time())
849
+						);
850
+						?>
851 851
                     </header>
852 852
                     <!-- .comment-meta -->
853 853
 
@@ -871,47 +871,47 @@  discard block
 block discarded – undo
871 871
                 </article>
872 872
                 <!-- #comment-## -->
873 873
                 <?php
874
-                break;
875
-        endswitch; // end comment_type check
876
-    }
874
+				break;
875
+		endswitch; // end comment_type check
876
+	}
877 877
 }
878 878
 
879 879
 
880 880
 add_filter('get_comments_number', 'geodir_fix_comment_count', 10, 2);
881 881
 if (!function_exists('geodir_fix_comment_count')) {
882
-    /**
883
-     * Fix comment count by not listing replies as reviews
884
-     *
885
-     * @since 1.0.0
886
-     * @package GeoDirectory
887
-     * @global object $post The current post object.
888
-     * @param int $count The comment count.
889
-     * @param int $post_id The post ID.
890
-     * @todo $post is unreachable since the function return the count before that variable.
891
-     * @return bool|null|string The comment count.
892
-     */
893
-    function geodir_fix_comment_count($count, $post_id)
894
-    {
895
-        if (!is_admin() || strpos($_SERVER['REQUEST_URI'], 'admin-ajax.php')) {
896
-            global $post;
897
-            $post_types = geodir_get_posttypes();
898
-
899
-            if (in_array(get_post_type($post_id), $post_types) && !geodir_cpt_has_rating_disabled((int)$post_id)) {
900
-                $review_count = geodir_get_review_count_total($post_id);
901
-                return $review_count;
902
-
903
-                if ($post && isset($post->rating_count)) {
904
-                    return $post->rating_count;
905
-                } else {
906
-                    return geodir_get_comments_number($post_id);
907
-                }
908
-            } else {
909
-                return $count;
910
-            }
911
-        } else {
912
-            return $count;
913
-        }
914
-    }
882
+	/**
883
+	 * Fix comment count by not listing replies as reviews
884
+	 *
885
+	 * @since 1.0.0
886
+	 * @package GeoDirectory
887
+	 * @global object $post The current post object.
888
+	 * @param int $count The comment count.
889
+	 * @param int $post_id The post ID.
890
+	 * @todo $post is unreachable since the function return the count before that variable.
891
+	 * @return bool|null|string The comment count.
892
+	 */
893
+	function geodir_fix_comment_count($count, $post_id)
894
+	{
895
+		if (!is_admin() || strpos($_SERVER['REQUEST_URI'], 'admin-ajax.php')) {
896
+			global $post;
897
+			$post_types = geodir_get_posttypes();
898
+
899
+			if (in_array(get_post_type($post_id), $post_types) && !geodir_cpt_has_rating_disabled((int)$post_id)) {
900
+				$review_count = geodir_get_review_count_total($post_id);
901
+				return $review_count;
902
+
903
+				if ($post && isset($post->rating_count)) {
904
+					return $post->rating_count;
905
+				} else {
906
+					return geodir_get_comments_number($post_id);
907
+				}
908
+			} else {
909
+				return $count;
910
+			}
911
+		} else {
912
+			return $count;
913
+		}
914
+	}
915 915
 }
916 916
 
917 917
 /**
@@ -929,14 +929,14 @@  discard block
 block discarded – undo
929 929
  */
930 930
 function geodir_get_rating_stars($rating, $post_id, $small = false)
931 931
 {
932
-    if (!empty($post_id) && geodir_cpt_has_rating_disabled((int)$post_id)) {
933
-        return NULL;
934
-    }
935
-    $a_rating = $rating / 5 * 100;
936
-
937
-    if ($small) {
938
-        $r_html = '<div class="rating"><div class="gd_rating_map" data-average="' . $rating . '" data-id="' . $post_id . '"><div class="geodir_RatingColor" ></div><div class="geodir_RatingAverage_small" style="width: ' . $a_rating . '%;"></div><div class="geodir_Star_small"></div></div></div>';
939
-    } else {
932
+	if (!empty($post_id) && geodir_cpt_has_rating_disabled((int)$post_id)) {
933
+		return NULL;
934
+	}
935
+	$a_rating = $rating / 5 * 100;
936
+
937
+	if ($small) {
938
+		$r_html = '<div class="rating"><div class="gd_rating_map" data-average="' . $rating . '" data-id="' . $post_id . '"><div class="geodir_RatingColor" ></div><div class="geodir_RatingAverage_small" style="width: ' . $a_rating . '%;"></div><div class="geodir_Star_small"></div></div></div>';
939
+	} else {
940 940
 		if (function_exists('geodir_reviewrating_draw_overall_rating')) {
941 941
 			// Show rating stars from review rating manager
942 942
 			$r_html = geodir_reviewrating_draw_overall_rating($rating);
@@ -953,8 +953,8 @@  discard block
 block discarded – undo
953 953
 			}
954 954
 			$r_html = '<div class="geodir-rating" style="' . $attach_style . '"><div class="gd_rating_show" data-average="' . $rating . '" data-id="' . $post_id . '"><div class="geodir_RatingAverage" style="width: ' . $a_rating . '%;"></div><div class="geodir_Star">' . $rating_img . $rating_img . $rating_img . $rating_img . $rating_img . '</div></div></div>';
955 955
 		}
956
-    }
957
-    return apply_filters('geodir_get_rating_stars_html', $r_html, $rating, 5);
956
+	}
957
+	return apply_filters('geodir_get_rating_stars_html', $r_html, $rating, 5);
958 958
 }
959 959
 
960 960
 /**
@@ -968,23 +968,23 @@  discard block
 block discarded – undo
968 968
 function geodir_is_reviews_show($pageview = '')
969 969
 {
970 970
 
971
-    $active_tabs = get_option('geodir_detail_page_tabs_excluded');
972
-
973
-    $is_display = true;
974
-    if (!empty($active_tabs) && in_array('reviews', $active_tabs))
975
-        $is_display = false;
976
-
977
-    /**
978
-     * Filter to change display value.
979
-     *
980
-     * You can use this filter to change the is_display value.
981
-     *
982
-     * @since 1.0.0
983
-     * @package GeoDirectory
984
-     * @param bool $is_display Display ratings when set to true.
985
-     * @param string $pageview The view template. Ex: listview, gridview etc.
986
-     */
987
-    return apply_filters('geodir_is_reviews_show', $is_display, $pageview);
971
+	$active_tabs = get_option('geodir_detail_page_tabs_excluded');
972
+
973
+	$is_display = true;
974
+	if (!empty($active_tabs) && in_array('reviews', $active_tabs))
975
+		$is_display = false;
976
+
977
+	/**
978
+	 * Filter to change display value.
979
+	 *
980
+	 * You can use this filter to change the is_display value.
981
+	 *
982
+	 * @since 1.0.0
983
+	 * @package GeoDirectory
984
+	 * @param bool $is_display Display ratings when set to true.
985
+	 * @param string $pageview The view template. Ex: listview, gridview etc.
986
+	 */
987
+	return apply_filters('geodir_is_reviews_show', $is_display, $pageview);
988 988
 }
989 989
 
990 990
 
@@ -992,9 +992,9 @@  discard block
 block discarded – undo
992 992
  * If Disqus plugin is active, do some fixes to show on blogs but no on GD post types
993 993
  */
994 994
 if(function_exists('dsq_can_replace')) {
995
-    remove_filter('comments_template', 'dsq_comments_template');
996
-    add_filter('comments_template', 'dsq_comments_template', 100);
997
-    add_filter('pre_option_disqus_active', 'geodir_option_disqus_active',10,1);
995
+	remove_filter('comments_template', 'dsq_comments_template');
996
+	add_filter('comments_template', 'dsq_comments_template', 100);
997
+	add_filter('pre_option_disqus_active', 'geodir_option_disqus_active',10,1);
998 998
 }
999 999
 
1000 1000
 
@@ -1008,14 +1008,14 @@  discard block
 block discarded – undo
1008 1008
  * @return string `1` if active `0` if disabled.
1009 1009
  */
1010 1010
 function geodir_option_disqus_active($disqus_active){
1011
-    global $post;
1012
-    $all_postypes = geodir_get_posttypes();
1011
+	global $post;
1012
+	$all_postypes = geodir_get_posttypes();
1013 1013
 
1014
-    if(isset($post->post_type) && is_array($all_postypes) && in_array($post->post_type,$all_postypes)){
1015
-        $disqus_active = '0';
1016
-    }
1014
+	if(isset($post->post_type) && is_array($all_postypes) && in_array($post->post_type,$all_postypes)){
1015
+		$disqus_active = '0';
1016
+	}
1017 1017
 
1018
-    return $disqus_active;
1018
+	return $disqus_active;
1019 1019
 }
1020 1020
 
1021 1021
 /**
@@ -1029,23 +1029,23 @@  discard block
 block discarded – undo
1029 1029
  * @return array Modified tabs array.
1030 1030
  */
1031 1031
 function geodir_detail_reviews_tab_title($tabs_arr) {
1032
-    $post_type = geodir_get_current_posttype();
1032
+	$post_type = geodir_get_current_posttype();
1033 1033
 
1034
-    if (!empty($tabs_arr) && !empty($tabs_arr['reviews']) && isset($tabs_arr['reviews']['heading_text']) && $post_type != '' && geodir_cpt_has_rating_disabled($post_type)) {
1035
-        $label_reviews = __('Comments', 'geodirectory');
1034
+	if (!empty($tabs_arr) && !empty($tabs_arr['reviews']) && isset($tabs_arr['reviews']['heading_text']) && $post_type != '' && geodir_cpt_has_rating_disabled($post_type)) {
1035
+		$label_reviews = __('Comments', 'geodirectory');
1036 1036
         
1037
-        if (defined('GEODIR_CP_VERSION')) {
1038
-            $post_types = geodir_get_posttypes('array');
1037
+		if (defined('GEODIR_CP_VERSION')) {
1038
+			$post_types = geodir_get_posttypes('array');
1039 1039
             
1040
-            if (!empty($post_types[$post_type]['labels']['label_reviews'])) {
1041
-                $label_reviews = stripslashes(__($post_types[$post_type]['labels']['label_reviews'], 'geodirectory'));
1042
-            }
1043
-        }
1040
+			if (!empty($post_types[$post_type]['labels']['label_reviews'])) {
1041
+				$label_reviews = stripslashes(__($post_types[$post_type]['labels']['label_reviews'], 'geodirectory'));
1042
+			}
1043
+		}
1044 1044
         
1045
-        $tabs_arr['reviews']['heading_text'] = $label_reviews;
1046
-    }
1045
+		$tabs_arr['reviews']['heading_text'] = $label_reviews;
1046
+	}
1047 1047
     
1048
-    return $tabs_arr;
1048
+	return $tabs_arr;
1049 1049
 }
1050 1050
 add_filter('geodir_detail_page_tab_list_extend', 'geodir_detail_reviews_tab_title', 1000, 1);
1051 1051
 
@@ -1056,13 +1056,13 @@  discard block
 block discarded – undo
1056 1056
  * @since 1.6.21
1057 1057
  */
1058 1058
 function geodir_jetpack_disable_comments(){
1059
-    //only run if jetpack installed
1060
-    if(defined('JETPACK__VERSION')){
1061
-        $post_types = geodir_get_posttypes();
1062
-        foreach($post_types as $post_type){
1063
-            add_filter('jetpack_comment_form_enabled_for_' . $post_type, '__return_false');
1064
-        }
1065
-    }
1059
+	//only run if jetpack installed
1060
+	if(defined('JETPACK__VERSION')){
1061
+		$post_types = geodir_get_posttypes();
1062
+		foreach($post_types as $post_type){
1063
+			add_filter('jetpack_comment_form_enabled_for_' . $post_type, '__return_false');
1064
+		}
1065
+	}
1066 1066
 }
1067 1067
 
1068 1068
 add_action('plugins_loaded','geodir_jetpack_disable_comments');
@@ -1077,13 +1077,13 @@  discard block
 block discarded – undo
1077 1077
  * @return bool True if allowed otherwise False.
1078 1078
  */
1079 1079
 function geodir_check_reviews_open( $open, $post_id ) {
1080
-    if ( $open && $post_id && geodir_is_page( 'detail' ) ) {
1081
-        if ( in_array( get_post_status( $post_id ), array( 'draft', 'pending', 'auto-draft', 'trash' ) ) ) {
1082
-            $open = false;
1083
-        }
1084
-    }
1080
+	if ( $open && $post_id && geodir_is_page( 'detail' ) ) {
1081
+		if ( in_array( get_post_status( $post_id ), array( 'draft', 'pending', 'auto-draft', 'trash' ) ) ) {
1082
+			$open = false;
1083
+		}
1084
+	}
1085 1085
     
1086
-    return $open;
1086
+	return $open;
1087 1087
 }
1088 1088
 add_filter( 'comments_open', 'geodir_check_reviews_open', 10, 2 );
1089 1089
 
@@ -1098,10 +1098,10 @@  discard block
 block discarded – undo
1098 1098
  * @return string Filtered comment content.
1099 1099
  */
1100 1100
 function geodir_remove_img_tags_from_comment( $comment_text, $comment = array(), $args = array() ) {
1101
-    if ( !empty( $comment_text ) && !empty( $comment ) && strpos( $comment_text, '[img' ) !== false && strpos( get_post_type( $comment->comment_post_ID ), 'gd_' ) === 0 ) {
1102
-        $comment_text = preg_replace( '#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_text );
1103
-        $comment_text = trim( $comment_text );
1104
-    }
1105
-    return $comment_text;
1101
+	if ( !empty( $comment_text ) && !empty( $comment ) && strpos( $comment_text, '[img' ) !== false && strpos( get_post_type( $comment->comment_post_ID ), 'gd_' ) === 0 ) {
1102
+		$comment_text = preg_replace( '#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_text );
1103
+		$comment_text = trim( $comment_text );
1104
+	}
1105
+	return $comment_text;
1106 1106
 }
1107 1107
 add_filter( 'comment_text', 'geodir_remove_img_tags_from_comment', 10, 3 );
1108 1108
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory-functions/general_functions.php 3 patches
Braces   +5 added lines, -3 removed lines patch added patch discarded remove patch
@@ -763,7 +763,7 @@  discard block
 block discarded – undo
763 763
 			$post_author = get_post_field( 'post_author', $post_id );
764 764
 			if(is_super_admin( $post_author  )){// if admin probably not the post author so change name
765 765
 				$toEmailName = __('Business Owner','geodirectory');
766
-			}elseif(defined('GEODIRCLAIM_VERSION') && geodir_get_post_meta($post_id,'claimed')!='1'){// if claim manager installed but listing not claimed
766
+			} elseif(defined('GEODIRCLAIM_VERSION') && geodir_get_post_meta($post_id,'claimed')!='1'){// if claim manager installed but listing not claimed
767 767
 				$toEmailName = __('Business Owner','geodirectory');
768 768
 			}
769 769
 
@@ -1623,12 +1623,14 @@  discard block
 block discarded – undo
1623 1623
 	 */
1624 1624
 	function geodir_allow_wpadmin() {
1625 1625
 		global $wpdb;
1626
-		if ( get_option( 'geodir_allow_wpadmin' ) == '0' && is_user_logged_in() && ( ! defined( 'DOING_AJAX' ) ) ) // checking action in request to allow ajax request go through
1626
+		if ( get_option( 'geodir_allow_wpadmin' ) == '0' && is_user_logged_in() && ( ! defined( 'DOING_AJAX' ) ) ) {
1627
+			// checking action in request to allow ajax request go through
1627 1628
 		{
1628 1629
 			if ( current_user_can( 'administrator' ) ) {
1629 1630
 			} else {
1630 1631
 
1631
-				wp_redirect( home_url() );
1632
+				wp_redirect( home_url() );
1633
+		}
1632 1634
 				exit;
1633 1635
 			}
1634 1636
 
Please login to merge, or discard this patch.
Indentation   +39 added lines, -39 removed lines patch added patch discarded remove patch
@@ -327,7 +327,7 @@  discard block
 block discarded – undo
327 327
 			break;
328 328
 		case 'preview':
329 329
 			if ( ( is_page() && get_query_var( 'page_id' ) == geodir_preview_page_id() ) && isset( $_REQUEST['listing_type'] )
330
-			     && in_array( $_REQUEST['listing_type'], geodir_get_posttypes() )
330
+				 && in_array( $_REQUEST['listing_type'], geodir_get_posttypes() )
331 331
 			) {
332 332
 				return true;
333 333
 			}
@@ -528,9 +528,9 @@  discard block
 block discarded – undo
528 528
 
529 529
 //check if homepage
530 530
 		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] )
531
-		     && ! isset( $wp->query_vars['page_id'] )
532
-		     && ! isset( $wp->query_vars['pagename'] )
533
-		     && is_page_geodir_home()
531
+			 && ! isset( $wp->query_vars['page_id'] )
532
+			 && ! isset( $wp->query_vars['pagename'] )
533
+			 && is_page_geodir_home()
534 534
 		) {
535 535
 			$wp->query_vars['gd_is_geodir_page'] = true;
536 536
 		}
@@ -715,8 +715,8 @@  discard block
 block discarded – undo
715 715
 		$deltaLatitude  = deg2rad( (float) $point2['latitude'] - (float) $point1['latitude'] );
716 716
 		$deltaLongitude = deg2rad( (float) $point2['longitude'] - (float) $point1['longitude'] );
717 717
 		$a              = sin( $deltaLatitude / 2 ) * sin( $deltaLatitude / 2 ) +
718
-		                  cos( deg2rad( (float) $point1['latitude'] ) ) * cos( deg2rad( (float) $point2['latitude'] ) ) *
719
-		                  sin( $deltaLongitude / 2 ) * sin( $deltaLongitude / 2 );
718
+						  cos( deg2rad( (float) $point1['latitude'] ) ) * cos( deg2rad( (float) $point2['latitude'] ) ) *
719
+						  sin( $deltaLongitude / 2 ) * sin( $deltaLongitude / 2 );
720 720
 		$c              = 2 * atan2( sqrt( $a ), sqrt( 1 - $a ) );
721 721
 		$distance       = $earthMeanRadius * $c;
722 722
 
@@ -3866,10 +3866,10 @@  discard block
 block discarded – undo
3866 3866
 			$gridview_columns_widget = '';
3867 3867
 		}
3868 3868
 			/**
3869
-		 * Filter the widget listing listview template path.
3870
-		 *
3871
-		 * @since 1.0.0
3872
-		 */
3869
+			 * Filter the widget listing listview template path.
3870
+			 *
3871
+			 * @since 1.0.0
3872
+			 */
3873 3873
 		$template = apply_filters( "geodir_template_part-widget-listing-listview", geodir_locate_template( 'widget-listing-listview' ) );
3874 3874
 		if ( ! isset( $character_count ) ) {
3875 3875
 			/**
@@ -5234,7 +5234,7 @@  discard block
 block discarded – undo
5234 5234
  * @param string $name The name of the string which helps to know what's being translated.
5235 5235
  */
5236 5236
 function geodir_wpml_register_string( $string, $domain = 'geodirectory', $name = '' ) {
5237
-    do_action( 'wpml_register_single_string', $domain, $name, $string );
5237
+	do_action( 'wpml_register_single_string', $domain, $name, $string );
5238 5238
 }
5239 5239
 
5240 5240
 /**
@@ -5250,7 +5250,7 @@  discard block
 block discarded – undo
5250 5250
  * @return string The translated string.
5251 5251
  */
5252 5252
 function geodir_wpml_translate_string( $string, $domain = 'geodirectory', $name = '', $language_code = NULL ) {
5253
-    return apply_filters( 'wpml_translate_single_string', $string, $domain, $name, $language_code );
5253
+	return apply_filters( 'wpml_translate_single_string', $string, $domain, $name, $language_code );
5254 5254
 }
5255 5255
 
5256 5256
 /**
@@ -5266,34 +5266,34 @@  discard block
 block discarded – undo
5266 5266
  * @param array $data Post data.
5267 5267
  */
5268 5268
 function geodir_send_listing_edited_notification( $post_ID, $data ) {
5269
-    global $gd_notified_edited, $gd_set_listing_edited;
5269
+	global $gd_notified_edited, $gd_set_listing_edited;
5270 5270
     
5271
-    if ( !empty( $gd_set_listing_edited[ $post_ID ] ) && empty( $gd_notified_edited[ $post_ID ] ) ) {
5272
-        if ( !empty( $gd_notified_edited ) ) {
5273
-            $gd_notified_edited = array();
5274
-        }
5275
-        $gd_notified_edited[ $post_ID ] = true;
5271
+	if ( !empty( $gd_set_listing_edited[ $post_ID ] ) && empty( $gd_notified_edited[ $post_ID ] ) ) {
5272
+		if ( !empty( $gd_notified_edited ) ) {
5273
+			$gd_notified_edited = array();
5274
+		}
5275
+		$gd_notified_edited[ $post_ID ] = true;
5276 5276
         
5277
-        $from_email   = get_option( 'site_email' );
5278
-        $from_name    = get_site_emailName();
5279
-        $to_email     = get_option( 'admin_email' );
5280
-        $to_name      = get_option( 'name' );
5281
-        $message_type = 'listing_edited';
5282
-
5283
-        $notify_edited = true;
5284
-        /**
5285
-         * Send notification when listing edited by author?
5286
-         *
5287
-         * @since 1.6.0
5288
-         *
5289
-         * @param bool $notify_edited Notify on listing edited by author?
5290
-         * @param object $post        The current post object.
5291
-         */
5292
-        $notify_edited = apply_filters( 'geodir_notify_on_listing_edited', $notify_edited, $post_ID );
5293
-
5294
-        if ( $notify_edited ) {
5295
-            geodir_sendEmail( $from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID );
5296
-        }
5297
-    }
5277
+		$from_email   = get_option( 'site_email' );
5278
+		$from_name    = get_site_emailName();
5279
+		$to_email     = get_option( 'admin_email' );
5280
+		$to_name      = get_option( 'name' );
5281
+		$message_type = 'listing_edited';
5282
+
5283
+		$notify_edited = true;
5284
+		/**
5285
+		 * Send notification when listing edited by author?
5286
+		 *
5287
+		 * @since 1.6.0
5288
+		 *
5289
+		 * @param bool $notify_edited Notify on listing edited by author?
5290
+		 * @param object $post        The current post object.
5291
+		 */
5292
+		$notify_edited = apply_filters( 'geodir_notify_on_listing_edited', $notify_edited, $post_ID );
5293
+
5294
+		if ( $notify_edited ) {
5295
+			geodir_sendEmail( $from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID );
5296
+		}
5297
+	}
5298 5298
 }
5299 5299
 add_action( 'geodir_after_save_listing', 'geodir_send_listing_edited_notification', 1000, 2 );
5300 5300
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1316 added lines, -1316 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 /**
11 11
  * Get All Plugin functions from WordPress
12 12
  */
13
-include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
13
+include_once(ABSPATH.'wp-admin/includes/plugin.php');
14 14
 
15 15
 /*-----------------------------------------------------------------------------------*/
16 16
 /* Helper functions */
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
  * @return string example url eg: http://wpgeo.directory/wp-content/plugins/geodirectory
28 28
  */
29 29
 function geodir_plugin_url() {
30
-	return plugins_url( '', dirname( __FILE__ ) );
30
+	return plugins_url('', dirname(__FILE__));
31 31
 	/*
32 32
 	if ( is_ssl() ) :
33 33
 		return str_replace( 'http://', 'https://', WP_PLUGIN_URL ) . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) );
@@ -47,10 +47,10 @@  discard block
 block discarded – undo
47 47
  * @return string example url eg: /home/geo/public_html/wp-content/plugins/geodirectory
48 48
  */
49 49
 function geodir_plugin_path() {
50
-	if ( defined( 'GD_TESTING_MODE' ) && GD_TESTING_MODE ) {
51
-		return dirname( dirname( __FILE__ ) );
50
+	if (defined('GD_TESTING_MODE') && GD_TESTING_MODE) {
51
+		return dirname(dirname(__FILE__));
52 52
 	} else {
53
-		return WP_PLUGIN_DIR . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) );
53
+		return WP_PLUGIN_DIR."/".plugin_basename(dirname(dirname(__FILE__)));
54 54
 	}
55 55
 }
56 56
 
@@ -65,10 +65,10 @@  discard block
 block discarded – undo
65 65
  * @return bool true or false.
66 66
  * @todo    check if this is faster than normal WP check and remove if not.
67 67
  */
68
-function geodir_is_plugin_active( $plugin ) {
69
-	$active_plugins = get_option( 'active_plugins' );
70
-	foreach ( $active_plugins as $key => $active_plugin ) {
71
-		if ( strstr( $active_plugin, $plugin ) ) {
68
+function geodir_is_plugin_active($plugin) {
69
+	$active_plugins = get_option('active_plugins');
70
+	foreach ($active_plugins as $key => $active_plugin) {
71
+		if (strstr($active_plugin, $plugin)) {
72 72
 			return true;
73 73
 		}
74 74
 	}
@@ -90,8 +90,8 @@  discard block
 block discarded – undo
90 90
  *
91 91
  * @return bool|int|string the formatted date.
92 92
  */
93
-function geodir_get_formated_date( $date ) {
94
-	return mysql2date( get_option( 'date_format' ), $date );
93
+function geodir_get_formated_date($date) {
94
+	return mysql2date(get_option('date_format'), $date);
95 95
 }
96 96
 
97 97
 /**
@@ -107,8 +107,8 @@  discard block
 block discarded – undo
107 107
  *
108 108
  * @return bool|int|string the formatted time.
109 109
  */
110
-function geodir_get_formated_time( $time ) {
111
-	return mysql2date( get_option( 'time_format' ), $time, $translate = true );
110
+function geodir_get_formated_time($time) {
111
+	return mysql2date(get_option('time_format'), $time, $translate = true);
112 112
 }
113 113
 
114 114
 
@@ -126,35 +126,35 @@  discard block
 block discarded – undo
126 126
  *
127 127
  * @return string Formatted link.
128 128
  */
129
-function geodir_getlink( $url, $params = array(), $use_existing_arguments = false ) {
130
-	if ( $use_existing_arguments ) {
129
+function geodir_getlink($url, $params = array(), $use_existing_arguments = false) {
130
+	if ($use_existing_arguments) {
131 131
 		$params = $params + $_GET;
132 132
 	}
133
-	if ( ! $params ) {
133
+	if (!$params) {
134 134
 		return $url;
135 135
 	}
136 136
 	$link = $url;
137
-	if ( strpos( $link, '?' ) === false ) {
137
+	if (strpos($link, '?') === false) {
138 138
 		$link .= '?';
139 139
 	} //If there is no '?' add one at the end
140
-	elseif ( strpos( $link, '//maps.google.com/maps/api/js?language=' ) ) {
140
+	elseif (strpos($link, '//maps.google.com/maps/api/js?language=')) {
141 141
 		$link .= '&amp;';
142 142
 	} //If there is no '&' at the END, add one.
143
-	elseif ( ! preg_match( '/(\?|\&(amp;)?)$/', $link ) ) {
143
+	elseif (!preg_match('/(\?|\&(amp;)?)$/', $link)) {
144 144
 		$link .= '&';
145 145
 	} //If there is no '&' at the END, add one.
146 146
 
147 147
 	$params_arr = array();
148
-	foreach ( $params as $key => $value ) {
149
-		if ( gettype( $value ) == 'array' ) { //Handle array data properly
150
-			foreach ( $value as $val ) {
151
-				$params_arr[] = $key . '[]=' . urlencode( $val );
148
+	foreach ($params as $key => $value) {
149
+		if (gettype($value) == 'array') { //Handle array data properly
150
+			foreach ($value as $val) {
151
+				$params_arr[] = $key.'[]='.urlencode($val);
152 152
 			}
153 153
 		} else {
154
-			$params_arr[] = $key . '=' . urlencode( $value );
154
+			$params_arr[] = $key.'='.urlencode($value);
155 155
 		}
156 156
 	}
157
-	$link .= implode( '&', $params_arr );
157
+	$link .= implode('&', $params_arr);
158 158
 
159 159
 	return $link;
160 160
 }
@@ -171,18 +171,18 @@  discard block
 block discarded – undo
171 171
  *
172 172
  * @return string Listing page url if valid. Otherwise home url will be returned.
173 173
  */
174
-function geodir_get_addlisting_link( $post_type = '' ) {
174
+function geodir_get_addlisting_link($post_type = '') {
175 175
 	global $wpdb;
176 176
 
177 177
 	//$check_pkg  = $wpdb->get_var("SELECT pid FROM ".GEODIR_PRICE_TABLE." WHERE post_type='".$post_type."' and status != '0'");
178 178
 	$check_pkg = 1;
179
-	if ( post_type_exists( $post_type ) && $check_pkg ) {
179
+	if (post_type_exists($post_type) && $check_pkg) {
180 180
 
181
-		$add_listing_link = get_page_link( geodir_add_listing_page_id() );
181
+		$add_listing_link = get_page_link(geodir_add_listing_page_id());
182 182
 
183
-		return esc_url( add_query_arg( array( 'listing_type' => $post_type ), $add_listing_link ) );
183
+		return esc_url(add_query_arg(array('listing_type' => $post_type), $add_listing_link));
184 184
 	} else {
185
-		return get_bloginfo( 'url' );
185
+		return get_bloginfo('url');
186 186
 	}
187 187
 }
188 188
 
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
 	if (!empty($_SERVER['PHP_SELF']) && !empty($_SERVER['REQUEST_URI'])) {
211 211
 		// To build the entire URI we need to prepend the protocol, and the http host
212 212
 		// to the URI string.
213
-		$pageURL .= $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
213
+		$pageURL .= $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
214 214
 	} else {
215 215
 		/*
216 216
 		 * Since we do not have REQUEST_URI to work with, we will assume we are
@@ -219,11 +219,11 @@  discard block
 block discarded – undo
219 219
 		 *
220 220
 		 * IIS uses the SCRIPT_NAME variable instead of a REQUEST_URI variable... thanks, MS
221 221
 		 */
222
-		$pageURL .= $_SERVER['HTTP_HOST'] . $_SERVER['SCRIPT_NAME'];
222
+		$pageURL .= $_SERVER['HTTP_HOST'].$_SERVER['SCRIPT_NAME'];
223 223
 		
224 224
 		// If the query string exists append it to the URI string
225 225
 		if (isset($_SERVER['QUERY_STRING']) && !empty($_SERVER['QUERY_STRING'])) {
226
-			$pageURL .= '?' . $_SERVER['QUERY_STRING'];
226
+			$pageURL .= '?'.$_SERVER['QUERY_STRING'];
227 227
 		}
228 228
 	}
229 229
 	
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
 	 *
235 235
 	 * @param string $pageURL The URL of the current page.
236 236
 	 */
237
-	return apply_filters( 'geodir_curPageURL', $pageURL );
237
+	return apply_filters('geodir_curPageURL', $pageURL);
238 238
 }
239 239
 
240 240
 /**
@@ -249,12 +249,12 @@  discard block
 block discarded – undo
249 249
  *
250 250
  * @return string Cleaned variable.
251 251
  */
252
-function geodir_clean( $string ) {
252
+function geodir_clean($string) {
253 253
 
254
-	$string = trim( strip_tags( stripslashes( $string ) ) );
255
-	$string = str_replace( " ", "-", $string ); // Replaces all spaces with hyphens.
256
-	$string = preg_replace( '/[^A-Za-z0-9\-\_]/', '', $string ); // Removes special chars.
257
-	$string = preg_replace( '/-+/', '-', $string ); // Replaces multiple hyphens with single one.
254
+	$string = trim(strip_tags(stripslashes($string)));
255
+	$string = str_replace(" ", "-", $string); // Replaces all spaces with hyphens.
256
+	$string = preg_replace('/[^A-Za-z0-9\-\_]/', '', $string); // Removes special chars.
257
+	$string = preg_replace('/-+/', '-', $string); // Replaces multiple hyphens with single one.
258 258
 
259 259
 	return $string;
260 260
 }
@@ -268,13 +268,13 @@  discard block
 block discarded – undo
268 268
  */
269 269
 function geodir_get_weekday() {
270 270
 	return array(
271
-		__( 'Sunday', 'geodirectory' ),
272
-		__( 'Monday', 'geodirectory' ),
273
-		__( 'Tuesday', 'geodirectory' ),
274
-		__( 'Wednesday', 'geodirectory' ),
275
-		__( 'Thursday', 'geodirectory' ),
276
-		__( 'Friday', 'geodirectory' ),
277
-		__( 'Saturday', 'geodirectory' )
271
+		__('Sunday', 'geodirectory'),
272
+		__('Monday', 'geodirectory'),
273
+		__('Tuesday', 'geodirectory'),
274
+		__('Wednesday', 'geodirectory'),
275
+		__('Thursday', 'geodirectory'),
276
+		__('Friday', 'geodirectory'),
277
+		__('Saturday', 'geodirectory')
278 278
 	);
279 279
 }
280 280
 
@@ -287,11 +287,11 @@  discard block
 block discarded – undo
287 287
  */
288 288
 function geodir_get_weeks() {
289 289
 	return array(
290
-		__( 'First', 'geodirectory' ),
291
-		__( 'Second', 'geodirectory' ),
292
-		__( 'Third', 'geodirectory' ),
293
-		__( 'Fourth', 'geodirectory' ),
294
-		__( 'Last', 'geodirectory' )
290
+		__('First', 'geodirectory'),
291
+		__('Second', 'geodirectory'),
292
+		__('Third', 'geodirectory'),
293
+		__('Fourth', 'geodirectory'),
294
+		__('Last', 'geodirectory')
295 295
 	);
296 296
 }
297 297
 
@@ -310,112 +310,112 @@  discard block
 block discarded – undo
310 310
  *
311 311
  * @return bool If valid returns true. Otherwise false.
312 312
  */
313
-function geodir_is_page( $gdpage = '' ) {
313
+function geodir_is_page($gdpage = '') {
314 314
 
315 315
 	global $wp_query, $post, $wp;
316 316
 	//if(!is_admin()):
317 317
 
318
-	switch ( $gdpage ):
318
+	switch ($gdpage):
319 319
 		case 'add-listing':
320 320
 
321
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_add_listing_page_id() ) {
321
+			if (is_page() && get_query_var('page_id') == geodir_add_listing_page_id()) {
322 322
 				return true;
323
-			} elseif ( is_page() && isset( $post->post_content ) && has_shortcode( $post->post_content, 'gd_add_listing' ) ) {
323
+			} elseif (is_page() && isset($post->post_content) && has_shortcode($post->post_content, 'gd_add_listing')) {
324 324
 				return true;
325 325
 			}
326 326
 
327 327
 			break;
328 328
 		case 'preview':
329
-			if ( ( is_page() && get_query_var( 'page_id' ) == geodir_preview_page_id() ) && isset( $_REQUEST['listing_type'] )
330
-			     && in_array( $_REQUEST['listing_type'], geodir_get_posttypes() )
329
+			if ((is_page() && get_query_var('page_id') == geodir_preview_page_id()) && isset($_REQUEST['listing_type'])
330
+			     && in_array($_REQUEST['listing_type'], geodir_get_posttypes())
331 331
 			) {
332 332
 				return true;
333 333
 			}
334 334
 			break;
335 335
 		case 'listing-success':
336
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_success_page_id() ) {
336
+			if (is_page() && get_query_var('page_id') == geodir_success_page_id()) {
337 337
 				return true;
338 338
 			}
339 339
 			break;
340 340
 		case 'detail':
341
-			$post_type = get_query_var( 'post_type' );
342
-			if ( is_array( $post_type ) ) {
343
-				$post_type = reset( $post_type );
341
+			$post_type = get_query_var('post_type');
342
+			if (is_array($post_type)) {
343
+				$post_type = reset($post_type);
344 344
 			}
345
-			if ( is_single() && in_array( $post_type, geodir_get_posttypes() ) ) {
345
+			if (is_single() && in_array($post_type, geodir_get_posttypes())) {
346 346
 				return true;
347 347
 			}
348 348
 			break;
349 349
 		case 'pt':
350
-			$post_type = get_query_var( 'post_type' );
351
-			if ( is_array( $post_type ) ) {
352
-				$post_type = reset( $post_type );
350
+			$post_type = get_query_var('post_type');
351
+			if (is_array($post_type)) {
352
+				$post_type = reset($post_type);
353 353
 			}
354
-			if ( is_post_type_archive() && in_array( $post_type, geodir_get_posttypes() ) && ! is_tax() ) {
354
+			if (is_post_type_archive() && in_array($post_type, geodir_get_posttypes()) && !is_tax()) {
355 355
 				return true;
356 356
 			}
357 357
 
358 358
 			break;
359 359
 		case 'listing':
360
-			if ( is_tax() && geodir_get_taxonomy_posttype() ) {
360
+			if (is_tax() && geodir_get_taxonomy_posttype()) {
361 361
 				global $current_term, $taxonomy, $term;
362 362
 
363 363
 				return true;
364 364
 			}
365
-			$post_type = get_query_var( 'post_type' );
366
-			if ( is_array( $post_type ) ) {
367
-				$post_type = reset( $post_type );
365
+			$post_type = get_query_var('post_type');
366
+			if (is_array($post_type)) {
367
+				$post_type = reset($post_type);
368 368
 			}
369
-			if ( is_post_type_archive() && in_array( $post_type, geodir_get_posttypes() ) ) {
369
+			if (is_post_type_archive() && in_array($post_type, geodir_get_posttypes())) {
370 370
 				return true;
371 371
 			}
372 372
 
373 373
 			break;
374 374
 		case 'home':
375 375
 
376
-			if ( ( is_page() && get_query_var( 'page_id' ) == geodir_home_page_id() ) || is_page_geodir_home() ) {
376
+			if ((is_page() && get_query_var('page_id') == geodir_home_page_id()) || is_page_geodir_home()) {
377 377
 				return true;
378 378
 			}
379 379
 
380 380
 			break;
381 381
 		case 'location':
382
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_location_page_id() ) {
382
+			if (is_page() && get_query_var('page_id') == geodir_location_page_id()) {
383 383
 				return true;
384 384
 			}
385 385
 			break;
386 386
 		case 'author':
387
-			if ( is_author() && isset( $_REQUEST['geodir_dashbord'] ) ) {
387
+			if (is_author() && isset($_REQUEST['geodir_dashbord'])) {
388 388
 				return true;
389 389
 			}
390 390
 
391
-			if ( function_exists( 'bp_loggedin_user_id' ) && function_exists( 'bp_displayed_user_id' ) && $my_id = (int) bp_loggedin_user_id() ) {
392
-				if ( ( (bool) bp_is_current_component( 'listings' ) || (bool) bp_is_current_component( 'favorites' ) ) && $my_id > 0 && $my_id == (int) bp_displayed_user_id() ) {
391
+			if (function_exists('bp_loggedin_user_id') && function_exists('bp_displayed_user_id') && $my_id = (int) bp_loggedin_user_id()) {
392
+				if (((bool) bp_is_current_component('listings') || (bool) bp_is_current_component('favorites')) && $my_id > 0 && $my_id == (int) bp_displayed_user_id()) {
393 393
 					return true;
394 394
 				}
395 395
 			}
396 396
 			break;
397 397
 		case 'search':
398
-			if ( is_search() && isset( $_REQUEST['geodir_search'] ) ) {
398
+			if (is_search() && isset($_REQUEST['geodir_search'])) {
399 399
 				return true;
400 400
 			}
401 401
 			break;
402 402
 		case 'info':
403
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_info_page_id() ) {
403
+			if (is_page() && get_query_var('page_id') == geodir_info_page_id()) {
404 404
 				return true;
405 405
 			}
406 406
 			break;
407 407
 		case 'login':
408
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_login_page_id() ) {
408
+			if (is_page() && get_query_var('page_id') == geodir_login_page_id()) {
409 409
 				return true;
410 410
 			}
411 411
 			break;
412 412
 		case 'checkout':
413
-			if ( is_page() && function_exists( 'geodir_payment_checkout_page_id' ) && get_query_var( 'page_id' ) == geodir_payment_checkout_page_id() ) {
413
+			if (is_page() && function_exists('geodir_payment_checkout_page_id') && get_query_var('page_id') == geodir_payment_checkout_page_id()) {
414 414
 				return true;
415 415
 			}
416 416
 			break;
417 417
 		case 'invoices':
418
-			if ( is_page() && function_exists( 'geodir_payment_invoices_page_id' ) && get_query_var( 'page_id' ) == geodir_payment_invoices_page_id() ) {
418
+			if (is_page() && function_exists('geodir_payment_invoices_page_id') && get_query_var('page_id') == geodir_payment_invoices_page_id()) {
419 419
 				return true;
420 420
 			}
421 421
 			break;
@@ -440,25 +440,25 @@  discard block
 block discarded – undo
440 440
  *
441 441
  * @param object $wp WordPress object.
442 442
  */
443
-function geodir_set_is_geodir_page( $wp ) {
444
-	if ( ! is_admin() ) {
443
+function geodir_set_is_geodir_page($wp) {
444
+	if (!is_admin()) {
445 445
 		//$wp->query_vars['gd_is_geodir_page'] = false;
446 446
 		//print_r()
447
-		if ( empty( $wp->query_vars ) || ! array_diff( array_keys( $wp->query_vars ), array(
447
+		if (empty($wp->query_vars) || !array_diff(array_keys($wp->query_vars), array(
448 448
 				'preview',
449 449
 				'page',
450 450
 				'paged',
451 451
 				'cpage'
452
-			) )
452
+			))
453 453
 		) {
454
-			if ( geodir_is_page( 'home' ) ) {
454
+			if (geodir_is_page('home')) {
455 455
 				$wp->query_vars['gd_is_geodir_page'] = true;
456 456
 			}
457 457
 
458 458
 
459 459
 		}
460 460
 
461
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['page_id'] ) ) {
461
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['page_id'])) {
462 462
 			if (
463 463
 				$wp->query_vars['page_id'] == geodir_add_listing_page_id()
464 464
 				|| $wp->query_vars['page_id'] == geodir_preview_page_id()
@@ -467,26 +467,26 @@  discard block
 block discarded – undo
467 467
 				|| $wp->query_vars['page_id'] == geodir_home_page_id()
468 468
 				|| $wp->query_vars['page_id'] == geodir_info_page_id()
469 469
 				|| $wp->query_vars['page_id'] == geodir_login_page_id()
470
-				|| ( function_exists( 'geodir_payment_checkout_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id() )
471
-				|| ( function_exists( 'geodir_payment_invoices_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id() )
470
+				|| (function_exists('geodir_payment_checkout_page_id') && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id())
471
+				|| (function_exists('geodir_payment_invoices_page_id') && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id())
472 472
 			) {
473 473
 				$wp->query_vars['gd_is_geodir_page'] = true;
474 474
 			}
475 475
 		}
476 476
 
477
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['pagename'] ) ) {
478
-			$page = get_page_by_path( $wp->query_vars['pagename'] );
477
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['pagename'])) {
478
+			$page = get_page_by_path($wp->query_vars['pagename']);
479 479
 
480
-			if ( ! empty( $page ) && (
480
+			if (!empty($page) && (
481 481
 					$page->ID == geodir_add_listing_page_id()
482 482
 					|| $page->ID == geodir_preview_page_id()
483 483
 					|| $page->ID == geodir_success_page_id()
484 484
 					|| $page->ID == geodir_location_page_id()
485
-					|| ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_home_page_id() )
486
-					|| ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_info_page_id() )
487
-					|| ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_login_page_id() )
488
-					|| ( isset( $wp->query_vars['page_id'] ) && function_exists( 'geodir_payment_checkout_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id() )
489
-					|| ( isset( $wp->query_vars['page_id'] ) && function_exists( 'geodir_payment_invoices_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id() )
485
+					|| (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_home_page_id())
486
+					|| (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_info_page_id())
487
+					|| (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_login_page_id())
488
+					|| (isset($wp->query_vars['page_id']) && function_exists('geodir_payment_checkout_page_id') && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id())
489
+					|| (isset($wp->query_vars['page_id']) && function_exists('geodir_payment_invoices_page_id') && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id())
490 490
 				)
491 491
 			) {
492 492
 				$wp->query_vars['gd_is_geodir_page'] = true;
@@ -494,20 +494,20 @@  discard block
 block discarded – undo
494 494
 		}
495 495
 
496 496
 
497
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['post_type'] ) && $wp->query_vars['post_type'] != '' ) {
497
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['post_type']) && $wp->query_vars['post_type'] != '') {
498 498
 			$requested_post_type = $wp->query_vars['post_type'];
499 499
 			// check if this post type is geodirectory post types
500 500
 			$post_type_array = geodir_get_posttypes();
501
-			if ( in_array( $requested_post_type, $post_type_array ) ) {
501
+			if (in_array($requested_post_type, $post_type_array)) {
502 502
 				$wp->query_vars['gd_is_geodir_page'] = true;
503 503
 			}
504 504
 		}
505 505
 
506
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) ) {
507
-			$geodir_taxonomis = geodir_get_taxonomies( '', true );
508
-			if ( ! empty( $geodir_taxonomis ) ) {
509
-				foreach ( $geodir_taxonomis as $taxonomy ) {
510
-					if ( array_key_exists( $taxonomy, $wp->query_vars ) ) {
506
+		if (!isset($wp->query_vars['gd_is_geodir_page'])) {
507
+			$geodir_taxonomis = geodir_get_taxonomies('', true);
508
+			if (!empty($geodir_taxonomis)) {
509
+				foreach ($geodir_taxonomis as $taxonomy) {
510
+					if (array_key_exists($taxonomy, $wp->query_vars)) {
511 511
 						$wp->query_vars['gd_is_geodir_page'] = true;
512 512
 						break;
513 513
 					}
@@ -516,20 +516,20 @@  discard block
 block discarded – undo
516 516
 
517 517
 		}
518 518
 
519
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['author_name'] ) && isset( $_REQUEST['geodir_dashbord'] ) ) {
519
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['author_name']) && isset($_REQUEST['geodir_dashbord'])) {
520 520
 			$wp->query_vars['gd_is_geodir_page'] = true;
521 521
 		}
522 522
 
523 523
 
524
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $_REQUEST['geodir_search'] ) ) {
524
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($_REQUEST['geodir_search'])) {
525 525
 			$wp->query_vars['gd_is_geodir_page'] = true;
526 526
 		}
527 527
 
528 528
 
529 529
 //check if homepage
530
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] )
531
-		     && ! isset( $wp->query_vars['page_id'] )
532
-		     && ! isset( $wp->query_vars['pagename'] )
530
+		if (!isset($wp->query_vars['gd_is_geodir_page'])
531
+		     && !isset($wp->query_vars['page_id'])
532
+		     && !isset($wp->query_vars['pagename'])
533 533
 		     && is_page_geodir_home()
534 534
 		) {
535 535
 			$wp->query_vars['gd_is_geodir_page'] = true;
@@ -553,14 +553,14 @@  discard block
 block discarded – undo
553 553
  */
554 554
 function geodir_is_geodir_page() {
555 555
 	global $wp;
556
-	if ( isset( $wp->query_vars['gd_is_geodir_page'] ) && $wp->query_vars['gd_is_geodir_page'] ) {
556
+	if (isset($wp->query_vars['gd_is_geodir_page']) && $wp->query_vars['gd_is_geodir_page']) {
557 557
 		return true;
558 558
 	} else {
559 559
 		return false;
560 560
 	}
561 561
 }
562 562
 
563
-if ( ! function_exists( 'geodir_get_imagesize' ) ) {
563
+if (!function_exists('geodir_get_imagesize')) {
564 564
 	/**
565 565
 	 * Get image size using the size key .
566 566
 	 *
@@ -571,13 +571,13 @@  discard block
 block discarded – undo
571 571
 	 *
572 572
 	 * @return array|mixed|void|WP_Error If valid returns image size. Else returns error.
573 573
 	 */
574
-	function geodir_get_imagesize( $size = '' ) {
574
+	function geodir_get_imagesize($size = '') {
575 575
 
576 576
 		$imagesizes = array(
577
-			'list-thumb'   => array( 'w' => 283, 'h' => 188 ),
578
-			'thumbnail'    => array( 'w' => 125, 'h' => 125 ),
579
-			'widget-thumb' => array( 'w' => 50, 'h' => 50 ),
580
-			'slider-thumb' => array( 'w' => 100, 'h' => 100 )
577
+			'list-thumb'   => array('w' => 283, 'h' => 188),
578
+			'thumbnail'    => array('w' => 125, 'h' => 125),
579
+			'widget-thumb' => array('w' => 50, 'h' => 50),
580
+			'slider-thumb' => array('w' => 100, 'h' => 100)
581 581
 		);
582 582
 
583 583
 		/**
@@ -587,9 +587,9 @@  discard block
 block discarded – undo
587 587
 		 *
588 588
 		 * @param array $imagesizes Image size array.
589 589
 		 */
590
-		$imagesizes = apply_filters( 'geodir_imagesizes', $imagesizes );
590
+		$imagesizes = apply_filters('geodir_imagesizes', $imagesizes);
591 591
 
592
-		if ( ! empty( $size ) && array_key_exists( $size, $imagesizes ) ) {
592
+		if (!empty($size) && array_key_exists($size, $imagesizes)) {
593 593
 			/**
594 594
 			 * Filters image size of the passed key.
595 595
 			 *
@@ -597,11 +597,11 @@  discard block
 block discarded – undo
597 597
 			 *
598 598
 			 * @param array $imagesizes [$size] Image size array of the passed key.
599 599
 			 */
600
-			return apply_filters( 'geodir_get_imagesize_' . $size, $imagesizes[ $size ] );
600
+			return apply_filters('geodir_get_imagesize_'.$size, $imagesizes[$size]);
601 601
 
602
-		} elseif ( ! empty( $size ) ) {
602
+		} elseif (!empty($size)) {
603 603
 
604
-			return new WP_Error( 'geodir_no_imagesize', __( "Given image size is not valid", 'geodirectory' ) );
604
+			return new WP_Error('geodir_no_imagesize', __("Given image size is not valid", 'geodirectory'));
605 605
 
606 606
 		}
607 607
 
@@ -625,7 +625,7 @@  discard block
 block discarded – undo
625 625
 */
626 626
 
627 627
 
628
-if ( ! function_exists( 'createRandomString' ) ) {
628
+if (!function_exists('createRandomString')) {
629 629
 	/**
630 630
 	 * Creates random string.
631 631
 	 *
@@ -635,21 +635,21 @@  discard block
 block discarded – undo
635 635
 	 */
636 636
 	function createRandomString() {
637 637
 		$chars = "abcdefghijkmlnopqrstuvwxyz1023456789";
638
-		srand( (double) microtime() * 1000000 );
638
+		srand((double) microtime() * 1000000);
639 639
 		$i       = 0;
640 640
 		$rstring = '';
641
-		while ( $i <= 25 ) {
641
+		while ($i <= 25) {
642 642
 			$num     = rand() % 33;
643
-			$tmp     = substr( $chars, $num, 1 );
644
-			$rstring = $rstring . $tmp;
645
-			$i ++;
643
+			$tmp     = substr($chars, $num, 1);
644
+			$rstring = $rstring.$tmp;
645
+			$i++;
646 646
 		}
647 647
 
648 648
 		return $rstring;
649 649
 	}
650 650
 }
651 651
 
652
-if ( ! function_exists( 'geodir_getDistanceRadius' ) ) {
652
+if (!function_exists('geodir_getDistanceRadius')) {
653 653
 	/**
654 654
 	 * Calculates the distance radius.
655 655
 	 *
@@ -660,9 +660,9 @@  discard block
 block discarded – undo
660 660
 	 *
661 661
 	 * @return float The mean radius.
662 662
 	 */
663
-	function geodir_getDistanceRadius( $uom = 'km' ) {
663
+	function geodir_getDistanceRadius($uom = 'km') {
664 664
 //	Use Haversine formula to calculate the great circle distance between two points identified by longitude and latitude
665
-		switch ( geodir_strtolower( $uom ) ):
665
+		switch (geodir_strtolower($uom)):
666 666
 			case 'km'    :
667 667
 				$earthMeanRadius = 6371.009; // km
668 668
 				break;
@@ -694,7 +694,7 @@  discard block
 block discarded – undo
694 694
 }
695 695
 
696 696
 
697
-if ( ! function_exists( 'geodir_calculateDistanceFromLatLong' ) ) {
697
+if (!function_exists('geodir_calculateDistanceFromLatLong')) {
698 698
 	/**
699 699
 	 * Calculate the great circle distance between two points identified by longitude and latitude.
700 700
 	 *
@@ -707,17 +707,17 @@  discard block
 block discarded – undo
707 707
 	 *
708 708
 	 * @return float The distance.
709 709
 	 */
710
-	function geodir_calculateDistanceFromLatLong( $point1, $point2, $uom = 'km' ) {
710
+	function geodir_calculateDistanceFromLatLong($point1, $point2, $uom = 'km') {
711 711
 //	Use Haversine formula to calculate the great circle distance between two points identified by longitude and latitude
712 712
 
713
-		$earthMeanRadius = geodir_getDistanceRadius( $uom );
713
+		$earthMeanRadius = geodir_getDistanceRadius($uom);
714 714
 
715
-		$deltaLatitude  = deg2rad( (float) $point2['latitude'] - (float) $point1['latitude'] );
716
-		$deltaLongitude = deg2rad( (float) $point2['longitude'] - (float) $point1['longitude'] );
717
-		$a              = sin( $deltaLatitude / 2 ) * sin( $deltaLatitude / 2 ) +
718
-		                  cos( deg2rad( (float) $point1['latitude'] ) ) * cos( deg2rad( (float) $point2['latitude'] ) ) *
719
-		                  sin( $deltaLongitude / 2 ) * sin( $deltaLongitude / 2 );
720
-		$c              = 2 * atan2( sqrt( $a ), sqrt( 1 - $a ) );
715
+		$deltaLatitude  = deg2rad((float) $point2['latitude'] - (float) $point1['latitude']);
716
+		$deltaLongitude = deg2rad((float) $point2['longitude'] - (float) $point1['longitude']);
717
+		$a              = sin($deltaLatitude / 2) * sin($deltaLatitude / 2) +
718
+		                  cos(deg2rad((float) $point1['latitude'])) * cos(deg2rad((float) $point2['latitude'])) *
719
+		                  sin($deltaLongitude / 2) * sin($deltaLongitude / 2);
720
+		$c              = 2 * atan2(sqrt($a), sqrt(1 - $a));
721 721
 		$distance       = $earthMeanRadius * $c;
722 722
 
723 723
 		return $distance;
@@ -726,7 +726,7 @@  discard block
 block discarded – undo
726 726
 }
727 727
 
728 728
 
729
-if ( ! function_exists( 'geodir_sendEmail' ) ) {
729
+if (!function_exists('geodir_sendEmail')) {
730 730
 	/**
731 731
 	 * The main function that send transactional emails using the args provided.
732 732
 	 *
@@ -745,92 +745,92 @@  discard block
 block discarded – undo
745 745
 	 * @param string $post_id       The post ID.
746 746
 	 * @param string $user_id       The user ID.
747 747
 	 */
748
-	function geodir_sendEmail( $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra = '', $message_type, $post_id = '', $user_id = '' ) {
748
+	function geodir_sendEmail($fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra = '', $message_type, $post_id = '', $user_id = '') {
749 749
 		$login_details = '';
750 750
 
751 751
 		// strip slashes from subject & message text
752
-		$to_subject = stripslashes_deep( $to_subject );
753
-		$to_message = stripslashes_deep( $to_message );
752
+		$to_subject = stripslashes_deep($to_subject);
753
+		$to_message = stripslashes_deep($to_message);
754 754
 
755
-		if ( $message_type == 'send_enquiry' ) {
756
-			$subject = get_option( 'geodir_email_enquiry_subject' );
757
-			$message = get_option( 'geodir_email_enquiry_content' );
755
+		if ($message_type == 'send_enquiry') {
756
+			$subject = get_option('geodir_email_enquiry_subject');
757
+			$message = get_option('geodir_email_enquiry_content');
758 758
 
759 759
 			// change to name in some cases
760
-			$post_author = get_post_field( 'post_author', $post_id );
761
-			if(is_super_admin( $post_author  )){// if admin probably not the post author so change name
762
-				$toEmailName = __('Business Owner','geodirectory');
763
-			}elseif(defined('GEODIRCLAIM_VERSION') && geodir_get_post_meta($post_id,'claimed')!='1'){// if claim manager installed but listing not claimed
764
-				$toEmailName = __('Business Owner','geodirectory');
760
+			$post_author = get_post_field('post_author', $post_id);
761
+			if (is_super_admin($post_author)) {// if admin probably not the post author so change name
762
+				$toEmailName = __('Business Owner', 'geodirectory');
763
+			}elseif (defined('GEODIRCLAIM_VERSION') && geodir_get_post_meta($post_id, 'claimed') != '1') {// if claim manager installed but listing not claimed
764
+				$toEmailName = __('Business Owner', 'geodirectory');
765 765
 			}
766 766
 
767 767
 
768
-		} elseif ( $message_type == 'forgot_password' ) {
769
-			$subject       = get_option( 'geodir_forgot_password_subject' );
770
-			$message       = get_option( 'geodir_forgot_password_content' );
768
+		} elseif ($message_type == 'forgot_password') {
769
+			$subject       = get_option('geodir_forgot_password_subject');
770
+			$message       = get_option('geodir_forgot_password_content');
771 771
 			$login_details = $to_message;
772
-		} elseif ( $message_type == 'registration' ) {
773
-			$subject       = get_option( 'geodir_registration_success_email_subject' );
774
-			$message       = get_option( 'geodir_registration_success_email_content' );
772
+		} elseif ($message_type == 'registration') {
773
+			$subject       = get_option('geodir_registration_success_email_subject');
774
+			$message       = get_option('geodir_registration_success_email_content');
775 775
 			$login_details = $to_message;
776
-		} elseif ( $message_type == 'post_submit' ) {
777
-			$subject = get_option( 'geodir_post_submited_success_email_subject' );
778
-			$message = get_option( 'geodir_post_submited_success_email_content' );
779
-		} elseif ( $message_type == 'listing_published' ) {
780
-			$subject = get_option( 'geodir_post_published_email_subject' );
781
-			$message = get_option( 'geodir_post_published_email_content' );
782
-		} elseif ( $message_type == 'listing_edited' ) {
783
-			$subject = get_option( 'geodir_post_edited_email_subject_admin' );
784
-			$message = get_option( 'geodir_post_edited_email_content_admin' );
776
+		} elseif ($message_type == 'post_submit') {
777
+			$subject = get_option('geodir_post_submited_success_email_subject');
778
+			$message = get_option('geodir_post_submited_success_email_content');
779
+		} elseif ($message_type == 'listing_published') {
780
+			$subject = get_option('geodir_post_published_email_subject');
781
+			$message = get_option('geodir_post_published_email_content');
782
+		} elseif ($message_type == 'listing_edited') {
783
+			$subject = get_option('geodir_post_edited_email_subject_admin');
784
+			$message = get_option('geodir_post_edited_email_content_admin');
785 785
 		}
786 786
 
787
-		if ( ! empty( $subject ) ) {
788
-			$subject = __( stripslashes_deep( $subject ), 'geodirectory' );
787
+		if (!empty($subject)) {
788
+			$subject = __(stripslashes_deep($subject), 'geodirectory');
789 789
 		}
790 790
 
791
-		if ( ! empty( $message ) ) {
792
-			$message = __( stripslashes_deep( $message ), 'geodirectory' );
791
+		if (!empty($message)) {
792
+			$message = __(stripslashes_deep($message), 'geodirectory');
793 793
 		}
794 794
 
795
-		$to_message        = nl2br( $to_message );
796
-		$sitefromEmail     = get_option( 'site_email' );
795
+		$to_message        = nl2br($to_message);
796
+		$sitefromEmail     = get_option('site_email');
797 797
 		$sitefromEmailName = get_site_emailName();
798
-		$productlink       = get_permalink( $post_id );
798
+		$productlink       = get_permalink($post_id);
799 799
 
800 800
 		$user_login = '';
801
-		if ( $user_id > 0 && $user_info = get_userdata( $user_id ) ) {
801
+		if ($user_id > 0 && $user_info = get_userdata($user_id)) {
802 802
 			$user_login = $user_info->user_login;
803 803
 		}
804 804
 
805 805
 		$posted_date = '';
806 806
 		$listingLink = '';
807 807
 
808
-		$post_info = get_post( $post_id );
808
+		$post_info = get_post($post_id);
809 809
 
810
-		if ( $post_info ) {
810
+		if ($post_info) {
811 811
 			$posted_date = $post_info->post_date;
812
-			$listingLink = '<a href="' . $productlink . '"><b>' . $post_info->post_title . '</b></a>';
812
+			$listingLink = '<a href="'.$productlink.'"><b>'.$post_info->post_title.'</b></a>';
813 813
 		}
814 814
 		$siteurl       = home_url();
815
-		$siteurl_link  = '<a href="' . $siteurl . '">' . $siteurl . '</a>';
815
+		$siteurl_link  = '<a href="'.$siteurl.'">'.$siteurl.'</a>';
816 816
 		$loginurl      = geodir_login_url();
817
-		$loginurl_link = '<a href="' . $loginurl . '">login</a>';
817
+		$loginurl_link = '<a href="'.$loginurl.'">login</a>';
818 818
         
819
-		$post_author_id   = ! empty( $post_info ) ? $post_info->post_author : 0;
820
-		$post_author_data = $post_author_id ? get_userdata( $post_author_id ) : NULL;
821
-		$post_author_name = geodir_get_client_name( $post_author_id );
822
-		$post_author_email = !empty( $post_author_data->user_email ) ? $post_author_data->user_email : '';
823
-		$current_date     = date_i18n( 'Y-m-d H:i:s', current_time( 'timestamp' ) );
824
-
825
-		if ( $fromEmail == '' ) {
826
-			$fromEmail = get_option( 'site_email' );
819
+		$post_author_id   = !empty($post_info) ? $post_info->post_author : 0;
820
+		$post_author_data = $post_author_id ? get_userdata($post_author_id) : NULL;
821
+		$post_author_name = geodir_get_client_name($post_author_id);
822
+		$post_author_email = !empty($post_author_data->user_email) ? $post_author_data->user_email : '';
823
+		$current_date     = date_i18n('Y-m-d H:i:s', current_time('timestamp'));
824
+
825
+		if ($fromEmail == '') {
826
+			$fromEmail = get_option('site_email');
827 827
 		}
828 828
 
829
-		if ( $fromEmailName == '' ) {
830
-			$fromEmailName = get_option( 'site_email_name' );
829
+		if ($fromEmailName == '') {
830
+			$fromEmailName = get_option('site_email_name');
831 831
 		}
832 832
 
833
-		$search_array  = array(
833
+		$search_array = array(
834 834
 			'[#listing_link#]',
835 835
 			'[#site_name_url#]',
836 836
 			'[#post_id#]',
@@ -872,7 +872,7 @@  discard block
 block discarded – undo
872 872
 			$post_author_email,
873 873
 			$current_date,
874 874
 		);
875
-		$message       = str_replace( $search_array, $replace_array, $message );
875
+		$message       = str_replace($search_array, $replace_array, $message);
876 876
 
877 877
 		$search_array  = array(
878 878
 			'[#listing_link#]',
@@ -910,12 +910,12 @@  discard block
 block discarded – undo
910 910
 			$post_author_email,
911 911
 			$current_date
912 912
 		);
913
-		$subject       = str_replace( $search_array, $replace_array, $subject );
913
+		$subject = str_replace($search_array, $replace_array, $subject);
914 914
 
915
-		$headers =  array();
915
+		$headers = array();
916 916
 		$headers[] = 'Content-type: text/html; charset=UTF-8';
917
-		$headers[] = "Reply-To: " . $fromEmail;
918
-		$headers[] = 'From: ' . $sitefromEmailName . ' <' . $sitefromEmail . '>';
917
+		$headers[] = "Reply-To: ".$fromEmail;
918
+		$headers[] = 'From: '.$sitefromEmailName.' <'.$sitefromEmail.'>';
919 919
 
920 920
 		$to = $toEmail;
921 921
 
@@ -937,7 +937,7 @@  discard block
 block discarded – undo
937 937
 		 * @param string $post_id       The post ID.
938 938
 		 * @param string $user_id       The user ID.
939 939
 		 */
940
-		$to = apply_filters( 'geodir_sendEmail_to', $to, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
940
+		$to = apply_filters('geodir_sendEmail_to', $to, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
941 941
 		/**
942 942
 		 * Filter the client email subject.
943 943
 		 *
@@ -956,7 +956,7 @@  discard block
 block discarded – undo
956 956
 		 * @param string $post_id       The post ID.
957 957
 		 * @param string $user_id       The user ID.
958 958
 		 */
959
-		$subject = apply_filters( 'geodir_sendEmail_subject', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
959
+		$subject = apply_filters('geodir_sendEmail_subject', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
960 960
 		/**
961 961
 		 * Filter the client email message.
962 962
 		 *
@@ -975,7 +975,7 @@  discard block
 block discarded – undo
975 975
 		 * @param string $post_id       The post ID.
976 976
 		 * @param string $user_id       The user ID.
977 977
 		 */
978
-		$message = apply_filters( 'geodir_sendEmail_message', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
978
+		$message = apply_filters('geodir_sendEmail_message', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
979 979
 		/**
980 980
 		 * Filter the client email headers.
981 981
 		 *
@@ -994,39 +994,39 @@  discard block
 block discarded – undo
994 994
 		 * @param string $post_id       The post ID.
995 995
 		 * @param string $user_id       The user ID.
996 996
 		 */
997
-		$headers = apply_filters( 'geodir_sendEmail_headers', $headers, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
997
+		$headers = apply_filters('geodir_sendEmail_headers', $headers, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
998 998
 
999
-		$sent = wp_mail( $to, $subject, $message, $headers );
999
+		$sent = wp_mail($to, $subject, $message, $headers);
1000 1000
 
1001
-		if ( ! $sent ) {
1002
-			if ( is_array( $to ) ) {
1003
-				$to = implode( ',', $to );
1001
+		if (!$sent) {
1002
+			if (is_array($to)) {
1003
+				$to = implode(',', $to);
1004 1004
 			}
1005 1005
 			$log_message = sprintf(
1006
-				__( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
1006
+				__("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'),
1007 1007
 				$message_type,
1008
-				date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
1008
+				date_i18n('F j Y H:i:s', current_time('timestamp')),
1009 1009
 				$to,
1010 1010
 				$subject
1011 1011
 			);
1012
-			geodir_error_log( $log_message );
1012
+			geodir_error_log($log_message);
1013 1013
 		}
1014 1014
 
1015 1015
 		///////// ADMIN BCC EMIALS
1016
-		$adminEmail = get_bloginfo( 'admin_email' );
1016
+		$adminEmail = get_bloginfo('admin_email');
1017 1017
 		$to         = $adminEmail;
1018 1018
 
1019 1019
 		$admin_bcc = false;
1020
-		if ( $message_type == 'registration' ) {
1021
-			$message_raw  = explode( __( "Password:", 'geodirectory' ), $message );
1022
-			$message_raw2 = explode( "</p>", $message_raw[1], 2 );
1023
-			$message      = $message_raw[0] . __( 'Password:', 'geodirectory' ) . ' **********</p>' . $message_raw2[1];
1020
+		if ($message_type == 'registration') {
1021
+			$message_raw  = explode(__("Password:", 'geodirectory'), $message);
1022
+			$message_raw2 = explode("</p>", $message_raw[1], 2);
1023
+			$message      = $message_raw[0].__('Password:', 'geodirectory').' **********</p>'.$message_raw2[1];
1024 1024
 		}
1025
-		if ( $message_type == 'post_submit' && ( get_option( 'geodir_notify_post_submit' ) || get_option( 'geodir_notify_post_submit', '-1' ) == '-1' ) ) {
1026
-			$subject = __( stripslashes_deep( get_option( 'geodir_post_submited_success_email_subject_admin' ) ), 'geodirectory' );
1027
-			$message = __( stripslashes_deep( get_option( 'geodir_post_submited_success_email_content_admin' ) ), 'geodirectory' );
1025
+		if ($message_type == 'post_submit' && (get_option('geodir_notify_post_submit') || get_option('geodir_notify_post_submit', '-1') == '-1')) {
1026
+			$subject = __(stripslashes_deep(get_option('geodir_post_submited_success_email_subject_admin')), 'geodirectory');
1027
+			$message = __(stripslashes_deep(get_option('geodir_post_submited_success_email_content_admin')), 'geodirectory');
1028 1028
 
1029
-			$search_array  = array(
1029
+			$search_array = array(
1030 1030
 				'[#listing_link#]',
1031 1031
 				'[#site_name_url#]',
1032 1032
 				'[#post_id#]',
@@ -1062,7 +1062,7 @@  discard block
 block discarded – undo
1062 1062
 				$user_login,
1063 1063
 				$post_author_email,
1064 1064
 			);
1065
-			$message       = str_replace( $search_array, $replace_array, $message );
1065
+			$message       = str_replace($search_array, $replace_array, $message);
1066 1066
 
1067 1067
 			$search_array  = array(
1068 1068
 				'[#listing_link#]',
@@ -1094,23 +1094,23 @@  discard block
 block discarded – undo
1094 1094
 				$user_login,
1095 1095
 				$post_author_email,
1096 1096
 			);
1097
-			$subject       = str_replace( $search_array, $replace_array, $subject );
1097
+			$subject = str_replace($search_array, $replace_array, $subject);
1098 1098
 
1099 1099
 			$subject .= ' - ADMIN BCC COPY';
1100 1100
 			$admin_bcc = true;
1101 1101
 
1102
-		} elseif ( $message_type == 'registration' && get_option( 'geodir_bcc_new_user' ) ) {
1102
+		} elseif ($message_type == 'registration' && get_option('geodir_bcc_new_user')) {
1103 1103
 			$subject .= ' - ADMIN BCC COPY';
1104 1104
 			$admin_bcc = true;
1105
-		} elseif ( $message_type == 'send_enquiry' && get_option( 'geodir_bcc_enquiry' ) ) {
1105
+		} elseif ($message_type == 'send_enquiry' && get_option('geodir_bcc_enquiry')) {
1106 1106
 			$subject .= ' - ADMIN BCC COPY';
1107 1107
 			$admin_bcc = true;
1108
-		} elseif ( $message_type == 'listing_published' && get_option( 'geodir_bcc_listing_published' ) ) {
1108
+		} elseif ($message_type == 'listing_published' && get_option('geodir_bcc_listing_published')) {
1109 1109
 			$subject .= ' - ADMIN BCC COPY';
1110 1110
 			$admin_bcc = true;
1111 1111
 		}
1112 1112
 
1113
-		if ( $admin_bcc === true ) {
1113
+		if ($admin_bcc === true) {
1114 1114
 
1115 1115
 			/**
1116 1116
 			 * Filter the client email subject.
@@ -1130,7 +1130,7 @@  discard block
 block discarded – undo
1130 1130
 			 * @param string $post_id       The post ID.
1131 1131
 			 * @param string $user_id       The user ID.
1132 1132
 			 */
1133
-			$subject = apply_filters( 'geodir_sendEmail_subject_admin_bcc', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
1133
+			$subject = apply_filters('geodir_sendEmail_subject_admin_bcc', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
1134 1134
 			/**
1135 1135
 			 * Filter the client email message.
1136 1136
 			 *
@@ -1149,23 +1149,23 @@  discard block
 block discarded – undo
1149 1149
 			 * @param string $post_id       The post ID.
1150 1150
 			 * @param string $user_id       The user ID.
1151 1151
 			 */
1152
-			$message = apply_filters( 'geodir_sendEmail_message_admin_bcc', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
1152
+			$message = apply_filters('geodir_sendEmail_message_admin_bcc', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
1153 1153
 
1154 1154
 
1155
-			$sent = wp_mail( $to, $subject, $message, $headers );
1155
+			$sent = wp_mail($to, $subject, $message, $headers);
1156 1156
 
1157
-			if ( ! $sent ) {
1158
-				if ( is_array( $to ) ) {
1159
-					$to = implode( ',', $to );
1157
+			if (!$sent) {
1158
+				if (is_array($to)) {
1159
+					$to = implode(',', $to);
1160 1160
 				}
1161 1161
 				$log_message = sprintf(
1162
-					__( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
1162
+					__("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'),
1163 1163
 					$message_type,
1164
-					date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
1164
+					date_i18n('F j Y H:i:s', current_time('timestamp')),
1165 1165
 					$to,
1166 1166
 					$subject
1167 1167
 				);
1168
-				geodir_error_log( $log_message );
1168
+				geodir_error_log($log_message);
1169 1169
 			}
1170 1170
 		}
1171 1171
 
@@ -1181,51 +1181,51 @@  discard block
 block discarded – undo
1181 1181
  */
1182 1182
 function geodir_taxonomy_breadcrumb() {
1183 1183
 
1184
-	$term   = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
1184
+	$term   = get_term_by('slug', get_query_var('term'), get_query_var('taxonomy'));
1185 1185
 	$parent = $term->parent;
1186 1186
 
1187
-	while ( $parent ):
1187
+	while ($parent):
1188 1188
 		$parents[]  = $parent;
1189
-		$new_parent = get_term_by( 'id', $parent, get_query_var( 'taxonomy' ) );
1189
+		$new_parent = get_term_by('id', $parent, get_query_var('taxonomy'));
1190 1190
 		$parent     = $new_parent->parent;
1191 1191
 	endwhile;
1192 1192
 
1193
-	if ( ! empty( $parents ) ):
1194
-		$parents = array_reverse( $parents );
1193
+	if (!empty($parents)):
1194
+		$parents = array_reverse($parents);
1195 1195
 
1196
-		foreach ( $parents as $parent ):
1197
-			$item = get_term_by( 'id', $parent, get_query_var( 'taxonomy' ) );
1198
-			$url  = get_term_link( $item, get_query_var( 'taxonomy' ) );
1199
-			echo '<li> > <a href="' . $url . '">' . $item->name . '</a></li>';
1196
+		foreach ($parents as $parent):
1197
+			$item = get_term_by('id', $parent, get_query_var('taxonomy'));
1198
+			$url  = get_term_link($item, get_query_var('taxonomy'));
1199
+			echo '<li> > <a href="'.$url.'">'.$item->name.'</a></li>';
1200 1200
 		endforeach;
1201 1201
 
1202 1202
 	endif;
1203 1203
 
1204
-	echo '<li> > ' . $term->name . '</li>';
1204
+	echo '<li> > '.$term->name.'</li>';
1205 1205
 }
1206 1206
 
1207
-function geodir_wpml_post_type_archive_link($link, $post_type){
1207
+function geodir_wpml_post_type_archive_link($link, $post_type) {
1208 1208
 	if (geodir_is_wpml()) {
1209
-		$post_types   = get_option( 'geodir_post_types' );
1209
+		$post_types = get_option('geodir_post_types');
1210 1210
 		
1211
-		if ( isset( $post_types[ $post_type ] ) ) {
1212
-			$slug = $post_types[ $post_type ]['rewrite']['slug'];
1211
+		if (isset($post_types[$post_type])) {
1212
+			$slug = $post_types[$post_type]['rewrite']['slug'];
1213 1213
 
1214 1214
 			// Alter the CPT slug if WPML is set to do so
1215
-			if ( geodir_wpml_is_post_type_translated( $post_type ) ) {
1216
-				if ( gd_wpml_slug_translation_turned_on( $post_type ) && $language_code = gd_wpml_get_lang_from_url( $link) ) {
1215
+			if (geodir_wpml_is_post_type_translated($post_type)) {
1216
+				if (gd_wpml_slug_translation_turned_on($post_type) && $language_code = gd_wpml_get_lang_from_url($link)) {
1217 1217
 
1218 1218
 					$org_slug = $slug;
1219
-					$slug     = apply_filters( 'wpml_translate_single_string',
1219
+					$slug     = apply_filters('wpml_translate_single_string',
1220 1220
 						$slug,
1221 1221
 						'WordPress',
1222
-						'URL slug: ' . $slug,
1223
-						$language_code );
1222
+						'URL slug: '.$slug,
1223
+						$language_code);
1224 1224
                     
1225
-					if ( ! $slug ) {
1225
+					if (!$slug) {
1226 1226
 						$slug = $org_slug;
1227 1227
 					} else {
1228
-						$link = str_replace( $org_slug, $slug, $link );
1228
+						$link = str_replace($org_slug, $slug, $link);
1229 1229
 					}
1230 1230
 				}
1231 1231
 			}
@@ -1234,7 +1234,7 @@  discard block
 block discarded – undo
1234 1234
 
1235 1235
 	return $link;
1236 1236
 }
1237
-add_filter( 'post_type_archive_link','geodir_wpml_post_type_archive_link', 1000, 2);
1237
+add_filter('post_type_archive_link', 'geodir_wpml_post_type_archive_link', 1000, 2);
1238 1238
 
1239 1239
 /**
1240 1240
  * Main function that generates breadcrumb for all pages.
@@ -1255,9 +1255,9 @@  discard block
 block discarded – undo
1255 1255
 	 *
1256 1256
 	 * @since 1.0.0
1257 1257
 	 */
1258
-	$separator = apply_filters( 'geodir_breadcrumb_separator', ' > ' );
1258
+	$separator = apply_filters('geodir_breadcrumb_separator', ' > ');
1259 1259
 
1260
-	if ( ! geodir_is_page( 'home' ) ) {
1260
+	if (!geodir_is_page('home')) {
1261 1261
 		$breadcrumb    = '';
1262 1262
 		$url_categoris = '';
1263 1263
 		$breadcrumb .= '<div class="geodir-breadcrumb clearfix"><ul id="breadcrumbs">';
@@ -1266,170 +1266,170 @@  discard block
 block discarded – undo
1266 1266
 		 *
1267 1267
 		 * @since 1.0.0
1268 1268
 		 */
1269
-		$breadcrumb .= '<li>' . apply_filters( 'geodir_breadcrumb_first_link', '<a href="' . home_url() . '">' . __( 'Home', 'geodirectory' ) . '</a>' ) . '</li>';
1269
+		$breadcrumb .= '<li>'.apply_filters('geodir_breadcrumb_first_link', '<a href="'.home_url().'">'.__('Home', 'geodirectory').'</a>').'</li>';
1270 1270
 
1271 1271
 		$gd_post_type   = geodir_get_current_posttype();
1272
-		$post_type_info = get_post_type_object( $gd_post_type );
1272
+		$post_type_info = get_post_type_object($gd_post_type);
1273 1273
 
1274
-		remove_filter( 'post_type_archive_link', 'geodir_get_posttype_link' );
1274
+		remove_filter('post_type_archive_link', 'geodir_get_posttype_link');
1275 1275
 
1276
-		$listing_link = get_post_type_archive_link( $gd_post_type );
1276
+		$listing_link = get_post_type_archive_link($gd_post_type);
1277 1277
 
1278
-		add_filter( 'post_type_archive_link', 'geodir_get_posttype_link', 10, 2 );
1279
-		$listing_link = rtrim( $listing_link, '/' );
1278
+		add_filter('post_type_archive_link', 'geodir_get_posttype_link', 10, 2);
1279
+		$listing_link = rtrim($listing_link, '/');
1280 1280
 		$listing_link .= '/';
1281 1281
 
1282 1282
 		$post_type_for_location_link = $listing_link;
1283
-		$location_terms              = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
1283
+		$location_terms              = geodir_get_current_location_terms('query_vars', $gd_post_type);
1284 1284
 
1285 1285
 		global $wp, $gd_session;
1286 1286
 		$location_link = $post_type_for_location_link;
1287 1287
 
1288
-		if ( geodir_is_page( 'detail' ) || geodir_is_page( 'listing' ) ) {
1288
+		if (geodir_is_page('detail') || geodir_is_page('listing')) {
1289 1289
 			global $post, $gd_cache_post;
1290
-			if ( ! empty( $post ) && ! empty( $gd_cache_post ) && geodir_is_page( 'detail' ) && $post->ID == $gd_cache_post->ID && ! isset( $post->country_slug ) && isset( $gd_cache_post->country_slug ) && geodir_disable_yoast_seo_metas() ) {
1290
+			if (!empty($post) && !empty($gd_cache_post) && geodir_is_page('detail') && $post->ID == $gd_cache_post->ID && !isset($post->country_slug) && isset($gd_cache_post->country_slug) && geodir_disable_yoast_seo_metas()) {
1291 1291
 				$post = $gd_cache_post;
1292 1292
 			}
1293
-			$location_manager     = defined( 'POST_LOCATION_TABLE' ) ? true : false;
1294
-			$neighbourhood_active = $location_manager && get_option( 'location_neighbourhoods' ) ? true : false;
1293
+			$location_manager     = defined('POST_LOCATION_TABLE') ? true : false;
1294
+			$neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
1295 1295
 
1296
-			if ( geodir_is_page( 'detail' ) && isset( $post->country_slug ) ) {
1296
+			if (geodir_is_page('detail') && isset($post->country_slug)) {
1297 1297
 				$location_terms = array(
1298 1298
 					'gd_country' => $post->country_slug,
1299 1299
 					'gd_region'  => $post->region_slug,
1300 1300
 					'gd_city'    => $post->city_slug
1301 1301
 				);
1302 1302
 
1303
-				if ( $neighbourhood_active && ! empty( $location_terms['gd_city'] ) && $gd_ses_neighbourhood = $gd_session->get( 'gd_neighbourhood' ) ) {
1303
+				if ($neighbourhood_active && !empty($location_terms['gd_city']) && $gd_ses_neighbourhood = $gd_session->get('gd_neighbourhood')) {
1304 1304
 					$location_terms['gd_neighbourhood'] = $gd_ses_neighbourhood;
1305 1305
 				}
1306 1306
 			}
1307 1307
 
1308
-			$geodir_show_location_url = get_option( 'geodir_show_location_url' );
1308
+			$geodir_show_location_url = get_option('geodir_show_location_url');
1309 1309
 
1310 1310
 			$hide_url_part = array();
1311
-			if ( $location_manager ) {
1312
-				$hide_country_part = get_option( 'geodir_location_hide_country_part' );
1313
-				$hide_region_part  = get_option( 'geodir_location_hide_region_part' );
1314
-
1315
-				if ( $hide_region_part && $hide_country_part ) {
1316
-					$hide_url_part = array( 'gd_country', 'gd_region' );
1317
-				} else if ( $hide_region_part && ! $hide_country_part ) {
1318
-					$hide_url_part = array( 'gd_region' );
1319
-				} else if ( ! $hide_region_part && $hide_country_part ) {
1320
-					$hide_url_part = array( 'gd_country' );
1311
+			if ($location_manager) {
1312
+				$hide_country_part = get_option('geodir_location_hide_country_part');
1313
+				$hide_region_part  = get_option('geodir_location_hide_region_part');
1314
+
1315
+				if ($hide_region_part && $hide_country_part) {
1316
+					$hide_url_part = array('gd_country', 'gd_region');
1317
+				} else if ($hide_region_part && !$hide_country_part) {
1318
+					$hide_url_part = array('gd_region');
1319
+				} else if (!$hide_region_part && $hide_country_part) {
1320
+					$hide_url_part = array('gd_country');
1321 1321
 				}
1322 1322
 			}
1323 1323
 
1324 1324
 			$hide_text_part = array();
1325
-			if ( $geodir_show_location_url == 'country_city' ) {
1326
-				$hide_text_part = array( 'gd_region' );
1325
+			if ($geodir_show_location_url == 'country_city') {
1326
+				$hide_text_part = array('gd_region');
1327 1327
 
1328
-				if ( isset( $location_terms['gd_region'] ) && ! $location_manager ) {
1329
-					unset( $location_terms['gd_region'] );
1328
+				if (isset($location_terms['gd_region']) && !$location_manager) {
1329
+					unset($location_terms['gd_region']);
1330 1330
 				}
1331
-			} else if ( $geodir_show_location_url == 'region_city' ) {
1332
-				$hide_text_part = array( 'gd_country' );
1331
+			} else if ($geodir_show_location_url == 'region_city') {
1332
+				$hide_text_part = array('gd_country');
1333 1333
 
1334
-				if ( isset( $location_terms['gd_country'] ) && ! $location_manager ) {
1335
-					unset( $location_terms['gd_country'] );
1334
+				if (isset($location_terms['gd_country']) && !$location_manager) {
1335
+					unset($location_terms['gd_country']);
1336 1336
 				}
1337
-			} else if ( $geodir_show_location_url == 'city' ) {
1338
-				$hide_text_part = array( 'gd_country', 'gd_region' );
1337
+			} else if ($geodir_show_location_url == 'city') {
1338
+				$hide_text_part = array('gd_country', 'gd_region');
1339 1339
 
1340
-				if ( isset( $location_terms['gd_country'] ) && ! $location_manager ) {
1341
-					unset( $location_terms['gd_country'] );
1340
+				if (isset($location_terms['gd_country']) && !$location_manager) {
1341
+					unset($location_terms['gd_country']);
1342 1342
 				}
1343
-				if ( isset( $location_terms['gd_region'] ) && ! $location_manager ) {
1344
-					unset( $location_terms['gd_region'] );
1343
+				if (isset($location_terms['gd_region']) && !$location_manager) {
1344
+					unset($location_terms['gd_region']);
1345 1345
 				}
1346 1346
 			}
1347 1347
 
1348 1348
 			$is_location_last = '';
1349 1349
 			$is_taxonomy_last = '';
1350 1350
 			$breadcrumb .= '<li>';
1351
-			if ( get_query_var( $gd_post_type . 'category' ) ) {
1352
-				$gd_taxonomy = $gd_post_type . 'category';
1353
-			} elseif ( get_query_var( $gd_post_type . '_tags' ) ) {
1354
-				$gd_taxonomy = $gd_post_type . '_tags';
1351
+			if (get_query_var($gd_post_type.'category')) {
1352
+				$gd_taxonomy = $gd_post_type.'category';
1353
+			} elseif (get_query_var($gd_post_type.'_tags')) {
1354
+				$gd_taxonomy = $gd_post_type.'_tags';
1355 1355
 			}
1356 1356
 
1357
-			$breadcrumb .= $separator . '<a href="' . $listing_link . '">' . __( geodir_utf8_ucfirst( $post_type_info->label ), 'geodirectory' ) . '</a>';
1358
-			if ( ! empty( $gd_taxonomy ) || geodir_is_page( 'detail' ) ) {
1357
+			$breadcrumb .= $separator.'<a href="'.$listing_link.'">'.__(geodir_utf8_ucfirst($post_type_info->label), 'geodirectory').'</a>';
1358
+			if (!empty($gd_taxonomy) || geodir_is_page('detail')) {
1359 1359
 				$is_location_last = false;
1360 1360
 			} else {
1361 1361
 				$is_location_last = true;
1362 1362
 			}
1363 1363
 
1364
-			if ( ! empty( $gd_taxonomy ) && geodir_is_page( 'listing' ) ) {
1364
+			if (!empty($gd_taxonomy) && geodir_is_page('listing')) {
1365 1365
 				$is_taxonomy_last = true;
1366 1366
 			} else {
1367 1367
 				$is_taxonomy_last = false;
1368 1368
 			}
1369 1369
 
1370
-			if ( ! empty( $location_terms ) ) {
1371
-				$geodir_get_locations = function_exists( 'get_actual_location_name' ) ? true : false;
1370
+			if (!empty($location_terms)) {
1371
+				$geodir_get_locations = function_exists('get_actual_location_name') ? true : false;
1372 1372
 
1373
-				foreach ( $location_terms as $key => $location_term ) {
1374
-					if ( $location_term != '' ) {
1375
-						if ( ! empty( $hide_url_part ) && in_array( $key, $hide_url_part ) ) { // Hide location part from url & breadcrumb.
1373
+				foreach ($location_terms as $key => $location_term) {
1374
+					if ($location_term != '') {
1375
+						if (!empty($hide_url_part) && in_array($key, $hide_url_part)) { // Hide location part from url & breadcrumb.
1376 1376
 							continue;
1377 1377
 						}
1378 1378
 
1379
-						$gd_location_link_text = preg_replace( '/-(\d+)$/', '', $location_term );
1380
-						$gd_location_link_text = preg_replace( '/[_-]/', ' ', $gd_location_link_text );
1381
-						$gd_location_link_text = geodir_utf8_ucfirst( $gd_location_link_text );
1379
+						$gd_location_link_text = preg_replace('/-(\d+)$/', '', $location_term);
1380
+						$gd_location_link_text = preg_replace('/[_-]/', ' ', $gd_location_link_text);
1381
+						$gd_location_link_text = geodir_utf8_ucfirst($gd_location_link_text);
1382 1382
 
1383 1383
 						$location_term_actual_country = '';
1384 1384
 						$location_term_actual_region  = '';
1385 1385
 						$location_term_actual_city    = '';
1386 1386
 						$location_term_actual_neighbourhood = '';
1387
-						if ( $geodir_get_locations ) {
1388
-							if ( $key == 'gd_country' ) {
1389
-								$location_term_actual_country = get_actual_location_name( 'country', $location_term, true );
1390
-							} else if ( $key == 'gd_region' ) {
1391
-								$location_term_actual_region = get_actual_location_name( 'region', $location_term, true );
1392
-							} else if ( $key == 'gd_city' ) {
1393
-								$location_term_actual_city = get_actual_location_name( 'city', $location_term, true );
1394
-							} else if ( $key == 'gd_neighbourhood' ) {
1395
-								$location_term_actual_neighbourhood = get_actual_location_name( 'neighbourhood', $location_term, true );
1387
+						if ($geodir_get_locations) {
1388
+							if ($key == 'gd_country') {
1389
+								$location_term_actual_country = get_actual_location_name('country', $location_term, true);
1390
+							} else if ($key == 'gd_region') {
1391
+								$location_term_actual_region = get_actual_location_name('region', $location_term, true);
1392
+							} else if ($key == 'gd_city') {
1393
+								$location_term_actual_city = get_actual_location_name('city', $location_term, true);
1394
+							} else if ($key == 'gd_neighbourhood') {
1395
+								$location_term_actual_neighbourhood = get_actual_location_name('neighbourhood', $location_term, true);
1396 1396
 							}
1397 1397
 						} else {
1398 1398
 							$location_info = geodir_get_location();
1399 1399
 
1400
-							if ( ! empty( $location_info ) && isset( $location_info->location_id ) ) {
1401
-								if ( $key == 'gd_country' ) {
1402
-									$location_term_actual_country = __( $location_info->country, 'geodirectory' );
1403
-								} else if ( $key == 'gd_region' ) {
1404
-									$location_term_actual_region = __( $location_info->region, 'geodirectory' );
1405
-								} else if ( $key == 'gd_city' ) {
1406
-									$location_term_actual_city = __( $location_info->city, 'geodirectory' );
1400
+							if (!empty($location_info) && isset($location_info->location_id)) {
1401
+								if ($key == 'gd_country') {
1402
+									$location_term_actual_country = __($location_info->country, 'geodirectory');
1403
+								} else if ($key == 'gd_region') {
1404
+									$location_term_actual_region = __($location_info->region, 'geodirectory');
1405
+								} else if ($key == 'gd_city') {
1406
+									$location_term_actual_city = __($location_info->city, 'geodirectory');
1407 1407
 								}
1408 1408
 							}
1409 1409
 						}
1410 1410
 
1411
-						if ( $is_location_last && $key == 'gd_country' && ! ( isset( $location_terms['gd_region'] ) && $location_terms['gd_region'] != '' ) && ! ( isset( $location_terms['gd_city'] ) && $location_terms['gd_city'] != '' ) ) {
1412
-							$breadcrumb .= $location_term_actual_country != '' ? $separator . $location_term_actual_country : $separator . $gd_location_link_text;
1413
-						} else if ( $is_location_last && $key == 'gd_region' && ! ( isset( $location_terms['gd_city'] ) && $location_terms['gd_city'] != '' ) ) {
1414
-							$breadcrumb .= $location_term_actual_region != '' ? $separator . $location_term_actual_region : $separator . $gd_location_link_text;
1415
-						} else if ( $is_location_last && $key == 'gd_city' && empty( $location_terms['gd_neighbourhood'] ) ) {
1416
-							$breadcrumb .= $location_term_actual_city != '' ? $separator . $location_term_actual_city : $separator . $gd_location_link_text;
1417
-						} else if ( $is_location_last && $key == 'gd_neighbourhood' ) {
1418
-							$breadcrumb .= $location_term_actual_neighbourhood != '' ? $separator . $location_term_actual_neighbourhood : $separator . $gd_location_link_text;
1411
+						if ($is_location_last && $key == 'gd_country' && !(isset($location_terms['gd_region']) && $location_terms['gd_region'] != '') && !(isset($location_terms['gd_city']) && $location_terms['gd_city'] != '')) {
1412
+							$breadcrumb .= $location_term_actual_country != '' ? $separator.$location_term_actual_country : $separator.$gd_location_link_text;
1413
+						} else if ($is_location_last && $key == 'gd_region' && !(isset($location_terms['gd_city']) && $location_terms['gd_city'] != '')) {
1414
+							$breadcrumb .= $location_term_actual_region != '' ? $separator.$location_term_actual_region : $separator.$gd_location_link_text;
1415
+						} else if ($is_location_last && $key == 'gd_city' && empty($location_terms['gd_neighbourhood'])) {
1416
+							$breadcrumb .= $location_term_actual_city != '' ? $separator.$location_term_actual_city : $separator.$gd_location_link_text;
1417
+						} else if ($is_location_last && $key == 'gd_neighbourhood') {
1418
+							$breadcrumb .= $location_term_actual_neighbourhood != '' ? $separator.$location_term_actual_neighbourhood : $separator.$gd_location_link_text;
1419 1419
 						} else {
1420
-							if ( get_option( 'permalink_structure' ) != '' ) {
1421
-								$location_link .= $location_term . '/';
1420
+							if (get_option('permalink_structure') != '') {
1421
+								$location_link .= $location_term.'/';
1422 1422
 							} else {
1423
-								$location_link .= "&$key=" . $location_term;
1423
+								$location_link .= "&$key=".$location_term;
1424 1424
 							}
1425 1425
 
1426
-							if ( $key == 'gd_country' && $location_term_actual_country != '' ) {
1426
+							if ($key == 'gd_country' && $location_term_actual_country != '') {
1427 1427
 								$gd_location_link_text = $location_term_actual_country;
1428
-							} else if ( $key == 'gd_region' && $location_term_actual_region != '' ) {
1428
+							} else if ($key == 'gd_region' && $location_term_actual_region != '') {
1429 1429
 								$gd_location_link_text = $location_term_actual_region;
1430
-							} else if ( $key == 'gd_city' && $location_term_actual_city != '' ) {
1430
+							} else if ($key == 'gd_city' && $location_term_actual_city != '') {
1431 1431
 								$gd_location_link_text = $location_term_actual_city;
1432
-							} else if ( $key == 'gd_neighbourhood' && $location_term_actual_neighbourhood != '' ) {
1432
+							} else if ($key == 'gd_neighbourhood' && $location_term_actual_neighbourhood != '') {
1433 1433
 								$gd_location_link_text = $location_term_actual_neighbourhood;
1434 1434
 							}
1435 1435
 
@@ -1439,77 +1439,77 @@  discard block
 block discarded – undo
1439 1439
                             }
1440 1440
                             */
1441 1441
 
1442
-							$breadcrumb .= $separator . '<a href="' . $location_link . '">' . $gd_location_link_text . '</a>';
1442
+							$breadcrumb .= $separator.'<a href="'.$location_link.'">'.$gd_location_link_text.'</a>';
1443 1443
 						}
1444 1444
 					}
1445 1445
 				}
1446 1446
 			}
1447 1447
 
1448
-			if ( ! empty( $gd_taxonomy ) ) {
1448
+			if (!empty($gd_taxonomy)) {
1449 1449
 				$term_index = 1;
1450 1450
 
1451 1451
 				//if(get_option('geodir_add_categories_url'))
1452 1452
 				{
1453
-					if ( get_query_var( $gd_post_type . '_tags' ) ) {
1454
-						$cat_link = $listing_link . 'tags/';
1453
+					if (get_query_var($gd_post_type.'_tags')) {
1454
+						$cat_link = $listing_link.'tags/';
1455 1455
 					} else {
1456 1456
 						$cat_link = $listing_link;
1457 1457
 					}
1458 1458
 
1459
-					foreach ( $location_terms as $key => $location_term ) {
1460
-						if ( $location_manager && in_array( $key, $hide_url_part ) ) {
1459
+					foreach ($location_terms as $key => $location_term) {
1460
+						if ($location_manager && in_array($key, $hide_url_part)) {
1461 1461
 							continue;
1462 1462
 						}
1463 1463
 
1464
-						if ( $location_term != '' ) {
1465
-							if ( get_option( 'permalink_structure' ) != '' ) {
1466
-								$cat_link .= $location_term . '/';
1464
+						if ($location_term != '') {
1465
+							if (get_option('permalink_structure') != '') {
1466
+								$cat_link .= $location_term.'/';
1467 1467
 							}
1468 1468
 						}
1469 1469
 					}
1470 1470
 
1471
-					$term_array = explode( "/", trim( $wp_query->query[ $gd_taxonomy ], "/" ) );
1472
-					foreach ( $term_array as $term ) {
1473
-						$term_link_text = preg_replace( '/-(\d+)$/', '', $term );
1474
-						$term_link_text = preg_replace( '/[_-]/', ' ', $term_link_text );
1471
+					$term_array = explode("/", trim($wp_query->query[$gd_taxonomy], "/"));
1472
+					foreach ($term_array as $term) {
1473
+						$term_link_text = preg_replace('/-(\d+)$/', '', $term);
1474
+						$term_link_text = preg_replace('/[_-]/', ' ', $term_link_text);
1475 1475
 
1476 1476
 						// get term actual name
1477
-						$term_info = get_term_by( 'slug', $term, $gd_taxonomy, 'ARRAY_A' );
1478
-						if ( ! empty( $term_info ) && isset( $term_info['name'] ) && $term_info['name'] != '' ) {
1479
-							$term_link_text = urldecode( $term_info['name'] );
1477
+						$term_info = get_term_by('slug', $term, $gd_taxonomy, 'ARRAY_A');
1478
+						if (!empty($term_info) && isset($term_info['name']) && $term_info['name'] != '') {
1479
+							$term_link_text = urldecode($term_info['name']);
1480 1480
 						} else {
1481 1481
 							continue;
1482 1482
 							//$term_link_text = wp_strip_all_tags(geodir_ucwords(urldecode($term_link_text)));
1483 1483
 						}
1484 1484
 
1485
-						if ( $term_index == count( $term_array ) && $is_taxonomy_last ) {
1486
-							$breadcrumb .= $separator . $term_link_text;
1485
+						if ($term_index == count($term_array) && $is_taxonomy_last) {
1486
+							$breadcrumb .= $separator.$term_link_text;
1487 1487
 						} else {
1488
-							$cat_link .= $term . '/';
1489
-							$breadcrumb .= $separator . '<a href="' . $cat_link . '">' . $term_link_text . '</a>';
1488
+							$cat_link .= $term.'/';
1489
+							$breadcrumb .= $separator.'<a href="'.$cat_link.'">'.$term_link_text.'</a>';
1490 1490
 						}
1491
-						$term_index ++;
1491
+						$term_index++;
1492 1492
 					}
1493 1493
 				}
1494 1494
 
1495 1495
 
1496 1496
 			}
1497 1497
 
1498
-			if ( geodir_is_page( 'detail' ) ) {
1499
-				$breadcrumb .= $separator . get_the_title();
1498
+			if (geodir_is_page('detail')) {
1499
+				$breadcrumb .= $separator.get_the_title();
1500 1500
 			}
1501 1501
 
1502 1502
 			$breadcrumb .= '</li>';
1503 1503
 
1504 1504
 
1505
-		} elseif ( geodir_is_page( 'author' ) ) {
1505
+		} elseif (geodir_is_page('author')) {
1506 1506
 			$dashboard_post_type = isset($_REQUEST['stype']) ? sanitize_text_field($_REQUEST['stype']) : $gd_post_type;
1507 1507
 			$user_id             = get_current_user_id();
1508
-			$author_link         = get_author_posts_url( $user_id );
1509
-			$default_author_link = geodir_getlink( $author_link, array(
1508
+			$author_link         = get_author_posts_url($user_id);
1509
+			$default_author_link = geodir_getlink($author_link, array(
1510 1510
 				'geodir_dashbord' => 'true',
1511 1511
 				'stype'           => $dashboard_post_type
1512
-			), false );
1512
+			), false);
1513 1513
 
1514 1514
 			/**
1515 1515
 			 * Filter author page link.
@@ -1519,16 +1519,16 @@  discard block
 block discarded – undo
1519 1519
 			 * @param string $default_author_link Default author link.
1520 1520
 			 * @param int $user_id                Author ID.
1521 1521
 			 */
1522
-			$default_author_link = apply_filters( 'geodir_dashboard_author_link', $default_author_link, $user_id );
1522
+			$default_author_link = apply_filters('geodir_dashboard_author_link', $default_author_link, $user_id);
1523 1523
 
1524 1524
 			$breadcrumb .= '<li>';
1525
-			$breadcrumb .= $separator . '<a href="' . $default_author_link . '">' . __( 'My Dashboard', 'geodirectory' ) . '</a>';
1525
+			$breadcrumb .= $separator.'<a href="'.$default_author_link.'">'.__('My Dashboard', 'geodirectory').'</a>';
1526 1526
 
1527
-			if ( isset( $_REQUEST['list'] ) ) {
1528
-				$author_link = geodir_getlink( $author_link, array(
1527
+			if (isset($_REQUEST['list'])) {
1528
+				$author_link = geodir_getlink($author_link, array(
1529 1529
 					'geodir_dashbord' => 'true',
1530 1530
 					'stype'           => $_REQUEST['stype']
1531
-				), false );
1531
+				), false);
1532 1532
 
1533 1533
 				/**
1534 1534
 				 * Filter author page link.
@@ -1539,64 +1539,64 @@  discard block
 block discarded – undo
1539 1539
 				 * @param int $user_id        Author ID.
1540 1540
 				 * @param string $_REQUEST    ['stype'] Post type.
1541 1541
 				 */
1542
-				$author_link = apply_filters( 'geodir_dashboard_author_link', $author_link, $user_id, $_REQUEST['stype'] );
1542
+				$author_link = apply_filters('geodir_dashboard_author_link', $author_link, $user_id, $_REQUEST['stype']);
1543 1543
 
1544
-				$breadcrumb .= $separator . '<a href="' . $author_link . '">' . __( geodir_utf8_ucfirst( $post_type_info->label ), 'geodirectory' ) . '</a>';
1545
-				if($_REQUEST['list']=='favourite'){
1546
-					$breadcrumb .= $separator . MY_FAVOURITE_TEXT;
1544
+				$breadcrumb .= $separator.'<a href="'.$author_link.'">'.__(geodir_utf8_ucfirst($post_type_info->label), 'geodirectory').'</a>';
1545
+				if ($_REQUEST['list'] == 'favourite') {
1546
+					$breadcrumb .= $separator.MY_FAVOURITE_TEXT;
1547 1547
 				}
1548 1548
 
1549 1549
 			} else {
1550
-				$breadcrumb .= $separator . __( geodir_utf8_ucfirst( $post_type_info->label ), 'geodirectory' );
1550
+				$breadcrumb .= $separator.__(geodir_utf8_ucfirst($post_type_info->label), 'geodirectory');
1551 1551
 			}
1552 1552
 
1553 1553
 			$breadcrumb .= '</li>';
1554
-		} elseif ( is_category() || is_single() ) {
1554
+		} elseif (is_category() || is_single()) {
1555 1555
 			$category = get_the_category();
1556
-			if ( is_category() ) {
1557
-				$breadcrumb .= '<li>' . $separator . $category[0]->cat_name . '</li>';
1556
+			if (is_category()) {
1557
+				$breadcrumb .= '<li>'.$separator.$category[0]->cat_name.'</li>';
1558 1558
 			}
1559
-			if ( is_single() ) {
1560
-				$breadcrumb .= '<li>' . $separator . '<a href="' . get_category_link( $category[0]->term_id ) . '">' . $category[0]->cat_name . '</a></li>';
1561
-				$breadcrumb .= '<li>' . $separator . get_the_title() . '</li>';
1559
+			if (is_single()) {
1560
+				$breadcrumb .= '<li>'.$separator.'<a href="'.get_category_link($category[0]->term_id).'">'.$category[0]->cat_name.'</a></li>';
1561
+				$breadcrumb .= '<li>'.$separator.get_the_title().'</li>';
1562 1562
 			}
1563 1563
 			/* End of my version ##################################################### */
1564
-		} else if ( is_page() ) {
1564
+		} else if (is_page()) {
1565 1565
 			$page_title = get_the_title();
1566 1566
 
1567
-			if ( geodir_is_page( 'location' ) ) {
1567
+			if (geodir_is_page('location')) {
1568 1568
 				$location_page_id = geodir_location_page_id();
1569
-				$loc_post         = get_post( $location_page_id );
1569
+				$loc_post         = get_post($location_page_id);
1570 1570
 				$post_name        = $loc_post->post_name;
1571
-				$slug             = ucwords( str_replace( '-', ' ', $post_name ) );
1572
-				$page_title       = ! empty( $slug ) ? $slug : __( 'Location', 'geodirectory' );
1571
+				$slug             = ucwords(str_replace('-', ' ', $post_name));
1572
+				$page_title       = !empty($slug) ? $slug : __('Location', 'geodirectory');
1573 1573
 			}
1574 1574
 
1575
-			$breadcrumb .= '<li>' . $separator;
1576
-			$breadcrumb .= stripslashes_deep( $page_title );
1575
+			$breadcrumb .= '<li>'.$separator;
1576
+			$breadcrumb .= stripslashes_deep($page_title);
1577 1577
 			$breadcrumb .= '</li>';
1578
-		} else if ( is_tag() ) {
1579
-			$breadcrumb .= "<li> " . $separator . single_tag_title( '', false ) . '</li>';
1580
-		} else if ( is_day() ) {
1581
-			$breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " ";
1582
-			the_time( 'F jS, Y' );
1578
+		} else if (is_tag()) {
1579
+			$breadcrumb .= "<li> ".$separator.single_tag_title('', false).'</li>';
1580
+		} else if (is_day()) {
1581
+			$breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
1582
+			the_time('F jS, Y');
1583 1583
 			$breadcrumb .= '</li>';
1584
-		} else if ( is_month() ) {
1585
-			$breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " ";
1586
-			the_time( 'F, Y' );
1584
+		} else if (is_month()) {
1585
+			$breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
1586
+			the_time('F, Y');
1587 1587
 			$breadcrumb .= '</li>';
1588
-		} else if ( is_year() ) {
1589
-			$breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " ";
1590
-			the_time( 'Y' );
1588
+		} else if (is_year()) {
1589
+			$breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
1590
+			the_time('Y');
1591 1591
 			$breadcrumb .= '</li>';
1592
-		} else if ( is_author() ) {
1593
-			$breadcrumb .= "<li> " . $separator . __( " Author Archive", 'geodirectory' );
1592
+		} else if (is_author()) {
1593
+			$breadcrumb .= "<li> ".$separator.__(" Author Archive", 'geodirectory');
1594 1594
 			$breadcrumb .= '</li>';
1595
-		} else if ( isset( $_GET['paged'] ) && ! empty( $_GET['paged'] ) ) {
1596
-			$breadcrumb .= "<li>" . $separator . __( "Blog Archives", 'geodirectory' );
1595
+		} else if (isset($_GET['paged']) && !empty($_GET['paged'])) {
1596
+			$breadcrumb .= "<li>".$separator.__("Blog Archives", 'geodirectory');
1597 1597
 			$breadcrumb .= '</li>';
1598
-		} else if ( is_search() ) {
1599
-			$breadcrumb .= "<li> " . $separator . __( " Search Results", 'geodirectory' );
1598
+		} else if (is_search()) {
1599
+			$breadcrumb .= "<li> ".$separator.__(" Search Results", 'geodirectory');
1600 1600
 			$breadcrumb .= '</li>';
1601 1601
 		}
1602 1602
 		$breadcrumb .= '</ul></div>';
@@ -1609,13 +1609,13 @@  discard block
 block discarded – undo
1609 1609
 		 * @param string $breadcrumb Breadcrumb HTML.
1610 1610
 		 * @param string $separator  Breadcrumb separator.
1611 1611
 		 */
1612
-		echo $breadcrumb = apply_filters( 'geodir_breadcrumb', $breadcrumb, $separator );
1612
+		echo $breadcrumb = apply_filters('geodir_breadcrumb', $breadcrumb, $separator);
1613 1613
 	}
1614 1614
 }
1615 1615
 
1616 1616
 
1617
-add_action( "admin_init", "geodir_allow_wpadmin" ); // check user is admin
1618
-if ( ! function_exists( 'geodir_allow_wpadmin' ) ) {
1617
+add_action("admin_init", "geodir_allow_wpadmin"); // check user is admin
1618
+if (!function_exists('geodir_allow_wpadmin')) {
1619 1619
 	/**
1620 1620
 	 * Allow only admins to access wp-admin.
1621 1621
 	 *
@@ -1627,12 +1627,12 @@  discard block
 block discarded – undo
1627 1627
 	 */
1628 1628
 	function geodir_allow_wpadmin() {
1629 1629
 		global $wpdb;
1630
-		if ( get_option( 'geodir_allow_wpadmin' ) == '0' && is_user_logged_in() && ( ! defined( 'DOING_AJAX' ) ) ) // checking action in request to allow ajax request go through
1630
+		if (get_option('geodir_allow_wpadmin') == '0' && is_user_logged_in() && (!defined('DOING_AJAX'))) // checking action in request to allow ajax request go through
1631 1631
 		{
1632
-			if ( current_user_can( 'administrator' ) ) {
1632
+			if (current_user_can('administrator')) {
1633 1633
 			} else {
1634 1634
 
1635
-				wp_redirect( home_url() );
1635
+				wp_redirect(home_url());
1636 1636
 				exit;
1637 1637
 			}
1638 1638
 
@@ -1651,23 +1651,23 @@  discard block
 block discarded – undo
1651 1651
  *
1652 1652
  * @return array|WP_Error The uploaded data as array. When failure returns error.
1653 1653
  */
1654
-function fetch_remote_file( $url ) {
1654
+function fetch_remote_file($url) {
1655 1655
 	// extract the file name and extension from the url
1656
-	require_once( ABSPATH . 'wp-includes/pluggable.php' );
1657
-	$file_name = basename( $url );
1658
-	if ( strpos( $file_name, '?' ) !== false ) {
1659
-		list( $file_name ) = explode( '?', $file_name );
1656
+	require_once(ABSPATH.'wp-includes/pluggable.php');
1657
+	$file_name = basename($url);
1658
+	if (strpos($file_name, '?') !== false) {
1659
+		list($file_name) = explode('?', $file_name);
1660 1660
 	}
1661 1661
 	$dummy        = false;
1662 1662
 	$add_to_cache = false;
1663 1663
 	$key          = null;
1664
-	if ( strpos( $url, '/dummy/' ) !== false ) {
1664
+	if (strpos($url, '/dummy/') !== false) {
1665 1665
 		$dummy = true;
1666
-		$key   = "dummy_" . str_replace( '.', '_', $file_name );
1667
-		$value = get_transient( 'cached_dummy_images' );
1668
-		if ( $value ) {
1669
-			if ( isset( $value[ $key ] ) ) {
1670
-				return $value[ $key ];
1666
+		$key   = "dummy_".str_replace('.', '_', $file_name);
1667
+		$value = get_transient('cached_dummy_images');
1668
+		if ($value) {
1669
+			if (isset($value[$key])) {
1670
+				return $value[$key];
1671 1671
 			} else {
1672 1672
 				$add_to_cache = true;
1673 1673
 			}
@@ -1678,62 +1678,62 @@  discard block
 block discarded – undo
1678 1678
 
1679 1679
 	// get placeholder file in the upload dir with a unique, sanitized filename
1680 1680
 
1681
-	$post_upload_date = isset( $post['upload_date'] ) ? $post['upload_date'] : '';
1681
+	$post_upload_date = isset($post['upload_date']) ? $post['upload_date'] : '';
1682 1682
 
1683
-	$upload = wp_upload_bits( $file_name, 0, '', $post_upload_date );
1684
-	if ( $upload['error'] ) {
1685
-		return new WP_Error( 'upload_dir_error', $upload['error'] );
1683
+	$upload = wp_upload_bits($file_name, 0, '', $post_upload_date);
1684
+	if ($upload['error']) {
1685
+		return new WP_Error('upload_dir_error', $upload['error']);
1686 1686
 	}
1687 1687
 
1688 1688
 
1689
-	sleep( 0.3 );// if multiple remote file this can cause the remote server to timeout so we add a slight delay
1689
+	sleep(0.3); // if multiple remote file this can cause the remote server to timeout so we add a slight delay
1690 1690
 
1691 1691
 	// fetch the remote url and write it to the placeholder file
1692
-	$headers = wp_remote_get( $url, array( 'stream' => true, 'filename' => $upload['file'] ) );
1692
+	$headers = wp_remote_get($url, array('stream' => true, 'filename' => $upload['file']));
1693 1693
 
1694 1694
 	$log_message = '';
1695
-	if ( is_wp_error( $headers ) ) {
1696
-		echo 'file: ' . $url;
1695
+	if (is_wp_error($headers)) {
1696
+		echo 'file: '.$url;
1697 1697
 
1698
-		return new WP_Error( 'import_file_error', $headers->get_error_message() );
1698
+		return new WP_Error('import_file_error', $headers->get_error_message());
1699 1699
 	}
1700 1700
 
1701 1701
 	// clear cache to make compat with EWWW Image Optimizer
1702
-	if(defined( 'EWWW_IMAGE_OPTIMIZER_PLUGIN_FILE')){
1702
+	if (defined('EWWW_IMAGE_OPTIMIZER_PLUGIN_FILE')) {
1703 1703
 		clearstatcache();
1704 1704
 	}
1705
-	$filesize = filesize( $upload['file'] );
1705
+	$filesize = filesize($upload['file']);
1706 1706
 	// request failed
1707
-	if ( ! $headers ) {
1708
-		$log_message = __( 'Remote server did not respond', 'geodirectory' );
1707
+	if (!$headers) {
1708
+		$log_message = __('Remote server did not respond', 'geodirectory');
1709 1709
 	} // make sure the fetch was successful
1710
-	elseif ( $headers['response']['code'] != '200' ) {
1711
-		$log_message = sprintf( __( 'Remote server returned error response %1$d %2$s', 'geodirectory' ), esc_html( $headers['response'] ), get_status_header_desc( $headers['response'] ) );
1712
-	} elseif ( isset( $headers['headers']['content-length'] ) && $filesize != $headers['headers']['content-length'] ) {
1713
-		$log_message = __( 'Remote file is incorrect size', 'geodirectory' );
1714
-	} elseif ( 0 == $filesize ) {
1715
-		$log_message = __( 'Zero size file downloaded', 'geodirectory' );
1716
-	}
1717
-
1718
-	if ( $log_message ) {
1719
-		$del = unlink( $upload['file'] );
1720
-		if ( ! $del ) {
1721
-			geodir_error_log( __( 'GeoDirectory: fetch_remote_file() failed to delete temp file.', 'geodirectory' ) );
1710
+	elseif ($headers['response']['code'] != '200') {
1711
+		$log_message = sprintf(__('Remote server returned error response %1$d %2$s', 'geodirectory'), esc_html($headers['response']), get_status_header_desc($headers['response']));
1712
+	} elseif (isset($headers['headers']['content-length']) && $filesize != $headers['headers']['content-length']) {
1713
+		$log_message = __('Remote file is incorrect size', 'geodirectory');
1714
+	} elseif (0 == $filesize) {
1715
+		$log_message = __('Zero size file downloaded', 'geodirectory');
1716
+	}
1717
+
1718
+	if ($log_message) {
1719
+		$del = unlink($upload['file']);
1720
+		if (!$del) {
1721
+			geodir_error_log(__('GeoDirectory: fetch_remote_file() failed to delete temp file.', 'geodirectory'));
1722 1722
 		}
1723 1723
 
1724
-		return new WP_Error( 'import_file_error', $log_message );
1724
+		return new WP_Error('import_file_error', $log_message);
1725 1725
 	}
1726 1726
 
1727
-	if ( $dummy && $add_to_cache && is_array( $upload ) ) {
1728
-		$images = get_transient( 'cached_dummy_images' );
1729
-		if ( is_array( $images ) ) {
1730
-			$images[ $key ] = $upload;
1727
+	if ($dummy && $add_to_cache && is_array($upload)) {
1728
+		$images = get_transient('cached_dummy_images');
1729
+		if (is_array($images)) {
1730
+			$images[$key] = $upload;
1731 1731
 		} else {
1732
-			$images = array( $key => $upload );
1732
+			$images = array($key => $upload);
1733 1733
 		}
1734 1734
 
1735 1735
 		//setting the cache using the WP Transient API
1736
-		set_transient( 'cached_dummy_images', $images, 60 * 10 ); //10 minutes cache
1736
+		set_transient('cached_dummy_images', $images, 60 * 10); //10 minutes cache
1737 1737
 	}
1738 1738
 
1739 1739
 	return $upload;
@@ -1747,12 +1747,12 @@  discard block
 block discarded – undo
1747 1747
  * @return string|void Max upload size.
1748 1748
  */
1749 1749
 function geodir_max_upload_size() {
1750
-	$max_filesize = (float) get_option( 'geodir_upload_max_filesize', 2 );
1750
+	$max_filesize = (float) get_option('geodir_upload_max_filesize', 2);
1751 1751
 
1752
-	if ( $max_filesize > 0 && $max_filesize < 1 ) {
1753
-		$max_filesize = (int) ( $max_filesize * 1024 ) . 'kb';
1752
+	if ($max_filesize > 0 && $max_filesize < 1) {
1753
+		$max_filesize = (int) ($max_filesize * 1024).'kb';
1754 1754
 	} else {
1755
-		$max_filesize = $max_filesize > 0 ? $max_filesize . 'mb' : '2mb';
1755
+		$max_filesize = $max_filesize > 0 ? $max_filesize.'mb' : '2mb';
1756 1756
 	}
1757 1757
 
1758 1758
 	/**
@@ -1762,7 +1762,7 @@  discard block
 block discarded – undo
1762 1762
 	 *
1763 1763
 	 * @param string $max_filesize Max file upload size. Ex. 10mb, 512kb.
1764 1764
 	 */
1765
-	return apply_filters( 'geodir_default_image_upload_size_limit', $max_filesize );
1765
+	return apply_filters('geodir_default_image_upload_size_limit', $max_filesize);
1766 1766
 }
1767 1767
 
1768 1768
 /**
@@ -1775,8 +1775,8 @@  discard block
 block discarded – undo
1775 1775
  * @return bool If dummy folder exists returns true, else false.
1776 1776
  */
1777 1777
 function geodir_dummy_folder_exists() {
1778
-	$path = geodir_plugin_path() . '/geodirectory-admin/dummy/';
1779
-	if ( ! is_dir( $path ) ) {
1778
+	$path = geodir_plugin_path().'/geodirectory-admin/dummy/';
1779
+	if (!is_dir($path)) {
1780 1780
 		return false;
1781 1781
 	} else {
1782 1782
 		return true;
@@ -1795,17 +1795,17 @@  discard block
 block discarded – undo
1795 1795
  *
1796 1796
  * @return object Author info.
1797 1797
  */
1798
-function geodir_get_author_info( $aid ) {
1798
+function geodir_get_author_info($aid) {
1799 1799
 	global $wpdb;
1800 1800
 	/*$infosql = "select * from $wpdb->users where ID=$aid";*/
1801
-	$infosql = $wpdb->prepare( "select * from $wpdb->users where ID=%d", array( $aid ) );
1802
-	$info    = $wpdb->get_results( $infosql );
1803
-	if ( $info ) {
1801
+	$infosql = $wpdb->prepare("select * from $wpdb->users where ID=%d", array($aid));
1802
+	$info    = $wpdb->get_results($infosql);
1803
+	if ($info) {
1804 1804
 		return $info[0];
1805 1805
 	}
1806 1806
 }
1807 1807
 
1808
-if ( ! function_exists( 'adminEmail' ) ) {
1808
+if (!function_exists('adminEmail')) {
1809 1809
 	/**
1810 1810
 	 * Send emails to client on post submission, renew etc.
1811 1811
 	 *
@@ -1818,67 +1818,67 @@  discard block
 block discarded – undo
1818 1818
 	 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1819 1819
 	 * @param string $custom_1     Custom data to be sent.
1820 1820
 	 */
1821
-	function adminEmail( $page_id, $user_id, $message_type, $custom_1 = '' ) {
1821
+	function adminEmail($page_id, $user_id, $message_type, $custom_1 = '') {
1822 1822
 		global $wpdb;
1823
-		if ( $message_type == 'expiration' ) {
1824
-			$subject        = stripslashes( __( get_option( 'renew_email_subject' ), 'geodirectory' ) );
1825
-			$client_message = stripslashes( __( get_option( 'renew_email_content' ), 'geodirectory' ) );
1826
-		} elseif ( $message_type == 'post_submited' ) {
1827
-			$subject        = __( get_option( 'post_submited_success_email_subject_admin' ), 'geodirectory' );
1828
-			$client_message = __( get_option( 'post_submited_success_email_content_admin' ), 'geodirectory' );
1829
-		} elseif ( $message_type == 'renew' ) {
1830
-			$subject        = __( get_option( 'post_renew_success_email_subject_admin' ), 'geodirectory' );
1831
-			$client_message = __( get_option( 'post_renew_success_email_content_admin' ), 'geodirectory' );
1832
-		} elseif ( $message_type == 'upgrade' ) {
1833
-			$subject        = __( get_option( 'post_upgrade_success_email_subject_admin' ), 'geodirectory' );
1834
-			$client_message = __( get_option( 'post_upgrade_success_email_content_admin' ), 'geodirectory' );
1835
-		} elseif ( $message_type == 'claim_approved' ) {
1836
-			$subject        = __( get_option( 'claim_approved_email_subject' ), 'geodirectory' );
1837
-			$client_message = __( get_option( 'claim_approved_email_content' ), 'geodirectory' );
1838
-		} elseif ( $message_type == 'claim_rejected' ) {
1839
-			$subject        = __( get_option( 'claim_rejected_email_subject' ), 'geodirectory' );
1840
-			$client_message = __( get_option( 'claim_rejected_email_content' ), 'geodirectory' );
1841
-		} elseif ( $message_type == 'claim_requested' ) {
1842
-			$subject        = __( get_option( 'claim_email_subject_admin' ), 'geodirectory' );
1843
-			$client_message = __( get_option( 'claim_email_content_admin' ), 'geodirectory' );
1844
-		} elseif ( $message_type == 'auto_claim' ) {
1845
-			$subject        = __( get_option( 'auto_claim_email_subject' ), 'geodirectory' );
1846
-			$client_message = __( get_option( 'auto_claim_email_content' ), 'geodirectory' );
1847
-		} elseif ( $message_type == 'payment_success' ) {
1848
-			$subject        = __( get_option( 'post_payment_success_admin_email_subject' ), 'geodirectory' );
1849
-			$client_message = __( get_option( 'post_payment_success_admin_email_content' ), 'geodirectory' );
1850
-		} elseif ( $message_type == 'payment_fail' ) {
1851
-			$subject        = __( get_option( 'post_payment_fail_admin_email_subject' ), 'geodirectory' );
1852
-			$client_message = __( get_option( 'post_payment_fail_admin_email_content' ), 'geodirectory' );
1823
+		if ($message_type == 'expiration') {
1824
+			$subject        = stripslashes(__(get_option('renew_email_subject'), 'geodirectory'));
1825
+			$client_message = stripslashes(__(get_option('renew_email_content'), 'geodirectory'));
1826
+		} elseif ($message_type == 'post_submited') {
1827
+			$subject        = __(get_option('post_submited_success_email_subject_admin'), 'geodirectory');
1828
+			$client_message = __(get_option('post_submited_success_email_content_admin'), 'geodirectory');
1829
+		} elseif ($message_type == 'renew') {
1830
+			$subject        = __(get_option('post_renew_success_email_subject_admin'), 'geodirectory');
1831
+			$client_message = __(get_option('post_renew_success_email_content_admin'), 'geodirectory');
1832
+		} elseif ($message_type == 'upgrade') {
1833
+			$subject        = __(get_option('post_upgrade_success_email_subject_admin'), 'geodirectory');
1834
+			$client_message = __(get_option('post_upgrade_success_email_content_admin'), 'geodirectory');
1835
+		} elseif ($message_type == 'claim_approved') {
1836
+			$subject        = __(get_option('claim_approved_email_subject'), 'geodirectory');
1837
+			$client_message = __(get_option('claim_approved_email_content'), 'geodirectory');
1838
+		} elseif ($message_type == 'claim_rejected') {
1839
+			$subject        = __(get_option('claim_rejected_email_subject'), 'geodirectory');
1840
+			$client_message = __(get_option('claim_rejected_email_content'), 'geodirectory');
1841
+		} elseif ($message_type == 'claim_requested') {
1842
+			$subject        = __(get_option('claim_email_subject_admin'), 'geodirectory');
1843
+			$client_message = __(get_option('claim_email_content_admin'), 'geodirectory');
1844
+		} elseif ($message_type == 'auto_claim') {
1845
+			$subject        = __(get_option('auto_claim_email_subject'), 'geodirectory');
1846
+			$client_message = __(get_option('auto_claim_email_content'), 'geodirectory');
1847
+		} elseif ($message_type == 'payment_success') {
1848
+			$subject        = __(get_option('post_payment_success_admin_email_subject'), 'geodirectory');
1849
+			$client_message = __(get_option('post_payment_success_admin_email_content'), 'geodirectory');
1850
+		} elseif ($message_type == 'payment_fail') {
1851
+			$subject        = __(get_option('post_payment_fail_admin_email_subject'), 'geodirectory');
1852
+			$client_message = __(get_option('post_payment_fail_admin_email_content'), 'geodirectory');
1853 1853
 		}
1854 1854
 		$transaction_details = $custom_1;
1855
-		$fromEmail           = get_option( 'site_email' );
1855
+		$fromEmail           = get_option('site_email');
1856 1856
 		$fromEmailName       = get_site_emailName();
1857 1857
 //$alivedays = get_post_meta($page_id,'alive_days',true);
1858
-		$pkg_limit            = get_property_price_info_listing( $page_id );
1858
+		$pkg_limit            = get_property_price_info_listing($page_id);
1859 1859
 		$alivedays            = $pkg_limit['days'];
1860
-		$productlink          = get_permalink( $page_id );
1861
-		$post_info            = get_post( $page_id );
1862
-		$post_date            = date( 'dS F,Y', strtotime( $post_info->post_date ) );
1863
-		$listingLink          = '<a href="' . $productlink . '"><b>' . $post_info->post_title . '</b></a>';
1860
+		$productlink          = get_permalink($page_id);
1861
+		$post_info            = get_post($page_id);
1862
+		$post_date            = date('dS F,Y', strtotime($post_info->post_date));
1863
+		$listingLink          = '<a href="'.$productlink.'"><b>'.$post_info->post_title.'</b></a>';
1864 1864
 		$loginurl             = geodir_login_url();
1865
-		$loginurl_link        = '<a href="' . $loginurl . '">login</a>';
1865
+		$loginurl_link        = '<a href="'.$loginurl.'">login</a>';
1866 1866
 		$siteurl              = home_url();
1867
-		$siteurl_link         = '<a href="' . $siteurl . '">' . $fromEmailName . '</a>';
1868
-		$user_info            = get_userdata( $user_id );
1867
+		$siteurl_link         = '<a href="'.$siteurl.'">'.$fromEmailName.'</a>';
1868
+		$user_info            = get_userdata($user_id);
1869 1869
 		$user_email           = $user_info->user_email;
1870
-		$display_name         = geodir_get_client_name( $user_id );
1870
+		$display_name         = geodir_get_client_name($user_id);
1871 1871
 		$user_login           = $user_info->user_login;
1872
-		$number_of_grace_days = get_option( 'ptthemes_listing_preexpiry_notice_days' );
1873
-		if ( $number_of_grace_days == '' ) {
1872
+		$number_of_grace_days = get_option('ptthemes_listing_preexpiry_notice_days');
1873
+		if ($number_of_grace_days == '') {
1874 1874
 			$number_of_grace_days = 1;
1875 1875
 		}
1876
-		if ( $post_info->post_type == 'event' ) {
1876
+		if ($post_info->post_type == 'event') {
1877 1877
 			$post_type = 'event';
1878 1878
 		} else {
1879 1879
 			$post_type = 'listing';
1880 1880
 		}
1881
-		$renew_link     = '<a href="' . $siteurl . '?ptype=post_' . $post_type . '&renew=1&pid=' . $page_id . '">' . RENEW_LINK . '</a>';
1881
+		$renew_link     = '<a href="'.$siteurl.'?ptype=post_'.$post_type.'&renew=1&pid='.$page_id.'">'.RENEW_LINK.'</a>';
1882 1882
 		$search_array   = array(
1883 1883
 			'[#client_name#]',
1884 1884
 			'[#listing_link#]',
@@ -1894,7 +1894,7 @@  discard block
 block discarded – undo
1894 1894
 			'[#site_name#]',
1895 1895
 			'[#transaction_details#]'
1896 1896
 		);
1897
-		$replace_array  = array(
1897
+		$replace_array = array(
1898 1898
 			$display_name,
1899 1899
 			$listingLink,
1900 1900
 			$post_date,
@@ -1909,13 +1909,13 @@  discard block
 block discarded – undo
1909 1909
 			$fromEmailName,
1910 1910
 			$transaction_details
1911 1911
 		);
1912
-		$client_message = str_replace( $search_array, $replace_array, $client_message );
1913
-		$subject        = str_replace( $search_array, $replace_array, $subject );
1912
+		$client_message = str_replace($search_array, $replace_array, $client_message);
1913
+		$subject        = str_replace($search_array, $replace_array, $subject);
1914 1914
 		
1915 1915
 		
1916
-		$headers  = array();
1916
+		$headers = array();
1917 1917
 		$headers[] = 'Content-type: text/html; charset=UTF-8';
1918
-		$headers[] = 'From: ' . $fromEmailName . ' <' . $fromEmail . '>';
1918
+		$headers[] = 'From: '.$fromEmailName.' <'.$fromEmail.'>';
1919 1919
 
1920 1920
 		$to      = $fromEmail;
1921 1921
 		$message = $client_message;
@@ -1933,7 +1933,7 @@  discard block
 block discarded – undo
1933 1933
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1934 1934
 		 * @param string $custom_1     Custom data to be sent.
1935 1935
 		 */
1936
-		$to = apply_filters( 'geodir_adminEmail_to', $to, $page_id, $user_id, $message_type, $custom_1 );
1936
+		$to = apply_filters('geodir_adminEmail_to', $to, $page_id, $user_id, $message_type, $custom_1);
1937 1937
 		/**
1938 1938
 		 * Filter the admin email subject.
1939 1939
 		 *
@@ -1946,7 +1946,7 @@  discard block
 block discarded – undo
1946 1946
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1947 1947
 		 * @param string $custom_1     Custom data to be sent.
1948 1948
 		 */
1949
-		$subject = apply_filters( 'geodir_adminEmail_subject', $subject, $page_id, $user_id, $message_type, $custom_1 );
1949
+		$subject = apply_filters('geodir_adminEmail_subject', $subject, $page_id, $user_id, $message_type, $custom_1);
1950 1950
 		/**
1951 1951
 		 * Filter the admin email message.
1952 1952
 		 *
@@ -1959,7 +1959,7 @@  discard block
 block discarded – undo
1959 1959
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1960 1960
 		 * @param string $custom_1     Custom data to be sent.
1961 1961
 		 */
1962
-		$message = apply_filters( 'geodir_adminEmail_message', $message, $page_id, $user_id, $message_type, $custom_1 );
1962
+		$message = apply_filters('geodir_adminEmail_message', $message, $page_id, $user_id, $message_type, $custom_1);
1963 1963
 		/**
1964 1964
 		 * Filter the admin email headers.
1965 1965
 		 *
@@ -1972,22 +1972,22 @@  discard block
 block discarded – undo
1972 1972
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1973 1973
 		 * @param string $custom_1     Custom data to be sent.
1974 1974
 		 */
1975
-		$headers = apply_filters( 'geodir_adminEmail_headers', $headers, $page_id, $user_id, $message_type, $custom_1 );
1975
+		$headers = apply_filters('geodir_adminEmail_headers', $headers, $page_id, $user_id, $message_type, $custom_1);
1976 1976
 
1977 1977
 
1978
-		$sent = wp_mail( $to, $subject, $message, $headers );
1979
-		if ( ! $sent ) {
1980
-			if ( is_array( $to ) ) {
1981
-				$to = implode( ',', $to );
1978
+		$sent = wp_mail($to, $subject, $message, $headers);
1979
+		if (!$sent) {
1980
+			if (is_array($to)) {
1981
+				$to = implode(',', $to);
1982 1982
 			}
1983 1983
 			$log_message = sprintf(
1984
-				__( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
1984
+				__("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'),
1985 1985
 				$message_type,
1986
-				date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
1986
+				date_i18n('F j Y H:i:s', current_time('timestamp')),
1987 1987
 				$to,
1988 1988
 				$subject
1989 1989
 			);
1990
-			geodir_error_log( $log_message );
1990
+			geodir_error_log($log_message);
1991 1991
 		}
1992 1992
 	}
1993 1993
 }
@@ -2007,12 +2007,12 @@  discard block
 block discarded – undo
2007 2007
  *
2008 2008
  * @return array Category IDs.
2009 2009
  */
2010
-function gd_lang_object_ids( $ids_array, $type ) {
2011
-	if ( geodir_is_wpml() ) {
2010
+function gd_lang_object_ids($ids_array, $type) {
2011
+	if (geodir_is_wpml()) {
2012 2012
 		$res = array();
2013
-		foreach ( $ids_array as $id ) {
2014
-			$xlat = geodir_wpml_object_id( $id, $type, false );
2015
-			if ( ! is_null( $xlat ) ) {
2013
+		foreach ($ids_array as $id) {
2014
+			$xlat = geodir_wpml_object_id($id, $type, false);
2015
+			if (!is_null($xlat)) {
2016 2016
 				$res[] = $xlat;
2017 2017
 			}
2018 2018
 		}
@@ -2036,20 +2036,20 @@  discard block
 block discarded – undo
2036 2036
  *
2037 2037
  * @return array Modified Body CSS classes.
2038 2038
  */
2039
-function geodir_custom_posts_body_class( $classes ) {
2039
+function geodir_custom_posts_body_class($classes) {
2040 2040
 	global $wpdb, $wp;
2041
-	$post_types = geodir_get_posttypes( 'object' );
2042
-	if ( ! empty( $post_types ) && count( (array) $post_types ) > 1 ) {
2041
+	$post_types = geodir_get_posttypes('object');
2042
+	if (!empty($post_types) && count((array) $post_types) > 1) {
2043 2043
 		$classes[] = 'geodir_custom_posts';
2044 2044
 	}
2045 2045
 
2046 2046
 	// fix body class for signup page
2047
-	if ( geodir_is_page( 'login' ) ) {
2047
+	if (geodir_is_page('login')) {
2048 2048
 		$new_classes   = array();
2049 2049
 		$new_classes[] = 'signup page-geodir-signup';
2050
-		if ( ! empty( $classes ) ) {
2051
-			foreach ( $classes as $class ) {
2052
-				if ( $class && $class != 'home' && $class != 'blog' ) {
2050
+		if (!empty($classes)) {
2051
+			foreach ($classes as $class) {
2052
+				if ($class && $class != 'home' && $class != 'blog') {
2053 2053
 					$new_classes[] = $class;
2054 2054
 				}
2055 2055
 			}
@@ -2057,14 +2057,14 @@  discard block
 block discarded – undo
2057 2057
 		$classes = $new_classes;
2058 2058
 	}
2059 2059
 
2060
-	if ( geodir_is_geodir_page() ) {
2060
+	if (geodir_is_geodir_page()) {
2061 2061
 		$classes[] = 'geodir-page';
2062 2062
 	}
2063 2063
 
2064 2064
 	return $classes;
2065 2065
 }
2066 2066
 
2067
-add_filter( 'body_class', 'geodir_custom_posts_body_class' ); // let's add a class to the body so we can style the new addition to the search
2067
+add_filter('body_class', 'geodir_custom_posts_body_class'); // let's add a class to the body so we can style the new addition to the search
2068 2068
 
2069 2069
 
2070 2070
 /**
@@ -2080,7 +2080,7 @@  discard block
 block discarded – undo
2080 2080
 	 *
2081 2081
 	 * @since 1.0.0
2082 2082
 	 */
2083
-	return apply_filters( 'geodir_map_zoom_level', array(
2083
+	return apply_filters('geodir_map_zoom_level', array(
2084 2084
 		1,
2085 2085
 		2,
2086 2086
 		3,
@@ -2100,7 +2100,7 @@  discard block
 block discarded – undo
2100 2100
 		17,
2101 2101
 		18,
2102 2102
 		19
2103
-	) );
2103
+	));
2104 2104
 
2105 2105
 }
2106 2106
 
@@ -2113,12 +2113,12 @@  discard block
 block discarded – undo
2113 2113
  *
2114 2114
  * @param string $geodir_option_name Option key.
2115 2115
  */
2116
-function geodir_option_version_backup( $geodir_option_name ) {
2116
+function geodir_option_version_backup($geodir_option_name) {
2117 2117
 	$version_date  = time();
2118
-	$geodir_option = get_option( $geodir_option_name );
2118
+	$geodir_option = get_option($geodir_option_name);
2119 2119
 
2120
-	if ( ! empty( $geodir_option ) ) {
2121
-		add_option( $geodir_option_name . '_' . $version_date, $geodir_option );
2120
+	if (!empty($geodir_option)) {
2121
+		add_option($geodir_option_name.'_'.$version_date, $geodir_option);
2122 2122
 	}
2123 2123
 }
2124 2124
 
@@ -2132,10 +2132,10 @@  discard block
 block discarded – undo
2132 2132
  *
2133 2133
  * @return int Page ID.
2134 2134
  */
2135
-function get_page_id_geodir_add_listing_page( $page_id ) {
2136
-	if ( geodir_wpml_multilingual_status() ) {
2135
+function get_page_id_geodir_add_listing_page($page_id) {
2136
+	if (geodir_wpml_multilingual_status()) {
2137 2137
 		$post_type = 'post_page';
2138
-		$page_id   = geodir_get_wpml_element_id( $page_id, $post_type );
2138
+		$page_id   = geodir_get_wpml_element_id($page_id, $post_type);
2139 2139
 	}
2140 2140
 
2141 2141
 	return $page_id;
@@ -2149,7 +2149,7 @@  discard block
 block discarded – undo
2149 2149
  * @return bool Returns true when sitepress multilingual CMS active. else returns false.
2150 2150
  */
2151 2151
 function geodir_wpml_multilingual_status() {
2152
-	if ( geodir_is_wpml() ) {
2152
+	if (geodir_is_wpml()) {
2153 2153
 		return true;
2154 2154
 	}
2155 2155
 
@@ -2167,19 +2167,19 @@  discard block
 block discarded – undo
2167 2167
  *
2168 2168
  * @return int Element ID when exists. Else the page id.
2169 2169
  */
2170
-function geodir_get_wpml_element_id( $page_id, $post_type ) {
2170
+function geodir_get_wpml_element_id($page_id, $post_type) {
2171 2171
 	global $sitepress;
2172
-	if ( geodir_wpml_multilingual_status() && ! empty( $sitepress ) && isset( $sitepress->queries ) ) {
2173
-		$trid = $sitepress->get_element_trid( $page_id, $post_type );
2172
+	if (geodir_wpml_multilingual_status() && !empty($sitepress) && isset($sitepress->queries)) {
2173
+		$trid = $sitepress->get_element_trid($page_id, $post_type);
2174 2174
 
2175
-		if ( $trid > 0 ) {
2176
-			$translations = $sitepress->get_element_translations( $trid, $post_type );
2175
+		if ($trid > 0) {
2176
+			$translations = $sitepress->get_element_translations($trid, $post_type);
2177 2177
 
2178 2178
 			$lang = $sitepress->get_current_language();
2179 2179
 			$lang = $lang ? $lang : $sitepress->get_default_language();
2180 2180
 
2181
-			if ( ! empty( $translations ) && ! empty( $lang ) && isset( $translations[ $lang ] ) && isset( $translations[ $lang ]->element_id ) && ! empty( $translations[ $lang ]->element_id ) ) {
2182
-				$page_id = $translations[ $lang ]->element_id;
2181
+			if (!empty($translations) && !empty($lang) && isset($translations[$lang]) && isset($translations[$lang]->element_id) && !empty($translations[$lang]->element_id)) {
2182
+				$page_id = $translations[$lang]->element_id;
2183 2183
 			}
2184 2184
 		}
2185 2185
 	}
@@ -2196,15 +2196,15 @@  discard block
 block discarded – undo
2196 2196
  */
2197 2197
 function geodir_wpml_check_element_id() {
2198 2198
 	global $sitepress;
2199
-	if ( geodir_wpml_multilingual_status() && ! empty( $sitepress ) && isset( $sitepress->queries ) ) {
2199
+	if (geodir_wpml_multilingual_status() && !empty($sitepress) && isset($sitepress->queries)) {
2200 2200
 		$el_type      = 'post_page';
2201
-		$el_id        = get_option( 'geodir_add_listing_page' );
2201
+		$el_id        = get_option('geodir_add_listing_page');
2202 2202
 		$default_lang = $sitepress->get_default_language();
2203
-		$el_details   = $sitepress->get_element_language_details( $el_id, $el_type );
2203
+		$el_details   = $sitepress->get_element_language_details($el_id, $el_type);
2204 2204
 
2205
-		if ( ! ( $el_id > 0 && $default_lang && ! empty( $el_details ) && isset( $el_details->language_code ) && $el_details->language_code == $default_lang ) ) {
2206
-			if ( ! $el_details->source_language_code ) {
2207
-				$sitepress->set_element_language_details( $el_id, $el_type, '', $default_lang );
2205
+		if (!($el_id > 0 && $default_lang && !empty($el_details) && isset($el_details->language_code) && $el_details->language_code == $default_lang)) {
2206
+			if (!$el_details->source_language_code) {
2207
+				$sitepress->set_element_language_details($el_id, $el_type, '', $default_lang);
2208 2208
 				$sitepress->icl_translations_cache->clear();
2209 2209
 			}
2210 2210
 		}
@@ -2224,44 +2224,44 @@  discard block
 block discarded – undo
2224 2224
  *
2225 2225
  * @return string Orderby SQL.
2226 2226
  */
2227
-function geodir_widget_listings_get_order( $query_args ) {
2227
+function geodir_widget_listings_get_order($query_args) {
2228 2228
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2229 2229
 
2230 2230
 	$query_args = $gd_query_args_widgets;
2231
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2232
-		return $wpdb->posts . ".post_date DESC, ";
2231
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2232
+		return $wpdb->posts.".post_date DESC, ";
2233 2233
 	}
2234 2234
 
2235
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2236
-	$table     = $plugin_prefix . $post_type . '_detail';
2235
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2236
+	$table     = $plugin_prefix.$post_type.'_detail';
2237 2237
 
2238
-	$sort_by = ! empty( $query_args['order_by'] ) ? $query_args['order_by'] : '';
2238
+	$sort_by = !empty($query_args['order_by']) ? $query_args['order_by'] : '';
2239 2239
 
2240
-	switch ( $sort_by ) {
2240
+	switch ($sort_by) {
2241 2241
 		case 'latest':
2242 2242
 		case 'newest':
2243
-			$orderby = $wpdb->posts . ".post_date DESC, ";
2243
+			$orderby = $wpdb->posts.".post_date DESC, ";
2244 2244
 			break;
2245 2245
 		case 'featured':
2246
-			$orderby = $table . ".is_featured ASC, ". $wpdb->posts . ".post_date DESC, ";
2246
+			$orderby = $table.".is_featured ASC, ".$wpdb->posts.".post_date DESC, ";
2247 2247
 			break;
2248 2248
 		case 'az':
2249
-			$orderby = $wpdb->posts . ".post_title ASC, ";
2249
+			$orderby = $wpdb->posts.".post_title ASC, ";
2250 2250
 			break;
2251 2251
 		case 'high_review':
2252
-			$orderby = $table . ".rating_count DESC, " . $table . ".overall_rating DESC, ";
2252
+			$orderby = $table.".rating_count DESC, ".$table.".overall_rating DESC, ";
2253 2253
 			break;
2254 2254
 		case 'high_rating':
2255
-			$orderby = "( " . $table . ".overall_rating  ) DESC, ";
2255
+			$orderby = "( ".$table.".overall_rating  ) DESC, ";
2256 2256
 			break;
2257 2257
 		case 'random':
2258 2258
 			$orderby = "RAND(), ";
2259 2259
 			break;
2260 2260
 		default:
2261
-			if ( $custom_orderby = geodir_prepare_custom_sorting( $sort_by, $table ) ) {
2262
-				$orderby = $custom_orderby . ", ";
2261
+			if ($custom_orderby = geodir_prepare_custom_sorting($sort_by, $table)) {
2262
+				$orderby = $custom_orderby.", ";
2263 2263
 			} else {
2264
-				$orderby = $wpdb->posts . ".post_title ASC, ";
2264
+				$orderby = $wpdb->posts.".post_title ASC, ";
2265 2265
 			}
2266 2266
 			break;
2267 2267
 	}
@@ -2286,16 +2286,16 @@  discard block
 block discarded – undo
2286 2286
  *
2287 2287
  * @return mixed Result object.
2288 2288
  */
2289
-function geodir_get_widget_listings( $query_args = array(), $count_only = false ) {
2289
+function geodir_get_widget_listings($query_args = array(), $count_only = false) {
2290 2290
 	global $wpdb, $plugin_prefix, $table_prefix;
2291 2291
 	$GLOBALS['gd_query_args_widgets'] = $query_args;
2292 2292
 	$gd_query_args_widgets            = $query_args;
2293 2293
 
2294
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2295
-	$table     = $plugin_prefix . $post_type . '_detail';
2296
-	$supports_wpml = geodir_wpml_is_post_type_translated( $post_type );
2294
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2295
+	$table     = $plugin_prefix.$post_type.'_detail';
2296
+	$supports_wpml = geodir_wpml_is_post_type_translated($post_type);
2297 2297
 
2298
-	$fields = $wpdb->posts . ".*, " . $table . ".*";
2298
+	$fields = $wpdb->posts.".*, ".$table.".*";
2299 2299
 	/**
2300 2300
 	 * Filter widget listing fields string part that is being used for query.
2301 2301
 	 *
@@ -2305,17 +2305,17 @@  discard block
 block discarded – undo
2305 2305
 	 * @param string $table     Table name.
2306 2306
 	 * @param string $post_type Post type.
2307 2307
 	 */
2308
-	$fields = apply_filters( 'geodir_filter_widget_listings_fields', $fields, $table, $post_type );
2308
+	$fields = apply_filters('geodir_filter_widget_listings_fields', $fields, $table, $post_type);
2309 2309
 
2310
-	$join = "INNER JOIN " . $table . " ON (" . $table . ".post_id = " . $wpdb->posts . ".ID)";
2310
+	$join = "INNER JOIN ".$table." ON (".$table.".post_id = ".$wpdb->posts.".ID)";
2311 2311
 
2312 2312
 	########### WPML ###########
2313 2313
 
2314
-	if ( $supports_wpml ) {
2314
+	if ($supports_wpml) {
2315 2315
 		global $sitepress;
2316 2316
 		$lang_code = ICL_LANGUAGE_CODE;
2317
-		if ( $lang_code ) {
2318
-			$join .= " JOIN " . $table_prefix . "icl_translations icl_t ON icl_t.element_id = " . $table_prefix . "posts.ID";
2317
+		if ($lang_code) {
2318
+			$join .= " JOIN ".$table_prefix."icl_translations icl_t ON icl_t.element_id = ".$table_prefix."posts.ID";
2319 2319
 		}
2320 2320
 	}
2321 2321
 
@@ -2329,15 +2329,15 @@  discard block
 block discarded – undo
2329 2329
 	 * @param string $join      Join clause string.
2330 2330
 	 * @param string $post_type Post type.
2331 2331
 	 */
2332
-	$join = apply_filters( 'geodir_filter_widget_listings_join', $join, $post_type );
2332
+	$join = apply_filters('geodir_filter_widget_listings_join', $join, $post_type);
2333 2333
 
2334
-	$post_status = is_super_admin() ? " OR " . $wpdb->posts . ".post_status = 'private'" : '';
2334
+	$post_status = is_super_admin() ? " OR ".$wpdb->posts.".post_status = 'private'" : '';
2335 2335
 
2336
-	$where = " AND ( " . $wpdb->posts . ".post_status = 'publish' " . $post_status . " ) AND " . $wpdb->posts . ".post_type = '" . $post_type . "'";
2336
+	$where = " AND ( ".$wpdb->posts.".post_status = 'publish' ".$post_status." ) AND ".$wpdb->posts.".post_type = '".$post_type."'";
2337 2337
 
2338 2338
 	########### WPML ###########
2339
-	if ( $supports_wpml ) {
2340
-		if ( $lang_code ) {
2339
+	if ($supports_wpml) {
2340
+		if ($lang_code) {
2341 2341
 			$where .= " AND icl_t.language_code = '$lang_code' AND icl_t.element_type = 'post_$post_type' ";
2342 2342
 		}
2343 2343
 	}
@@ -2350,8 +2350,8 @@  discard block
 block discarded – undo
2350 2350
 	 * @param string $where     Where clause string.
2351 2351
 	 * @param string $post_type Post type.
2352 2352
 	 */
2353
-	$where = apply_filters( 'geodir_filter_widget_listings_where', $where, $post_type );
2354
-	$where = $where != '' ? " WHERE 1=1 " . $where : '';
2353
+	$where = apply_filters('geodir_filter_widget_listings_where', $where, $post_type);
2354
+	$where = $where != '' ? " WHERE 1=1 ".$where : '';
2355 2355
 
2356 2356
 	$groupby = " GROUP BY $wpdb->posts.ID "; //@todo is this needed? faster without
2357 2357
 	/**
@@ -2362,15 +2362,15 @@  discard block
 block discarded – undo
2362 2362
 	 * @param string $groupby   Group by clause string.
2363 2363
 	 * @param string $post_type Post type.
2364 2364
 	 */
2365
-	$groupby = apply_filters( 'geodir_filter_widget_listings_groupby', $groupby, $post_type );
2365
+	$groupby = apply_filters('geodir_filter_widget_listings_groupby', $groupby, $post_type);
2366 2366
 
2367
-	if ( $count_only ) {
2368
-		$sql  = "SELECT COUNT(DISTINCT " . $wpdb->posts . ".ID) AS total FROM " . $wpdb->posts . "
2369
-			" . $join . "
2367
+	if ($count_only) {
2368
+		$sql  = "SELECT COUNT(DISTINCT ".$wpdb->posts.".ID) AS total FROM ".$wpdb->posts."
2369
+			" . $join."
2370 2370
 			" . $where;
2371
-		$rows = (int) $wpdb->get_var( $sql );
2371
+		$rows = (int) $wpdb->get_var($sql);
2372 2372
 	} else {
2373
-		$orderby = geodir_widget_listings_get_order( $query_args );
2373
+		$orderby = geodir_widget_listings_get_order($query_args);
2374 2374
 		/**
2375 2375
 		 * Filter widget listing orderby clause string part that is being used for query.
2376 2376
 		 *
@@ -2380,33 +2380,33 @@  discard block
 block discarded – undo
2380 2380
 		 * @param string $table     Table name.
2381 2381
 		 * @param string $post_type Post type.
2382 2382
 		 */
2383
-		$orderby = apply_filters( 'geodir_filter_widget_listings_orderby', $orderby, $table, $post_type );
2383
+		$orderby = apply_filters('geodir_filter_widget_listings_orderby', $orderby, $table, $post_type);
2384 2384
 		
2385 2385
 		$second_orderby = array();
2386
-		if ( strpos( $orderby, strtolower( $table . ".is_featured" )  ) === false ) {
2387
-			$second_orderby[] = $table . ".is_featured ASC";
2386
+		if (strpos($orderby, strtolower($table.".is_featured")) === false) {
2387
+			$second_orderby[] = $table.".is_featured ASC";
2388 2388
 		}
2389 2389
 		
2390
-		if ( strpos( $orderby, strtolower( $wpdb->posts . ".post_date" )  ) === false ) {
2391
-			$second_orderby[] = $wpdb->posts . ".post_date DESC";
2390
+		if (strpos($orderby, strtolower($wpdb->posts.".post_date")) === false) {
2391
+			$second_orderby[] = $wpdb->posts.".post_date DESC";
2392 2392
 		}
2393 2393
 		
2394
-		if ( strpos( $orderby, strtolower( $wpdb->posts . ".post_title" )  ) === false ) {
2395
-			$second_orderby[] = $wpdb->posts . ".post_title ASC";
2394
+		if (strpos($orderby, strtolower($wpdb->posts.".post_title")) === false) {
2395
+			$second_orderby[] = $wpdb->posts.".post_title ASC";
2396 2396
 		}
2397 2397
 		
2398
-		if ( !empty( $second_orderby ) ) {
2399
-			$orderby .= implode( ', ', $second_orderby );
2398
+		if (!empty($second_orderby)) {
2399
+			$orderby .= implode(', ', $second_orderby);
2400 2400
 		}
2401 2401
 		
2402
-		if ( !empty( $orderby ) ) {
2403
-			$orderby = trim( $orderby );
2404
-			$orderby = rtrim( $orderby, "," );
2402
+		if (!empty($orderby)) {
2403
+			$orderby = trim($orderby);
2404
+			$orderby = rtrim($orderby, ",");
2405 2405
 		}
2406 2406
 		
2407
-		$orderby = $orderby != '' ? " ORDER BY " . $orderby : '';
2407
+		$orderby = $orderby != '' ? " ORDER BY ".$orderby : '';
2408 2408
 
2409
-		$limit = ! empty( $query_args['posts_per_page'] ) ? $query_args['posts_per_page'] : 5;
2409
+		$limit = !empty($query_args['posts_per_page']) ? $query_args['posts_per_page'] : 5;
2410 2410
 		/**
2411 2411
 		 * Filter widget listing limit that is being used for query.
2412 2412
 		 *
@@ -2415,27 +2415,27 @@  discard block
 block discarded – undo
2415 2415
 		 * @param int $limit        Query results limit.
2416 2416
 		 * @param string $post_type Post type.
2417 2417
 		 */
2418
-		$limit = apply_filters( 'geodir_filter_widget_listings_limit', $limit, $post_type );
2418
+		$limit = apply_filters('geodir_filter_widget_listings_limit', $limit, $post_type);
2419 2419
 
2420
-		$page = ! empty( $query_args['pageno'] ) ? absint( $query_args['pageno'] ) : 1;
2421
-		if ( ! $page ) {
2420
+		$page = !empty($query_args['pageno']) ? absint($query_args['pageno']) : 1;
2421
+		if (!$page) {
2422 2422
 			$page = 1;
2423 2423
 		}
2424 2424
 
2425
-		$limit = (int) $limit > 0 ? " LIMIT " . absint( ( $page - 1 ) * (int) $limit ) . ", " . (int) $limit : "";
2425
+		$limit = (int) $limit > 0 ? " LIMIT ".absint(($page - 1) * (int) $limit).", ".(int) $limit : "";
2426 2426
 
2427 2427
 		//@todo removed SQL_CALC_FOUND_ROWS from below as don't think it is needed and query is faster without
2428
-		$sql  = "SELECT " . $fields . " FROM " . $wpdb->posts . "
2429
-			" . $join . "
2430
-			" . $where . "
2431
-			" . $groupby . "
2432
-			" . $orderby . "
2428
+		$sql = "SELECT ".$fields." FROM ".$wpdb->posts."
2429
+			" . $join."
2430
+			" . $where."
2431
+			" . $groupby."
2432
+			" . $orderby."
2433 2433
 			" . $limit;
2434
-		$rows = $wpdb->get_results( $sql );
2434
+		$rows = $wpdb->get_results($sql);
2435 2435
 	}
2436 2436
 
2437
-	unset( $GLOBALS['gd_query_args_widgets'] );
2438
-	unset( $gd_query_args_widgets );
2437
+	unset($GLOBALS['gd_query_args_widgets']);
2438
+	unset($gd_query_args_widgets);
2439 2439
 
2440 2440
 	return $rows;
2441 2441
 }
@@ -2452,11 +2452,11 @@  discard block
 block discarded – undo
2452 2452
  *
2453 2453
  * @return string Modified fields SQL.
2454 2454
  */
2455
-function geodir_function_widget_listings_fields( $fields ) {
2455
+function geodir_function_widget_listings_fields($fields) {
2456 2456
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2457 2457
 
2458 2458
 	$query_args = $gd_query_args_widgets;
2459
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2459
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2460 2460
 		return $fields;
2461 2461
 	}
2462 2462
 
@@ -2475,24 +2475,24 @@  discard block
 block discarded – undo
2475 2475
  *
2476 2476
  * @return string Modified join clause SQL.
2477 2477
  */
2478
-function geodir_function_widget_listings_join( $join ) {
2478
+function geodir_function_widget_listings_join($join) {
2479 2479
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2480 2480
 
2481 2481
 	$query_args = $gd_query_args_widgets;
2482
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2482
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2483 2483
 		return $join;
2484 2484
 	}
2485 2485
 
2486
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2487
-	$table     = $plugin_prefix . $post_type . '_detail';
2486
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2487
+	$table     = $plugin_prefix.$post_type.'_detail';
2488 2488
 
2489
-	if ( ! empty( $query_args['with_pics_only'] ) ) {
2490
-		$join .= " LEFT JOIN " . GEODIR_ATTACHMENT_TABLE . " ON ( " . GEODIR_ATTACHMENT_TABLE . ".post_id=" . $table . ".post_id AND " . GEODIR_ATTACHMENT_TABLE . ".mime_type LIKE '%image%' )";
2489
+	if (!empty($query_args['with_pics_only'])) {
2490
+		$join .= " LEFT JOIN ".GEODIR_ATTACHMENT_TABLE." ON ( ".GEODIR_ATTACHMENT_TABLE.".post_id=".$table.".post_id AND ".GEODIR_ATTACHMENT_TABLE.".mime_type LIKE '%image%' )";
2491 2491
 	}
2492 2492
 
2493
-	if ( ! empty( $query_args['tax_query'] ) ) {
2494
-		$tax_queries = get_tax_sql( $query_args['tax_query'], $wpdb->posts, 'ID' );
2495
-		if ( ! empty( $tax_queries['join'] ) && ! empty( $tax_queries['where'] ) ) {
2493
+	if (!empty($query_args['tax_query'])) {
2494
+		$tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID');
2495
+		if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) {
2496 2496
 			$join .= $tax_queries['join'];
2497 2497
 		}
2498 2498
 	}
@@ -2513,67 +2513,67 @@  discard block
 block discarded – undo
2513 2513
  *
2514 2514
  * @return string Modified where clause SQL.
2515 2515
  */
2516
-function geodir_function_widget_listings_where( $where ) {
2516
+function geodir_function_widget_listings_where($where) {
2517 2517
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2518 2518
 
2519 2519
 	$query_args = $gd_query_args_widgets;
2520
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2520
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2521 2521
 		return $where;
2522 2522
 	}
2523
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2524
-	$table     = $plugin_prefix . $post_type . '_detail';
2523
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2524
+	$table     = $plugin_prefix.$post_type.'_detail';
2525 2525
 
2526
-	if ( ! empty( $query_args ) ) {
2527
-		if ( ! empty( $query_args['gd_location'] ) && function_exists( 'geodir_default_location_where' ) ) {
2528
-			$where = geodir_default_location_where( $where, $table );
2526
+	if (!empty($query_args)) {
2527
+		if (!empty($query_args['gd_location']) && function_exists('geodir_default_location_where')) {
2528
+			$where = geodir_default_location_where($where, $table);
2529 2529
 		}
2530 2530
 
2531
-		if ( ! empty( $query_args['post_author'] ) ) {
2532
-			$where .= " AND " . $wpdb->posts . ".post_author = " . (int) $query_args['post_author'];
2531
+		if (!empty($query_args['post_author'])) {
2532
+			$where .= " AND ".$wpdb->posts.".post_author = ".(int) $query_args['post_author'];
2533 2533
 		}
2534 2534
 
2535
-		if ( ! empty( $query_args['show_featured_only'] ) ) {
2536
-			$where .= " AND " . $table . ".is_featured = '1'";
2535
+		if (!empty($query_args['show_featured_only'])) {
2536
+			$where .= " AND ".$table.".is_featured = '1'";
2537 2537
 		}
2538 2538
 
2539
-		if ( ! empty( $query_args['show_special_only'] ) ) {
2540
-			$where .= " AND ( " . $table . ".geodir_special_offers != '' AND " . $table . ".geodir_special_offers IS NOT NULL )";
2539
+		if (!empty($query_args['show_special_only'])) {
2540
+			$where .= " AND ( ".$table.".geodir_special_offers != '' AND ".$table.".geodir_special_offers IS NOT NULL )";
2541 2541
 		}
2542 2542
 
2543
-		if ( ! empty( $query_args['with_pics_only'] ) ) {
2544
-			$where .= " AND " . GEODIR_ATTACHMENT_TABLE . ".ID IS NOT NULL ";
2543
+		if (!empty($query_args['with_pics_only'])) {
2544
+			$where .= " AND ".GEODIR_ATTACHMENT_TABLE.".ID IS NOT NULL ";
2545 2545
 		}
2546 2546
 
2547
-		if ( ! empty( $query_args['featured_image_only'] ) ) {
2548
-			$where .= " AND " . $table . ".featured_image IS NOT NULL AND " . $table . ".featured_image!='' ";
2547
+		if (!empty($query_args['featured_image_only'])) {
2548
+			$where .= " AND ".$table.".featured_image IS NOT NULL AND ".$table.".featured_image!='' ";
2549 2549
 		}
2550 2550
 
2551
-		if ( ! empty( $query_args['with_videos_only'] ) ) {
2552
-			$where .= " AND ( " . $table . ".geodir_video != '' AND " . $table . ".geodir_video IS NOT NULL )";
2551
+		if (!empty($query_args['with_videos_only'])) {
2552
+			$where .= " AND ( ".$table.".geodir_video != '' AND ".$table.".geodir_video IS NOT NULL )";
2553 2553
 		}
2554 2554
         
2555
-		if ( ! empty( $query_args['show_favorites_only'] ) ) {
2555
+		if (!empty($query_args['show_favorites_only'])) {
2556 2556
 			$user_favorites = '-1';
2557 2557
 			
2558
-			if ( !empty( $query_args['favorites_by_user'] ) ) {
2558
+			if (!empty($query_args['favorites_by_user'])) {
2559 2559
 
2560 2560
 				$site_id = '';
2561
-				if ( is_multisite() ) {
2561
+				if (is_multisite()) {
2562 2562
 					$blog_id = get_current_blog_id();
2563
-					if($blog_id && $blog_id!='1'){$site_id  = '_' . $blog_id ;}
2563
+					if ($blog_id && $blog_id != '1') {$site_id = '_'.$blog_id; }
2564 2564
 				}
2565 2565
 				
2566
-				$user_favorites = geodir_get_user_favourites( (int)$query_args['favorites_by_user'] );
2566
+				$user_favorites = geodir_get_user_favourites((int) $query_args['favorites_by_user']);
2567 2567
 				$user_favorites = !empty($user_favorites) && is_array($user_favorites) ? implode("','", $user_favorites) : '-1';
2568 2568
 			}
2569 2569
 			
2570
-			$where .= " AND `" . $wpdb->posts . "`.`ID` IN('" . $user_favorites . "')";
2570
+			$where .= " AND `".$wpdb->posts."`.`ID` IN('".$user_favorites."')";
2571 2571
 		}
2572 2572
 
2573
-		if ( ! empty( $query_args['tax_query'] ) ) {
2574
-			$tax_queries = get_tax_sql( $query_args['tax_query'], $wpdb->posts, 'ID' );
2573
+		if (!empty($query_args['tax_query'])) {
2574
+			$tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID');
2575 2575
 
2576
-			if ( ! empty( $tax_queries['join'] ) && ! empty( $tax_queries['where'] ) ) {
2576
+			if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) {
2577 2577
 				$where .= $tax_queries['where'];
2578 2578
 			}
2579 2579
 		}
@@ -2594,11 +2594,11 @@  discard block
 block discarded – undo
2594 2594
  *
2595 2595
  * @return string Modified orderby clause SQL.
2596 2596
  */
2597
-function geodir_function_widget_listings_orderby( $orderby ) {
2597
+function geodir_function_widget_listings_orderby($orderby) {
2598 2598
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2599 2599
 
2600 2600
 	$query_args = $gd_query_args_widgets;
2601
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2601
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2602 2602
 		return $orderby;
2603 2603
 	}
2604 2604
 
@@ -2617,15 +2617,15 @@  discard block
 block discarded – undo
2617 2617
  *
2618 2618
  * @return int Query limit.
2619 2619
  */
2620
-function geodir_function_widget_listings_limit( $limit ) {
2620
+function geodir_function_widget_listings_limit($limit) {
2621 2621
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2622 2622
 
2623 2623
 	$query_args = $gd_query_args_widgets;
2624
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2624
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2625 2625
 		return $limit;
2626 2626
 	}
2627 2627
 
2628
-	if ( ! empty( $query_args ) && ! empty( $query_args['posts_per_page'] ) ) {
2628
+	if (!empty($query_args) && !empty($query_args['posts_per_page'])) {
2629 2629
 		$limit = (int) $query_args['posts_per_page'];
2630 2630
 	}
2631 2631
 
@@ -2643,12 +2643,12 @@  discard block
 block discarded – undo
2643 2643
  *
2644 2644
  * @return int Large size width.
2645 2645
  */
2646
-function geodir_media_image_large_width( $default = 800, $params = '' ) {
2647
-	$large_size_w = get_option( 'large_size_w' );
2646
+function geodir_media_image_large_width($default = 800, $params = '') {
2647
+	$large_size_w = get_option('large_size_w');
2648 2648
 	$large_size_w = $large_size_w > 0 ? $large_size_w : $default;
2649
-	$large_size_w = absint( $large_size_w );
2649
+	$large_size_w = absint($large_size_w);
2650 2650
 
2651
-	if ( ! get_option( 'geodir_use_wp_media_large_size' ) ) {
2651
+	if (!get_option('geodir_use_wp_media_large_size')) {
2652 2652
 		$large_size_w = 800;
2653 2653
 	}
2654 2654
 
@@ -2661,7 +2661,7 @@  discard block
 block discarded – undo
2661 2661
 	 * @param int $default         Default width.
2662 2662
 	 * @param string|array $params Image parameters.
2663 2663
 	 */
2664
-	$large_size_w = apply_filters( 'geodir_filter_media_image_large_width', $large_size_w, $default, $params );
2664
+	$large_size_w = apply_filters('geodir_filter_media_image_large_width', $large_size_w, $default, $params);
2665 2665
 
2666 2666
 	return $large_size_w;
2667 2667
 }
@@ -2677,12 +2677,12 @@  discard block
 block discarded – undo
2677 2677
  *
2678 2678
  * @return int Large size height.
2679 2679
  */
2680
-function geodir_media_image_large_height( $default = 800, $params = '' ) {
2681
-	$large_size_h = get_option( 'large_size_h' );
2680
+function geodir_media_image_large_height($default = 800, $params = '') {
2681
+	$large_size_h = get_option('large_size_h');
2682 2682
 	$large_size_h = $large_size_h > 0 ? $large_size_h : $default;
2683
-	$large_size_h = absint( $large_size_h );
2683
+	$large_size_h = absint($large_size_h);
2684 2684
 
2685
-	if ( ! get_option( 'geodir_use_wp_media_large_size' ) ) {
2685
+	if (!get_option('geodir_use_wp_media_large_size')) {
2686 2686
 		$large_size_h = 800;
2687 2687
 	}
2688 2688
 
@@ -2695,7 +2695,7 @@  discard block
 block discarded – undo
2695 2695
 	 * @param int $default         Default height.
2696 2696
 	 * @param string|array $params Image parameters.
2697 2697
 	 */
2698
-	$large_size_h = apply_filters( 'geodir_filter_media_image_large_height', $large_size_h, $default, $params );
2698
+	$large_size_h = apply_filters('geodir_filter_media_image_large_height', $large_size_h, $default, $params);
2699 2699
 
2700 2700
 	return $large_size_h;
2701 2701
 }
@@ -2712,8 +2712,8 @@  discard block
 block discarded – undo
2712 2712
  *
2713 2713
  * @return string Sanitized name.
2714 2714
  */
2715
-function geodir_sanitize_location_name( $type, $name, $translate = true ) {
2716
-	if ( $name == '' ) {
2715
+function geodir_sanitize_location_name($type, $name, $translate = true) {
2716
+	if ($name == '') {
2717 2717
 		return null;
2718 2718
 	}
2719 2719
 
@@ -2722,13 +2722,13 @@  discard block
 block discarded – undo
2722 2722
 	$type = $type == 'gd_city' ? 'city' : $type;
2723 2723
 
2724 2724
 	$return = $name;
2725
-	if ( function_exists( 'get_actual_location_name' ) ) {
2726
-		$return = get_actual_location_name( $type, $name, $translate );
2725
+	if (function_exists('get_actual_location_name')) {
2726
+		$return = get_actual_location_name($type, $name, $translate);
2727 2727
 	} else {
2728
-		$return = preg_replace( '/-(\d+)$/', '', $return );
2729
-		$return = preg_replace( '/[_-]/', ' ', $return );
2730
-		$return = geodir_ucwords( $return );
2731
-		$return = $translate ? __( $return, 'geodirectory' ) : $return;
2728
+		$return = preg_replace('/-(\d+)$/', '', $return);
2729
+		$return = preg_replace('/[_-]/', ' ', $return);
2730
+		$return = geodir_ucwords($return);
2731
+		$return = $translate ? __($return, 'geodirectory') : $return;
2732 2732
 	}
2733 2733
 
2734 2734
 	return $return;
@@ -2746,26 +2746,26 @@  discard block
 block discarded – undo
2746 2746
  *
2747 2747
  * @param int $number Comments number.
2748 2748
  */
2749
-function geodir_comments_number( $number ) {
2749
+function geodir_comments_number($number) {
2750 2750
 	global $post;
2751 2751
 	
2752
-	if ( !empty( $post->post_type ) && geodir_cpt_has_rating_disabled( $post->post_type ) ) {
2752
+	if (!empty($post->post_type) && geodir_cpt_has_rating_disabled($post->post_type)) {
2753 2753
 		$number = get_comments_number();
2754 2754
 		
2755
-		if ( $number > 1 ) {
2756
-			$output = str_replace( '%', number_format_i18n( $number ), __( '% Comments', 'geodirectory' ) );
2757
-		} elseif ( $number == 0 || $number == '' ) {
2758
-			$output = __( 'No Comments', 'geodirectory' );
2755
+		if ($number > 1) {
2756
+			$output = str_replace('%', number_format_i18n($number), __('% Comments', 'geodirectory'));
2757
+		} elseif ($number == 0 || $number == '') {
2758
+			$output = __('No Comments', 'geodirectory');
2759 2759
 		} else { // must be one
2760
-			$output = __( '1 Comment', 'geodirectory' );
2760
+			$output = __('1 Comment', 'geodirectory');
2761 2761
 		}
2762 2762
 	} else {    
2763
-		if ( $number > 1 ) {
2764
-			$output = str_replace( '%', number_format_i18n( $number ), __( '% Reviews', 'geodirectory' ) );
2765
-		} elseif ( $number == 0 || $number == '' ) {
2766
-			$output = __( 'No Reviews', 'geodirectory' );
2763
+		if ($number > 1) {
2764
+			$output = str_replace('%', number_format_i18n($number), __('% Reviews', 'geodirectory'));
2765
+		} elseif ($number == 0 || $number == '') {
2766
+			$output = __('No Reviews', 'geodirectory');
2767 2767
 		} else { // must be one
2768
-			$output = __( '1 Review', 'geodirectory' );
2768
+			$output = __('1 Review', 'geodirectory');
2769 2769
 		}
2770 2770
 	}
2771 2771
 	
@@ -2782,18 +2782,18 @@  discard block
 block discarded – undo
2782 2782
  */
2783 2783
 function is_page_geodir_home() {
2784 2784
 	global $wpdb;
2785
-	$cur_url = str_replace( array( "https://", "http://", "www." ), array( '', '', '' ), geodir_curPageURL() );
2786
-	if ( function_exists( 'geodir_location_geo_home_link' ) ) {
2787
-		remove_filter( 'home_url', 'geodir_location_geo_home_link', 100000 );
2785
+	$cur_url = str_replace(array("https://", "http://", "www."), array('', '', ''), geodir_curPageURL());
2786
+	if (function_exists('geodir_location_geo_home_link')) {
2787
+		remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
2788 2788
 	}
2789
-	$home_url = home_url( '', 'http' );
2790
-	if ( function_exists( 'geodir_location_geo_home_link' ) ) {
2791
-		add_filter( 'home_url', 'geodir_location_geo_home_link', 100000, 2 );
2789
+	$home_url = home_url('', 'http');
2790
+	if (function_exists('geodir_location_geo_home_link')) {
2791
+		add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
2792 2792
 	}
2793
-	$home_url = str_replace( "www.", "", $home_url );
2794
-	if ( ( strpos( $home_url, $cur_url ) !== false || strpos( $home_url . '/', $cur_url ) !== false ) && ( 'page' == get_option( 'show_on_front' ) && get_option( 'page_on_front' ) && get_option( 'page_on_front' ) == get_option( 'geodir_home_page' ) ) ) {
2793
+	$home_url = str_replace("www.", "", $home_url);
2794
+	if ((strpos($home_url, $cur_url) !== false || strpos($home_url.'/', $cur_url) !== false) && ('page' == get_option('show_on_front') && get_option('page_on_front') && get_option('page_on_front') == get_option('geodir_home_page'))) {
2795 2795
 		return true;
2796
-	} elseif ( get_query_var( 'page_id' ) == get_option( 'page_on_front' ) && 'page' == get_option( 'show_on_front' ) && get_option( 'page_on_front' ) && get_option( 'page_on_front' ) == get_option( 'geodir_home_page' ) ) {
2796
+	} elseif (get_query_var('page_id') == get_option('page_on_front') && 'page' == get_option('show_on_front') && get_option('page_on_front') && get_option('page_on_front') == get_option('geodir_home_page')) {
2797 2797
 		return true;
2798 2798
 	} else {
2799 2799
 		return false;
@@ -2813,18 +2813,18 @@  discard block
 block discarded – undo
2813 2813
  *
2814 2814
  * @return string The canonical URL.
2815 2815
  */
2816
-function geodir_wpseo_homepage_canonical( $url ) {
2816
+function geodir_wpseo_homepage_canonical($url) {
2817 2817
 	global $post;
2818 2818
 
2819
-	if ( is_page_geodir_home() ) {
2819
+	if (is_page_geodir_home()) {
2820 2820
 		return home_url();
2821 2821
 	}
2822 2822
 
2823 2823
 	return $url;
2824 2824
 }
2825 2825
 
2826
-add_filter( 'wpseo_canonical', 'geodir_wpseo_homepage_canonical', 10 );
2827
-add_filter( 'aioseop_canonical_url', 'geodir_wpseo_homepage_canonical', 10 );
2826
+add_filter('wpseo_canonical', 'geodir_wpseo_homepage_canonical', 10);
2827
+add_filter('aioseop_canonical_url', 'geodir_wpseo_homepage_canonical', 10);
2828 2828
 
2829 2829
 /**
2830 2830
  * Add extra fields to google maps script call.
@@ -2837,20 +2837,20 @@  discard block
 block discarded – undo
2837 2837
  *
2838 2838
  * @return string Modified extra string.
2839 2839
  */
2840
-function geodir_googlemap_script_extra_details_page( $extra ) {
2840
+function geodir_googlemap_script_extra_details_page($extra) {
2841 2841
 	global $post;
2842 2842
 	$add_google_places_api = false;
2843
-	if ( isset( $post->post_content ) && has_shortcode( $post->post_content, 'gd_add_listing' ) ) {
2843
+	if (isset($post->post_content) && has_shortcode($post->post_content, 'gd_add_listing')) {
2844 2844
 		$add_google_places_api = true;
2845 2845
 	}
2846
-	if ( ! str_replace( 'libraries=places', '', $extra ) && ( geodir_is_page( 'detail' ) || $add_google_places_api ) ) {
2846
+	if (!str_replace('libraries=places', '', $extra) && (geodir_is_page('detail') || $add_google_places_api)) {
2847 2847
 		$extra .= "&amp;libraries=places";
2848 2848
 	}
2849 2849
 
2850 2850
 	return $extra;
2851 2851
 }
2852 2852
 
2853
-add_filter( 'geodir_googlemap_script_extra', 'geodir_googlemap_script_extra_details_page', 101, 1 );
2853
+add_filter('geodir_googlemap_script_extra', 'geodir_googlemap_script_extra_details_page', 101, 1);
2854 2854
 
2855 2855
 
2856 2856
 /**
@@ -2869,122 +2869,122 @@  discard block
 block discarded – undo
2869 2869
  *                                          after_widget.
2870 2870
  * @param array|string $instance            The settings for the particular instance of the widget.
2871 2871
  */
2872
-function geodir_popular_post_category_output( $args = '', $instance = '' ) {
2872
+function geodir_popular_post_category_output($args = '', $instance = '') {
2873 2873
 	// prints the widget
2874 2874
 	global $wpdb, $plugin_prefix, $geodir_post_category_str;
2875
-	extract( $args, EXTR_SKIP );
2875
+	extract($args, EXTR_SKIP);
2876 2876
 
2877 2877
 	echo $before_widget;
2878 2878
 
2879 2879
 	/** This filter is documented in geodirectory_widgets.php */
2880
-	$title = empty( $instance['title'] ) ? __( 'Popular Categories', 'geodirectory' ) : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
2880
+	$title = empty($instance['title']) ? __('Popular Categories', 'geodirectory') : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
2881 2881
 
2882 2882
 	$gd_post_type = geodir_get_current_posttype();
2883 2883
 
2884
-	$category_limit = isset( $instance['category_limit'] ) && $instance['category_limit'] > 0 ? (int) $instance['category_limit'] : 15;
2884
+	$category_limit = isset($instance['category_limit']) && $instance['category_limit'] > 0 ? (int) $instance['category_limit'] : 15;
2885 2885
 	if (!isset($category_restrict)) {
2886 2886
 		$category_restrict = false;
2887 2887
 	}
2888
-	if ( ! empty( $gd_post_type ) ) {
2888
+	if (!empty($gd_post_type)) {
2889 2889
 		$default_post_type = $gd_post_type;
2890
-	} elseif ( isset( $instance['default_post_type'] ) && gdsc_is_post_type_valid( $instance['default_post_type'] ) ) {
2890
+	} elseif (isset($instance['default_post_type']) && gdsc_is_post_type_valid($instance['default_post_type'])) {
2891 2891
 		$default_post_type = $instance['default_post_type'];
2892 2892
 	} else {
2893 2893
 		$all_gd_post_type  = geodir_get_posttypes();
2894
-		$default_post_type = ( isset( $all_gd_post_type[0] ) ) ? $all_gd_post_type[0] : '';
2894
+		$default_post_type = (isset($all_gd_post_type[0])) ? $all_gd_post_type[0] : '';
2895 2895
 	}
2896
-	$parent_only = !empty( $instance['parent_only'] ) ? true : false;
2896
+	$parent_only = !empty($instance['parent_only']) ? true : false;
2897 2897
 
2898 2898
 	$taxonomy = array();
2899
-	if ( ! empty( $gd_post_type ) ) {
2900
-		$taxonomy[] = $gd_post_type . "category";
2899
+	if (!empty($gd_post_type)) {
2900
+		$taxonomy[] = $gd_post_type."category";
2901 2901
 	} else {
2902
-		$taxonomy = geodir_get_taxonomies( $gd_post_type );
2902
+		$taxonomy = geodir_get_taxonomies($gd_post_type);
2903 2903
 	}
2904 2904
 
2905 2905
 	$taxonomy = apply_filters('geodir_pp_category_taxonomy', $taxonomy);
2906 2906
 
2907
-	$term_args = array( 'taxonomy' => $taxonomy );
2908
-	if ( $parent_only ) {
2907
+	$term_args = array('taxonomy' => $taxonomy);
2908
+	if ($parent_only) {
2909 2909
 		$term_args['parent'] = 0;
2910 2910
 	}
2911 2911
 
2912
-	$terms   = get_terms( $term_args );
2912
+	$terms   = get_terms($term_args);
2913 2913
 	$a_terms = array();
2914 2914
 	$b_terms = array();
2915 2915
 
2916
-	foreach ( $terms as $term ) {
2917
-		if ( $term->count > 0 ) {
2918
-			$a_terms[ $term->taxonomy ][] = $term;
2916
+	foreach ($terms as $term) {
2917
+		if ($term->count > 0) {
2918
+			$a_terms[$term->taxonomy][] = $term;
2919 2919
 		}
2920 2920
 	}
2921 2921
 
2922
-	if ( ! empty( $a_terms ) ) {
2922
+	if (!empty($a_terms)) {
2923 2923
 		// Sort CPT taxonomies in categories widget.
2924
-		if ( !empty( $taxonomy ) && is_array( $taxonomy ) && count( $taxonomy ) > 1 ) {
2924
+		if (!empty($taxonomy) && is_array($taxonomy) && count($taxonomy) > 1) {
2925 2925
 			$gd_post_types = geodir_get_posttypes();
2926 2926
 			$sort_taxonomies = array();
2927 2927
 			
2928
-			foreach ( $gd_post_types as $gd_post_type ) {
2929
-				$taxonomy_name = $gd_post_type . 'category';
2928
+			foreach ($gd_post_types as $gd_post_type) {
2929
+				$taxonomy_name = $gd_post_type.'category';
2930 2930
 				
2931
-				if ( !empty( $a_terms[$taxonomy_name] ) ) {
2931
+				if (!empty($a_terms[$taxonomy_name])) {
2932 2932
 					$sort_taxonomies[$taxonomy_name] = $a_terms[$taxonomy_name];
2933 2933
 				}
2934 2934
 			}
2935
-			$a_terms = !empty( $sort_taxonomies ) ? $sort_taxonomies : $a_terms;
2935
+			$a_terms = !empty($sort_taxonomies) ? $sort_taxonomies : $a_terms;
2936 2936
 		}
2937 2937
 
2938 2938
 		$sort_by = apply_filters('geodir_pp_category_sort', 'count');
2939
-		foreach ( $a_terms as $b_key => $b_val ) {
2940
-			$b_terms[ $b_key ] = geodir_sort_terms( $b_val, $sort_by );
2939
+		foreach ($a_terms as $b_key => $b_val) {
2940
+			$b_terms[$b_key] = geodir_sort_terms($b_val, $sort_by);
2941 2941
 		}
2942 2942
 
2943
-		$default_taxonomy = $default_post_type != '' && isset( $b_terms[ $default_post_type . 'category' ] ) ? $default_post_type . 'category' : '';
2943
+		$default_taxonomy = $default_post_type != '' && isset($b_terms[$default_post_type.'category']) ? $default_post_type.'category' : '';
2944 2944
 
2945 2945
 		$tax_change_output = '';
2946
-		if ( count( $b_terms ) > 1 ) {
2947
-			$tax_change_output .= "<select data-limit='$category_limit' data-parent='" . (int)$parent_only . "' class='geodir-cat-list-tax'  onchange='geodir_get_post_term(this);'>";
2948
-			foreach ( $b_terms as $key => $val ) {
2949
-				$ptype    = get_post_type_object( str_replace( "category", "", $key ) );
2950
-				$cpt_name = __( $ptype->labels->singular_name, 'geodirectory' );
2951
-				$tax_change_output .= "<option value='$key' " . selected( $key, $default_taxonomy, false ) . ">" . sprintf( __( '%s Categories', 'geodirectory' ), $cpt_name ) . "</option>";
2946
+		if (count($b_terms) > 1) {
2947
+			$tax_change_output .= "<select data-limit='$category_limit' data-parent='".(int) $parent_only."' class='geodir-cat-list-tax'  onchange='geodir_get_post_term(this);'>";
2948
+			foreach ($b_terms as $key => $val) {
2949
+				$ptype    = get_post_type_object(str_replace("category", "", $key));
2950
+				$cpt_name = __($ptype->labels->singular_name, 'geodirectory');
2951
+				$tax_change_output .= "<option value='$key' ".selected($key, $default_taxonomy, false).">".sprintf(__('%s Categories', 'geodirectory'), $cpt_name)."</option>";
2952 2952
 			}
2953 2953
 			$tax_change_output .= "</select>";
2954 2954
 		}
2955 2955
 
2956
-		if ( ! empty( $b_terms ) ) {
2957
-			$terms = $default_taxonomy != '' && isset( $b_terms[ $default_taxonomy ] ) ? $b_terms[ $default_taxonomy ] : reset( $b_terms );// get the first array
2958
-			global $cat_count;//make global so we can change via function
2956
+		if (!empty($b_terms)) {
2957
+			$terms = $default_taxonomy != '' && isset($b_terms[$default_taxonomy]) ? $b_terms[$default_taxonomy] : reset($b_terms); // get the first array
2958
+			global $cat_count; //make global so we can change via function
2959 2959
 			$cat_count = 0;
2960 2960
 			?>
2961 2961
 			<div class="geodir-category-list-in clearfix">
2962 2962
 				<div class="geodir-cat-list clearfix">
2963 2963
 					<?php
2964
-					echo $before_title . __( $title ) . $after_title;
2964
+					echo $before_title.__($title).$after_title;
2965 2965
 
2966 2966
 					echo $tax_change_output;
2967 2967
 
2968 2968
 					echo '<ul class="geodir-popular-cat-list">';
2969 2969
 
2970
-					geodir_helper_cat_list_output( $terms, $category_limit, $category_restrict);
2970
+					geodir_helper_cat_list_output($terms, $category_limit, $category_restrict);
2971 2971
 
2972 2972
 					echo '</ul>';
2973 2973
 					?>
2974 2974
 				</div>
2975 2975
 				<?php
2976
-				if ( empty( $category_restrict ) ) { 
2976
+				if (empty($category_restrict)) { 
2977 2977
 					$hide = '';
2978
-					if ( $cat_count < $category_limit ) {
2978
+					if ($cat_count < $category_limit) {
2979 2979
 						$hide = 'style="display:none;"';
2980 2980
 					}
2981 2981
 					echo "<div class='geodir-cat-list-more' $hide >";
2982
-					echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">' . __( 'More Categories', 'geodirectory' ) . '</a>';
2983
-					echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">' . __( 'Less Categories', 'geodirectory' ) . '</a>';
2982
+					echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">'.__('More Categories', 'geodirectory').'</a>';
2983
+					echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">'.__('Less Categories', 'geodirectory').'</a>';
2984 2984
 					echo "</div>";
2985 2985
 				}
2986 2986
 				/* add scripts */
2987
-				add_action( 'wp_footer', 'geodir_popular_category_add_scripts', 100 );
2987
+				add_action('wp_footer', 'geodir_popular_category_add_scripts', 100);
2988 2988
 				?>
2989 2989
 			</div>
2990 2990
 			<?php
@@ -3004,28 +3004,28 @@  discard block
 block discarded – undo
3004 3004
  * @param int $category_limit               Number of categories to display by default.
3005 3005
  * @param bool $category_restrict           If the cat limit should be hidden or not shown.
3006 3006
  */
3007
-function geodir_helper_cat_list_output( $terms, $category_limit , $category_restrict=false) {
3007
+function geodir_helper_cat_list_output($terms, $category_limit, $category_restrict = false) {
3008 3008
 	global $geodir_post_category_str, $cat_count;
3009 3009
 	$term_icons = geodir_get_term_icon();
3010 3010
 
3011 3011
 	$geodir_post_category_str = array();
3012 3012
 
3013 3013
 
3014
-	foreach ( $terms as $cat ) {
3015
-		$post_type     = str_replace( "category", "", $cat->taxonomy );
3016
-		$term_icon_url = ! empty( $term_icons ) && isset( $term_icons[ $cat->term_id ] ) ? $term_icons[ $cat->term_id ] : '';
3014
+	foreach ($terms as $cat) {
3015
+		$post_type     = str_replace("category", "", $cat->taxonomy);
3016
+		$term_icon_url = !empty($term_icons) && isset($term_icons[$cat->term_id]) ? $term_icons[$cat->term_id] : '';
3017 3017
 
3018
-		$cat_count ++;
3018
+		$cat_count++;
3019 3019
 
3020
-		$geodir_post_category_str[] = array( 'posttype' => $post_type, 'termid' => $cat->term_id );
3020
+		$geodir_post_category_str[] = array('posttype' => $post_type, 'termid' => $cat->term_id);
3021 3021
 
3022
-		$class_row  = $cat_count > $category_limit ? 'geodir-pcat-hide geodir-hide' : 'geodir-pcat-show';
3023
-		if($category_restrict && $cat_count > $category_limit ){
3022
+		$class_row = $cat_count > $category_limit ? 'geodir-pcat-hide geodir-hide' : 'geodir-pcat-show';
3023
+		if ($category_restrict && $cat_count > $category_limit) {
3024 3024
 			continue;
3025 3025
 		}
3026 3026
 		$total_post = $cat->count;
3027 3027
 
3028
-		$term_link = get_term_link( $cat, $cat->taxonomy );
3028
+		$term_link = get_term_link($cat, $cat->taxonomy);
3029 3029
 		/**
3030 3030
 		 * Filer the category term link.
3031 3031
 		 *
@@ -3035,11 +3035,11 @@  discard block
 block discarded – undo
3035 3035
 		 * @param int $cat          ->term_id The term id.
3036 3036
 		 * @param string $post_type Wordpress post type.
3037 3037
 		 */
3038
-		$term_link = apply_filters( 'geodir_category_term_link', $term_link, $cat->term_id, $post_type );
3038
+		$term_link = apply_filters('geodir_category_term_link', $term_link, $cat->term_id, $post_type);
3039 3039
 
3040
-		echo '<li class="' . $class_row . '"><a href="' . $term_link . '">';
3041
-		echo '<img alt="' . esc_attr( $cat->name ) . ' icon" style="height:20px;vertical-align:middle;" src="' . $term_icon_url . '"/> <span class="cat-link">';
3042
-		echo $cat->name . '</span> <span class="geodir_term_class geodir_link_span geodir_category_class_' . $post_type . '_' . $cat->term_id . '">(' . $total_post . ')</span> ';
3040
+		echo '<li class="'.$class_row.'"><a href="'.$term_link.'">';
3041
+		echo '<img alt="'.esc_attr($cat->name).' icon" style="height:20px;vertical-align:middle;" src="'.$term_icon_url.'"/> <span class="cat-link">';
3042
+		echo $cat->name.'</span> <span class="geodir_term_class geodir_link_span geodir_category_class_'.$post_type.'_'.$cat->term_id.'">('.$total_post.')</span> ';
3043 3043
 		echo '</a></li>';
3044 3044
 	}
3045 3045
 }
@@ -3054,14 +3054,14 @@  discard block
 block discarded – undo
3054 3054
  * @param array|string $args     Display arguments including before_title, after_title, before_widget, and after_widget.
3055 3055
  * @param array|string $instance The settings for the particular instance of the widget.
3056 3056
  */
3057
-function geodir_listing_slider_widget_output( $args = '', $instance = '' ) {
3057
+function geodir_listing_slider_widget_output($args = '', $instance = '') {
3058 3058
 	// prints the widget
3059
-	extract( $args, EXTR_SKIP );
3059
+	extract($args, EXTR_SKIP);
3060 3060
 
3061 3061
 	echo $before_widget;
3062 3062
 
3063 3063
 	/** This filter is documented in geodirectory_widgets.php */
3064
-	$title = empty( $instance['title'] ) ? '' : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
3064
+	$title = empty($instance['title']) ? '' : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
3065 3065
 	/**
3066 3066
 	 * Filter the widget post type.
3067 3067
 	 *
@@ -3069,7 +3069,7 @@  discard block
 block discarded – undo
3069 3069
 	 *
3070 3070
 	 * @param string $instance ['post_type'] Post type of listing.
3071 3071
 	 */
3072
-	$post_type = empty( $instance['post_type'] ) ? 'gd_place' : apply_filters( 'widget_post_type', $instance['post_type'] );
3072
+	$post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']);
3073 3073
 	/**
3074 3074
 	 * Filter the widget's term.
3075 3075
 	 *
@@ -3077,7 +3077,7 @@  discard block
 block discarded – undo
3077 3077
 	 *
3078 3078
 	 * @param string $instance ['category'] Filter by term. Can be any valid term.
3079 3079
 	 */
3080
-	$category = empty( $instance['category'] ) ? '0' : apply_filters( 'widget_category', $instance['category'] );
3080
+	$category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']);
3081 3081
 	/**
3082 3082
 	 * Filter widget's "add_location_filter" value.
3083 3083
 	 *
@@ -3085,7 +3085,7 @@  discard block
 block discarded – undo
3085 3085
 	 *
3086 3086
 	 * @param string|bool $instance ['add_location_filter'] Do you want to add location filter? Can be 1 or 0.
3087 3087
 	 */
3088
-	$add_location_filter = empty( $instance['add_location_filter'] ) ? '0' : apply_filters( 'widget_add_location_filter', $instance['add_location_filter'] );
3088
+	$add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']);
3089 3089
 	/**
3090 3090
 	 * Filter the widget listings limit.
3091 3091
 	 *
@@ -3093,7 +3093,7 @@  discard block
 block discarded – undo
3093 3093
 	 *
3094 3094
 	 * @param string $instance ['post_number'] Number of listings to display.
3095 3095
 	 */
3096
-	$post_number = empty( $instance['post_number'] ) ? '5' : apply_filters( 'widget_post_number', $instance['post_number'] );
3096
+	$post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
3097 3097
 	/**
3098 3098
 	 * Filter the widget listings limit shown at one time.
3099 3099
 	 *
@@ -3101,7 +3101,7 @@  discard block
 block discarded – undo
3101 3101
 	 *
3102 3102
 	 * @param string $instance ['max_show'] Number of listings to display on screen.
3103 3103
 	 */
3104
-	$max_show = empty( $instance['max_show'] ) ? '1' : apply_filters( 'widget_max_show', $instance['max_show'] );
3104
+	$max_show = empty($instance['max_show']) ? '1' : apply_filters('widget_max_show', $instance['max_show']);
3105 3105
 	/**
3106 3106
 	 * Filter the widget slide width.
3107 3107
 	 *
@@ -3109,7 +3109,7 @@  discard block
 block discarded – undo
3109 3109
 	 *
3110 3110
 	 * @param string $instance ['slide_width'] Width of the slides shown.
3111 3111
 	 */
3112
-	$slide_width = empty( $instance['slide_width'] ) ? '' : apply_filters( 'widget_slide_width', $instance['slide_width'] );
3112
+	$slide_width = empty($instance['slide_width']) ? '' : apply_filters('widget_slide_width', $instance['slide_width']);
3113 3113
 	/**
3114 3114
 	 * Filter widget's "show title" value.
3115 3115
 	 *
@@ -3117,7 +3117,7 @@  discard block
 block discarded – undo
3117 3117
 	 *
3118 3118
 	 * @param string|bool $instance ['show_title'] Do you want to display title? Can be 1 or 0.
3119 3119
 	 */
3120
-	$show_title = empty( $instance['show_title'] ) ? '' : apply_filters( 'widget_show_title', $instance['show_title'] );
3120
+	$show_title = empty($instance['show_title']) ? '' : apply_filters('widget_show_title', $instance['show_title']);
3121 3121
 	/**
3122 3122
 	 * Filter widget's "slideshow" value.
3123 3123
 	 *
@@ -3125,7 +3125,7 @@  discard block
 block discarded – undo
3125 3125
 	 *
3126 3126
 	 * @param int $instance ['slideshow'] Setup a slideshow for the slider to animate automatically.
3127 3127
 	 */
3128
-	$slideshow = empty( $instance['slideshow'] ) ? 0 : apply_filters( 'widget_slideshow', $instance['slideshow'] );
3128
+	$slideshow = empty($instance['slideshow']) ? 0 : apply_filters('widget_slideshow', $instance['slideshow']);
3129 3129
 	/**
3130 3130
 	 * Filter widget's "animationLoop" value.
3131 3131
 	 *
@@ -3133,7 +3133,7 @@  discard block
 block discarded – undo
3133 3133
 	 *
3134 3134
 	 * @param int $instance ['animationLoop'] Gives the slider a seamless infinite loop.
3135 3135
 	 */
3136
-	$animationLoop = empty( $instance['animationLoop'] ) ? 0 : apply_filters( 'widget_animationLoop', $instance['animationLoop'] );
3136
+	$animationLoop = empty($instance['animationLoop']) ? 0 : apply_filters('widget_animationLoop', $instance['animationLoop']);
3137 3137
 	/**
3138 3138
 	 * Filter widget's "directionNav" value.
3139 3139
 	 *
@@ -3141,7 +3141,7 @@  discard block
 block discarded – undo
3141 3141
 	 *
3142 3142
 	 * @param int $instance ['directionNav'] Enable previous/next arrow navigation?. Can be 1 or 0.
3143 3143
 	 */
3144
-	$directionNav = empty( $instance['directionNav'] ) ? 0 : apply_filters( 'widget_directionNav', $instance['directionNav'] );
3144
+	$directionNav = empty($instance['directionNav']) ? 0 : apply_filters('widget_directionNav', $instance['directionNav']);
3145 3145
 	/**
3146 3146
 	 * Filter widget's "slideshowSpeed" value.
3147 3147
 	 *
@@ -3149,7 +3149,7 @@  discard block
 block discarded – undo
3149 3149
 	 *
3150 3150
 	 * @param int $instance ['slideshowSpeed'] Set the speed of the slideshow cycling, in milliseconds.
3151 3151
 	 */
3152
-	$slideshowSpeed = empty( $instance['slideshowSpeed'] ) ? 5000 : apply_filters( 'widget_slideshowSpeed', $instance['slideshowSpeed'] );
3152
+	$slideshowSpeed = empty($instance['slideshowSpeed']) ? 5000 : apply_filters('widget_slideshowSpeed', $instance['slideshowSpeed']);
3153 3153
 	/**
3154 3154
 	 * Filter widget's "animationSpeed" value.
3155 3155
 	 *
@@ -3157,7 +3157,7 @@  discard block
 block discarded – undo
3157 3157
 	 *
3158 3158
 	 * @param int $instance ['animationSpeed'] Set the speed of animations, in milliseconds.
3159 3159
 	 */
3160
-	$animationSpeed = empty( $instance['animationSpeed'] ) ? 600 : apply_filters( 'widget_animationSpeed', $instance['animationSpeed'] );
3160
+	$animationSpeed = empty($instance['animationSpeed']) ? 600 : apply_filters('widget_animationSpeed', $instance['animationSpeed']);
3161 3161
 	/**
3162 3162
 	 * Filter widget's "animation" value.
3163 3163
 	 *
@@ -3165,7 +3165,7 @@  discard block
 block discarded – undo
3165 3165
 	 *
3166 3166
 	 * @param string $instance ['animation'] Controls the animation type, "fade" or "slide".
3167 3167
 	 */
3168
-	$animation = empty( $instance['animation'] ) ? 'slide' : apply_filters( 'widget_animation', $instance['animation'] );
3168
+	$animation = empty($instance['animation']) ? 'slide' : apply_filters('widget_animation', $instance['animation']);
3169 3169
 	/**
3170 3170
 	 * Filter widget's "list_sort" type.
3171 3171
 	 *
@@ -3173,10 +3173,10 @@  discard block
 block discarded – undo
3173 3173
 	 *
3174 3174
 	 * @param string $instance ['list_sort'] Listing sort by type.
3175 3175
 	 */
3176
-	$list_sort          = empty( $instance['list_sort'] ) ? 'latest' : apply_filters( 'widget_list_sort', $instance['list_sort'] );
3177
-	$show_featured_only = ! empty( $instance['show_featured_only'] ) ? 1 : null;
3176
+	$list_sort          = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
3177
+	$show_featured_only = !empty($instance['show_featured_only']) ? 1 : null;
3178 3178
 
3179
-	wp_enqueue_script( 'geodirectory-jquery-flexslider-js' );
3179
+	wp_enqueue_script('geodirectory-jquery-flexslider-js');
3180 3180
 	?>
3181 3181
 		<script type="text/javascript">
3182 3182
 		jQuery(window).load(function () {
@@ -3195,7 +3195,7 @@  discard block
 block discarded – undo
3195 3195
 				itemWidth: 75,
3196 3196
 				itemMargin: 5,
3197 3197
 				asNavFor: '#geodir_widget_slider',
3198
-				rtl: <?php echo( is_rtl() ? 'true' : 'false' ); /* fix rtl issue */ ?>,
3198
+				rtl: <?php echo(is_rtl() ? 'true' : 'false'); /* fix rtl issue */ ?>,
3199 3199
 				start: function (slider) {
3200 3200
 					// chrome 53 introduced a bug, so we need to repaint the slider when shown.
3201 3201
 					jQuery('.geodir-slides', jQuery(slider)).removeClass('flexslider-fix-rtl');
@@ -3203,19 +3203,19 @@  discard block
 block discarded – undo
3203 3203
 			});
3204 3204
 			
3205 3205
 			jQuery('#geodir_widget_slider').flexslider({
3206
-				animation: "<?php echo $animation;?>",
3206
+				animation: "<?php echo $animation; ?>",
3207 3207
 				selector: ".geodir-slides > li",
3208 3208
 				namespace: "geodir-",
3209 3209
 				controlNav: true,
3210
-				animationLoop: <?php echo $animationLoop;?>,
3211
-				slideshow: <?php echo $slideshow;?>,
3212
-				slideshowSpeed: <?php echo $slideshowSpeed;?>,
3213
-				animationSpeed: <?php echo $animationSpeed;?>,
3214
-				directionNav: <?php echo $directionNav;?>,
3215
-				maxItems: <?php echo $max_show;?>,
3210
+				animationLoop: <?php echo $animationLoop; ?>,
3211
+				slideshow: <?php echo $slideshow; ?>,
3212
+				slideshowSpeed: <?php echo $slideshowSpeed; ?>,
3213
+				animationSpeed: <?php echo $animationSpeed; ?>,
3214
+				directionNav: <?php echo $directionNav; ?>,
3215
+				maxItems: <?php echo $max_show; ?>,
3216 3216
 				move: 1,
3217
-				<?php if ( $slide_width ) {
3218
-				echo "itemWidth: " . $slide_width . ",";
3217
+				<?php if ($slide_width) {
3218
+				echo "itemWidth: ".$slide_width.",";
3219 3219
 			}?>
3220 3220
 				sync: "#geodir_widget_carousel",
3221 3221
 				start: function (slider) {
@@ -3226,7 +3226,7 @@  discard block
 block discarded – undo
3226 3226
 					jQuery('#geodir_widget_slider').css({'visibility': 'visible'});
3227 3227
 					jQuery('#geodir_widget_carousel').css({'visibility': 'visible'});
3228 3228
 				},
3229
-				rtl: <?php echo( is_rtl() ? 'true' : 'false' ); /* fix rtl issue */ ?>
3229
+				rtl: <?php echo(is_rtl() ? 'true' : 'false'); /* fix rtl issue */ ?>
3230 3230
 			});
3231 3231
 		});
3232 3232
 	</script>
@@ -3239,62 +3239,62 @@  discard block
 block discarded – undo
3239 3239
 		'order_by'       => $list_sort
3240 3240
 	);
3241 3241
 
3242
-	if ( $show_featured_only ) {
3242
+	if ($show_featured_only) {
3243 3243
 		$query_args['show_featured_only'] = 1;
3244 3244
 	}
3245 3245
 
3246
-	if ( $category != 0 || $category != '' ) {
3247
-		$category_taxonomy = geodir_get_taxonomies( $post_type );
3246
+	if ($category != 0 || $category != '') {
3247
+		$category_taxonomy = geodir_get_taxonomies($post_type);
3248 3248
 		$tax_query         = array(
3249 3249
 			'taxonomy' => $category_taxonomy[0],
3250 3250
 			'field'    => 'id',
3251 3251
 			'terms'    => $category
3252 3252
 		);
3253 3253
 
3254
-		$query_args['tax_query'] = array( $tax_query );
3254
+		$query_args['tax_query'] = array($tax_query);
3255 3255
 	}
3256 3256
 
3257 3257
 	// we want listings with featured image only
3258 3258
 	$query_args['featured_image_only'] = 1;
3259 3259
 
3260
-	if ( $post_type == 'gd_event' ) {
3260
+	if ($post_type == 'gd_event') {
3261 3261
 		$query_args['gedir_event_listing_filter'] = 'upcoming';
3262 3262
 	}// show only upcoming events
3263 3263
 
3264
-	$widget_listings = geodir_get_widget_listings( $query_args );
3265
-	if ( ! empty( $widget_listings ) || ( isset( $with_no_results ) && $with_no_results ) ) {
3266
-		if ( $title ) {
3267
-			echo $before_title . $title . $after_title;
3264
+	$widget_listings = geodir_get_widget_listings($query_args);
3265
+	if (!empty($widget_listings) || (isset($with_no_results) && $with_no_results)) {
3266
+		if ($title) {
3267
+			echo $before_title.$title.$after_title;
3268 3268
 		}
3269 3269
 
3270 3270
 		global $post;
3271 3271
 
3272
-		$current_post = $post;// keep current post info
3272
+		$current_post = $post; // keep current post info
3273 3273
 
3274 3274
 		$widget_main_slides = '';
3275 3275
 		$nav_slides         = '';
3276 3276
 		$widget_slides      = 0;
3277 3277
 
3278
-		foreach ( $widget_listings as $widget_listing ) {
3278
+		foreach ($widget_listings as $widget_listing) {
3279 3279
 			global $gd_widget_listing_type;
3280 3280
 			$post         = $widget_listing;
3281
-			$widget_image = geodir_get_featured_image( $post->ID, 'thumbnail', get_option( 'geodir_listing_no_img' ) );
3281
+			$widget_image = geodir_get_featured_image($post->ID, 'thumbnail', get_option('geodir_listing_no_img'));
3282 3282
 
3283
-			if ( ! empty( $widget_image ) ) {
3284
-				if ( $widget_image->height >= 200 ) {
3283
+			if (!empty($widget_image)) {
3284
+				if ($widget_image->height >= 200) {
3285 3285
 					$widget_spacer_height = 0;
3286 3286
 				} else {
3287
-					$widget_spacer_height = ( ( 200 - $widget_image->height ) / 2 );
3287
+					$widget_spacer_height = ((200 - $widget_image->height) / 2);
3288 3288
 				}
3289 3289
 
3290
-				$widget_main_slides .= '<li class="geodir-listing-slider-widget"><img class="geodir-listing-slider-spacer" src="' . geodir_plugin_url() . "/geodirectory-assets/images/spacer.gif" . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:' . $widget_spacer_height . 'px !important;margin:0 auto;" width="100" />';
3290
+				$widget_main_slides .= '<li class="geodir-listing-slider-widget"><img class="geodir-listing-slider-spacer" src="'.geodir_plugin_url()."/geodirectory-assets/images/spacer.gif".'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:'.$widget_spacer_height.'px !important;margin:0 auto;" width="100" />';
3291 3291
 
3292 3292
 				$title = '';
3293
-				if ( $show_title ) {
3294
-					$title_html     = '<div class="geodir-slider-title"><a href="' . get_permalink( $post->ID ) . '">' . get_the_title( $post->ID ) . '</a></div>';
3293
+				if ($show_title) {
3294
+					$title_html     = '<div class="geodir-slider-title"><a href="'.get_permalink($post->ID).'">'.get_the_title($post->ID).'</a></div>';
3295 3295
 					$post_id        = $post->ID;
3296
-					$post_permalink = get_permalink( $post->ID );
3297
-					$post_title     = get_the_title( $post->ID );
3296
+					$post_permalink = get_permalink($post->ID);
3297
+					$post_title     = get_the_title($post->ID);
3298 3298
 					/**
3299 3299
 					 * Filter the listing slider widget title.
3300 3300
 					 *
@@ -3305,12 +3305,12 @@  discard block
 block discarded – undo
3305 3305
 					 * @param string $post_permalink The post permalink url.
3306 3306
 					 * @param string $post_title     The post title text.
3307 3307
 					 */
3308
-					$title = apply_filters( 'geodir_listing_slider_title', $title_html, $post_id, $post_permalink, $post_title );
3308
+					$title = apply_filters('geodir_listing_slider_title', $title_html, $post_id, $post_permalink, $post_title);
3309 3309
 				}
3310 3310
 
3311
-				$widget_main_slides .= $title . '<a href="' . get_permalink( $post->ID ) . '"><img src="' . $widget_image->src . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:200px;margin:0 auto;" /></a></li>';
3312
-				$nav_slides .= '<li><img src="' . $widget_image->src . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:48px;margin:0 auto;" /></li>';
3313
-				$widget_slides ++;
3311
+				$widget_main_slides .= $title.'<a href="'.get_permalink($post->ID).'"><img src="'.$widget_image->src.'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:200px;margin:0 auto;" /></a></li>';
3312
+				$nav_slides .= '<li><img src="'.$widget_image->src.'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:48px;margin:0 auto;" /></li>';
3313
+				$widget_slides++;
3314 3314
 			}
3315 3315
 		}
3316 3316
 		?>
@@ -3319,7 +3319,7 @@  discard block
 block discarded – undo
3319 3319
 			<div id="geodir_widget_slider" class="geodir_flexslider">
3320 3320
 				<ul class="geodir-slides clearfix"><?php echo $widget_main_slides; ?></ul>
3321 3321
 			</div>
3322
-			<?php if ( $widget_slides > 1 ) { ?>
3322
+			<?php if ($widget_slides > 1) { ?>
3323 3323
 				<div id="geodir_widget_carousel" class="geodir_flexslider">
3324 3324
 					<ul class="geodir-slides clearfix"><?php echo $nav_slides; ?></ul>
3325 3325
 				</div>
@@ -3327,7 +3327,7 @@  discard block
 block discarded – undo
3327 3327
 		</div>
3328 3328
 		<?php
3329 3329
 		$GLOBALS['post'] = $current_post;
3330
-		setup_postdata( $current_post );
3330
+		setup_postdata($current_post);
3331 3331
 	}
3332 3332
 	echo $after_widget;
3333 3333
 }
@@ -3343,50 +3343,50 @@  discard block
 block discarded – undo
3343 3343
  * @param array|string $args     Display arguments including before_title, after_title, before_widget, and after_widget.
3344 3344
  * @param array|string $instance The settings for the particular instance of the widget.
3345 3345
  */
3346
-function geodir_loginwidget_output( $args = '', $instance = '' ) {
3346
+function geodir_loginwidget_output($args = '', $instance = '') {
3347 3347
 	//print_r($args);
3348 3348
 	//print_r($instance);
3349 3349
 	// prints the widget
3350
-	extract( $args, EXTR_SKIP );
3350
+	extract($args, EXTR_SKIP);
3351 3351
 
3352 3352
 	/** This filter is documented in geodirectory_widgets.php */
3353
-	$title = empty( $instance['title'] ) ? __( 'My Dashboard', 'geodirectory' ) : apply_filters( 'my_dashboard_widget_title', __( $instance['title'], 'geodirectory' ) );
3353
+	$title = empty($instance['title']) ? __('My Dashboard', 'geodirectory') : apply_filters('my_dashboard_widget_title', __($instance['title'], 'geodirectory'));
3354 3354
 
3355 3355
 	echo $before_widget;
3356
-	echo $before_title . $title . $after_title;
3356
+	echo $before_title.$title.$after_title;
3357 3357
 
3358 3358
 //	global $gd_session;
3359 3359
 //	print_r($gd_session);
3360 3360
 //	print_r($_SESSION);
3361 3361
 
3362
-	if ( is_user_logged_in() ) {
3362
+	if (is_user_logged_in()) {
3363 3363
 		global $current_user;
3364 3364
 
3365
-		$author_link = get_author_posts_url( $current_user->data->ID );
3366
-		$author_link = geodir_getlink( $author_link, array( 'geodir_dashbord' => 'true' ), false );
3365
+		$author_link = get_author_posts_url($current_user->data->ID);
3366
+		$author_link = geodir_getlink($author_link, array('geodir_dashbord' => 'true'), false);
3367 3367
 
3368 3368
 		echo '<ul class="geodir-loginbox-list">';
3369 3369
 		ob_start();
3370 3370
 		?>
3371 3371
 		<li><a class="signin"
3372
-		       href="<?php echo wp_logout_url( home_url() ); ?>"><?php _e( 'Logout', 'geodirectory' ); ?></a></li>
3372
+		       href="<?php echo wp_logout_url(home_url()); ?>"><?php _e('Logout', 'geodirectory'); ?></a></li>
3373 3373
 		<?php
3374
-		$post_types                           = geodir_get_posttypes( 'object' );
3375
-		$show_add_listing_post_types_main_nav = get_option( 'geodir_add_listing_link_user_dashboard' );
3376
-		$geodir_allow_posttype_frontend       = get_option( 'geodir_allow_posttype_frontend' );
3374
+		$post_types                           = geodir_get_posttypes('object');
3375
+		$show_add_listing_post_types_main_nav = get_option('geodir_add_listing_link_user_dashboard');
3376
+		$geodir_allow_posttype_frontend       = get_option('geodir_allow_posttype_frontend');
3377 3377
 
3378
-		if ( ! empty( $show_add_listing_post_types_main_nav ) ) {
3378
+		if (!empty($show_add_listing_post_types_main_nav)) {
3379 3379
 			$addlisting_links = '';
3380
-			foreach ( $post_types as $key => $postobj ) {
3380
+			foreach ($post_types as $key => $postobj) {
3381 3381
 
3382
-				if ( in_array( $key, $show_add_listing_post_types_main_nav ) ) {
3382
+				if (in_array($key, $show_add_listing_post_types_main_nav)) {
3383 3383
 
3384
-					if ( $add_link = geodir_get_addlisting_link( $key ) ) {
3384
+					if ($add_link = geodir_get_addlisting_link($key)) {
3385 3385
 
3386 3386
 						$name = $postobj->labels->name;
3387 3387
 
3388 3388
 						$selected = '';
3389
-						if ( geodir_get_current_posttype() == $key && geodir_is_page( 'add-listing' ) ) {
3389
+						if (geodir_get_current_posttype() == $key && geodir_is_page('add-listing')) {
3390 3390
 							$selected = 'selected="selected"';
3391 3391
 						}
3392 3392
 
@@ -3399,23 +3399,23 @@  discard block
 block discarded – undo
3399 3399
 						 * @param string $key       Add listing array key.
3400 3400
 						 * @param int $current_user ->ID Current user ID.
3401 3401
 						 */
3402
-						$add_link = apply_filters( 'geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID );
3403
-						$name = apply_filters( 'geodir_dashboard_label_add_listing', $name, $key, $current_user->ID );
3402
+						$add_link = apply_filters('geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID);
3403
+						$name = apply_filters('geodir_dashboard_label_add_listing', $name, $key, $current_user->ID);
3404 3404
 
3405
-						$addlisting_links .= '<option ' . $selected . ' value="' . $add_link . '">' . __( geodir_utf8_ucfirst( $name ), 'geodirectory' ) . '</option>';
3405
+						$addlisting_links .= '<option '.$selected.' value="'.$add_link.'">'.__(geodir_utf8_ucfirst($name), 'geodirectory').'</option>';
3406 3406
 
3407 3407
 					}
3408 3408
 				}
3409 3409
 
3410 3410
 			}
3411 3411
 
3412
-			if ( $addlisting_links != '' ) { ?>
3412
+			if ($addlisting_links != '') { ?>
3413 3413
 
3414 3414
 				<li><select id="geodir_add_listing" class="chosen_select" onchange="window.location.href=this.value"
3415 3415
 				            option-autoredirect="1" name="geodir_add_listing" option-ajaxchosen="false"
3416
-				            data-placeholder="<?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?>">
3416
+				            data-placeholder="<?php echo esc_attr(__('Add Listing', 'geodirectory')); ?>">
3417 3417
 						<option value="" disabled="disabled" selected="selected"
3418
-						        style='display:none;'><?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?></option>
3418
+						        style='display:none;'><?php echo esc_attr(__('Add Listing', 'geodirectory')); ?></option>
3419 3419
 						<?php echo $addlisting_links; ?>
3420 3420
 					</select></li> <?php
3421 3421
 
@@ -3423,24 +3423,24 @@  discard block
 block discarded – undo
3423 3423
 
3424 3424
 		}
3425 3425
 		// My Favourites in Dashboard
3426
-		$show_favorite_link_user_dashboard = get_option( 'geodir_favorite_link_user_dashboard' );
3426
+		$show_favorite_link_user_dashboard = get_option('geodir_favorite_link_user_dashboard');
3427 3427
 		$user_favourite                    = geodir_user_favourite_listing_count();
3428 3428
 
3429
-		if ( ! empty( $show_favorite_link_user_dashboard ) && ! empty( $user_favourite ) ) {
3429
+		if (!empty($show_favorite_link_user_dashboard) && !empty($user_favourite)) {
3430 3430
 			$favourite_links = '';
3431 3431
 
3432
-			foreach ( $post_types as $key => $postobj ) {
3433
-				if ( in_array( $key, $show_favorite_link_user_dashboard ) && array_key_exists( $key, $user_favourite ) ) {
3432
+			foreach ($post_types as $key => $postobj) {
3433
+				if (in_array($key, $show_favorite_link_user_dashboard) && array_key_exists($key, $user_favourite)) {
3434 3434
 					$name           = $postobj->labels->name;
3435 3435
 					$fav_author_link = apply_filters('gd_dash_fav_author_link', $author_link, $current_user->data->ID);
3436
-					$post_type_link = geodir_getlink( $fav_author_link, array(
3436
+					$post_type_link = geodir_getlink($fav_author_link, array(
3437 3437
 						'stype' => $key,
3438 3438
 						'list'  => 'favourite'
3439
-					), false );
3439
+					), false);
3440 3440
 
3441 3441
 					$selected = '';
3442 3442
 
3443
-					if ( isset( $_REQUEST['list'] ) && $_REQUEST['list'] == 'favourite' && isset( $_REQUEST['stype'] ) && $_REQUEST['stype'] == $key && isset( $_REQUEST['geodir_dashbord'] ) ) {
3443
+					if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite' && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key && isset($_REQUEST['geodir_dashbord'])) {
3444 3444
 						$selected = 'selected="selected"';
3445 3445
 					}
3446 3446
 					/**
@@ -3452,20 +3452,20 @@  discard block
 block discarded – undo
3452 3452
 					 * @param string $key            Favorite listing array key.
3453 3453
 					 * @param int $current_user      ->ID Current user ID.
3454 3454
 					 */
3455
-					$post_type_link = apply_filters( 'geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID );
3455
+					$post_type_link = apply_filters('geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID);
3456 3456
 
3457
-					$favourite_links .= '<option ' . $selected . ' value="' . $post_type_link . '">' . __( geodir_utf8_ucfirst( $name ), 'geodirectory' ) . '</option>';
3457
+					$favourite_links .= '<option '.$selected.' value="'.$post_type_link.'">'.__(geodir_utf8_ucfirst($name), 'geodirectory').'</option>';
3458 3458
 				}
3459 3459
 			}
3460 3460
 
3461
-			if ( $favourite_links != '' ) {
3461
+			if ($favourite_links != '') {
3462 3462
 				?>
3463 3463
 				<li>
3464 3464
 					<select id="geodir_my_favourites" class="chosen_select" onchange="window.location.href=this.value"
3465 3465
 					        option-autoredirect="1" name="geodir_my_favourites" option-ajaxchosen="false"
3466
-					        data-placeholder="<?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?>">
3466
+					        data-placeholder="<?php echo esc_attr(__('My Favorites', 'geodirectory')); ?>">
3467 3467
 						<option value="" disabled="disabled" selected="selected"
3468
-						        style='display:none;'><?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?></option>
3468
+						        style='display:none;'><?php echo esc_attr(__('My Favorites', 'geodirectory')); ?></option>
3469 3469
 						<?php echo $favourite_links; ?>
3470 3470
 					</select>
3471 3471
 				</li>
@@ -3474,20 +3474,20 @@  discard block
 block discarded – undo
3474 3474
 		}
3475 3475
 
3476 3476
 
3477
-		$show_listing_link_user_dashboard = get_option( 'geodir_listing_link_user_dashboard' );
3477
+		$show_listing_link_user_dashboard = get_option('geodir_listing_link_user_dashboard');
3478 3478
 		$user_listing                     = geodir_user_post_listing_count();
3479 3479
 
3480
-		if ( ! empty( $show_listing_link_user_dashboard ) && ! empty( $user_listing ) ) {
3480
+		if (!empty($show_listing_link_user_dashboard) && !empty($user_listing)) {
3481 3481
 			$listing_links = '';
3482 3482
 
3483
-			foreach ( $post_types as $key => $postobj ) {
3484
-				if ( in_array( $key, $show_listing_link_user_dashboard ) && array_key_exists( $key, $user_listing ) ) {
3483
+			foreach ($post_types as $key => $postobj) {
3484
+				if (in_array($key, $show_listing_link_user_dashboard) && array_key_exists($key, $user_listing)) {
3485 3485
 					$name         = $postobj->labels->name;
3486 3486
 					$listing_author_link = apply_filters('gd_dash_listing_author_link', $author_link, $current_user->data->ID);
3487
-					$listing_link = geodir_getlink( $listing_author_link, array( 'stype' => $key ), false );
3487
+					$listing_link = geodir_getlink($listing_author_link, array('stype' => $key), false);
3488 3488
 
3489 3489
 					$selected = '';
3490
-					if ( ! isset( $_REQUEST['list'] ) && isset( $_REQUEST['geodir_dashbord'] ) && isset( $_REQUEST['stype'] ) && $_REQUEST['stype'] == $key ) {
3490
+					if (!isset($_REQUEST['list']) && isset($_REQUEST['geodir_dashbord']) && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key) {
3491 3491
 						$selected = 'selected="selected"';
3492 3492
 					}
3493 3493
 
@@ -3500,20 +3500,20 @@  discard block
 block discarded – undo
3500 3500
 					 * @param string $key          My listing array key.
3501 3501
 					 * @param int $current_user    ->ID Current user ID.
3502 3502
 					 */
3503
-					$listing_link = apply_filters( 'geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID );
3503
+					$listing_link = apply_filters('geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID);
3504 3504
 
3505
-					$listing_links .= '<option ' . $selected . ' value="' . $listing_link . '">' . __( geodir_utf8_ucfirst( $name ), 'geodirectory' ) . '</option>';
3505
+					$listing_links .= '<option '.$selected.' value="'.$listing_link.'">'.__(geodir_utf8_ucfirst($name), 'geodirectory').'</option>';
3506 3506
 				}
3507 3507
 			}
3508 3508
 
3509
-			if ( $listing_links != '' ) {
3509
+			if ($listing_links != '') {
3510 3510
 				?>
3511 3511
 				<li>
3512 3512
 					<select id="geodir_my_listings" class="chosen_select" onchange="window.location.href=this.value"
3513 3513
 					        option-autoredirect="1" name="geodir_my_listings" option-ajaxchosen="false"
3514
-					        data-placeholder="<?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?>">
3514
+					        data-placeholder="<?php echo esc_attr(__('My Listings', 'geodirectory')); ?>">
3515 3515
 						<option value="" disabled="disabled" selected="selected"
3516
-						        style='display:none;'><?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?></option>
3516
+						        style='display:none;'><?php echo esc_attr(__('My Listings', 'geodirectory')); ?></option>
3517 3517
 						<?php echo $listing_links; ?>
3518 3518
 					</select>
3519 3519
 				</li>
@@ -3529,7 +3529,7 @@  discard block
 block discarded – undo
3529 3529
 		 *
3530 3530
 		 * @param string $dashboard_link Dashboard links HTML.
3531 3531
 		 */
3532
-		echo apply_filters( 'geodir_dashboard_links', $dashboard_link );
3532
+		echo apply_filters('geodir_dashboard_links', $dashboard_link);
3533 3533
 		echo '</ul>';
3534 3534
 
3535 3535
 		/**
@@ -3537,7 +3537,7 @@  discard block
 block discarded – undo
3537 3537
 		 *
3538 3538
 		 * @since 1.6.6
3539 3539
 		 */
3540
-		do_action( 'geodir_after_loginwidget_form_logged_in' );
3540
+		do_action('geodir_after_loginwidget_form_logged_in');
3541 3541
 
3542 3542
 
3543 3543
 	} else {
@@ -3552,18 +3552,18 @@  discard block
 block discarded – undo
3552 3552
 		<form name="loginform" class="loginform1"
3553 3553
 		      action="<?php echo geodir_login_url(); ?>"
3554 3554
 		      method="post">
3555
-			<div class="geodir_form_row"><input placeholder="<?php echo apply_filters('gd_login_wid_login_placeholder', __( 'Email', 'geodirectory' )); ?>" name="<?php echo apply_filters('gd_login_wid_login_name', 'log'); ?>"
3555
+			<div class="geodir_form_row"><input placeholder="<?php echo apply_filters('gd_login_wid_login_placeholder', __('Email', 'geodirectory')); ?>" name="<?php echo apply_filters('gd_login_wid_login_name', 'log'); ?>"
3556 3556
 			                                    type="text" class="textfield user_login1"/> <span
3557 3557
 					class="user_loginInfo"></span></div>
3558
-			<div class="geodir_form_row"><input placeholder="<?php _e( 'Password', 'geodirectory' ); ?>"
3558
+			<div class="geodir_form_row"><input placeholder="<?php _e('Password', 'geodirectory'); ?>"
3559 3559
 			                                    name="<?php echo apply_filters('gd_login_wid_login_pwd', 'pwd'); ?>" type="password"
3560 3560
 			                                    class="textfield user_pass1 input-text"/><span
3561 3561
 					class="user_passInfo"></span></div>
3562 3562
 
3563
-			<input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars( geodir_curPageURL() ); ?>"/>
3563
+			<input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars(geodir_curPageURL()); ?>"/>
3564 3564
 			<input type="hidden" name="testcookie" value="1"/>
3565 3565
 
3566
-				<?php do_action( 'login_form' ); ?>
3566
+				<?php do_action('login_form'); ?>
3567 3567
 
3568 3568
 			<div class="geodir_form_row clearfix"><input type="submit" name="submit"
3569 3569
 			                                             value="<?php echo SIGN_IN_BUTTON; ?>" class="b_signin"/>
@@ -3575,11 +3575,11 @@  discard block
 block discarded – undo
3575 3575
 					 *
3576 3576
 					 * @since 1.0.0
3577 3577
 					 */
3578
-					$is_enable_signup = get_option( 'users_can_register' );
3578
+					$is_enable_signup = get_option('users_can_register');
3579 3579
 					
3580
-					if ( $is_enable_signup ) {
3580
+					if ($is_enable_signup) {
3581 3581
 					?>
3582
-						<a href="<?php echo geodir_login_url( array( 'signup' => true ) ); ?>"
3582
+						<a href="<?php echo geodir_login_url(array('signup' => true)); ?>"
3583 3583
 						   class="goedir-newuser-link"><?php echo NEW_USER_TEXT; ?></a>
3584 3584
 
3585 3585
 					<?php
@@ -3590,7 +3590,7 @@  discard block
 block discarded – undo
3590 3590
 					 * @since 1.0.0
3591 3591
 					 */
3592 3592
 					?>
3593
-					<a href="<?php echo geodir_login_url( array( 'forgot' => true ) ); ?>"
3593
+					<a href="<?php echo geodir_login_url(array('forgot' => true)); ?>"
3594 3594
 					   class="goedir-forgot-link"><?php echo FORGOT_PW_TEXT; ?></a></p></div>
3595 3595
 		</form>
3596 3596
 		<?php
@@ -3599,7 +3599,7 @@  discard block
 block discarded – undo
3599 3599
 		 *
3600 3600
 		 * @since 1.6.6
3601 3601
 		 */
3602
-		do_action( 'geodir_after_loginwidget_form_logged_out' );
3602
+		do_action('geodir_after_loginwidget_form_logged_out');
3603 3603
 	}
3604 3604
 
3605 3605
 	echo $after_widget;
@@ -3622,13 +3622,13 @@  discard block
 block discarded – undo
3622 3622
  *                                         after_widget.
3623 3623
  * @param array|string $instance           The settings for the particular instance of the widget.
3624 3624
  */
3625
-function geodir_popular_postview_output( $args = '', $instance = '' ) {
3625
+function geodir_popular_postview_output($args = '', $instance = '') {
3626 3626
 	global $gd_session;
3627 3627
 
3628 3628
 	// prints the widget
3629
-	extract( $args, EXTR_SKIP );
3629
+	extract($args, EXTR_SKIP);
3630 3630
 	/** This filter is documented in geodirectory_widgets.php */
3631
-	$title = empty( $instance['title'] ) ? geodir_ucwords( $instance['category_title'] ) : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
3631
+	$title = empty($instance['title']) ? geodir_ucwords($instance['category_title']) : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
3632 3632
 	/**
3633 3633
 	 * Filter the widget post type.
3634 3634
 	 *
@@ -3636,7 +3636,7 @@  discard block
 block discarded – undo
3636 3636
 	 *
3637 3637
 	 * @param string $instance ['post_type'] Post type of listing.
3638 3638
 	 */
3639
-	$post_type = empty( $instance['post_type'] ) ? 'gd_place' : apply_filters( 'widget_post_type', $instance['post_type'] );
3639
+	$post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']);
3640 3640
 	/**
3641 3641
 	 * Filter the widget's term.
3642 3642
 	 *
@@ -3644,7 +3644,7 @@  discard block
 block discarded – undo
3644 3644
 	 *
3645 3645
 	 * @param string $instance ['category'] Filter by term. Can be any valid term.
3646 3646
 	 */
3647
-	$category = empty( $instance['category'] ) ? '0' : apply_filters( 'widget_category', $instance['category'] );
3647
+	$category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']);
3648 3648
 	/**
3649 3649
 	 * Filter the widget listings limit.
3650 3650
 	 *
@@ -3652,7 +3652,7 @@  discard block
 block discarded – undo
3652 3652
 	 *
3653 3653
 	 * @param string $instance ['post_number'] Number of listings to display.
3654 3654
 	 */
3655
-	$post_number = empty( $instance['post_number'] ) ? '5' : apply_filters( 'widget_post_number', $instance['post_number'] );
3655
+	$post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
3656 3656
 	/**
3657 3657
 	 * Filter widget's "layout" type.
3658 3658
 	 *
@@ -3660,7 +3660,7 @@  discard block
 block discarded – undo
3660 3660
 	 *
3661 3661
 	 * @param string $instance ['layout'] Widget layout type.
3662 3662
 	 */
3663
-	$layout = empty( $instance['layout'] ) ? 'gridview_onehalf' : apply_filters( 'widget_layout', $instance['layout'] );
3663
+	$layout = empty($instance['layout']) ? 'gridview_onehalf' : apply_filters('widget_layout', $instance['layout']);
3664 3664
 	/**
3665 3665
 	 * Filter widget's "add_location_filter" value.
3666 3666
 	 *
@@ -3668,7 +3668,7 @@  discard block
 block discarded – undo
3668 3668
 	 *
3669 3669
 	 * @param string|bool $instance ['add_location_filter'] Do you want to add location filter? Can be 1 or 0.
3670 3670
 	 */
3671
-	$add_location_filter = empty( $instance['add_location_filter'] ) ? '0' : apply_filters( 'widget_add_location_filter', $instance['add_location_filter'] );
3671
+	$add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']);
3672 3672
 	/**
3673 3673
 	 * Filter widget's listing width.
3674 3674
 	 *
@@ -3676,7 +3676,7 @@  discard block
 block discarded – undo
3676 3676
 	 *
3677 3677
 	 * @param string $instance ['listing_width'] Listing width.
3678 3678
 	 */
3679
-	$listing_width = empty( $instance['listing_width'] ) ? '' : apply_filters( 'widget_listing_width', $instance['listing_width'] );
3679
+	$listing_width = empty($instance['listing_width']) ? '' : apply_filters('widget_listing_width', $instance['listing_width']);
3680 3680
 	/**
3681 3681
 	 * Filter widget's "list_sort" type.
3682 3682
 	 *
@@ -3684,7 +3684,7 @@  discard block
 block discarded – undo
3684 3684
 	 *
3685 3685
 	 * @param string $instance ['list_sort'] Listing sort by type.
3686 3686
 	 */
3687
-	$list_sort             = empty( $instance['list_sort'] ) ? 'latest' : apply_filters( 'widget_list_sort', $instance['list_sort'] );
3687
+	$list_sort = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
3688 3688
 	/**
3689 3689
 	 * Filter widget's "title_tag" type.
3690 3690
 	 *
@@ -3692,36 +3692,36 @@  discard block
 block discarded – undo
3692 3692
 	 *
3693 3693
 	 * @param string $instance ['title_tag'] Listing title tag.
3694 3694
 	 */
3695
-	$title_tag            = empty( $instance['title_tag'] ) ? 'h3' : apply_filters( 'widget_title_tag', $instance['title_tag'] );
3696
-	$use_viewing_post_type = ! empty( $instance['use_viewing_post_type'] ) ? true : false;
3695
+	$title_tag = empty($instance['title_tag']) ? 'h3' : apply_filters('widget_title_tag', $instance['title_tag']);
3696
+	$use_viewing_post_type = !empty($instance['use_viewing_post_type']) ? true : false;
3697 3697
 
3698 3698
 	// set post type to current viewing post type
3699
-	if ( $use_viewing_post_type ) {
3699
+	if ($use_viewing_post_type) {
3700 3700
 		$current_post_type = geodir_get_current_posttype();
3701
-		if ( $current_post_type != '' && $current_post_type != $post_type ) {
3701
+		if ($current_post_type != '' && $current_post_type != $post_type) {
3702 3702
 			$post_type = $current_post_type;
3703 3703
 			$category  = array(); // old post type category will not work for current changed post type
3704 3704
 		}
3705 3705
 	}
3706 3706
 	// replace widget title dynamically
3707
-	$posttype_plural_label   = __( get_post_type_plural_label( $post_type ), 'geodirectory' );
3708
-	$posttype_singular_label = __( get_post_type_singular_label( $post_type ), 'geodirectory' );
3707
+	$posttype_plural_label   = __(get_post_type_plural_label($post_type), 'geodirectory');
3708
+	$posttype_singular_label = __(get_post_type_singular_label($post_type), 'geodirectory');
3709 3709
 
3710
-	$title = str_replace( "%posttype_plural_label%", $posttype_plural_label, $title );
3711
-	$title = str_replace( "%posttype_singular_label%", $posttype_singular_label, $title );
3710
+	$title = str_replace("%posttype_plural_label%", $posttype_plural_label, $title);
3711
+	$title = str_replace("%posttype_singular_label%", $posttype_singular_label, $title);
3712 3712
     
3713 3713
 	$categories = $category;
3714
-	if ( ! empty( $category ) && $category[0] != '0' ) {
3715
-		$category_taxonomy = geodir_get_taxonomies( $post_type );
3714
+	if (!empty($category) && $category[0] != '0') {
3715
+		$category_taxonomy = geodir_get_taxonomies($post_type);
3716 3716
 		
3717 3717
 		######### WPML #########
3718
-		if ( geodir_wpml_is_taxonomy_translated( $category_taxonomy[0] ) ) {
3719
-			$category = gd_lang_object_ids( $category, $category_taxonomy[0] );
3718
+		if (geodir_wpml_is_taxonomy_translated($category_taxonomy[0])) {
3719
+			$category = gd_lang_object_ids($category, $category_taxonomy[0]);
3720 3720
 		}
3721 3721
 		######### WPML #########
3722 3722
 	}
3723 3723
 
3724
-	if ( isset( $instance['character_count'] ) ) {
3724
+	if (isset($instance['character_count'])) {
3725 3725
 		/**
3726 3726
 		 * Filter the widget's excerpt character count.
3727 3727
 		 *
@@ -3729,38 +3729,38 @@  discard block
 block discarded – undo
3729 3729
 		 *
3730 3730
 		 * @param int $instance ['character_count'] Excerpt character count.
3731 3731
 		 */
3732
-		$character_count = apply_filters( 'widget_list_character_count', $instance['character_count'] );
3732
+		$character_count = apply_filters('widget_list_character_count', $instance['character_count']);
3733 3733
 	} else {
3734 3734
 		$character_count = '';
3735 3735
 	}
3736 3736
 
3737
-	if ( empty( $title ) || $title == 'All' ) {
3738
-		$post_type_name = __( get_post_type_plural_label( $post_type ), 'geodirectory' );
3739
-		$title = !empty( $title ) ? wp_sprintf( __( 'All %s', 'geodirectory' ), $post_type_name ) : $post_type_name;
3737
+	if (empty($title) || $title == 'All') {
3738
+		$post_type_name = __(get_post_type_plural_label($post_type), 'geodirectory');
3739
+		$title = !empty($title) ? wp_sprintf(__('All %s', 'geodirectory'), $post_type_name) : $post_type_name;
3740 3740
 	}
3741 3741
 
3742 3742
 	$location_url = array();
3743
-	$city         = get_query_var( 'gd_city' );
3744
-	if ( ! empty( $city ) ) {
3745
-		$country = get_query_var( 'gd_country' );
3746
-		$region  = get_query_var( 'gd_region' );
3743
+	$city         = get_query_var('gd_city');
3744
+	if (!empty($city)) {
3745
+		$country = get_query_var('gd_country');
3746
+		$region  = get_query_var('gd_region');
3747 3747
 
3748
-		$geodir_show_location_url = get_option( 'geodir_show_location_url' );
3748
+		$geodir_show_location_url = get_option('geodir_show_location_url');
3749 3749
 
3750
-		if ( $geodir_show_location_url == 'all' ) {
3751
-			if ( $country != '' ) {
3750
+		if ($geodir_show_location_url == 'all') {
3751
+			if ($country != '') {
3752 3752
 				$location_url[] = $country;
3753 3753
 			}
3754 3754
 
3755
-			if ( $region != '' ) {
3755
+			if ($region != '') {
3756 3756
 				$location_url[] = $region;
3757 3757
 			}
3758
-		} else if ( $geodir_show_location_url == 'country_city' ) {
3759
-			if ( $country != '' ) {
3758
+		} else if ($geodir_show_location_url == 'country_city') {
3759
+			if ($country != '') {
3760 3760
 				$location_url[] = $country;
3761 3761
 			}
3762
-		} else if ( $geodir_show_location_url == 'region_city' ) {
3763
-			if ( $region != '' ) {
3762
+		} else if ($geodir_show_location_url == 'region_city') {
3763
+			if ($region != '') {
3764 3764
 				$location_url[] = $region;
3765 3765
 			}
3766 3766
 		}
@@ -3768,54 +3768,54 @@  discard block
 block discarded – undo
3768 3768
 		$location_url[] = $city;
3769 3769
 	}
3770 3770
 
3771
-	$location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true;
3772
-	$location_url  = implode( '/', $location_url );
3771
+	$location_allowed = function_exists('geodir_cpt_no_location') && geodir_cpt_no_location($post_type) ? false : true;
3772
+	$location_url  = implode('/', $location_url);
3773 3773
 	$skip_location = false;
3774
-	if ( ! $add_location_filter && $gd_session->get( 'gd_multi_location' ) ) {
3774
+	if (!$add_location_filter && $gd_session->get('gd_multi_location')) {
3775 3775
 		$skip_location = true;
3776
-		$gd_session->un_set( 'gd_multi_location' );
3776
+		$gd_session->un_set('gd_multi_location');
3777 3777
 	}
3778 3778
 
3779
-	if ( $location_allowed && $add_location_filter && $gd_session->get( 'all_near_me' ) && geodir_is_page( 'location' ) ) {
3780
-		$viewall_url = add_query_arg( array( 
3779
+	if ($location_allowed && $add_location_filter && $gd_session->get('all_near_me') && geodir_is_page('location')) {
3780
+		$viewall_url = add_query_arg(array( 
3781 3781
 			'geodir_search' => 1, 
3782 3782
 			'stype' => $post_type,
3783 3783
 			's' => '',
3784
-			'snear' => __( 'Near:', 'geodiradvancesearch' ) . ' ' . __( 'Me', 'geodiradvancesearch' ),
3785
-			'sgeo_lat' => $gd_session->get( 'user_lat' ),
3786
-			'sgeo_lon' => $gd_session->get( 'user_lon' )
3787
-		), geodir_search_page_base_url() );
3784
+			'snear' => __('Near:', 'geodiradvancesearch').' '.__('Me', 'geodiradvancesearch'),
3785
+			'sgeo_lat' => $gd_session->get('user_lat'),
3786
+			'sgeo_lon' => $gd_session->get('user_lon')
3787
+		), geodir_search_page_base_url());
3788 3788
 
3789
-		if ( ! empty( $category ) && !in_array( '0', $category ) ) {
3790
-			$viewall_url = add_query_arg( array( 's' . $post_type . 'category' => $category ), $viewall_url );
3789
+		if (!empty($category) && !in_array('0', $category)) {
3790
+			$viewall_url = add_query_arg(array('s'.$post_type.'category' => $category), $viewall_url);
3791 3791
 		}
3792 3792
 	} else {
3793
-		if ( get_option( 'permalink_structure' ) ) {
3794
-			$viewall_url = get_post_type_archive_link( $post_type );
3793
+		if (get_option('permalink_structure')) {
3794
+			$viewall_url = get_post_type_archive_link($post_type);
3795 3795
 		} else {
3796
-			$viewall_url = get_post_type_archive_link( $post_type );
3796
+			$viewall_url = get_post_type_archive_link($post_type);
3797 3797
 		}
3798 3798
 
3799
-		if ( ! empty( $category ) && $category[0] != '0' ) {
3799
+		if (!empty($category) && $category[0] != '0') {
3800 3800
 			global $geodir_add_location_url;
3801 3801
 
3802 3802
 			$geodir_add_location_url = '0';
3803 3803
 
3804
-			if ( $add_location_filter != '0' ) {
3804
+			if ($add_location_filter != '0') {
3805 3805
 				$geodir_add_location_url = '1';
3806 3806
 			}
3807 3807
 
3808
-			$viewall_url = get_term_link( (int) $category[0], $post_type . 'category' );
3808
+			$viewall_url = get_term_link((int) $category[0], $post_type.'category');
3809 3809
 
3810 3810
 			$geodir_add_location_url = null;
3811 3811
 		}
3812 3812
 	}
3813 3813
 
3814
-	if ( $skip_location ) {
3815
-		$gd_session->set( 'gd_multi_location', 1 );
3814
+	if ($skip_location) {
3815
+		$gd_session->set('gd_multi_location', 1);
3816 3816
 	}
3817 3817
 
3818
-	if ( is_wp_error( $viewall_url ) ) {
3818
+	if (is_wp_error($viewall_url)) {
3819 3819
 		$viewall_url = '';
3820 3820
 	}
3821 3821
 
@@ -3827,43 +3827,43 @@  discard block
 block discarded – undo
3827 3827
 		'order_by'       => $list_sort
3828 3828
 	);
3829 3829
 
3830
-	if ( $character_count ) {
3830
+	if ($character_count) {
3831 3831
 		$query_args['excerpt_length'] = $character_count;
3832 3832
 	}
3833 3833
 
3834
-	if ( ! empty( $instance['show_featured_only'] ) ) {
3834
+	if (!empty($instance['show_featured_only'])) {
3835 3835
 		$query_args['show_featured_only'] = 1;
3836 3836
 	}
3837 3837
 
3838
-	if ( ! empty( $instance['show_special_only'] ) ) {
3838
+	if (!empty($instance['show_special_only'])) {
3839 3839
 		$query_args['show_special_only'] = 1;
3840 3840
 	}
3841 3841
 
3842
-	if ( ! empty( $instance['with_pics_only'] ) ) {
3842
+	if (!empty($instance['with_pics_only'])) {
3843 3843
 		$query_args['with_pics_only']      = 0;
3844 3844
 		$query_args['featured_image_only'] = 1;
3845 3845
 	}
3846 3846
 
3847
-	if ( ! empty( $instance['with_videos_only'] ) ) {
3847
+	if (!empty($instance['with_videos_only'])) {
3848 3848
 		$query_args['with_videos_only'] = 1;
3849 3849
 	}
3850
-	$hide_if_empty = ! empty( $instance['hide_if_empty'] ) ? true : false;
3850
+	$hide_if_empty = !empty($instance['hide_if_empty']) ? true : false;
3851 3851
 
3852
-	if ( ! empty( $categories ) && $categories[0] != '0' && !empty( $category_taxonomy ) ) {
3852
+	if (!empty($categories) && $categories[0] != '0' && !empty($category_taxonomy)) {
3853 3853
 		$tax_query = array(
3854 3854
 			'taxonomy' => $category_taxonomy[0],
3855 3855
 			'field'    => 'id',
3856 3856
 			'terms'    => $category
3857 3857
 		);
3858 3858
 
3859
-		$query_args['tax_query'] = array( $tax_query );
3859
+		$query_args['tax_query'] = array($tax_query);
3860 3860
 	}
3861 3861
 
3862 3862
 	global $gridview_columns_widget, $geodir_is_widget_listing;
3863 3863
 
3864
-	$widget_listings = geodir_get_widget_listings( $query_args );
3864
+	$widget_listings = geodir_get_widget_listings($query_args);
3865 3865
     
3866
-	if ( $hide_if_empty && empty( $widget_listings ) ) {
3866
+	if ($hide_if_empty && empty($widget_listings)) {
3867 3867
 		return;
3868 3868
 	}
3869 3869
     
@@ -3878,11 +3878,11 @@  discard block
 block discarded – undo
3878 3878
 		 *
3879 3879
 		 * @since 1.0.0
3880 3880
 		 */
3881
-		do_action( 'geodir_before_view_all_link_in_widget' ); ?>
3881
+		do_action('geodir_before_view_all_link_in_widget'); ?>
3882 3882
 		<div class="geodir_list_heading clearfix">
3883
-			<?php echo $before_title . $title . $after_title; ?>
3883
+			<?php echo $before_title.$title.$after_title; ?>
3884 3884
 			<a href="<?php echo $viewall_url; ?>"
3885
-			   class="geodir-viewall"><?php _e( 'View all', 'geodirectory' ); ?></a>
3885
+			   class="geodir-viewall"><?php _e('View all', 'geodirectory'); ?></a>
3886 3886
 		</div>
3887 3887
 		<?php
3888 3888
 		/**
@@ -3890,10 +3890,10 @@  discard block
 block discarded – undo
3890 3890
 		 *
3891 3891
 		 * @since 1.0.0
3892 3892
 		 */
3893
-		do_action( 'geodir_after_view_all_link_in_widget' ); ?>
3893
+		do_action('geodir_after_view_all_link_in_widget'); ?>
3894 3894
 		<?php
3895
-		if ( strstr( $layout, 'gridview' ) ) {
3896
-			$listing_view_exp        = explode( '_', $layout );
3895
+		if (strstr($layout, 'gridview')) {
3896
+			$listing_view_exp        = explode('_', $layout);
3897 3897
 			$gridview_columns_widget = $layout;
3898 3898
 			$layout                  = $listing_view_exp[0];
3899 3899
 		} else {
@@ -3904,8 +3904,8 @@  discard block
 block discarded – undo
3904 3904
 		 *
3905 3905
 		 * @since 1.0.0
3906 3906
 		 */
3907
-		$template = apply_filters( "geodir_template_part-widget-listing-listview", geodir_locate_template( 'widget-listing-listview' ) );
3908
-		if ( ! isset( $character_count ) ) {
3907
+		$template = apply_filters("geodir_template_part-widget-listing-listview", geodir_locate_template('widget-listing-listview'));
3908
+		if (!isset($character_count)) {
3909 3909
 			/**
3910 3910
 			 * Filter the widget's excerpt character count.
3911 3911
 			 *
@@ -3913,7 +3913,7 @@  discard block
 block discarded – undo
3913 3913
 			 *
3914 3914
 			 * @param int $instance ['character_count'] Excerpt character count.
3915 3915
 			 */
3916
-			$character_count = $character_count == '' ? 50 : apply_filters( 'widget_character_count', $character_count );
3916
+			$character_count = $character_count == '' ? 50 : apply_filters('widget_character_count', $character_count);
3917 3917
 		}
3918 3918
 
3919 3919
 		global $post, $map_jason, $map_canvas_arr;
@@ -3928,13 +3928,13 @@  discard block
 block discarded – undo
3928 3928
 		 *
3929 3929
 		 * @since 1.0.0
3930 3930
 		 */
3931
-		include( $template );
3931
+		include($template);
3932 3932
 
3933 3933
 		$geodir_is_widget_listing = false;
3934 3934
 
3935 3935
 		$GLOBALS['post'] = $current_post;
3936
-		if ( ! empty( $current_post ) ) {
3937
-			setup_postdata( $current_post );
3936
+		if (!empty($current_post)) {
3937
+			setup_postdata($current_post);
3938 3938
 		}
3939 3939
 		$map_jason      = $current_map_jason;
3940 3940
 		$map_canvas_arr = $current_map_canvas_arr;
@@ -3963,12 +3963,12 @@  discard block
 block discarded – undo
3963 3963
  *
3964 3964
  * @return int Reviews count.
3965 3965
  */
3966
-function geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type ) {
3966
+function geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type) {
3967 3967
 	global $wpdb, $plugin_prefix;
3968 3968
 
3969
-	$detail_table = $plugin_prefix . $post_type . '_detail';
3969
+	$detail_table = $plugin_prefix.$post_type.'_detail';
3970 3970
 
3971
-	$sql = "SELECT COALESCE(SUM(rating_count),0) FROM " . $detail_table . " WHERE post_status = 'publish' AND rating_count > 0 AND FIND_IN_SET(" . $term_id . ", " . $taxonomy . ")";
3971
+	$sql = "SELECT COALESCE(SUM(rating_count),0) FROM ".$detail_table." WHERE post_status = 'publish' AND rating_count > 0 AND FIND_IN_SET(".$term_id.", ".$taxonomy.")";
3972 3972
 
3973 3973
 	/**
3974 3974
 	 * Filter count review sql query.
@@ -3980,9 +3980,9 @@  discard block
 block discarded – undo
3980 3980
 	 * @param int $taxonomy     The taxonomy Id.
3981 3981
 	 * @param string $post_type The post type.
3982 3982
 	 */
3983
-	$sql = apply_filters( 'geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type );
3983
+	$sql = apply_filters('geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type);
3984 3984
 
3985
-	$count = $wpdb->get_var( $sql );
3985
+	$count = $wpdb->get_var($sql);
3986 3986
 
3987 3987
 	return $count;
3988 3988
 }
@@ -4000,7 +4000,7 @@  discard block
 block discarded – undo
4000 4000
  *
4001 4001
  * @return array Term array data.
4002 4002
  */
4003
-function geodir_count_reviews_by_terms( $force_update = false, $post_ID = 0 ) {
4003
+function geodir_count_reviews_by_terms($force_update = false, $post_ID = 0) {
4004 4004
 	/**
4005 4005
 	 * Filter review count option data.
4006 4006
 	 *
@@ -4010,78 +4010,78 @@  discard block
 block discarded – undo
4010 4010
 	 * @param bool $force_update Force update option value?. Default.false.
4011 4011
 	 * @param int $post_ID       The post id to update if any.
4012 4012
 	 */
4013
-	$option_data = apply_filters( 'geodir_count_reviews_by_terms_before', '', $force_update, $post_ID );
4014
-	if ( ! empty( $option_data ) ) {
4013
+	$option_data = apply_filters('geodir_count_reviews_by_terms_before', '', $force_update, $post_ID);
4014
+	if (!empty($option_data)) {
4015 4015
 		return $option_data;
4016 4016
 	}
4017 4017
 
4018
-	$option_data = get_option( 'geodir_global_review_count' );
4018
+	$option_data = get_option('geodir_global_review_count');
4019 4019
 
4020
-	if ( ! $option_data || $force_update ) {
4021
-		if ( (int) $post_ID > 0 ) { // Update reviews count for specific post categories only.
4020
+	if (!$option_data || $force_update) {
4021
+		if ((int) $post_ID > 0) { // Update reviews count for specific post categories only.
4022 4022
 			global $gd_session;
4023 4023
 			$term_array = (array) $option_data;
4024
-			$post_type  = get_post_type( $post_ID );
4025
-			$taxonomy   = $post_type . 'category';
4026
-			$terms      = wp_get_object_terms( $post_ID, $taxonomy, array( 'fields' => 'ids' ) );
4027
-
4028
-			if ( ! empty( $terms ) && ! is_wp_error( $terms ) ) {
4029
-				foreach ( $terms as $term_id ) {
4030
-					$count                  = geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type );
4031
-					$children               = get_term_children( $term_id, $taxonomy );
4032
-					$term_array[ $term_id ] = $count;
4024
+			$post_type  = get_post_type($post_ID);
4025
+			$taxonomy   = $post_type.'category';
4026
+			$terms      = wp_get_object_terms($post_ID, $taxonomy, array('fields' => 'ids'));
4027
+
4028
+			if (!empty($terms) && !is_wp_error($terms)) {
4029
+				foreach ($terms as $term_id) {
4030
+					$count                  = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type);
4031
+					$children               = get_term_children($term_id, $taxonomy);
4032
+					$term_array[$term_id] = $count;
4033 4033
 				}
4034 4034
 			}
4035 4035
 
4036
-			$session_listing = $gd_session->get( 'listing' );
4036
+			$session_listing = $gd_session->get('listing');
4037 4037
 
4038 4038
 			$terms = array();
4039
-			if ( isset( $_POST['post_category'][ $taxonomy ] ) ) {
4040
-				$terms = (array) $_POST['post_category'][ $taxonomy ];
4041
-			} else if ( ! empty( $session_listing ) && isset( $session_listing['post_category'][ $taxonomy ] ) ) {
4042
-				$terms = (array) $session_listing['post_category'][ $taxonomy ];
4039
+			if (isset($_POST['post_category'][$taxonomy])) {
4040
+				$terms = (array) $_POST['post_category'][$taxonomy];
4041
+			} else if (!empty($session_listing) && isset($session_listing['post_category'][$taxonomy])) {
4042
+				$terms = (array) $session_listing['post_category'][$taxonomy];
4043 4043
 			}
4044 4044
 
4045
-			if ( ! empty( $terms ) ) {
4046
-				foreach ( $terms as $term_id ) {
4047
-					if ( $term_id > 0 ) {
4048
-						$count                  = geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type );
4049
-						$children               = get_term_children( $term_id, $taxonomy );
4050
-						$term_array[ $term_id ] = $count;
4045
+			if (!empty($terms)) {
4046
+				foreach ($terms as $term_id) {
4047
+					if ($term_id > 0) {
4048
+						$count                  = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type);
4049
+						$children               = get_term_children($term_id, $taxonomy);
4050
+						$term_array[$term_id] = $count;
4051 4051
 					}
4052 4052
 				}
4053 4053
 			}
4054 4054
 		} else { // Update reviews count for all post categories.
4055 4055
 			$term_array = array();
4056 4056
 			$post_types = geodir_get_posttypes();
4057
-			foreach ( $post_types as $post_type ) {
4057
+			foreach ($post_types as $post_type) {
4058 4058
 
4059
-				$taxonomy = geodir_get_taxonomies( $post_type );
4059
+				$taxonomy = geodir_get_taxonomies($post_type);
4060 4060
 				$taxonomy = $taxonomy[0];
4061 4061
 
4062 4062
 				$args = array(
4063 4063
 					'hide_empty' => false
4064 4064
 				);
4065 4065
 
4066
-				$terms = get_terms( $taxonomy, $args );
4066
+				$terms = get_terms($taxonomy, $args);
4067 4067
 
4068
-				foreach ( $terms as $term ) {
4069
-					$count    = geodir_count_reviews_by_term_id( $term->term_id, $taxonomy, $post_type );
4070
-					$children = get_term_children( $term->term_id, $taxonomy );
4068
+				foreach ($terms as $term) {
4069
+					$count    = geodir_count_reviews_by_term_id($term->term_id, $taxonomy, $post_type);
4070
+					$children = get_term_children($term->term_id, $taxonomy);
4071 4071
 					/*if ( is_array( $children ) ) {
4072 4072
                         foreach ( $children as $child_id ) {
4073 4073
                             $child_count = geodir_count_reviews_by_term_id($child_id, $taxonomy, $post_type);
4074 4074
                             $count = $count + $child_count;
4075 4075
                         }
4076 4076
                     }*/
4077
-					$term_array[ $term->term_id ] = $count;
4077
+					$term_array[$term->term_id] = $count;
4078 4078
 				}
4079 4079
 			}
4080 4080
 		}
4081 4081
 
4082
-		update_option( 'geodir_global_review_count', $term_array );
4082
+		update_option('geodir_global_review_count', $term_array);
4083 4083
 		//clear cache
4084
-		wp_cache_delete( 'geodir_global_review_count' );
4084
+		wp_cache_delete('geodir_global_review_count');
4085 4085
 
4086 4086
 		return $term_array;
4087 4087
 	} else {
@@ -4097,39 +4097,39 @@  discard block
 block discarded – undo
4097 4097
  * @package GeoDirectory
4098 4098
  * @return bool
4099 4099
  */
4100
-function geodir_term_review_count_force_update( $new_status, $old_status = '', $post = '' ) {
4101
-	if ( isset( $_REQUEST['action'] ) && $_REQUEST['action'] == 'geodir_import_export' ) {
4100
+function geodir_term_review_count_force_update($new_status, $old_status = '', $post = '') {
4101
+	if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'geodir_import_export') {
4102 4102
 		return; // do not run if importing listings
4103 4103
 	}
4104 4104
 
4105
-	if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
4105
+	if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
4106 4106
 		return;
4107 4107
 	}
4108 4108
 
4109 4109
 	$post_ID = 0;
4110
-	if ( ! empty( $post ) ) {
4111
-		if ( isset( $post->post_type ) && strpos( $post->post_type, 'gd_' ) !== 0 ) {
4110
+	if (!empty($post)) {
4111
+		if (isset($post->post_type) && strpos($post->post_type, 'gd_') !== 0) {
4112 4112
 			return;
4113 4113
 		}
4114 4114
 
4115
-		if ( $new_status == 'auto-draft' && $old_status == 'new' ) {
4115
+		if ($new_status == 'auto-draft' && $old_status == 'new') {
4116 4116
 			return;
4117 4117
 		}
4118 4118
 
4119
-		if ( ! empty( $post->ID ) ) {
4119
+		if (!empty($post->ID)) {
4120 4120
 			$post_ID = $post->ID;
4121 4121
 		}
4122 4122
 	}
4123 4123
 
4124
-	if ( $new_status != $old_status ) {
4125
-		geodir_count_reviews_by_terms( true, $post_ID );
4124
+	if ($new_status != $old_status) {
4125
+		geodir_count_reviews_by_terms(true, $post_ID);
4126 4126
 	}
4127 4127
 
4128 4128
 	return true;
4129 4129
 }
4130 4130
 
4131
-function geodir_term_review_count_force_update_single_post( $post_id ) {
4132
-	geodir_count_reviews_by_terms( true, $post_id );
4131
+function geodir_term_review_count_force_update_single_post($post_id) {
4132
+	geodir_count_reviews_by_terms(true, $post_id);
4133 4133
 }
4134 4134
 
4135 4135
 /*-----------------------------------------------------------------------------------*/
@@ -4146,11 +4146,11 @@  discard block
 block discarded – undo
4146 4146
  *
4147 4147
  * @return int Post count.
4148 4148
  */
4149
-function geodir_count_posts_by_term( $data, $term ) {
4149
+function geodir_count_posts_by_term($data, $term) {
4150 4150
 
4151
-	if ( $data ) {
4152
-		if ( isset( $data[ $term->term_id ] ) ) {
4153
-			return $data[ $term->term_id ];
4151
+	if ($data) {
4152
+		if (isset($data[$term->term_id])) {
4153
+			return $data[$term->term_id];
4154 4154
 		} else {
4155 4155
 			return 0;
4156 4156
 		}
@@ -4167,8 +4167,8 @@  discard block
 block discarded – undo
4167 4167
  * param array $terms An array of term objects.
4168 4168
  * @return array Sorted terms array.
4169 4169
  */
4170
-function geodir_sort_terms_by_count( $terms ) {
4171
-	usort( $terms, "geodir_sort_by_count_obj" );
4170
+function geodir_sort_terms_by_count($terms) {
4171
+	usort($terms, "geodir_sort_by_count_obj");
4172 4172
 
4173 4173
 	return $terms;
4174 4174
 }
@@ -4183,8 +4183,8 @@  discard block
 block discarded – undo
4183 4183
  *
4184 4184
  * @return array Sorted terms array.
4185 4185
  */
4186
-function geodir_sort_terms_by_review_count( $terms ) {
4187
-	usort( $terms, "geodir_sort_by_review_count_obj" );
4186
+function geodir_sort_terms_by_review_count($terms) {
4187
+	usort($terms, "geodir_sort_by_review_count_obj");
4188 4188
 
4189 4189
 	return $terms;
4190 4190
 }
@@ -4200,12 +4200,12 @@  discard block
 block discarded – undo
4200 4200
  *
4201 4201
  * @return array Sorted terms array.
4202 4202
  */
4203
-function geodir_sort_terms( $terms, $sort = 'count' ) {
4204
-	if ( $sort == 'count' ) {
4205
-		return geodir_sort_terms_by_count( $terms );
4203
+function geodir_sort_terms($terms, $sort = 'count') {
4204
+	if ($sort == 'count') {
4205
+		return geodir_sort_terms_by_count($terms);
4206 4206
 	}
4207
-	if ( $sort == 'review_count' ) {
4208
-		return geodir_sort_terms_by_review_count( $terms );
4207
+	if ($sort == 'review_count') {
4208
+		return geodir_sort_terms_by_review_count($terms);
4209 4209
 	}
4210 4210
 	return $terms;
4211 4211
 }
@@ -4224,7 +4224,7 @@  discard block
 block discarded – undo
4224 4224
  *
4225 4225
  * @return bool
4226 4226
  */
4227
-function geodir_sort_by_count( $a, $b ) {
4227
+function geodir_sort_by_count($a, $b) {
4228 4228
 	return $a['count'] < $b['count'];
4229 4229
 }
4230 4230
 
@@ -4239,7 +4239,7 @@  discard block
 block discarded – undo
4239 4239
  *
4240 4240
  * @return bool
4241 4241
  */
4242
-function geodir_sort_by_count_obj( $a, $b ) {
4242
+function geodir_sort_by_count_obj($a, $b) {
4243 4243
 	return $a->count < $b->count;
4244 4244
 }
4245 4245
 
@@ -4254,7 +4254,7 @@  discard block
 block discarded – undo
4254 4254
  *
4255 4255
  * @return bool
4256 4256
  */
4257
-function geodir_sort_by_review_count_obj( $a, $b ) {
4257
+function geodir_sort_by_review_count_obj($a, $b) {
4258 4258
 	return $a->review_count < $b->review_count;
4259 4259
 }
4260 4260
 
@@ -4271,35 +4271,35 @@  discard block
 block discarded – undo
4271 4271
 	 * @since   1.4.2
4272 4272
 	 * @package GeoDirectory
4273 4273
 	 */
4274
-	$locale = apply_filters( 'plugin_locale', get_locale(), 'geodirectory' );
4274
+	$locale = apply_filters('plugin_locale', get_locale(), 'geodirectory');
4275 4275
 
4276
-	load_textdomain( 'geodirectory', WP_LANG_DIR . '/' . 'geodirectory' . '/' . 'geodirectory' . '-' . $locale . '.mo' );
4277
-	load_plugin_textdomain( 'geodirectory', false, plugin_basename( dirname( dirname( __FILE__ ) ) ) . '/geodirectory-languages' );
4276
+	load_textdomain('geodirectory', WP_LANG_DIR.'/'.'geodirectory'.'/'.'geodirectory'.'-'.$locale.'.mo');
4277
+	load_plugin_textdomain('geodirectory', false, plugin_basename(dirname(dirname(__FILE__))).'/geodirectory-languages');
4278 4278
 
4279 4279
 	/**
4280 4280
 	 * Define language constants.
4281 4281
 	 *
4282 4282
 	 * @since 1.0.0
4283 4283
 	 */
4284
-	require_once( geodir_plugin_path() . '/language.php' );
4284
+	require_once(geodir_plugin_path().'/language.php');
4285 4285
 
4286
-	$language_file = geodir_plugin_path() . '/db-language.php';
4286
+	$language_file = geodir_plugin_path().'/db-language.php';
4287 4287
 
4288 4288
 	// Load language string file if not created yet
4289
-	if ( ! file_exists( $language_file ) ) {
4289
+	if (!file_exists($language_file)) {
4290 4290
 		geodirectory_load_db_language();
4291 4291
 	}
4292 4292
 
4293
-	if ( file_exists( $language_file ) ) {
4293
+	if (file_exists($language_file)) {
4294 4294
 		/**
4295 4295
 		 * Language strings from database.
4296 4296
 		 *
4297 4297
 		 * @since 1.4.2
4298 4298
 		 */
4299 4299
 		try {
4300
-			require_once( $language_file );
4301
-		} catch ( Exception $e ) {
4302
-			error_log( 'Language Error: ' . $e->getMessage() );
4300
+			require_once($language_file);
4301
+		} catch (Exception $e) {
4302
+			error_log('Language Error: '.$e->getMessage());
4303 4303
 		}
4304 4304
 	}
4305 4305
 }
@@ -4316,19 +4316,19 @@  discard block
 block discarded – undo
4316 4316
  */
4317 4317
 function geodirectory_load_db_language() {
4318 4318
 	global $wp_filesystem;
4319
-	if ( empty( $wp_filesystem ) ) {
4320
-		require_once( ABSPATH . '/wp-admin/includes/file.php' );
4319
+	if (empty($wp_filesystem)) {
4320
+		require_once(ABSPATH.'/wp-admin/includes/file.php');
4321 4321
 		WP_Filesystem();
4322 4322
 		global $wp_filesystem;
4323 4323
 	}
4324 4324
 
4325
-	$language_file = geodir_plugin_path() . '/db-language.php';
4325
+	$language_file = geodir_plugin_path().'/db-language.php';
4326 4326
 
4327
-	if ( is_file( $language_file ) && ! is_writable( $language_file ) ) {
4327
+	if (is_file($language_file) && !is_writable($language_file)) {
4328 4328
 		return false;
4329 4329
 	} // Not possible to create.
4330 4330
 
4331
-	if ( ! is_file( $language_file ) && ! is_writable( dirname( $language_file ) ) ) {
4331
+	if (!is_file($language_file) && !is_writable(dirname($language_file))) {
4332 4332
 		return false;
4333 4333
 	} // Not possible to create.
4334 4334
 
@@ -4342,9 +4342,9 @@  discard block
 block discarded – undo
4342 4342
 	 *
4343 4343
 	 * @param array $contents_strings Array of strings.
4344 4344
 	 */
4345
-	$contents_strings = apply_filters( 'geodir_load_db_language', $contents_strings );
4345
+	$contents_strings = apply_filters('geodir_load_db_language', $contents_strings);
4346 4346
 
4347
-	$contents_strings = array_unique( $contents_strings );
4347
+	$contents_strings = array_unique($contents_strings);
4348 4348
 
4349 4349
 	$contents_head   = array();
4350 4350
 	$contents_head[] = "<?php";
@@ -4361,21 +4361,21 @@  discard block
 block discarded – undo
4361 4361
 	$contents_foot[] = "";
4362 4362
 	$contents_foot[] = "";
4363 4363
 
4364
-	$contents = implode( PHP_EOL, $contents_head );
4364
+	$contents = implode(PHP_EOL, $contents_head);
4365 4365
 
4366
-	if ( ! empty( $contents_strings ) ) {
4367
-		foreach ( $contents_strings as $string ) {
4368
-			if ( is_scalar( $string ) && $string != '' ) {
4369
-				$string = str_replace( "'", "\'", $string );
4370
-				geodir_wpml_register_string( $string );
4371
-				$contents .= PHP_EOL . "__('" . $string . "', 'geodirectory');";
4366
+	if (!empty($contents_strings)) {
4367
+		foreach ($contents_strings as $string) {
4368
+			if (is_scalar($string) && $string != '') {
4369
+				$string = str_replace("'", "\'", $string);
4370
+				geodir_wpml_register_string($string);
4371
+				$contents .= PHP_EOL."__('".$string."', 'geodirectory');";
4372 4372
 			}
4373 4373
 		}
4374 4374
 	}
4375 4375
 
4376
-	$contents .= implode( PHP_EOL, $contents_foot );
4376
+	$contents .= implode(PHP_EOL, $contents_foot);
4377 4377
 
4378
-	if ( $wp_filesystem->put_contents( $language_file, $contents, FS_CHMOD_FILE ) ) {
4378
+	if ($wp_filesystem->put_contents($language_file, $contents, FS_CHMOD_FILE)) {
4379 4379
 		return false;
4380 4380
 	} // Failure; could not write file.
4381 4381
 
@@ -4396,49 +4396,49 @@  discard block
 block discarded – undo
4396 4396
  *
4397 4397
  * @return array Translation texts.
4398 4398
  */
4399
-function geodir_load_custom_field_translation( $translation_texts = array() ) {
4399
+function geodir_load_custom_field_translation($translation_texts = array()) {
4400 4400
 	global $wpdb;
4401 4401
 
4402 4402
 	// Custom fields table
4403
-	$sql  = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values, validation_msg FROM " . GEODIR_CUSTOM_FIELDS_TABLE;
4404
-	$rows = $wpdb->get_results( $sql );
4403
+	$sql  = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values, validation_msg FROM ".GEODIR_CUSTOM_FIELDS_TABLE;
4404
+	$rows = $wpdb->get_results($sql);
4405 4405
 
4406
-	if ( ! empty( $rows ) ) {
4407
-		foreach ( $rows as $row ) {
4408
-			if ( ! empty( $row->admin_title ) ) {
4409
-				$translation_texts[] = stripslashes_deep( $row->admin_title );
4406
+	if (!empty($rows)) {
4407
+		foreach ($rows as $row) {
4408
+			if (!empty($row->admin_title)) {
4409
+				$translation_texts[] = stripslashes_deep($row->admin_title);
4410 4410
 			}
4411 4411
 
4412
-			if ( ! empty( $row->admin_desc ) ) {
4413
-				$translation_texts[] = stripslashes_deep( $row->admin_desc );
4412
+			if (!empty($row->admin_desc)) {
4413
+				$translation_texts[] = stripslashes_deep($row->admin_desc);
4414 4414
 			}
4415 4415
 
4416
-			if ( ! empty( $row->site_title ) ) {
4417
-				$translation_texts[] = stripslashes_deep( $row->site_title );
4416
+			if (!empty($row->site_title)) {
4417
+				$translation_texts[] = stripslashes_deep($row->site_title);
4418 4418
 			}
4419 4419
 
4420
-			if ( ! empty( $row->clabels ) ) {
4421
-				$translation_texts[] = stripslashes_deep( $row->clabels );
4420
+			if (!empty($row->clabels)) {
4421
+				$translation_texts[] = stripslashes_deep($row->clabels);
4422 4422
 			}
4423 4423
 
4424
-			if ( ! empty( $row->required_msg ) ) {
4425
-				$translation_texts[] = stripslashes_deep( $row->required_msg );
4424
+			if (!empty($row->required_msg)) {
4425
+				$translation_texts[] = stripslashes_deep($row->required_msg);
4426 4426
 			}
4427 4427
             
4428
-			if ( ! empty( $row->validation_msg ) ) {
4429
-				$translation_texts[] = stripslashes_deep( $row->validation_msg );
4428
+			if (!empty($row->validation_msg)) {
4429
+				$translation_texts[] = stripslashes_deep($row->validation_msg);
4430 4430
 			}
4431 4431
 
4432
-			if ( ! empty( $row->default_value ) ) {
4433
-				$translation_texts[] = stripslashes_deep( $row->default_value );
4432
+			if (!empty($row->default_value)) {
4433
+				$translation_texts[] = stripslashes_deep($row->default_value);
4434 4434
 			}
4435 4435
 
4436
-			if ( ! empty( $row->option_values ) ) {
4437
-				$option_values = geodir_string_values_to_options( stripslashes_deep( $row->option_values ) );
4436
+			if (!empty($row->option_values)) {
4437
+				$option_values = geodir_string_values_to_options(stripslashes_deep($row->option_values));
4438 4438
 
4439
-				if ( ! empty( $option_values ) ) {
4440
-					foreach ( $option_values as $option_value ) {
4441
-						if ( ! empty( $option_value['label'] ) ) {
4439
+				if (!empty($option_values)) {
4440
+					foreach ($option_values as $option_value) {
4441
+						if (!empty($option_value['label'])) {
4442 4442
 							$translation_texts[] = $option_value['label'];
4443 4443
 						}
4444 4444
 					}
@@ -4448,56 +4448,56 @@  discard block
 block discarded – undo
4448 4448
 	}
4449 4449
 
4450 4450
 	// Custom sorting fields table
4451
-	$sql  = "SELECT site_title, asc_title, desc_title FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE;
4452
-	$rows = $wpdb->get_results( $sql );
4451
+	$sql  = "SELECT site_title, asc_title, desc_title FROM ".GEODIR_CUSTOM_SORT_FIELDS_TABLE;
4452
+	$rows = $wpdb->get_results($sql);
4453 4453
 
4454
-	if ( ! empty( $rows ) ) {
4455
-		foreach ( $rows as $row ) {
4456
-			if ( ! empty( $row->site_title ) ) {
4457
-				$translation_texts[] = stripslashes_deep( $row->site_title );
4454
+	if (!empty($rows)) {
4455
+		foreach ($rows as $row) {
4456
+			if (!empty($row->site_title)) {
4457
+				$translation_texts[] = stripslashes_deep($row->site_title);
4458 4458
 			}
4459 4459
 
4460
-			if ( ! empty( $row->asc_title ) ) {
4461
-				$translation_texts[] = stripslashes_deep( $row->asc_title );
4460
+			if (!empty($row->asc_title)) {
4461
+				$translation_texts[] = stripslashes_deep($row->asc_title);
4462 4462
 			}
4463 4463
 
4464
-			if ( ! empty( $row->desc_title ) ) {
4465
-				$translation_texts[] = stripslashes_deep( $row->desc_title );
4464
+			if (!empty($row->desc_title)) {
4465
+				$translation_texts[] = stripslashes_deep($row->desc_title);
4466 4466
 			}
4467 4467
 		}
4468 4468
 	}
4469 4469
 
4470 4470
 	// Advance search filter fields table
4471
-	if ( defined( 'GEODIR_ADVANCE_SEARCH_TABLE' ) ) {
4472
-		$sql  = "SELECT field_site_name, front_search_title, first_search_text, last_search_text, field_desc FROM " . GEODIR_ADVANCE_SEARCH_TABLE;
4473
-		$rows = $wpdb->get_results( $sql );
4474
-
4475
-		if ( ! empty( $rows ) ) {
4476
-			foreach ( $rows as $row ) {
4477
-				if ( ! empty( $row->field_site_name ) ) {
4478
-					$translation_texts[] = stripslashes_deep( $row->field_site_name );
4471
+	if (defined('GEODIR_ADVANCE_SEARCH_TABLE')) {
4472
+		$sql  = "SELECT field_site_name, front_search_title, first_search_text, last_search_text, field_desc FROM ".GEODIR_ADVANCE_SEARCH_TABLE;
4473
+		$rows = $wpdb->get_results($sql);
4474
+
4475
+		if (!empty($rows)) {
4476
+			foreach ($rows as $row) {
4477
+				if (!empty($row->field_site_name)) {
4478
+					$translation_texts[] = stripslashes_deep($row->field_site_name);
4479 4479
 				}
4480 4480
 
4481
-				if ( ! empty( $row->front_search_title ) ) {
4482
-					$translation_texts[] = stripslashes_deep( $row->front_search_title );
4481
+				if (!empty($row->front_search_title)) {
4482
+					$translation_texts[] = stripslashes_deep($row->front_search_title);
4483 4483
 				}
4484 4484
 
4485
-				if ( ! empty( $row->first_search_text ) ) {
4486
-					$translation_texts[] = stripslashes_deep( $row->first_search_text );
4485
+				if (!empty($row->first_search_text)) {
4486
+					$translation_texts[] = stripslashes_deep($row->first_search_text);
4487 4487
 				}
4488 4488
 
4489
-				if ( ! empty( $row->last_search_text ) ) {
4490
-					$translation_texts[] = stripslashes_deep( $row->last_search_text );
4489
+				if (!empty($row->last_search_text)) {
4490
+					$translation_texts[] = stripslashes_deep($row->last_search_text);
4491 4491
 				}
4492 4492
 
4493
-				if ( ! empty( $row->field_desc ) ) {
4494
-					$translation_texts[] = stripslashes_deep( $row->field_desc );
4493
+				if (!empty($row->field_desc)) {
4494
+					$translation_texts[] = stripslashes_deep($row->field_desc);
4495 4495
 				}
4496 4496
 			}
4497 4497
 		}
4498 4498
 	}
4499 4499
 
4500
-	$translation_texts = ! empty( $translation_texts ) ? array_unique( $translation_texts ) : $translation_texts;
4500
+	$translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
4501 4501
 
4502 4502
 	return $translation_texts;
4503 4503
 }
@@ -4519,7 +4519,7 @@  discard block
 block discarded – undo
4519 4519
 	 *
4520 4520
 	 * @param array $geodir_allowed_mime_types and file extensions.
4521 4521
 	 */
4522
-	return apply_filters( 'geodir_allowed_mime_types', array(
4522
+	return apply_filters('geodir_allowed_mime_types', array(
4523 4523
 			'Image'       => array( // Image formats.
4524 4524
 				'jpg'  => 'image/jpeg',
4525 4525
 				'jpe'  => 'image/jpeg',
@@ -4588,18 +4588,18 @@  discard block
 block discarded – undo
4588 4588
  *
4589 4589
  * @return string User display name.
4590 4590
  */
4591
-function geodir_get_client_name( $user_id ) {
4591
+function geodir_get_client_name($user_id) {
4592 4592
 	$client_name = '';
4593 4593
 
4594
-	$user_data = get_userdata( $user_id );
4594
+	$user_data = get_userdata($user_id);
4595 4595
 
4596
-	if ( ! empty( $user_data ) ) {
4597
-		if ( isset( $user_data->display_name ) && trim( $user_data->display_name ) != '' ) {
4598
-			$client_name = trim( $user_data->display_name );
4599
-		} else if ( isset( $user_data->user_nicename ) && trim( $user_data->user_nicename ) != '' ) {
4600
-			$client_name = trim( $user_data->user_nicename );
4596
+	if (!empty($user_data)) {
4597
+		if (isset($user_data->display_name) && trim($user_data->display_name) != '') {
4598
+			$client_name = trim($user_data->display_name);
4599
+		} else if (isset($user_data->user_nicename) && trim($user_data->user_nicename) != '') {
4600
+			$client_name = trim($user_data->user_nicename);
4601 4601
 		} else {
4602
-			$client_name = trim( $user_data->user_login );
4602
+			$client_name = trim($user_data->user_login);
4603 4603
 		}
4604 4604
 	}
4605 4605
 
@@ -4607,17 +4607,17 @@  discard block
 block discarded – undo
4607 4607
 }
4608 4608
 
4609 4609
 
4610
-add_filter( 'wpseo_replacements', 'geodir_wpseo_replacements', 10, 1 );
4610
+add_filter('wpseo_replacements', 'geodir_wpseo_replacements', 10, 1);
4611 4611
 /*
4612 4612
  * Add location variables to wpseo replacements.
4613 4613
  *
4614 4614
  * @since 1.5.4
4615 4615
  */
4616
-function geodir_wpseo_replacements( $vars ) {
4616
+function geodir_wpseo_replacements($vars) {
4617 4617
 
4618 4618
 	// location variables
4619 4619
 	$gd_post_type   = geodir_get_current_posttype();
4620
-	$location_array = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
4620
+	$location_array = geodir_get_current_location_terms('query_vars', $gd_post_type);
4621 4621
 	/**
4622 4622
 	 * Filter the title variables location variables array
4623 4623
 	 *
@@ -4627,7 +4627,7 @@  discard block
 block discarded – undo
4627 4627
 	 * @param array $location_array The array of location variables.
4628 4628
 	 * @param array $vars           The page title variables.
4629 4629
 	 */
4630
-	$location_array  = apply_filters( 'geodir_filter_title_variables_location_arr_seo', $location_array, $vars );
4630
+	$location_array = apply_filters('geodir_filter_title_variables_location_arr_seo', $location_array, $vars);
4631 4631
 
4632 4632
 
4633 4633
 	$location_replace_vars = geodir_location_replace_vars($location_array, NULL, '');
@@ -4642,13 +4642,13 @@  discard block
 block discarded – undo
4642 4642
 	 * @param string $vars          The title with variables.
4643 4643
 	 * @param array $location_array The array of location variables.
4644 4644
 	 */
4645
-	return apply_filters( 'geodir_wpseo_replacements_vars', $vars, $location_array );
4645
+	return apply_filters('geodir_wpseo_replacements_vars', $vars, $location_array);
4646 4646
 }
4647 4647
 
4648 4648
 
4649
-add_filter( 'geodir_seo_meta_title', 'geodir_filter_title_variables', 10, 3 );
4650
-add_filter( 'geodir_seo_page_title', 'geodir_filter_title_variables', 10, 2 );
4651
-add_filter( 'geodir_seo_meta_description_pre', 'geodir_filter_title_variables', 10, 3 );
4649
+add_filter('geodir_seo_meta_title', 'geodir_filter_title_variables', 10, 3);
4650
+add_filter('geodir_seo_page_title', 'geodir_filter_title_variables', 10, 2);
4651
+add_filter('geodir_seo_meta_description_pre', 'geodir_filter_title_variables', 10, 3);
4652 4652
 
4653 4653
 /**
4654 4654
  * Filter the title variables.
@@ -4690,14 +4690,14 @@  discard block
 block discarded – undo
4690 4690
  *
4691 4691
  * @return string Title after filtered variables.
4692 4692
  */
4693
-function geodir_filter_title_variables( $title, $gd_page, $sep = '' ) {
4693
+function geodir_filter_title_variables($title, $gd_page, $sep = '') {
4694 4694
 	global $wp, $post;
4695 4695
 
4696
-	if ( ! $gd_page || ! $title ) {
4696
+	if (!$gd_page || !$title) {
4697 4697
 		return $title; // if no a GD page then bail.
4698 4698
 	}
4699 4699
 
4700
-	if ( $sep == '' ) {
4700
+	if ($sep == '') {
4701 4701
 		/**
4702 4702
 		 * Filter the page title separator.
4703 4703
 		 *
@@ -4706,100 +4706,100 @@  discard block
 block discarded – undo
4706 4706
 		 *
4707 4707
 		 * @param string $sep The separator, default: `|`.
4708 4708
 		 */
4709
-		$sep = apply_filters( 'geodir_page_title_separator', '|' );
4709
+		$sep = apply_filters('geodir_page_title_separator', '|');
4710 4710
 	}
4711 4711
 
4712
-	if ( strpos( $title, '%%title%%' ) !== false ) {
4713
-		$title = str_replace( "%%title%%", $post->post_title, $title );
4712
+	if (strpos($title, '%%title%%') !== false) {
4713
+		$title = str_replace("%%title%%", $post->post_title, $title);
4714 4714
 	}
4715 4715
 
4716
-	if ( strpos( $title, '%%sitename%%' ) !== false ) {
4717
-		$title = str_replace( "%%sitename%%", get_bloginfo( 'name' ), $title );
4716
+	if (strpos($title, '%%sitename%%') !== false) {
4717
+		$title = str_replace("%%sitename%%", get_bloginfo('name'), $title);
4718 4718
 	}
4719 4719
 
4720
-	if ( strpos( $title, '%%sitedesc%%' ) !== false ) {
4721
-		$title = str_replace( "%%sitedesc%%", get_bloginfo( 'description' ), $title );
4720
+	if (strpos($title, '%%sitedesc%%') !== false) {
4721
+		$title = str_replace("%%sitedesc%%", get_bloginfo('description'), $title);
4722 4722
 	}
4723 4723
 
4724
-	if ( strpos( $title, '%%excerpt%%' ) !== false ) {
4725
-		$title = str_replace( "%%excerpt%%", strip_tags( get_the_excerpt() ), $title );
4724
+	if (strpos($title, '%%excerpt%%') !== false) {
4725
+		$title = str_replace("%%excerpt%%", strip_tags(get_the_excerpt()), $title);
4726 4726
 	}
4727 4727
 
4728
-	if ( $gd_page == 'search' || $gd_page == 'author' ) {
4729
-		$post_type = isset( $_REQUEST['stype'] ) ? sanitize_text_field( $_REQUEST['stype'] ) : '';
4730
-	} else if ( $gd_page == 'add-listing' ) {
4731
-		$post_type = ( isset( $_REQUEST['listing_type'] ) ) ? sanitize_text_field( $_REQUEST['listing_type'] ) : '';
4732
-		$post_type = ! $post_type && ! empty( $_REQUEST['pid'] ) ? get_post_type( (int) $_REQUEST['pid'] ) : $post_type;
4733
-	} else if ( isset( $post->post_type ) && $post->post_type && in_array( $post->post_type, geodir_get_posttypes() ) ) {
4728
+	if ($gd_page == 'search' || $gd_page == 'author') {
4729
+		$post_type = isset($_REQUEST['stype']) ? sanitize_text_field($_REQUEST['stype']) : '';
4730
+	} else if ($gd_page == 'add-listing') {
4731
+		$post_type = (isset($_REQUEST['listing_type'])) ? sanitize_text_field($_REQUEST['listing_type']) : '';
4732
+		$post_type = !$post_type && !empty($_REQUEST['pid']) ? get_post_type((int) $_REQUEST['pid']) : $post_type;
4733
+	} else if (isset($post->post_type) && $post->post_type && in_array($post->post_type, geodir_get_posttypes())) {
4734 4734
 		$post_type = $post->post_type;
4735 4735
 	} else {
4736
-		$post_type = get_query_var( 'post_type' );
4736
+		$post_type = get_query_var('post_type');
4737 4737
 	}
4738 4738
 
4739
-	if ( strpos( $title, '%%pt_single%%' ) !== false ) {
4739
+	if (strpos($title, '%%pt_single%%') !== false) {
4740 4740
 		$singular_name = '';
4741
-		if ( $post_type && $singular_name = get_post_type_singular_label( $post_type ) ) {
4742
-			$singular_name = __( $singular_name, 'geodirectory' );
4741
+		if ($post_type && $singular_name = get_post_type_singular_label($post_type)) {
4742
+			$singular_name = __($singular_name, 'geodirectory');
4743 4743
 		}
4744 4744
 
4745
-		$title = str_replace( "%%pt_single%%", $singular_name, $title );
4745
+		$title = str_replace("%%pt_single%%", $singular_name, $title);
4746 4746
 	}
4747 4747
 
4748
-	if ( strpos( $title, '%%pt_plural%%' ) !== false ) {
4748
+	if (strpos($title, '%%pt_plural%%') !== false) {
4749 4749
 		$plural_name = '';
4750
-		if ( $post_type && $plural_name = get_post_type_plural_label( $post_type ) ) {
4751
-			$plural_name = __( $plural_name, 'geodirectory' );
4750
+		if ($post_type && $plural_name = get_post_type_plural_label($post_type)) {
4751
+			$plural_name = __($plural_name, 'geodirectory');
4752 4752
 		}
4753 4753
 
4754
-		$title = str_replace( "%%pt_plural%%", $plural_name, $title );
4754
+		$title = str_replace("%%pt_plural%%", $plural_name, $title);
4755 4755
 	}
4756 4756
 
4757
-	if ( strpos( $title, '%%category%%' ) !== false ) {
4757
+	if (strpos($title, '%%category%%') !== false) {
4758 4758
 		$cat_name = '';
4759 4759
 
4760
-		if ( $gd_page == 'detail' ) {
4761
-			if ( $post->default_category ) {
4762
-				$cat      = get_term( $post->default_category, $post->post_type . 'category' );
4763
-				$cat_name = ( isset( $cat->name ) ) ? $cat->name : '';
4760
+		if ($gd_page == 'detail') {
4761
+			if ($post->default_category) {
4762
+				$cat      = get_term($post->default_category, $post->post_type.'category');
4763
+				$cat_name = (isset($cat->name)) ? $cat->name : '';
4764 4764
 			}
4765
-		} else if ( $gd_page == 'listing' ) {
4765
+		} else if ($gd_page == 'listing') {
4766 4766
 			$queried_object = get_queried_object();
4767
-			if ( isset( $queried_object->name ) ) {
4767
+			if (isset($queried_object->name)) {
4768 4768
 				$cat_name = $queried_object->name;
4769 4769
 			}
4770 4770
 		}
4771
-		$title = str_replace( "%%category%%", $cat_name, $title );
4771
+		$title = str_replace("%%category%%", $cat_name, $title);
4772 4772
 	}
4773 4773
 
4774
-	if ( strpos( $title, '%%tag%%' ) !== false ) {
4774
+	if (strpos($title, '%%tag%%') !== false) {
4775 4775
 		$cat_name = '';
4776 4776
 
4777
-		if ( $gd_page == 'detail' ) {
4778
-			if ( $post->default_category ) {
4779
-				$cat      = get_term( $post->default_category, $post->post_type . 'category' );
4780
-				$cat_name = ( isset( $cat->name ) ) ? $cat->name : '';
4777
+		if ($gd_page == 'detail') {
4778
+			if ($post->default_category) {
4779
+				$cat      = get_term($post->default_category, $post->post_type.'category');
4780
+				$cat_name = (isset($cat->name)) ? $cat->name : '';
4781 4781
 			}
4782
-		} else if ( $gd_page == 'listing' ) {
4782
+		} else if ($gd_page == 'listing') {
4783 4783
 			$queried_object = get_queried_object();
4784
-			if ( isset( $queried_object->name ) ) {
4784
+			if (isset($queried_object->name)) {
4785 4785
 				$cat_name = $queried_object->name;
4786 4786
 			}
4787 4787
 		}
4788
-		$title = str_replace( "%%tag%%", $cat_name, $title );
4788
+		$title = str_replace("%%tag%%", $cat_name, $title);
4789 4789
 	}
4790 4790
 
4791
-	if ( strpos( $title, '%%id%%' ) !== false ) {
4792
-		$ID    = ( isset( $post->ID ) ) ? $post->ID : '';
4793
-		$title = str_replace( "%%id%%", $ID, $title );
4791
+	if (strpos($title, '%%id%%') !== false) {
4792
+		$ID    = (isset($post->ID)) ? $post->ID : '';
4793
+		$title = str_replace("%%id%%", $ID, $title);
4794 4794
 	}
4795 4795
 
4796
-	if ( strpos( $title, '%%sep%%' ) !== false ) {
4797
-		$title = str_replace( "%%sep%%", $sep, $title );
4796
+	if (strpos($title, '%%sep%%') !== false) {
4797
+		$title = str_replace("%%sep%%", $sep, $title);
4798 4798
 	}
4799 4799
 
4800 4800
 	// location variables
4801 4801
 	$gd_post_type   = geodir_get_current_posttype();
4802
-	$location_array = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
4802
+	$location_array = geodir_get_current_location_terms('query_vars', $gd_post_type);
4803 4803
 	
4804 4804
 	/**
4805 4805
 	 * Filter the title variables location variables array
@@ -4812,20 +4812,20 @@  discard block
 block discarded – undo
4812 4812
 	 * @param string $gd_page       The page being filtered.
4813 4813
 	 * @param string $sep           The separator, default: `|`.
4814 4814
 	 */
4815
-	$location_array  = apply_filters( 'geodir_filter_title_variables_location_arr', $location_array, $title, $gd_page, $sep );
4815
+	$location_array = apply_filters('geodir_filter_title_variables_location_arr', $location_array, $title, $gd_page, $sep);
4816 4816
 	
4817
-	if ( $gd_page == 'location' && get_query_var( 'gd_country_full' ) ) {
4818
-		if ( get_query_var( 'gd_country_full' ) ) {
4819
-			$location_array['gd_country'] = get_query_var( 'gd_country_full' );
4817
+	if ($gd_page == 'location' && get_query_var('gd_country_full')) {
4818
+		if (get_query_var('gd_country_full')) {
4819
+			$location_array['gd_country'] = get_query_var('gd_country_full');
4820 4820
 		}
4821
-		if ( get_query_var( 'gd_region_full' ) ) {
4822
-			$location_array['gd_region'] = get_query_var( 'gd_region_full' );
4821
+		if (get_query_var('gd_region_full')) {
4822
+			$location_array['gd_region'] = get_query_var('gd_region_full');
4823 4823
 		}
4824
-		if ( get_query_var( 'gd_city_full' ) ) {
4825
-			$location_array['gd_city'] = get_query_var( 'gd_city_full' );
4824
+		if (get_query_var('gd_city_full')) {
4825
+			$location_array['gd_city'] = get_query_var('gd_city_full');
4826 4826
 		}
4827
-		if ( get_query_var( 'gd_neighbourhood_full' ) ) {
4828
-			$location_array['gd_neighbourhood'] = get_query_var( 'gd_neighbourhood_full' );
4827
+		if (get_query_var('gd_neighbourhood_full')) {
4828
+			$location_array['gd_neighbourhood'] = get_query_var('gd_neighbourhood_full');
4829 4829
 		}
4830 4830
 	}
4831 4831
 	
@@ -4840,57 +4840,57 @@  discard block
 block discarded – undo
4840 4840
 	 * @param string $gd_page       The page being filtered.
4841 4841
 	 * @param string $sep           The separator, default: `|`.
4842 4842
 	 */
4843
-	$title = apply_filters( 'geodir_replace_location_variables', $title, $location_array, $gd_page, $sep );
4843
+	$title = apply_filters('geodir_replace_location_variables', $title, $location_array, $gd_page, $sep);
4844 4844
 	
4845
-	if ( strpos( $title, '%%search_term%%' ) !== false ) {
4845
+	if (strpos($title, '%%search_term%%') !== false) {
4846 4846
 		$search_term = '';
4847
-		if ( isset( $_REQUEST['s'] ) ) {
4848
-			$search_term = esc_attr( $_REQUEST['s'] );
4847
+		if (isset($_REQUEST['s'])) {
4848
+			$search_term = esc_attr($_REQUEST['s']);
4849 4849
 		}
4850
-		$title = str_replace( "%%search_term%%", $search_term, $title );
4850
+		$title = str_replace("%%search_term%%", $search_term, $title);
4851 4851
 	}
4852 4852
 
4853
-	if ( strpos( $title, '%%search_near%%' ) !== false ) {
4853
+	if (strpos($title, '%%search_near%%') !== false) {
4854 4854
 		$search_term = '';
4855
-		if ( isset( $_REQUEST['snear'] ) ) {
4856
-			$search_term = esc_attr( $_REQUEST['snear'] );
4855
+		if (isset($_REQUEST['snear'])) {
4856
+			$search_term = esc_attr($_REQUEST['snear']);
4857 4857
 		}
4858
-		$title = str_replace( "%%search_near%%", $search_term, $title );
4858
+		$title = str_replace("%%search_near%%", $search_term, $title);
4859 4859
 	}
4860 4860
 
4861
-	if ( strpos( $title, '%%name%%' ) !== false ) {
4862
-		if ( is_author() ) {
4863
-			$curauth     = ( get_query_var( 'author_name' ) ) ? get_user_by( 'slug', get_query_var( 'author_name' ) ) : get_userdata( get_query_var( 'author' ) );
4861
+	if (strpos($title, '%%name%%') !== false) {
4862
+		if (is_author()) {
4863
+			$curauth     = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
4864 4864
 			$author_name = $curauth->display_name;
4865 4865
 		} else {
4866 4866
 			$author_name = get_the_author();
4867 4867
 		}
4868
-		if ( ! $author_name || $author_name === '' ) {
4868
+		if (!$author_name || $author_name === '') {
4869 4869
 			$queried_object = get_queried_object();
4870 4870
 
4871
-			if ( isset( $queried_object->data->user_nicename ) ) {
4871
+			if (isset($queried_object->data->user_nicename)) {
4872 4872
 				$author_name = $queried_object->data->display_name;
4873 4873
 			}
4874 4874
 		}
4875
-		$title = str_replace( "%%name%%", $author_name, $title );
4875
+		$title = str_replace("%%name%%", $author_name, $title);
4876 4876
 	}
4877 4877
 
4878
-	if ( strpos( $title, '%%page%%' ) !== false ) {
4879
-		$page  = geodir_title_meta_page( $sep );
4880
-		$title = str_replace( "%%page%%", $page, $title );
4878
+	if (strpos($title, '%%page%%') !== false) {
4879
+		$page  = geodir_title_meta_page($sep);
4880
+		$title = str_replace("%%page%%", $page, $title);
4881 4881
 	}
4882
-	if ( strpos( $title, '%%pagenumber%%' ) !== false ) {
4882
+	if (strpos($title, '%%pagenumber%%') !== false) {
4883 4883
 		$pagenumber = geodir_title_meta_pagenumber();
4884
-		$title      = str_replace( "%%pagenumber%%", $pagenumber, $title );
4884
+		$title      = str_replace("%%pagenumber%%", $pagenumber, $title);
4885 4885
 	}
4886
-	if ( strpos( $title, '%%pagetotal%%' ) !== false ) {
4886
+	if (strpos($title, '%%pagetotal%%') !== false) {
4887 4887
 		$pagetotal = geodir_title_meta_pagetotal();
4888
-		$title     = str_replace( "%%pagetotal%%", $pagetotal, $title );
4888
+		$title     = str_replace("%%pagetotal%%", $pagetotal, $title);
4889 4889
 	}
4890 4890
 
4891
-	$title = wptexturize( $title );
4892
-	$title = convert_chars( $title );
4893
-	$title = esc_html( $title );
4891
+	$title = wptexturize($title);
4892
+	$title = convert_chars($title);
4893
+	$title = esc_html($title);
4894 4894
 
4895 4895
 	/**
4896 4896
 	 * Filter the title variables after standard ones have been filtered.
@@ -4904,7 +4904,7 @@  discard block
 block discarded – undo
4904 4904
 	 * @param string $sep           The separator, default: `|`.
4905 4905
 	 */
4906 4906
 
4907
-	return apply_filters( 'geodir_filter_title_variables_vars', $title, $location_array, $gd_page, $sep );
4907
+	return apply_filters('geodir_filter_title_variables_vars', $title, $location_array, $gd_page, $sep);
4908 4908
 }
4909 4909
 
4910 4910
 /**
@@ -4917,82 +4917,82 @@  discard block
 block discarded – undo
4917 4917
  *
4918 4918
  * @return array Translation texts.
4919 4919
  */
4920
-function geodir_load_cpt_text_translation( $translation_texts = array() ) {
4921
-	$gd_post_types = geodir_get_posttypes( 'array' );
4920
+function geodir_load_cpt_text_translation($translation_texts = array()) {
4921
+	$gd_post_types = geodir_get_posttypes('array');
4922 4922
 
4923
-	if ( ! empty( $gd_post_types ) ) {
4924
-		foreach ( $gd_post_types as $post_type => $cpt_info ) {
4925
-			$labels      = isset( $cpt_info['labels'] ) ? $cpt_info['labels'] : '';
4926
-			$description = isset( $cpt_info['description'] ) ? $cpt_info['description'] : '';
4927
-			$seo         = isset( $cpt_info['seo'] ) ? $cpt_info['seo'] : '';
4923
+	if (!empty($gd_post_types)) {
4924
+		foreach ($gd_post_types as $post_type => $cpt_info) {
4925
+			$labels      = isset($cpt_info['labels']) ? $cpt_info['labels'] : '';
4926
+			$description = isset($cpt_info['description']) ? $cpt_info['description'] : '';
4927
+			$seo         = isset($cpt_info['seo']) ? $cpt_info['seo'] : '';
4928 4928
 
4929
-			if ( ! empty( $labels ) ) {
4930
-				if ( $labels['name'] != '' && ! in_array( $labels['name'], $translation_texts ) ) {
4929
+			if (!empty($labels)) {
4930
+				if ($labels['name'] != '' && !in_array($labels['name'], $translation_texts)) {
4931 4931
 					$translation_texts[] = $labels['name'];
4932 4932
 				}
4933
-				if ( $labels['singular_name'] != '' && ! in_array( $labels['singular_name'], $translation_texts ) ) {
4933
+				if ($labels['singular_name'] != '' && !in_array($labels['singular_name'], $translation_texts)) {
4934 4934
 					$translation_texts[] = $labels['singular_name'];
4935 4935
 				}
4936
-				if ( $labels['add_new'] != '' && ! in_array( $labels['add_new'], $translation_texts ) ) {
4936
+				if ($labels['add_new'] != '' && !in_array($labels['add_new'], $translation_texts)) {
4937 4937
 					$translation_texts[] = $labels['add_new'];
4938 4938
 				}
4939
-				if ( $labels['add_new_item'] != '' && ! in_array( $labels['add_new_item'], $translation_texts ) ) {
4939
+				if ($labels['add_new_item'] != '' && !in_array($labels['add_new_item'], $translation_texts)) {
4940 4940
 					$translation_texts[] = $labels['add_new_item'];
4941 4941
 				}
4942
-				if ( $labels['edit_item'] != '' && ! in_array( $labels['edit_item'], $translation_texts ) ) {
4942
+				if ($labels['edit_item'] != '' && !in_array($labels['edit_item'], $translation_texts)) {
4943 4943
 					$translation_texts[] = $labels['edit_item'];
4944 4944
 				}
4945
-				if ( $labels['new_item'] != '' && ! in_array( $labels['new_item'], $translation_texts ) ) {
4945
+				if ($labels['new_item'] != '' && !in_array($labels['new_item'], $translation_texts)) {
4946 4946
 					$translation_texts[] = $labels['new_item'];
4947 4947
 				}
4948
-				if ( $labels['view_item'] != '' && ! in_array( $labels['view_item'], $translation_texts ) ) {
4948
+				if ($labels['view_item'] != '' && !in_array($labels['view_item'], $translation_texts)) {
4949 4949
 					$translation_texts[] = $labels['view_item'];
4950 4950
 				}
4951
-				if ( $labels['search_items'] != '' && ! in_array( $labels['search_items'], $translation_texts ) ) {
4951
+				if ($labels['search_items'] != '' && !in_array($labels['search_items'], $translation_texts)) {
4952 4952
 					$translation_texts[] = $labels['search_items'];
4953 4953
 				}
4954
-				if ( $labels['not_found'] != '' && ! in_array( $labels['not_found'], $translation_texts ) ) {
4954
+				if ($labels['not_found'] != '' && !in_array($labels['not_found'], $translation_texts)) {
4955 4955
 					$translation_texts[] = $labels['not_found'];
4956 4956
 				}
4957
-				if ( $labels['not_found_in_trash'] != '' && ! in_array( $labels['not_found_in_trash'], $translation_texts ) ) {
4957
+				if ($labels['not_found_in_trash'] != '' && !in_array($labels['not_found_in_trash'], $translation_texts)) {
4958 4958
 					$translation_texts[] = $labels['not_found_in_trash'];
4959 4959
 				}
4960
-				if ( isset( $labels['label_post_profile'] ) && $labels['label_post_profile'] != '' && ! in_array( $labels['label_post_profile'], $translation_texts ) ) {
4960
+				if (isset($labels['label_post_profile']) && $labels['label_post_profile'] != '' && !in_array($labels['label_post_profile'], $translation_texts)) {
4961 4961
 					$translation_texts[] = $labels['label_post_profile'];
4962 4962
 				}
4963
-				if ( isset( $labels['label_post_info'] ) && $labels['label_post_info'] != '' && ! in_array( $labels['label_post_info'], $translation_texts ) ) {
4963
+				if (isset($labels['label_post_info']) && $labels['label_post_info'] != '' && !in_array($labels['label_post_info'], $translation_texts)) {
4964 4964
 					$translation_texts[] = $labels['label_post_info'];
4965 4965
 				}
4966
-				if ( isset( $labels['label_post_images'] ) && $labels['label_post_images'] != '' && ! in_array( $labels['label_post_images'], $translation_texts ) ) {
4966
+				if (isset($labels['label_post_images']) && $labels['label_post_images'] != '' && !in_array($labels['label_post_images'], $translation_texts)) {
4967 4967
 					$translation_texts[] = $labels['label_post_images'];
4968 4968
 				}
4969
-				if ( isset( $labels['label_post_map'] ) && $labels['label_post_map'] != '' && ! in_array( $labels['label_post_map'], $translation_texts ) ) {
4969
+				if (isset($labels['label_post_map']) && $labels['label_post_map'] != '' && !in_array($labels['label_post_map'], $translation_texts)) {
4970 4970
 					$translation_texts[] = $labels['label_post_map'];
4971 4971
 				}
4972
-				if ( isset( $labels['label_reviews'] ) && $labels['label_reviews'] != '' && ! in_array( $labels['label_reviews'], $translation_texts ) ) {
4972
+				if (isset($labels['label_reviews']) && $labels['label_reviews'] != '' && !in_array($labels['label_reviews'], $translation_texts)) {
4973 4973
 					$translation_texts[] = $labels['label_reviews'];
4974 4974
 				}
4975
-				if ( isset( $labels['label_related_listing'] ) && $labels['label_related_listing'] != '' && ! in_array( $labels['label_related_listing'], $translation_texts ) ) {
4975
+				if (isset($labels['label_related_listing']) && $labels['label_related_listing'] != '' && !in_array($labels['label_related_listing'], $translation_texts)) {
4976 4976
 					$translation_texts[] = $labels['label_related_listing'];
4977 4977
 				}
4978 4978
 			}
4979 4979
 
4980
-			if ( $description != '' && ! in_array( $description, $translation_texts ) ) {
4981
-				$translation_texts[] = normalize_whitespace( $description );
4980
+			if ($description != '' && !in_array($description, $translation_texts)) {
4981
+				$translation_texts[] = normalize_whitespace($description);
4982 4982
 			}
4983 4983
 
4984
-			if ( ! empty( $seo ) ) {
4985
-				if ( isset( $seo['meta_keyword'] ) && $seo['meta_keyword'] != '' && ! in_array( $seo['meta_keyword'], $translation_texts ) ) {
4986
-					$translation_texts[] = normalize_whitespace( $seo['meta_keyword'] );
4984
+			if (!empty($seo)) {
4985
+				if (isset($seo['meta_keyword']) && $seo['meta_keyword'] != '' && !in_array($seo['meta_keyword'], $translation_texts)) {
4986
+					$translation_texts[] = normalize_whitespace($seo['meta_keyword']);
4987 4987
 				}
4988 4988
 
4989
-				if ( isset( $seo['meta_description'] ) && $seo['meta_description'] != '' && ! in_array( $seo['meta_description'], $translation_texts ) ) {
4990
-					$translation_texts[] = normalize_whitespace( $seo['meta_description'] );
4989
+				if (isset($seo['meta_description']) && $seo['meta_description'] != '' && !in_array($seo['meta_description'], $translation_texts)) {
4990
+					$translation_texts[] = normalize_whitespace($seo['meta_description']);
4991 4991
 				}
4992 4992
 			}
4993 4993
 		}
4994 4994
 	}
4995
-	$translation_texts = ! empty( $translation_texts ) ? array_unique( $translation_texts ) : $translation_texts;
4995
+	$translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
4996 4996
 
4997 4997
 	return $translation_texts;
4998 4998
 }
@@ -5007,27 +5007,27 @@  discard block
 block discarded – undo
5007 5007
  *
5008 5008
  * @return array Location terms.
5009 5009
  */
5010
-function geodir_remove_location_terms( $location_terms = array() ) {
5011
-	$location_manager = defined( 'POST_LOCATION_TABLE' ) ? true : false;
5010
+function geodir_remove_location_terms($location_terms = array()) {
5011
+	$location_manager = defined('POST_LOCATION_TABLE') ? true : false;
5012 5012
 
5013
-	if ( ! empty( $location_terms ) && $location_manager ) {
5014
-		$hide_country_part = get_option( 'geodir_location_hide_country_part' );
5015
-		$hide_region_part  = get_option( 'geodir_location_hide_region_part' );
5013
+	if (!empty($location_terms) && $location_manager) {
5014
+		$hide_country_part = get_option('geodir_location_hide_country_part');
5015
+		$hide_region_part  = get_option('geodir_location_hide_region_part');
5016 5016
 
5017
-		if ( $hide_region_part && $hide_country_part ) {
5018
-			if ( isset( $location_terms['gd_country'] ) ) {
5019
-				unset( $location_terms['gd_country'] );
5017
+		if ($hide_region_part && $hide_country_part) {
5018
+			if (isset($location_terms['gd_country'])) {
5019
+				unset($location_terms['gd_country']);
5020 5020
 			}
5021
-			if ( isset( $location_terms['gd_region'] ) ) {
5022
-				unset( $location_terms['gd_region'] );
5021
+			if (isset($location_terms['gd_region'])) {
5022
+				unset($location_terms['gd_region']);
5023 5023
 			}
5024
-		} else if ( $hide_region_part && ! $hide_country_part ) {
5025
-			if ( isset( $location_terms['gd_region'] ) ) {
5026
-				unset( $location_terms['gd_region'] );
5024
+		} else if ($hide_region_part && !$hide_country_part) {
5025
+			if (isset($location_terms['gd_region'])) {
5026
+				unset($location_terms['gd_region']);
5027 5027
 			}
5028
-		} else if ( ! $hide_region_part && $hide_country_part ) {
5029
-			if ( isset( $location_terms['gd_country'] ) ) {
5030
-				unset( $location_terms['gd_country'] );
5028
+		} else if (!$hide_region_part && $hide_country_part) {
5029
+			if (isset($location_terms['gd_country'])) {
5030
+				unset($location_terms['gd_country']);
5031 5031
 			}
5032 5032
 		}
5033 5033
 	}
@@ -5038,7 +5038,7 @@  discard block
 block discarded – undo
5038 5038
 	 * @since 1.6.22
5039 5039
 	 * @param array $location_terms The array of location terms.
5040 5040
 	 */
5041
-	return apply_filters('geodir_remove_location_terms',$location_terms);
5041
+	return apply_filters('geodir_remove_location_terms', $location_terms);
5042 5042
 }
5043 5043
 
5044 5044
 /**
@@ -5055,32 +5055,32 @@  discard block
 block discarded – undo
5055 5055
  * @param WP_Post $post Post object.
5056 5056
  * @param bool $update  Whether this is an existing listing being updated or not.
5057 5057
  */
5058
-function geodir_on_wp_insert_post( $post_ID, $post, $update ) {
5058
+function geodir_on_wp_insert_post($post_ID, $post, $update) {
5059 5059
 	global $gd_set_listing_edited;
5060 5060
 	
5061
-	if ( ! $update ) {
5061
+	if (!$update) {
5062 5062
 		return;
5063 5063
 	}
5064 5064
 
5065
-	$action      = isset( $_REQUEST['action'] ) ? sanitize_text_field( $_REQUEST['action'] ) : '';
5066
-	$is_admin    = is_admin() && ( ! defined( 'DOING_AJAX' ) || ( defined( 'DOING_AJAX' ) && ! DOING_AJAX ) ) ? true : false;
5065
+	$action      = isset($_REQUEST['action']) ? sanitize_text_field($_REQUEST['action']) : '';
5066
+	$is_admin    = is_admin() && (!defined('DOING_AJAX') || (defined('DOING_AJAX') && !DOING_AJAX)) ? true : false;
5067 5067
 	$inline_save = $action == 'inline-save' ? true : false;
5068 5068
 
5069
-	if ( empty( $post->post_type ) || $is_admin || $inline_save || ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) ) {
5069
+	if (empty($post->post_type) || $is_admin || $inline_save || (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)) {
5070 5070
 		return;
5071 5071
 	}
5072 5072
 
5073
-	if ( $action != '' && in_array( $action, array( 'geodir_import_export' ) ) ) {
5073
+	if ($action != '' && in_array($action, array('geodir_import_export'))) {
5074 5074
 		return;
5075 5075
 	}
5076 5076
 
5077 5077
 	$user_id = (int) get_current_user_id();
5078 5078
 
5079
-	if ( $user_id > 0 && get_option( 'geodir_notify_post_edited' ) && ! wp_is_post_revision( $post_ID ) && in_array( $post->post_type, geodir_get_posttypes() ) ) {
5080
-		$author_id = ! empty( $post->post_author ) ? $post->post_author : 0;
5079
+	if ($user_id > 0 && get_option('geodir_notify_post_edited') && !wp_is_post_revision($post_ID) && in_array($post->post_type, geodir_get_posttypes())) {
5080
+		$author_id = !empty($post->post_author) ? $post->post_author : 0;
5081 5081
 
5082
-		if ( $user_id == $author_id && ! is_super_admin() && empty( $gd_set_listing_edited[$post_ID] ) ) {
5083
-			if ( !empty( $gd_set_listing_edited ) ) {
5082
+		if ($user_id == $author_id && !is_super_admin() && empty($gd_set_listing_edited[$post_ID])) {
5083
+			if (!empty($gd_set_listing_edited)) {
5084 5084
 				$gd_set_listing_edited = array();
5085 5085
 			}
5086 5086
 			$gd_set_listing_edited[$post_ID] = true;
@@ -5098,14 +5098,14 @@  discard block
 block discarded – undo
5098 5098
  *
5099 5099
  * @return string|null The current page start & end numbering.
5100 5100
  */
5101
-function geodir_title_meta_page( $sep ) {
5101
+function geodir_title_meta_page($sep) {
5102 5102
 	$replacement = null;
5103 5103
 
5104
-	$max = geodir_title_meta_pagenumbering( 'max' );
5105
-	$nr  = geodir_title_meta_pagenumbering( 'nr' );
5104
+	$max = geodir_title_meta_pagenumbering('max');
5105
+	$nr  = geodir_title_meta_pagenumbering('nr');
5106 5106
 
5107
-	if ( $max > 1 && $nr > 1 ) {
5108
-		$replacement = sprintf( $sep . ' ' . __( 'Page %1$d of %2$d', 'geodirectory' ), $nr, $max );
5107
+	if ($max > 1 && $nr > 1) {
5108
+		$replacement = sprintf($sep.' '.__('Page %1$d of %2$d', 'geodirectory'), $nr, $max);
5109 5109
 	}
5110 5110
 
5111 5111
 	return $replacement;
@@ -5122,8 +5122,8 @@  discard block
 block discarded – undo
5122 5122
 function geodir_title_meta_pagenumber() {
5123 5123
 	$replacement = null;
5124 5124
 
5125
-	$nr = geodir_title_meta_pagenumbering( 'nr' );
5126
-	if ( isset( $nr ) && $nr > 0 ) {
5125
+	$nr = geodir_title_meta_pagenumbering('nr');
5126
+	if (isset($nr) && $nr > 0) {
5127 5127
 		$replacement = (string) $nr;
5128 5128
 	}
5129 5129
 
@@ -5141,8 +5141,8 @@  discard block
 block discarded – undo
5141 5141
 function geodir_title_meta_pagetotal() {
5142 5142
 	$replacement = null;
5143 5143
 
5144
-	$max = geodir_title_meta_pagenumbering( 'max' );
5145
-	if ( isset( $max ) && $max > 0 ) {
5144
+	$max = geodir_title_meta_pagenumbering('max');
5145
+	if (isset($max) && $max > 0) {
5146 5146
 		$replacement = (string) $max;
5147 5147
 	}
5148 5148
 
@@ -5162,36 +5162,36 @@  discard block
 block discarded – undo
5162 5162
  *
5163 5163
  * @return int|null The current page numbering.
5164 5164
  */
5165
-function geodir_title_meta_pagenumbering( $request = 'nr' ) {
5165
+function geodir_title_meta_pagenumbering($request = 'nr') {
5166 5166
 	global $wp_query, $post;
5167 5167
 	$max_num_pages = null;
5168 5168
 	$page_number   = null;
5169 5169
 
5170 5170
 	$max_num_pages = 1;
5171 5171
 
5172
-	if ( ! is_singular() ) {
5173
-		$page_number = get_query_var( 'paged' );
5174
-		if ( $page_number === 0 || $page_number === '' ) {
5172
+	if (!is_singular()) {
5173
+		$page_number = get_query_var('paged');
5174
+		if ($page_number === 0 || $page_number === '') {
5175 5175
 			$page_number = 1;
5176 5176
 		}
5177 5177
 
5178
-		if ( isset( $wp_query->max_num_pages ) && ( $wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0 ) ) {
5178
+		if (isset($wp_query->max_num_pages) && ($wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0)) {
5179 5179
 			$max_num_pages = $wp_query->max_num_pages;
5180 5180
 		}
5181 5181
 	} else {
5182
-		$page_number = get_query_var( 'page' );
5183
-		if ( $page_number === 0 || $page_number === '' ) {
5182
+		$page_number = get_query_var('page');
5183
+		if ($page_number === 0 || $page_number === '') {
5184 5184
 			$page_number = 1;
5185 5185
 		}
5186 5186
 
5187
-		if ( isset( $post->post_content ) ) {
5188
-			$max_num_pages = ( substr_count( $post->post_content, '<!--nextpage-->' ) + 1 );
5187
+		if (isset($post->post_content)) {
5188
+			$max_num_pages = (substr_count($post->post_content, '<!--nextpage-->') + 1);
5189 5189
 		}
5190 5190
 	}
5191 5191
 
5192 5192
 	$return = null;
5193 5193
 
5194
-	switch ( $request ) {
5194
+	switch ($request) {
5195 5195
 		case 'nr':
5196 5196
 			$return = $page_number;
5197 5197
 			break;
@@ -5212,14 +5212,14 @@  discard block
 block discarded – undo
5212 5212
  *
5213 5213
  * @return array Terms.
5214 5214
  */
5215
-function geodir_filter_empty_terms( $terms ) {
5216
-	if ( empty( $terms ) ) {
5215
+function geodir_filter_empty_terms($terms) {
5216
+	if (empty($terms)) {
5217 5217
 		return $terms;
5218 5218
 	}
5219 5219
 
5220 5220
 	$return = array();
5221
-	foreach ( $terms as $term ) {
5222
-		if ( isset( $term->count ) && $term->count > 0 ) {
5221
+	foreach ($terms as $term) {
5222
+		if (isset($term->count) && $term->count > 0) {
5223 5223
 			$return[] = $term;
5224 5224
 		} else {
5225 5225
 			/**
@@ -5230,7 +5230,7 @@  discard block
 block discarded – undo
5230 5230
 			 * @param array $return The array of terms to return.
5231 5231
 			 * @param object $term  The term object.
5232 5232
 			 */
5233
-			$return = apply_filters( 'geodir_filter_empty_terms_filter', $return, $term );
5233
+			$return = apply_filters('geodir_filter_empty_terms_filter', $return, $term);
5234 5234
 		}
5235 5235
 	}
5236 5236
 
@@ -5247,15 +5247,15 @@  discard block
 block discarded – undo
5247 5247
  *
5248 5248
  * @return array
5249 5249
  */
5250
-function geodir_remove_hentry( $class ) {
5251
-	if ( geodir_is_page( 'detail' ) ) {
5252
-		$class = array_diff( $class, array( 'hentry' ) );
5250
+function geodir_remove_hentry($class) {
5251
+	if (geodir_is_page('detail')) {
5252
+		$class = array_diff($class, array('hentry'));
5253 5253
 	}
5254 5254
 
5255 5255
 	return $class;
5256 5256
 }
5257 5257
 
5258
-add_filter( 'post_class', 'geodir_remove_hentry' );
5258
+add_filter('post_class', 'geodir_remove_hentry');
5259 5259
 
5260 5260
 /**
5261 5261
  * Registers a individual text string for WPML translation.
@@ -5267,8 +5267,8 @@  discard block
 block discarded – undo
5267 5267
  * @param string $domain The plugin domain. Default geodirectory.
5268 5268
  * @param string $name The name of the string which helps to know what's being translated.
5269 5269
  */
5270
-function geodir_wpml_register_string( $string, $domain = 'geodirectory', $name = '' ) {
5271
-    do_action( 'wpml_register_single_string', $domain, $name, $string );
5270
+function geodir_wpml_register_string($string, $domain = 'geodirectory', $name = '') {
5271
+    do_action('wpml_register_single_string', $domain, $name, $string);
5272 5272
 }
5273 5273
 
5274 5274
 /**
@@ -5283,8 +5283,8 @@  discard block
 block discarded – undo
5283 5283
  * @param string $language_code Return the translation in this language. Default is NULL which returns the current language.
5284 5284
  * @return string The translated string.
5285 5285
  */
5286
-function geodir_wpml_translate_string( $string, $domain = 'geodirectory', $name = '', $language_code = NULL ) {
5287
-    return apply_filters( 'wpml_translate_single_string', $string, $domain, $name, $language_code );
5286
+function geodir_wpml_translate_string($string, $domain = 'geodirectory', $name = '', $language_code = NULL) {
5287
+    return apply_filters('wpml_translate_single_string', $string, $domain, $name, $language_code);
5288 5288
 }
5289 5289
 
5290 5290
 /**
@@ -5299,19 +5299,19 @@  discard block
 block discarded – undo
5299 5299
  * @param int $post_ID  Post ID.
5300 5300
  * @param array $data Post data.
5301 5301
  */
5302
-function geodir_send_listing_edited_notification( $post_ID, $data ) {
5302
+function geodir_send_listing_edited_notification($post_ID, $data) {
5303 5303
     global $gd_notified_edited, $gd_set_listing_edited;
5304 5304
     
5305
-    if ( !empty( $gd_set_listing_edited[ $post_ID ] ) && empty( $gd_notified_edited[ $post_ID ] ) ) {
5306
-        if ( !empty( $gd_notified_edited ) ) {
5305
+    if (!empty($gd_set_listing_edited[$post_ID]) && empty($gd_notified_edited[$post_ID])) {
5306
+        if (!empty($gd_notified_edited)) {
5307 5307
             $gd_notified_edited = array();
5308 5308
         }
5309
-        $gd_notified_edited[ $post_ID ] = true;
5309
+        $gd_notified_edited[$post_ID] = true;
5310 5310
         
5311
-        $from_email   = get_option( 'site_email' );
5311
+        $from_email   = get_option('site_email');
5312 5312
         $from_name    = get_site_emailName();
5313
-        $to_email     = get_option( 'admin_email' );
5314
-        $to_name      = get_option( 'name' );
5313
+        $to_email     = get_option('admin_email');
5314
+        $to_name      = get_option('name');
5315 5315
         $message_type = 'listing_edited';
5316 5316
 
5317 5317
         $notify_edited = true;
@@ -5323,11 +5323,11 @@  discard block
 block discarded – undo
5323 5323
          * @param bool $notify_edited Notify on listing edited by author?
5324 5324
          * @param object $post        The current post object.
5325 5325
          */
5326
-        $notify_edited = apply_filters( 'geodir_notify_on_listing_edited', $notify_edited, $post_ID );
5326
+        $notify_edited = apply_filters('geodir_notify_on_listing_edited', $notify_edited, $post_ID);
5327 5327
 
5328
-        if ( $notify_edited ) {
5329
-            geodir_sendEmail( $from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID );
5328
+        if ($notify_edited) {
5329
+            geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID);
5330 5330
         }
5331 5331
     }
5332 5332
 }
5333
-add_action( 'geodir_after_save_listing', 'geodir_send_listing_edited_notification', 1000, 2 );
5334 5333
\ No newline at end of file
5334
+add_action('geodir_after_save_listing', 'geodir_send_listing_edited_notification', 1000, 2);
5335 5335
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory-functions/helper_functions.php 3 patches
Braces   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
 
147 147
     if (geodir_is_wpml()){
148 148
         $home_url = icl_get_home_url();
149
-    }else{
149
+    } else{
150 150
         $home_url = home_url();
151 151
     }
152 152
 
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
         $slug = $post->post_name;
160 160
         //$login_url = get_permalink($gd_page_id );// get_permalink can only be user after theme-Setup hook, any earlier and it errors
161 161
         $login_url = trailingslashit($home_url)."$slug/";
162
-    }else{
162
+    } else{
163 163
         $login_url = trailingslashit($home_url)."?geodir_signup=true";
164 164
     }
165 165
 
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
 
203 203
     if (geodir_is_wpml()){
204 204
         $home_url = icl_get_home_url();
205
-    }else{
205
+    } else{
206 206
         $home_url = home_url();
207 207
     }
208 208
 
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
         $slug = $post->post_name;
216 216
         //$login_url = get_permalink($gd_page_id );// get_permalink can only be user after theme-Setup hook, any earlier and it errors
217 217
         $info_url = trailingslashit($home_url)."$slug/";
218
-    }else{
218
+    } else{
219 219
         $info_url = trailingslashit($home_url);
220 220
     }
221 221
 
Please login to merge, or discard this patch.
Indentation   +395 added lines, -395 removed lines patch added patch discarded remove patch
@@ -14,13 +14,13 @@  discard block
 block discarded – undo
14 14
  * @return int|null Return the page ID if present or null if not.
15 15
  */
16 16
 function geodir_add_listing_page_id(){
17
-    $gd_page_id = get_option('geodir_add_listing_page');
17
+	$gd_page_id = get_option('geodir_add_listing_page');
18 18
 
19
-    if (geodir_is_wpml()) {
20
-        $gd_page_id =  geodir_wpml_object_id($gd_page_id, 'page', true);
21
-    }
19
+	if (geodir_is_wpml()) {
20
+		$gd_page_id =  geodir_wpml_object_id($gd_page_id, 'page', true);
21
+	}
22 22
 
23
-    return $gd_page_id;
23
+	return $gd_page_id;
24 24
 }
25 25
 
26 26
 /**
@@ -31,13 +31,13 @@  discard block
 block discarded – undo
31 31
  * @return int|null Return the page ID if present or null if not.
32 32
  */
33 33
 function geodir_preview_page_id(){
34
-    $gd_page_id = get_option('geodir_preview_page');
34
+	$gd_page_id = get_option('geodir_preview_page');
35 35
 
36
-    if (geodir_is_wpml()) {
37
-        $gd_page_id =  geodir_wpml_object_id($gd_page_id, 'page', true);
38
-    }
36
+	if (geodir_is_wpml()) {
37
+		$gd_page_id =  geodir_wpml_object_id($gd_page_id, 'page', true);
38
+	}
39 39
 
40
-    return $gd_page_id;
40
+	return $gd_page_id;
41 41
 }
42 42
 
43 43
 /**
@@ -48,13 +48,13 @@  discard block
 block discarded – undo
48 48
  * @return int|null Return the page ID if present or null if not.
49 49
  */
50 50
 function geodir_success_page_id(){
51
-    $gd_page_id = get_option('geodir_success_page');
51
+	$gd_page_id = get_option('geodir_success_page');
52 52
 
53
-    if (geodir_is_wpml()) {
54
-        $gd_page_id =  geodir_wpml_object_id($gd_page_id, 'page', true);
55
-    }
53
+	if (geodir_is_wpml()) {
54
+		$gd_page_id =  geodir_wpml_object_id($gd_page_id, 'page', true);
55
+	}
56 56
 
57
-    return $gd_page_id;
57
+	return $gd_page_id;
58 58
 }
59 59
 
60 60
 /**
@@ -65,13 +65,13 @@  discard block
 block discarded – undo
65 65
  * @return int|null Return the page ID if present or null if not.
66 66
  */
67 67
 function geodir_location_page_id(){
68
-    $gd_page_id = get_option('geodir_location_page');
68
+	$gd_page_id = get_option('geodir_location_page');
69 69
 
70
-    if (geodir_is_wpml()) {
71
-        $gd_page_id =  geodir_wpml_object_id($gd_page_id, 'page', true);
72
-    }
70
+	if (geodir_is_wpml()) {
71
+		$gd_page_id =  geodir_wpml_object_id($gd_page_id, 'page', true);
72
+	}
73 73
 
74
-    return $gd_page_id;
74
+	return $gd_page_id;
75 75
 }
76 76
 
77 77
 /**
@@ -82,13 +82,13 @@  discard block
 block discarded – undo
82 82
  * @return int|null Return the page ID if present or null if not.
83 83
  */
84 84
 function geodir_home_page_id(){
85
-    $gd_page_id = get_option('geodir_home_page');
85
+	$gd_page_id = get_option('geodir_home_page');
86 86
 
87
-    if (geodir_is_wpml()) {
88
-        $gd_page_id =  geodir_wpml_object_id($gd_page_id, 'page', true);
89
-    }
87
+	if (geodir_is_wpml()) {
88
+		$gd_page_id =  geodir_wpml_object_id($gd_page_id, 'page', true);
89
+	}
90 90
 
91
-    return $gd_page_id;
91
+	return $gd_page_id;
92 92
 }
93 93
 
94 94
 /**
@@ -99,13 +99,13 @@  discard block
 block discarded – undo
99 99
  * @return int|null Return the page ID if present or null if not.
100 100
  */
101 101
 function geodir_info_page_id(){
102
-    $gd_page_id = get_option('geodir_info_page');
102
+	$gd_page_id = get_option('geodir_info_page');
103 103
 
104
-    if (geodir_is_wpml()) {
105
-        $gd_page_id =  geodir_wpml_object_id($gd_page_id, 'page', true);
106
-    }
104
+	if (geodir_is_wpml()) {
105
+		$gd_page_id =  geodir_wpml_object_id($gd_page_id, 'page', true);
106
+	}
107 107
 
108
-    return $gd_page_id;
108
+	return $gd_page_id;
109 109
 }
110 110
 
111 111
 /**
@@ -116,13 +116,13 @@  discard block
 block discarded – undo
116 116
  * @return int|null Return the page ID if present or null if not.
117 117
  */
118 118
 function geodir_login_page_id(){
119
-    $gd_page_id = get_option('geodir_login_page');
119
+	$gd_page_id = get_option('geodir_login_page');
120 120
 
121
-    if (geodir_is_wpml()) {
122
-        $gd_page_id =  geodir_wpml_object_id($gd_page_id, 'page', true);
123
-    }
121
+	if (geodir_is_wpml()) {
122
+		$gd_page_id =  geodir_wpml_object_id($gd_page_id, 'page', true);
123
+	}
124 124
 
125
-    return $gd_page_id;
125
+	return $gd_page_id;
126 126
 }
127 127
 
128 128
 
@@ -134,51 +134,51 @@  discard block
 block discarded – undo
134 134
  * @return int|null Return the page ID if present or null if not.
135 135
  */
136 136
 function geodir_login_url($args=array()){
137
-    $gd_page_id = get_option('geodir_login_page');
138
-
139
-    if (geodir_is_wpml()) {
140
-        $gd_page_id =  geodir_wpml_object_id($gd_page_id, 'page', true);
141
-    }
142
-
143
-    if (function_exists('geodir_location_geo_home_link')) {
144
-        remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
145
-    }
146
-
147
-    if (geodir_is_wpml()){
148
-        $home_url = icl_get_home_url();
149
-    }else{
150
-        $home_url = home_url();
151
-    }
152
-
153
-    if (function_exists('geodir_location_geo_home_link')) {
154
-        add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
155
-    }
156
-
157
-    if($gd_page_id){
158
-        $post = get_post($gd_page_id);
159
-        $slug = $post->post_name;
160
-        //$login_url = get_permalink($gd_page_id );// get_permalink can only be user after theme-Setup hook, any earlier and it errors
161
-        $login_url = trailingslashit($home_url)."$slug/";
162
-    }else{
163
-        $login_url = trailingslashit($home_url)."?geodir_signup=true";
164
-    }
165
-
166
-    if($args){
167
-        $login_url = add_query_arg($args,$login_url );
168
-    }
169
-
170
-    /**
171
-     * Filter the GeoDirectory login page url.
172
-     *
173
-     * This filter can be used to change the GeoDirectory page url.
174
-     *
175
-     * @since 1.5.3
176
-     * @package GeoDirectory
177
-     * @param string $login_url The url of the login page.
178
-     * @param array $args The array of query args used.
179
-     * @param int $gd_page_id The page id of the GD login page.
180
-     */
181
-	    return apply_filters('geodir_login_url',$login_url,$args,$gd_page_id);
137
+	$gd_page_id = get_option('geodir_login_page');
138
+
139
+	if (geodir_is_wpml()) {
140
+		$gd_page_id =  geodir_wpml_object_id($gd_page_id, 'page', true);
141
+	}
142
+
143
+	if (function_exists('geodir_location_geo_home_link')) {
144
+		remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
145
+	}
146
+
147
+	if (geodir_is_wpml()){
148
+		$home_url = icl_get_home_url();
149
+	}else{
150
+		$home_url = home_url();
151
+	}
152
+
153
+	if (function_exists('geodir_location_geo_home_link')) {
154
+		add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
155
+	}
156
+
157
+	if($gd_page_id){
158
+		$post = get_post($gd_page_id);
159
+		$slug = $post->post_name;
160
+		//$login_url = get_permalink($gd_page_id );// get_permalink can only be user after theme-Setup hook, any earlier and it errors
161
+		$login_url = trailingslashit($home_url)."$slug/";
162
+	}else{
163
+		$login_url = trailingslashit($home_url)."?geodir_signup=true";
164
+	}
165
+
166
+	if($args){
167
+		$login_url = add_query_arg($args,$login_url );
168
+	}
169
+
170
+	/**
171
+	 * Filter the GeoDirectory login page url.
172
+	 *
173
+	 * This filter can be used to change the GeoDirectory page url.
174
+	 *
175
+	 * @since 1.5.3
176
+	 * @package GeoDirectory
177
+	 * @param string $login_url The url of the login page.
178
+	 * @param array $args The array of query args used.
179
+	 * @param int $gd_page_id The page id of the GD login page.
180
+	 */
181
+		return apply_filters('geodir_login_url',$login_url,$args,$gd_page_id);
182 182
 }
183 183
 
184 184
 /**
@@ -190,40 +190,40 @@  discard block
 block discarded – undo
190 190
  * @return string Info page url.
191 191
  */
192 192
 function geodir_info_url($args=array()){
193
-    $gd_page_id = get_option('geodir_info_page');
194
-
195
-    if (geodir_is_wpml()) {
196
-        $gd_page_id =  geodir_wpml_object_id($gd_page_id, 'page', true);
197
-    }
198
-
199
-    if (function_exists('geodir_location_geo_home_link')) {
200
-        remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
201
-    }
202
-
203
-    if (geodir_is_wpml()){
204
-        $home_url = icl_get_home_url();
205
-    }else{
206
-        $home_url = home_url();
207
-    }
208
-
209
-    if (function_exists('geodir_location_geo_home_link')) {
210
-        add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
211
-    }
212
-
213
-    if($gd_page_id){
214
-        $post = get_post($gd_page_id);
215
-        $slug = $post->post_name;
216
-        //$login_url = get_permalink($gd_page_id );// get_permalink can only be user after theme-Setup hook, any earlier and it errors
217
-        $info_url = trailingslashit($home_url)."$slug/";
218
-    }else{
219
-        $info_url = trailingslashit($home_url);
220
-    }
221
-
222
-    if($args){
223
-        $info_url = add_query_arg($args,$info_url );
224
-    }
225
-
226
-    return $info_url;
193
+	$gd_page_id = get_option('geodir_info_page');
194
+
195
+	if (geodir_is_wpml()) {
196
+		$gd_page_id =  geodir_wpml_object_id($gd_page_id, 'page', true);
197
+	}
198
+
199
+	if (function_exists('geodir_location_geo_home_link')) {
200
+		remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
201
+	}
202
+
203
+	if (geodir_is_wpml()){
204
+		$home_url = icl_get_home_url();
205
+	}else{
206
+		$home_url = home_url();
207
+	}
208
+
209
+	if (function_exists('geodir_location_geo_home_link')) {
210
+		add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
211
+	}
212
+
213
+	if($gd_page_id){
214
+		$post = get_post($gd_page_id);
215
+		$slug = $post->post_name;
216
+		//$login_url = get_permalink($gd_page_id );// get_permalink can only be user after theme-Setup hook, any earlier and it errors
217
+		$info_url = trailingslashit($home_url)."$slug/";
218
+	}else{
219
+		$info_url = trailingslashit($home_url);
220
+	}
221
+
222
+	if($args){
223
+		$info_url = add_query_arg($args,$info_url );
224
+	}
225
+
226
+	return $info_url;
227 227
 }
228 228
 
229 229
 /**
@@ -239,11 +239,11 @@  discard block
 block discarded – undo
239 239
  * @return string Returns converted string.
240 240
  */
241 241
 function geodir_ucwords($string, $charset='UTF-8') {
242
-    if (function_exists('mb_convert_case')) {
243
-        return mb_convert_case($string, MB_CASE_TITLE, $charset);
244
-    } else {
245
-        return ucwords($string);
246
-    }
242
+	if (function_exists('mb_convert_case')) {
243
+		return mb_convert_case($string, MB_CASE_TITLE, $charset);
244
+	} else {
245
+		return ucwords($string);
246
+	}
247 247
 }
248 248
 
249 249
 /**
@@ -259,11 +259,11 @@  discard block
 block discarded – undo
259 259
  * @return string Returns converted string.
260 260
  */
261 261
 function geodir_strtolower($string, $charset='UTF-8') {
262
-    if (function_exists('mb_convert_case')) {
263
-        return mb_convert_case($string, MB_CASE_LOWER, $charset);
264
-    } else {
265
-        return strtolower($string);
266
-    }
262
+	if (function_exists('mb_convert_case')) {
263
+		return mb_convert_case($string, MB_CASE_LOWER, $charset);
264
+	} else {
265
+		return strtolower($string);
266
+	}
267 267
 }
268 268
 
269 269
 /**
@@ -279,11 +279,11 @@  discard block
 block discarded – undo
279 279
  * @return string Returns converted string.
280 280
  */
281 281
 function geodir_strtoupper($string, $charset='UTF-8') {
282
-    if (function_exists('mb_convert_case')) {
283
-        return mb_convert_case($string, MB_CASE_UPPER, $charset);
284
-    } else {
285
-        return strtoupper($string);
286
-    }
282
+	if (function_exists('mb_convert_case')) {
283
+		return mb_convert_case($string, MB_CASE_UPPER, $charset);
284
+	} else {
285
+		return strtoupper($string);
286
+	}
287 287
 }
288 288
 
289 289
 /**
@@ -462,11 +462,11 @@  discard block
 block discarded – undo
462 462
  * @package GeoDirectory
463 463
  */
464 464
 function _gd_die_handler() {
465
-    if ( defined( 'GD_TESTING_MODE' ) ) {
466
-        return '_gd_die_handler';
467
-    } else {
468
-        die();
469
-    }
465
+	if ( defined( 'GD_TESTING_MODE' ) ) {
466
+		return '_gd_die_handler';
467
+	} else {
468
+		die();
469
+	}
470 470
 }
471 471
 
472 472
 /**
@@ -481,9 +481,9 @@  discard block
 block discarded – undo
481 481
  * @param int $status     Optional. Status code.
482 482
  */
483 483
 function gd_die( $message = '', $title = '', $status = 400 ) {
484
-    add_filter( 'wp_die_ajax_handler', '_gd_die_handler', 10, 3 );
485
-    add_filter( 'wp_die_handler', '_gd_die_handler', 10, 3 );
486
-    wp_die( $message, $title, array( 'response' => $status ));
484
+	add_filter( 'wp_die_ajax_handler', '_gd_die_handler', 10, 3 );
485
+	add_filter( 'wp_die_handler', '_gd_die_handler', 10, 3 );
486
+	wp_die( $message, $title, array( 'response' => $status ));
487 487
 }
488 488
 
489 489
 /*
@@ -660,44 +660,44 @@  discard block
 block discarded – undo
660 660
  * @return string The formatted date.
661 661
  */
662 662
 function geodir_date( $date_input, $date_to, $date_from = '', $locale = false ) {
663
-    if ( empty( $date_input ) || empty( $date_to ) ) {
664
-        return NULL;
665
-    }
663
+	if ( empty( $date_input ) || empty( $date_to ) ) {
664
+		return NULL;
665
+	}
666 666
     
667
-    $date_input = geodir_maybe_untranslate_date( $date_input );
667
+	$date_input = geodir_maybe_untranslate_date( $date_input );
668 668
     
669
-    $timestamp = 0;
670
-    if (!empty( $date_from ) && function_exists( 'date_create_from_format' ) ) {
671
-        $datetime = date_create_from_format( $date_from, $date_input );
672
-        if ( !empty( $datetime ) ) {
673
-            $timestamp = $datetime->getTimestamp();
674
-        }
675
-    }
669
+	$timestamp = 0;
670
+	if (!empty( $date_from ) && function_exists( 'date_create_from_format' ) ) {
671
+		$datetime = date_create_from_format( $date_from, $date_input );
672
+		if ( !empty( $datetime ) ) {
673
+			$timestamp = $datetime->getTimestamp();
674
+		}
675
+	}
676 676
     
677
-    if ( empty( $timestamp ) ) {
678
-        $date = strpos( $date_input, '/' ) !== false ? str_replace( '/', '-', $date_input ) : $date_input;
679
-        $timestamp = strtotime( $date );
680
-    }
677
+	if ( empty( $timestamp ) ) {
678
+		$date = strpos( $date_input, '/' ) !== false ? str_replace( '/', '-', $date_input ) : $date_input;
679
+		$timestamp = strtotime( $date );
680
+	}
681 681
     
682
-    $date = date_i18n( $date_to, $timestamp );
682
+	$date = date_i18n( $date_to, $timestamp );
683 683
     
684
-    if ( !$locale ) {
685
-        $date = geodir_maybe_untranslate_date( $date );
686
-    }
684
+	if ( !$locale ) {
685
+		$date = geodir_maybe_untranslate_date( $date );
686
+	}
687 687
     
688
-    /**
689
-     * Filter the the date format conversion.
690
-     *
691
-     * @since 1.6.7
692
-     * @package GeoDirectory
693
-     *
694
-     * @param string $date The date string.
695
-     * @param string $date_input The date input.
696
-     * @param string $date_to The destination date format.
697
-     * @param string $date_from The source date format.
698
-     * @param bool $locale True to retrieve the date in localized format.
699
-     */
700
-    return apply_filters( 'geodir_date', $date, $date_input, $date_to, $date_from, $locale );
688
+	/**
689
+	 * Filter the the date format conversion.
690
+	 *
691
+	 * @since 1.6.7
692
+	 * @package GeoDirectory
693
+	 *
694
+	 * @param string $date The date string.
695
+	 * @param string $date_input The date input.
696
+	 * @param string $date_to The destination date format.
697
+	 * @param string $date_from The source date format.
698
+	 * @param bool $locale True to retrieve the date in localized format.
699
+	 */
700
+	return apply_filters( 'geodir_date', $date, $date_input, $date_to, $date_from, $locale );
701 701
 }
702 702
 
703 703
 /**
@@ -722,91 +722,91 @@  discard block
 block discarded – undo
722 722
  * @return string Trimmed string.
723 723
  */
724 724
 function geodir_excerpt($text, $length = 100, $options = array()) {
725
-    if (!(int)$length > 0) {
726
-        return $text;
727
-    }
728
-    $default = array(
729
-        'ellipsis' => '', 'exact' => true, 'html' => true, 'trimWidth' => false,
725
+	if (!(int)$length > 0) {
726
+		return $text;
727
+	}
728
+	$default = array(
729
+		'ellipsis' => '', 'exact' => true, 'html' => true, 'trimWidth' => false,
730 730
 	);
731
-    if (!empty($options['html']) && function_exists('mb_internal_encoding') && strtolower(mb_internal_encoding()) === 'utf-8') {
732
-        $default['ellipsis'] = "";
733
-    }
734
-    $options += $default;
735
-
736
-    $prefix = '';
737
-    $suffix = $options['ellipsis'];
738
-
739
-    if ($options['html']) {
740
-        $ellipsisLength = geodir_strlen(strip_tags($options['ellipsis']), $options);
741
-
742
-        $truncateLength = 0;
743
-        $totalLength = 0;
744
-        $openTags = array();
745
-        $truncate = '';
746
-
747
-        preg_match_all('/(<\/?([\w+]+)[^>]*>)?([^<>]*)/', $text, $tags, PREG_SET_ORDER);
748
-        foreach ($tags as $tag) {
749
-            $contentLength = geodir_strlen($tag[3], $options);
750
-
751
-            if ($truncate === '') {
752
-                if (!preg_match('/img|br|input|hr|area|base|basefont|col|frame|isindex|link|meta|param/i', $tag[2])) {
753
-                    if (preg_match('/<[\w]+[^>]*>/', $tag[0])) {
754
-                        array_unshift($openTags, $tag[2]);
755
-                    } elseif (preg_match('/<\/([\w]+)[^>]*>/', $tag[0], $closeTag)) {
756
-                        $pos = array_search($closeTag[1], $openTags);
757
-                        if ($pos !== false) {
758
-                            array_splice($openTags, $pos, 1);
759
-                        }
760
-                    }
761
-                }
762
-
763
-                $prefix .= $tag[1];
764
-
765
-                if ($totalLength + $contentLength + $ellipsisLength > $length) {
766
-                    $truncate = $tag[3];
767
-                    $truncateLength = $length - $totalLength;
768
-                } else {
769
-                    $prefix .= $tag[3];
770
-                }
771
-            }
772
-
773
-            $totalLength += $contentLength;
774
-            if ($totalLength > $length) {
775
-                break;
776
-            }
777
-        }
778
-
779
-        if ($totalLength <= $length) {
780
-            return $text;
781
-        }
782
-
783
-        $text = $truncate;
784
-        $length = $truncateLength;
785
-
786
-        foreach ($openTags as $tag) {
787
-            $suffix .= '</' . $tag . '>';
788
-        }
789
-    } else {
790
-        if (geodir_strlen($text, $options) <= $length) {
791
-            return $text;
792
-        }
793
-        $ellipsisLength = geodir_strlen($options['ellipsis'], $options);
794
-    }
795
-
796
-    $result = geodir_substr($text, 0, $length - $ellipsisLength, $options);
797
-
798
-    if (!$options['exact']) {
799
-        if (geodir_substr($text, $length - $ellipsisLength, 1, $options) !== ' ') {
800
-            $result = geodir_remove_last_word($result);
801
-        }
802
-
803
-        // Do not need to count ellipsis in the cut, if result is empty.
804
-        if (!strlen($result)) {
805
-            $result = geodir_substr($text, 0, $length, $options);
806
-        }
807
-    }
808
-
809
-    return $prefix . $result . $suffix;
731
+	if (!empty($options['html']) && function_exists('mb_internal_encoding') && strtolower(mb_internal_encoding()) === 'utf-8') {
732
+		$default['ellipsis'] = "";
733
+	}
734
+	$options += $default;
735
+
736
+	$prefix = '';
737
+	$suffix = $options['ellipsis'];
738
+
739
+	if ($options['html']) {
740
+		$ellipsisLength = geodir_strlen(strip_tags($options['ellipsis']), $options);
741
+
742
+		$truncateLength = 0;
743
+		$totalLength = 0;
744
+		$openTags = array();
745
+		$truncate = '';
746
+
747
+		preg_match_all('/(<\/?([\w+]+)[^>]*>)?([^<>]*)/', $text, $tags, PREG_SET_ORDER);
748
+		foreach ($tags as $tag) {
749
+			$contentLength = geodir_strlen($tag[3], $options);
750
+
751
+			if ($truncate === '') {
752
+				if (!preg_match('/img|br|input|hr|area|base|basefont|col|frame|isindex|link|meta|param/i', $tag[2])) {
753
+					if (preg_match('/<[\w]+[^>]*>/', $tag[0])) {
754
+						array_unshift($openTags, $tag[2]);
755
+					} elseif (preg_match('/<\/([\w]+)[^>]*>/', $tag[0], $closeTag)) {
756
+						$pos = array_search($closeTag[1], $openTags);
757
+						if ($pos !== false) {
758
+							array_splice($openTags, $pos, 1);
759
+						}
760
+					}
761
+				}
762
+
763
+				$prefix .= $tag[1];
764
+
765
+				if ($totalLength + $contentLength + $ellipsisLength > $length) {
766
+					$truncate = $tag[3];
767
+					$truncateLength = $length - $totalLength;
768
+				} else {
769
+					$prefix .= $tag[3];
770
+				}
771
+			}
772
+
773
+			$totalLength += $contentLength;
774
+			if ($totalLength > $length) {
775
+				break;
776
+			}
777
+		}
778
+
779
+		if ($totalLength <= $length) {
780
+			return $text;
781
+		}
782
+
783
+		$text = $truncate;
784
+		$length = $truncateLength;
785
+
786
+		foreach ($openTags as $tag) {
787
+			$suffix .= '</' . $tag . '>';
788
+		}
789
+	} else {
790
+		if (geodir_strlen($text, $options) <= $length) {
791
+			return $text;
792
+		}
793
+		$ellipsisLength = geodir_strlen($options['ellipsis'], $options);
794
+	}
795
+
796
+	$result = geodir_substr($text, 0, $length - $ellipsisLength, $options);
797
+
798
+	if (!$options['exact']) {
799
+		if (geodir_substr($text, $length - $ellipsisLength, 1, $options) !== ' ') {
800
+			$result = geodir_remove_last_word($result);
801
+		}
802
+
803
+		// Do not need to count ellipsis in the cut, if result is empty.
804
+		if (!strlen($result)) {
805
+			$result = geodir_substr($text, 0, $length, $options);
806
+		}
807
+	}
808
+
809
+	return $prefix . $result . $suffix;
810 810
 }
811 811
 
812 812
 /**
@@ -830,28 +830,28 @@  discard block
 block discarded – undo
830 830
  * @return int
831 831
  */
832 832
 function geodir_strlen($text, array $options) {
833
-    if (empty($options['trimWidth'])) {
834
-        $strlen = 'geodir_utf8_strlen';
835
-    } else {
836
-        $strlen = 'geodir_utf8_strwidth';
837
-    }
838
-
839
-    if (empty($options['html'])) {
840
-        return $strlen($text);
841
-    }
842
-
843
-    $pattern = '/&[0-9a-z]{2,8};|&#[0-9]{1,7};|&#x[0-9a-f]{1,6};/i';
844
-    $replace = preg_replace_callback(
845
-        $pattern,
846
-        function ($match) use ($strlen) {
847
-            $utf8 = html_entity_decode($match[0], ENT_HTML5 | ENT_QUOTES, 'UTF-8');
848
-
849
-            return str_repeat(' ', $strlen($utf8, 'UTF-8'));
850
-        },
851
-        $text
852
-    );
853
-
854
-    return $strlen($replace);
833
+	if (empty($options['trimWidth'])) {
834
+		$strlen = 'geodir_utf8_strlen';
835
+	} else {
836
+		$strlen = 'geodir_utf8_strwidth';
837
+	}
838
+
839
+	if (empty($options['html'])) {
840
+		return $strlen($text);
841
+	}
842
+
843
+	$pattern = '/&[0-9a-z]{2,8};|&#[0-9]{1,7};|&#x[0-9a-f]{1,6};/i';
844
+	$replace = preg_replace_callback(
845
+		$pattern,
846
+		function ($match) use ($strlen) {
847
+			$utf8 = html_entity_decode($match[0], ENT_HTML5 | ENT_QUOTES, 'UTF-8');
848
+
849
+			return str_repeat(' ', $strlen($utf8, 'UTF-8'));
850
+		},
851
+		$text
852
+	);
853
+
854
+	return $strlen($replace);
855 855
 }
856 856
 
857 857
 /**
@@ -872,80 +872,80 @@  discard block
 block discarded – undo
872 872
  * @return string
873 873
  */
874 874
 function geodir_substr($text, $start, $length, array $options) {
875
-    if (empty($options['trimWidth'])) {
876
-        $substr = 'geodir_utf8_substr';
877
-    } else {
878
-        $substr = 'geodir_utf8_strimwidth';
879
-    }
880
-
881
-    $maxPosition = geodir_strlen($text, array('trimWidth' => false) + $options);
882
-    if ($start < 0) {
883
-        $start += $maxPosition;
884
-        if ($start < 0) {
885
-            $start = 0;
886
-        }
887
-    }
888
-    if ($start >= $maxPosition) {
889
-        return '';
890
-    }
891
-
892
-    if ($length === null) {
893
-        $length = geodir_strlen($text, $options);
894
-    }
895
-
896
-    if ($length < 0) {
897
-        $text = geodir_substr($text, $start, null, $options);
898
-        $start = 0;
899
-        $length += geodir_strlen($text, $options);
900
-    }
901
-
902
-    if ($length <= 0) {
903
-        return '';
904
-    }
905
-
906
-    if (empty($options['html'])) {
907
-        return (string)$substr($text, $start, $length);
908
-    }
909
-
910
-    $totalOffset = 0;
911
-    $totalLength = 0;
912
-    $result = '';
913
-
914
-    $pattern = '/(&[0-9a-z]{2,8};|&#[0-9]{1,7};|&#x[0-9a-f]{1,6};)/i';
915
-    $parts = preg_split($pattern, $text, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
916
-    foreach ($parts as $part) {
917
-        $offset = 0;
918
-
919
-        if ($totalOffset < $start) {
920
-            $len = geodir_strlen($part, array('trimWidth' => false) + $options);
921
-            if ($totalOffset + $len <= $start) {
922
-                $totalOffset += $len;
923
-                continue;
924
-            }
925
-
926
-            $offset = $start - $totalOffset;
927
-            $totalOffset = $start;
928
-        }
929
-
930
-        $len = geodir_strlen($part, $options);
931
-        if ($offset !== 0 || $totalLength + $len > $length) {
932
-            if (strpos($part, '&') === 0 && preg_match($pattern, $part) && $part !== html_entity_decode($part, ENT_HTML5 | ENT_QUOTES, 'UTF-8') ) {
933
-                // Entities cannot be passed substr.
934
-                continue;
935
-            }
936
-
937
-            $part = $substr($part, $offset, $length - $totalLength);
938
-            $len = geodir_strlen($part, $options);
939
-        }
940
-
941
-        $result .= $part;
942
-        $totalLength += $len;
943
-        if ($totalLength >= $length) {
944
-            break;
945
-        }
946
-    }
947
-
948
-    return $result;
875
+	if (empty($options['trimWidth'])) {
876
+		$substr = 'geodir_utf8_substr';
877
+	} else {
878
+		$substr = 'geodir_utf8_strimwidth';
879
+	}
880
+
881
+	$maxPosition = geodir_strlen($text, array('trimWidth' => false) + $options);
882
+	if ($start < 0) {
883
+		$start += $maxPosition;
884
+		if ($start < 0) {
885
+			$start = 0;
886
+		}
887
+	}
888
+	if ($start >= $maxPosition) {
889
+		return '';
890
+	}
891
+
892
+	if ($length === null) {
893
+		$length = geodir_strlen($text, $options);
894
+	}
895
+
896
+	if ($length < 0) {
897
+		$text = geodir_substr($text, $start, null, $options);
898
+		$start = 0;
899
+		$length += geodir_strlen($text, $options);
900
+	}
901
+
902
+	if ($length <= 0) {
903
+		return '';
904
+	}
905
+
906
+	if (empty($options['html'])) {
907
+		return (string)$substr($text, $start, $length);
908
+	}
909
+
910
+	$totalOffset = 0;
911
+	$totalLength = 0;
912
+	$result = '';
913
+
914
+	$pattern = '/(&[0-9a-z]{2,8};|&#[0-9]{1,7};|&#x[0-9a-f]{1,6};)/i';
915
+	$parts = preg_split($pattern, $text, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
916
+	foreach ($parts as $part) {
917
+		$offset = 0;
918
+
919
+		if ($totalOffset < $start) {
920
+			$len = geodir_strlen($part, array('trimWidth' => false) + $options);
921
+			if ($totalOffset + $len <= $start) {
922
+				$totalOffset += $len;
923
+				continue;
924
+			}
925
+
926
+			$offset = $start - $totalOffset;
927
+			$totalOffset = $start;
928
+		}
929
+
930
+		$len = geodir_strlen($part, $options);
931
+		if ($offset !== 0 || $totalLength + $len > $length) {
932
+			if (strpos($part, '&') === 0 && preg_match($pattern, $part) && $part !== html_entity_decode($part, ENT_HTML5 | ENT_QUOTES, 'UTF-8') ) {
933
+				// Entities cannot be passed substr.
934
+				continue;
935
+			}
936
+
937
+			$part = $substr($part, $offset, $length - $totalLength);
938
+			$len = geodir_strlen($part, $options);
939
+		}
940
+
941
+		$result .= $part;
942
+		$totalLength += $len;
943
+		if ($totalLength >= $length) {
944
+			break;
945
+		}
946
+	}
947
+
948
+	return $result;
949 949
 }
950 950
 
951 951
 /**
@@ -958,21 +958,21 @@  discard block
 block discarded – undo
958 958
  * @return string
959 959
  */
960 960
 function geodir_remove_last_word($text) {
961
-    $spacepos = geodir_utf8_strrpos($text, ' ');
961
+	$spacepos = geodir_utf8_strrpos($text, ' ');
962 962
 
963
-    if ($spacepos !== false) {
964
-        $lastWord = geodir_utf8_strrpos($text, $spacepos);
963
+	if ($spacepos !== false) {
964
+		$lastWord = geodir_utf8_strrpos($text, $spacepos);
965 965
 
966
-        // Some languages are written without word separation.
967
-        // We recognize a string as a word if it does not contain any full-width characters.
968
-        if (geodir_utf8_strwidth($lastWord) === geodir_utf8_strlen($lastWord)) {
969
-            $text = geodir_utf8_substr($text, 0, $spacepos);
970
-        }
966
+		// Some languages are written without word separation.
967
+		// We recognize a string as a word if it does not contain any full-width characters.
968
+		if (geodir_utf8_strwidth($lastWord) === geodir_utf8_strlen($lastWord)) {
969
+			$text = geodir_utf8_substr($text, 0, $spacepos);
970
+		}
971 971
 
972
-        return $text;
973
-    }
972
+		return $text;
973
+	}
974 974
 
975
-    return '';
975
+	return '';
976 976
 }
977 977
 
978 978
 function geodir_tool_restore_cpt_from_taxonomies(){
@@ -1090,11 +1090,11 @@  discard block
 block discarded – undo
1090 1090
  * @return string
1091 1091
  */
1092 1092
 function geodir_utf8_strimwidth( $str, $start, $width, $trimmaker = '', $encoding = 'UTF-8' ) {
1093
-    if ( function_exists( 'mb_strimwidth' ) ) {
1094
-        return mb_strimwidth( $str, $start, $width, $trimmaker, $encoding );
1095
-    }
1093
+	if ( function_exists( 'mb_strimwidth' ) ) {
1094
+		return mb_strimwidth( $str, $start, $width, $trimmaker, $encoding );
1095
+	}
1096 1096
     
1097
-    return geodir_utf8_substr( $str, $start, $width, $encoding ) . $trimmaker;
1097
+	return geodir_utf8_substr( $str, $start, $width, $encoding ) . $trimmaker;
1098 1098
 }
1099 1099
 
1100 1100
 /**
@@ -1108,11 +1108,11 @@  discard block
 block discarded – undo
1108 1108
  * @return int Returns the number of characters in string.
1109 1109
  */
1110 1110
 function geodir_utf8_strlen( $str, $encoding = 'UTF-8' ) {
1111
-    if ( function_exists( 'mb_strlen' ) ) {
1112
-        return mb_strlen( $str, $encoding );
1113
-    }
1111
+	if ( function_exists( 'mb_strlen' ) ) {
1112
+		return mb_strlen( $str, $encoding );
1113
+	}
1114 1114
         
1115
-    return strlen( $str );
1115
+	return strlen( $str );
1116 1116
 }
1117 1117
 
1118 1118
 /**
@@ -1128,11 +1128,11 @@  discard block
 block discarded – undo
1128 1128
  * @return int Returns the position of the first occurrence of search in the string.
1129 1129
  */
1130 1130
 function geodir_utf8_strpos( $str, $find, $offset = 0, $encoding = 'UTF-8' ) {
1131
-    if ( function_exists( 'mb_strpos' ) ) {
1132
-        return mb_strpos( $str, $find, $offset, $encoding );
1133
-    }
1131
+	if ( function_exists( 'mb_strpos' ) ) {
1132
+		return mb_strpos( $str, $find, $offset, $encoding );
1133
+	}
1134 1134
         
1135
-    return strpos( $str, $find, $offset );
1135
+	return strpos( $str, $find, $offset );
1136 1136
 }
1137 1137
 
1138 1138
 /**
@@ -1148,11 +1148,11 @@  discard block
 block discarded – undo
1148 1148
  * @return int Returns the position of the last occurrence of search.
1149 1149
  */
1150 1150
 function geodir_utf8_strrpos( $str, $find, $offset = 0, $encoding = 'UTF-8' ) {
1151
-    if ( function_exists( 'mb_strrpos' ) ) {
1152
-        return mb_strrpos( $str, $find, $offset, $encoding );
1153
-    }
1151
+	if ( function_exists( 'mb_strrpos' ) ) {
1152
+		return mb_strrpos( $str, $find, $offset, $encoding );
1153
+	}
1154 1154
         
1155
-    return strrpos( $str, $find, $offset );
1155
+	return strrpos( $str, $find, $offset );
1156 1156
 }
1157 1157
 
1158 1158
 /**
@@ -1169,15 +1169,15 @@  discard block
 block discarded – undo
1169 1169
  * @return string
1170 1170
  */
1171 1171
 function geodir_utf8_substr( $str, $start, $length = null, $encoding = 'UTF-8' ) {
1172
-    if ( function_exists( 'mb_substr' ) ) {
1173
-        if ( $length === null ) {
1174
-            return mb_substr( $str, $start, geodir_utf8_strlen( $str, $encoding ), $encoding );
1175
-        } else {
1176
-            return mb_substr( $str, $start, $length, $encoding );
1177
-        }
1178
-    }
1172
+	if ( function_exists( 'mb_substr' ) ) {
1173
+		if ( $length === null ) {
1174
+			return mb_substr( $str, $start, geodir_utf8_strlen( $str, $encoding ), $encoding );
1175
+		} else {
1176
+			return mb_substr( $str, $start, $length, $encoding );
1177
+		}
1178
+	}
1179 1179
         
1180
-    return substr( $str, $start, $length );
1180
+	return substr( $str, $start, $length );
1181 1181
 }
1182 1182
 
1183 1183
 /**
@@ -1210,20 +1210,20 @@  discard block
 block discarded – undo
1210 1210
  * @return string The resulting string.
1211 1211
  */
1212 1212
 function geodir_utf8_ucfirst( $str, $lower_str_end = false, $encoding = 'UTF-8' ) {
1213
-    if ( function_exists( 'mb_strlen' ) ) {
1214
-        $first_letter = geodir_strtoupper( geodir_utf8_substr( $str, 0, 1, $encoding ), $encoding );
1215
-        $str_end = "";
1213
+	if ( function_exists( 'mb_strlen' ) ) {
1214
+		$first_letter = geodir_strtoupper( geodir_utf8_substr( $str, 0, 1, $encoding ), $encoding );
1215
+		$str_end = "";
1216 1216
         
1217
-        if ( $lower_str_end ) {
1218
-            $str_end = geodir_strtolower( geodir_utf8_substr( $str, 1, geodir_utf8_strlen( $str, $encoding ), $encoding ), $encoding );
1219
-        } else {
1220
-            $str_end = geodir_utf8_substr( $str, 1, geodir_utf8_strlen( $str, $encoding ), $encoding );
1221
-        }
1217
+		if ( $lower_str_end ) {
1218
+			$str_end = geodir_strtolower( geodir_utf8_substr( $str, 1, geodir_utf8_strlen( $str, $encoding ), $encoding ), $encoding );
1219
+		} else {
1220
+			$str_end = geodir_utf8_substr( $str, 1, geodir_utf8_strlen( $str, $encoding ), $encoding );
1221
+		}
1222 1222
         
1223
-        return $first_letter . $str_end;
1224
-    }
1223
+		return $first_letter . $str_end;
1224
+	}
1225 1225
 
1226
-    return ucfirst( $str );
1226
+	return ucfirst( $str );
1227 1227
 }
1228 1228
 
1229 1229
 function geodir_total_listings_count($post_type = false)
Please login to merge, or discard this patch.
Spacing   +177 added lines, -177 removed lines patch added patch discarded remove patch
@@ -13,11 +13,11 @@  discard block
 block discarded – undo
13 13
  * @since 1.4.6
14 14
  * @return int|null Return the page ID if present or null if not.
15 15
  */
16
-function geodir_add_listing_page_id(){
16
+function geodir_add_listing_page_id() {
17 17
     $gd_page_id = get_option('geodir_add_listing_page');
18 18
 
19 19
     if (geodir_is_wpml()) {
20
-        $gd_page_id =  geodir_wpml_object_id($gd_page_id, 'page', true);
20
+        $gd_page_id = geodir_wpml_object_id($gd_page_id, 'page', true);
21 21
     }
22 22
 
23 23
     return $gd_page_id;
@@ -30,11 +30,11 @@  discard block
 block discarded – undo
30 30
  * @since 1.4.6
31 31
  * @return int|null Return the page ID if present or null if not.
32 32
  */
33
-function geodir_preview_page_id(){
33
+function geodir_preview_page_id() {
34 34
     $gd_page_id = get_option('geodir_preview_page');
35 35
 
36 36
     if (geodir_is_wpml()) {
37
-        $gd_page_id =  geodir_wpml_object_id($gd_page_id, 'page', true);
37
+        $gd_page_id = geodir_wpml_object_id($gd_page_id, 'page', true);
38 38
     }
39 39
 
40 40
     return $gd_page_id;
@@ -47,11 +47,11 @@  discard block
 block discarded – undo
47 47
  * @since 1.4.6
48 48
  * @return int|null Return the page ID if present or null if not.
49 49
  */
50
-function geodir_success_page_id(){
50
+function geodir_success_page_id() {
51 51
     $gd_page_id = get_option('geodir_success_page');
52 52
 
53 53
     if (geodir_is_wpml()) {
54
-        $gd_page_id =  geodir_wpml_object_id($gd_page_id, 'page', true);
54
+        $gd_page_id = geodir_wpml_object_id($gd_page_id, 'page', true);
55 55
     }
56 56
 
57 57
     return $gd_page_id;
@@ -64,11 +64,11 @@  discard block
 block discarded – undo
64 64
  * @since 1.4.6
65 65
  * @return int|null Return the page ID if present or null if not.
66 66
  */
67
-function geodir_location_page_id(){
67
+function geodir_location_page_id() {
68 68
     $gd_page_id = get_option('geodir_location_page');
69 69
 
70 70
     if (geodir_is_wpml()) {
71
-        $gd_page_id =  geodir_wpml_object_id($gd_page_id, 'page', true);
71
+        $gd_page_id = geodir_wpml_object_id($gd_page_id, 'page', true);
72 72
     }
73 73
 
74 74
     return $gd_page_id;
@@ -81,11 +81,11 @@  discard block
 block discarded – undo
81 81
  * @since 1.5.4
82 82
  * @return int|null Return the page ID if present or null if not.
83 83
  */
84
-function geodir_home_page_id(){
84
+function geodir_home_page_id() {
85 85
     $gd_page_id = get_option('geodir_home_page');
86 86
 
87 87
     if (geodir_is_wpml()) {
88
-        $gd_page_id =  geodir_wpml_object_id($gd_page_id, 'page', true);
88
+        $gd_page_id = geodir_wpml_object_id($gd_page_id, 'page', true);
89 89
     }
90 90
 
91 91
     return $gd_page_id;
@@ -98,11 +98,11 @@  discard block
 block discarded – undo
98 98
  * @since 1.5.3
99 99
  * @return int|null Return the page ID if present or null if not.
100 100
  */
101
-function geodir_info_page_id(){
101
+function geodir_info_page_id() {
102 102
     $gd_page_id = get_option('geodir_info_page');
103 103
 
104 104
     if (geodir_is_wpml()) {
105
-        $gd_page_id =  geodir_wpml_object_id($gd_page_id, 'page', true);
105
+        $gd_page_id = geodir_wpml_object_id($gd_page_id, 'page', true);
106 106
     }
107 107
 
108 108
     return $gd_page_id;
@@ -115,11 +115,11 @@  discard block
 block discarded – undo
115 115
  * @since 1.5.3
116 116
  * @return int|null Return the page ID if present or null if not.
117 117
  */
118
-function geodir_login_page_id(){
118
+function geodir_login_page_id() {
119 119
     $gd_page_id = get_option('geodir_login_page');
120 120
 
121 121
     if (geodir_is_wpml()) {
122
-        $gd_page_id =  geodir_wpml_object_id($gd_page_id, 'page', true);
122
+        $gd_page_id = geodir_wpml_object_id($gd_page_id, 'page', true);
123 123
     }
124 124
 
125 125
     return $gd_page_id;
@@ -133,20 +133,20 @@  discard block
 block discarded – undo
133 133
  * @since 1.5.3
134 134
  * @return int|null Return the page ID if present or null if not.
135 135
  */
136
-function geodir_login_url($args=array()){
136
+function geodir_login_url($args = array()) {
137 137
     $gd_page_id = get_option('geodir_login_page');
138 138
 
139 139
     if (geodir_is_wpml()) {
140
-        $gd_page_id =  geodir_wpml_object_id($gd_page_id, 'page', true);
140
+        $gd_page_id = geodir_wpml_object_id($gd_page_id, 'page', true);
141 141
     }
142 142
 
143 143
     if (function_exists('geodir_location_geo_home_link')) {
144 144
         remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
145 145
     }
146 146
 
147
-    if (geodir_is_wpml()){
147
+    if (geodir_is_wpml()) {
148 148
         $home_url = icl_get_home_url();
149
-    }else{
149
+    } else {
150 150
         $home_url = home_url();
151 151
     }
152 152
 
@@ -154,17 +154,17 @@  discard block
 block discarded – undo
154 154
         add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
155 155
     }
156 156
 
157
-    if($gd_page_id){
157
+    if ($gd_page_id) {
158 158
         $post = get_post($gd_page_id);
159 159
         $slug = $post->post_name;
160 160
         //$login_url = get_permalink($gd_page_id );// get_permalink can only be user after theme-Setup hook, any earlier and it errors
161 161
         $login_url = trailingslashit($home_url)."$slug/";
162
-    }else{
162
+    } else {
163 163
         $login_url = trailingslashit($home_url)."?geodir_signup=true";
164 164
     }
165 165
 
166
-    if($args){
167
-        $login_url = add_query_arg($args,$login_url );
166
+    if ($args) {
167
+        $login_url = add_query_arg($args, $login_url);
168 168
     }
169 169
 
170 170
     /**
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
      * @param array $args The array of query args used.
179 179
      * @param int $gd_page_id The page id of the GD login page.
180 180
      */
181
-	    return apply_filters('geodir_login_url',$login_url,$args,$gd_page_id);
181
+	    return apply_filters('geodir_login_url', $login_url, $args, $gd_page_id);
182 182
 }
183 183
 
184 184
 /**
@@ -189,20 +189,20 @@  discard block
 block discarded – undo
189 189
  * @since 1.5.16 Added WPML lang code to url.
190 190
  * @return string Info page url.
191 191
  */
192
-function geodir_info_url($args=array()){
192
+function geodir_info_url($args = array()) {
193 193
     $gd_page_id = get_option('geodir_info_page');
194 194
 
195 195
     if (geodir_is_wpml()) {
196
-        $gd_page_id =  geodir_wpml_object_id($gd_page_id, 'page', true);
196
+        $gd_page_id = geodir_wpml_object_id($gd_page_id, 'page', true);
197 197
     }
198 198
 
199 199
     if (function_exists('geodir_location_geo_home_link')) {
200 200
         remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
201 201
     }
202 202
 
203
-    if (geodir_is_wpml()){
203
+    if (geodir_is_wpml()) {
204 204
         $home_url = icl_get_home_url();
205
-    }else{
205
+    } else {
206 206
         $home_url = home_url();
207 207
     }
208 208
 
@@ -210,17 +210,17 @@  discard block
 block discarded – undo
210 210
         add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
211 211
     }
212 212
 
213
-    if($gd_page_id){
213
+    if ($gd_page_id) {
214 214
         $post = get_post($gd_page_id);
215 215
         $slug = $post->post_name;
216 216
         //$login_url = get_permalink($gd_page_id );// get_permalink can only be user after theme-Setup hook, any earlier and it errors
217 217
         $info_url = trailingslashit($home_url)."$slug/";
218
-    }else{
218
+    } else {
219 219
         $info_url = trailingslashit($home_url);
220 220
     }
221 221
 
222
-    if($args){
223
-        $info_url = add_query_arg($args,$info_url );
222
+    if ($args) {
223
+        $info_url = add_query_arg($args, $info_url);
224 224
     }
225 225
 
226 226
     return $info_url;
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
  * @param string $charset Character set to use for conversion.
239 239
  * @return string Returns converted string.
240 240
  */
241
-function geodir_ucwords($string, $charset='UTF-8') {
241
+function geodir_ucwords($string, $charset = 'UTF-8') {
242 242
     if (function_exists('mb_convert_case')) {
243 243
         return mb_convert_case($string, MB_CASE_TITLE, $charset);
244 244
     } else {
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
  * @param string $charset Character set to use for conversion.
259 259
  * @return string Returns converted string.
260 260
  */
261
-function geodir_strtolower($string, $charset='UTF-8') {
261
+function geodir_strtolower($string, $charset = 'UTF-8') {
262 262
     if (function_exists('mb_convert_case')) {
263 263
         return mb_convert_case($string, MB_CASE_LOWER, $charset);
264 264
     } else {
@@ -278,7 +278,7 @@  discard block
 block discarded – undo
278 278
  * @param string $charset Character set to use for conversion.
279 279
  * @return string Returns converted string.
280 280
  */
281
-function geodir_strtoupper($string, $charset='UTF-8') {
281
+function geodir_strtoupper($string, $charset = 'UTF-8') {
282 282
     if (function_exists('mb_convert_case')) {
283 283
         return mb_convert_case($string, MB_CASE_UPPER, $charset);
284 284
     } else {
@@ -309,7 +309,7 @@  discard block
 block discarded – undo
309 309
 	
310 310
 	$url = trim($parts[0]);
311 311
 	if ($formatted && $url != '') {
312
-		$url = str_replace( ' ', '%20', $url );
312
+		$url = str_replace(' ', '%20', $url);
313 313
 		$url = preg_replace('|[^a-z0-9-~+_.?#=!&;,/:%@$\|*\'()\[\]\\x80-\\xff]|i', '', $url);
314 314
 		
315 315
 		if (0 !== stripos($url, 'mailto:')) {
@@ -319,8 +319,8 @@  discard block
 block discarded – undo
319 319
 		
320 320
 		$url = str_replace(';//', '://', $url);
321 321
 		
322
-		if (strpos($url, ':') === false && ! in_array($url[0], array('/', '#', '?')) && !preg_match('/^[a-z0-9-]+?\.php/i', $url)) {
323
-			$url = 'http://' . $url;
322
+		if (strpos($url, ':') === false && !in_array($url[0], array('/', '#', '?')) && !preg_match('/^[a-z0-9-]+?\.php/i', $url)) {
323
+			$url = 'http://'.$url;
324 324
 		}
325 325
 		
326 326
 		$url = wp_kses_normalize_entities($url);
@@ -462,7 +462,7 @@  discard block
 block discarded – undo
462 462
  * @package GeoDirectory
463 463
  */
464 464
 function _gd_die_handler() {
465
-    if ( defined( 'GD_TESTING_MODE' ) ) {
465
+    if (defined('GD_TESTING_MODE')) {
466 466
         return '_gd_die_handler';
467 467
     } else {
468 468
         die();
@@ -480,10 +480,10 @@  discard block
 block discarded – undo
480 480
  * @param string $title   Optional. Error title.
481 481
  * @param int $status     Optional. Status code.
482 482
  */
483
-function gd_die( $message = '', $title = '', $status = 400 ) {
484
-    add_filter( 'wp_die_ajax_handler', '_gd_die_handler', 10, 3 );
485
-    add_filter( 'wp_die_handler', '_gd_die_handler', 10, 3 );
486
-    wp_die( $message, $title, array( 'response' => $status ));
483
+function gd_die($message = '', $title = '', $status = 400) {
484
+    add_filter('wp_die_ajax_handler', '_gd_die_handler', 10, 3);
485
+    add_filter('wp_die_handler', '_gd_die_handler', 10, 3);
486
+    wp_die($message, $title, array('response' => $status));
487 487
 }
488 488
 
489 489
 /*
@@ -493,7 +493,7 @@  discard block
 block discarded – undo
493 493
  * @param string $php_format The PHP date format.
494 494
  * @return string The jQuery format date string.
495 495
  */
496
-function geodir_date_format_php_to_jqueryui( $php_format ) {
496
+function geodir_date_format_php_to_jqueryui($php_format) {
497 497
 	$symbols = array(
498 498
 		// Day
499 499
 		'd' => 'dd',
@@ -533,27 +533,27 @@  discard block
 block discarded – undo
533 533
 	$jqueryui_format = "";
534 534
 	$escaping = false;
535 535
 
536
-	for ( $i = 0; $i < strlen( $php_format ); $i++ ) {
536
+	for ($i = 0; $i < strlen($php_format); $i++) {
537 537
 		$char = $php_format[$i];
538 538
 
539 539
 		// PHP date format escaping character
540
-		if ( $char === '\\' ) {
540
+		if ($char === '\\') {
541 541
 			$i++;
542 542
 
543
-			if ( $escaping ) {
543
+			if ($escaping) {
544 544
 				$jqueryui_format .= $php_format[$i];
545 545
 			} else {
546
-				$jqueryui_format .= '\'' . $php_format[$i];
546
+				$jqueryui_format .= '\''.$php_format[$i];
547 547
 			}
548 548
 
549 549
 			$escaping = true;
550 550
 		} else {
551
-			if ( $escaping ) {
551
+			if ($escaping) {
552 552
 				$jqueryui_format .= "'";
553 553
 				$escaping = false;
554 554
 			}
555 555
 
556
-			if ( isset( $symbols[$char] ) ) {
556
+			if (isset($symbols[$char])) {
557 557
 				$jqueryui_format .= $symbols[$char];
558 558
 			} else {
559 559
 				$jqueryui_format .= $char;
@@ -574,81 +574,81 @@  discard block
 block discarded – undo
574 574
  * @since 1.6.22 Genitive month added.
575 575
  * @since 1.6.26 Date translation issue in German language - FIXED.
576 576
  */
577
-function geodir_maybe_untranslate_date( $date ) {
578
-	$date_formated = ' '. $date;
577
+function geodir_maybe_untranslate_date($date) {
578
+	$date_formated = ' '.$date;
579 579
 
580 580
 	$names = array(
581 581
 		// The Weekdays
582
-		'Sunday' => __( 'Sunday' ),
583
-		'Monday' => __( 'Monday' ),
584
-		'Tuesday' => __( 'Tuesday' ),
585
-		'Wednesday' => __( 'Wednesday' ),
586
-		'Thursday' => __( 'Thursday' ),
587
-		'Friday' => __( 'Friday' ),
588
-		'Saturday' => __( 'Saturday' ),
582
+		'Sunday' => __('Sunday'),
583
+		'Monday' => __('Monday'),
584
+		'Tuesday' => __('Tuesday'),
585
+		'Wednesday' => __('Wednesday'),
586
+		'Thursday' => __('Thursday'),
587
+		'Friday' => __('Friday'),
588
+		'Saturday' => __('Saturday'),
589 589
 
590 590
 		// The Months
591
-		'January' => __( 'January' ),
592
-		'February' => __( 'February' ),
593
-		'March' => __( 'March' ),
594
-		'April' => __( 'April' ),
595
-		'May' => __( 'May' ),
596
-		'June' => __( 'June' ),
597
-		'July' => __( 'July' ),
598
-		'August' => __( 'August' ),
599
-		'September' => __( 'September' ),
600
-		'October' => __( 'October' ),
601
-		'November' => __( 'November' ),
602
-		'December' => __( 'December' ),
591
+		'January' => __('January'),
592
+		'February' => __('February'),
593
+		'March' => __('March'),
594
+		'April' => __('April'),
595
+		'May' => __('May'),
596
+		'June' => __('June'),
597
+		'July' => __('July'),
598
+		'August' => __('August'),
599
+		'September' => __('September'),
600
+		'October' => __('October'),
601
+		'November' => __('November'),
602
+		'December' => __('December'),
603 603
 
604 604
 		// Abbreviations for each month.
605
-		'Jan' => _x( 'Jan', 'January abbreviation' ),
606
-		'Feb' => _x( 'Feb', 'February abbreviation' ),
607
-		'Mar' => _x( 'Mar', 'March abbreviation' ),
608
-		'Apr' => _x( 'Apr', 'April abbreviation' ),
609
-		'May' => _x( 'May', 'May abbreviation' ),
610
-		'Jun' => _x( 'Jun', 'June abbreviation' ),
611
-		'Jul' => _x( 'Jul', 'July abbreviation' ),
612
-		'Aug' => _x( 'Aug', 'August abbreviation' ),
613
-		'Sep' => _x( 'Sep', 'September abbreviation' ),
614
-		'Oct' => _x( 'Oct', 'October abbreviation' ),
615
-		'Nov' => _x( 'Nov', 'November abbreviation' ),
616
-		'Dec' => _x( 'Dec', 'December abbreviation' ),
605
+		'Jan' => _x('Jan', 'January abbreviation'),
606
+		'Feb' => _x('Feb', 'February abbreviation'),
607
+		'Mar' => _x('Mar', 'March abbreviation'),
608
+		'Apr' => _x('Apr', 'April abbreviation'),
609
+		'May' => _x('May', 'May abbreviation'),
610
+		'Jun' => _x('Jun', 'June abbreviation'),
611
+		'Jul' => _x('Jul', 'July abbreviation'),
612
+		'Aug' => _x('Aug', 'August abbreviation'),
613
+		'Sep' => _x('Sep', 'September abbreviation'),
614
+		'Oct' => _x('Oct', 'October abbreviation'),
615
+		'Nov' => _x('Nov', 'November abbreviation'),
616
+		'Dec' => _x('Dec', 'December abbreviation'),
617 617
 
618 618
 		// Abbreviations for each day.
619
-		'Sun' => __( 'Sun' ),
620
-		'Mon' => __( 'Mon' ),
621
-		'Tue' => __( 'Tue' ),
622
-		'Wed' => __( 'Wed' ),
623
-		'Thu' => __( 'Thu' ),
624
-		'Fri' => __( 'Fri' ),
625
-		'Sat' => __( 'Sat' ),
619
+		'Sun' => __('Sun'),
620
+		'Mon' => __('Mon'),
621
+		'Tue' => __('Tue'),
622
+		'Wed' => __('Wed'),
623
+		'Thu' => __('Thu'),
624
+		'Fri' => __('Fri'),
625
+		'Sat' => __('Sat'),
626 626
 
627 627
 		// The first letter of each day.
628
-		'S' => _x( 'S', 'Sunday initial' ),
629
-		'M' => _x( 'M', 'Monday initial' ),
630
-		'T' => _x( 'T', 'Tuesday initial' ),
631
-		'W' => _x( 'W', 'Wednesday initial' ),
632
-		'T' => _x( 'T', 'Thursday initial' ),
633
-		'F' => _x( 'F', 'Friday initial' ),
634
-		'S' => _x( 'S', 'Saturday initial' ),
628
+		'S' => _x('S', 'Sunday initial'),
629
+		'M' => _x('M', 'Monday initial'),
630
+		'T' => _x('T', 'Tuesday initial'),
631
+		'W' => _x('W', 'Wednesday initial'),
632
+		'T' => _x('T', 'Thursday initial'),
633
+		'F' => _x('F', 'Friday initial'),
634
+		'S' => _x('S', 'Saturday initial'),
635 635
 
636 636
 		// The Meridiems
637
-		'am' => __( 'am' ),
638
-		'pm' => __( 'pm' ),
639
-		'AM' => __( 'AM' ),
640
-		'PM' => __( 'PM' )
637
+		'am' => __('am'),
638
+		'pm' => __('pm'),
639
+		'AM' => __('AM'),
640
+		'PM' => __('PM')
641 641
 	);
642 642
 
643
-	foreach ( $names as $name => $translation ) {
644
-		if ( $translation && trim( $translation ) != '' ) {
645
-			$date_formated = preg_replace( "/([^\\\])" . $name . "/", "\\1" . backslashit( $name ), $date_formated );
646
-			$date_formated = preg_replace( "/([^\\\])" . $translation . "/", "\\1" . backslashit( $name ), $date_formated );
643
+	foreach ($names as $name => $translation) {
644
+		if ($translation && trim($translation) != '') {
645
+			$date_formated = preg_replace("/([^\\\])".$name."/", "\\1".backslashit($name), $date_formated);
646
+			$date_formated = preg_replace("/([^\\\])".$translation."/", "\\1".backslashit($name), $date_formated);
647 647
 		}
648 648
 	}
649 649
 
650
-	$date_formated = substr( $date_formated, 1, strlen( $date_formated ) -1 );
651
-	$date = stripslashes( $date_formated );
650
+	$date_formated = substr($date_formated, 1, strlen($date_formated) - 1);
651
+	$date = stripslashes($date_formated);
652 652
 
653 653
 	return $date;
654 654
 }
@@ -665,30 +665,30 @@  discard block
 block discarded – undo
665 665
  * @param bool $locale True to retrieve the date in localized format. Default false.
666 666
  * @return string The formatted date.
667 667
  */
668
-function geodir_date( $date_input, $date_to, $date_from = '', $locale = false ) {
669
-    if ( empty( $date_input ) || empty( $date_to ) ) {
668
+function geodir_date($date_input, $date_to, $date_from = '', $locale = false) {
669
+    if (empty($date_input) || empty($date_to)) {
670 670
         return NULL;
671 671
     }
672 672
     
673
-    $date_input = geodir_maybe_untranslate_date( $date_input );
673
+    $date_input = geodir_maybe_untranslate_date($date_input);
674 674
     
675 675
     $timestamp = 0;
676
-    if (!empty( $date_from ) && function_exists( 'date_create_from_format' ) ) {
677
-        $datetime = date_create_from_format( $date_from, $date_input );
678
-        if ( !empty( $datetime ) ) {
676
+    if (!empty($date_from) && function_exists('date_create_from_format')) {
677
+        $datetime = date_create_from_format($date_from, $date_input);
678
+        if (!empty($datetime)) {
679 679
             $timestamp = $datetime->getTimestamp();
680 680
         }
681 681
     }
682 682
     
683
-    if ( empty( $timestamp ) ) {
684
-        $date = strpos( $date_input, '/' ) !== false ? str_replace( '/', '-', $date_input ) : $date_input;
685
-        $timestamp = strtotime( $date );
683
+    if (empty($timestamp)) {
684
+        $date = strpos($date_input, '/') !== false ? str_replace('/', '-', $date_input) : $date_input;
685
+        $timestamp = strtotime($date);
686 686
     }
687 687
     
688
-    $date = date_i18n( $date_to, $timestamp );
688
+    $date = date_i18n($date_to, $timestamp);
689 689
     
690
-    if ( !$locale ) {
691
-        $date = geodir_maybe_untranslate_date( $date );
690
+    if (!$locale) {
691
+        $date = geodir_maybe_untranslate_date($date);
692 692
     }
693 693
     
694 694
     /**
@@ -703,7 +703,7 @@  discard block
 block discarded – undo
703 703
      * @param string $date_from The source date format.
704 704
      * @param bool $locale True to retrieve the date in localized format.
705 705
      */
706
-    return apply_filters( 'geodir_date', $date, $date_input, $date_to, $date_from, $locale );
706
+    return apply_filters('geodir_date', $date, $date_input, $date_to, $date_from, $locale);
707 707
 }
708 708
 
709 709
 /**
@@ -728,7 +728,7 @@  discard block
 block discarded – undo
728 728
  * @return string Trimmed string.
729 729
  */
730 730
 function geodir_excerpt($text, $length = 100, $options = array()) {
731
-    if (!(int)$length > 0) {
731
+    if (!(int) $length > 0) {
732 732
         return $text;
733 733
     }
734 734
     $default = array(
@@ -790,7 +790,7 @@  discard block
 block discarded – undo
790 790
         $length = $truncateLength;
791 791
 
792 792
         foreach ($openTags as $tag) {
793
-            $suffix .= '</' . $tag . '>';
793
+            $suffix .= '</'.$tag.'>';
794 794
         }
795 795
     } else {
796 796
         if (geodir_strlen($text, $options) <= $length) {
@@ -812,7 +812,7 @@  discard block
 block discarded – undo
812 812
         }
813 813
     }
814 814
 
815
-    return $prefix . $result . $suffix;
815
+    return $prefix.$result.$suffix;
816 816
 }
817 817
 
818 818
 /**
@@ -849,7 +849,7 @@  discard block
 block discarded – undo
849 849
     $pattern = '/&[0-9a-z]{2,8};|&#[0-9]{1,7};|&#x[0-9a-f]{1,6};/i';
850 850
     $replace = preg_replace_callback(
851 851
         $pattern,
852
-        function ($match) use ($strlen) {
852
+        function($match) use ($strlen) {
853 853
             $utf8 = html_entity_decode($match[0], ENT_HTML5 | ENT_QUOTES, 'UTF-8');
854 854
 
855 855
             return str_repeat(' ', $strlen($utf8, 'UTF-8'));
@@ -910,7 +910,7 @@  discard block
 block discarded – undo
910 910
     }
911 911
 
912 912
     if (empty($options['html'])) {
913
-        return (string)$substr($text, $start, $length);
913
+        return (string) $substr($text, $start, $length);
914 914
     }
915 915
 
916 916
     $totalOffset = 0;
@@ -935,7 +935,7 @@  discard block
 block discarded – undo
935 935
 
936 936
         $len = geodir_strlen($part, $options);
937 937
         if ($offset !== 0 || $totalLength + $len > $length) {
938
-            if (strpos($part, '&') === 0 && preg_match($pattern, $part) && $part !== html_entity_decode($part, ENT_HTML5 | ENT_QUOTES, 'UTF-8') ) {
938
+            if (strpos($part, '&') === 0 && preg_match($pattern, $part) && $part !== html_entity_decode($part, ENT_HTML5 | ENT_QUOTES, 'UTF-8')) {
939 939
                 // Entities cannot be passed substr.
940 940
                 continue;
941 941
             }
@@ -981,39 +981,39 @@  discard block
 block discarded – undo
981 981
     return '';
982 982
 }
983 983
 
984
-function geodir_tool_restore_cpt_from_taxonomies(){
984
+function geodir_tool_restore_cpt_from_taxonomies() {
985 985
 
986 986
 	$cpts = get_option('geodir_post_types');
987 987
 
988
-	if(!empty($cpts)){return;}
988
+	if (!empty($cpts)) {return; }
989 989
 
990 990
 	$taxonomies = get_option('geodir_taxonomies');
991 991
 
992
-	if(empty($taxonomies)){return;}
992
+	if (empty($taxonomies)) {return; }
993 993
 
994 994
 	$cpts = array();
995 995
 
996
-	foreach($taxonomies as $key => $val){
996
+	foreach ($taxonomies as $key => $val) {
997 997
 
998
-		if(strpos($val['listing_slug'], '/') === false) {
999
-			$cpts[$val['object_type']] = array('cpt'=>$val['object_type'],'slug'=>$val['listing_slug']);
998
+		if (strpos($val['listing_slug'], '/') === false) {
999
+			$cpts[$val['object_type']] = array('cpt'=>$val['object_type'], 'slug'=>$val['listing_slug']);
1000 1000
 		}
1001 1001
 
1002 1002
 	}
1003 1003
 
1004
-	if(empty($cpts)){return;}
1004
+	if (empty($cpts)) {return; }
1005 1005
 
1006 1006
 
1007 1007
 	$cpts_restore = $cpts;
1008 1008
 
1009
-	foreach($cpts as $cpt){
1009
+	foreach ($cpts as $cpt) {
1010 1010
 
1011 1011
 
1012
-		$is_custom = $cpt['cpt']=='gd_place' ? 0 : 1;
1012
+		$is_custom = $cpt['cpt'] == 'gd_place' ? 0 : 1;
1013 1013
 
1014
-		$cpts_restore[$cpt['cpt']] = array (
1014
+		$cpts_restore[$cpt['cpt']] = array(
1015 1015
 				'labels' =>
1016
-					array (
1016
+					array(
1017 1017
 						'name' => $cpt['slug'],
1018 1018
 						'singular_name' => $cpt['slug'],
1019 1019
 						'add_new' => 'Add New',
@@ -1041,14 +1041,14 @@  discard block
 block discarded – undo
1041 1041
 				'public' => true,
1042 1042
 				'query_var' => true,
1043 1043
 				'rewrite' =>
1044
-					array (
1044
+					array(
1045 1045
 						'slug' => $cpt['slug'],
1046 1046
 						'with_front' => false,
1047 1047
 						'hierarchical' => true,
1048 1048
 						'feeds' => true,
1049 1049
 					),
1050 1050
 				'supports' =>
1051
-					array (
1051
+					array(
1052 1052
 						0 => 'title',
1053 1053
 						1 => 'editor',
1054 1054
 						2 => 'author',
@@ -1058,14 +1058,14 @@  discard block
 block discarded – undo
1058 1058
 						6 => 'comments',
1059 1059
 					),
1060 1060
 				'taxonomies' =>
1061
-					array (
1061
+					array(
1062 1062
 						0 => $cpt['cpt'].'category',
1063 1063
 						1 => $cpt['cpt'].'_tags',
1064 1064
 					),
1065 1065
 				'is_custom' => $is_custom,
1066 1066
 				'listing_order' => '1',
1067 1067
 				'seo' =>
1068
-					array (
1068
+					array(
1069 1069
 						'meta_keyword' => '',
1070 1070
 						'meta_description' => '',
1071 1071
 					),
@@ -1077,7 +1077,7 @@  discard block
 block discarded – undo
1077 1077
 	}
1078 1078
 
1079 1079
 
1080
-	update_option('geodir_post_types',$cpts_restore);
1080
+	update_option('geodir_post_types', $cpts_restore);
1081 1081
 
1082 1082
 }
1083 1083
 
@@ -1095,12 +1095,12 @@  discard block
 block discarded – undo
1095 1095
  * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8".
1096 1096
  * @return string
1097 1097
  */
1098
-function geodir_utf8_strimwidth( $str, $start, $width, $trimmaker = '', $encoding = 'UTF-8' ) {
1099
-    if ( function_exists( 'mb_strimwidth' ) ) {
1100
-        return mb_strimwidth( $str, $start, $width, $trimmaker, $encoding );
1098
+function geodir_utf8_strimwidth($str, $start, $width, $trimmaker = '', $encoding = 'UTF-8') {
1099
+    if (function_exists('mb_strimwidth')) {
1100
+        return mb_strimwidth($str, $start, $width, $trimmaker, $encoding);
1101 1101
     }
1102 1102
     
1103
-    return geodir_utf8_substr( $str, $start, $width, $encoding ) . $trimmaker;
1103
+    return geodir_utf8_substr($str, $start, $width, $encoding).$trimmaker;
1104 1104
 }
1105 1105
 
1106 1106
 /**
@@ -1113,12 +1113,12 @@  discard block
 block discarded – undo
1113 1113
  * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8".
1114 1114
  * @return int Returns the number of characters in string.
1115 1115
  */
1116
-function geodir_utf8_strlen( $str, $encoding = 'UTF-8' ) {
1117
-    if ( function_exists( 'mb_strlen' ) ) {
1118
-        return mb_strlen( $str, $encoding );
1116
+function geodir_utf8_strlen($str, $encoding = 'UTF-8') {
1117
+    if (function_exists('mb_strlen')) {
1118
+        return mb_strlen($str, $encoding);
1119 1119
     }
1120 1120
         
1121
-    return strlen( $str );
1121
+    return strlen($str);
1122 1122
 }
1123 1123
 
1124 1124
 /**
@@ -1133,12 +1133,12 @@  discard block
 block discarded – undo
1133 1133
  * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8".
1134 1134
  * @return int Returns the position of the first occurrence of search in the string.
1135 1135
  */
1136
-function geodir_utf8_strpos( $str, $find, $offset = 0, $encoding = 'UTF-8' ) {
1137
-    if ( function_exists( 'mb_strpos' ) ) {
1138
-        return mb_strpos( $str, $find, $offset, $encoding );
1136
+function geodir_utf8_strpos($str, $find, $offset = 0, $encoding = 'UTF-8') {
1137
+    if (function_exists('mb_strpos')) {
1138
+        return mb_strpos($str, $find, $offset, $encoding);
1139 1139
     }
1140 1140
         
1141
-    return strpos( $str, $find, $offset );
1141
+    return strpos($str, $find, $offset);
1142 1142
 }
1143 1143
 
1144 1144
 /**
@@ -1153,12 +1153,12 @@  discard block
 block discarded – undo
1153 1153
  * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8".
1154 1154
  * @return int Returns the position of the last occurrence of search.
1155 1155
  */
1156
-function geodir_utf8_strrpos( $str, $find, $offset = 0, $encoding = 'UTF-8' ) {
1157
-    if ( function_exists( 'mb_strrpos' ) ) {
1158
-        return mb_strrpos( $str, $find, $offset, $encoding );
1156
+function geodir_utf8_strrpos($str, $find, $offset = 0, $encoding = 'UTF-8') {
1157
+    if (function_exists('mb_strrpos')) {
1158
+        return mb_strrpos($str, $find, $offset, $encoding);
1159 1159
     }
1160 1160
         
1161
-    return strrpos( $str, $find, $offset );
1161
+    return strrpos($str, $find, $offset);
1162 1162
 }
1163 1163
 
1164 1164
 /**
@@ -1174,16 +1174,16 @@  discard block
 block discarded – undo
1174 1174
  * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8".
1175 1175
  * @return string
1176 1176
  */
1177
-function geodir_utf8_substr( $str, $start, $length = null, $encoding = 'UTF-8' ) {
1178
-    if ( function_exists( 'mb_substr' ) ) {
1179
-        if ( $length === null ) {
1180
-            return mb_substr( $str, $start, geodir_utf8_strlen( $str, $encoding ), $encoding );
1177
+function geodir_utf8_substr($str, $start, $length = null, $encoding = 'UTF-8') {
1178
+    if (function_exists('mb_substr')) {
1179
+        if ($length === null) {
1180
+            return mb_substr($str, $start, geodir_utf8_strlen($str, $encoding), $encoding);
1181 1181
         } else {
1182
-            return mb_substr( $str, $start, $length, $encoding );
1182
+            return mb_substr($str, $start, $length, $encoding);
1183 1183
         }
1184 1184
     }
1185 1185
         
1186
-    return substr( $str, $start, $length );
1186
+    return substr($str, $start, $length);
1187 1187
 }
1188 1188
 
1189 1189
 /**
@@ -1196,12 +1196,12 @@  discard block
 block discarded – undo
1196 1196
  * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8".
1197 1197
  * @return string The width of string.
1198 1198
  */
1199
-function geodir_utf8_strwidth( $str, $encoding = 'UTF-8' ) {
1200
-	if ( function_exists( 'mb_strwidth' ) ) {
1201
-		return mb_strwidth( $str, $encoding );
1199
+function geodir_utf8_strwidth($str, $encoding = 'UTF-8') {
1200
+	if (function_exists('mb_strwidth')) {
1201
+		return mb_strwidth($str, $encoding);
1202 1202
 	}
1203 1203
 
1204
-	return geodir_utf8_strlen( $str, $encoding );
1204
+	return geodir_utf8_strlen($str, $encoding);
1205 1205
 }
1206 1206
 
1207 1207
 /**
@@ -1215,21 +1215,21 @@  discard block
 block discarded – undo
1215 1215
  * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8".
1216 1216
  * @return string The resulting string.
1217 1217
  */
1218
-function geodir_utf8_ucfirst( $str, $lower_str_end = false, $encoding = 'UTF-8' ) {
1219
-    if ( function_exists( 'mb_strlen' ) ) {
1220
-        $first_letter = geodir_strtoupper( geodir_utf8_substr( $str, 0, 1, $encoding ), $encoding );
1218
+function geodir_utf8_ucfirst($str, $lower_str_end = false, $encoding = 'UTF-8') {
1219
+    if (function_exists('mb_strlen')) {
1220
+        $first_letter = geodir_strtoupper(geodir_utf8_substr($str, 0, 1, $encoding), $encoding);
1221 1221
         $str_end = "";
1222 1222
         
1223
-        if ( $lower_str_end ) {
1224
-            $str_end = geodir_strtolower( geodir_utf8_substr( $str, 1, geodir_utf8_strlen( $str, $encoding ), $encoding ), $encoding );
1223
+        if ($lower_str_end) {
1224
+            $str_end = geodir_strtolower(geodir_utf8_substr($str, 1, geodir_utf8_strlen($str, $encoding), $encoding), $encoding);
1225 1225
         } else {
1226
-            $str_end = geodir_utf8_substr( $str, 1, geodir_utf8_strlen( $str, $encoding ), $encoding );
1226
+            $str_end = geodir_utf8_substr($str, 1, geodir_utf8_strlen($str, $encoding), $encoding);
1227 1227
         }
1228 1228
         
1229
-        return $first_letter . $str_end;
1229
+        return $first_letter.$str_end;
1230 1230
     }
1231 1231
 
1232
-    return ucfirst( $str );
1232
+    return ucfirst($str);
1233 1233
 }
1234 1234
 
1235 1235
 function geodir_total_listings_count($post_type = false)
@@ -1239,13 +1239,13 @@  discard block
 block discarded – undo
1239 1239
 	$count = 0;
1240 1240
 	
1241 1241
 	if ($post_type) {
1242
-		$count = $count + $wpdb->get_var("select count(post_id) from " . $wpdb->prefix . "geodir_" . $post_type . "_detail");
1242
+		$count = $count + $wpdb->get_var("select count(post_id) from ".$wpdb->prefix."geodir_".$post_type."_detail");
1243 1243
 	} else {
1244 1244
 		$all_postypes = geodir_get_posttypes();
1245 1245
 
1246 1246
 		if (!empty($all_postypes)) {
1247 1247
 			foreach ($all_postypes as $key) {
1248
-				$count = $count + $wpdb->get_var("select count(post_id) from " . $wpdb->prefix . "geodir_" . $key . "_detail");
1248
+				$count = $count + $wpdb->get_var("select count(post_id) from ".$wpdb->prefix."geodir_".$key."_detail");
1249 1249
 			}
1250 1250
 		}	
1251 1251
 	}
Please login to merge, or discard this patch.
geodirectory-templates/listing-filter-form.php 2 patches
Indentation   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -13,26 +13,26 @@  discard block
 block discarded – undo
13 13
 global $wp_query, $current_term, $query;
14 14
 
15 15
 if (function_exists('geodir_location_geo_home_link')) {
16
-    remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
16
+	remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
17 17
 }
18 18
 
19 19
 if (geodir_is_wpml() && defined('DOING_AJAX') && DOING_AJAX){
20
-    $search_url = icl_get_home_url();
20
+	$search_url = icl_get_home_url();
21 21
 } else {
22
-    $search_url = get_home_url();
22
+	$search_url = get_home_url();
23 23
 }
24 24
 
25 25
 $search_url = trailingslashit($search_url);
26 26
 
27 27
 if (function_exists('geodir_location_geo_home_link')) {
28
-    add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
28
+	add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
29 29
 }
30 30
 
31 31
 $new_style = get_option('geodir_show_search_old_search_from') ? false : true;
32 32
 $form_class = 'geodir-listing-search';
33 33
 
34 34
 if($new_style){
35
-    $form_class .= ' gd-search-bar-style';
35
+	$form_class .= ' gd-search-bar-style';
36 36
 }
37 37
 ?>
38 38
 <form class="<?php
@@ -49,56 +49,56 @@  discard block
 block discarded – undo
49 49
     <div class="geodir-loc-bar">
50 50
 
51 51
         <?php
52
-        /**
53
-         * Called inside the search form but before any of the fields.
54
-         *
55
-         * @since 1.0.0
56
-         */
57
-        do_action('geodir_before_search_form') ?>
52
+		/**
53
+		 * Called inside the search form but before any of the fields.
54
+		 *
55
+		 * @since 1.0.0
56
+		 */
57
+		do_action('geodir_before_search_form') ?>
58 58
 
59 59
         <div class="clearfix geodir-loc-bar-in">
60 60
             <div class="geodir-search">
61 61
 
62 62
                 <?php
63 63
 
64
-                /**
65
-                 * Adds the input fields to the search form.
66
-                 *
67
-                 * @since 1.6.9
68
-                 */
69
-                do_action('geodir_search_form_inputs');
64
+				/**
65
+				 * Adds the input fields to the search form.
66
+				 *
67
+				 * @since 1.6.9
68
+				 */
69
+				do_action('geodir_search_form_inputs');
70 70
 
71 71
 
72 72
 
73
-                /**
74
-                 * Called on the GD search form just before the search button.
75
-                 *
76
-                 * @since 1.0.0
77
-                 */
78
-                do_action('geodir_before_search_button');
73
+				/**
74
+				 * Called on the GD search form just before the search button.
75
+				 *
76
+				 * @since 1.0.0
77
+				 */
78
+				do_action('geodir_before_search_button');
79 79
 
80 80
                 
81
-                /**
82
-                 * Called on the GD search form just after the search button.
83
-                 *
84
-                 * @since 1.0.0
85
-                 */
86
-                do_action('geodir_after_search_button');
81
+				/**
82
+				 * Called on the GD search form just after the search button.
83
+				 *
84
+				 * @since 1.0.0
85
+				 */
86
+				do_action('geodir_after_search_button');
87 87
 
88 88
                 
89
-                ?>
89
+				?>
90 90
             </div>
91 91
 
92 92
 
93 93
         </div>
94 94
 
95 95
         <?php
96
-        /**
97
-         * Called inside the search form but after all the input fields.
98
-         *
99
-         * @since 1.0.0
100
-         */
101
-        do_action('geodir_after_search_form') ?>
96
+		/**
97
+		 * Called inside the search form but after all the input fields.
98
+		 *
99
+		 * @since 1.0.0
100
+		 */
101
+		do_action('geodir_after_search_form') ?>
102 102
 
103 103
 
104 104
     </div>
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
     remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
17 17
 }
18 18
 
19
-if (geodir_is_wpml() && defined('DOING_AJAX') && DOING_AJAX){
19
+if (geodir_is_wpml() && defined('DOING_AJAX') && DOING_AJAX) {
20 20
     $search_url = icl_get_home_url();
21 21
 } else {
22 22
     $search_url = get_home_url();
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
 $new_style = get_option('geodir_show_search_old_search_from') ? false : true;
32 32
 $form_class = 'geodir-listing-search';
33 33
 
34
-if($new_style){
34
+if ($new_style) {
35 35
     $form_class .= ' gd-search-bar-style';
36 36
 }
37 37
 ?>
Please login to merge, or discard this patch.
geodirectory-functions/compatibility/Avada.php 3 patches
Indentation   +103 added lines, -103 removed lines patch added patch discarded remove patch
@@ -18,10 +18,10 @@  discard block
 block discarded – undo
18 18
  */
19 19
 function gd_strip_breadcrumb_wrappers($breadcrumb)
20 20
 {
21
-    $breadcrumb = str_replace(array("<li>","</li>"), "", $breadcrumb);
22
-    $breadcrumb = str_replace('<div class="geodir-breadcrumb clearfix"><ul id="breadcrumbs">', '<ul class="fusion-breadcrumbs"><li>', $breadcrumb);
23
-    $breadcrumb = str_replace('</ul></div>', '</li></ul>', $breadcrumb);
24
-    return $breadcrumb;
21
+	$breadcrumb = str_replace(array("<li>","</li>"), "", $breadcrumb);
22
+	$breadcrumb = str_replace('<div class="geodir-breadcrumb clearfix"><ul id="breadcrumbs">', '<ul class="fusion-breadcrumbs"><li>', $breadcrumb);
23
+	$breadcrumb = str_replace('</ul></div>', '</li></ul>', $breadcrumb);
24
+	return $breadcrumb;
25 25
 }
26 26
 
27 27
 add_filter('geodir_breadcrumb_separator', 'gd_change_breadcrumb_separator');
@@ -35,8 +35,8 @@  discard block
 block discarded – undo
35 35
  */
36 36
 function gd_change_breadcrumb_separator($separator)
37 37
 {
38
-    $separator = ' / ';
39
-    return $separator;
38
+	$separator = ' / ';
39
+	return $separator;
40 40
 }
41 41
 
42 42
 add_action('avada_override_current_page_title_bar','gd_avada_current_page_title_bar_change');
@@ -49,11 +49,11 @@  discard block
 block discarded – undo
49 49
  */
50 50
 function gd_avada_current_page_title_bar_change($c_pageID)
51 51
 {
52
-    if (geodir_is_geodir_page()) {
53
-        gd_avada_current_page_title_bar();
54
-    }else{
55
-        avada_current_page_title_bar( $c_pageID );
56
-    }
52
+	if (geodir_is_geodir_page()) {
53
+		gd_avada_current_page_title_bar();
54
+	}else{
55
+		avada_current_page_title_bar( $c_pageID );
56
+	}
57 57
 
58 58
 }
59 59
 
@@ -65,44 +65,44 @@  discard block
 block discarded – undo
65 65
  */
66 66
 function gd_avada_current_page_title_bar()
67 67
 {
68
-    ob_start();
69
-    geodir_breadcrumb();
70
-    $secondary_content = ob_get_contents();
71
-    ob_get_clean();
72
-
73
-    $title = '';
74
-    $subtitle = '';
75
-
76
-    if (geodir_is_page('listing')) {
77
-        ob_start(); // Start buffering;
78
-        geodir_action_listings_title();
79
-        $title = ob_get_clean();
80
-        avada_page_title_bar($title, $subtitle, $secondary_content);
81
-    }elseif (geodir_is_page('add-listing')) {
82
-        ob_start(); // Start buffering;
83
-        geodir_action_add_listing_page_title();
84
-        $title = ob_get_clean();
85
-        avada_page_title_bar($title, $subtitle, $secondary_content);
86
-    }elseif (geodir_is_page('author')) {
87
-        ob_start(); // Start buffering;
88
-        geodir_action_author_page_title();
89
-        $title = ob_get_clean();
90
-        avada_page_title_bar($title, $subtitle, $secondary_content);
91
-    }elseif (geodir_is_page('detail') || geodir_is_page('preview')) {
92
-        if ( $title = get_post_meta( get_the_ID(), 'pyre_page_title_custom_text', true ) ) {}
93
-        else {
94
-            $title = get_the_title();
95
-        }
96
-        avada_page_title_bar($title, $subtitle, $secondary_content);
97
-    }elseif (geodir_is_page('search')) {
98
-        ob_start(); // Start buffering;
99
-        geodir_action_search_page_title();
100
-        $title = ob_get_clean();
101
-        avada_page_title_bar($title, $subtitle, $secondary_content);
102
-    }else{
103
-        $title = get_the_title();
104
-        avada_page_title_bar($title, $subtitle, $secondary_content);
105
-    }
68
+	ob_start();
69
+	geodir_breadcrumb();
70
+	$secondary_content = ob_get_contents();
71
+	ob_get_clean();
72
+
73
+	$title = '';
74
+	$subtitle = '';
75
+
76
+	if (geodir_is_page('listing')) {
77
+		ob_start(); // Start buffering;
78
+		geodir_action_listings_title();
79
+		$title = ob_get_clean();
80
+		avada_page_title_bar($title, $subtitle, $secondary_content);
81
+	}elseif (geodir_is_page('add-listing')) {
82
+		ob_start(); // Start buffering;
83
+		geodir_action_add_listing_page_title();
84
+		$title = ob_get_clean();
85
+		avada_page_title_bar($title, $subtitle, $secondary_content);
86
+	}elseif (geodir_is_page('author')) {
87
+		ob_start(); // Start buffering;
88
+		geodir_action_author_page_title();
89
+		$title = ob_get_clean();
90
+		avada_page_title_bar($title, $subtitle, $secondary_content);
91
+	}elseif (geodir_is_page('detail') || geodir_is_page('preview')) {
92
+		if ( $title = get_post_meta( get_the_ID(), 'pyre_page_title_custom_text', true ) ) {}
93
+		else {
94
+			$title = get_the_title();
95
+		}
96
+		avada_page_title_bar($title, $subtitle, $secondary_content);
97
+	}elseif (geodir_is_page('search')) {
98
+		ob_start(); // Start buffering;
99
+		geodir_action_search_page_title();
100
+		$title = ob_get_clean();
101
+		avada_page_title_bar($title, $subtitle, $secondary_content);
102
+	}else{
103
+		$title = get_the_title();
104
+		avada_page_title_bar($title, $subtitle, $secondary_content);
105
+	}
106 106
 }
107 107
 
108 108
 /**
@@ -113,34 +113,34 @@  discard block
 block discarded – undo
113 113
  */
114 114
 function gd_compat_php_avada()
115 115
 {
116
-    // change widget wrappers
117
-    //add_filter( 'geodir_before_widget', 'geodir_before_widget_compat',10,1 );
118
-    //add_filter( 'geodir_after_widget', 'geodir_after_widget_compat',10,1 );
119
-
120
-    // REMOVE BREADCRUMB
121
-    remove_action('geodir_detail_before_main_content', 'geodir_breadcrumb', 20);
122
-    remove_action('geodir_listings_before_main_content', 'geodir_breadcrumb', 20);
123
-    remove_action('geodir_author_before_main_content', 'geodir_breadcrumb', 20);
124
-    remove_action('geodir_search_before_main_content', 'geodir_breadcrumb', 20);
125
-    remove_action('geodir_home_before_main_content', 'geodir_breadcrumb', 20);
126
-    remove_action('geodir_location_before_main_content', 'geodir_breadcrumb', 20);
127
-
128
-    // REMOVE PAGE TITLES
129
-    remove_action('geodir_listings_page_title', 'geodir_action_listings_title', 10);
130
-    remove_action('geodir_add_listing_page_title', 'geodir_action_add_listing_page_title', 10);
131
-    remove_action('geodir_details_main_content', 'geodir_action_page_title', 20);
132
-    remove_action('geodir_search_page_title', 'geodir_action_search_page_title', 10);
133
-    remove_action('geodir_author_page_title', 'geodir_action_author_page_title', 10);
134
-
135
-    // make top section wide
136
-    remove_action('geodir_home_before_main_content', 'geodir_action_geodir_sidebar_home_top', 10);
137
-    remove_action('geodir_location_before_main_content', 'geodir_action_geodir_sidebar_home_top', 10);
138
-    remove_action('geodir_author_before_main_content', 'geodir_action_geodir_sidebar_author_top', 10);
139
-    remove_action('geodir_search_before_main_content', 'geodir_action_geodir_sidebar_search_top', 10);
140
-    remove_action('geodir_detail_before_main_content', 'geodir_action_geodir_sidebar_detail_top', 10);
141
-    remove_action('geodir_listings_before_main_content', 'geodir_action_geodir_sidebar_listings_top', 10);
142
-
143
-    //gd_compat_add_top_section_back();
116
+	// change widget wrappers
117
+	//add_filter( 'geodir_before_widget', 'geodir_before_widget_compat',10,1 );
118
+	//add_filter( 'geodir_after_widget', 'geodir_after_widget_compat',10,1 );
119
+
120
+	// REMOVE BREADCRUMB
121
+	remove_action('geodir_detail_before_main_content', 'geodir_breadcrumb', 20);
122
+	remove_action('geodir_listings_before_main_content', 'geodir_breadcrumb', 20);
123
+	remove_action('geodir_author_before_main_content', 'geodir_breadcrumb', 20);
124
+	remove_action('geodir_search_before_main_content', 'geodir_breadcrumb', 20);
125
+	remove_action('geodir_home_before_main_content', 'geodir_breadcrumb', 20);
126
+	remove_action('geodir_location_before_main_content', 'geodir_breadcrumb', 20);
127
+
128
+	// REMOVE PAGE TITLES
129
+	remove_action('geodir_listings_page_title', 'geodir_action_listings_title', 10);
130
+	remove_action('geodir_add_listing_page_title', 'geodir_action_add_listing_page_title', 10);
131
+	remove_action('geodir_details_main_content', 'geodir_action_page_title', 20);
132
+	remove_action('geodir_search_page_title', 'geodir_action_search_page_title', 10);
133
+	remove_action('geodir_author_page_title', 'geodir_action_author_page_title', 10);
134
+
135
+	// make top section wide
136
+	remove_action('geodir_home_before_main_content', 'geodir_action_geodir_sidebar_home_top', 10);
137
+	remove_action('geodir_location_before_main_content', 'geodir_action_geodir_sidebar_home_top', 10);
138
+	remove_action('geodir_author_before_main_content', 'geodir_action_geodir_sidebar_author_top', 10);
139
+	remove_action('geodir_search_before_main_content', 'geodir_action_geodir_sidebar_search_top', 10);
140
+	remove_action('geodir_detail_before_main_content', 'geodir_action_geodir_sidebar_detail_top', 10);
141
+	remove_action('geodir_listings_before_main_content', 'geodir_action_geodir_sidebar_listings_top', 10);
142
+
143
+	//gd_compat_add_top_section_back();
144 144
 
145 145
 }
146 146
 
@@ -152,17 +152,17 @@  discard block
 block discarded – undo
152 152
  * @package GeoDirectory
153 153
  */
154 154
 function gd_compat_add_top_section_back() {
155
-    if (geodir_is_page('home') || geodir_is_page('location')) {
156
-        geodir_action_geodir_sidebar_home_top();
157
-    } elseif (geodir_is_page('listing')) {
158
-        geodir_action_geodir_sidebar_listings_top();
159
-    } elseif (geodir_is_page('detail')) {
160
-        geodir_action_geodir_sidebar_detail_top();
161
-    } elseif (geodir_is_page('search')) {
162
-        geodir_action_geodir_sidebar_search_top();
163
-    } elseif (geodir_is_page('author')) {
164
-        geodir_action_geodir_sidebar_author_top();
165
-    }
155
+	if (geodir_is_page('home') || geodir_is_page('location')) {
156
+		geodir_action_geodir_sidebar_home_top();
157
+	} elseif (geodir_is_page('listing')) {
158
+		geodir_action_geodir_sidebar_listings_top();
159
+	} elseif (geodir_is_page('detail')) {
160
+		geodir_action_geodir_sidebar_detail_top();
161
+	} elseif (geodir_is_page('search')) {
162
+		geodir_action_geodir_sidebar_search_top();
163
+	} elseif (geodir_is_page('author')) {
164
+		geodir_action_geodir_sidebar_author_top();
165
+	}
166 166
 }
167 167
 
168 168
 add_filter('body_class', 'gd_compat_body_class');
@@ -176,12 +176,12 @@  discard block
 block discarded – undo
176 176
  */
177 177
 function gd_compat_body_class($classes)
178 178
 {
179
-    if (geodir_is_geodir_page()) {
180
-        $classes[] = 'wpgeo-avada';
181
-    } else {
182
-        $classes[] = '';
183
-    }
184
-    return $classes;
179
+	if (geodir_is_geodir_page()) {
180
+		$classes[] = 'wpgeo-avada';
181
+	} else {
182
+		$classes[] = '';
183
+	}
184
+	return $classes;
185 185
 }
186 186
 
187 187
 
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
  */
196 196
 function geodir_before_widget_compat($var)
197 197
 {
198
-    return '<div id="%1$s" class="geodir-widget %2$s">';
198
+	return '<div id="%1$s" class="geodir-widget %2$s">';
199 199
 }
200 200
 
201 201
 /**
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
  */
209 209
 function geodir_after_widget_compat($var)
210 210
 {
211
-    return '</div>';
211
+	return '</div>';
212 212
 }
213 213
 
214 214
 add_filter('geodir_search_form_class', 'geodir_search_form_class_avada');
@@ -222,8 +222,8 @@  discard block
 block discarded – undo
222 222
  */
223 223
 function geodir_search_form_class_avada($class)
224 224
 {
225
-    $class .= ' search';
226
-    return $class;
225
+	$class .= ' search';
226
+	return $class;
227 227
 }
228 228
 
229 229
 
@@ -232,11 +232,11 @@  discard block
 block discarded – undo
232 232
 
233 233
 // Avada sets the search page to use wither post or page, we need it to be 'any'
234 234
 function gd_avada_search_filter( $query ) {
235
-    if ( geodir_is_page('search') && is_search() && $query->is_search) {
236
-        $query->set('post_type', 'any');
237
-    }
238
-    return $query;
235
+	if ( geodir_is_page('search') && is_search() && $query->is_search) {
236
+		$query->set('post_type', 'any');
237
+	}
238
+	return $query;
239 239
 }
240 240
 if ( ! is_admin() ) {
241
-    add_filter( 'pre_get_posts', 'gd_avada_search_filter',11 );
241
+	add_filter( 'pre_get_posts', 'gd_avada_search_filter',11 );
242 242
 }
243 243
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
  */
19 19
 function gd_strip_breadcrumb_wrappers($breadcrumb)
20 20
 {
21
-    $breadcrumb = str_replace(array("<li>","</li>"), "", $breadcrumb);
21
+    $breadcrumb = str_replace(array("<li>", "</li>"), "", $breadcrumb);
22 22
     $breadcrumb = str_replace('<div class="geodir-breadcrumb clearfix"><ul id="breadcrumbs">', '<ul class="fusion-breadcrumbs"><li>', $breadcrumb);
23 23
     $breadcrumb = str_replace('</ul></div>', '</li></ul>', $breadcrumb);
24 24
     return $breadcrumb;
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     return $separator;
40 40
 }
41 41
 
42
-add_action('avada_override_current_page_title_bar','gd_avada_current_page_title_bar_change');
42
+add_action('avada_override_current_page_title_bar', 'gd_avada_current_page_title_bar_change');
43 43
 /**
44 44
  * new title bar functions for gd pages.
45 45
  *
@@ -51,8 +51,8 @@  discard block
 block discarded – undo
51 51
 {
52 52
     if (geodir_is_geodir_page()) {
53 53
         gd_avada_current_page_title_bar();
54
-    }else{
55
-        avada_current_page_title_bar( $c_pageID );
54
+    } else {
55
+        avada_current_page_title_bar($c_pageID);
56 56
     }
57 57
 
58 58
 }
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
         $title = ob_get_clean();
90 90
         avada_page_title_bar($title, $subtitle, $secondary_content);
91 91
     }elseif (geodir_is_page('detail') || geodir_is_page('preview')) {
92
-        if ( $title = get_post_meta( get_the_ID(), 'pyre_page_title_custom_text', true ) ) {}
92
+        if ($title = get_post_meta(get_the_ID(), 'pyre_page_title_custom_text', true)) {}
93 93
         else {
94 94
             $title = get_the_title();
95 95
         }
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
         geodir_action_search_page_title();
100 100
         $title = ob_get_clean();
101 101
         avada_page_title_bar($title, $subtitle, $secondary_content);
102
-    }else{
102
+    } else {
103 103
         $title = get_the_title();
104 104
         avada_page_title_bar($title, $subtitle, $secondary_content);
105 105
     }
@@ -231,12 +231,12 @@  discard block
 block discarded – undo
231 231
 gd_compat_php_avada();
232 232
 
233 233
 // Avada sets the search page to use wither post or page, we need it to be 'any'
234
-function gd_avada_search_filter( $query ) {
235
-    if ( geodir_is_page('search') && is_search() && $query->is_search) {
234
+function gd_avada_search_filter($query) {
235
+    if (geodir_is_page('search') && is_search() && $query->is_search) {
236 236
         $query->set('post_type', 'any');
237 237
     }
238 238
     return $query;
239 239
 }
240
-if ( ! is_admin() ) {
241
-    add_filter( 'pre_get_posts', 'gd_avada_search_filter',11 );
240
+if (!is_admin()) {
241
+    add_filter('pre_get_posts', 'gd_avada_search_filter', 11);
242 242
 }
243 243
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +7 added lines, -8 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
 {
52 52
     if (geodir_is_geodir_page()) {
53 53
         gd_avada_current_page_title_bar();
54
-    }else{
54
+    } else{
55 55
         avada_current_page_title_bar( $c_pageID );
56 56
     }
57 57
 
@@ -78,28 +78,27 @@  discard block
 block discarded – undo
78 78
         geodir_action_listings_title();
79 79
         $title = ob_get_clean();
80 80
         avada_page_title_bar($title, $subtitle, $secondary_content);
81
-    }elseif (geodir_is_page('add-listing')) {
81
+    } elseif (geodir_is_page('add-listing')) {
82 82
         ob_start(); // Start buffering;
83 83
         geodir_action_add_listing_page_title();
84 84
         $title = ob_get_clean();
85 85
         avada_page_title_bar($title, $subtitle, $secondary_content);
86
-    }elseif (geodir_is_page('author')) {
86
+    } elseif (geodir_is_page('author')) {
87 87
         ob_start(); // Start buffering;
88 88
         geodir_action_author_page_title();
89 89
         $title = ob_get_clean();
90 90
         avada_page_title_bar($title, $subtitle, $secondary_content);
91
-    }elseif (geodir_is_page('detail') || geodir_is_page('preview')) {
92
-        if ( $title = get_post_meta( get_the_ID(), 'pyre_page_title_custom_text', true ) ) {}
93
-        else {
91
+    } elseif (geodir_is_page('detail') || geodir_is_page('preview')) {
92
+        if ( $title = get_post_meta( get_the_ID(), 'pyre_page_title_custom_text', true ) ) {} else {
94 93
             $title = get_the_title();
95 94
         }
96 95
         avada_page_title_bar($title, $subtitle, $secondary_content);
97
-    }elseif (geodir_is_page('search')) {
96
+    } elseif (geodir_is_page('search')) {
98 97
         ob_start(); // Start buffering;
99 98
         geodir_action_search_page_title();
100 99
         $title = ob_get_clean();
101 100
         avada_page_title_bar($title, $subtitle, $secondary_content);
102
-    }else{
101
+    } else{
103 102
         $title = get_the_title();
104 103
         avada_page_title_bar($title, $subtitle, $secondary_content);
105 104
     }
Please login to merge, or discard this patch.
geodirectory-admin/option-pages/title_meta_settings_array.php 2 patches
Indentation   +367 added lines, -367 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 
11 11
 $gd_wpseo_use = '';
12 12
 if ((class_exists('WPSEO_Frontend') || class_exists('All_in_One_SEO_Pack')) && !geodir_disable_yoast_seo_metas()) {
13
-    $gd_wpseo_use = "<b style='color:red;'>".__('Please use the WPSEO settings instead.','geodirectory')."</b><br />";
13
+	$gd_wpseo_use = "<b style='color:red;'>".__('Please use the WPSEO settings instead.','geodirectory')."</b><br />";
14 14
 }
15 15
 
16 16
 /**
@@ -21,375 +21,375 @@  discard block
 block discarded – undo
21 21
  */
22 22
 $geodir_settings['title_meta_settings'] = apply_filters('geodir_title_meta_settings', array(
23 23
 
24
-    /* Listing Permalink Settings start */
25
-    array('name' => __('Title / Meta', 'geodirectory'), 'type' => 'no_tabs', 'desc' => 'Settings to set page title and meta', 'id' => 'geodir_title_meta_settings '),
24
+	/* Listing Permalink Settings start */
25
+	array('name' => __('Title / Meta', 'geodirectory'), 'type' => 'no_tabs', 'desc' => 'Settings to set page title and meta', 'id' => 'geodir_title_meta_settings '),
26 26
 
27
-    array('name' => $gd_wpseo_use.__('Available Variables', 'geodirectory'),
28
-        'desc' => '%%title%%, %%sitename%%, %%sitedesc%%, %%excerpt%%, %%pt_single%%, %%pt_plural%%, %%category%%, %%id%%, %%sep%%, %%location%%, %%in_location%%, %%in_location_single%%, %%location_single%%, %%location_country%%, %%in_location_country%%, %%location_region%%, %%in_location_region%%, %%location_city%%, %%in_location_city%%, %%location_sep%%, %%search_term%%, %%search_near%%, %%name%%, %%page%%, %%pagenumber%%, %%pagetotal%%',
29
-        'type' => 'sectionstart',
30
-        'id' => 'geodir_meta_vars'),
27
+	array('name' => $gd_wpseo_use.__('Available Variables', 'geodirectory'),
28
+		'desc' => '%%title%%, %%sitename%%, %%sitedesc%%, %%excerpt%%, %%pt_single%%, %%pt_plural%%, %%category%%, %%id%%, %%sep%%, %%location%%, %%in_location%%, %%in_location_single%%, %%location_single%%, %%location_country%%, %%in_location_country%%, %%location_region%%, %%in_location_region%%, %%location_city%%, %%in_location_city%%, %%location_sep%%, %%search_term%%, %%search_near%%, %%name%%, %%page%%, %%pagenumber%%, %%pagetotal%%',
29
+		'type' => 'sectionstart',
30
+		'id' => 'geodir_meta_vars'),
31 31
 
32
-    array('type' => 'sectionend', 'id' => 'geodir_meta_vars'),
32
+	array('type' => 'sectionend', 'id' => 'geodir_meta_vars'),
33 33
     
34
-    array('name' => __('Title & Metas Settings', 'geodirectory'),
35
-        'type' => 'sectionstart',
36
-        'desc' => '',
37
-        'id' => 'geodir_titles_and_metas'),
38
-
39
-    array(  
40
-        'name' => __( 'Disable overwrite by Yoast SEO titles & metas on GD pages', 'geodirectory' ),
41
-        'desc' => __( 'This allows to disable overwriting by Yoast SEO titles & metas on GD pages. If ticked then GD pages will use titles & metas settings from GeoDirectory > Titles & Metas. Otherwise it will use titles & metas settings from SEO > Titles & Metas.', 'geodirectory' ),
42
-        'id' => 'geodir_disable_yoast_meta',
43
-        'type' => 'checkbox',
44
-        'std' => '0'
45
-    ),
46
-
47
-    array('type' => 'sectionend', 'id' => 'geodir_titles_and_metas'),
48
-
49
-    array('name' => __('Homepage Meta Settings', 'geodirectory'),
50
-        'type' => 'sectionstart',
51
-        'desc' => '',
52
-        'id' => 'geodir_home_meta'),
53
-
54
-    array(
55
-        'name' => __('Homepage meta title', 'geodirectory'),
56
-        'desc' => __('This will use the title of the page set as frontpage if left blank.', 'geodirectory'),
57
-        'id' => 'geodir_meta_title_homepage',
58
-        'type' => 'text',
59
-        'css' => 'width:100%;',
60
-        'std' => '',
61
-        'placeholder' => ''
62
-    ),
63
-
64
-    array(
65
-        'name' => __('Homepage meta description', 'geodirectory'),
66
-        'desc' => __('Enter the meta description for the homepage.', 'geodirectory'),
67
-        'id' => 'geodir_meta_desc_homepage',
68
-        'type' => 'textarea',
69
-        'css' => 'width:100%;',
70
-        'std' => ''
71
-    ),
72
-
73
-    array('type' => 'sectionend', 'id' => 'geodir_home_meta'),
74
-
75
-    // details page meta
76
-    array('name' => __('Details Page Meta Settings', 'geodirectory'),
77
-        'type' => 'sectionstart',
78
-        'desc' => '',
79
-        'id' => 'geodir_details_meta'),
80
-
81
-    array(
82
-        'name' => __('Details page meta title', 'geodirectory'),
83
-        'desc' => __('Enter the meta title for the details page.', 'geodirectory'),
84
-        'id' => 'geodir_meta_title_detail',
85
-        'type' => 'text',
86
-        'css' => 'width:100%;',
87
-        'std' => __('%%title%% %%sep%% %%sitename%%', 'geodirectory'),
88
-        'placeholder' => '%%title%% %%sep%% %%sitename%%'
89
-    ),
90
-
91
-    array(
92
-        'name' => __('Details page meta description', 'geodirectory'),
93
-        'desc' => __('Enter the meta description for the details page.', 'geodirectory'),
94
-        'id' => 'geodir_meta_desc_detail',
95
-        'type' => 'textarea',
96
-        'css' => 'width:100%;',
97
-        'std' => __('%%excerpt%%', 'geodirectory'),
98
-        'placeholder' => '%%excerpt%%'
99
-    ),
100
-
101
-    array('type' => 'sectionend', 'id' => 'geodir_details_meta'),
102
-
103
-    // CPT page meta
104
-    array('name' => __('Post Type Page Meta Settings', 'geodirectory'),
105
-        'type' => 'sectionstart',
106
-        'desc' => '',
107
-        'id' => 'geodir_pt_meta'),
108
-
109
-    array(
110
-        'name' => __('Post type page meta title', 'geodirectory'),
111
-        'desc' => __('Enter the meta title for the post type pages.', 'geodirectory'),
112
-        'id' => 'geodir_meta_title_pt',
113
-        'type' => 'text',
114
-        'css' => 'width:100%;',
115
-        'std' => __('%%pt_plural%% %%in_location%% %%sep%% %%sitename%%', 'geodirectory'),
116
-        'placeholder' => '%%pt_plural%% %%in_location%% %%sep%% %%sitename%%'
117
-    ),
118
-
119
-    array(
120
-        'name' => __('Post type page meta description', 'geodirectory'),
121
-        'desc' => __('Enter the meta description for the post type pages.', 'geodirectory'),
122
-        'id' => 'geodir_meta_desc_pt',
123
-        'type' => 'textarea',
124
-        'css' => 'width:100%;',
125
-        'std' => __('%%pt_plural%% %%in_location%%', 'geodirectory'),
126
-        'placeholder' => '%%pt_plural%% %%in_location%%'
127
-    ),
128
-
129
-    array(
130
-        'name' => __('Post type page title', 'geodirectory'),
131
-        'desc' => __('Enter the title for the post type pages.', 'geodirectory'),
132
-        'id' => 'geodir_page_title_pt',
133
-        'type' => 'text',
134
-        'css' => 'width:100%;',
135
-        'std' => __('All %%pt_plural%% %%in_location_single%%', 'geodirectory'),
136
-        'placeholder' => 'All %%pt_plural%% %%in_location_single%%'
137
-    ),
138
-
139
-    array('type' => 'sectionend', 'id' => 'geodir_pt_meta'),
140
-
141
-    // Cat listing page meta
142
-    array('name' => __('Listing Page Meta Settings', 'geodirectory'),
143
-        'type' => 'sectionstart',
144
-        'desc' => '',
145
-        'id' => 'geodir_pt_meta'),
146
-
147
-    array(
148
-        'name' => __('Listing page meta title', 'geodirectory'),
149
-        'desc' => __('Enter the meta title for the category listing pages.', 'geodirectory'),
150
-        'id' => 'geodir_meta_title_listing',
151
-        'type' => 'text',
152
-        'css' => 'width:100%;',
153
-        'std' => __('%%category%% %%in_location%% %%sep%% %%sitename%%', 'geodirectory'),
154
-        'placeholder' => '%%category%% %%in_location%% %%sep%% %%sitename%%'
155
-    ),
156
-
157
-    array(
158
-        'name' => __('Listing page meta description', 'geodirectory'),
159
-        'desc' => __('Enter the meta description for the category listing pages.', 'geodirectory'),
160
-        'id' => 'geodir_meta_desc_listing',
161
-        'type' => 'textarea',
162
-        'css' => 'width:100%;',
163
-        'std' => __('Posts related to Category: %%category%% %%in_location%%', 'geodirectory'),
164
-        'placeholder' => 'Posts related to Category: %%category%% %%in_location%%'
165
-    ),
166
-
167
-    array(
168
-        'name' => __('Category listing page title', 'geodirectory'),
169
-        'desc' => __('Enter the title for the category listing pages.', 'geodirectory'),
170
-        'id' => 'geodir_page_title_cat-listing',
171
-        'type' => 'text',
172
-        'css' => 'width:100%;',
173
-        'std' => __('All %%category%% %%in_location_single%%', 'geodirectory'),
174
-        'placeholder' => 'All %%category%% %%in_location_single%%'
175
-    ),
176
-
177
-    array(
178
-        'name' => __('Tag listing page title', 'geodirectory'),
179
-        'desc' => __('Enter the title for the tag listing pages.', 'geodirectory'),
180
-        'id' => 'geodir_page_title_tag-listing',
181
-        'type' => 'text',
182
-        'css' => 'width:100%;',
183
-        'std' => __('Tag: %%tag%% %%in_location_single%%', 'geodirectory'),
184
-        'placeholder' => 'Tag: %%tag%% %%in_location_single%%'
185
-    ),
186
-
187
-    array('type' => 'sectionend', 'id' => 'geodir_location_meta'),
188
-
189
-    // location page meta
190
-    array('name' => __('Location Page Meta Settings', 'geodirectory'),
191
-        'type' => 'sectionstart',
192
-        'desc' => '',
193
-        'id' => 'geodir_pt_meta'),
194
-
195
-    array(
196
-        'name' => __('Location page meta title', 'geodirectory'),
197
-        'desc' => __('Enter the meta title for the location pages.', 'geodirectory'),
198
-        'id' => 'geodir_meta_title_location',
199
-        'type' => 'text',
200
-        'css' => 'width:100%;',
201
-        'std' => __('%%title%% %%location%% %%sep%% %%sitename%%', 'geodirectory'),
202
-        'placeholder' => '%%title%% %%location%% %%sep%% %%sitename%%'
203
-    ),
204
-
205
-    array(
206
-        'name' => __('Location page meta description', 'geodirectory'),
207
-        'desc' => __('Enter the meta description for the location pages.', 'geodirectory'),
208
-        'id' => 'geodir_meta_desc_location',
209
-        'type' => 'textarea',
210
-        'css' => 'width:100%;',
211
-        'std' => __('%%location%%', 'geodirectory'),
212
-        'placeholder' => '%%location%%'
213
-    ),
214
-
215
-    array('type' => 'sectionend', 'id' => 'geodir_location_meta'),
216
-
217
-    // Search page meta
218
-    array('name' => __('Search Page Meta Settings', 'geodirectory'),
219
-        'type' => 'sectionstart',
220
-        'desc' => '',
221
-        'id' => 'geodir_pt_meta'),
222
-
223
-    array(
224
-        'name' => __('Search page meta title', 'geodirectory'),
225
-        'desc' => __('Enter the meta title for the search page.', 'geodirectory'),
226
-        'id' => 'geodir_meta_title_search',
227
-        'type' => 'text',
228
-        'css' => 'width:100%;',
229
-        'std' => __('%%pt_plural%% search results for %%search_term%%, Near %%search_near%% %%sep%% %%sitename%%', 'geodirectory'),
230
-        'placeholder' => '%%pt_plural%% search results for %%search_term%%, Near %%search_near%% %%sep%% %%sitename%%'
231
-    ),
232
-
233
-    array(
234
-        'name' => __('Search page meta description', 'geodirectory'),
235
-        'desc' => __('Enter the meta description for the search page.', 'geodirectory'),
236
-        'id' => 'geodir_meta_desc_search',
237
-        'type' => 'textarea',
238
-        'css' => 'width:100%;',
239
-        'std' => __('%%pt_plural%% search results for %%search_term%%, Near %%search_near%%', 'geodirectory'),
240
-        'placeholder' => '%%pt_plural%% search results for %%search_term%%, Near %%search_near%%'
241
-    ),
242
-
243
-    array('type' => 'sectionend', 'id' => 'geodir_location_meta'),
244
-
245
-    //Add listing page meta
246
-    array('name' => __('Add Listing Page Meta Settings', 'geodirectory'),
247
-        'type' => 'sectionstart',
248
-        'desc' => '',
249
-        'id' => 'geodir_pt_meta'),
250
-
251
-    array(
252
-        'name' => __('Add listing page meta title', 'geodirectory'),
253
-        'desc' => __('Enter the meta title for the add listing page.', 'geodirectory'),
254
-        'id' => 'geodir_meta_title_add-listing',
255
-        'type' => 'text',
256
-        'css' => 'width:100%;',
257
-        'std' => __('Add %%pt_single%% %%sep%% %%sitename%%', 'geodirectory'),
258
-        'placeholder' => 'Add %%pt_single%% %%sep%% %%sitename%%'
259
-    ),
260
-
261
-    array(
262
-        'name' => __('Add listing page meta description', 'geodirectory'),
263
-        'desc' => __('Enter the meta description for the add listing page.', 'geodirectory'),
264
-        'id' => 'geodir_meta_desc_add-listing',
265
-        'type' => 'textarea',
266
-        'css' => 'width:100%;',
267
-        'std' => __('Add %%pt_single%%', 'geodirectory'),
268
-        'placeholder' => 'Add %%pt_single%%'
269
-    ),
270
-
271
-    array(
272
-        'name' => __('Add listing page title', 'geodirectory'),
273
-        'desc' => __('Enter the title for the add listing page.', 'geodirectory'),
274
-        'id' => 'geodir_page_title_add-listing',
275
-        'type' => 'text',
276
-        'css' => 'width:100%;',
277
-        'std' => __('Add %%pt_single%%', 'geodirectory'),
278
-        'placeholder' => 'Add %%pt_single%%'
279
-    ),
280
-
281
-    array(
282
-        'name' => __('Edit listing page title', 'geodirectory'),
283
-        'desc' => __('Enter the title for the edit listing page.', 'geodirectory'),
284
-        'id' => 'geodir_page_title_edit-listing',
285
-        'type' => 'text',
286
-        'css' => 'width:100%;',
287
-        'std' => __('Edit %%pt_single%%', 'geodirectory'),
288
-        'placeholder' => 'Edit %%pt_single%%'
289
-    ),
290
-
291
-    array('type' => 'sectionend', 'id' => 'geodir_location_meta'),
292
-
293
-    //Author page meta
294
-    array('name' => __('Author Page Meta Settings', 'geodirectory'),
295
-        'type' => 'sectionstart',
296
-        'desc' => '',
297
-        'id' => 'geodir_pt_meta'),
298
-
299
-    array(
300
-        'name' => __('Author page meta title', 'geodirectory'),
301
-        'desc' => __('Enter the meta title for the author page.', 'geodirectory'),
302
-        'id' => 'geodir_meta_title_author',
303
-        'type' => 'text',
304
-        'css' => 'width:100%;',
305
-        'std' => __('Author: %%name%% %%sep%% %%sitename%%', 'geodirectory'),
306
-        'placeholder' => 'Author: %%name%% %%sep%% %%sitename%%'
307
-    ),
308
-
309
-    array(
310
-        'name' => __('Author page meta description', 'geodirectory'),
311
-        'desc' => __('Enter the meta description for the author page.', 'geodirectory'),
312
-        'id' => 'geodir_meta_desc_author',
313
-        'type' => 'textarea',
314
-        'css' => 'width:100%;',
315
-        'std' => ''
316
-    ),
317
-
318
-    array(
319
-        'name' => __('Author page title', 'geodirectory'),
320
-        'desc' => __('Enter the title for the author page.', 'geodirectory'),
321
-        'id' => 'geodir_page_title_author',
322
-        'type' => 'text',
323
-        'css' => 'width:100%;',
324
-        'std' => __('%%pt_plural%% by: %%name%%', 'geodirectory'),
325
-        'placeholder' => '%%pt_plural%% by: %%name%%'
326
-    ),
327
-
328
-    array(
329
-        'name' => __('Author favorite page title', 'geodirectory'),
330
-        'desc' => __('Enter the title for the author favorite page.', 'geodirectory'),
331
-        'id' => 'geodir_page_title_favorite',
332
-        'type' => 'text',
333
-        'css' => 'width:100%;',
334
-        'std' => __('%%name%%: Favorite %%pt_plural%%', 'geodirectory'),
335
-        'placeholder' => '%%name%%: Favorite %%pt_plural%%'
336
-    ),
337
-
338
-    array('type' => 'sectionend', 'id' => 'geodir_location_meta'),
339
-
340
-    //Login page meta
341
-    array('name' => __('Login Page Meta Settings', 'geodirectory'),
342
-        'type' => 'sectionstart',
343
-        'desc' => '',
344
-        'id' => 'geodir_login_meta'),
345
-
346
-    array(
347
-        'name' => __('Login page meta title', 'geodirectory'),
348
-        'desc' => __('Enter the meta title for the login page.', 'geodirectory'),
349
-        'id' => 'geodir_meta_title_login',
350
-        'type' => 'text',
351
-        'css' => 'width:100%;',
352
-        'std' => __('%%title%% %%sep%% %%sitename%%', 'geodirectory'),
353
-        'placeholder' => '%%title%% %%sep%% %%sitename%%'
354
-    ),
355
-
356
-    array(
357
-        'name' => __('Login page meta description', 'geodirectory'),
358
-        'desc' => __('Enter the meta description for the login page.', 'geodirectory'),
359
-        'id' => 'geodir_meta_desc_login',
360
-        'type' => 'textarea',
361
-        'css' => 'width:100%;',
362
-        'std' => ''
363
-    ),
364
-
365
-    array('type' => 'sectionend', 'id' => 'geodir_login_meta'),
366
-
367
-    //Listing success page meta
368
-    array('name' => __('Listing Success Page Meta Settings', 'geodirectory'),
369
-        'type' => 'sectionstart',
370
-        'desc' => '',
371
-        'id' => 'geodir_login_meta'),
372
-
373
-    array(
374
-        'name' => __('Listing success page meta title', 'geodirectory'),
375
-        'desc' => __('Enter the meta title for the listing success page.', 'geodirectory'),
376
-        'id' => 'geodir_meta_title_listing-success',
377
-        'type' => 'text',
378
-        'css' => 'width:100%;',
379
-        'std' => __('%%title%% %%sep%% %%sitename%%', 'geodirectory'),
380
-        'placeholder' => '%%title%% %%sep%% %%sitename%%'
381
-    ),
382
-
383
-    array(
384
-        'name' => __('Listing success page meta description', 'geodirectory'),
385
-        'desc' => __('Enter the meta description for the listing success page.', 'geodirectory'),
386
-        'id' => 'geodir_meta_desc_listing-success',
387
-        'type' => 'textarea',
388
-        'css' => 'width:100%;',
389
-        'std' => ''
390
-    ),
391
-
392
-    array('type' => 'sectionend', 'id' => 'geodir_login_meta'),
34
+	array('name' => __('Title & Metas Settings', 'geodirectory'),
35
+		'type' => 'sectionstart',
36
+		'desc' => '',
37
+		'id' => 'geodir_titles_and_metas'),
38
+
39
+	array(  
40
+		'name' => __( 'Disable overwrite by Yoast SEO titles & metas on GD pages', 'geodirectory' ),
41
+		'desc' => __( 'This allows to disable overwriting by Yoast SEO titles & metas on GD pages. If ticked then GD pages will use titles & metas settings from GeoDirectory > Titles & Metas. Otherwise it will use titles & metas settings from SEO > Titles & Metas.', 'geodirectory' ),
42
+		'id' => 'geodir_disable_yoast_meta',
43
+		'type' => 'checkbox',
44
+		'std' => '0'
45
+	),
46
+
47
+	array('type' => 'sectionend', 'id' => 'geodir_titles_and_metas'),
48
+
49
+	array('name' => __('Homepage Meta Settings', 'geodirectory'),
50
+		'type' => 'sectionstart',
51
+		'desc' => '',
52
+		'id' => 'geodir_home_meta'),
53
+
54
+	array(
55
+		'name' => __('Homepage meta title', 'geodirectory'),
56
+		'desc' => __('This will use the title of the page set as frontpage if left blank.', 'geodirectory'),
57
+		'id' => 'geodir_meta_title_homepage',
58
+		'type' => 'text',
59
+		'css' => 'width:100%;',
60
+		'std' => '',
61
+		'placeholder' => ''
62
+	),
63
+
64
+	array(
65
+		'name' => __('Homepage meta description', 'geodirectory'),
66
+		'desc' => __('Enter the meta description for the homepage.', 'geodirectory'),
67
+		'id' => 'geodir_meta_desc_homepage',
68
+		'type' => 'textarea',
69
+		'css' => 'width:100%;',
70
+		'std' => ''
71
+	),
72
+
73
+	array('type' => 'sectionend', 'id' => 'geodir_home_meta'),
74
+
75
+	// details page meta
76
+	array('name' => __('Details Page Meta Settings', 'geodirectory'),
77
+		'type' => 'sectionstart',
78
+		'desc' => '',
79
+		'id' => 'geodir_details_meta'),
80
+
81
+	array(
82
+		'name' => __('Details page meta title', 'geodirectory'),
83
+		'desc' => __('Enter the meta title for the details page.', 'geodirectory'),
84
+		'id' => 'geodir_meta_title_detail',
85
+		'type' => 'text',
86
+		'css' => 'width:100%;',
87
+		'std' => __('%%title%% %%sep%% %%sitename%%', 'geodirectory'),
88
+		'placeholder' => '%%title%% %%sep%% %%sitename%%'
89
+	),
90
+
91
+	array(
92
+		'name' => __('Details page meta description', 'geodirectory'),
93
+		'desc' => __('Enter the meta description for the details page.', 'geodirectory'),
94
+		'id' => 'geodir_meta_desc_detail',
95
+		'type' => 'textarea',
96
+		'css' => 'width:100%;',
97
+		'std' => __('%%excerpt%%', 'geodirectory'),
98
+		'placeholder' => '%%excerpt%%'
99
+	),
100
+
101
+	array('type' => 'sectionend', 'id' => 'geodir_details_meta'),
102
+
103
+	// CPT page meta
104
+	array('name' => __('Post Type Page Meta Settings', 'geodirectory'),
105
+		'type' => 'sectionstart',
106
+		'desc' => '',
107
+		'id' => 'geodir_pt_meta'),
108
+
109
+	array(
110
+		'name' => __('Post type page meta title', 'geodirectory'),
111
+		'desc' => __('Enter the meta title for the post type pages.', 'geodirectory'),
112
+		'id' => 'geodir_meta_title_pt',
113
+		'type' => 'text',
114
+		'css' => 'width:100%;',
115
+		'std' => __('%%pt_plural%% %%in_location%% %%sep%% %%sitename%%', 'geodirectory'),
116
+		'placeholder' => '%%pt_plural%% %%in_location%% %%sep%% %%sitename%%'
117
+	),
118
+
119
+	array(
120
+		'name' => __('Post type page meta description', 'geodirectory'),
121
+		'desc' => __('Enter the meta description for the post type pages.', 'geodirectory'),
122
+		'id' => 'geodir_meta_desc_pt',
123
+		'type' => 'textarea',
124
+		'css' => 'width:100%;',
125
+		'std' => __('%%pt_plural%% %%in_location%%', 'geodirectory'),
126
+		'placeholder' => '%%pt_plural%% %%in_location%%'
127
+	),
128
+
129
+	array(
130
+		'name' => __('Post type page title', 'geodirectory'),
131
+		'desc' => __('Enter the title for the post type pages.', 'geodirectory'),
132
+		'id' => 'geodir_page_title_pt',
133
+		'type' => 'text',
134
+		'css' => 'width:100%;',
135
+		'std' => __('All %%pt_plural%% %%in_location_single%%', 'geodirectory'),
136
+		'placeholder' => 'All %%pt_plural%% %%in_location_single%%'
137
+	),
138
+
139
+	array('type' => 'sectionend', 'id' => 'geodir_pt_meta'),
140
+
141
+	// Cat listing page meta
142
+	array('name' => __('Listing Page Meta Settings', 'geodirectory'),
143
+		'type' => 'sectionstart',
144
+		'desc' => '',
145
+		'id' => 'geodir_pt_meta'),
146
+
147
+	array(
148
+		'name' => __('Listing page meta title', 'geodirectory'),
149
+		'desc' => __('Enter the meta title for the category listing pages.', 'geodirectory'),
150
+		'id' => 'geodir_meta_title_listing',
151
+		'type' => 'text',
152
+		'css' => 'width:100%;',
153
+		'std' => __('%%category%% %%in_location%% %%sep%% %%sitename%%', 'geodirectory'),
154
+		'placeholder' => '%%category%% %%in_location%% %%sep%% %%sitename%%'
155
+	),
156
+
157
+	array(
158
+		'name' => __('Listing page meta description', 'geodirectory'),
159
+		'desc' => __('Enter the meta description for the category listing pages.', 'geodirectory'),
160
+		'id' => 'geodir_meta_desc_listing',
161
+		'type' => 'textarea',
162
+		'css' => 'width:100%;',
163
+		'std' => __('Posts related to Category: %%category%% %%in_location%%', 'geodirectory'),
164
+		'placeholder' => 'Posts related to Category: %%category%% %%in_location%%'
165
+	),
166
+
167
+	array(
168
+		'name' => __('Category listing page title', 'geodirectory'),
169
+		'desc' => __('Enter the title for the category listing pages.', 'geodirectory'),
170
+		'id' => 'geodir_page_title_cat-listing',
171
+		'type' => 'text',
172
+		'css' => 'width:100%;',
173
+		'std' => __('All %%category%% %%in_location_single%%', 'geodirectory'),
174
+		'placeholder' => 'All %%category%% %%in_location_single%%'
175
+	),
176
+
177
+	array(
178
+		'name' => __('Tag listing page title', 'geodirectory'),
179
+		'desc' => __('Enter the title for the tag listing pages.', 'geodirectory'),
180
+		'id' => 'geodir_page_title_tag-listing',
181
+		'type' => 'text',
182
+		'css' => 'width:100%;',
183
+		'std' => __('Tag: %%tag%% %%in_location_single%%', 'geodirectory'),
184
+		'placeholder' => 'Tag: %%tag%% %%in_location_single%%'
185
+	),
186
+
187
+	array('type' => 'sectionend', 'id' => 'geodir_location_meta'),
188
+
189
+	// location page meta
190
+	array('name' => __('Location Page Meta Settings', 'geodirectory'),
191
+		'type' => 'sectionstart',
192
+		'desc' => '',
193
+		'id' => 'geodir_pt_meta'),
194
+
195
+	array(
196
+		'name' => __('Location page meta title', 'geodirectory'),
197
+		'desc' => __('Enter the meta title for the location pages.', 'geodirectory'),
198
+		'id' => 'geodir_meta_title_location',
199
+		'type' => 'text',
200
+		'css' => 'width:100%;',
201
+		'std' => __('%%title%% %%location%% %%sep%% %%sitename%%', 'geodirectory'),
202
+		'placeholder' => '%%title%% %%location%% %%sep%% %%sitename%%'
203
+	),
204
+
205
+	array(
206
+		'name' => __('Location page meta description', 'geodirectory'),
207
+		'desc' => __('Enter the meta description for the location pages.', 'geodirectory'),
208
+		'id' => 'geodir_meta_desc_location',
209
+		'type' => 'textarea',
210
+		'css' => 'width:100%;',
211
+		'std' => __('%%location%%', 'geodirectory'),
212
+		'placeholder' => '%%location%%'
213
+	),
214
+
215
+	array('type' => 'sectionend', 'id' => 'geodir_location_meta'),
216
+
217
+	// Search page meta
218
+	array('name' => __('Search Page Meta Settings', 'geodirectory'),
219
+		'type' => 'sectionstart',
220
+		'desc' => '',
221
+		'id' => 'geodir_pt_meta'),
222
+
223
+	array(
224
+		'name' => __('Search page meta title', 'geodirectory'),
225
+		'desc' => __('Enter the meta title for the search page.', 'geodirectory'),
226
+		'id' => 'geodir_meta_title_search',
227
+		'type' => 'text',
228
+		'css' => 'width:100%;',
229
+		'std' => __('%%pt_plural%% search results for %%search_term%%, Near %%search_near%% %%sep%% %%sitename%%', 'geodirectory'),
230
+		'placeholder' => '%%pt_plural%% search results for %%search_term%%, Near %%search_near%% %%sep%% %%sitename%%'
231
+	),
232
+
233
+	array(
234
+		'name' => __('Search page meta description', 'geodirectory'),
235
+		'desc' => __('Enter the meta description for the search page.', 'geodirectory'),
236
+		'id' => 'geodir_meta_desc_search',
237
+		'type' => 'textarea',
238
+		'css' => 'width:100%;',
239
+		'std' => __('%%pt_plural%% search results for %%search_term%%, Near %%search_near%%', 'geodirectory'),
240
+		'placeholder' => '%%pt_plural%% search results for %%search_term%%, Near %%search_near%%'
241
+	),
242
+
243
+	array('type' => 'sectionend', 'id' => 'geodir_location_meta'),
244
+
245
+	//Add listing page meta
246
+	array('name' => __('Add Listing Page Meta Settings', 'geodirectory'),
247
+		'type' => 'sectionstart',
248
+		'desc' => '',
249
+		'id' => 'geodir_pt_meta'),
250
+
251
+	array(
252
+		'name' => __('Add listing page meta title', 'geodirectory'),
253
+		'desc' => __('Enter the meta title for the add listing page.', 'geodirectory'),
254
+		'id' => 'geodir_meta_title_add-listing',
255
+		'type' => 'text',
256
+		'css' => 'width:100%;',
257
+		'std' => __('Add %%pt_single%% %%sep%% %%sitename%%', 'geodirectory'),
258
+		'placeholder' => 'Add %%pt_single%% %%sep%% %%sitename%%'
259
+	),
260
+
261
+	array(
262
+		'name' => __('Add listing page meta description', 'geodirectory'),
263
+		'desc' => __('Enter the meta description for the add listing page.', 'geodirectory'),
264
+		'id' => 'geodir_meta_desc_add-listing',
265
+		'type' => 'textarea',
266
+		'css' => 'width:100%;',
267
+		'std' => __('Add %%pt_single%%', 'geodirectory'),
268
+		'placeholder' => 'Add %%pt_single%%'
269
+	),
270
+
271
+	array(
272
+		'name' => __('Add listing page title', 'geodirectory'),
273
+		'desc' => __('Enter the title for the add listing page.', 'geodirectory'),
274
+		'id' => 'geodir_page_title_add-listing',
275
+		'type' => 'text',
276
+		'css' => 'width:100%;',
277
+		'std' => __('Add %%pt_single%%', 'geodirectory'),
278
+		'placeholder' => 'Add %%pt_single%%'
279
+	),
280
+
281
+	array(
282
+		'name' => __('Edit listing page title', 'geodirectory'),
283
+		'desc' => __('Enter the title for the edit listing page.', 'geodirectory'),
284
+		'id' => 'geodir_page_title_edit-listing',
285
+		'type' => 'text',
286
+		'css' => 'width:100%;',
287
+		'std' => __('Edit %%pt_single%%', 'geodirectory'),
288
+		'placeholder' => 'Edit %%pt_single%%'
289
+	),
290
+
291
+	array('type' => 'sectionend', 'id' => 'geodir_location_meta'),
292
+
293
+	//Author page meta
294
+	array('name' => __('Author Page Meta Settings', 'geodirectory'),
295
+		'type' => 'sectionstart',
296
+		'desc' => '',
297
+		'id' => 'geodir_pt_meta'),
298
+
299
+	array(
300
+		'name' => __('Author page meta title', 'geodirectory'),
301
+		'desc' => __('Enter the meta title for the author page.', 'geodirectory'),
302
+		'id' => 'geodir_meta_title_author',
303
+		'type' => 'text',
304
+		'css' => 'width:100%;',
305
+		'std' => __('Author: %%name%% %%sep%% %%sitename%%', 'geodirectory'),
306
+		'placeholder' => 'Author: %%name%% %%sep%% %%sitename%%'
307
+	),
308
+
309
+	array(
310
+		'name' => __('Author page meta description', 'geodirectory'),
311
+		'desc' => __('Enter the meta description for the author page.', 'geodirectory'),
312
+		'id' => 'geodir_meta_desc_author',
313
+		'type' => 'textarea',
314
+		'css' => 'width:100%;',
315
+		'std' => ''
316
+	),
317
+
318
+	array(
319
+		'name' => __('Author page title', 'geodirectory'),
320
+		'desc' => __('Enter the title for the author page.', 'geodirectory'),
321
+		'id' => 'geodir_page_title_author',
322
+		'type' => 'text',
323
+		'css' => 'width:100%;',
324
+		'std' => __('%%pt_plural%% by: %%name%%', 'geodirectory'),
325
+		'placeholder' => '%%pt_plural%% by: %%name%%'
326
+	),
327
+
328
+	array(
329
+		'name' => __('Author favorite page title', 'geodirectory'),
330
+		'desc' => __('Enter the title for the author favorite page.', 'geodirectory'),
331
+		'id' => 'geodir_page_title_favorite',
332
+		'type' => 'text',
333
+		'css' => 'width:100%;',
334
+		'std' => __('%%name%%: Favorite %%pt_plural%%', 'geodirectory'),
335
+		'placeholder' => '%%name%%: Favorite %%pt_plural%%'
336
+	),
337
+
338
+	array('type' => 'sectionend', 'id' => 'geodir_location_meta'),
339
+
340
+	//Login page meta
341
+	array('name' => __('Login Page Meta Settings', 'geodirectory'),
342
+		'type' => 'sectionstart',
343
+		'desc' => '',
344
+		'id' => 'geodir_login_meta'),
345
+
346
+	array(
347
+		'name' => __('Login page meta title', 'geodirectory'),
348
+		'desc' => __('Enter the meta title for the login page.', 'geodirectory'),
349
+		'id' => 'geodir_meta_title_login',
350
+		'type' => 'text',
351
+		'css' => 'width:100%;',
352
+		'std' => __('%%title%% %%sep%% %%sitename%%', 'geodirectory'),
353
+		'placeholder' => '%%title%% %%sep%% %%sitename%%'
354
+	),
355
+
356
+	array(
357
+		'name' => __('Login page meta description', 'geodirectory'),
358
+		'desc' => __('Enter the meta description for the login page.', 'geodirectory'),
359
+		'id' => 'geodir_meta_desc_login',
360
+		'type' => 'textarea',
361
+		'css' => 'width:100%;',
362
+		'std' => ''
363
+	),
364
+
365
+	array('type' => 'sectionend', 'id' => 'geodir_login_meta'),
366
+
367
+	//Listing success page meta
368
+	array('name' => __('Listing Success Page Meta Settings', 'geodirectory'),
369
+		'type' => 'sectionstart',
370
+		'desc' => '',
371
+		'id' => 'geodir_login_meta'),
372
+
373
+	array(
374
+		'name' => __('Listing success page meta title', 'geodirectory'),
375
+		'desc' => __('Enter the meta title for the listing success page.', 'geodirectory'),
376
+		'id' => 'geodir_meta_title_listing-success',
377
+		'type' => 'text',
378
+		'css' => 'width:100%;',
379
+		'std' => __('%%title%% %%sep%% %%sitename%%', 'geodirectory'),
380
+		'placeholder' => '%%title%% %%sep%% %%sitename%%'
381
+	),
382
+
383
+	array(
384
+		'name' => __('Listing success page meta description', 'geodirectory'),
385
+		'desc' => __('Enter the meta description for the listing success page.', 'geodirectory'),
386
+		'id' => 'geodir_meta_desc_listing-success',
387
+		'type' => 'textarea',
388
+		'css' => 'width:100%;',
389
+		'std' => ''
390
+	),
391
+
392
+	array('type' => 'sectionend', 'id' => 'geodir_login_meta'),
393 393
 
394 394
 
395 395
 
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 
11 11
 $gd_wpseo_use = '';
12 12
 if ((class_exists('WPSEO_Frontend') || class_exists('All_in_One_SEO_Pack')) && !geodir_disable_yoast_seo_metas()) {
13
-    $gd_wpseo_use = "<b style='color:red;'>".__('Please use the WPSEO settings instead.','geodirectory')."</b><br />";
13
+    $gd_wpseo_use = "<b style='color:red;'>".__('Please use the WPSEO settings instead.', 'geodirectory')."</b><br />";
14 14
 }
15 15
 
16 16
 /**
@@ -37,8 +37,8 @@  discard block
 block discarded – undo
37 37
         'id' => 'geodir_titles_and_metas'),
38 38
 
39 39
     array(  
40
-        'name' => __( 'Disable overwrite by Yoast SEO titles & metas on GD pages', 'geodirectory' ),
41
-        'desc' => __( 'This allows to disable overwriting by Yoast SEO titles & metas on GD pages. If ticked then GD pages will use titles & metas settings from GeoDirectory > Titles & Metas. Otherwise it will use titles & metas settings from SEO > Titles & Metas.', 'geodirectory' ),
40
+        'name' => __('Disable overwrite by Yoast SEO titles & metas on GD pages', 'geodirectory'),
41
+        'desc' => __('This allows to disable overwriting by Yoast SEO titles & metas on GD pages. If ticked then GD pages will use titles & metas settings from GeoDirectory > Titles & Metas. Otherwise it will use titles & metas settings from SEO > Titles & Metas.', 'geodirectory'),
42 42
         'id' => 'geodir_disable_yoast_meta',
43 43
         'type' => 'checkbox',
44 44
         'std' => '0'
Please login to merge, or discard this patch.
geodirectory-functions/compatibility/BuddyBoss.php 3 patches
Indentation   +49 added lines, -49 removed lines patch added patch discarded remove patch
@@ -12,77 +12,77 @@
 block discarded – undo
12 12
 
13 13
 remove_action('geodir_page_title', 'geodir_action_page_title', 10);
14 14
 function gd_buddyboss_action_calls(){
15
-    // listings page remove
16
-    remove_action('geodir_listings_page_title', 'geodir_action_listings_title', 10);
17
-    remove_action('geodir_listings_before_main_content', 'geodir_action_geodir_sidebar_listings_top', 10);
18
-    remove_action('geodir_listings_before_main_content', 'geodir_breadcrumb', 20);
19
-    remove_action('geodir_listings_page_description', 'geodir_action_listings_description', 10);
20
-    remove_action('geodir_listings_page_description', 'geodir_location_action_listings_description', 100); // for location manager
21
-    remove_action('geodir_listings_page_description', 'geodir_cpt_pt_desc', 10); //CPT manager
15
+	// listings page remove
16
+	remove_action('geodir_listings_page_title', 'geodir_action_listings_title', 10);
17
+	remove_action('geodir_listings_before_main_content', 'geodir_action_geodir_sidebar_listings_top', 10);
18
+	remove_action('geodir_listings_before_main_content', 'geodir_breadcrumb', 20);
19
+	remove_action('geodir_listings_page_description', 'geodir_action_listings_description', 10);
20
+	remove_action('geodir_listings_page_description', 'geodir_location_action_listings_description', 100); // for location manager
21
+	remove_action('geodir_listings_page_description', 'geodir_cpt_pt_desc', 10); //CPT manager
22 22
 
23
-    //listing page add
24
-    add_action('geodir_listings_content', 'geodir_breadcrumb', 3);
25
-    add_action('geodir_listings_content', 'geodir_action_geodir_sidebar_listings_top', 4);
26
-    add_action('geodir_listings_content', 'geodir_cpt_pt_desc', 5); //CPT manager
27
-    if(defined("GEODIRLOCATION_VERSION")){
28
-        add_action('geodir_listings_content', 'geodir_location_action_listings_description', 5);
29
-    }else{
30
-        add_action('geodir_listings_content', 'geodir_action_listings_description', 5);
31
-    }
32
-    add_action('geodir_listings_content', 'geodir_action_listings_title', 9);
23
+	//listing page add
24
+	add_action('geodir_listings_content', 'geodir_breadcrumb', 3);
25
+	add_action('geodir_listings_content', 'geodir_action_geodir_sidebar_listings_top', 4);
26
+	add_action('geodir_listings_content', 'geodir_cpt_pt_desc', 5); //CPT manager
27
+	if(defined("GEODIRLOCATION_VERSION")){
28
+		add_action('geodir_listings_content', 'geodir_location_action_listings_description', 5);
29
+	}else{
30
+		add_action('geodir_listings_content', 'geodir_action_listings_description', 5);
31
+	}
32
+	add_action('geodir_listings_content', 'geodir_action_listings_title', 9);
33 33
 
34 34
 
35
-    // details page remove
36
-    remove_action('geodir_detail_before_main_content', 'geodir_action_geodir_set_preview_post', 8);
37
-    remove_action('geodir_detail_before_main_content', 'geodir_action_geodir_preview_code', 9);
38
-    remove_action('geodir_detail_before_main_content', 'geodir_action_geodir_sidebar_detail_top', 10);
39
-    remove_action('geodir_detail_before_main_content', 'geodir_breadcrumb', 20);
35
+	// details page remove
36
+	remove_action('geodir_detail_before_main_content', 'geodir_action_geodir_set_preview_post', 8);
37
+	remove_action('geodir_detail_before_main_content', 'geodir_action_geodir_preview_code', 9);
38
+	remove_action('geodir_detail_before_main_content', 'geodir_action_geodir_sidebar_detail_top', 10);
39
+	remove_action('geodir_detail_before_main_content', 'geodir_breadcrumb', 20);
40 40
 
41 41
 
42
-    //details page add
43
-    add_action('geodir_article_open', 'geodir_action_geodir_set_preview_post', 1);
44
-    add_action('geodir_article_open','geodir_action_geodir_preview_code', 2);
45
-    add_action('geodir_article_open', 'geodir_breadcrumb', 3);
46
-    add_action('geodir_article_open', 'geodir_action_geodir_sidebar_detail_top', 5);
42
+	//details page add
43
+	add_action('geodir_article_open', 'geodir_action_geodir_set_preview_post', 1);
44
+	add_action('geodir_article_open','geodir_action_geodir_preview_code', 2);
45
+	add_action('geodir_article_open', 'geodir_breadcrumb', 3);
46
+	add_action('geodir_article_open', 'geodir_action_geodir_sidebar_detail_top', 5);
47 47
 
48 48
 
49 49
 
50
-    //location/home remove
51
-    remove_action('geodir_location_before_main_content', 'geodir_action_geodir_sidebar_home_top', 10);
52
-    remove_action('geodir_location_before_main_content', 'geodir_breadcrumb', 20);
50
+	//location/home remove
51
+	remove_action('geodir_location_before_main_content', 'geodir_action_geodir_sidebar_home_top', 10);
52
+	remove_action('geodir_location_before_main_content', 'geodir_breadcrumb', 20);
53 53
 
54
-    remove_action('geodir_home_before_main_content', 'geodir_action_geodir_sidebar_home_top', 10);
55
-    remove_action('geodir_home_before_main_content', 'geodir_breadcrumb', 20);
54
+	remove_action('geodir_home_before_main_content', 'geodir_action_geodir_sidebar_home_top', 10);
55
+	remove_action('geodir_home_before_main_content', 'geodir_breadcrumb', 20);
56 56
 
57
-    //location/home add
58
-    add_action('geodir_home_content', 'geodir_breadcrumb', 3);
59
-    add_action('geodir_location_content', 'geodir_breadcrumb', 3);
57
+	//location/home add
58
+	add_action('geodir_home_content', 'geodir_breadcrumb', 3);
59
+	add_action('geodir_location_content', 'geodir_breadcrumb', 3);
60 60
 
61
-    add_action('geodir_home_content', 'geodir_action_geodir_sidebar_home_top', 5);
62
-    add_action('geodir_location_content', 'geodir_action_geodir_sidebar_home_top', 5);
61
+	add_action('geodir_home_content', 'geodir_action_geodir_sidebar_home_top', 5);
62
+	add_action('geodir_location_content', 'geodir_action_geodir_sidebar_home_top', 5);
63 63
 
64
-    // search remove
65
-    remove_action('geodir_search_before_main_content', 'geodir_action_geodir_sidebar_search_top', 10);
66
-    remove_action('geodir_search_before_main_content', 'geodir_breadcrumb', 20);
67
-    remove_action('geodir_search_page_title', 'geodir_action_search_page_title', 10);
64
+	// search remove
65
+	remove_action('geodir_search_before_main_content', 'geodir_action_geodir_sidebar_search_top', 10);
66
+	remove_action('geodir_search_before_main_content', 'geodir_breadcrumb', 20);
67
+	remove_action('geodir_search_page_title', 'geodir_action_search_page_title', 10);
68 68
 
69
-    //search add
70
-    add_action('geodir_search_content', 'geodir_action_geodir_sidebar_search_top', 5);
71
-    add_action('geodir_search_content', 'geodir_breadcrumb', 3);
72
-    add_action('geodir_search_content', 'geodir_action_search_page_title', 6);
69
+	//search add
70
+	add_action('geodir_search_content', 'geodir_action_geodir_sidebar_search_top', 5);
71
+	add_action('geodir_search_content', 'geodir_breadcrumb', 3);
72
+	add_action('geodir_search_content', 'geodir_action_search_page_title', 6);
73 73
 
74 74
 
75 75
 
76 76
 }
77 77
 
78 78
 function gd_bb__dequeue_script() {
79
-    if(geodir_is_geodir_page()){
80
-        wp_dequeue_script( 'selectboxes');
81
-    }
79
+	if(geodir_is_geodir_page()){
80
+		wp_dequeue_script( 'selectboxes');
81
+	}
82 82
 }
83 83
 add_action( 'wp_print_scripts', 'gd_bb__dequeue_script', 100 );
84 84
 
85 85
 add_action('geodir_listings_content','_bb_do_geodir_listings_page_description',11);
86 86
 function _bb_do_geodir_listings_page_description(){
87
-    do_action('geodir_listings_page_description');
87
+	do_action('geodir_listings_page_description');
88 88
 }
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 add_action('after_setup_theme', 'gd_buddyboss_action_calls', 11);
12 12
 
13 13
 remove_action('geodir_page_title', 'geodir_action_page_title', 10);
14
-function gd_buddyboss_action_calls(){
14
+function gd_buddyboss_action_calls() {
15 15
     // listings page remove
16 16
     remove_action('geodir_listings_page_title', 'geodir_action_listings_title', 10);
17 17
     remove_action('geodir_listings_before_main_content', 'geodir_action_geodir_sidebar_listings_top', 10);
@@ -24,9 +24,9 @@  discard block
 block discarded – undo
24 24
     add_action('geodir_listings_content', 'geodir_breadcrumb', 3);
25 25
     add_action('geodir_listings_content', 'geodir_action_geodir_sidebar_listings_top', 4);
26 26
     add_action('geodir_listings_content', 'geodir_cpt_pt_desc', 5); //CPT manager
27
-    if(defined("GEODIRLOCATION_VERSION")){
27
+    if (defined("GEODIRLOCATION_VERSION")) {
28 28
         add_action('geodir_listings_content', 'geodir_location_action_listings_description', 5);
29
-    }else{
29
+    } else {
30 30
         add_action('geodir_listings_content', 'geodir_action_listings_description', 5);
31 31
     }
32 32
     add_action('geodir_listings_content', 'geodir_action_listings_title', 9);
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 
42 42
     //details page add
43 43
     add_action('geodir_article_open', 'geodir_action_geodir_set_preview_post', 1);
44
-    add_action('geodir_article_open','geodir_action_geodir_preview_code', 2);
44
+    add_action('geodir_article_open', 'geodir_action_geodir_preview_code', 2);
45 45
     add_action('geodir_article_open', 'geodir_breadcrumb', 3);
46 46
     add_action('geodir_article_open', 'geodir_action_geodir_sidebar_detail_top', 5);
47 47
 
@@ -76,13 +76,13 @@  discard block
 block discarded – undo
76 76
 }
77 77
 
78 78
 function gd_bb__dequeue_script() {
79
-    if(geodir_is_geodir_page()){
80
-        wp_dequeue_script( 'selectboxes');
79
+    if (geodir_is_geodir_page()) {
80
+        wp_dequeue_script('selectboxes');
81 81
     }
82 82
 }
83
-add_action( 'wp_print_scripts', 'gd_bb__dequeue_script', 100 );
83
+add_action('wp_print_scripts', 'gd_bb__dequeue_script', 100);
84 84
 
85
-add_action('geodir_listings_content','_bb_do_geodir_listings_page_description',11);
86
-function _bb_do_geodir_listings_page_description(){
85
+add_action('geodir_listings_content', '_bb_do_geodir_listings_page_description', 11);
86
+function _bb_do_geodir_listings_page_description() {
87 87
     do_action('geodir_listings_page_description');
88 88
 }
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     add_action('geodir_listings_content', 'geodir_cpt_pt_desc', 5); //CPT manager
27 27
     if(defined("GEODIRLOCATION_VERSION")){
28 28
         add_action('geodir_listings_content', 'geodir_location_action_listings_description', 5);
29
-    }else{
29
+    } else{
30 30
         add_action('geodir_listings_content', 'geodir_action_listings_description', 5);
31 31
     }
32 32
     add_action('geodir_listings_content', 'geodir_action_listings_title', 9);
Please login to merge, or discard this patch.
geodirectory-admin/admin_functions.php 3 patches
Braces   +230 added lines, -127 removed lines patch added patch discarded remove patch
@@ -184,8 +184,9 @@  discard block
 block discarded – undo
184 184
 
185 185
         $thumb_img_arr = array();
186 186
 
187
-        if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
188
-            $thumb_img_arr = geodir_get_images($_REQUEST['pid']);
187
+        if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
188
+                    $thumb_img_arr = geodir_get_images($_REQUEST['pid']);
189
+        }
189 190
 
190 191
         $totImg = '';
191 192
         $image_limit = '';
@@ -236,7 +237,9 @@  discard block
 block discarded – undo
236 237
     {
237 238
         global $menu, $geodirectory;
238 239
 
239
-        if (current_user_can('manage_options')) $menu[] = array('', 'read', 'separator-geodirectory', '', 'wp-menu-separator geodirectory');
240
+        if (current_user_can('manage_options')) {
241
+        	$menu[] = array('', 'read', 'separator-geodirectory', '', 'wp-menu-separator geodirectory');
242
+        }
240 243
 
241 244
         add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico', '55.1984');
242 245
 
@@ -300,7 +303,9 @@  discard block
 block discarded – undo
300 303
      */
301 304
     function geodir_admin_custom_menu_order()
302 305
     {
303
-        if (!current_user_can('manage_options')) return false;
306
+        if (!current_user_can('manage_options')) {
307
+        	return false;
308
+        }
304 309
         return true;
305 310
     }
306 311
 }
@@ -331,10 +336,11 @@  discard block
 block discarded – undo
331 336
 			case 'fail':
332 337
 				$gderr = isset($_REQUEST['gderr']) ? $_REQUEST['gderr'] : '';
333 338
 				
334
-				if ($gderr == 21)
335
-			    	echo '<div id="message" class="error fade"><p><strong>' . __('Error: You can not add same permalinks for both Listing and Location, please try again.', 'geodirectory') . '</strong></p></div>';
336
-				else
337
-					echo '<div id="message" class="error fade"><p><strong>' . __('Error: Your settings have not been saved, please try again.', 'geodirectory') . '</strong></p></div>';
339
+				if ($gderr == 21) {
340
+							    	echo '<div id="message" class="error fade"><p><strong>' . __('Error: You can not add same permalinks for both Listing and Location, please try again.', 'geodirectory') . '</strong></p></div>';
341
+				} else {
342
+									echo '<div id="message" class="error fade"><p><strong>' . __('Error: Your settings have not been saved, please try again.', 'geodirectory') . '</strong></p></div>';
343
+				}
338 344
                 break;
339 345
         }
340 346
     }
@@ -385,8 +391,12 @@  discard block
 block discarded – undo
385 391
         include_once('option-pages/' . $current_tab . '_array.php');
386 392
     }
387 393
     if (isset($_POST) && $_POST && isset($_REQUEST['page']) && $_REQUEST['page'] == 'geodirectory') :
388
-        if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir-settings')) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
389
-        if (!wp_verify_nonce($_REQUEST['_wpnonce-' . $current_tab], 'geodir-settings-' . $current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
394
+        if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir-settings')) {
395
+        	die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
396
+        }
397
+        if (!wp_verify_nonce($_REQUEST['_wpnonce-' . $current_tab], 'geodir-settings-' . $current_tab)) {
398
+        	die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
399
+        }
390 400
 		
391 401
 		/**
392 402
 		 * Fires before updating geodirectory admin settings.
@@ -398,8 +408,9 @@  discard block
 block discarded – undo
398 408
 		 */
399 409
 		do_action('geodir_before_update_options', $current_tab, $geodir_settings);		
400 410
 		
401
-        if (!empty($geodir_settings[$current_tab]))
402
-            geodir_update_options($geodir_settings[$current_tab]);
411
+        if (!empty($geodir_settings[$current_tab])) {
412
+                    geodir_update_options($geodir_settings[$current_tab]);
413
+        }
403 414
 
404 415
         /**
405 416
          * Called after GeoDirectory options settings are updated.
@@ -447,11 +458,14 @@  discard block
 block discarded – undo
447 458
  * @return bool Returns true if saved.
448 459
  */
449 460
 function geodir_update_options($options, $dummy = false) {
450
-    if ((!isset($_POST) || !$_POST) && !$dummy) return false;
461
+    if ((!isset($_POST) || !$_POST) && !$dummy) {
462
+    	return false;
463
+    }
451 464
 
452 465
     foreach ($options as $value) {
453
-        if ($dummy && isset($value['std']))
454
-            $_POST[$value['id']] = $value['std'];
466
+        if ($dummy && isset($value['std'])) {
467
+                    $_POST[$value['id']] = $value['std'];
468
+        }
455 469
 
456 470
 
457 471
         if (isset($value['type']) && $value['type'] == 'checkbox') :
@@ -460,25 +474,23 @@  discard block
 block discarded – undo
460 474
                 update_option($value['id'], $_POST[$value['id']]);
461 475
             } else {
462 476
                 update_option($value['id'], 0);
463
-            }
464
-
465
-        elseif (isset($value['type']) && $value['type'] == 'image_width') :
477
+            } elseif (isset($value['type']) && $value['type'] == 'image_width') :
466 478
 
467 479
             if (isset($value['id']) && isset($_POST[$value['id'] . '_width'])) {
468 480
                 update_option($value['id'] . '_width', $_POST[$value['id'] . '_width']);
469 481
                 update_option($value['id'] . '_height', $_POST[$value['id'] . '_height']);
470 482
                 if (isset($_POST[$value['id'] . '_crop'])) :
471 483
                     update_option($value['id'] . '_crop', 1);
472
-                else :
473
-                    update_option($value['id'] . '_crop', 0);
484
+                else {
485
+                	:
486
+                    update_option($value['id'] . '_crop', 0);
487
+                }
474 488
                 endif;
475 489
             } else {
476 490
                 update_option($value['id'] . '_width', $value['std']);
477 491
                 update_option($value['id'] . '_height', $value['std']);
478 492
                 update_option($value['id'] . '_crop', 1);
479
-            }
480
-
481
-        elseif (isset($value['type']) && $value['type'] == 'map') :
493
+            } elseif (isset($value['type']) && $value['type'] == 'map') :
482 494
             $post_types = array();
483 495
             $categories = array();
484 496
 
@@ -523,8 +535,9 @@  discard block
 block discarded – undo
523 535
                     $image_name_arr = explode('/', get_option($value['id']));
524 536
                     $noimg_name = end($image_name_arr);
525 537
                     $img_path = $uploads['path'] . '/' . $noimg_name;
526
-                    if (file_exists($img_path))
527
-                        unlink($img_path);
538
+                    if (file_exists($img_path)) {
539
+                                            unlink($img_path);
540
+                    }
528 541
                 }
529 542
 
530 543
                 update_option($value['id'], '');
@@ -540,8 +553,10 @@  discard block
 block discarded – undo
540 553
                 foreach ($uploadedfile as $key => $uplaod):
541 554
                     if ($key == 'name'):
542 555
                         $uplaods[$key] = $filename;
543
-                    else :
544
-                        $uplaods[$key] = $uplaod;
556
+                    else {
557
+                    	:
558
+                        $uplaods[$key] = $uplaod;
559
+                    }
545 560
                     endif;
546 561
                 endforeach;
547 562
 
@@ -551,8 +566,9 @@  discard block
 block discarded – undo
551 566
                     $image_name_arr = explode('/', get_option($value['id']));
552 567
                     $noimg_name = end($image_name_arr);
553 568
                     $img_path = $uploads['path'] . '/' . $noimg_name;
554
-                    if (file_exists($img_path))
555
-                        unlink($img_path);
569
+                    if (file_exists($img_path)) {
570
+                                            unlink($img_path);
571
+                    }
556 572
                 }
557 573
 
558 574
                 $upload_overrides = array('test_form' => false);
@@ -567,10 +583,12 @@  discard block
 block discarded – undo
567 583
             endif;
568 584
 
569 585
 
570
-        else :
586
+        else {
587
+        	:
571 588
             // same menu setting per theme.
572 589
             if (isset($value['id']) && $value['id'] == 'geodir_theme_location_nav' && isset($_POST[$value['id']])) {
573
-                $theme = wp_get_theme();
590
+                $theme = wp_get_theme();
591
+        }
574 592
                 update_option('geodir_theme_location_nav_' . $theme->name, $_POST[$value['id']]);
575 593
             }
576 594
 
@@ -582,8 +600,9 @@  discard block
 block discarded – undo
582 600
 
583 601
         endif;
584 602
     }
585
-    if ($dummy)
586
-        $_POST = array();
603
+    if ($dummy) {
604
+            $_POST = array();
605
+    }
587 606
     return true;
588 607
 
589 608
 }
@@ -729,9 +748,12 @@  discard block
 block discarded – undo
729 748
         $new_columns = array('location' => __('Location (ID)', 'geodirectory'),
730 749
             'categorys' => __('Categories', 'geodirectory'));
731 750
 
732
-        if (($offset = array_search('author', array_keys($columns))) === false) // if the key doesn't exist
751
+        if (($offset = array_search('author', array_keys($columns))) === false) {
752
+        	// if the key doesn't exist
733 753
         {
734
-            $offset = 0; // should we prepend $array with $data?
754
+            $offset = 0;
755
+        }
756
+        // should we prepend $array with $data?
735 757
             $offset = count($columns); // or should we append $array with $data? lets pick this one...
736 758
         }
737 759
 
@@ -791,11 +813,13 @@  discard block
 block discarded – undo
791 813
                     $date_diff_text = '<br /><span class="' . $expire_class . '">(' . $date_diff . ' ' . $state . ')</span>';
792 814
                 }
793 815
                 /* If no expire_date is found, output a default message. */
794
-                if (empty($expire_date))
795
-                    echo __('Unknown', 'geodirectory');
816
+                if (empty($expire_date)) {
817
+                                    echo __('Unknown', 'geodirectory');
818
+                }
796 819
                 /* If there is a expire_date, append 'days left' to the text string. */
797
-                else
798
-                    echo $expire_date . $date_diff_text;
820
+                else {
821
+                                    echo $expire_date . $date_diff_text;
822
+                }
799 823
                 break;
800 824
 
801 825
             /* If displaying the 'categorys' column. */
@@ -868,21 +892,26 @@  discard block
 block discarded – undo
868 892
 
869 893
     $geodir_posttypes = geodir_get_posttypes();
870 894
 
871
-    if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)
872
-        return;
895
+    if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
896
+            return;
897
+    }
873 898
 
874 899
     if (!wp_is_post_revision($post_id) && isset($post->post_type) && in_array($post->post_type, $geodir_posttypes)) {
875
-        if (isset($_REQUEST['_status']))
876
-            geodir_change_post_status($post_id, $_REQUEST['_status']);
900
+        if (isset($_REQUEST['_status'])) {
901
+                    geodir_change_post_status($post_id, $_REQUEST['_status']);
902
+        }
877 903
 
878
-        if (isset($_REQUEST['action']) && ($_REQUEST['action'] == 'trash' || $_REQUEST['action'] == 'untrash'))
879
-            return;
904
+        if (isset($_REQUEST['action']) && ($_REQUEST['action'] == 'trash' || $_REQUEST['action'] == 'untrash')) {
905
+                    return;
906
+        }
880 907
 
881
-        if (!isset($_POST['geodir_post_info_noncename']) || !wp_verify_nonce($_POST['geodir_post_info_noncename'], plugin_basename(__FILE__)))
882
-            return;
908
+        if (!isset($_POST['geodir_post_info_noncename']) || !wp_verify_nonce($_POST['geodir_post_info_noncename'], plugin_basename(__FILE__))) {
909
+                    return;
910
+        }
883 911
 
884
-        if (!isset($_POST['geodir_post_attachments_noncename']) || !wp_verify_nonce($_POST['geodir_post_attachments_noncename'], plugin_basename(__FILE__)))
885
-            return;
912
+        if (!isset($_POST['geodir_post_attachments_noncename']) || !wp_verify_nonce($_POST['geodir_post_attachments_noncename'], plugin_basename(__FILE__))) {
913
+                    return;
914
+        }
886 915
 
887 916
         geodir_save_listing($_REQUEST);
888 917
     }
@@ -907,10 +936,18 @@  discard block
 block discarded – undo
907 936
     $tab_id = '';
908 937
     $i = 0;
909 938
     foreach ($options as $value) :
910
-        if (!isset($value['name'])) $value['name'] = '';
911
-        if (!isset($value['class'])) $value['class'] = '';
912
-        if (!isset($value['css'])) $value['css'] = '';
913
-        if (!isset($value['std'])) $value['std'] = '';
939
+        if (!isset($value['name'])) {
940
+        	$value['name'] = '';
941
+        }
942
+        if (!isset($value['class'])) {
943
+        	$value['class'] = '';
944
+        }
945
+        if (!isset($value['css'])) {
946
+        	$value['css'] = '';
947
+        }
948
+        if (!isset($value['std'])) {
949
+        	$value['std'] = '';
950
+        }
914 951
         $desc = '';
915 952
         switch ($value['type']) :
916 953
             case 'dummy_installer':
@@ -926,11 +963,13 @@  discard block
 block discarded – undo
926 963
 
927 964
                 $i++;
928 965
 
929
-                if (isset($value['id']) && $value['id'])
930
-                    $tab_id = $value['id'];
966
+                if (isset($value['id']) && $value['id']) {
967
+                                    $tab_id = $value['id'];
968
+                }
931 969
 
932
-                if (isset($value['desc']) && $value['desc'])
933
-                    $desc = '<span style=" text-transform:none;">:- ' . $value['desc'] . '</span>';
970
+                if (isset($value['desc']) && $value['desc']) {
971
+                                    $desc = '<span style=" text-transform:none;">:- ' . $value['desc'] . '</span>';
972
+                }
934 973
 
935 974
                 if (isset($value['name']) && $value['name']) {
936 975
                     if ($first_title === true) {
@@ -961,10 +1000,12 @@  discard block
 block discarded – undo
961 1000
                 break;
962 1001
 
963 1002
             case 'sectionstart':
964
-                if (isset($value['desc']) && $value['desc'])
965
-                    $desc = '<span style=" text-transform:none;"> - ' . $value['desc'] . '</span>';
966
-                if (isset($value['name']) && $value['name'])
967
-                    echo '<h3>' . $value['name'] . $desc . '</h3>';
1003
+                if (isset($value['desc']) && $value['desc']) {
1004
+                                    $desc = '<span style=" text-transform:none;"> - ' . $value['desc'] . '</span>';
1005
+                }
1006
+                if (isset($value['name']) && $value['name']) {
1007
+                                    echo '<h3>' . $value['name'] . $desc . '</h3>';
1008
+                }
968 1009
                 /**
969 1010
                  * Called after a GeoDirectory settings sectionstart is output in the GD settings page.
970 1011
                  *
@@ -972,7 +1013,9 @@  discard block
 block discarded – undo
972 1013
                  *
973 1014
                  * @since 1.0.0
974 1015
                  */
975
-                if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_start');
1016
+                if (isset($value['id']) && $value['id']) {
1017
+                	do_action('geodir_settings_' . sanitize_title($value['id']) . '_start');
1018
+                }
976 1019
                 echo '<table class="form-table">' . "\n\n";
977 1020
 
978 1021
                 break;
@@ -984,7 +1027,9 @@  discard block
 block discarded – undo
984 1027
                  *
985 1028
                  * @since 1.0.0
986 1029
                  */
987
-                if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_end');
1030
+                if (isset($value['id']) && $value['id']) {
1031
+                	do_action('geodir_settings_' . sanitize_title($value['id']) . '_end');
1032
+                }
988 1033
                 echo '</table>';
989 1034
                 /**
990 1035
                  * Called after a GeoDirectory settings sectionend is output in the GD settings page.
@@ -993,7 +1038,9 @@  discard block
 block discarded – undo
993 1038
                  *
994 1039
                  * @since 1.0.0
995 1040
                  */
996
-                if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_after');
1041
+                if (isset($value['id']) && $value['id']) {
1042
+                	do_action('geodir_settings_' . sanitize_title($value['id']) . '_after');
1043
+                }
997 1044
                 break;
998 1045
             case 'text':
999 1046
                 ?>
@@ -1084,17 +1131,32 @@  discard block
 block discarded – undo
1084 1131
                     <?php _e('Width', 'geodirectory'); ?> <input
1085 1132
                         name="<?php echo esc_attr($value['id']); ?>_width"
1086 1133
                         id="<?php echo esc_attr($value['id']); ?>_width" type="text" size="3"
1087
-                        value="<?php if ($size = get_option($value['id'] . '_width')) echo stripslashes($size); else echo $value['std']; ?>"/>
1134
+                        value="<?php if ($size = get_option($value['id'] . '_width')) {
1135
+	echo stripslashes($size);
1136
+} else {
1137
+	echo $value['std'];
1138
+}
1139
+?>"/>
1088 1140
 
1089 1141
                     <?php _e('Height', 'geodirectory'); ?> <input
1090 1142
                         name="<?php echo esc_attr($value['id']); ?>_height"
1091 1143
                         id="<?php echo esc_attr($value['id']); ?>_height" type="text" size="3"
1092
-                        value="<?php if ($size = get_option($value['id'] . '_height')) echo stripslashes($size); else echo $value['std']; ?>"/>
1144
+                        value="<?php if ($size = get_option($value['id'] . '_height')) {
1145
+	echo stripslashes($size);
1146
+} else {
1147
+	echo $value['std'];
1148
+}
1149
+?>"/>
1093 1150
 
1094 1151
                     <label><?php _e('Hard Crop', 'geodirectory'); ?> <input
1095 1152
                             name="<?php echo esc_attr($value['id']); ?>_crop"
1096 1153
                             id="<?php echo esc_attr($value['id']); ?>_crop"
1097
-                            type="checkbox" <?php if (get_option($value['id'] . '_crop') != '') checked(get_option($value['id'] . '_crop'), 1); else checked(1); ?> /></label>
1154
+                            type="checkbox" <?php if (get_option($value['id'] . '_crop') != '') {
1155
+	checked(get_option($value['id'] . '_crop'), 1);
1156
+} else {
1157
+	checked(1);
1158
+}
1159
+?> /></label>
1098 1160
 
1099 1161
                     <span class="description"><?php echo $value['desc'] ?></span></td>
1100 1162
                 </tr><?php
@@ -1108,17 +1170,22 @@  discard block
 block discarded – undo
1108 1170
                 <td class="forminp"><select name="<?php echo esc_attr($value['id']); ?>"
1109 1171
                                             id="<?php echo esc_attr($value['id']); ?>"
1110 1172
                                             style="<?php echo esc_attr($value['css']); ?>"
1111
-                                            class="<?php if (isset($value['class'])) echo $value['class']; ?>"
1173
+                                            class="<?php if (isset($value['class'])) {
1174
+	echo $value['class'];
1175
+}
1176
+?>"
1112 1177
                                             option-ajaxchosen="false">
1113 1178
                         <?php
1114 1179
                         foreach ($value['options'] as $key => $val) {
1115 1180
                             $geodir_select_value = '';
1116 1181
                             if ($option_value != '') {
1117
-                                if ($option_value != '' && $option_value == $key)
1118
-                                    $geodir_select_value = ' selected="selected" ';
1182
+                                if ($option_value != '' && $option_value == $key) {
1183
+                                                                    $geodir_select_value = ' selected="selected" ';
1184
+                                }
1119 1185
                             } else {
1120
-                                if ($value['std'] == $key)
1121
-                                    $geodir_select_value = ' selected="selected" ';
1186
+                                if ($value['std'] == $key) {
1187
+                                                                    $geodir_select_value = ' selected="selected" ';
1188
+                                }
1122 1189
                             }
1123 1190
                             ?>
1124 1191
                             <option
@@ -1143,8 +1210,14 @@  discard block
 block discarded – undo
1143 1210
                 <td class="forminp"><select multiple="multiple" name="<?php echo esc_attr($value['id']); ?>[]"
1144 1211
                                             id="<?php echo esc_attr($value['id']); ?>"
1145 1212
                                             style="<?php echo esc_attr($value['css']); ?>"
1146
-                                            class="<?php if (isset($value['class'])) echo $value['class']; ?>"
1147
-                                            data-placeholder="<?php if (isset($value['placeholder_text'])) echo $value['placeholder_text'];?>"
1213
+                                            class="<?php if (isset($value['class'])) {
1214
+	echo $value['class'];
1215
+}
1216
+?>"
1217
+                                            data-placeholder="<?php if (isset($value['placeholder_text'])) {
1218
+	echo $value['placeholder_text'];
1219
+}
1220
+?>"
1148 1221
                                             option-ajaxchosen="false">
1149 1222
                         <?php
1150 1223
                         foreach ($value['options'] as $key => $val) {
@@ -1172,7 +1245,10 @@  discard block
 block discarded – undo
1172 1245
                 <td class="forminp">
1173 1246
                     <input type="file" name="<?php echo esc_attr($value['id']); ?>"
1174 1247
                            id="<?php echo esc_attr($value['id']); ?>" style="<?php echo esc_attr($value['css']); ?>"
1175
-                           class="<?php if (isset($value['class'])) echo $value['class']; ?>"/>
1248
+                           class="<?php if (isset($value['class'])) {
1249
+	echo $value['class'];
1250
+}
1251
+?>"/>
1176 1252
                     <?php if (get_option($value['id'])) { ?>
1177 1253
                         <input type="hidden" name="<?php echo esc_attr($value['id']); ?>_remove"
1178 1254
                                id="<?php echo esc_attr($value['id']); ?>_remove" value="0">
@@ -1253,13 +1329,15 @@  discard block
 block discarded – undo
1253 1329
                                 'zh-TW' => __('CHINESE (TRADITIONAL)', 'geodirectory'),
1254 1330
                             );
1255 1331
                             $geodir_default_map_language = get_option('geodir_default_map_language');
1256
-                            if (empty($geodir_default_map_language))
1257
-                                $geodir_default_map_language = 'en';
1332
+                            if (empty($geodir_default_map_language)) {
1333
+                                                            $geodir_default_map_language = 'en';
1334
+                            }
1258 1335
                             foreach ($arr_map_langages as $language_key => $language_txt) {
1259
-                                if (!empty($geodir_default_map_language) && $language_key == $geodir_default_map_language)
1260
-                                    $geodir_default_language_selected = "selected='selected'";
1261
-                                else
1262
-                                    $geodir_default_language_selected = '';
1336
+                                if (!empty($geodir_default_map_language) && $language_key == $geodir_default_map_language) {
1337
+                                                                    $geodir_default_language_selected = "selected='selected'";
1338
+                                } else {
1339
+                                                                    $geodir_default_language_selected = '';
1340
+                                }
1263 1341
 
1264 1342
                                 ?>
1265 1343
                                 <option
@@ -1279,14 +1357,16 @@  discard block
 block discarded – undo
1279 1357
                             <?php
1280 1358
                             $post_types = geodir_get_posttypes('array');
1281 1359
                             $geodir_default_map_search_pt = get_option('geodir_default_map_search_pt');
1282
-                            if (empty($geodir_default_map_search_pt))
1283
-                                $geodir_default_map_search_pt = 'gd_place';
1360
+                            if (empty($geodir_default_map_search_pt)) {
1361
+                                                            $geodir_default_map_search_pt = 'gd_place';
1362
+                            }
1284 1363
                             if (is_array($post_types)) {
1285 1364
                                 foreach ($post_types as $key => $post_types_obj) {
1286
-                                    if (!empty($geodir_default_map_search_pt) && $key == $geodir_default_map_search_pt)
1287
-                                        $geodir_search_pt_selected = "selected='selected'";
1288
-                                    else
1289
-                                        $geodir_search_pt_selected = '';
1365
+                                    if (!empty($geodir_default_map_search_pt) && $key == $geodir_default_map_search_pt) {
1366
+                                                                            $geodir_search_pt_selected = "selected='selected'";
1367
+                                    } else {
1368
+                                                                            $geodir_search_pt_selected = '';
1369
+                                    }
1290 1370
 
1291 1371
                                     ?>
1292 1372
                                     <option
@@ -1406,7 +1486,7 @@  discard block
 block discarded – undo
1406 1486
                                id="<?php echo esc_attr($value['id'] . $value['value']); ?>" type="radio"
1407 1487
                                value="<?php echo $value['value'] ?>" <?php if (get_option($value['id']) == $value['value']) {
1408 1488
                             echo 'checked="checked"';
1409
-                        }elseif(get_option($value['id'])=='' && $value['std']==$value['value']){echo 'checked="checked"';} ?> />
1489
+                        } elseif(get_option($value['id'])=='' && $value['std']==$value['value']){echo 'checked="checked"';} ?> />
1410 1490
                         <?php echo $value['desc']; ?></label><br>
1411 1491
                 </fieldset>
1412 1492
                 <?php
@@ -1426,10 +1506,18 @@  discard block
 block discarded – undo
1426 1506
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1427 1507
                 <td class="forminp">
1428 1508
                     <textarea
1429
-                        <?php if (isset($value['args'])) echo $value['args'] . ' '; ?>name="<?php echo esc_attr($value['id']); ?>"
1509
+                        <?php if (isset($value['args'])) {
1510
+	echo $value['args'] . ' ';
1511
+}
1512
+?>name="<?php echo esc_attr($value['id']); ?>"
1430 1513
                         id="<?php echo esc_attr($value['id']); ?>"
1431 1514
                         <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1432
-                        style="<?php echo esc_attr($value['css']); ?>"><?php if (get_option($value['id'])) echo esc_textarea(stripslashes(get_option($value['id']))); else echo esc_textarea($value['std']); ?></textarea><span
1515
+                        style="<?php echo esc_attr($value['css']); ?>"><?php if (get_option($value['id'])) {
1516
+	echo esc_textarea(stripslashes(get_option($value['id'])));
1517
+} else {
1518
+	echo esc_textarea($value['std']);
1519
+}
1520
+?></textarea><span
1433 1521
                         class="description"><?php echo $value['desc'] ?></span>
1434 1522
 
1435 1523
                 </td>
@@ -1441,10 +1529,11 @@  discard block
 block discarded – undo
1441 1529
                 <tr valign="top">
1442 1530
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1443 1531
                 <td class="forminp"><?php
1444
-                    if (get_option($value['id']))
1445
-                        $content = stripslashes(get_option($value['id']));
1446
-                    else
1447
-                        $content = $value['std'];
1532
+                    if (get_option($value['id'])) {
1533
+                                            $content = stripslashes(get_option($value['id']));
1534
+                    } else {
1535
+                                            $content = $value['std'];
1536
+                    }
1448 1537
 
1449 1538
                     $editor_settings = array('media_buttons' => false, 'textarea_rows' => 10);
1450 1539
 
@@ -1484,7 +1573,9 @@  discard block
 block discarded – undo
1484 1573
                     'echo' => false,
1485 1574
                     'selected' => $page_setting);
1486 1575
 
1487
-                if (isset($value['args'])) $args = wp_parse_args($value['args'], $args);
1576
+                if (isset($value['args'])) {
1577
+                	$args = wp_parse_args($value['args'], $args);
1578
+                }
1488 1579
 
1489 1580
                 ?>
1490 1581
                 <tr valign="top" class="single_select_page">
@@ -1503,8 +1594,10 @@  discard block
 block discarded – undo
1503 1594
                 if (strstr($country_setting, ':')) :
1504 1595
                     $country = current(explode(':', $country_setting));
1505 1596
                     $state = end(explode(':', $country_setting));
1506
-                else :
1507
-                    $country = $country_setting;
1597
+                else {
1598
+                	:
1599
+                    $country = $country_setting;
1600
+                }
1508 1601
                     $state = '*';
1509 1602
                 endif;
1510 1603
                 ?>
@@ -1531,8 +1624,10 @@  discard block
 block discarded – undo
1531 1624
                             data-placeholder="<?php _e('Choose countries&hellip;', 'geodirectory'); ?>"
1532 1625
                             title="Country" class="chosen_select">
1533 1626
                         <?php
1534
-                        if ($countries) foreach ($countries as $key => $val) :
1535
-                            echo '<option value="' . $key . '" ' . selected(in_array($key, $selections), true, false) . '>' . $val . '</option>';
1627
+                        if ($countries) {
1628
+                        	foreach ($countries as $key => $val) :
1629
+                            echo '<option value="' . $key . '" ' . selected(in_array($key, $selections), true, false) . '>' . $val . '</option>';
1630
+                        }
1536 1631
                         endforeach;
1537 1632
                         ?>
1538 1633
                     </select>
@@ -1770,8 +1865,9 @@  discard block
 block discarded – undo
1770 1865
         endforeach;
1771 1866
     endif;
1772 1867
 
1773
-    if (!empty($place_img_array))
1774
-        $curImages = implode(',', $place_img_array);
1868
+    if (!empty($place_img_array)) {
1869
+            $curImages = implode(',', $place_img_array);
1870
+    }
1775 1871
 
1776 1872
 
1777 1873
     // adjust values here
@@ -2117,16 +2213,17 @@  discard block
 block discarded – undo
2117 2213
 	global $post, $typenow, $current_screen;
2118 2214
 	
2119 2215
 	$post_type = NULL;
2120
-    if (isset($_REQUEST['post_type']))
2121
-		$post_type = sanitize_key($_REQUEST['post_type']);
2122
-    elseif (isset($_REQUEST['post']) && get_post_type($_REQUEST['post']))
2123
-		$post_type = get_post_type($_REQUEST['post']);
2124
-    elseif ($post && isset($post->post_type))
2125
-		$post_type = $post->post_type;
2126
-	elseif ($typenow)
2127
-		$post_type = $typenow;
2128
-	elseif ($current_screen && isset($current_screen->post_type))
2129
-		$post_type = $current_screen->post_type;
2216
+    if (isset($_REQUEST['post_type'])) {
2217
+    		$post_type = sanitize_key($_REQUEST['post_type']);
2218
+    } elseif (isset($_REQUEST['post']) && get_post_type($_REQUEST['post'])) {
2219
+    		$post_type = get_post_type($_REQUEST['post']);
2220
+    } elseif ($post && isset($post->post_type)) {
2221
+    		$post_type = $post->post_type;
2222
+    } elseif ($typenow) {
2223
+			$post_type = $typenow;
2224
+	} elseif ($current_screen && isset($current_screen->post_type)) {
2225
+			$post_type = $current_screen->post_type;
2226
+	}
2130 2227
 
2131 2228
 
2132 2229
 
@@ -2187,9 +2284,10 @@  discard block
 block discarded – undo
2187 2284
 function geodir_hide_admin_preview_button() {
2188 2285
     global $post_type;
2189 2286
     $post_types = geodir_get_posttypes();
2190
-    if(in_array($post_type, $post_types))
2191
-        echo '<style type="text/css">#post-preview, #view-post-btn{display: none;}</style>';
2192
-}
2287
+    if(in_array($post_type, $post_types)) {
2288
+            echo '<style type="text/css">#post-preview, #view-post-btn{display: none;}</style>';
2289
+    }
2290
+    }
2193 2291
 add_action( 'admin_head-post-new.php', 'geodir_hide_admin_preview_button' );
2194 2292
 add_action( 'admin_head-post.php', 'geodir_hide_admin_preview_button' );
2195 2293
 
@@ -5419,8 +5517,9 @@  discard block
 block discarded – undo
5419 5517
 function geodir_get_export_posts( $post_type, $per_page = 0, $page_no = 0 ) {
5420 5518
     global $wpdb, $plugin_prefix;
5421 5519
 
5422
-    if ( ! post_type_exists( $post_type ) )
5423
-        return new stdClass;
5520
+    if ( ! post_type_exists( $post_type ) ) {
5521
+            return new stdClass;
5522
+    }
5424 5523
         
5425 5524
     $table = $plugin_prefix . $post_type . '_detail';
5426 5525
 
@@ -6077,7 +6176,9 @@  discard block
 block discarded – undo
6077 6176
 
6078 6177
     if ($page_found) :
6079 6178
         // Page exists
6080
-        if (!$option_value) update_option($option, $page_found);
6179
+        if (!$option_value) {
6180
+        	update_option($option, $page_found);
6181
+        }
6081 6182
         return;
6082 6183
     endif;
6083 6184
 
@@ -6488,7 +6589,7 @@  discard block
 block discarded – undo
6488 6589
         
6489 6590
         if(is_array($accounts)){
6490 6591
             $accounts = array_merge(array(__('Select Account','geodirectory')),$accounts);
6491
-        }elseif(get_option('geodir_ga_account_id')){
6592
+        } elseif(get_option('geodir_ga_account_id')){
6492 6593
             $accounts = array();
6493 6594
             $accounts[get_option('geodir_ga_account_id')] = __('Account re-authorization may be required','geodirectory').' ('.get_option('geodir_ga_account_id').')';
6494 6595
         }
@@ -6509,14 +6610,16 @@  discard block
 block discarded – undo
6509 6610
     }
6510 6611
 
6511 6612
     # Create a new Gdata call
6512
-    if ( trim(get_option('geodir_ga_auth_code')) != '' )
6513
-        $stats = new GDGoogleAnalyticsStats();
6514
-    else
6515
-        return false;
6613
+    if ( trim(get_option('geodir_ga_auth_code')) != '' ) {
6614
+            $stats = new GDGoogleAnalyticsStats();
6615
+    } else {
6616
+            return false;
6617
+    }
6516 6618
 
6517 6619
     # Check if Google sucessfully logged in
6518
-    if ( ! $stats->checkLogin() )
6519
-        return false;
6620
+    if ( ! $stats->checkLogin() ) {
6621
+            return false;
6622
+    }
6520 6623
 
6521 6624
     # Get a list of accounts
6522 6625
     try {
@@ -6533,10 +6636,10 @@  discard block
 block discarded – undo
6533 6636
     if ( count($accounts) > 0 ){
6534 6637
         update_option('geodir_gd_uids',$accounts);
6535 6638
         return $accounts;
6639
+    } else {
6640
+            return false;
6641
+    }
6536 6642
     }
6537
-    else
6538
-        return false;
6539
-}
6540 6643
 
6541 6644
 add_action( 'wp_ajax_geodir_ga_deauthorize', 'geodir_ga_deauthorize' );
6542 6645
 function geodir_ga_deauthorize(){
Please login to merge, or discard this patch.
Spacing   +961 added lines, -961 removed lines patch added patch discarded remove patch
@@ -28,31 +28,31 @@  discard block
 block discarded – undo
28 28
      * @package GeoDirectory
29 29
      */
30 30
     function geodir_admin_styles() {
31
-        wp_register_style('geodirectory-admin-css', geodir_plugin_url() . '/geodirectory-assets/css/admin.css', array(), GEODIRECTORY_VERSION);
31
+        wp_register_style('geodirectory-admin-css', geodir_plugin_url().'/geodirectory-assets/css/admin.css', array(), GEODIRECTORY_VERSION);
32 32
         wp_enqueue_style('geodirectory-admin-css');
33 33
 
34
-        wp_register_style('geodirectory-frontend-style', geodir_plugin_url() . '/geodirectory-assets/css/style.css', array(), GEODIRECTORY_VERSION);
34
+        wp_register_style('geodirectory-frontend-style', geodir_plugin_url().'/geodirectory-assets/css/style.css', array(), GEODIRECTORY_VERSION);
35 35
         wp_enqueue_style('geodirectory-frontend-style');
36 36
 
37
-        wp_register_style('geodir-chosen-style', geodir_plugin_url() . '/geodirectory-assets/css/chosen.css', array(), GEODIRECTORY_VERSION);
37
+        wp_register_style('geodir-chosen-style', geodir_plugin_url().'/geodirectory-assets/css/chosen.css', array(), GEODIRECTORY_VERSION);
38 38
         wp_enqueue_style('geodir-chosen-style');
39 39
 
40
-        wp_register_style('geodirectory-jquery-ui-timepicker-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery.ui.timepicker.css', array(), GEODIRECTORY_VERSION);
40
+        wp_register_style('geodirectory-jquery-ui-timepicker-css', geodir_plugin_url().'/geodirectory-assets/css/jquery.ui.timepicker.css', array(), GEODIRECTORY_VERSION);
41 41
         wp_enqueue_style('geodirectory-jquery-ui-timepicker-css');
42 42
 
43
-        wp_register_style('geodirectory-jquery-ui-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery-ui.css', array(), GEODIRECTORY_VERSION);
43
+        wp_register_style('geodirectory-jquery-ui-css', geodir_plugin_url().'/geodirectory-assets/css/jquery-ui.css', array(), GEODIRECTORY_VERSION);
44 44
         wp_enqueue_style('geodirectory-jquery-ui-css');
45 45
 
46
-        wp_register_style('geodirectory-custom-fields-css', geodir_plugin_url() . '/geodirectory-assets/css/custom_field.css', array(), GEODIRECTORY_VERSION);
46
+        wp_register_style('geodirectory-custom-fields-css', geodir_plugin_url().'/geodirectory-assets/css/custom_field.css', array(), GEODIRECTORY_VERSION);
47 47
         wp_enqueue_style('geodirectory-custom-fields-css');
48 48
 
49
-        wp_register_style('geodirectory-pluplodar-css', geodir_plugin_url() . '/geodirectory-assets/css/pluploader.css', array(), GEODIRECTORY_VERSION);
49
+        wp_register_style('geodirectory-pluplodar-css', geodir_plugin_url().'/geodirectory-assets/css/pluploader.css', array(), GEODIRECTORY_VERSION);
50 50
         wp_enqueue_style('geodirectory-pluplodar-css');
51 51
 
52
-        wp_register_style('geodir-rating-style', geodir_plugin_url() . '/geodirectory-assets/css/jRating.jquery.css', array(), GEODIRECTORY_VERSION);
52
+        wp_register_style('geodir-rating-style', geodir_plugin_url().'/geodirectory-assets/css/jRating.jquery.css', array(), GEODIRECTORY_VERSION);
53 53
         wp_enqueue_style('geodir-rating-style');
54 54
 
55
-        wp_register_style('geodir-rtl-style', geodir_plugin_url() . '/geodirectory-assets/css/rtl.css', array(), GEODIRECTORY_VERSION);
55
+        wp_register_style('geodir-rtl-style', geodir_plugin_url().'/geodirectory-assets/css/rtl.css', array(), GEODIRECTORY_VERSION);
56 56
         wp_enqueue_style('geodir-rtl-style');
57 57
     }
58 58
 }
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
 //        wp_register_script('font-awesome-shim', 'https://use.fontawesome.com/releases/v5.5.0/js/v4-shims.js', array(), GEODIRECTORY_VERSION);
72 72
 //        wp_enqueue_script( 'font-awesome' );
73 73
 
74
-        wp_register_script('geodirectory-admin', geodir_plugin_url() . '/geodirectory-assets/js/admin-req.min.js', array('jquery'), GEODIRECTORY_VERSION);
74
+        wp_register_script('geodirectory-admin', geodir_plugin_url().'/geodirectory-assets/js/admin-req.min.js', array('jquery'), GEODIRECTORY_VERSION);
75 75
         wp_enqueue_script('geodirectory-admin');
76 76
 
77 77
     }
@@ -90,68 +90,68 @@  discard block
 block discarded – undo
90 90
         
91 91
         wp_enqueue_script('jquery');
92 92
 
93
-        wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.ui.timepicker.js', array('jquery-ui-datepicker', 'jquery-ui-slider'), '', true);
93
+        wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url().'/geodirectory-assets/js/jquery.ui.timepicker.js', array('jquery-ui-datepicker', 'jquery-ui-slider'), '', true);
94 94
 
95
-        wp_register_script('chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.js', array('jquery'), GEODIRECTORY_VERSION);
95
+        wp_register_script('chosen', geodir_plugin_url().'/geodirectory-assets/js/chosen.jquery.js', array('jquery'), GEODIRECTORY_VERSION);
96 96
         wp_enqueue_script('chosen');
97 97
 
98
-        wp_register_script('geodirectory-choose-ajax', geodir_plugin_url() . '/geodirectory-assets/js/ajax-chosen.js', array(), GEODIRECTORY_VERSION);
98
+        wp_register_script('geodirectory-choose-ajax', geodir_plugin_url().'/geodirectory-assets/js/ajax-chosen.js', array(), GEODIRECTORY_VERSION);
99 99
         wp_enqueue_script('geodirectory-choose-ajax');
100 100
 
101 101
         if (isset($_REQUEST['listing_type'])) {
102
-            wp_register_script('geodirectory-custom-fields-script', geodir_plugin_url() . '/geodirectory-assets/js/custom_fields.js', array(), GEODIRECTORY_VERSION);
102
+            wp_register_script('geodirectory-custom-fields-script', geodir_plugin_url().'/geodirectory-assets/js/custom_fields.js', array(), GEODIRECTORY_VERSION);
103 103
         }
104 104
 
105 105
         wp_enqueue_script('geodirectory-custom-fields-script');
106
-        $plugin_path = geodir_plugin_url() . '/geodirectory-functions/cat-meta-functions';
106
+        $plugin_path = geodir_plugin_url().'/geodirectory-functions/cat-meta-functions';
107 107
 
108
-        wp_enqueue_script('tax-meta-clss', $plugin_path . '/js/tax-meta-clss.js', array('jquery'), null, true);
108
+        wp_enqueue_script('tax-meta-clss', $plugin_path.'/js/tax-meta-clss.js', array('jquery'), null, true);
109 109
 
110 110
         if (in_array($geodir_map_name, array('auto', 'google'))) {
111
-            $map_lang = "&language=" . geodir_get_map_default_language();
112
-            $map_key = "&key=" . geodir_get_map_api_key();
111
+            $map_lang = "&language=".geodir_get_map_default_language();
112
+            $map_key = "&key=".geodir_get_map_api_key();
113 113
             /** This filter is documented in geodirectory_template_tags.php */
114 114
             $map_extra = apply_filters('geodir_googlemap_script_extra', '');
115
-            wp_enqueue_script('google-maps-api', 'https://maps.google.com/maps/api/js?' . $map_lang . $map_key . $map_extra, '', NULL);
115
+            wp_enqueue_script('google-maps-api', 'https://maps.google.com/maps/api/js?'.$map_lang.$map_key.$map_extra, '', NULL);
116 116
             
117 117
             // Overlapping Marker Spiderfier
118
-            wp_register_script('geodirectory-g-overlappingmarker-script', geodir_plugin_url() . '/geodirectory-assets/jawj/oms.min.js', array(), GEODIRECTORY_VERSION);
118
+            wp_register_script('geodirectory-g-overlappingmarker-script', geodir_plugin_url().'/geodirectory-assets/jawj/oms.min.js', array(), GEODIRECTORY_VERSION);
119 119
             wp_enqueue_script('geodirectory-g-overlappingmarker-script');
120 120
         }
121 121
         
122 122
         if ($geodir_map_name == 'osm') {
123 123
             // Leaflet OpenStreetMap
124
-            wp_register_style('geodirectory-leaflet-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
124
+            wp_register_style('geodirectory-leaflet-style', geodir_plugin_url().'/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
125 125
             wp_enqueue_style('geodirectory-leaflet-style');
126 126
                 
127
-            wp_register_script('geodirectory-leaflet-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
127
+            wp_register_script('geodirectory-leaflet-script', geodir_plugin_url().'/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
128 128
             wp_enqueue_script('geodirectory-leaflet-script');
129 129
             
130
-            wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/osm.geocode.min.js', array('geodirectory-leaflet-script'), GEODIRECTORY_VERSION);
130
+            wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url().'/geodirectory-assets/leaflet/osm.geocode.min.js', array('geodirectory-leaflet-script'), GEODIRECTORY_VERSION);
131 131
             wp_enqueue_script('geodirectory-leaflet-geo-script');
132 132
             
133 133
             // Overlapping Marker Spiderfier Leaflet
134
-            wp_register_script('geodirectory-o-overlappingmarker-script', geodir_plugin_url() . '/geodirectory-assets/jawj/oms-leaflet.min.js', array(), GEODIRECTORY_VERSION);
134
+            wp_register_script('geodirectory-o-overlappingmarker-script', geodir_plugin_url().'/geodirectory-assets/jawj/oms-leaflet.min.js', array(), GEODIRECTORY_VERSION);
135 135
             wp_enqueue_script('geodirectory-o-overlappingmarker-script');
136 136
         }
137
-        wp_enqueue_script( 'jquery-ui-autocomplete' );
137
+        wp_enqueue_script('jquery-ui-autocomplete');
138 138
         
139
-        wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION,true);
139
+        wp_register_script('geodirectory-goMap-script', geodir_plugin_url().'/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION, true);
140 140
         wp_enqueue_script('geodirectory-goMap-script');
141 141
 
142
-        wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.js', array(), GEODIRECTORY_VERSION);
142
+        wp_register_script('geodirectory-goMap-script', geodir_plugin_url().'/geodirectory-assets/js/goMap.js', array(), GEODIRECTORY_VERSION);
143 143
         wp_enqueue_script('geodirectory-goMap-script');
144 144
 
145 145
 		// font awesome rating script
146 146
 		if (get_option('geodir_reviewrating_enable_font_awesome')) {
147
-			wp_register_script('geodir-barrating-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.barrating.min.js', array(), GEODIRECTORY_VERSION);
147
+			wp_register_script('geodir-barrating-js', geodir_plugin_url().'/geodirectory-assets/js/jquery.barrating.min.js', array(), GEODIRECTORY_VERSION);
148 148
 			wp_enqueue_script('geodir-barrating-js');
149 149
 		} else { // default rating script
150
-			wp_register_script('geodir-jRating-js', geodir_plugin_url() . '/geodirectory-assets/js/jRating.jquery.js', array(), GEODIRECTORY_VERSION);
150
+			wp_register_script('geodir-jRating-js', geodir_plugin_url().'/geodirectory-assets/js/jRating.jquery.js', array(), GEODIRECTORY_VERSION);
151 151
 			wp_enqueue_script('geodir-jRating-js');
152 152
 		}
153 153
 
154
-        wp_register_script('geodir-on-document-load', geodir_plugin_url() . '/geodirectory-assets/js/on_document_load.min.js', array(), GEODIRECTORY_VERSION);
154
+        wp_register_script('geodir-on-document-load', geodir_plugin_url().'/geodirectory-assets/js/on_document_load.min.js', array(), GEODIRECTORY_VERSION);
155 155
         wp_enqueue_script('geodir-on-document-load');
156 156
 
157 157
 
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
         wp_enqueue_script('plupload-all');
160 160
         wp_enqueue_script('jquery-ui-sortable');
161 161
 
162
-        wp_register_script('geodirectory-plupload-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory-plupload.js', array(), GEODIRECTORY_VERSION);
162
+        wp_register_script('geodirectory-plupload-script', geodir_plugin_url().'/geodirectory-assets/js/geodirectory-plupload.js', array(), GEODIRECTORY_VERSION);
163 163
         wp_enqueue_script('geodirectory-plupload-script');
164 164
 
165 165
         // SCRIPT FOR UPLOAD END
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
         wp_localize_script('geodirectory-custom-fields-script', 'geodir_admin_ajax', $ajax_cons_data);
214 214
 
215 215
 
216
-        wp_register_script('geodirectory-admin-script', geodir_plugin_url() . '/geodirectory-assets/js/admin.js', array(), GEODIRECTORY_VERSION);
216
+        wp_register_script('geodirectory-admin-script', geodir_plugin_url().'/geodirectory-assets/js/admin.js', array(), GEODIRECTORY_VERSION);
217 217
         wp_enqueue_script('geodirectory-admin-script');
218 218
 
219 219
         wp_enqueue_style('farbtastic');
@@ -221,10 +221,10 @@  discard block
 block discarded – undo
221 221
 
222 222
         $screen = get_current_screen();
223 223
         if ($screen->base == 'post' && in_array($screen->post_type, geodir_get_posttypes())) {
224
-            wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url() . '/geodirectory-assets/js/listing_validation_admin.js');
224
+            wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url().'/geodirectory-assets/js/listing_validation_admin.js');
225 225
         }
226 226
 
227
-        $ajax_cons_data = array('url' => esc_url(__(get_option('siteurl') . '?geodir_ajax=true')));
227
+        $ajax_cons_data = array('url' => esc_url(__(get_option('siteurl').'?geodir_ajax=true')));
228 228
         wp_localize_script('geodirectory-admin-script', 'geodir_ajax', $ajax_cons_data);
229 229
 
230 230
     }
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
 
248 248
         if (current_user_can('manage_options')) $menu[] = array('', 'read', 'separator-geodirectory', '', 'wp-menu-separator geodirectory');
249 249
 
250
-        add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico', '55.1984');
250
+        add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url().'/geodirectory-assets/images/favicon.ico', '55.1984');
251 251
 
252 252
 
253 253
     }
@@ -281,7 +281,7 @@  discard block
 block discarded – undo
281 281
                 $geodir_menu_order[] = 'separator-geodirectory';
282 282
                 if (!empty($post_types)) {
283 283
                     foreach ($post_types as $post_type) {
284
-                        $geodir_menu_order[] = 'edit.php?post_type=' . $post_type;
284
+                        $geodir_menu_order[] = 'edit.php?post_type='.$post_type;
285 285
                     }
286 286
                 }
287 287
                 $geodir_menu_order[] = $item;
@@ -324,8 +324,8 @@  discard block
 block discarded – undo
324 324
 {
325 325
     if (isset($_REQUEST['installed']) && $_REQUEST['installed'] != '') {
326 326
         echo '<div id="message" class="updated fade">
327
-                        <p style="float:right;">' . __('Like Geodirectory?', 'geodirectory') . ' <a href="http://wordpress.org/extend/plugins/Geodirectory/" target="_blank">' . __('Support us by leaving a rating!', 'geodirectory') . '</a></p>
328
-                        <p><strong>' . __('Geodirectory has been installed and setup. Enjoy :)', 'geodirectory') . '</strong></p>
327
+                        <p style="float:right;">' . __('Like Geodirectory?', 'geodirectory').' <a href="http://wordpress.org/extend/plugins/Geodirectory/" target="_blank">'.__('Support us by leaving a rating!', 'geodirectory').'</a></p>
328
+                        <p><strong>' . __('Geodirectory has been installed and setup. Enjoy :)', 'geodirectory').'</strong></p>
329 329
                 </div>';
330 330
 
331 331
     }
@@ -333,7 +333,7 @@  discard block
 block discarded – undo
333 333
     if (isset($_REQUEST['msg']) && $_REQUEST['msg'] != '') {
334 334
         switch ($_REQUEST['msg']) {
335 335
             case 'success':
336
-                echo '<div id="message" class="updated fade"><p><strong>' . __('Your settings have been saved.', 'geodirectory') . '</strong></p></div>';
336
+                echo '<div id="message" class="updated fade"><p><strong>'.__('Your settings have been saved.', 'geodirectory').'</strong></p></div>';
337 337
                 flush_rewrite_rules(false);
338 338
 
339 339
                 break;
@@ -341,30 +341,30 @@  discard block
 block discarded – undo
341 341
 				$gderr = isset($_REQUEST['gderr']) ? $_REQUEST['gderr'] : '';
342 342
 				
343 343
 				if ($gderr == 21)
344
-			    	echo '<div id="message" class="error fade"><p><strong>' . __('Error: You can not add same permalinks for both Listing and Location, please try again.', 'geodirectory') . '</strong></p></div>';
344
+			    	echo '<div id="message" class="error fade"><p><strong>'.__('Error: You can not add same permalinks for both Listing and Location, please try again.', 'geodirectory').'</strong></p></div>';
345 345
 				else
346
-					echo '<div id="message" class="error fade"><p><strong>' . __('Error: Your settings have not been saved, please try again.', 'geodirectory') . '</strong></p></div>';
346
+					echo '<div id="message" class="error fade"><p><strong>'.__('Error: Your settings have not been saved, please try again.', 'geodirectory').'</strong></p></div>';
347 347
                 break;
348 348
         }
349 349
     }
350 350
 
351 351
     $geodir_load_map = get_option('geodir_load_map');
352 352
     $need_map_key = false;
353
-    if($geodir_load_map=='' || $geodir_load_map=='google' || $geodir_load_map=='auto' ){
353
+    if ($geodir_load_map == '' || $geodir_load_map == 'google' || $geodir_load_map == 'auto') {
354 354
         $need_map_key = true;
355 355
     }
356 356
 
357 357
     if (!geodir_get_map_api_key() && $need_map_key) {
358
-        echo '<div class="error"><p><strong>' . sprintf(__('Google Maps API KEY not set, %sclick here%s to set one OR use Open Street Maps instead.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=design_settings&active_tab=geodir_map_settings') . '\'>', '</a>') . '</strong></p></div>';
358
+        echo '<div class="error"><p><strong>'.sprintf(__('Google Maps API KEY not set, %sclick here%s to set one OR use Open Street Maps instead.', 'geodirectory'), '<a href=\''.admin_url('admin.php?page=geodirectory&tab=design_settings&active_tab=geodir_map_settings').'\'>', '</a>').'</strong></p></div>';
359 359
     }
360 360
 
361 361
     if (!geodir_is_default_location_set()) {
362
-        echo '<div class="updated fade"><p><strong>' . sprintf(__('Please %sclick here%s to set a default location, this will make the plugin work properly.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=default_location_settings') . '\'>', '</a>') . '</strong></p></div>';
362
+        echo '<div class="updated fade"><p><strong>'.sprintf(__('Please %sclick here%s to set a default location, this will make the plugin work properly.', 'geodirectory'), '<a href=\''.admin_url('admin.php?page=geodirectory&tab=default_location_settings').'\'>', '</a>').'</strong></p></div>';
363 363
 
364 364
     }
365 365
 
366 366
     if (!function_exists('curl_init')) {
367
-        echo '<div class="error"><p><strong>' . __('CURL is not installed on this server, this can cause problems, please ask your server admin to install it.', 'geodirectory') . '</strong></p></div>';
367
+        echo '<div class="error"><p><strong>'.__('CURL is not installed on this server, this can cause problems, please ask your server admin to install it.', 'geodirectory').'</strong></p></div>';
368 368
 
369 369
     }
370 370
 
@@ -384,18 +384,18 @@  discard block
 block discarded – undo
384 384
 function geodir_handle_option_form_submit($current_tab)
385 385
 {
386 386
     global $geodir_settings;
387
-    if (file_exists(dirname(__FILE__) . '/option-pages/' . $current_tab . '_array.php')) {
387
+    if (file_exists(dirname(__FILE__).'/option-pages/'.$current_tab.'_array.php')) {
388 388
         /**
389 389
          * Contains settings array for current tab.
390 390
          *
391 391
          * @since 1.0.0
392 392
          * @package GeoDirectory
393 393
          */
394
-        include_once('option-pages/' . $current_tab . '_array.php');
394
+        include_once('option-pages/'.$current_tab.'_array.php');
395 395
     }
396 396
     if (isset($_POST) && $_POST && isset($_REQUEST['page']) && $_REQUEST['page'] == 'geodirectory') :
397 397
         if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir-settings')) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
398
-        if (!wp_verify_nonce($_REQUEST['_wpnonce-' . $current_tab], 'geodir-settings-' . $current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
398
+        if (!wp_verify_nonce($_REQUEST['_wpnonce-'.$current_tab], 'geodir-settings-'.$current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
399 399
 		
400 400
 		/**
401 401
 		 * Fires before updating geodirectory admin settings.
@@ -428,13 +428,13 @@  discard block
 block discarded – undo
428 428
          * @param string $current_tab The current settings tab name.
429 429
          * @param array $geodir_settings[$current_tab] The array of settings for the current settings tab.
430 430
          */
431
-        do_action('geodir_update_options_' . $current_tab, $geodir_settings[$current_tab]);
431
+        do_action('geodir_update_options_'.$current_tab, $geodir_settings[$current_tab]);
432 432
 
433 433
         flush_rewrite_rules(false);
434 434
 
435 435
         $current_tab = isset($_REQUEST['tab']) ? $_REQUEST['tab'] : '';
436 436
 
437
-        $redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $_REQUEST['active_tab'] . '&msg=success');
437
+        $redirect_url = admin_url('admin.php?page=geodirectory&tab='.$current_tab.'&active_tab='.$_REQUEST['active_tab'].'&msg=success');
438 438
 
439 439
         wp_redirect($redirect_url);
440 440
         exit();
@@ -473,18 +473,18 @@  discard block
 block discarded – undo
473 473
 
474 474
         elseif (isset($value['type']) && $value['type'] == 'image_width') :
475 475
 
476
-            if (isset($value['id']) && isset($_POST[$value['id'] . '_width'])) {
477
-                update_option($value['id'] . '_width', $_POST[$value['id'] . '_width']);
478
-                update_option($value['id'] . '_height', $_POST[$value['id'] . '_height']);
479
-                if (isset($_POST[$value['id'] . '_crop'])) :
480
-                    update_option($value['id'] . '_crop', 1);
476
+            if (isset($value['id']) && isset($_POST[$value['id'].'_width'])) {
477
+                update_option($value['id'].'_width', $_POST[$value['id'].'_width']);
478
+                update_option($value['id'].'_height', $_POST[$value['id'].'_height']);
479
+                if (isset($_POST[$value['id'].'_crop'])) :
480
+                    update_option($value['id'].'_crop', 1);
481 481
                 else :
482
-                    update_option($value['id'] . '_crop', 0);
482
+                    update_option($value['id'].'_crop', 0);
483 483
                 endif;
484 484
             } else {
485
-                update_option($value['id'] . '_width', $value['std']);
486
-                update_option($value['id'] . '_height', $value['std']);
487
-                update_option($value['id'] . '_crop', 1);
485
+                update_option($value['id'].'_width', $value['std']);
486
+                update_option($value['id'].'_height', $value['std']);
487
+                update_option($value['id'].'_crop', 1);
488 488
             }
489 489
 
490 490
         elseif (isset($value['type']) && $value['type'] == 'map') :
@@ -526,12 +526,12 @@  discard block
 block discarded – undo
526 526
         elseif (isset($value['type']) && $value['type'] == 'file') :
527 527
 
528 528
 
529
-            if (isset($_POST[$value['id'] . '_remove']) && $_POST[$value['id'] . '_remove']) {// if remove is set then remove the file
529
+            if (isset($_POST[$value['id'].'_remove']) && $_POST[$value['id'].'_remove']) {// if remove is set then remove the file
530 530
 
531 531
                 if (get_option($value['id'])) {
532 532
                     $image_name_arr = explode('/', get_option($value['id']));
533 533
                     $noimg_name = end($image_name_arr);
534
-                    $img_path = $uploads['path'] . '/' . $noimg_name;
534
+                    $img_path = $uploads['path'].'/'.$noimg_name;
535 535
                     if (file_exists($img_path))
536 536
                         unlink($img_path);
537 537
                 }
@@ -559,7 +559,7 @@  discard block
 block discarded – undo
559 559
                 if (get_option($value['id'])) {
560 560
                     $image_name_arr = explode('/', get_option($value['id']));
561 561
                     $noimg_name = end($image_name_arr);
562
-                    $img_path = $uploads['path'] . '/' . $noimg_name;
562
+                    $img_path = $uploads['path'].'/'.$noimg_name;
563 563
                     if (file_exists($img_path))
564 564
                         unlink($img_path);
565 565
                 }
@@ -580,7 +580,7 @@  discard block
 block discarded – undo
580 580
             // same menu setting per theme.
581 581
             if (isset($value['id']) && $value['id'] == 'geodir_theme_location_nav' && isset($_POST[$value['id']])) {
582 582
                 $theme = wp_get_theme();
583
-                update_option('geodir_theme_location_nav_' . $theme->name, $_POST[$value['id']]);
583
+                update_option('geodir_theme_location_nav_'.$theme->name, $_POST[$value['id']]);
584 584
             }
585 585
 
586 586
             if (isset($value['id']) && isset($_POST[$value['id']])) {
@@ -650,7 +650,7 @@  discard block
 block discarded – undo
650 650
 
651 651
             $listing_slug = __($geodir_posttype_info['labels']['singular_name'], 'geodirectory');
652 652
 
653
-            $tabs[$geodir_post_type . '_fields_settings'] = array(
653
+            $tabs[$geodir_post_type.'_fields_settings'] = array(
654 654
                 'label' => wp_sprintf(__('%s Settings', 'geodirectory'), $listing_slug),
655 655
                 'subtabs' => array(
656 656
                     array('subtab' => 'custom_fields',
@@ -684,7 +684,7 @@  discard block
 block discarded – undo
684 684
  */
685 685
 function geodir_tools_setting_tab($tabs)
686 686
 {
687
-    wp_enqueue_script( 'jquery-ui-progressbar' );
687
+    wp_enqueue_script('jquery-ui-progressbar');
688 688
     $tabs['tools_settings'] = array('label' => __('GD Tools', 'geodirectory'));
689 689
     return $tabs;
690 690
 }
@@ -718,7 +718,7 @@  discard block
 block discarded – undo
718 718
  */
719 719
 function geodir_extend_geodirectory_setting_tab($tabs)
720 720
 {
721
-    $tabs['extend_geodirectory_settings'] = array('label' => __('Extend Geodirectory', 'geodirectory'). ' <i class="fas fa-plug"></i>', 'url' => 'https://wpgeodirectory.com', 'target' => '_blank');
721
+    $tabs['extend_geodirectory_settings'] = array('label' => __('Extend Geodirectory', 'geodirectory').' <i class="fas fa-plug"></i>', 'url' => 'https://wpgeodirectory.com', 'target' => '_blank');
722 722
     return $tabs;
723 723
 }
724 724
 
@@ -778,8 +778,8 @@  discard block
 block discarded – undo
778 778
                     _e('Unknown', 'geodirectory');
779 779
                 } else {
780 780
                     /* If there is a city id, append 'city name' to the text string. */
781
-                    $add_location_id = $location_id > 0 ? ' (' . $location_id . ')' : '';
782
-                    echo(__($location->country, 'geodirectory') . '-' . $location->region . '-' . $location->city . $add_location_id);
781
+                    $add_location_id = $location_id > 0 ? ' ('.$location_id.')' : '';
782
+                    echo(__($location->country, 'geodirectory').'-'.$location->region.'-'.$location->city.$add_location_id);
783 783
                 }
784 784
                 break;
785 785
 
@@ -797,14 +797,14 @@  discard block
 block discarded – undo
797 797
                         $expire_class = 'expire_over';
798 798
                     }
799 799
                     $date_diff = round(abs(strtotime($d1) - strtotime($d2)) / 86400); // get the difference in days
800
-                    $date_diff_text = '<br /><span class="' . $expire_class . '">(' . $date_diff . ' ' . $state . ')</span>';
800
+                    $date_diff_text = '<br /><span class="'.$expire_class.'">('.$date_diff.' '.$state.')</span>';
801 801
                 }
802 802
                 /* If no expire_date is found, output a default message. */
803 803
                 if (empty($expire_date))
804 804
                     echo __('Unknown', 'geodirectory');
805 805
                 /* If there is a expire_date, append 'days left' to the text string. */
806 806
                 else
807
-                    echo $expire_date . $date_diff_text;
807
+                    echo $expire_date.$date_diff_text;
808 808
                 break;
809 809
 
810 810
             /* If displaying the 'categorys' column. */
@@ -871,7 +871,7 @@  discard block
 block discarded – undo
871 871
 function geodir_post_information_save($post_id, $post) {
872 872
     global $wpdb, $current_user;
873 873
 
874
-    if (isset($post->post_type) && ($post->post_type=='nav_menu_item' || $post->post_type=='page' || $post->post_type=='post')) {
874
+    if (isset($post->post_type) && ($post->post_type == 'nav_menu_item' || $post->post_type == 'page' || $post->post_type == 'post')) {
875 875
         return;
876 876
     }
877 877
 
@@ -939,7 +939,7 @@  discard block
 block discarded – undo
939 939
                     $tab_id = $value['id'];
940 940
 
941 941
                 if (isset($value['desc']) && $value['desc'])
942
-                    $desc = '<span style=" text-transform:none;">:- ' . $value['desc'] . '</span>';
942
+                    $desc = '<span style=" text-transform:none;">:- '.$value['desc'].'</span>';
943 943
 
944 944
                 if (isset($value['name']) && $value['name']) {
945 945
                     if ($first_title === true) {
@@ -947,9 +947,9 @@  discard block
 block discarded – undo
947 947
                     } else {
948 948
                         echo '</div>';
949 949
                     }
950
-                    echo '<dd id="' . trim($tab_id) . '" class="geodir_option_tabs" ><a href="javascript:void(0);">' . $value['name'] . '</a></dd>';
950
+                    echo '<dd id="'.trim($tab_id).'" class="geodir_option_tabs" ><a href="javascript:void(0);">'.$value['name'].'</a></dd>';
951 951
 
952
-                    echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >';
952
+                    echo '<div id="sub_'.trim($tab_id).'" class="gd-content-heading" style=" margin-bottom:10px;" >';
953 953
                 }
954 954
 
955 955
                 /**
@@ -959,21 +959,21 @@  discard block
 block discarded – undo
959 959
                  *
960 960
                  * @since 1.0.0
961 961
                  */
962
-                do_action('geodir_settings_' . sanitize_title($value['id']));
962
+                do_action('geodir_settings_'.sanitize_title($value['id']));
963 963
                 break;
964 964
 
965 965
             case 'no_tabs':
966 966
 
967 967
                 echo '<div class="inner_content_tab_main">';
968
-                echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >';
968
+                echo '<div id="sub_'.trim($tab_id).'" class="gd-content-heading" style=" margin-bottom:10px;" >';
969 969
 
970 970
                 break;
971 971
 
972 972
             case 'sectionstart':
973 973
                 if (isset($value['desc']) && $value['desc'])
974
-                    $desc = '<span style=" text-transform:none;"> - ' . $value['desc'] . '</span>';
974
+                    $desc = '<span style=" text-transform:none;"> - '.$value['desc'].'</span>';
975 975
                 if (isset($value['name']) && $value['name'])
976
-                    echo '<h3>' . $value['name'] . $desc . '</h3>';
976
+                    echo '<h3>'.$value['name'].$desc.'</h3>';
977 977
                 /**
978 978
                  * Called after a GeoDirectory settings sectionstart is output in the GD settings page.
979 979
                  *
@@ -981,8 +981,8 @@  discard block
 block discarded – undo
981 981
                  *
982 982
                  * @since 1.0.0
983 983
                  */
984
-                if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_start');
985
-                echo '<table class="form-table">' . "\n\n";
984
+                if (isset($value['id']) && $value['id']) do_action('geodir_settings_'.sanitize_title($value['id']).'_start');
985
+                echo '<table class="form-table">'."\n\n";
986 986
 
987 987
                 break;
988 988
             case 'sectionend':
@@ -993,7 +993,7 @@  discard block
 block discarded – undo
993 993
                  *
994 994
                  * @since 1.0.0
995 995
                  */
996
-                if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_end');
996
+                if (isset($value['id']) && $value['id']) do_action('geodir_settings_'.sanitize_title($value['id']).'_end');
997 997
                 echo '</table>';
998 998
                 /**
999 999
                  * Called after a GeoDirectory settings sectionend is output in the GD settings page.
@@ -1002,7 +1002,7 @@  discard block
 block discarded – undo
1002 1002
                  *
1003 1003
                  * @since 1.0.0
1004 1004
                  */
1005
-                if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_after');
1005
+                if (isset($value['id']) && $value['id']) do_action('geodir_settings_'.sanitize_title($value['id']).'_after');
1006 1006
                 break;
1007 1007
             case 'text':
1008 1008
                 ?>
@@ -1011,7 +1011,7 @@  discard block
 block discarded – undo
1011 1011
                 <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>"
1012 1012
                                            id="<?php echo esc_attr($value['id']); ?>"
1013 1013
                                            type="<?php echo esc_attr($value['type']); ?>"
1014
-                                           <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1014
+                                           <?php if (isset($value['placeholder'])) {?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1015 1015
                                            style=" <?php echo esc_attr($value['css']); ?>"
1016 1016
                                            value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
1017 1017
                                                echo esc_attr(stripslashes(get_option($value['id'])));
@@ -1028,15 +1028,15 @@  discard block
 block discarded – undo
1028 1028
                 <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>"
1029 1029
                                            id="<?php echo esc_attr($value['id']); ?>"
1030 1030
                                            type="<?php echo esc_attr($value['type']); ?>"
1031
-                                           <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1031
+                                           <?php if (isset($value['placeholder'])) {?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1032 1032
                                            style=" <?php echo esc_attr($value['css']); ?>"
1033 1033
                                            value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
1034 1034
                                                echo esc_attr(stripslashes(get_option($value['id'])));
1035 1035
                                            } else {
1036 1036
                                                echo esc_attr($value['std']);
1037 1037
                                            } ?>"/>
1038
-                    <?php $gm_api_url = 'https://console.developers.google.com/henhouse/?pb=["hh-1","maps_backend",null,[],"https://developers.google.com",null,["static_maps_backend","street_view_image_backend","maps_embed_backend","places_backend","geocoding_backend","directions_backend","distance_matrix_backend","geolocation","elevation_backend","timezone_backend","maps_backend"],null]';?>
1039
-                    <a id="gd-api-key" onclick='window.open("<?php echo wp_slash($gm_api_url);?>", "newwindow", "width=600, height=400"); return false;' href='<?php echo $gm_api_url;?>' class="button-primary" name="<?php _e('Generate API Key - ( MUST be logged in to your Google account )','geodirectory');?>" ><?php _e('Generate API Key','geodirectory');?></a>
1038
+                    <?php $gm_api_url = 'https://console.developers.google.com/henhouse/?pb=["hh-1","maps_backend",null,[],"https://developers.google.com",null,["static_maps_backend","street_view_image_backend","maps_embed_backend","places_backend","geocoding_backend","directions_backend","distance_matrix_backend","geolocation","elevation_backend","timezone_backend","maps_backend"],null]'; ?>
1039
+                    <a id="gd-api-key" onclick='window.open("<?php echo wp_slash($gm_api_url); ?>", "newwindow", "width=600, height=400"); return false;' href='<?php echo $gm_api_url; ?>' class="button-primary" name="<?php _e('Generate API Key - ( MUST be logged in to your Google account )', 'geodirectory'); ?>" ><?php _e('Generate API Key', 'geodirectory'); ?></a>
1040 1040
                     <span class="description"><?php echo $value['desc']; ?></span></td>
1041 1041
                 </tr><?php
1042 1042
                 break;
@@ -1048,7 +1048,7 @@  discard block
 block discarded – undo
1048 1048
                 <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>"
1049 1049
                                            id="<?php echo esc_attr($value['id']); ?>"
1050 1050
                                            type="<?php echo esc_attr($value['type']); ?>"
1051
-                                           <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1051
+                                           <?php if (isset($value['placeholder'])) {?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1052 1052
                                            style="<?php echo esc_attr($value['css']); ?>"
1053 1053
                                            value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
1054 1054
                                                echo esc_attr(stripslashes(get_option($value['id'])));
@@ -1094,17 +1094,17 @@  discard block
 block discarded – undo
1094 1094
                     <?php _e('Width', 'geodirectory'); ?> <input
1095 1095
                         name="<?php echo esc_attr($value['id']); ?>_width"
1096 1096
                         id="<?php echo esc_attr($value['id']); ?>_width" type="text" size="3"
1097
-                        value="<?php if ($size = get_option($value['id'] . '_width')) echo stripslashes($size); else echo $value['std']; ?>"/>
1097
+                        value="<?php if ($size = get_option($value['id'].'_width')) echo stripslashes($size); else echo $value['std']; ?>"/>
1098 1098
 
1099 1099
                     <?php _e('Height', 'geodirectory'); ?> <input
1100 1100
                         name="<?php echo esc_attr($value['id']); ?>_height"
1101 1101
                         id="<?php echo esc_attr($value['id']); ?>_height" type="text" size="3"
1102
-                        value="<?php if ($size = get_option($value['id'] . '_height')) echo stripslashes($size); else echo $value['std']; ?>"/>
1102
+                        value="<?php if ($size = get_option($value['id'].'_height')) echo stripslashes($size); else echo $value['std']; ?>"/>
1103 1103
 
1104 1104
                     <label><?php _e('Hard Crop', 'geodirectory'); ?> <input
1105 1105
                             name="<?php echo esc_attr($value['id']); ?>_crop"
1106 1106
                             id="<?php echo esc_attr($value['id']); ?>_crop"
1107
-                            type="checkbox" <?php if (get_option($value['id'] . '_crop') != '') checked(get_option($value['id'] . '_crop'), 1); else checked(1); ?> /></label>
1107
+                            type="checkbox" <?php if (get_option($value['id'].'_crop') != '') checked(get_option($value['id'].'_crop'), 1); else checked(1); ?> /></label>
1108 1108
 
1109 1109
                     <span class="description"><?php echo $value['desc'] ?></span></td>
1110 1110
                 </tr><?php
@@ -1154,7 +1154,7 @@  discard block
 block discarded – undo
1154 1154
                                             id="<?php echo esc_attr($value['id']); ?>"
1155 1155
                                             style="<?php echo esc_attr($value['css']); ?>"
1156 1156
                                             class="<?php if (isset($value['class'])) echo $value['class']; ?>"
1157
-                                            data-placeholder="<?php if (isset($value['placeholder_text'])) echo $value['placeholder_text'];?>"
1157
+                                            data-placeholder="<?php if (isset($value['placeholder_text'])) echo $value['placeholder_text']; ?>"
1158 1158
                                             option-ajaxchosen="false">
1159 1159
                         <?php
1160 1160
                         foreach ($value['options'] as $key => $val) {
@@ -1164,7 +1164,7 @@  discard block
 block discarded – undo
1164 1164
                                 ?></optgroup><?php
1165 1165
                             } else {
1166 1166
                                 ?>
1167
-                                <option value="<?php echo esc_attr($key); ?>" <?php selected(true, (is_array($option_values) && in_array($key, $option_values)));?>>
1167
+                                <option value="<?php echo esc_attr($key); ?>" <?php selected(true, (is_array($option_values) && in_array($key, $option_values))); ?>>
1168 1168
                                     <?php echo geodir_utf8_ucfirst($val) ?>
1169 1169
                                 </option>
1170 1170
                             <?php
@@ -1201,7 +1201,7 @@  discard block
 block discarded – undo
1201 1201
                 ?>
1202 1202
 
1203 1203
                 <tr valign="top">
1204
-                    <th class="titledesc" width="40%"><?php _e('Default map language', 'geodirectory');?></th>
1204
+                    <th class="titledesc" width="40%"><?php _e('Default map language', 'geodirectory'); ?></th>
1205 1205
                     <td width="60%">
1206 1206
                         <select name="geodir_default_map_language" style="width:60%">
1207 1207
                             <?php
@@ -1283,7 +1283,7 @@  discard block
 block discarded – undo
1283 1283
 
1284 1284
                 <tr valign="top">
1285 1285
                     <th class="titledesc"
1286
-                        width="40%"><?php _e('Default post type search on map', 'geodirectory');?></th>
1286
+                        width="40%"><?php _e('Default post type search on map', 'geodirectory'); ?></th>
1287 1287
                     <td width="60%">
1288 1288
                         <select name="geodir_default_map_search_pt" style="width:60%">
1289 1289
                             <?php
@@ -1324,7 +1324,7 @@  discard block
 block discarded – undo
1324 1324
                         $cat_display = 'checkbox';
1325 1325
                         $gd_post_types = get_option('geodir_exclude_post_type_on_map');
1326 1326
                         $gd_cats = get_option('geodir_exclude_cat_on_map');
1327
-                        $gd_cats_upgrade = (int)get_option('geodir_exclude_cat_on_map_upgrade');
1327
+                        $gd_cats_upgrade = (int) get_option('geodir_exclude_cat_on_map_upgrade');
1328 1328
                         $count = 1;
1329 1329
                         ?>
1330 1330
                         <table width="70%" class="widefat">
@@ -1353,7 +1353,7 @@  discard block
 block discarded – undo
1353 1353
                                                                                            name="home_map_post_types[]"
1354 1354
                                                                                            id="<?php echo esc_attr($value['id']); ?>"
1355 1355
                                                                                            value="<?php echo $key; ?>"
1356
-                                                                                           class="map_post_type" <?php echo $checked;?> />
1356
+                                                                                           class="map_post_type" <?php echo $checked; ?> />
1357 1357
                                         <?php echo __($post_types_obj->labels->singular_name, 'geodirectory'); ?></td>
1358 1358
                                     <td width="40%">
1359 1359
                                         <div class="home_map_category" style="overflow:auto;width:200px;height:100px;"
@@ -1411,12 +1411,12 @@  discard block
 block discarded – undo
1411 1411
                 ?>
1412 1412
                 <fieldset>
1413 1413
                     <legend class="screen-reader-text"><span><?php echo $value['name'] ?></span></legend>
1414
-                    <label for="<?php echo $value['id'];?>">
1414
+                    <label for="<?php echo $value['id']; ?>">
1415 1415
                         <input name="<?php echo esc_attr($value['id']); ?>"
1416
-                               id="<?php echo esc_attr($value['id'] . $value['value']); ?>" type="radio"
1416
+                               id="<?php echo esc_attr($value['id'].$value['value']); ?>" type="radio"
1417 1417
                                value="<?php echo $value['value'] ?>" <?php if (get_option($value['id']) == $value['value']) {
1418 1418
                             echo 'checked="checked"';
1419
-                        }elseif(get_option($value['id'])=='' && $value['std']==$value['value']){echo 'checked="checked"';} ?> />
1419
+                        }elseif (get_option($value['id']) == '' && $value['std'] == $value['value']) {echo 'checked="checked"'; } ?> />
1420 1420
                         <?php echo $value['desc']; ?></label><br>
1421 1421
                 </fieldset>
1422 1422
                 <?php
@@ -1436,9 +1436,9 @@  discard block
 block discarded – undo
1436 1436
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1437 1437
                 <td class="forminp">
1438 1438
                     <textarea
1439
-                        <?php if (isset($value['args'])) echo $value['args'] . ' '; ?>name="<?php echo esc_attr($value['id']); ?>"
1439
+                        <?php if (isset($value['args'])) echo $value['args'].' '; ?>name="<?php echo esc_attr($value['id']); ?>"
1440 1440
                         id="<?php echo esc_attr($value['id']); ?>"
1441
-                        <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1441
+                        <?php if (isset($value['placeholder'])) {?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1442 1442
                         style="<?php echo esc_attr($value['css']); ?>"><?php if (get_option($value['id'])) echo esc_textarea(stripslashes(get_option($value['id']))); else echo esc_textarea($value['std']); ?></textarea><span
1443 1443
                         class="description"><?php echo $value['desc'] ?></span>
1444 1444
 
@@ -1483,7 +1483,7 @@  discard block
 block discarded – undo
1483 1483
 					}
1484 1484
 				}
1485 1485
 				//
1486
-				$page_setting = (int)get_option($value['id']);
1486
+				$page_setting = (int) get_option($value['id']);
1487 1487
 
1488 1488
                 $args = array('name' => $value['id'],
1489 1489
                     'id' => $value['id'],
@@ -1500,7 +1500,7 @@  discard block
 block discarded – undo
1500 1500
                 <tr valign="top" class="single_select_page">
1501 1501
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1502 1502
                 <td class="forminp">
1503
-                    <?php echo str_replace(' id=', " data-placeholder='" . __('Select a page...', 'geodirectory') . "' style='" . $value['css'] . "' class='" . $value['class'] . "' " . $disabled . " id=", wp_dropdown_pages($args)); ?>
1503
+                    <?php echo str_replace(' id=', " data-placeholder='".__('Select a page...', 'geodirectory')."' style='".$value['css']."' class='".$value['class']."' ".$disabled." id=", wp_dropdown_pages($args)); ?>
1504 1504
                     <span class="description"><?php echo $value['desc'] ?></span>
1505 1505
                 </td>
1506 1506
                 </tr><?php
@@ -1509,7 +1509,7 @@  discard block
 block discarded – undo
1509 1509
 				}
1510 1510
                 break;
1511 1511
             case 'single_select_country' :
1512
-                $country_setting = (string)get_option($value['id']);
1512
+                $country_setting = (string) get_option($value['id']);
1513 1513
                 if (strstr($country_setting, ':')) :
1514 1514
                     $country = current(explode(':', $country_setting));
1515 1515
                     $state = end(explode(':', $country_setting));
@@ -1532,7 +1532,7 @@  discard block
 block discarded – undo
1532 1532
             case 'multi_select_countries' :
1533 1533
                 $countries = $geodirectory->countries->countries;
1534 1534
                 asort($countries);
1535
-                $selections = (array)get_option($value['id']);
1535
+                $selections = (array) get_option($value['id']);
1536 1536
                 ?>
1537 1537
                 <tr valign="top">
1538 1538
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
@@ -1542,7 +1542,7 @@  discard block
 block discarded – undo
1542 1542
                             title="Country" class="chosen_select">
1543 1543
                         <?php
1544 1544
                         if ($countries) foreach ($countries as $key => $val) :
1545
-                            echo '<option value="' . $key . '" ' . selected(in_array($key, $selections), true, false) . '>' . $val . '</option>';
1545
+                            echo '<option value="'.$key.'" '.selected(in_array($key, $selections), true, false).'>'.$val.'</option>';
1546 1546
                         endforeach;
1547 1547
                         ?>
1548 1548
                     </select>
@@ -1554,7 +1554,7 @@  discard block
 block discarded – undo
1554 1554
                 break;
1555 1555
 
1556 1556
             case 'google_analytics' :
1557
-                $selections = (array)get_option($value['id']);
1557
+                $selections = (array) get_option($value['id']);
1558 1558
                     ?>
1559 1559
                     <tr valign="top">
1560 1560
                         <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
@@ -1565,30 +1565,30 @@  discard block
 block discarded – undo
1565 1565
 
1566 1566
                             $oAuthURL = "https://accounts.google.com/o/oauth2/auth?";
1567 1567
                             $scope = "scope=https://www.googleapis.com/auth/analytics.readonly";
1568
-                            $state = "&state=123";//any string
1569
-                            $redirect_uri = "&redirect_uri=" . admin_url('admin-ajax.php') . "?action=geodir_ga_callback";
1568
+                            $state = "&state=123"; //any string
1569
+                            $redirect_uri = "&redirect_uri=".admin_url('admin-ajax.php')."?action=geodir_ga_callback";
1570 1570
                             $response_type = "&response_type=code";
1571 1571
                             $client_id = "&client_id=".get_option('geodir_ga_client_id');
1572 1572
                             $access_type = "&access_type=offline";
1573 1573
                             $approval_prompt = "&approval_prompt=force";
1574 1574
 
1575
-                            $auth_url = $oAuthURL . $scope . $state . $redirect_uri . $response_type . $client_id . $access_type . $approval_prompt;
1575
+                            $auth_url = $oAuthURL.$scope.$state.$redirect_uri.$response_type.$client_id.$access_type.$approval_prompt;
1576 1576
 
1577 1577
 
1578 1578
                             if (get_option('geodir_ga_auth_token')) {
1579 1579
                                 ?>
1580 1580
                                 <span class="button-primary"
1581
-                                      onclick="gd_GA_Deauthorize('<?php echo wp_create_nonce('gd_ga_deauthorize');?>');"><?php _e('Deauthorize', 'geodirectory'); ?></span>
1581
+                                      onclick="gd_GA_Deauthorize('<?php echo wp_create_nonce('gd_ga_deauthorize'); ?>');"><?php _e('Deauthorize', 'geodirectory'); ?></span>
1582 1582
                                 <span style="color: green; font-weight: bold;"><?php _e('Authorized', 'geodirectory'); ?></span>
1583 1583
                             <?php
1584 1584
                                 global $gd_ga_errors;
1585
-                                if(!empty($gd_ga_errors)){
1585
+                                if (!empty($gd_ga_errors)) {
1586 1586
                                     print_r($gd_ga_errors);
1587 1587
                                 }
1588 1588
                             } else {
1589 1589
                                 ?>
1590 1590
                                 <span class="button-primary"
1591
-                                      onclick="window.open('<?php echo  geodir_ga_activation_url();?>', 'activate','width=700, height=600, menubar=0, status=0, location=0, toolbar=0')"><?php _e('Authorize', 'geodirectory');?></span>
1591
+                                      onclick="window.open('<?php echo  geodir_ga_activation_url(); ?>', 'activate','width=700, height=600, menubar=0, status=0, location=0, toolbar=0')"><?php _e('Authorize', 'geodirectory'); ?></span>
1592 1592
                             <?php
1593 1593
                             }
1594 1594
                             ?>
@@ -1659,9 +1659,9 @@  discard block
 block discarded – undo
1659 1659
 
1660 1660
             <?php if (isset($_REQUEST['active_tab']) && $_REQUEST['active_tab'] != '') { ?>
1661 1661
             jQuery('.geodir_option_tabs').removeClass('gd-tab-active');
1662
-            jQuery('#<?php echo sanitize_text_field($_REQUEST['active_tab']);?>').addClass('gd-tab-active');
1662
+            jQuery('#<?php echo sanitize_text_field($_REQUEST['active_tab']); ?>').addClass('gd-tab-active');
1663 1663
             jQuery('.gd-content-heading').hide();
1664
-            jQuery('#sub_<?php echo sanitize_text_field($_REQUEST['active_tab']);?>').show();
1664
+            jQuery('#sub_<?php echo sanitize_text_field($_REQUEST['active_tab']); ?>').show();
1665 1665
             <?php } ?>
1666 1666
         });
1667 1667
     </script>
@@ -1747,7 +1747,7 @@  discard block
 block discarded – undo
1747 1747
     wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_attachments_noncename');
1748 1748
 
1749 1749
     if (geodir_get_featured_image($post_id, 'thumbnail')) {
1750
-        echo '<h4>' . __('Featured Image', 'geodirectory') . '</h4>';
1750
+        echo '<h4>'.__('Featured Image', 'geodirectory').'</h4>';
1751 1751
         geodir_show_featured_image($post_id, 'thumbnail');
1752 1752
     }
1753 1753
 
@@ -1758,13 +1758,13 @@  discard block
 block discarded – undo
1758 1758
 
1759 1759
     <h5 class="form_title">
1760 1760
         <?php if ($image_limit != 0 && $image_limit == 1) {
1761
-            echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('image with this package', 'geodirectory') . ')</small>';
1761
+            echo '<br /><small>('.__('You can upload', 'geodirectory').' '.$image_limit.' '.__('image with this package', 'geodirectory').')</small>';
1762 1762
         } ?>
1763 1763
         <?php if ($image_limit != 0 && $image_limit > 1) {
1764
-            echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('images with this package', 'geodirectory') . ')</small>';
1764
+            echo '<br /><small>('.__('You can upload', 'geodirectory').' '.$image_limit.' '.__('images with this package', 'geodirectory').')</small>';
1765 1765
         } ?>
1766 1766
         <?php if ($image_limit == 0) {
1767
-            echo '<br /><small>(' . __('You can upload unlimited images with this package', 'geodirectory') . ')</small>';
1767
+            echo '<br /><small>('.__('You can upload unlimited images with this package', 'geodirectory').')</small>';
1768 1768
         } ?>
1769 1769
     </h5>
1770 1770
 
@@ -1803,10 +1803,10 @@  discard block
 block discarded – undo
1803 1803
         <div
1804 1804
             class="plupload-upload-uic hide-if-no-js <?php if ($multiple): ?>plupload-upload-uic-multiple<?php endif; ?>"
1805 1805
             id="<?php echo $id; ?>plupload-upload-ui">
1806
-            <h4><?php _e('Drop files to upload', 'geodirectory');?></h4>
1806
+            <h4><?php _e('Drop files to upload', 'geodirectory'); ?></h4>
1807 1807
             <input id="<?php echo $id; ?>plupload-browse-button" type="button"
1808 1808
                    value="<?php _e('Select Files', 'geodirectory'); ?>" class="button"/>
1809
-            <span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce($id . 'pluploadan'); ?>"></span>
1809
+            <span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce($id.'pluploadan'); ?>"></span>
1810 1810
             <?php if ($width && $height): ?>
1811 1811
                 <span class="plupload-resize"></span>
1812 1812
                 <span class="plupload-width" id="plupload-width<?php echo $width; ?>"></span>
@@ -1818,7 +1818,7 @@  discard block
 block discarded – undo
1818 1818
              id="<?php echo $id; ?>plupload-thumbs" style="border-top:1px solid #ccc; padding-top:10px;">
1819 1819
         </div>
1820 1820
         <span
1821
-            id="upload-msg"><?php _e('Please drag &amp; drop the images to rearrange the order', 'geodirectory');?></span>
1821
+            id="upload-msg"><?php _e('Please drag &amp; drop the images to rearrange the order', 'geodirectory'); ?></span>
1822 1822
         <span id="<?php echo $id; ?>upload-error" style="display:none"></span>
1823 1823
     </div>
1824 1824
 
@@ -2028,9 +2028,9 @@  discard block
 block discarded – undo
2028 2028
     $plugin = 'avada-nag';
2029 2029
     $timestamp = 'avada-nag1234';
2030 2030
     $message = __('Welcome to GeoDirectory, please have a look <a href="https://docs.wpgeodirectory.com/category/getting-started/" target="_blank">here</a> to get started. :)', 'geodirectory');
2031
-    echo '<div id="' . $timestamp . '"  class="error">';
2032
-    echo '<span class="gd-remove-noti" onclick="gdRemoveANotification(\'' . $plugin . '\',\'' . $timestamp . '\');" ><i class="fas fa-times"></i></span>';
2033
-    echo "<img class='gd-icon-noti' src='" . plugin_dir_url('') . "geodirectory/geodirectory-assets/images/favicon.ico' > ";
2031
+    echo '<div id="'.$timestamp.'"  class="error">';
2032
+    echo '<span class="gd-remove-noti" onclick="gdRemoveANotification(\''.$plugin.'\',\''.$timestamp.'\');" ><i class="fas fa-times"></i></span>';
2033
+    echo "<img class='gd-icon-noti' src='".plugin_dir_url('')."geodirectory/geodirectory-assets/images/favicon.ico' > ";
2034 2034
     echo "<p>$message</p>";
2035 2035
     echo "</div>";
2036 2036
 
@@ -2164,7 +2164,7 @@  discard block
 block discarded – undo
2164 2164
 		
2165 2165
 		// Don't allow same slug url for listing and location
2166 2166
 		if (geodir_strtolower($listing_prefix) == geodir_strtolower($location_prefix)) {
2167
-			$redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $active_tab . '&msg=fail&gderr=21');
2167
+			$redirect_url = admin_url('admin.php?page=geodirectory&tab='.$current_tab.'&active_tab='.$active_tab.'&msg=fail&gderr=21');
2168 2168
         	wp_redirect($redirect_url);
2169 2169
 			exit;
2170 2170
 		}
@@ -2176,7 +2176,7 @@  discard block
 block discarded – undo
2176 2176
 			$default_language = $sitepress->get_default_language();
2177 2177
 			
2178 2178
 			if ($current_language != 'all' && $current_language != $default_language) {
2179
-				$redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $active_tab);
2179
+				$redirect_url = admin_url('admin.php?page=geodirectory&tab='.$current_tab.'&active_tab='.$active_tab);
2180 2180
 				wp_redirect($redirect_url);
2181 2181
 				exit;
2182 2182
 			}
@@ -2197,11 +2197,11 @@  discard block
 block discarded – undo
2197 2197
 function geodir_hide_admin_preview_button() {
2198 2198
     global $post_type;
2199 2199
     $post_types = geodir_get_posttypes();
2200
-    if(in_array($post_type, $post_types))
2200
+    if (in_array($post_type, $post_types))
2201 2201
         echo '<style type="text/css">#post-preview, #view-post-btn{display: none;}</style>';
2202 2202
 }
2203
-add_action( 'admin_head-post-new.php', 'geodir_hide_admin_preview_button' );
2204
-add_action( 'admin_head-post.php', 'geodir_hide_admin_preview_button' );
2203
+add_action('admin_head-post-new.php', 'geodir_hide_admin_preview_button');
2204
+add_action('admin_head-post.php', 'geodir_hide_admin_preview_button');
2205 2205
 
2206 2206
 /**
2207 2207
  * Add the tab in left sidebar menu fro import & export page.
@@ -2211,8 +2211,8 @@  discard block
 block discarded – undo
2211 2211
  *
2212 2212
  * @return array Array of tab data.
2213 2213
  */
2214
-function geodir_import_export_tab( $tabs ) {
2215
-	$tabs['import_export'] = array( 'label' => __( 'Import & Export', 'geodirectory' ) );
2214
+function geodir_import_export_tab($tabs) {
2215
+	$tabs['import_export'] = array('label' => __('Import & Export', 'geodirectory'));
2216 2216
     return $tabs;
2217 2217
 }
2218 2218
 
@@ -2226,8 +2226,8 @@  discard block
 block discarded – undo
2226 2226
  * @return string Html content.
2227 2227
  */
2228 2228
 function geodir_import_export_page() {
2229
-	$nonce = wp_create_nonce( 'geodir_import_export_nonce' );
2230
-	$gd_cats_sample_csv = geodir_plugin_url() . '/geodirectory-assets/gd_sample_categories.csv';
2229
+	$nonce = wp_create_nonce('geodir_import_export_nonce');
2230
+	$gd_cats_sample_csv = geodir_plugin_url().'/geodirectory-assets/gd_sample_categories.csv';
2231 2231
     /**
2232 2232
      * Filter sample category data csv file url.
2233 2233
      *
@@ -2236,9 +2236,9 @@  discard block
 block discarded – undo
2236 2236
      *
2237 2237
      * @param string $gd_cats_sample_csv Sample category data csv file url.
2238 2238
      */
2239
-	$gd_cats_sample_csv = apply_filters( 'geodir_export_cats_sample_csv', $gd_cats_sample_csv );
2239
+	$gd_cats_sample_csv = apply_filters('geodir_export_cats_sample_csv', $gd_cats_sample_csv);
2240 2240
 	
2241
-	$gd_posts_sample_csv = geodir_plugin_url() . '/geodirectory-assets/place_listing.csv';
2241
+	$gd_posts_sample_csv = geodir_plugin_url().'/geodirectory-assets/place_listing.csv';
2242 2242
     /**
2243 2243
      * Filter sample post data csv file url.
2244 2244
      *
@@ -2247,15 +2247,15 @@  discard block
 block discarded – undo
2247 2247
      *
2248 2248
      * @param string $gd_posts_sample_csv Sample post data csv file url.
2249 2249
      */
2250
-    $gd_posts_sample_csv = apply_filters( 'geodir_export_posts_sample_csv', $gd_posts_sample_csv );
2250
+    $gd_posts_sample_csv = apply_filters('geodir_export_posts_sample_csv', $gd_posts_sample_csv);
2251 2251
 	
2252
-	$gd_posttypes = geodir_get_posttypes( 'array' );
2252
+	$gd_posttypes = geodir_get_posttypes('array');
2253 2253
 	
2254 2254
 	$gd_posttypes_option = '';
2255
-	foreach ( $gd_posttypes as $gd_posttype => $row ) {
2256
-		$gd_posttypes_option .= '<option value="' . $gd_posttype . '" data-cats="' . (int)geodir_get_terms_count( $gd_posttype ) . '" data-posts="' . (int)geodir_get_posts_count( $gd_posttype ) . '">' . __( $row['labels']['name'], 'geodirectory' ) . '</option>';
2255
+	foreach ($gd_posttypes as $gd_posttype => $row) {
2256
+		$gd_posttypes_option .= '<option value="'.$gd_posttype.'" data-cats="'.(int) geodir_get_terms_count($gd_posttype).'" data-posts="'.(int) geodir_get_posts_count($gd_posttype).'">'.__($row['labels']['name'], 'geodirectory').'</option>';
2257 2257
 	}
2258
-	wp_enqueue_script( 'jquery-ui-progressbar' );
2258
+	wp_enqueue_script('jquery-ui-progressbar');
2259 2259
 	
2260 2260
 	$gd_chunksize_options = array();
2261 2261
 	$gd_chunksize_options[100] = 100;
@@ -2277,50 +2277,50 @@  discard block
 block discarded – undo
2277 2277
      *
2278 2278
      * @param string $gd_chunksize_options Entries options.
2279 2279
      */
2280
-    $gd_chunksize_options = apply_filters( 'geodir_export_csv_chunksize_options', $gd_chunksize_options );
2280
+    $gd_chunksize_options = apply_filters('geodir_export_csv_chunksize_options', $gd_chunksize_options);
2281 2281
 	
2282 2282
 	$gd_chunksize_option = '';
2283 2283
 	foreach ($gd_chunksize_options as $value => $title) {
2284
-		$gd_chunksize_option .= '<option value="' . $value . '" ' . selected($value, 5000, false) . '>' . $title . '</option>';
2284
+		$gd_chunksize_option .= '<option value="'.$value.'" '.selected($value, 5000, false).'>'.$title.'</option>';
2285 2285
 	}
2286 2286
 	
2287 2287
 	$uploads = wp_upload_dir();
2288
-	$upload_dir = wp_sprintf( CSV_TRANSFER_IMG_FOLDER, str_replace( ABSPATH, '', $uploads['path'] ) );
2288
+	$upload_dir = wp_sprintf(CSV_TRANSFER_IMG_FOLDER, str_replace(ABSPATH, '', $uploads['path']));
2289 2289
 ?>
2290 2290
 </form>
2291 2291
 <div class="inner_content_tab_main gd-import-export">
2292
-  <h3><?php _e( 'GD Import & Export CSV', 'geodirectory' ) ;?></h3>
2293
-  <span class="description"><?php _e( 'Import & export csv for GD listings & categories.', 'geodirectory' ) ;?></span>
2292
+  <h3><?php _e('GD Import & Export CSV', 'geodirectory'); ?></h3>
2293
+  <span class="description"><?php _e('Import & export csv for GD listings & categories.', 'geodirectory'); ?></span>
2294 2294
   <div class="gd-content-heading">
2295 2295
 
2296 2296
   <?php
2297 2297
     @ini_set('max_execution_time', 999999);
2298
-    $ini_max_execution_time_check = @ini_get( 'max_execution_time' );
2298
+    $ini_max_execution_time_check = @ini_get('max_execution_time');
2299 2299
     @ini_restore('max_execution_time');
2300 2300
 
2301
-    if($ini_max_execution_time_check != 999999){ // only show these setting to the user if we can't change the ini setting
2301
+    if ($ini_max_execution_time_check != 999999) { // only show these setting to the user if we can't change the ini setting
2302 2302
         ?>
2303 2303
 	<div id="gd_ie_reqs" class="metabox-holder">
2304 2304
       <div class="meta-box-sortables ui-sortable">
2305 2305
         <div class="postbox">
2306
-          <h3 class="hndle"><span style='vertical-align:top;'><?php echo __( 'PHP Requirements for GD Import & Export CSV', 'geodirectory' );?></span></h3>
2306
+          <h3 class="hndle"><span style='vertical-align:top;'><?php echo __('PHP Requirements for GD Import & Export CSV', 'geodirectory'); ?></span></h3>
2307 2307
           <div class="inside">
2308
-            <span class="description"><?php echo __( 'Note: In case GD import & export csv not working for larger data then please check and configure following php settings.', 'geodirectory' );?></span>
2308
+            <span class="description"><?php echo __('Note: In case GD import & export csv not working for larger data then please check and configure following php settings.', 'geodirectory'); ?></span>
2309 2309
 			<table class="form-table">
2310 2310
 				<thead>
2311 2311
 				  <tr>
2312
-				  	<th><?php _e( 'PHP Settings', 'geodirectory' );?></th><th><?php _e( 'Current Value', 'geodirectory' );?></th><th><?php _e( 'Recommended Value', 'geodirectory' );?></th>
2312
+				  	<th><?php _e('PHP Settings', 'geodirectory'); ?></th><th><?php _e('Current Value', 'geodirectory'); ?></th><th><?php _e('Recommended Value', 'geodirectory'); ?></th>
2313 2313
 				  </tr>
2314 2314
 				</thead>
2315 2315
 				<tbody>
2316 2316
 				  <tr>
2317
-				  	<td>max_input_time</td><td><?php echo @ini_get( 'max_input_time' );?></td><td>3000</td>
2317
+				  	<td>max_input_time</td><td><?php echo @ini_get('max_input_time'); ?></td><td>3000</td>
2318 2318
 				  </tr>
2319 2319
 				  <tr>
2320
-				  	<td>max_execution_time</td><td><?php  echo @ini_get( 'max_execution_time' );?></td><td>3000</td>
2320
+				  	<td>max_execution_time</td><td><?php  echo @ini_get('max_execution_time'); ?></td><td>3000</td>
2321 2321
 				  </tr>
2322 2322
 				  <tr>
2323
-				  	<td>memory_limit</td><td><?php echo @ini_get( 'memory_limit' );?></td><td>256M</td>
2323
+				  	<td>memory_limit</td><td><?php echo @ini_get('memory_limit'); ?></td><td>256M</td>
2324 2324
 				  </tr>
2325 2325
 				</tbody>
2326 2326
 		    </table>
@@ -2332,21 +2332,21 @@  discard block
 block discarded – undo
2332 2332
 	<div id="gd_ie_imposts" class="metabox-holder">
2333 2333
       <div class="meta-box-sortables ui-sortable">
2334 2334
         <div id="gd_ie_im_posts" class="postbox gd-hndle-pbox">
2335
-          <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e( 'Toggle panel - GD Listings: Import CSV', 'geodirectory' );?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
2336
-          <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __( 'GD Listings: Import CSV', 'geodirectory' );?></span></h3>
2335
+          <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e('Toggle panel - GD Listings: Import CSV', 'geodirectory'); ?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
2336
+          <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __('GD Listings: Import CSV', 'geodirectory'); ?></span></h3>
2337 2337
           <div class="inside">
2338 2338
             <table class="form-table">
2339 2339
 				<tbody>
2340 2340
 				  <tr>
2341 2341
 					<td class="gd-imex-box">
2342 2342
 						<div class="gd-im-choices">
2343
-						<p><input type="radio" value="update" name="gd_im_choicepost" id="gd_im_pchoice_u" /><label for="gd_im_pchoice_u"><?php _e( 'Update listing if post with post_id already exists.', 'geodirectory' );?></label></p>
2344
-						<p><input type="radio" checked="checked" value="skip" name="gd_im_choicepost" id="gd_im_pchoice_s" /><label for="gd_im_pchoice_s"><?php _e( 'Ignore listing if post with post_id already exists.', 'geodirectory' );?></label></p>
2343
+						<p><input type="radio" value="update" name="gd_im_choicepost" id="gd_im_pchoice_u" /><label for="gd_im_pchoice_u"><?php _e('Update listing if post with post_id already exists.', 'geodirectory'); ?></label></p>
2344
+						<p><input type="radio" checked="checked" value="skip" name="gd_im_choicepost" id="gd_im_pchoice_s" /><label for="gd_im_pchoice_s"><?php _e('Ignore listing if post with post_id already exists.', 'geodirectory'); ?></label></p>
2345 2345
 						</div>
2346 2346
 						<div class="plupload-upload-uic hide-if-no-js" id="gd_im_postplupload-upload-ui">
2347 2347
 							<input type="text" readonly="readonly" name="gd_im_post_file" class="gd-imex-file gd_im_post_file" id="gd_im_post" onclick="jQuery('#gd_im_postplupload-browse-button').trigger('click');" />
2348
-							<input id="gd_im_postplupload-browse-button" type="button" value="<?php echo SELECT_UPLOAD_CSV; ?>" class="gd-imex-pupload button-primary" /><input type="button" value="<?php echo esc_attr( __( 'Download Sample CSV', 'geodirectory' ) );?>" class="button-secondary" name="gd_ie_imposts_sample" id="gd_ie_imposts_sample">
2349
-						<input type="hidden" id="gd_ie_imposts_csv" value="<?php echo $gd_posts_sample_csv;?>" />
2348
+							<input id="gd_im_postplupload-browse-button" type="button" value="<?php echo SELECT_UPLOAD_CSV; ?>" class="gd-imex-pupload button-primary" /><input type="button" value="<?php echo esc_attr(__('Download Sample CSV', 'geodirectory')); ?>" class="button-secondary" name="gd_ie_imposts_sample" id="gd_ie_imposts_sample">
2349
+						<input type="hidden" id="gd_ie_imposts_csv" value="<?php echo $gd_posts_sample_csv; ?>" />
2350 2350
 						<input type="hidden" id="gd_im_post_allowed_types" data-exts=".csv" value="csv" />
2351 2351
 							<?php
2352 2352
 							/**
@@ -2356,7 +2356,7 @@  discard block
 block discarded – undo
2356 2356
 							 */
2357 2357
 							do_action('geodir_sample_csv_download_link');
2358 2358
 							?>
2359
-							<span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce( 'gd_im_postpluploadan' ); ?>"></span>
2359
+							<span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce('gd_im_postpluploadan'); ?>"></span>
2360 2360
 							<div class="filelist"></div>
2361 2361
 						</div>
2362 2362
 						<span id="gd_im_postupload-error" style="display:none"></span>
@@ -2374,7 +2374,7 @@  discard block
 block discarded – undo
2374 2374
 							<input type="hidden" id="gd_terminateaction" value="continue"/>
2375 2375
 						</div>
2376 2376
 						<div class="gd-import-progress" id="gd-import-progress" style="display:none">
2377
-							<div class="gd-import-file"><b><?php _e("Import Data Status :", 'geodirectory');?> </b><font
2377
+							<div class="gd-import-file"><b><?php _e("Import Data Status :", 'geodirectory'); ?> </b><font
2378 2378
 									id="gd-import-done">0</font> / <font id="gd-import-total">0</font>&nbsp;( <font
2379 2379
 									id="gd-import-perc">0%</font> )
2380 2380
 								<div class="gd-fileprogress"></div>
@@ -2386,10 +2386,10 @@  discard block
 block discarded – undo
2386 2386
                     	<div class="gd-imex-btns" style="display:none;">
2387 2387
                         	<input type="hidden" class="geodir_import_file" name="geodir_import_file" value="save"/>
2388 2388
                         	<input onclick="gd_imex_PrepareImport(this, 'post')" type="button" value="<?php echo CSV_IMPORT_DATA; ?>" id="gd_import_data" class="button-primary" />
2389
-                        	<input onclick="gd_imex_ContinueImport(this, 'post')" type="button" value="<?php _e( "Continue Import Data", 'geodirectory' );?>" id="gd_continue_data" class="button-primary" style="display:none"/>
2390
-                        	<input type="button" value="<?php _e("Terminate Import Data", 'geodirectory');?>" id="gd_stop_import" class="button-primary" name="gd_stop_import" style="display:none" onclick="gd_imex_TerminateImport(this, 'post')"/>
2389
+                        	<input onclick="gd_imex_ContinueImport(this, 'post')" type="button" value="<?php _e("Continue Import Data", 'geodirectory'); ?>" id="gd_continue_data" class="button-primary" style="display:none"/>
2390
+                        	<input type="button" value="<?php _e("Terminate Import Data", 'geodirectory'); ?>" id="gd_stop_import" class="button-primary" name="gd_stop_import" style="display:none" onclick="gd_imex_TerminateImport(this, 'post')"/>
2391 2391
 							<div id="gd_process_data" style="display:none">
2392
-								<span class="spinner is-active" style="display:inline-block;margin:0 5px 0 5px;float:left"></span><?php _e("Wait, processing import data...", 'geodirectory');?>
2392
+								<span class="spinner is-active" style="display:inline-block;margin:0 5px 0 5px;float:left"></span><?php _e("Wait, processing import data...", 'geodirectory'); ?>
2393 2393
 							</div>
2394 2394
 						</div>
2395 2395
 					</td>
@@ -2403,30 +2403,30 @@  discard block
 block discarded – undo
2403 2403
 	<div id="gd_ie_excategs" class="metabox-holder">
2404 2404
 	  <div class="meta-box-sortables ui-sortable">
2405 2405
 		<div id="gd_ie_ex_posts" class="postbox gd-hndle-pbox">
2406
-		  <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e( 'Toggle panel - Listings: Export CSV', 'geodirectory' );?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
2407
-          <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __( 'GD Listings: Export CSV', 'geodirectory' );?></span></h3>
2406
+		  <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e('Toggle panel - Listings: Export CSV', 'geodirectory'); ?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
2407
+          <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __('GD Listings: Export CSV', 'geodirectory'); ?></span></h3>
2408 2408
 		  <div class="inside">
2409 2409
 			<table class="form-table">
2410 2410
 			  <tbody>
2411 2411
 				<tr>
2412 2412
 				  <td class="fld"><label for="gd_post_type">
2413
-					<?php _e( 'Post Type:', 'geodirectory' );?>
2413
+					<?php _e('Post Type:', 'geodirectory'); ?>
2414 2414
 					</label></td>
2415 2415
 				  <td><select name="gd_post_type" id="gd_post_type" style="min-width:140px">
2416
-					  <?php echo $gd_posttypes_option;?>
2416
+					  <?php echo $gd_posttypes_option; ?>
2417 2417
 					</select></td>
2418 2418
 				</tr>
2419 2419
 				<tr>
2420
-					<td class="fld" style="vertical-align:top"><label for="gd_chunk_size"><?php _e( 'Max entries per csv file:', 'geodirectory' );?></label></td>
2421
-					<td><select name="gd_chunk_size" id="gd_chunk_size" style="min-width:140px"><?php echo $gd_chunksize_option;?></select><span class="description"><?php _e( 'Please select the maximum number of entries per csv file (defaults to 5000, you might want to lower this to prevent memory issues on some installs)', 'geodirectory' );?></span></td>
2420
+					<td class="fld" style="vertical-align:top"><label for="gd_chunk_size"><?php _e('Max entries per csv file:', 'geodirectory'); ?></label></td>
2421
+					<td><select name="gd_chunk_size" id="gd_chunk_size" style="min-width:140px"><?php echo $gd_chunksize_option; ?></select><span class="description"><?php _e('Please select the maximum number of entries per csv file (defaults to 5000, you might want to lower this to prevent memory issues on some installs)', 'geodirectory'); ?></span></td>
2422 2422
 				</tr>
2423 2423
                 <tr class="gd-imex-dates">
2424
-					<td class="fld"><label><?php _e( 'Published Date:', 'geodirectory' );?></label></td>
2425
-					<td><label><span class="label-responsive"><?php _e( 'Start date:', 'geodirectory' );?></span><input type="text" id="gd_imex_start_date" name="gd_imex[start_date]" data-type="date" /></label><label><span class="label-responsive"><?php _e( 'End date:', 'geodirectory' );?></span><input type="text" id="gd_imex_end_date" name="gd_imex[end_date]" data-type="date" /></label></td>
2424
+					<td class="fld"><label><?php _e('Published Date:', 'geodirectory'); ?></label></td>
2425
+					<td><label><span class="label-responsive"><?php _e('Start date:', 'geodirectory'); ?></span><input type="text" id="gd_imex_start_date" name="gd_imex[start_date]" data-type="date" /></label><label><span class="label-responsive"><?php _e('End date:', 'geodirectory'); ?></span><input type="text" id="gd_imex_end_date" name="gd_imex[end_date]" data-type="date" /></label></td>
2426 2426
 				</tr>
2427 2427
 				<tr>
2428 2428
 				  <td class="fld" style="vertical-align:top"><label>
2429
-					<?php _e( 'Progress:', 'geodirectory' );?>
2429
+					<?php _e('Progress:', 'geodirectory'); ?>
2430 2430
 					</label></td>
2431 2431
 				  <td><div id='gd_progressbar_box'>
2432 2432
 					  <div id="gd_progressbar" class="gd_progressbar">
@@ -2434,13 +2434,13 @@  discard block
 block discarded – undo
2434 2434
 					  </div>
2435 2435
 					</div>
2436 2436
 					<p style="display:inline-block">
2437
-					  <?php _e( 'Elapsed Time:', 'geodirectory' );?>
2437
+					  <?php _e('Elapsed Time:', 'geodirectory'); ?>
2438 2438
 					</p>
2439 2439
 					  
2440 2440
 					<p id="gd_timer" class="gd_timer">00:00:00</p></td>
2441 2441
 				</tr>
2442 2442
 				<tr class="gd-ie-actions">
2443
-				  <td style="vertical-align:top"><input type="submit" value="<?php echo esc_attr( __( 'Export CSV', 'geodirectory' ) );?>" class="button-primary" name="gd_ie_exposts_submit" id="gd_ie_exposts_submit">
2443
+				  <td style="vertical-align:top"><input type="submit" value="<?php echo esc_attr(__('Export CSV', 'geodirectory')); ?>" class="button-primary" name="gd_ie_exposts_submit" id="gd_ie_exposts_submit">
2444 2444
 				  </td>
2445 2445
 				  <td id="gd_ie_ex_files" class="gd-ie-files"></td>
2446 2446
 				</tr>
@@ -2453,21 +2453,21 @@  discard block
 block discarded – undo
2453 2453
 	<div id="gd_ie_imcategs" class="metabox-holder">
2454 2454
       <div class="meta-box-sortables ui-sortable">
2455 2455
         <div id="gd_ie_imcats" class="postbox gd-hndle-pbox">
2456
-          <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e( 'Toggle panel - GD Categories: Import CSV', 'geodirectory' );?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
2457
-          <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __( 'GD Categories: Import CSV', 'geodirectory' );?></span></h3>
2456
+          <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e('Toggle panel - GD Categories: Import CSV', 'geodirectory'); ?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
2457
+          <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __('GD Categories: Import CSV', 'geodirectory'); ?></span></h3>
2458 2458
           <div class="inside">
2459 2459
             <table class="form-table">
2460 2460
 				<tbody>
2461 2461
 				  <tr>
2462 2462
 					<td class="gd-imex-box">
2463 2463
 						<div class="gd-im-choices">
2464
-						<p><input type="radio" value="update" name="gd_im_choicecat" id="gd_im_cchoice_u" /><label for="gd_im_cchoice_u"><?php _e( 'Update item if item with cat_id/cat_slug already exists.', 'geodirectory' );?></label></p>
2465
-						<p><input type="radio" checked="checked" value="skip" name="gd_im_choicecat" id="gd_im_cchoice_s" /><label for="gd_im_cchoice_s"><?php _e( 'Ignore item if item with cat_id/cat_slug already exists.', 'geodirectory' );?></label></p>
2464
+						<p><input type="radio" value="update" name="gd_im_choicecat" id="gd_im_cchoice_u" /><label for="gd_im_cchoice_u"><?php _e('Update item if item with cat_id/cat_slug already exists.', 'geodirectory'); ?></label></p>
2465
+						<p><input type="radio" checked="checked" value="skip" name="gd_im_choicecat" id="gd_im_cchoice_s" /><label for="gd_im_cchoice_s"><?php _e('Ignore item if item with cat_id/cat_slug already exists.', 'geodirectory'); ?></label></p>
2466 2466
 						</div>
2467 2467
 						<div class="plupload-upload-uic hide-if-no-js" id="gd_im_catplupload-upload-ui">
2468 2468
 							<input type="text" readonly="readonly" name="gd_im_cat_file" class="gd-imex-file gd_im_cat_file" id="gd_im_cat" onclick="jQuery('#gd_im_catplupload-browse-button').trigger('click');" />
2469
-							<input id="gd_im_catplupload-browse-button" type="button" value="<?php echo SELECT_UPLOAD_CSV; ?>" class="gd-imex-cupload button-primary" /><input type="button" value="<?php echo esc_attr( __( 'Download Sample CSV', 'geodirectory' ) );?>" class="button-secondary" name="gd_ie_imcats_sample" id="gd_ie_imcats_sample">
2470
-						<input type="hidden" id="gd_ie_imcats_csv" value="<?php echo $gd_cats_sample_csv;?>" />
2469
+							<input id="gd_im_catplupload-browse-button" type="button" value="<?php echo SELECT_UPLOAD_CSV; ?>" class="gd-imex-cupload button-primary" /><input type="button" value="<?php echo esc_attr(__('Download Sample CSV', 'geodirectory')); ?>" class="button-secondary" name="gd_ie_imcats_sample" id="gd_ie_imcats_sample">
2470
+						<input type="hidden" id="gd_ie_imcats_csv" value="<?php echo $gd_cats_sample_csv; ?>" />
2471 2471
 						<input type="hidden" id="gd_im_cat_allowed_types" data-exts=".csv" value="csv" />
2472 2472
 						<?php
2473 2473
 						/**
@@ -2478,7 +2478,7 @@  discard block
 block discarded – undo
2478 2478
 						 */
2479 2479
 						do_action('geodir_sample_cats_csv_download_link');
2480 2480
 						?>
2481
-							<span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce( 'gd_im_catpluploadan' ); ?>"></span>
2481
+							<span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce('gd_im_catpluploadan'); ?>"></span>
2482 2482
 							<div class="filelist"></div>
2483 2483
 						</div>
2484 2484
 						<span id="gd_im_catupload-error" style="display:none"></span>
@@ -2495,7 +2495,7 @@  discard block
 block discarded – undo
2495 2495
 							<input type="hidden" id="gd_terminateaction" value="continue"/>
2496 2496
 						</div>
2497 2497
 						<div class="gd-import-progress" id="gd-import-progress" style="display:none">
2498
-							<div class="gd-import-file"><b><?php _e("Import Data Status :", 'geodirectory');?> </b><font
2498
+							<div class="gd-import-file"><b><?php _e("Import Data Status :", 'geodirectory'); ?> </b><font
2499 2499
 									id="gd-import-done">0</font> / <font id="gd-import-total">0</font>&nbsp;( <font
2500 2500
 									id="gd-import-perc">0%</font> )
2501 2501
 								<div class="gd-fileprogress"></div>
@@ -2507,10 +2507,10 @@  discard block
 block discarded – undo
2507 2507
                     	<div class="gd-imex-btns" style="display:none;">
2508 2508
                         	<input type="hidden" class="geodir_import_file" name="geodir_import_file" value="save"/>
2509 2509
                         	<input onclick="gd_imex_PrepareImport(this, 'cat')" type="button" value="<?php echo CSV_IMPORT_DATA; ?>" id="gd_import_data" class="button-primary" />
2510
-                        	<input onclick="gd_imex_ContinueImport(this, 'cat')" type="button" value="<?php _e( "Continue Import Data", 'geodirectory' );?>" id="gd_continue_data" class="button-primary" style="display:none"/>
2511
-                        	<input type="button" value="<?php _e("Terminate Import Data", 'geodirectory');?>" id="gd_stop_import" class="button-primary" name="gd_stop_import" style="display:none" onclick="gd_imex_TerminateImport(this, 'cat')"/>
2510
+                        	<input onclick="gd_imex_ContinueImport(this, 'cat')" type="button" value="<?php _e("Continue Import Data", 'geodirectory'); ?>" id="gd_continue_data" class="button-primary" style="display:none"/>
2511
+                        	<input type="button" value="<?php _e("Terminate Import Data", 'geodirectory'); ?>" id="gd_stop_import" class="button-primary" name="gd_stop_import" style="display:none" onclick="gd_imex_TerminateImport(this, 'cat')"/>
2512 2512
 							<div id="gd_process_data" style="display:none">
2513
-								<span class="spinner is-active" style="display:inline-block;margin:0 5px 0 5px;float:left"></span><?php _e("Wait, processing import data...", 'geodirectory');?>
2513
+								<span class="spinner is-active" style="display:inline-block;margin:0 5px 0 5px;float:left"></span><?php _e("Wait, processing import data...", 'geodirectory'); ?>
2514 2514
 							</div>
2515 2515
 						</div>
2516 2516
 					</td>
@@ -2524,26 +2524,26 @@  discard block
 block discarded – undo
2524 2524
 	<div id="gd_ie_excategs" class="metabox-holder">
2525 2525
       <div class="meta-box-sortables ui-sortable">
2526 2526
         <div id="gd_ie_ex_cats" class="postbox gd-hndle-pbox">
2527
-          <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e( 'Toggle panel - GD Categories: Export CSV', 'geodirectory' );?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
2528
-          <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __( 'GD Categories: Export CSV', 'geodirectory' );?></span></h3>
2527
+          <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e('Toggle panel - GD Categories: Export CSV', 'geodirectory'); ?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
2528
+          <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __('GD Categories: Export CSV', 'geodirectory'); ?></span></h3>
2529 2529
           <div class="inside">
2530 2530
             <table class="form-table">
2531 2531
 				<tbody>
2532 2532
 				  <tr>
2533
-					<td class="fld"><label for="gd_post_type"><?php _e( 'Post Type:', 'geodirectory' );?></label></td>
2534
-					<td><select name="gd_post_type" id="gd_post_type" style="min-width:140px"><?php echo $gd_posttypes_option;?></select></td>
2533
+					<td class="fld"><label for="gd_post_type"><?php _e('Post Type:', 'geodirectory'); ?></label></td>
2534
+					<td><select name="gd_post_type" id="gd_post_type" style="min-width:140px"><?php echo $gd_posttypes_option; ?></select></td>
2535 2535
 				  </tr>
2536 2536
 				   <tr>
2537
-					<td class="fld" style="vertical-align:top"><label for="gd_chunk_size"><?php _e( 'Max entries per csv file:', 'geodirectory' );?></label></td>
2538
-					<td><select name="gd_chunk_size" id="gd_chunk_size" style="min-width:140px"><?php echo $gd_chunksize_option;?></select><span class="description"><?php _e( 'Please select the maximum number of entries per csv file (defaults to 5000, you might want to lower this to prevent memory issues on some installs)', 'geodirectory' );?></span></td>
2537
+					<td class="fld" style="vertical-align:top"><label for="gd_chunk_size"><?php _e('Max entries per csv file:', 'geodirectory'); ?></label></td>
2538
+					<td><select name="gd_chunk_size" id="gd_chunk_size" style="min-width:140px"><?php echo $gd_chunksize_option; ?></select><span class="description"><?php _e('Please select the maximum number of entries per csv file (defaults to 5000, you might want to lower this to prevent memory issues on some installs)', 'geodirectory'); ?></span></td>
2539 2539
 				  </tr>
2540 2540
 				  <tr>
2541
-					<td class="fld" style="vertical-align:top"><label><?php _e( 'Progress:', 'geodirectory' );?></label></td>
2542
-					<td><div id='gd_progressbar_box'><div id="gd_progressbar" class="gd_progressbar"><div class="gd-progress-label"></div></div></div><p style="display:inline-block"><?php _e( 'Elapsed Time:', 'geodirectory' );?></p>&nbsp;&nbsp;<p id="gd_timer" class="gd_timer">00:00:00</p></td>
2541
+					<td class="fld" style="vertical-align:top"><label><?php _e('Progress:', 'geodirectory'); ?></label></td>
2542
+					<td><div id='gd_progressbar_box'><div id="gd_progressbar" class="gd_progressbar"><div class="gd-progress-label"></div></div></div><p style="display:inline-block"><?php _e('Elapsed Time:', 'geodirectory'); ?></p>&nbsp;&nbsp;<p id="gd_timer" class="gd_timer">00:00:00</p></td>
2543 2543
 				  </tr>
2544 2544
 				  <tr class="gd-ie-actions">
2545 2545
 					<td style="vertical-align:top">
2546
-						<input type="submit" value="<?php echo esc_attr( __( 'Export CSV', 'geodirectory' ) );?>" class="button-primary" name="gd_ie_excats_submit" id="gd_ie_excats_submit">
2546
+						<input type="submit" value="<?php echo esc_attr(__('Export CSV', 'geodirectory')); ?>" class="button-primary" name="gd_ie_excats_submit" id="gd_ie_excats_submit">
2547 2547
 					</td>
2548 2548
 					<td id="gd_ie_ex_files" class="gd-ie-files"></td>
2549 2549
 				  </tr>
@@ -2565,7 +2565,7 @@  discard block
 block discarded – undo
2565 2565
      * @param array $gd_chunksize_options File chunk size options.
2566 2566
      * @param string $nonce Wordpress security token for GD import & export.
2567 2567
 	 */
2568
-	do_action( 'geodir_import_export', $gd_posttypes, $gd_chunksize_options, $nonce );
2568
+	do_action('geodir_import_export', $gd_posttypes, $gd_chunksize_options, $nonce);
2569 2569
 	?>
2570 2570
   </div>
2571 2571
 </div>
@@ -2584,7 +2584,7 @@  discard block
 block discarded – undo
2584 2584
         jQuery.ajax({
2585 2585
             url: ajaxurl,
2586 2586
             type: "POST",
2587
-            data: 'action=geodir_import_export&task=prepare_import&_pt=' + type + '&_file=' + uploadedFile + '&_nonce=<?php echo $nonce;?>',
2587
+            data: 'action=geodir_import_export&task=prepare_import&_pt=' + type + '&_file=' + uploadedFile + '&_nonce=<?php echo $nonce; ?>',
2588 2588
             dataType: 'json',
2589 2589
             cache: false,
2590 2590
             success: function(data) {
@@ -2636,7 +2636,7 @@  discard block
 block discarded – undo
2636 2636
 
2637 2637
         jQuery(cont).find('.filelist .file').remove();
2638 2638
         
2639
-        jQuery('#gd-import-msg', cont).find('#message').removeClass('updated').addClass('error').html("<p><?php echo esc_attr( PLZ_SELECT_CSV_FILE );?></p>");
2639
+        jQuery('#gd-import-msg', cont).find('#message').removeClass('updated').addClass('error').html("<p><?php echo esc_attr(PLZ_SELECT_CSV_FILE); ?></p>");
2640 2640
         jQuery('#gd-import-msg', cont).show();
2641 2641
         
2642 2642
         return false;
@@ -2695,7 +2695,7 @@  discard block
 block discarded – undo
2695 2695
     jQuery.ajax({
2696 2696
         url: ajaxurl,
2697 2697
         type: "POST",
2698
-        data: 'action=geodir_import_export&task=import_' + type + '&_pt=' + type + '&_file=' + uploadedFile + gddata + '&_ch=' + choice + '&_nonce=<?php echo $nonce;?>',
2698
+        data: 'action=geodir_import_export&task=import_' + type + '&_pt=' + type + '&_file=' + uploadedFile + gddata + '&_ch=' + choice + '&_nonce=<?php echo $nonce; ?>',
2699 2699
         dataType : 'json',
2700 2700
         cache: false,
2701 2701
         success: function (data) {
@@ -2884,27 +2884,27 @@  discard block
 block discarded – undo
2884 2884
 
2885 2885
     var gdMsg = '<p></p>';
2886 2886
     if ( processed > 0 ) {
2887
-        var msgParse = '<p><?php echo addslashes( sprintf( __( 'Total %s item(s) found.', 'geodirectory' ), '%s' ) );?></p>';
2887
+        var msgParse = '<p><?php echo addslashes(sprintf(__('Total %s item(s) found.', 'geodirectory'), '%s')); ?></p>';
2888 2888
         msgParse = msgParse.replace("%s", processed);
2889 2889
         gdMsg += msgParse;
2890 2890
     }
2891 2891
 
2892 2892
     if ( updated > 0 ) {
2893
-        var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) updated.', 'geodirectory' ), '%s', '%d' ) );?></p>';
2893
+        var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) updated.', 'geodirectory'), '%s', '%d')); ?></p>';
2894 2894
         msgParse = msgParse.replace("%s", updated);
2895 2895
         msgParse = msgParse.replace("%d", processed);
2896 2896
         gdMsg += msgParse;
2897 2897
     }
2898 2898
 
2899 2899
     if ( created > 0 ) {
2900
-        var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) added.', 'geodirectory' ), '%s', '%d' ) );?></p>';
2900
+        var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) added.', 'geodirectory'), '%s', '%d')); ?></p>';
2901 2901
         msgParse = msgParse.replace("%s", created);
2902 2902
         msgParse = msgParse.replace("%d", processed);
2903 2903
         gdMsg += msgParse;
2904 2904
     }
2905 2905
 
2906 2906
     if ( skipped > 0 ) {
2907
-        var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) ignored due to already exists.', 'geodirectory' ), '%s', '%d' ) );?></p>';
2907
+        var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) ignored due to already exists.', 'geodirectory'), '%s', '%d')); ?></p>';
2908 2908
         msgParse = msgParse.replace("%s", skipped);
2909 2909
         msgParse = msgParse.replace("%d", processed);
2910 2910
         gdMsg += msgParse;
@@ -2914,17 +2914,17 @@  discard block
 block discarded – undo
2914 2914
         if (type=='loc') {
2915 2915
             invalid_addr = invalid;
2916 2916
         }
2917
-        var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ), '%s', '%d' ) );?></p>';
2917
+        var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory'), '%s', '%d')); ?></p>';
2918 2918
         msgParse = msgParse.replace("%s", invalid_addr);
2919 2919
         msgParse = msgParse.replace("%d", total);
2920 2920
         gdMsg += msgParse;
2921 2921
     }
2922 2922
 
2923 2923
     if (invalid > 0 && type!='loc') {
2924
-        var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) could not be added due to blank title/invalid post type/invalid characters used in data.', 'geodirectory' ), '%s', '%d' ) );?></p>';
2924
+        var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) could not be added due to blank title/invalid post type/invalid characters used in data.', 'geodirectory'), '%s', '%d')); ?></p>';
2925 2925
         
2926 2926
         if (type=='hood') {
2927
-            msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) could not be added due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory' ), '%s', '%d' ) );?></p>';
2927
+            msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) could not be added due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory'), '%s', '%d')); ?></p>';
2928 2928
         }
2929 2929
         msgParse = msgParse.replace("%s", invalid);
2930 2930
         msgParse = msgParse.replace("%d", total);
@@ -2932,7 +2932,7 @@  discard block
 block discarded – undo
2932 2932
     }
2933 2933
 
2934 2934
     if (images > 0) {
2935
-        gdMsg += '<p><?php echo addslashes( $upload_dir );?></p>';
2935
+        gdMsg += '<p><?php echo addslashes($upload_dir); ?></p>';
2936 2936
     }
2937 2937
     gdMsg += '<p></p>';
2938 2938
     jQuery('#gd-import-msg', cont).find('#message').removeClass('error').addClass('updated').html(gdMsg);
@@ -3096,9 +3096,9 @@  discard block
 block discarded – undo
3096 3096
             if (typeof filters !== 'undefined' && filters && doFilter) {
3097 3097
                 getTotal = true;
3098 3098
                 attach += '&_c=1';
3099
-                gd_progressbar(el, 0, '<i class="fas fa-sync fa-spin"></i><?php echo esc_attr( __( 'Preparing...', 'geodirectory' ) );?>');
3099
+                gd_progressbar(el, 0, '<i class="fas fa-sync fa-spin"></i><?php echo esc_attr(__('Preparing...', 'geodirectory')); ?>');
3100 3100
             } else {
3101
-                gd_progressbar(el, 0, '0% (0 / ' + total_posts + ') <i class="fas fa-sync fa-spin"></i><?php echo esc_attr( __( 'Exporting...', 'geodirectory' ) );?>');
3101
+                gd_progressbar(el, 0, '0% (0 / ' + total_posts + ') <i class="fas fa-sync fa-spin"></i><?php echo esc_attr(__('Exporting...', 'geodirectory')); ?>');
3102 3102
             }
3103 3103
             jQuery(el).find('#gd_timer').text('00:00:01');
3104 3104
             jQuery('#gd_ie_ex_files', el).html('');
@@ -3107,7 +3107,7 @@  discard block
 block discarded – undo
3107 3107
         jQuery.ajax({
3108 3108
             url: ajaxurl,
3109 3109
             type: "POST",
3110
-            data: 'action=geodir_import_export&task=export_posts&_pt=' + post_type + '&_n=' + chunk_size + '&_nonce=<?php echo $nonce;?>&_p=' + page + attach,
3110
+            data: 'action=geodir_import_export&task=export_posts&_pt=' + post_type + '&_n=' + chunk_size + '&_nonce=<?php echo $nonce; ?>&_p=' + page + attach,
3111 3111
             dataType : 'json',
3112 3112
             cache: false,
3113 3113
             beforeSend: function (jqXHR, settings) {},
@@ -3132,11 +3132,11 @@  discard block
 block discarded – undo
3132 3132
                         } else {
3133 3133
                             if (pages < page || pages == page) {
3134 3134
                                 window.clearInterval(timer_posts);
3135
-                                gd_progressbar(el, 100, '100% (' + total_posts + ' / ' + total_posts + ') <i class="fas fa-check"></i><?php echo esc_attr( __( 'Complete!', 'geodirectory' ) );?>');
3135
+                                gd_progressbar(el, 100, '100% (' + total_posts + ' / ' + total_posts + ') <i class="fas fa-check"></i><?php echo esc_attr(__('Complete!', 'geodirectory')); ?>');
3136 3136
                             } else {
3137 3137
                                 var percentage = Math.round(((page * chunk_size) / total_posts) * 100);
3138 3138
                                 percentage = percentage > 100 ? 100 : percentage;
3139
-                                gd_progressbar(el, percentage, '' + percentage + '% (' + ( page * chunk_size ) + ' / ' + total_posts + ') <i class="fas fa-sync fa-spin"></i><?php echo esc_attr( __( 'Exporting...', 'geodirectory' ) );?>');
3139
+                                gd_progressbar(el, percentage, '' + percentage + '% (' + ( page * chunk_size ) + ' / ' + total_posts + ') <i class="fas fa-sync fa-spin"></i><?php echo esc_attr(__('Exporting...', 'geodirectory')); ?>');
3140 3140
                             }
3141 3141
                             if (typeof data.files != 'undefined' && jQuery(data.files).length ) {
3142 3142
                                 var obj_files = data.files;
@@ -3167,7 +3167,7 @@  discard block
 block discarded – undo
3167 3167
 
3168 3168
     function gd_process_export_cats(el, post_type, total_cats, chunk_size, pages, page) {
3169 3169
         if (page < 2) {
3170
-            gd_progressbar(el, 0, '0% (0 / ' + total_cats + ') <i class="fas fa-sync fa-spin"></i><?php echo esc_attr( __( 'Exporting...', 'geodirectory' ) );?>');
3170
+            gd_progressbar(el, 0, '0% (0 / ' + total_cats + ') <i class="fas fa-sync fa-spin"></i><?php echo esc_attr(__('Exporting...', 'geodirectory')); ?>');
3171 3171
             jQuery(el).find('#gd_timer').text('00:00:01');
3172 3172
             jQuery('#gd_ie_ex_files', el).html('');
3173 3173
         }
@@ -3175,7 +3175,7 @@  discard block
 block discarded – undo
3175 3175
         jQuery.ajax({
3176 3176
             url: ajaxurl,
3177 3177
             type: "POST",
3178
-            data: 'action=geodir_import_export&task=export_cats&_pt=' + post_type + '&_n=' + chunk_size + '&_nonce=<?php echo $nonce;?>&_p=' + page,
3178
+            data: 'action=geodir_import_export&task=export_cats&_pt=' + post_type + '&_n=' + chunk_size + '&_nonce=<?php echo $nonce; ?>&_p=' + page,
3179 3179
             dataType : 'json',
3180 3180
             cache: false,
3181 3181
             beforeSend: function (jqXHR, settings) {},
@@ -3189,11 +3189,11 @@  discard block
 block discarded – undo
3189 3189
                     } else {
3190 3190
                         if (pages < page || pages == page) {
3191 3191
                             window.clearInterval(timer_cats);
3192
-                            gd_progressbar(el, 100, '100% (' + total_cats + ' / ' + total_cats + ') <i class="fas fa-check"></i><?php echo esc_attr( __( 'Complete!', 'geodirectory' ) );?>');
3192
+                            gd_progressbar(el, 100, '100% (' + total_cats + ' / ' + total_cats + ') <i class="fas fa-check"></i><?php echo esc_attr(__('Complete!', 'geodirectory')); ?>');
3193 3193
                         } else {
3194 3194
                             var percentage = Math.round(((page * chunk_size) / total_cats) * 100);
3195 3195
                             percentage = percentage > 100 ? 100 : percentage;
3196
-                            gd_progressbar(el, percentage, '' + percentage + '% (' + ( page * chunk_size ) + ' / ' + total_cats + ') <i class="fas fa-sync fa-spin"></i><?php esc_attr_e( 'Exporting...', 'geodirectory' );?>');
3196
+                            gd_progressbar(el, percentage, '' + percentage + '% (' + ( page * chunk_size ) + ' / ' + total_cats + ') <i class="fas fa-sync fa-spin"></i><?php esc_attr_e('Exporting...', 'geodirectory'); ?>');
3197 3197
                         }
3198 3198
                         if (typeof data.files != 'undefined' && jQuery(data.files).length ) {
3199 3199
                             var obj_files = data.files;
@@ -3250,13 +3250,13 @@  discard block
 block discarded – undo
3250 3250
 function geodir_init_filesystem()
3251 3251
 {
3252 3252
 
3253
-    if(!function_exists('get_filesystem_method')){
3253
+    if (!function_exists('get_filesystem_method')) {
3254 3254
         require_once(ABSPATH."/wp-admin/includes/file.php");
3255 3255
     }
3256 3256
     $access_type = get_filesystem_method();
3257 3257
     if ($access_type === 'direct') {
3258 3258
         /* you can safely run request_filesystem_credentials() without any issues and don't need to worry about passing in a URL */
3259
-        $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array());
3259
+        $creds = request_filesystem_credentials(trailingslashit(site_url()).'wp-admin/', '', false, false, array());
3260 3260
 
3261 3261
         /* initialize the API */
3262 3262
         if (!WP_Filesystem($creds)) {
@@ -3269,7 +3269,7 @@  discard block
 block discarded – undo
3269 3269
         return $wp_filesystem;
3270 3270
         /* do our file manipulations below */
3271 3271
     } elseif (defined('FTP_USER')) {
3272
-        $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array());
3272
+        $creds = request_filesystem_credentials(trailingslashit(site_url()).'wp-admin/', '', false, false, array());
3273 3273
 
3274 3274
         /* initialize the API */
3275 3275
         if (!WP_Filesystem($creds)) {
@@ -3304,7 +3304,7 @@  discard block
 block discarded – undo
3304 3304
  * @package GeoDirectory
3305 3305
  */
3306 3306
 function geodir_filesystem_notice()
3307
-{   if ( defined( 'DOING_AJAX' ) ){return;}
3307
+{   if (defined('DOING_AJAX')) {return; }
3308 3308
     $access_type = get_filesystem_method();
3309 3309
     if ($access_type === 'direct') {
3310 3310
     } elseif (!defined('FTP_USER')) {
@@ -3345,64 +3345,64 @@  discard block
 block discarded – undo
3345 3345
     // try to set higher limits for import
3346 3346
     $max_input_time = ini_get('max_input_time');
3347 3347
     $max_execution_time = ini_get('max_execution_time');
3348
-    $memory_limit= ini_get('memory_limit');
3348
+    $memory_limit = ini_get('memory_limit');
3349 3349
 
3350
-    if(!$max_input_time || $max_input_time<3000){
3350
+    if (!$max_input_time || $max_input_time < 3000) {
3351 3351
         @ini_set('max_input_time', 3000);
3352 3352
     }
3353 3353
 
3354
-    if(!$max_execution_time || $max_execution_time<3000){
3354
+    if (!$max_execution_time || $max_execution_time < 3000) {
3355 3355
         @ini_set('max_execution_time', 3000);
3356 3356
     }
3357 3357
 
3358
-    if($memory_limit && str_replace('M','',$memory_limit)){
3359
-        if(str_replace('M','',$memory_limit)<256){
3358
+    if ($memory_limit && str_replace('M', '', $memory_limit)) {
3359
+        if (str_replace('M', '', $memory_limit) < 256) {
3360 3360
             @ini_set('memory_limit', '256M');
3361 3361
         }
3362 3362
     }
3363 3363
 
3364 3364
     $json = array();
3365 3365
 
3366
-    if ( !current_user_can( 'manage_options' ) ) {
3367
-        wp_send_json( $json );
3366
+    if (!current_user_can('manage_options')) {
3367
+        wp_send_json($json);
3368 3368
     }
3369 3369
 
3370
-    $task = isset( $_REQUEST['task'] ) ? $_REQUEST['task'] : NULL;
3371
-    $nonce = isset( $_REQUEST['_nonce'] ) ? $_REQUEST['_nonce'] : NULL;
3372
-    $stat = isset( $_REQUEST['_st'] ) ? $_REQUEST['_st'] : false;
3370
+    $task = isset($_REQUEST['task']) ? $_REQUEST['task'] : NULL;
3371
+    $nonce = isset($_REQUEST['_nonce']) ? $_REQUEST['_nonce'] : NULL;
3372
+    $stat = isset($_REQUEST['_st']) ? $_REQUEST['_st'] : false;
3373 3373
 
3374
-    if ( !wp_verify_nonce( $nonce, 'geodir_import_export_nonce' ) ) {
3375
-        wp_send_json( $json );
3374
+    if (!wp_verify_nonce($nonce, 'geodir_import_export_nonce')) {
3375
+        wp_send_json($json);
3376 3376
     }
3377 3377
 
3378
-    $post_type = isset( $_REQUEST['_pt'] ) ? $_REQUEST['_pt'] : NULL;
3379
-    $chunk_per_page = isset( $_REQUEST['_n'] ) ? absint($_REQUEST['_n']) : NULL;
3378
+    $post_type = isset($_REQUEST['_pt']) ? $_REQUEST['_pt'] : NULL;
3379
+    $chunk_per_page = isset($_REQUEST['_n']) ? absint($_REQUEST['_n']) : NULL;
3380 3380
     $chunk_per_page = $chunk_per_page < 50 || $chunk_per_page > 100000 ? 5000 : $chunk_per_page;
3381
-    $chunk_page_no = isset( $_REQUEST['_p'] ) ? absint($_REQUEST['_p']) : 1;
3381
+    $chunk_page_no = isset($_REQUEST['_p']) ? absint($_REQUEST['_p']) : 1;
3382 3382
 
3383 3383
     $wp_filesystem = geodir_init_filesystem();
3384 3384
     if (!$wp_filesystem) {
3385
-        $json['error'] = __( 'Filesystem ERROR: Could not access filesystem.', 'geodirectory' );
3386
-        wp_send_json( $json );
3385
+        $json['error'] = __('Filesystem ERROR: Could not access filesystem.', 'geodirectory');
3386
+        wp_send_json($json);
3387 3387
     }
3388 3388
 
3389 3389
     if (!empty($wp_filesystem) && isset($wp_filesystem->errors) && is_wp_error($wp_filesystem->errors) && $wp_filesystem->errors->get_error_code()) {
3390
-        $json['error'] = __( 'Filesystem ERROR: ' . $wp_filesystem->errors->get_error_message(), 'geodirectory' );
3391
-        wp_send_json( $json );
3390
+        $json['error'] = __('Filesystem ERROR: '.$wp_filesystem->errors->get_error_message(), 'geodirectory');
3391
+        wp_send_json($json);
3392 3392
     }
3393 3393
 
3394
-    $csv_file_dir = geodir_path_import_export( false );
3395
-    if ( !$wp_filesystem->is_dir( $csv_file_dir ) ) {
3396
-        if ( !$wp_filesystem->mkdir( $csv_file_dir, FS_CHMOD_DIR ) ) {
3397
-            $json['error'] = __( 'ERROR: Could not create cache directory. This is usually due to inconsistent file permissions.', 'geodirectory' );
3398
-            wp_send_json( $json );
3394
+    $csv_file_dir = geodir_path_import_export(false);
3395
+    if (!$wp_filesystem->is_dir($csv_file_dir)) {
3396
+        if (!$wp_filesystem->mkdir($csv_file_dir, FS_CHMOD_DIR)) {
3397
+            $json['error'] = __('ERROR: Could not create cache directory. This is usually due to inconsistent file permissions.', 'geodirectory');
3398
+            wp_send_json($json);
3399 3399
         }
3400 3400
     }
3401 3401
     
3402 3402
     $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
3403 3403
     $neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
3404 3404
 
3405
-    switch ( $task ) {
3405
+    switch ($task) {
3406 3406
         case 'export_posts': {
3407 3407
             // WPML
3408 3408
             $is_wpml = geodir_is_wpml();
@@ -3413,36 +3413,36 @@  discard block
 block discarded – undo
3413 3413
                 $sitepress->switch_lang('all', true);
3414 3414
             }
3415 3415
             // WPML
3416
-            if ( $post_type == 'gd_event' ) {
3417
-                add_filter( 'geodir_imex_export_posts_query', 'geodir_imex_get_events_query', 10, 2 );
3416
+            if ($post_type == 'gd_event') {
3417
+                add_filter('geodir_imex_export_posts_query', 'geodir_imex_get_events_query', 10, 2);
3418 3418
             }
3419
-            $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL;
3419
+            $filters = !empty($_REQUEST['gd_imex']) && is_array($_REQUEST['gd_imex']) ? $_REQUEST['gd_imex'] : NULL;
3420 3420
             
3421
-            $file_name = $post_type . '_' . date( 'dmyHi' );
3422
-            if ( $filters && isset( $filters['start_date'] ) && isset( $filters['end_date'] ) ) {
3423
-                $file_name = $post_type . '_' . date_i18n( 'dmy', strtotime( $filters['start_date'] ) ) . '_' . date_i18n( 'dmy', strtotime( $filters['end_date'] ) );
3421
+            $file_name = $post_type.'_'.date('dmyHi');
3422
+            if ($filters && isset($filters['start_date']) && isset($filters['end_date'])) {
3423
+                $file_name = $post_type.'_'.date_i18n('dmy', strtotime($filters['start_date'])).'_'.date_i18n('dmy', strtotime($filters['end_date']));
3424 3424
             }
3425
-            $posts_count = geodir_get_posts_count( $post_type );
3426
-            $file_url_base = geodir_path_import_export() . '/';
3427
-            $file_url = $file_url_base . $file_name . '.csv';
3428
-            $file_path = $csv_file_dir . '/' . $file_name . '.csv';
3429
-            $file_path_temp = $csv_file_dir . '/' . $post_type . '_' . $nonce . '.csv';
3425
+            $posts_count = geodir_get_posts_count($post_type);
3426
+            $file_url_base = geodir_path_import_export().'/';
3427
+            $file_url = $file_url_base.$file_name.'.csv';
3428
+            $file_path = $csv_file_dir.'/'.$file_name.'.csv';
3429
+            $file_path_temp = $csv_file_dir.'/'.$post_type.'_'.$nonce.'.csv';
3430 3430
             
3431 3431
             $chunk_file_paths = array();
3432 3432
 
3433
-            if ( isset( $_REQUEST['_c'] ) ) {
3433
+            if (isset($_REQUEST['_c'])) {
3434 3434
                 $json['total'] = $posts_count;
3435 3435
                 // WPML
3436 3436
                 if ($is_wpml) {
3437 3437
                     $sitepress->switch_lang($active_lang, true);
3438 3438
                 }
3439 3439
                 // WPML
3440
-                wp_send_json( $json );
3440
+                wp_send_json($json);
3441 3441
                 gd_die();
3442
-            } else if ( isset( $_REQUEST['_st'] ) ) {
3443
-                $line_count = (int)geodir_import_export_line_count( $file_path_temp );
3444
-                $percentage = count( $posts_count ) > 0 && $line_count > 0 ? ceil( $line_count / $posts_count ) * 100 : 0;
3445
-                $percentage = min( $percentage, 100 );
3442
+            } else if (isset($_REQUEST['_st'])) {
3443
+                $line_count = (int) geodir_import_export_line_count($file_path_temp);
3444
+                $percentage = count($posts_count) > 0 && $line_count > 0 ? ceil($line_count / $posts_count) * 100 : 0;
3445
+                $percentage = min($percentage, 100);
3446 3446
                 
3447 3447
                 $json['percentage'] = $percentage;
3448 3448
                 // WPML
@@ -3450,45 +3450,45 @@  discard block
 block discarded – undo
3450 3450
                     $sitepress->switch_lang($active_lang, true);
3451 3451
                 }
3452 3452
                 // WPML
3453
-                wp_send_json( $json );
3453
+                wp_send_json($json);
3454 3454
                 gd_die();
3455 3455
             } else {
3456
-                if ( !$posts_count > 0 ) {
3457
-                    $json['error'] = __( 'No records to export.', 'geodirectory' );
3456
+                if (!$posts_count > 0) {
3457
+                    $json['error'] = __('No records to export.', 'geodirectory');
3458 3458
                 } else {
3459 3459
                     $total_posts = $posts_count;
3460 3460
                     if ($chunk_per_page > $total_posts) {
3461 3461
                         $chunk_per_page = $total_posts;
3462 3462
                     }
3463
-                    $chunk_total_pages = ceil( $total_posts / $chunk_per_page );
3463
+                    $chunk_total_pages = ceil($total_posts / $chunk_per_page);
3464 3464
                     
3465 3465
                     $j = $chunk_page_no;
3466
-                    $chunk_save_posts = geodir_imex_get_posts( $post_type, $chunk_per_page, $j );
3466
+                    $chunk_save_posts = geodir_imex_get_posts($post_type, $chunk_per_page, $j);
3467 3467
                     
3468 3468
                     $per_page = 500;
3469 3469
                     if ($per_page > $chunk_per_page) {
3470 3470
                         $per_page = $chunk_per_page;
3471 3471
                     }
3472
-                    $total_pages = ceil( $chunk_per_page / $per_page );
3472
+                    $total_pages = ceil($chunk_per_page / $per_page);
3473 3473
                     
3474
-                    for ( $i = 0; $i <= $total_pages; $i++ ) {
3475
-                        $save_posts = array_slice( $chunk_save_posts , ( $i * $per_page ), $per_page );
3474
+                    for ($i = 0; $i <= $total_pages; $i++) {
3475
+                        $save_posts = array_slice($chunk_save_posts, ($i * $per_page), $per_page);
3476 3476
                         
3477 3477
                         $clear = $i == 0 ? true : false;
3478
-                        geodir_save_csv_data( $file_path_temp, $save_posts, $clear );
3478
+                        geodir_save_csv_data($file_path_temp, $save_posts, $clear);
3479 3479
                     }
3480 3480
                         
3481
-                    if ( $wp_filesystem->exists( $file_path_temp ) ) {
3482
-                        $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3483
-                        $chunk_file_name = $file_name . $chunk_page_no . '.csv';
3484
-                        $file_path = $csv_file_dir . '/' . $chunk_file_name;
3485
-                        $wp_filesystem->move( $file_path_temp, $file_path, true );
3481
+                    if ($wp_filesystem->exists($file_path_temp)) {
3482
+                        $chunk_page_no = $chunk_total_pages > 1 ? '-'.$j : '';
3483
+                        $chunk_file_name = $file_name.$chunk_page_no.'.csv';
3484
+                        $file_path = $csv_file_dir.'/'.$chunk_file_name;
3485
+                        $wp_filesystem->move($file_path_temp, $file_path, true);
3486 3486
                         
3487
-                        $file_url = $file_url_base . $chunk_file_name;
3488
-                        $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3487
+                        $file_url = $file_url_base.$chunk_file_name;
3488
+                        $chunk_file_paths[] = array('i' => $j.'.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3489 3489
                     }
3490 3490
                     
3491
-                    if ( !empty($chunk_file_paths) ) {
3491
+                    if (!empty($chunk_file_paths)) {
3492 3492
                         $json['total'] = $posts_count;
3493 3493
                         $json['files'] = $chunk_file_paths;
3494 3494
                     } else {
@@ -3496,7 +3496,7 @@  discard block
 block discarded – undo
3496 3496
                             $json['total'] = $posts_count;
3497 3497
                             $json['files'] = array();
3498 3498
                         } else {
3499
-                            $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' );
3499
+                            $json['error'] = __('ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory');
3500 3500
                         }
3501 3501
                     }
3502 3502
                 }
@@ -3505,7 +3505,7 @@  discard block
 block discarded – undo
3505 3505
                     $sitepress->switch_lang($active_lang, true);
3506 3506
                 }
3507 3507
                 // WPML
3508
-                wp_send_json( $json );
3508
+                wp_send_json($json);
3509 3509
             }
3510 3510
         }
3511 3511
         break;
@@ -3519,20 +3519,20 @@  discard block
 block discarded – undo
3519 3519
                 $sitepress->switch_lang('all', true);
3520 3520
             }
3521 3521
             // WPML
3522
-            $file_name = $post_type . 'category_' . date( 'dmyHi' );
3522
+            $file_name = $post_type.'category_'.date('dmyHi');
3523 3523
             
3524
-            $terms_count = geodir_get_terms_count( $post_type );
3525
-            $file_url_base = geodir_path_import_export() . '/';
3526
-            $file_url = $file_url_base . $file_name . '.csv';
3527
-            $file_path = $csv_file_dir . '/' . $file_name . '.csv';
3528
-            $file_path_temp = $csv_file_dir . '/' . $post_type . 'category_' . $nonce . '.csv';
3524
+            $terms_count = geodir_get_terms_count($post_type);
3525
+            $file_url_base = geodir_path_import_export().'/';
3526
+            $file_url = $file_url_base.$file_name.'.csv';
3527
+            $file_path = $csv_file_dir.'/'.$file_name.'.csv';
3528
+            $file_path_temp = $csv_file_dir.'/'.$post_type.'category_'.$nonce.'.csv';
3529 3529
             
3530 3530
             $chunk_file_paths = array();
3531 3531
             
3532
-            if ( isset( $_REQUEST['_st'] ) ) {
3533
-                $line_count = (int)geodir_import_export_line_count( $file_path_temp );
3534
-                $percentage = count( $terms_count ) > 0 && $line_count > 0 ? ceil( $line_count / $terms_count ) * 100 : 0;
3535
-                $percentage = min( $percentage, 100 );
3532
+            if (isset($_REQUEST['_st'])) {
3533
+                $line_count = (int) geodir_import_export_line_count($file_path_temp);
3534
+                $percentage = count($terms_count) > 0 && $line_count > 0 ? ceil($line_count / $terms_count) * 100 : 0;
3535
+                $percentage = min($percentage, 100);
3536 3536
                 
3537 3537
                 $json['percentage'] = $percentage;
3538 3538
                 // WPML
@@ -3540,48 +3540,48 @@  discard block
 block discarded – undo
3540 3540
                     $sitepress->switch_lang($active_lang, true);
3541 3541
                 }
3542 3542
                 // WPML
3543
-                wp_send_json( $json );
3543
+                wp_send_json($json);
3544 3544
             } else {
3545
-                if ( !$terms_count > 0 ) {
3546
-                    $json['error'] = __( 'No records to export.', 'geodirectory' );
3545
+                if (!$terms_count > 0) {
3546
+                    $json['error'] = __('No records to export.', 'geodirectory');
3547 3547
                 } else {
3548 3548
                     $total_terms = $terms_count;
3549 3549
                     if ($chunk_per_page > $terms_count) {
3550 3550
                         $chunk_per_page = $terms_count;
3551 3551
                     }
3552
-                    $chunk_total_pages = ceil( $total_terms / $chunk_per_page );
3552
+                    $chunk_total_pages = ceil($total_terms / $chunk_per_page);
3553 3553
                     
3554 3554
                     $j = $chunk_page_no;
3555
-                    $chunk_save_terms = geodir_imex_get_terms( $post_type, $chunk_per_page, $j );
3555
+                    $chunk_save_terms = geodir_imex_get_terms($post_type, $chunk_per_page, $j);
3556 3556
                     
3557 3557
                     $per_page = 500;
3558 3558
                     if ($per_page > $chunk_per_page) {
3559 3559
                         $per_page = $chunk_per_page;
3560 3560
                     }
3561
-                    $total_pages = ceil( $chunk_per_page / $per_page );
3561
+                    $total_pages = ceil($chunk_per_page / $per_page);
3562 3562
                     
3563
-                    for ( $i = 0; $i <= $total_pages; $i++ ) {
3564
-                        $save_terms = array_slice( $chunk_save_terms , ( $i * $per_page ), $per_page );
3563
+                    for ($i = 0; $i <= $total_pages; $i++) {
3564
+                        $save_terms = array_slice($chunk_save_terms, ($i * $per_page), $per_page);
3565 3565
                         
3566 3566
                         $clear = $i == 0 ? true : false;
3567
-                        geodir_save_csv_data( $file_path_temp, $save_terms, $clear );
3567
+                        geodir_save_csv_data($file_path_temp, $save_terms, $clear);
3568 3568
                     }
3569 3569
                     
3570
-                    if ( $wp_filesystem->exists( $file_path_temp ) ) {
3571
-                        $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3572
-                        $chunk_file_name = $file_name . $chunk_page_no . '.csv';
3573
-                        $file_path = $csv_file_dir . '/' . $chunk_file_name;
3574
-                        $wp_filesystem->move( $file_path_temp, $file_path, true );
3570
+                    if ($wp_filesystem->exists($file_path_temp)) {
3571
+                        $chunk_page_no = $chunk_total_pages > 1 ? '-'.$j : '';
3572
+                        $chunk_file_name = $file_name.$chunk_page_no.'.csv';
3573
+                        $file_path = $csv_file_dir.'/'.$chunk_file_name;
3574
+                        $wp_filesystem->move($file_path_temp, $file_path, true);
3575 3575
                         
3576
-                        $file_url = $file_url_base . $chunk_file_name;
3577
-                        $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3576
+                        $file_url = $file_url_base.$chunk_file_name;
3577
+                        $chunk_file_paths[] = array('i' => $j.'.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3578 3578
                     }
3579 3579
                     
3580
-                    if ( !empty($chunk_file_paths) ) {
3580
+                    if (!empty($chunk_file_paths)) {
3581 3581
                         $json['total'] = $terms_count;
3582 3582
                         $json['files'] = $chunk_file_paths;
3583 3583
                     } else {
3584
-                        $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' );
3584
+                        $json['error'] = __('ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory');
3585 3585
                     }
3586 3586
                 }
3587 3587
                 // WPML
@@ -3589,127 +3589,127 @@  discard block
 block discarded – undo
3589 3589
                     $sitepress->switch_lang($active_lang, true);
3590 3590
                 }
3591 3591
                 // WPML
3592
-                wp_send_json( $json );
3592
+                wp_send_json($json);
3593 3593
             }
3594 3594
         }
3595 3595
         break;
3596 3596
         case 'export_locations': {
3597
-            $file_url_base = geodir_path_import_export() . '/';
3598
-            $file_name = 'gd_locations_' . date( 'dmyHi' );
3599
-            $file_url = $file_url_base . $file_name . '.csv';
3600
-            $file_path = $csv_file_dir . '/' . $file_name . '.csv';
3601
-            $file_path_temp = $csv_file_dir . '/gd_locations_' . $nonce . '.csv';
3597
+            $file_url_base = geodir_path_import_export().'/';
3598
+            $file_name = 'gd_locations_'.date('dmyHi');
3599
+            $file_url = $file_url_base.$file_name.'.csv';
3600
+            $file_path = $csv_file_dir.'/'.$file_name.'.csv';
3601
+            $file_path_temp = $csv_file_dir.'/gd_locations_'.$nonce.'.csv';
3602 3602
             
3603
-            $items_count = (int)geodir_location_imex_count_locations();
3603
+            $items_count = (int) geodir_location_imex_count_locations();
3604 3604
             
3605
-            if ( isset( $_REQUEST['_st'] ) ) {
3606
-                $line_count = (int)geodir_import_export_line_count( $file_path_temp );
3607
-                $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0;
3608
-                $percentage = min( $percentage, 100 );
3605
+            if (isset($_REQUEST['_st'])) {
3606
+                $line_count = (int) geodir_import_export_line_count($file_path_temp);
3607
+                $percentage = count($items_count) > 0 && $line_count > 0 ? ceil($line_count / $items_count) * 100 : 0;
3608
+                $percentage = min($percentage, 100);
3609 3609
                 
3610 3610
                 $json['percentage'] = $percentage;
3611
-                wp_send_json( $json );
3611
+                wp_send_json($json);
3612 3612
             } else {
3613 3613
                 $chunk_file_paths = array();
3614 3614
                 
3615
-                if ( !$items_count > 0 ) {
3616
-                    $json['error'] = __( 'No records to export.', 'geodirectory' );
3615
+                if (!$items_count > 0) {
3616
+                    $json['error'] = __('No records to export.', 'geodirectory');
3617 3617
                 } else {
3618
-                    $chunk_per_page = min( $chunk_per_page, $items_count );
3619
-                    $chunk_total_pages = ceil( $items_count / $chunk_per_page );
3618
+                    $chunk_per_page = min($chunk_per_page, $items_count);
3619
+                    $chunk_total_pages = ceil($items_count / $chunk_per_page);
3620 3620
                     
3621 3621
                     $j = $chunk_page_no;
3622
-                    $chunk_save_items = geodir_location_imex_locations_data( $chunk_per_page, $j );
3622
+                    $chunk_save_items = geodir_location_imex_locations_data($chunk_per_page, $j);
3623 3623
                     
3624 3624
                     $per_page = 500;
3625
-                    $per_page = min( $per_page, $chunk_per_page );
3626
-                    $total_pages = ceil( $chunk_per_page / $per_page );
3625
+                    $per_page = min($per_page, $chunk_per_page);
3626
+                    $total_pages = ceil($chunk_per_page / $per_page);
3627 3627
                     
3628
-                    for ( $i = 0; $i <= $total_pages; $i++ ) {
3629
-                        $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page );
3628
+                    for ($i = 0; $i <= $total_pages; $i++) {
3629
+                        $save_items = array_slice($chunk_save_items, ($i * $per_page), $per_page);
3630 3630
                         
3631 3631
                         $clear = $i == 0 ? true : false;
3632
-                        geodir_save_csv_data( $file_path_temp, $save_items, $clear );
3632
+                        geodir_save_csv_data($file_path_temp, $save_items, $clear);
3633 3633
                     }
3634 3634
                     
3635
-                    if ( $wp_filesystem->exists( $file_path_temp ) ) {
3636
-                        $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3637
-                        $chunk_file_name = $file_name . $chunk_page_no . '.csv';
3638
-                        $file_path = $csv_file_dir . '/' . $chunk_file_name;
3639
-                        $wp_filesystem->move( $file_path_temp, $file_path, true );
3635
+                    if ($wp_filesystem->exists($file_path_temp)) {
3636
+                        $chunk_page_no = $chunk_total_pages > 1 ? '-'.$j : '';
3637
+                        $chunk_file_name = $file_name.$chunk_page_no.'.csv';
3638
+                        $file_path = $csv_file_dir.'/'.$chunk_file_name;
3639
+                        $wp_filesystem->move($file_path_temp, $file_path, true);
3640 3640
                         
3641
-                        $file_url = $file_url_base . $chunk_file_name;
3642
-                        $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3641
+                        $file_url = $file_url_base.$chunk_file_name;
3642
+                        $chunk_file_paths[] = array('i' => $j.'.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3643 3643
                     }
3644 3644
                     
3645
-                    if ( !empty($chunk_file_paths) ) {
3645
+                    if (!empty($chunk_file_paths)) {
3646 3646
                         $json['total'] = $items_count;
3647 3647
                         $json['files'] = $chunk_file_paths;
3648 3648
                     } else {
3649
-                        $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' );
3649
+                        $json['error'] = __('Fail, something wrong to create csv file.', 'geodirectory');
3650 3650
                     }
3651 3651
                 }
3652
-                wp_send_json( $json );
3652
+                wp_send_json($json);
3653 3653
             }
3654 3654
         }
3655 3655
         break;
3656 3656
         case 'export_hoods': {
3657
-            $file_url_base = geodir_path_import_export() . '/';
3658
-            $file_name = 'gd_neighbourhoods_' . date( 'dmyHi' );
3659
-            $file_url = $file_url_base . $file_name . '.csv';
3660
-            $file_path = $csv_file_dir . '/' . $file_name . '.csv';
3661
-            $file_path_temp = $csv_file_dir . '/gd_neighbourhoods_' . $nonce . '.csv';
3657
+            $file_url_base = geodir_path_import_export().'/';
3658
+            $file_name = 'gd_neighbourhoods_'.date('dmyHi');
3659
+            $file_url = $file_url_base.$file_name.'.csv';
3660
+            $file_path = $csv_file_dir.'/'.$file_name.'.csv';
3661
+            $file_path_temp = $csv_file_dir.'/gd_neighbourhoods_'.$nonce.'.csv';
3662 3662
             
3663
-            $items_count = (int)geodir_location_imex_count_neighbourhoods();
3663
+            $items_count = (int) geodir_location_imex_count_neighbourhoods();
3664 3664
             
3665
-            if ( isset( $_REQUEST['_st'] ) ) {
3666
-                $line_count = (int)geodir_import_export_line_count( $file_path_temp );
3667
-                $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0;
3668
-                $percentage = min( $percentage, 100 );
3665
+            if (isset($_REQUEST['_st'])) {
3666
+                $line_count = (int) geodir_import_export_line_count($file_path_temp);
3667
+                $percentage = count($items_count) > 0 && $line_count > 0 ? ceil($line_count / $items_count) * 100 : 0;
3668
+                $percentage = min($percentage, 100);
3669 3669
                 
3670 3670
                 $json['percentage'] = $percentage;
3671
-                wp_send_json( $json );
3671
+                wp_send_json($json);
3672 3672
             } else {
3673 3673
                 $chunk_file_paths = array();
3674 3674
                 
3675
-                if ( !$items_count > 0 ) {
3676
-                    $json['error'] = __( 'No records to export.', 'geodirectory' );
3675
+                if (!$items_count > 0) {
3676
+                    $json['error'] = __('No records to export.', 'geodirectory');
3677 3677
                 } else {
3678
-                    $chunk_per_page = min( $chunk_per_page, $items_count );
3679
-                    $chunk_total_pages = ceil( $items_count / $chunk_per_page );
3678
+                    $chunk_per_page = min($chunk_per_page, $items_count);
3679
+                    $chunk_total_pages = ceil($items_count / $chunk_per_page);
3680 3680
                     
3681 3681
                     $j = $chunk_page_no;
3682
-                    $chunk_save_items = geodir_location_imex_neighbourhoods_data( $chunk_per_page, $j );
3682
+                    $chunk_save_items = geodir_location_imex_neighbourhoods_data($chunk_per_page, $j);
3683 3683
                     
3684 3684
                     $per_page = 500;
3685
-                    $per_page = min( $per_page, $chunk_per_page );
3686
-                    $total_pages = ceil( $chunk_per_page / $per_page );
3685
+                    $per_page = min($per_page, $chunk_per_page);
3686
+                    $total_pages = ceil($chunk_per_page / $per_page);
3687 3687
                     
3688
-                    for ( $i = 0; $i <= $total_pages; $i++ ) {
3689
-                        $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page );
3688
+                    for ($i = 0; $i <= $total_pages; $i++) {
3689
+                        $save_items = array_slice($chunk_save_items, ($i * $per_page), $per_page);
3690 3690
                         
3691 3691
                         $clear = $i == 0 ? true : false;
3692
-                        geodir_save_csv_data( $file_path_temp, $save_items, $clear );
3692
+                        geodir_save_csv_data($file_path_temp, $save_items, $clear);
3693 3693
                     }
3694 3694
                     
3695
-                    if ( $wp_filesystem->exists( $file_path_temp ) ) {
3696
-                        $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3697
-                        $chunk_file_name = $file_name . $chunk_page_no . '.csv';
3698
-                        $file_path = $csv_file_dir . '/' . $chunk_file_name;
3699
-                        $wp_filesystem->move( $file_path_temp, $file_path, true );
3695
+                    if ($wp_filesystem->exists($file_path_temp)) {
3696
+                        $chunk_page_no = $chunk_total_pages > 1 ? '-'.$j : '';
3697
+                        $chunk_file_name = $file_name.$chunk_page_no.'.csv';
3698
+                        $file_path = $csv_file_dir.'/'.$chunk_file_name;
3699
+                        $wp_filesystem->move($file_path_temp, $file_path, true);
3700 3700
                         
3701
-                        $file_url = $file_url_base . $chunk_file_name;
3702
-                        $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3701
+                        $file_url = $file_url_base.$chunk_file_name;
3702
+                        $chunk_file_paths[] = array('i' => $j.'.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3703 3703
                     }
3704 3704
                     
3705
-                    if ( !empty($chunk_file_paths) ) {
3705
+                    if (!empty($chunk_file_paths)) {
3706 3706
                         $json['total'] = $items_count;
3707 3707
                         $json['files'] = $chunk_file_paths;
3708 3708
                     } else {
3709
-                        $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' );
3709
+                        $json['error'] = __('Fail, something wrong to create csv file.', 'geodirectory');
3710 3710
                     }
3711 3711
                 }
3712
-                wp_send_json( $json );
3712
+                wp_send_json($json);
3713 3713
             }
3714 3714
         }
3715 3715
         break;
@@ -3726,34 +3726,34 @@  discard block
 block discarded – undo
3726 3726
             }
3727 3727
             // WPML
3728 3728
             
3729
-            @ini_set( 'auto_detect_line_endings', true );
3729
+            @ini_set('auto_detect_line_endings', true);
3730 3730
             
3731 3731
             $uploads = wp_upload_dir();
3732 3732
             $uploads_dir = $uploads['path'];
3733 3733
             $uploads_subdir = $uploads['subdir'];
3734 3734
             
3735
-            $csv_file = isset( $_POST['_file'] ) ? $_POST['_file'] : NULL;
3736
-            $import_choice = isset( $_REQUEST['_ch'] ) ? $_REQUEST['_ch'] : 'skip';
3735
+            $csv_file = isset($_POST['_file']) ? $_POST['_file'] : NULL;
3736
+            $import_choice = isset($_REQUEST['_ch']) ? $_REQUEST['_ch'] : 'skip';
3737 3737
             
3738
-            $csv_file_arr = explode( '/', $csv_file );
3739
-            $csv_filename = end( $csv_file_arr );
3740
-            $target_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $csv_filename;
3738
+            $csv_file_arr = explode('/', $csv_file);
3739
+            $csv_filename = end($csv_file_arr);
3740
+            $target_path = $uploads_dir.'/temp_'.$current_user->data->ID.'/'.$csv_filename;
3741 3741
             
3742 3742
             $json['file'] = $csv_file;
3743
-            $json['error'] = __( 'The uploaded file is not a valid csv file. Please try again.', 'geodirectory' );
3743
+            $json['error'] = __('The uploaded file is not a valid csv file. Please try again.', 'geodirectory');
3744 3744
             $file = array();
3745 3745
 
3746
-            if ( $csv_file && $wp_filesystem->is_file( $target_path ) && $wp_filesystem->exists( $target_path ) ) {
3747
-                $wp_filetype = wp_check_filetype_and_ext( $target_path, $csv_filename );
3746
+            if ($csv_file && $wp_filesystem->is_file($target_path) && $wp_filesystem->exists($target_path)) {
3747
+                $wp_filetype = wp_check_filetype_and_ext($target_path, $csv_filename);
3748 3748
 
3749 3749
                 if (!empty($wp_filetype) && isset($wp_filetype['ext']) && geodir_strtolower($wp_filetype['ext']) == 'csv') {
3750 3750
                     $json['error'] = NULL;
3751 3751
 
3752 3752
                     $lc_all = setlocale(LC_ALL, 0); // Fix issue of fgetcsv ignores special characters when they are at the beginning of line
3753 3753
                     setlocale(LC_ALL, 'en_US.UTF-8');
3754
-                    if ( ( $handle = fopen($target_path, "r" ) ) !== FALSE ) {
3755
-                        while ( ( $data = fgetcsv( $handle, 100000, "," ) ) !== FALSE ) {
3756
-                            if ( !empty( $data ) ) {
3754
+                    if (($handle = fopen($target_path, "r")) !== FALSE) {
3755
+                        while (($data = fgetcsv($handle, 100000, ",")) !== FALSE) {
3756
+                            if (!empty($data)) {
3757 3757
                                 $file[] = $data;
3758 3758
                             }
3759 3759
                         }
@@ -3767,19 +3767,19 @@  discard block
 block discarded – undo
3767 3767
                         $json['error'] = __('No data found in csv file.', 'geodirectory');
3768 3768
                     }
3769 3769
                 } else {
3770
-                    wp_send_json( $json );
3770
+                    wp_send_json($json);
3771 3771
                 }
3772 3772
             } else {
3773
-                wp_send_json( $json );
3773
+                wp_send_json($json);
3774 3774
             }
3775 3775
             
3776
-            if ( $task == 'prepare_import' || !empty( $json['error'] ) ) {
3777
-                wp_send_json( $json );
3776
+            if ($task == 'prepare_import' || !empty($json['error'])) {
3777
+                wp_send_json($json);
3778 3778
             }
3779 3779
             
3780 3780
             $total = $json['rows'];
3781
-            $limit = isset($_POST['limit']) ? (int)$_POST['limit'] : 1;
3782
-            $processed = isset($_POST['processed']) ? (int)$_POST['processed'] : 0;
3781
+            $limit = isset($_POST['limit']) ? (int) $_POST['limit'] : 1;
3782
+            $processed = isset($_POST['processed']) ? (int) $_POST['processed'] : 0;
3783 3783
             
3784 3784
             $count = $limit;
3785 3785
             
@@ -3804,13 +3804,13 @@  discard block
 block discarded – undo
3804 3804
             
3805 3805
             $post_types = geodir_get_posttypes();
3806 3806
 
3807
-            if ( $task == 'import_cat' ) {
3807
+            if ($task == 'import_cat') {
3808 3808
                 if (!empty($file)) {
3809 3809
                     $columns = isset($file[0]) ? $file[0] : NULL;
3810 3810
                     
3811 3811
                     if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
3812 3812
                         $json['error'] = CSV_INVAILD_FILE;
3813
-                        wp_send_json( $json );
3813
+                        wp_send_json($json);
3814 3814
                         exit;
3815 3815
                     }
3816 3816
                     
@@ -3821,7 +3821,7 @@  discard block
 block discarded – undo
3821 3821
                         
3822 3822
                         if (isset($file[$index])) {
3823 3823
                             $row = $file[$index];
3824
-                            $row = array_map( 'trim', $row );
3824
+                            $row = array_map('trim', $row);
3825 3825
                             //$row = array_map( 'utf8_encode', $row );
3826 3826
                             
3827 3827
                             $cat_id = '';
@@ -3838,42 +3838,42 @@  discard block
 block discarded – undo
3838 3838
                             $cat_id_original = '';
3839 3839
                             
3840 3840
                             $c = 0;
3841
-                            foreach ($columns as $column ) {
3842
-                                if ( $column == 'cat_id' ) {
3843
-                                    $cat_id = (int)$row[$c];
3844
-                                } else if ( $column == 'cat_name' ) {
3841
+                            foreach ($columns as $column) {
3842
+                                if ($column == 'cat_id') {
3843
+                                    $cat_id = (int) $row[$c];
3844
+                                } else if ($column == 'cat_name') {
3845 3845
                                     $cat_name = $row[$c];
3846
-                                } else if ( $column == 'cat_slug' ) {
3846
+                                } else if ($column == 'cat_slug') {
3847 3847
                                     $cat_slug = $row[$c];
3848
-                                } else if ( $column == 'cat_posttype' ) {
3848
+                                } else if ($column == 'cat_posttype') {
3849 3849
                                     $cat_posttype = $row[$c];
3850
-                                } else if ( $column == 'cat_parent' ) {
3850
+                                } else if ($column == 'cat_parent') {
3851 3851
                                     $cat_parent = trim($row[$c]);
3852
-                                } else if ( $column == 'cat_schema' && $row[$c] != '' ) {
3852
+                                } else if ($column == 'cat_schema' && $row[$c] != '') {
3853 3853
                                     $cat_schema = $row[$c];
3854
-                                } else if ( $column == 'cat_description' ) {
3854
+                                } else if ($column == 'cat_description') {
3855 3855
                                     $cat_description = $row[$c];
3856
-                                } else if ( $column == 'cat_top_description' ) {
3856
+                                } else if ($column == 'cat_top_description') {
3857 3857
                                     $cat_top_description = $row[$c];
3858
-                                } else if ( $column == 'cat_image' ) {
3858
+                                } else if ($column == 'cat_image') {
3859 3859
                                     $cat_image = $row[$c];
3860
-                                } else if ( $column == 'cat_icon' ) {
3860
+                                } else if ($column == 'cat_icon') {
3861 3861
                                     $cat_icon = $row[$c];
3862 3862
                                 }
3863 3863
                                 // WPML
3864
-                                if ( $is_wpml ) {
3865
-                                    if ( $column == 'cat_language' ) {
3866
-                                        $cat_language = geodir_strtolower( trim( $row[$c] ) );
3867
-                                    } else if ( $column == 'cat_id_original' ) {
3868
-                                        $cat_id_original = (int)$row[$c];
3864
+                                if ($is_wpml) {
3865
+                                    if ($column == 'cat_language') {
3866
+                                        $cat_language = geodir_strtolower(trim($row[$c]));
3867
+                                    } else if ($column == 'cat_id_original') {
3868
+                                        $cat_id_original = (int) $row[$c];
3869 3869
                                     }
3870 3870
                                 }
3871 3871
                                 // WPML
3872 3872
                                 $c++;
3873 3873
                             }
3874 3874
                             
3875
-                            if ( $cat_name == '' || !in_array( $cat_posttype, $post_types ) ) {
3876
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) );
3875
+                            if ($cat_name == '' || !in_array($cat_posttype, $post_types)) {
3876
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to blank title/invalid post type', 'geodirectory'));
3877 3877
                                 
3878 3878
                                 $invalid++;
3879 3879
                                 continue;
@@ -3891,24 +3891,24 @@  discard block
 block discarded – undo
3891 3891
                             $term_data['description'] = $cat_description;
3892 3892
                             $term_data['cat_schema'] = $cat_schema;
3893 3893
                             $term_data['top_description'] = $cat_top_description;
3894
-                            $term_data['image'] = $cat_image != '' ? basename( $cat_image ) : '';
3895
-                            $term_data['icon'] = $cat_icon != '' ? basename( $cat_icon ) : '';
3894
+                            $term_data['image'] = $cat_image != '' ? basename($cat_image) : '';
3895
+                            $term_data['icon'] = $cat_icon != '' ? basename($cat_icon) : '';
3896 3896
                             
3897 3897
                             //$term_data = array_map( 'utf8_encode', $term_data );
3898 3898
                             
3899
-                            $taxonomy = $cat_posttype . 'category';
3899
+                            $taxonomy = $cat_posttype.'category';
3900 3900
                             
3901 3901
                             $term_data['taxonomy'] = $taxonomy;
3902 3902
 
3903 3903
                             $term_parent_id = 0;
3904
-                            if ($cat_parent != "" || (int)$cat_parent > 0) {
3904
+                            if ($cat_parent != "" || (int) $cat_parent > 0) {
3905 3905
                                 $term_parent = '';
3906 3906
                                 
3907
-                                if ( $term_parent = get_term_by( 'name', $cat_parent, $taxonomy ) ) {
3907
+                                if ($term_parent = get_term_by('name', $cat_parent, $taxonomy)) {
3908 3908
                                     //
3909
-                                } else if ( $term_parent = get_term_by( 'slug', $cat_parent, $taxonomy ) ) {
3909
+                                } else if ($term_parent = get_term_by('slug', $cat_parent, $taxonomy)) {
3910 3910
                                     //
3911
-                                } else if ( $term_parent = get_term_by( 'id', $cat_parent, $taxonomy ) ) {
3911
+                                } else if ($term_parent = get_term_by('id', $cat_parent, $taxonomy)) {
3912 3912
                                     //
3913 3913
                                 } else {
3914 3914
                                     $term_parent_data = array();
@@ -3916,104 +3916,104 @@  discard block
 block discarded – undo
3916 3916
                                     //$term_parent_data = array_map( 'utf8_encode', $term_parent_data );
3917 3917
                                     $term_parent_data['taxonomy'] = $taxonomy;
3918 3918
                                     
3919
-                                    $term_parent_id = (int)geodir_imex_insert_term( $taxonomy, $term_parent_data );
3919
+                                    $term_parent_id = (int) geodir_imex_insert_term($taxonomy, $term_parent_data);
3920 3920
                                 }
3921 3921
                                 
3922
-                                if ( !empty( $term_parent ) && !is_wp_error( $term_parent ) ) {
3923
-                                    $term_parent_id = (int)$term_parent->term_id;
3922
+                                if (!empty($term_parent) && !is_wp_error($term_parent)) {
3923
+                                    $term_parent_id = (int) $term_parent->term_id;
3924 3924
                                 }
3925 3925
                             }
3926
-                            $term_data['parent'] = (int)$term_parent_id;
3926
+                            $term_data['parent'] = (int) $term_parent_id;
3927 3927
 
3928 3928
                             $term_id = NULL;
3929
-                            if ( $import_choice == 'update' ) {
3930
-                                if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
3929
+                            if ($import_choice == 'update') {
3930
+                                if ($cat_id > 0 && $term = (array) term_exists($cat_id, $taxonomy)) {
3931 3931
                                     $term_data['term_id'] = $term['term_id'];
3932 3932
                                     
3933
-                                    if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
3933
+                                    if ($term_id = geodir_imex_update_term($taxonomy, $term_data)) {
3934 3934
                                         $updated++;
3935 3935
                                     } else {
3936 3936
                                         $invalid++;
3937
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3937
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory'));
3938 3938
                                     }
3939
-                                } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
3939
+                                } else if ($term_data['slug'] != '' && $term = (array) term_exists($term_data['slug'], $taxonomy)) {
3940 3940
                                     $term_data['term_id'] = $term['term_id'];
3941 3941
                                     
3942
-                                    if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
3942
+                                    if ($term_id = geodir_imex_update_term($taxonomy, $term_data)) {
3943 3943
                                         $updated++;
3944 3944
                                     } else {
3945 3945
                                         $invalid++;
3946
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3946
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory'));
3947 3947
                                     }
3948 3948
                                 } else {
3949
-                                    if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
3949
+                                    if ($term_id = geodir_imex_insert_term($taxonomy, $term_data)) {
3950 3950
                                         $created++;
3951 3951
                                     } else {
3952 3952
                                         $invalid++;
3953
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3953
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory'));
3954 3954
                                     }
3955 3955
                                 }
3956
-                            } else if ( $import_choice == 'skip' ) {
3957
-                                if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
3956
+                            } else if ($import_choice == 'skip') {
3957
+                                if ($cat_id > 0 && $term = (array) term_exists($cat_id, $taxonomy)) {
3958 3958
                                     $skipped++;
3959
-                                } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
3959
+                                } else if ($term_data['slug'] != '' && $term = (array) term_exists($term_data['slug'], $taxonomy)) {
3960 3960
                                     $skipped++;
3961 3961
                                 } else {
3962
-                                    if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
3962
+                                    if ($term_id = geodir_imex_insert_term($taxonomy, $term_data)) {
3963 3963
                                         $created++;
3964 3964
                                     } else {
3965 3965
                                         $invalid++;
3966
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3966
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory'));
3967 3967
                                     }
3968 3968
                                 }
3969 3969
                             } else {
3970 3970
                                 $invalid++;
3971
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3971
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory'));
3972 3972
                             }
3973 3973
                             
3974
-                            if ( $term_id ) {
3974
+                            if ($term_id) {
3975 3975
                                 // WPML
3976 3976
                                 if ($is_wpml && geodir_wpml_is_taxonomy_translated($taxonomy) && $cat_id_original > 0 && $cat_language != '') {
3977
-                                    $wpml_element_type = 'tax_' . $taxonomy;
3978
-                                    $source_language = geodir_get_language_for_element( $cat_id_original, $wpml_element_type );
3977
+                                    $wpml_element_type = 'tax_'.$taxonomy;
3978
+                                    $source_language = geodir_get_language_for_element($cat_id_original, $wpml_element_type);
3979 3979
                                     $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language();
3980 3980
 
3981
-                                    $trid = $sitepress->get_element_trid( $cat_id_original, $wpml_element_type );
3981
+                                    $trid = $sitepress->get_element_trid($cat_id_original, $wpml_element_type);
3982 3982
                                     
3983
-                                    $sitepress->set_element_language_details( $term_id, $wpml_element_type, $trid, $cat_language, $source_language );
3983
+                                    $sitepress->set_element_language_details($term_id, $wpml_element_type, $trid, $cat_language, $source_language);
3984 3984
                                 }
3985 3985
                                 // WPML
3986 3986
                                 
3987
-                                if ( isset( $term_data['top_description'] ) ) {
3988
-                                    geodir_update_tax_meta( $term_id, 'ct_cat_top_desc', $term_data['top_description'], $cat_posttype );
3987
+                                if (isset($term_data['top_description'])) {
3988
+                                    geodir_update_tax_meta($term_id, 'ct_cat_top_desc', $term_data['top_description'], $cat_posttype);
3989 3989
                                 }
3990 3990
                                 
3991
-                                if ( isset( $term_data['cat_schema'] ) ) {
3992
-                                    geodir_update_tax_meta( $term_id, 'ct_cat_schema', $term_data['cat_schema'], $cat_posttype );
3991
+                                if (isset($term_data['cat_schema'])) {
3992
+                                    geodir_update_tax_meta($term_id, 'ct_cat_schema', $term_data['cat_schema'], $cat_posttype);
3993 3993
                                 }
3994 3994
             
3995 3995
                                 $attachment = false;
3996
-                                if ( isset( $term_data['image'] ) && $term_data['image'] != '' ) {
3997
-                                    $cat_image = geodir_get_default_catimage( $term_id, $cat_posttype );
3998
-                                    $cat_image = !empty( $cat_image ) && isset( $cat_image['src'] ) ? $cat_image['src'] : '';
3996
+                                if (isset($term_data['image']) && $term_data['image'] != '') {
3997
+                                    $cat_image = geodir_get_default_catimage($term_id, $cat_posttype);
3998
+                                    $cat_image = !empty($cat_image) && isset($cat_image['src']) ? $cat_image['src'] : '';
3999 3999
                                     
4000
-                                    if ( basename($cat_image) != $term_data['image'] ) {
4000
+                                    if (basename($cat_image) != $term_data['image']) {
4001 4001
                                         $attachment = true;
4002
-                                        geodir_update_tax_meta( $term_id, 'ct_cat_default_img', array( 'id' => 'image', 'src' => $uploads['url'] . '/' . $term_data['image'] ), $cat_posttype );
4002
+                                        geodir_update_tax_meta($term_id, 'ct_cat_default_img', array('id' => 'image', 'src' => $uploads['url'].'/'.$term_data['image']), $cat_posttype);
4003 4003
                                     }
4004 4004
                                 }
4005 4005
                                 
4006
-                                if ( isset( $term_data['icon'] ) && $term_data['icon'] != '' ) {
4007
-                                    $cat_icon = geodir_get_tax_meta( $term_id, 'ct_cat_icon', false, $cat_posttype );
4008
-                                    $cat_icon = !empty( $cat_icon ) && isset( $cat_icon['src'] ) ? $cat_icon['src'] : '';
4006
+                                if (isset($term_data['icon']) && $term_data['icon'] != '') {
4007
+                                    $cat_icon = geodir_get_tax_meta($term_id, 'ct_cat_icon', false, $cat_posttype);
4008
+                                    $cat_icon = !empty($cat_icon) && isset($cat_icon['src']) ? $cat_icon['src'] : '';
4009 4009
 
4010
-                                    if ( basename($cat_icon) != $term_data['icon'] ) {
4010
+                                    if (basename($cat_icon) != $term_data['icon']) {
4011 4011
                                         $attachment = true;
4012
-                                        geodir_update_tax_meta( $term_id, 'ct_cat_icon', array( 'id' => 'icon', 'src' => $uploads['url'] . '/' . $term_data['icon'] ), $cat_posttype );
4012
+                                        geodir_update_tax_meta($term_id, 'ct_cat_icon', array('id' => 'icon', 'src' => $uploads['url'].'/'.$term_data['icon']), $cat_posttype);
4013 4013
                                     }
4014 4014
                                 }
4015 4015
                                 
4016
-                                if ( $attachment ) {
4016
+                                if ($attachment) {
4017 4017
                                     $images++;
4018 4018
                                 }
4019 4019
                             }
@@ -4035,35 +4035,35 @@  discard block
 block discarded – undo
4035 4035
                 $json['invalid'] = $invalid;
4036 4036
                 $json['images'] = $images;
4037 4037
                 
4038
-                wp_send_json( $json );
4038
+                wp_send_json($json);
4039 4039
                 exit;
4040
-            } else if ( $task == 'import_post' ) {
4041
-                $xtimings['###1'] = microtime(true)-$xstart;
4040
+            } else if ($task == 'import_post') {
4041
+                $xtimings['###1'] = microtime(true) - $xstart;
4042 4042
                 //run some stuff to make the import quicker
4043
-                wp_defer_term_counting( true );
4044
-                wp_defer_comment_counting( true );
4045
-                $wpdb->query( 'SET autocommit = 0;' );
4043
+                wp_defer_term_counting(true);
4044
+                wp_defer_comment_counting(true);
4045
+                $wpdb->query('SET autocommit = 0;');
4046 4046
 //
4047 4047
 //                remove_all_actions('publish_post');
4048 4048
 //                remove_all_actions('transition_post_status');
4049 4049
 //                remove_all_actions('publish_future_post');
4050 4050
 
4051 4051
                 if (!empty($file)) {
4052
-                    $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
4052
+                    $is_claim_active = is_plugin_active('geodir_claim_listing/geodir_claim_listing.php') && get_option('geodir_claim_enable') === 'yes' ? true : false;
4053 4053
                     $wp_post_statuses = get_post_statuses(); // All of the WordPress supported post statuses.
4054 4054
                     $default_status = 'publish';
4055
-                    $current_date = date_i18n( 'Y-m-d', time() );
4055
+                    $current_date = date_i18n('Y-m-d', time());
4056 4056
                     
4057 4057
                     $columns = isset($file[0]) ? $file[0] : NULL;
4058 4058
                     
4059 4059
                     if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4060 4060
                         $json['error'] = CSV_INVAILD_FILE;
4061
-                        wp_send_json( $json );
4061
+                        wp_send_json($json);
4062 4062
                         exit;
4063 4063
                     }
4064
-                    $xtimings['###2'] = microtime(true)-$xstart;
4064
+                    $xtimings['###2'] = microtime(true) - $xstart;
4065 4065
                     $gd_error_log = __('GD IMPORT LISTINGS [ROW %d]:', 'geodirectory');
4066
-                    $wp_chars_error = __( '(check & remove if any invalid characters used in data)', 'geodirectory' );
4066
+                    $wp_chars_error = __('(check & remove if any invalid characters used in data)', 'geodirectory');
4067 4067
                     $processed_actual = 0;
4068 4068
                     for ($i = 1; $i <= $limit; $i++) {
4069 4069
                         $index = $processed + $i;
@@ -4072,9 +4072,9 @@  discard block
 block discarded – undo
4072 4072
                         if (isset($file[$index])) {
4073 4073
                             $processed_actual++;
4074 4074
                             $row = $file[$index];
4075
-                            $row = array_map( 'trim', $row );
4075
+                            $row = array_map('trim', $row);
4076 4076
                             //$row = array_map( 'utf8_encode', $row );
4077
-                            $row = array_map( 'addslashes_gpc', $row );
4077
+                            $row = array_map('addslashes_gpc', $row);
4078 4078
                             
4079 4079
                             $post_id = '';
4080 4080
                             $post_title = '';
@@ -4114,82 +4114,82 @@  discard block
 block discarded – undo
4114 4114
                             $original_post_id = '';
4115 4115
                             
4116 4116
                             $c = 0;
4117
-                            foreach ($columns as $column ) {
4117
+                            foreach ($columns as $column) {
4118 4118
                                 $gd_post[$column] = $row[$c];
4119 4119
                                 
4120
-                                if ( $column == 'post_id' ) {
4120
+                                if ($column == 'post_id') {
4121 4121
                                     $post_id = $row[$c];
4122
-                                } else if ( $column == 'post_title' ) {
4122
+                                } else if ($column == 'post_title') {
4123 4123
                                     $post_title = sanitize_text_field($row[$c]);
4124
-                                } else if ( $column == 'post_author' ) {
4124
+                                } else if ($column == 'post_author') {
4125 4125
                                     $post_author = $row[$c];
4126
-                                } else if ( $column == 'post_date' ) {
4126
+                                } else if ($column == 'post_date') {
4127 4127
                                     $post_date = $row[$c];
4128
-                                } else if ( $column == 'post_content' ) {
4128
+                                } else if ($column == 'post_content') {
4129 4129
                                     $post_content = $row[$c];
4130
-                                } else if ( $column == 'post_category' && $row[$c] != '' ) {
4131
-                                    $post_category_arr = explode( ',', $row[$c] );
4132
-                                } else if ( $column == 'default_category' ) {
4130
+                                } else if ($column == 'post_category' && $row[$c] != '') {
4131
+                                    $post_category_arr = explode(',', $row[$c]);
4132
+                                } else if ($column == 'default_category') {
4133 4133
                                     $default_category = wp_kses_normalize_entities($row[$c]);
4134
-                                } else if ( $column == 'post_tags' && $row[$c] != '' ) {
4135
-                                    $post_tags = explode( ',', sanitize_text_field($row[$c]) );
4136
-                                } else if ( $column == 'post_type' ) {
4134
+                                } else if ($column == 'post_tags' && $row[$c] != '') {
4135
+                                    $post_tags = explode(',', sanitize_text_field($row[$c]));
4136
+                                } else if ($column == 'post_type') {
4137 4137
                                     $post_type = $row[$c];
4138
-                                } else if ( $column == 'post_status' ) {
4139
-                                    $post_status = sanitize_key( $row[$c] );
4140
-                                } else if ( $column == 'is_featured' ) {
4141
-                                    $is_featured = (int)$row[$c];
4142
-                                } else if ( $column == 'geodir_video' ) {
4138
+                                } else if ($column == 'post_status') {
4139
+                                    $post_status = sanitize_key($row[$c]);
4140
+                                } else if ($column == 'is_featured') {
4141
+                                    $is_featured = (int) $row[$c];
4142
+                                } else if ($column == 'geodir_video') {
4143 4143
                                     $geodir_video = $row[$c];
4144
-                                } else if ( $column == 'post_address' ) {
4144
+                                } else if ($column == 'post_address') {
4145 4145
                                     $post_address = sanitize_text_field($row[$c]);
4146
-                                } else if ( $column == 'post_city' ) {
4146
+                                } else if ($column == 'post_city') {
4147 4147
                                     $post_city = sanitize_text_field($row[$c]);
4148
-                                } else if ( $column == 'post_region' ) {
4148
+                                } else if ($column == 'post_region') {
4149 4149
                                     $post_region = sanitize_text_field($row[$c]);
4150
-                                } else if ( $column == 'post_country' ) {
4150
+                                } else if ($column == 'post_country') {
4151 4151
                                     $post_country = sanitize_text_field($row[$c]);
4152
-                                } else if ( $column == 'post_zip' ) {
4152
+                                } else if ($column == 'post_zip') {
4153 4153
                                     $post_zip = sanitize_text_field($row[$c]);
4154
-                                } else if ( $column == 'post_latitude' ) {
4154
+                                } else if ($column == 'post_latitude') {
4155 4155
                                     $post_latitude = sanitize_text_field($row[$c]);
4156
-                                } else if ( $column == 'post_longitude' ) {
4156
+                                } else if ($column == 'post_longitude') {
4157 4157
                                     $post_longitude = sanitize_text_field($row[$c]);
4158
-                                } else if ( $column == 'post_neighbourhood' ) {
4158
+                                } else if ($column == 'post_neighbourhood') {
4159 4159
                                     $post_neighbourhood = sanitize_text_field($row[$c]);
4160 4160
                                     unset($gd_post[$column]);
4161
-                                } else if ( $column == 'neighbourhood_latitude' ) {
4161
+                                } else if ($column == 'neighbourhood_latitude') {
4162 4162
                                     $neighbourhood_latitude = sanitize_text_field($row[$c]);
4163
-                                } else if ( $column == 'neighbourhood_longitude' ) {
4163
+                                } else if ($column == 'neighbourhood_longitude') {
4164 4164
                                     $neighbourhood_longitude = sanitize_text_field($row[$c]);
4165
-                                } else if ( $column == 'geodir_timing' ) {
4165
+                                } else if ($column == 'geodir_timing') {
4166 4166
                                     $geodir_timing = sanitize_text_field($row[$c]);
4167
-                                } else if ( $column == 'geodir_contact' ) {
4167
+                                } else if ($column == 'geodir_contact') {
4168 4168
                                     $geodir_contact = sanitize_text_field($row[$c]);
4169
-                                } else if ( $column == 'geodir_email' ) {
4169
+                                } else if ($column == 'geodir_email') {
4170 4170
                                     $geodir_email = sanitize_email($row[$c]);
4171
-                                } else if ( $column == 'geodir_website' ) {
4171
+                                } else if ($column == 'geodir_website') {
4172 4172
                                     $geodir_website = sanitize_text_field($row[$c]);
4173
-                                } else if ( $column == 'geodir_twitter' ) {
4173
+                                } else if ($column == 'geodir_twitter') {
4174 4174
                                     $geodir_twitter = sanitize_text_field($row[$c]);
4175
-                                } else if ( $column == 'geodir_facebook' ) {
4175
+                                } else if ($column == 'geodir_facebook') {
4176 4176
                                     $geodir_facebook = sanitize_text_field($row[$c]);
4177
-                                } else if ( $column == 'IMAGE' && !empty( $row[$c] ) && $row[$c] != '' ) {
4177
+                                } else if ($column == 'IMAGE' && !empty($row[$c]) && $row[$c] != '') {
4178 4178
                                     $post_images[] = $row[$c];
4179
-                                } else if ( $column == 'alive_days' && (int)$row[$c] > 0 ) {
4180
-                                    $expire_date = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$row[$c] . ' days' ) );
4181
-                                } else if ( $column == 'expire_date' && $row[$c] != '' && geodir_strtolower($row[$c]) != 'never' ) {
4179
+                                } else if ($column == 'alive_days' && (int) $row[$c] > 0) {
4180
+                                    $expire_date = date_i18n('Y-m-d', strtotime($current_date.'+'.(int) $row[$c].' days'));
4181
+                                } else if ($column == 'expire_date' && $row[$c] != '' && geodir_strtolower($row[$c]) != 'never') {
4182 4182
                                     $row[$c] = str_replace('/', '-', $row[$c]);
4183
-                                    $expire_date = date_i18n( 'Y-m-d', strtotime( $row[$c] ) );
4184
-                                } else if ( strpos( $column, 'linked_' ) === 0 ) {
4185
-                                    $geodir_link_business = (int)$row[$c];
4183
+                                    $expire_date = date_i18n('Y-m-d', strtotime($row[$c]));
4184
+                                } else if (strpos($column, 'linked_') === 0) {
4185
+                                    $geodir_link_business = (int) $row[$c];
4186 4186
                                 }
4187 4187
                                 // WPML
4188 4188
                                 if ($is_wpml) {
4189 4189
                                     if ($column == 'language') {
4190 4190
                                         $language = geodir_strtolower(trim($row[$c]));
4191 4191
                                     } else if ($column == 'original_post_id') {
4192
-                                        $original_post_id = (int)$row[$c];
4192
+                                        $original_post_id = (int) $row[$c];
4193 4193
                                     }
4194 4194
                                 }
4195 4195
                                 // WPML
@@ -4197,7 +4197,7 @@  discard block
 block discarded – undo
4197 4197
                             }
4198 4198
                             // listing claimed or not
4199 4199
                             if ($is_claim_active && isset($gd_post['claimed'])) {
4200
-                                $gd_post['claimed'] = (int)$gd_post['claimed'] == 1 ? 1 : 0;
4200
+                                $gd_post['claimed'] = (int) $gd_post['claimed'] == 1 ? 1 : 0;
4201 4201
                             }
4202 4202
                             
4203 4203
                             // WPML
@@ -4208,43 +4208,43 @@  discard block
 block discarded – undo
4208 4208
 
4209 4209
                             $gd_post['IMAGE'] = $post_images;
4210 4210
                             
4211
-                            $post_status = !empty( $post_status ) ? sanitize_key( $post_status ) : $default_status;
4212
-                            $post_status = !empty( $wp_post_statuses ) && !isset( $wp_post_statuses[$post_status] ) ? $default_status : $post_status;
4211
+                            $post_status = !empty($post_status) ? sanitize_key($post_status) : $default_status;
4212
+                            $post_status = !empty($wp_post_statuses) && !isset($wp_post_statuses[$post_status]) ? $default_status : $post_status;
4213 4213
                                                                                                                 
4214 4214
                             $valid = true;
4215 4215
                             
4216
-                            if ( $post_title == '' || !in_array( $post_type, $post_types ) ) {
4216
+                            if ($post_title == '' || !in_array($post_type, $post_types)) {
4217 4217
                                 $invalid++;
4218 4218
                                 $valid = false;
4219
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) );
4219
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to blank title/invalid post type', 'geodirectory'));
4220 4220
                             }
4221
-                            $xtimings['###3'] = microtime(true)-$xstart;
4222
-                            $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true;
4223
-                            if ( $location_allowed ) {
4221
+                            $xtimings['###3'] = microtime(true) - $xstart;
4222
+                            $location_allowed = function_exists('geodir_cpt_no_location') && geodir_cpt_no_location($post_type) ? false : true;
4223
+                            if ($location_allowed) {
4224 4224
                                 $location_result = geodir_get_default_location();
4225
-                                if ( $post_address == '' || $post_city == '' || $post_region == '' || $post_country == '' || $post_latitude == '' || $post_longitude == '' ) {
4225
+                                if ($post_address == '' || $post_city == '' || $post_region == '' || $post_country == '' || $post_latitude == '' || $post_longitude == '') {
4226 4226
                                     $invalid_addr++;
4227 4227
                                     $valid = false;
4228
-                                    geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ) );
4229
-                                } else if ( !empty( $location_result ) && $location_result->location_id == 0 ) {
4230
-                                    if ( ( geodir_strtolower( $post_city ) != geodir_strtolower( $location_result->city ) ) || ( geodir_strtolower( $post_region ) != geodir_strtolower( $location_result->region ) ) || (geodir_strtolower( $post_country ) != geodir_strtolower( $location_result->country ) ) ) {
4228
+                                    geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory'));
4229
+                                } else if (!empty($location_result) && $location_result->location_id == 0) {
4230
+                                    if ((geodir_strtolower($post_city) != geodir_strtolower($location_result->city)) || (geodir_strtolower($post_region) != geodir_strtolower($location_result->region)) || (geodir_strtolower($post_country) != geodir_strtolower($location_result->country))) {
4231 4231
                                         $invalid_addr++;
4232 4232
                                         $valid = false;
4233
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ) );
4233
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory'));
4234 4234
                                     } else {
4235 4235
                                         if (!$location_manager) {
4236
-                                            $gd_post['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // Set the default location when location manager not activated.
4236
+                                            $gd_post['post_locations'] = '['.$location_result->city_slug.'],['.$location_result->region_slug.'],['.$location_result->country_slug.']'; // Set the default location when location manager not activated.
4237 4237
                                         }
4238 4238
                                     }
4239 4239
                                 }
4240 4240
                             }
4241
-                            $xtimings['###4']   = microtime(true)-$xstart;
4242
-                            if ( !$valid ) {
4241
+                            $xtimings['###4'] = microtime(true) - $xstart;
4242
+                            if (!$valid) {
4243 4243
                                 continue;
4244 4244
                             }
4245 4245
 
4246
-                            $cat_taxonomy = $post_type . 'category';
4247
-                            $tags_taxonomy = $post_type . '_tags';
4246
+                            $cat_taxonomy = $post_type.'category';
4247
+                            $tags_taxonomy = $post_type.'_tags';
4248 4248
                             
4249 4249
                             if ($default_category != '' && !in_array($default_category, $post_category_arr)) {
4250 4250
                                 $post_category_arr = array_merge(array($default_category), $post_category_arr);
@@ -4252,29 +4252,29 @@  discard block
 block discarded – undo
4252 4252
 
4253 4253
                             $post_category = array();
4254 4254
                             $default_category_id = NULL;
4255
-                            if ( !empty( $post_category_arr ) ) {
4256
-                                foreach ( $post_category_arr as $value ) {
4257
-                                    $category_name = wp_kses_normalize_entities( trim( $value ) );
4255
+                            if (!empty($post_category_arr)) {
4256
+                                foreach ($post_category_arr as $value) {
4257
+                                    $category_name = wp_kses_normalize_entities(trim($value));
4258 4258
                                     
4259
-                                    if ( $category_name != '' ) {
4259
+                                    if ($category_name != '') {
4260 4260
                                         $term_category = array();
4261 4261
                                         
4262
-                                        if ( $term = get_term_by( 'name', $category_name, $cat_taxonomy ) ) {
4262
+                                        if ($term = get_term_by('name', $category_name, $cat_taxonomy)) {
4263 4263
                                             $term_category = $term;
4264
-                                        } else if ( $term = get_term_by( 'slug', $category_name, $cat_taxonomy ) ) {
4264
+                                        } else if ($term = get_term_by('slug', $category_name, $cat_taxonomy)) {
4265 4265
                                             $term_category = $term;
4266 4266
                                         } else {
4267 4267
                                             $term_data = array();
4268 4268
                                             $term_data['name'] = $category_name;
4269 4269
                                             $term_data['taxonomy'] = $cat_taxonomy;
4270 4270
                                             
4271
-                                            $term_id = geodir_imex_insert_term( $cat_taxonomy, $term_data );
4272
-                                            if ( $term_id ) {
4273
-                                                $term_category = get_term( $term_id, $cat_taxonomy );
4271
+                                            $term_id = geodir_imex_insert_term($cat_taxonomy, $term_data);
4272
+                                            if ($term_id) {
4273
+                                                $term_category = get_term($term_id, $cat_taxonomy);
4274 4274
                                             }
4275 4275
                                         }
4276 4276
                                         
4277
-                                        if ( !empty( $term_category ) && !is_wp_error( $term_category ) ) {
4277
+                                        if (!empty($term_category) && !is_wp_error($term_category)) {
4278 4278
                                             $post_category[] = intval($term_category->term_id);
4279 4279
                                             
4280 4280
                                             if ($category_name == $default_category) {
@@ -4284,14 +4284,14 @@  discard block
 block discarded – undo
4284 4284
                                     }
4285 4285
                                 }
4286 4286
                             }
4287
-                            $xtimings['###5'] = microtime(true)-$xstart;
4287
+                            $xtimings['###5'] = microtime(true) - $xstart;
4288 4288
                             $save_post = array();
4289 4289
                             $save_post['post_title'] = $post_title;
4290 4290
                             if (!empty($post_date)) {
4291
-                                $post_date = geodir_date( $post_date, 'Y-m-d H:i:s' ); // convert to mysql date format.
4291
+                                $post_date = geodir_date($post_date, 'Y-m-d H:i:s'); // convert to mysql date format.
4292 4292
                                 
4293 4293
                                 $save_post['post_date'] = $post_date;
4294
-                                $save_post['post_date_gmt'] = get_gmt_from_date( $post_date );
4294
+                                $save_post['post_date_gmt'] = get_gmt_from_date($post_date);
4295 4295
                             }
4296 4296
                             $save_post['post_content'] = $post_content;
4297 4297
                             $save_post['post_type'] = $post_type;
@@ -4301,15 +4301,15 @@  discard block
 block discarded – undo
4301 4301
                             $save_post['post_tags'] = $post_tags;
4302 4302
 
4303 4303
                             $saved_post_id = NULL;
4304
-                            if ( $import_choice == 'update' ) {
4305
-                                $gd_wp_error = __( 'Unable to add listing, please check the listing data.', 'geodirectory' );
4304
+                            if ($import_choice == 'update') {
4305
+                                $gd_wp_error = __('Unable to add listing, please check the listing data.', 'geodirectory');
4306 4306
                                 
4307
-                                if ( $post_id > 0 && get_post( $post_id ) ) {
4307
+                                if ($post_id > 0 && get_post($post_id)) {
4308 4308
                                     $save_post['ID'] = $post_id;
4309 4309
                                     
4310
-                                    if ( $saved_post_id = wp_update_post( $save_post, true ) ) {
4311
-                                        if ( is_wp_error( $saved_post_id ) ) {
4312
-                                            $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error;
4310
+                                    if ($saved_post_id = wp_update_post($save_post, true)) {
4311
+                                        if (is_wp_error($saved_post_id)) {
4312
+                                            $gd_wp_error = $saved_post_id->get_error_message().' '.$wp_chars_error;
4313 4313
                                             $saved_post_id = 0;
4314 4314
                                         } else {
4315 4315
                                             $saved_post_id = $post_id;
@@ -4317,9 +4317,9 @@  discard block
 block discarded – undo
4317 4317
                                         }
4318 4318
                                     }
4319 4319
                                 } else {
4320
-                                    if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
4321
-                                        if ( is_wp_error( $saved_post_id ) ) {
4322
-                                            $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error;
4320
+                                    if ($saved_post_id = wp_insert_post($save_post, true)) {
4321
+                                        if (is_wp_error($saved_post_id)) {
4322
+                                            $gd_wp_error = $saved_post_id->get_error_message().' '.$wp_chars_error;
4323 4323
                                             $saved_post_id = 0;
4324 4324
                                         } else {
4325 4325
                                             $created++;
@@ -4327,19 +4327,19 @@  discard block
 block discarded – undo
4327 4327
                                     }
4328 4328
                                 }
4329 4329
                                 
4330
-                                if ( !$saved_post_id > 0 ) {
4330
+                                if (!$saved_post_id > 0) {
4331 4331
                                     $invalid++;
4332
-                                    geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_wp_error );
4332
+                                    geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_wp_error);
4333 4333
                                 }
4334
-                            } else if ( $import_choice == 'skip' ) {
4335
-                                if ( $post_id > 0 && get_post( $post_id ) ) {
4334
+                            } else if ($import_choice == 'skip') {
4335
+                                if ($post_id > 0 && get_post($post_id)) {
4336 4336
                                     $skipped++;	
4337 4337
                                 } else {
4338
-                                    if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
4339
-                                        if ( is_wp_error( $saved_post_id ) ) {
4338
+                                    if ($saved_post_id = wp_insert_post($save_post, true)) {
4339
+                                        if (is_wp_error($saved_post_id)) {
4340 4340
                                             $invalid++;
4341 4341
                                             
4342
-                                            geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $saved_post_id->get_error_message() . ' ' . $wp_chars_error );
4342
+                                            geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$saved_post_id->get_error_message().' '.$wp_chars_error);
4343 4343
                                             $saved_post_id = 0;
4344 4344
                                         } else {
4345 4345
                                             $created++;
@@ -4347,28 +4347,28 @@  discard block
 block discarded – undo
4347 4347
                                     } else {
4348 4348
                                         $invalid++;
4349 4349
                                         
4350
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error );
4350
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$wp_chars_error);
4351 4351
                                     }
4352 4352
                                 }
4353 4353
                             } else {
4354 4354
                                 $invalid++;
4355 4355
                                 
4356
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error );
4356
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$wp_chars_error);
4357 4357
                             }
4358
-                            $xtimings['###6'] = microtime(true)-$xstart;
4359
-                            if ( (int)$saved_post_id > 0 ) {
4358
+                            $xtimings['###6'] = microtime(true) - $xstart;
4359
+                            if ((int) $saved_post_id > 0) {
4360 4360
                                 // WPML
4361 4361
                                 if ($is_wpml && geodir_wpml_is_post_type_translated($post_type) && $original_post_id > 0 && $language != '') {
4362
-                                    $wpml_post_type = 'post_' . $post_type;
4363
-                                    $source_language = geodir_get_language_for_element( $original_post_id, $wpml_post_type );
4362
+                                    $wpml_post_type = 'post_'.$post_type;
4363
+                                    $source_language = geodir_get_language_for_element($original_post_id, $wpml_post_type);
4364 4364
                                     $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language();
4365 4365
 
4366
-                                    $trid = $sitepress->get_element_trid( $original_post_id, $wpml_post_type );
4366
+                                    $trid = $sitepress->get_element_trid($original_post_id, $wpml_post_type);
4367 4367
                                     
4368
-                                    $sitepress->set_element_language_details( $saved_post_id, $wpml_post_type, $trid, $language, $source_language );
4368
+                                    $sitepress->set_element_language_details($saved_post_id, $wpml_post_type, $trid, $language, $source_language);
4369 4369
                                 }
4370 4370
                                 // WPML
4371
-                                $gd_post_info = geodir_get_post_info( $saved_post_id );
4371
+                                $gd_post_info = geodir_get_post_info($saved_post_id);
4372 4372
                                 
4373 4373
                                 $gd_post['post_id'] = $saved_post_id;
4374 4374
                                 $gd_post['ID'] = $saved_post_id;
@@ -4380,7 +4380,7 @@  discard block
 block discarded – undo
4380 4380
                                                     
4381 4381
                                 // post location
4382 4382
                                 $post_location_id = 0;
4383
-                                if ( $location_allowed && !empty( $location_result ) && $location_result->location_id > 0 ) {
4383
+                                if ($location_allowed && !empty($location_result) && $location_result->location_id > 0) {
4384 4384
                                     $gd_post['post_neighbourhood'] = '';
4385 4385
                                     
4386 4386
                                     $post_location_info = array(
@@ -4390,7 +4390,7 @@  discard block
 block discarded – undo
4390 4390
                                                                 'geo_lat' => $post_latitude,
4391 4391
                                                                 'geo_lng' => $post_longitude
4392 4392
                                                             );
4393
-                                    if ( $location_id = (int)geodir_add_new_location( $post_location_info ) ) {
4393
+                                    if ($location_id = (int) geodir_add_new_location($post_location_info)) {
4394 4394
                                         $post_location_id = $location_id;
4395 4395
                                     }
4396 4396
                                     
@@ -4432,14 +4432,14 @@  discard block
 block discarded – undo
4432 4432
                                 }
4433 4433
                                 
4434 4434
                                 // post package info
4435
-                                $package_id = isset( $gd_post['package_id'] ) && !empty( $gd_post['package_id'] ) ? (int)$gd_post['package_id'] : 0;
4435
+                                $package_id = isset($gd_post['package_id']) && !empty($gd_post['package_id']) ? (int) $gd_post['package_id'] : 0;
4436 4436
                                 if (!$package_id && !empty($gd_post_info) && isset($gd_post_info->package_id) && $gd_post_info->package_id) {
4437 4437
                                     $package_id = $gd_post_info->package_id;
4438 4438
                                 }
4439 4439
                                 
4440 4440
                                 $package_info = array();
4441 4441
                                 if ($package_id && function_exists('geodir_get_package_info_by_id')) {
4442
-                                    $package_info = (array)geodir_get_package_info_by_id($package_id);
4442
+                                    $package_info = (array) geodir_get_package_info_by_id($package_id);
4443 4443
                                     
4444 4444
                                     if (!(!empty($package_info) && isset($package_info['post_type']) && $package_info['post_type'] == $post_type)) {
4445 4445
                                         $package_info = array();
@@ -4447,18 +4447,18 @@  discard block
 block discarded – undo
4447 4447
                                 }
4448 4448
                                 
4449 4449
                                 if (empty($package_info)) {
4450
-                                    $package_info = (array)geodir_post_package_info( array(), '', $post_type );
4450
+                                    $package_info = (array) geodir_post_package_info(array(), '', $post_type);
4451 4451
                                 }
4452 4452
                                  
4453
-                                if (!empty($package_info))	 {
4453
+                                if (!empty($package_info)) {
4454 4454
                                     $package_id = $package_info['pid'];
4455 4455
                                     
4456 4456
                                     if (isset($gd_post['alive_days']) || isset($gd_post['expire_date'])) {
4457 4457
                                         $gd_post['expire_date'] = $expire_date;
4458 4458
                                     } else {
4459
-                                        if ( isset( $package_info['days'] ) && (int)$package_info['days'] > 0 ) {
4460
-                                            $gd_post['alive_days'] = (int)$package_info['days'];
4461
-                                            $gd_post['expire_date'] = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$package_info['days'] . ' days' ) );
4459
+                                        if (isset($package_info['days']) && (int) $package_info['days'] > 0) {
4460
+                                            $gd_post['alive_days'] = (int) $package_info['days'];
4461
+                                            $gd_post['expire_date'] = date_i18n('Y-m-d', strtotime($current_date.'+'.(int) $package_info['days'].' days'));
4462 4462
                                         } else {
4463 4463
                                             $gd_post['expire_date'] = 'Never';
4464 4464
                                         }
@@ -4467,7 +4467,7 @@  discard block
 block discarded – undo
4467 4467
                                     $gd_post['package_id'] = $package_id;
4468 4468
                                 }
4469 4469
 
4470
-                                $table = $plugin_prefix . $post_type . '_detail';
4470
+                                $table = $plugin_prefix.$post_type.'_detail';
4471 4471
                                 
4472 4472
                                 if ($post_type == 'gd_event') {
4473 4473
                                     $gd_post = geodir_imex_process_event_data($gd_post);
@@ -4478,71 +4478,71 @@  discard block
 block discarded – undo
4478 4478
                                 }
4479 4479
 
4480 4480
                                 // Export franchise fields
4481
-                                $is_franchise_active = is_plugin_active( 'geodir_franchise/geodir_franchise.php' ) && geodir_franchise_enabled( $post_type ) ? true : false;
4481
+                                $is_franchise_active = is_plugin_active('geodir_franchise/geodir_franchise.php') && geodir_franchise_enabled($post_type) ? true : false;
4482 4482
                                 if ($is_franchise_active) {
4483
-                                    if ( isset( $gd_post['gd_is_franchise'] ) && empty( $gd_post['franchise'] ) ) {
4484
-                                        if ( absint( $gd_post['gd_is_franchise'] ) != 0 ) {
4483
+                                    if (isset($gd_post['gd_is_franchise']) && empty($gd_post['franchise'])) {
4484
+                                        if (absint($gd_post['gd_is_franchise']) != 0) {
4485 4485
                                             $gd_franchise_lock = array();
4486 4486
                                             
4487
-                                            if ( isset( $gd_post['gd_franchise_lock'] ) ) {
4488
-                                                $gd_franchise_lock = str_replace(" ", "", $gd_post['gd_franchise_lock'] );
4489
-                                                $gd_franchise_lock = trim( $gd_franchise_lock );
4490
-                                                $gd_franchise_lock = explode( ",", $gd_franchise_lock );
4487
+                                            if (isset($gd_post['gd_franchise_lock'])) {
4488
+                                                $gd_franchise_lock = str_replace(" ", "", $gd_post['gd_franchise_lock']);
4489
+                                                $gd_franchise_lock = trim($gd_franchise_lock);
4490
+                                                $gd_franchise_lock = explode(",", $gd_franchise_lock);
4491 4491
                                             }
4492 4492
                                             
4493
-                                            update_post_meta( $saved_post_id, 'gd_is_franchise', 1 );
4494
-                                            update_post_meta( $saved_post_id, 'gd_franchise_lock', $gd_franchise_lock );
4493
+                                            update_post_meta($saved_post_id, 'gd_is_franchise', 1);
4494
+                                            update_post_meta($saved_post_id, 'gd_franchise_lock', $gd_franchise_lock);
4495 4495
                                         } else {
4496
-                                            if ( function_exists( 'geodir_franchise_remove_franchise' ) ) {
4497
-                                                geodir_franchise_remove_franchise( $saved_post_id );
4496
+                                            if (function_exists('geodir_franchise_remove_franchise')) {
4497
+                                                geodir_franchise_remove_franchise($saved_post_id);
4498 4498
                                             }
4499 4499
                                         }
4500 4500
                                     } else {
4501
-                                        if ( isset( $gd_post['franchise'] ) && (int)$gd_post['franchise'] > 0 && geodir_franchise_check( (int)$gd_post['franchise'] ) ) {
4502
-                                            geodir_save_post_meta( $saved_post_id, 'franchise', (int)$gd_post['franchise'] );
4501
+                                        if (isset($gd_post['franchise']) && (int) $gd_post['franchise'] > 0 && geodir_franchise_check((int) $gd_post['franchise'])) {
4502
+                                            geodir_save_post_meta($saved_post_id, 'franchise', (int) $gd_post['franchise']);
4503 4503
                                         }
4504 4504
                                     }
4505 4505
                                 }
4506 4506
                                 
4507 4507
                                 if (!empty($save_post['post_category']) && is_array($save_post['post_category'])) {
4508
-                                    $save_post['post_category'] = array_unique( array_map( 'intval', $save_post['post_category'] ) );
4508
+                                    $save_post['post_category'] = array_unique(array_map('intval', $save_post['post_category']));
4509 4509
                                     if ($default_category_id) {
4510 4510
                                         $save_post['post_default_category'] = $default_category_id;
4511 4511
                                         $gd_post['default_category'] = $default_category_id;
4512 4512
                                     }
4513 4513
                                     $gd_post[$cat_taxonomy] = $save_post['post_category'];
4514 4514
                                 }
4515
-                                $xtimings['###7'] = microtime(true)-$xstart;
4515
+                                $xtimings['###7'] = microtime(true) - $xstart;
4516 4516
                                 // Save post info
4517
-                                geodir_save_post_info( $saved_post_id, $gd_post );
4518
-                                $xtimings['###8'] = microtime(true)-$xstart;
4517
+                                geodir_save_post_info($saved_post_id, $gd_post);
4518
+                                $xtimings['###8'] = microtime(true) - $xstart;
4519 4519
                                 // post taxonomies
4520
-                                if ( !empty( $save_post['post_category'] ) ) {
4521
-                                    wp_set_object_terms( $saved_post_id, $save_post['post_category'], $cat_taxonomy );
4520
+                                if (!empty($save_post['post_category'])) {
4521
+                                    wp_set_object_terms($saved_post_id, $save_post['post_category'], $cat_taxonomy);
4522 4522
                                     
4523
-                                    $post_default_category = isset( $save_post['post_default_category'] ) ? $save_post['post_default_category'] : '';
4523
+                                    $post_default_category = isset($save_post['post_default_category']) ? $save_post['post_default_category'] : '';
4524 4524
                                     if ($default_category_id) {
4525 4525
                                         $post_default_category = $default_category_id;
4526 4526
                                     }
4527 4527
                                     $post_cat_ids = geodir_get_post_meta($saved_post_id, $cat_taxonomy);
4528 4528
                                     $save_post['post_category'] = !empty($post_cat_ids) ? explode(",", trim($post_cat_ids, ",")) : $save_post['post_category'];
4529
-                                    $post_category_str = !empty($save_post['post_category']) ? implode(",y:#", $save_post['post_category']) . ',y:' : '';
4529
+                                    $post_category_str = !empty($save_post['post_category']) ? implode(",y:#", $save_post['post_category']).',y:' : '';
4530 4530
                                     
4531 4531
                                     if ($post_category_str != '' && $post_default_category) {
4532
-                                        $post_category_str = str_replace($post_default_category . ',y:', $post_default_category . ',y,d:', $post_category_str);
4532
+                                        $post_category_str = str_replace($post_default_category.',y:', $post_default_category.',y,d:', $post_category_str);
4533 4533
                                     }
4534 4534
                                     
4535 4535
                                     $post_category_str = $post_category_str != '' ? array($cat_taxonomy => $post_category_str) : '';
4536 4536
                                     
4537
-                                    geodir_set_postcat_structure( $saved_post_id, $cat_taxonomy, $post_default_category, $post_category_str );
4537
+                                    geodir_set_postcat_structure($saved_post_id, $cat_taxonomy, $post_default_category, $post_category_str);
4538 4538
                                 }
4539
-                                $xtimings['###8.1'] = microtime(true)-$xstart;
4540
-                                if ( !empty( $save_post['post_tags'] ) ) {
4541
-                                    wp_set_object_terms( $saved_post_id, $save_post['post_tags'], $tags_taxonomy );
4539
+                                $xtimings['###8.1'] = microtime(true) - $xstart;
4540
+                                if (!empty($save_post['post_tags'])) {
4541
+                                    wp_set_object_terms($saved_post_id, $save_post['post_tags'], $tags_taxonomy);
4542 4542
                                 }
4543
-                                $xtimings['###9'] = microtime(true)-$xstart;
4543
+                                $xtimings['###9'] = microtime(true) - $xstart;
4544 4544
                                 // Post images
4545
-                                if ( !empty( $post_images ) ) {
4545
+                                if (!empty($post_images)) {
4546 4546
                                     $post_images = array_unique($post_images);
4547 4547
                                     
4548 4548
                                     $old_post_images_arr = array();
@@ -4550,65 +4550,65 @@  discard block
 block discarded – undo
4550 4550
                                     
4551 4551
                                     $order = 1;
4552 4552
                                     
4553
-                                    $old_post_images = geodir_get_images( $saved_post_id );
4554
-                                    $xtimings['###9.1'] = microtime(true)-$xstart;
4553
+                                    $old_post_images = geodir_get_images($saved_post_id);
4554
+                                    $xtimings['###9.1'] = microtime(true) - $xstart;
4555 4555
                                     if (!empty($old_post_images)) {
4556
-                                        foreach( $old_post_images as $old_post_image ) {
4556
+                                        foreach ($old_post_images as $old_post_image) {
4557 4557
                                             if (!empty($old_post_image) && isset($old_post_image->file) && $old_post_image->file != '') {
4558 4558
                                                 $old_post_images_arr[] = $old_post_image->file;
4559 4559
                                             }
4560 4560
                                         }
4561 4561
                                     }
4562 4562
 
4563
-                                    foreach ( $post_images as $post_image ) {
4564
-                                        $image_name = basename( $post_image );
4563
+                                    foreach ($post_images as $post_image) {
4564
+                                        $image_name = basename($post_image);
4565 4565
                                         $saved_post_images_arr[] = $image_name;
4566 4566
                                         
4567
-                                        if (!empty($old_post_images_arr) && in_array( $image_name, $old_post_images_arr) ) {
4567
+                                        if (!empty($old_post_images_arr) && in_array($image_name, $old_post_images_arr)) {
4568 4568
                                             continue; // Skip if image already exists.
4569 4569
                                         }
4570 4570
                                         
4571
-                                        $image_name_parts = explode( '.', $image_name );
4572
-                                        array_pop( $image_name_parts );
4573
-                                        $proper_image_name = implode( '.', $image_name_parts );
4574
-                                        $xtimings['###9.2'] = microtime(true)-$xstart;
4575
-                                        $arr_file_type = wp_check_filetype( $image_name );
4576
-                                        $xtimings['###9.3'] = microtime(true)-$xstart;
4577
-                                        if ( !empty( $arr_file_type ) ) {
4571
+                                        $image_name_parts = explode('.', $image_name);
4572
+                                        array_pop($image_name_parts);
4573
+                                        $proper_image_name = implode('.', $image_name_parts);
4574
+                                        $xtimings['###9.2'] = microtime(true) - $xstart;
4575
+                                        $arr_file_type = wp_check_filetype($image_name);
4576
+                                        $xtimings['###9.3'] = microtime(true) - $xstart;
4577
+                                        if (!empty($arr_file_type)) {
4578 4578
                                             $uploaded_file_type = $arr_file_type['type'];
4579 4579
                                             
4580 4580
                                             $attachment = array();
4581 4581
                                             $attachment['post_id'] = $saved_post_id;
4582 4582
                                             $attachment['title'] = $proper_image_name;
4583 4583
                                             $attachment['content'] = '';
4584
-                                            $attachment['file'] = $uploads_subdir . '/' . $image_name;
4584
+                                            $attachment['file'] = $uploads_subdir.'/'.$image_name;
4585 4585
                                             $attachment['mime_type'] = $uploaded_file_type;
4586 4586
                                             $attachment['menu_order'] = $order;
4587 4587
                                             $attachment['is_featured'] = 0;
4588 4588
 
4589 4589
                                             $attachment_set = '';
4590
-                                            foreach ( $attachment as $key => $val ) {
4591
-                                                if ( $val != '' ) {
4592
-                                                    $attachment_set .= $key . " = '" . $val . "', ";
4590
+                                            foreach ($attachment as $key => $val) {
4591
+                                                if ($val != '') {
4592
+                                                    $attachment_set .= $key." = '".$val."', ";
4593 4593
                                                 }
4594 4594
                                             }
4595
-                                            $attachment_set = trim( $attachment_set, ", " );
4595
+                                            $attachment_set = trim($attachment_set, ", ");
4596 4596
                                                                                         
4597 4597
                                             // Add new attachment
4598
-                                            $xtimings['###9.4'] = microtime(true)-$xstart;
4599
-                                            $wpdb->query( "INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set );
4600
-                                            $xtimings['###9.5'] = microtime(true)-$xstart;
4598
+                                            $xtimings['###9.4'] = microtime(true) - $xstart;
4599
+                                            $wpdb->query("INSERT INTO ".GEODIR_ATTACHMENT_TABLE." SET ".$attachment_set);
4600
+                                            $xtimings['###9.5'] = microtime(true) - $xstart;
4601 4601
                                             $order++;
4602 4602
                                         }
4603 4603
                                     }
4604 4604
 
4605
-                                    $saved_post_images_sql = !empty($saved_post_images_arr) ? " AND ( file NOT LIKE '%/" . implode("' AND file NOT LIKE '%/",  $saved_post_images_arr) . "' )" : '';
4605
+                                    $saved_post_images_sql = !empty($saved_post_images_arr) ? " AND ( file NOT LIKE '%/".implode("' AND file NOT LIKE '%/", $saved_post_images_arr)."' )" : '';
4606 4606
                                     // Remove previous attachment
4607
-                                    $wpdb->query( "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = " . (int)$saved_post_id . " " . $saved_post_images_sql );
4608
-                                    $xtimings['###9.6'] = microtime(true)-$xstart;
4609
-                                    if ( !empty( $saved_post_images_arr ) ) {
4607
+                                    $wpdb->query("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id = ".(int) $saved_post_id." ".$saved_post_images_sql);
4608
+                                    $xtimings['###9.6'] = microtime(true) - $xstart;
4609
+                                    if (!empty($saved_post_images_arr)) {
4610 4610
                                         geodir_set_wp_featured_image($saved_post_id);
4611
-                                        $xtimings['###9.7'] = microtime(true)-$xstart;
4611
+                                        $xtimings['###9.7'] = microtime(true) - $xstart;
4612 4612
                                         /*
4613 4613
                                         $menu_order = 1;
4614 4614
                                         
@@ -4624,14 +4624,14 @@  discard block
 block discarded – undo
4624 4624
                                         }*/
4625 4625
                                     }
4626 4626
                                     
4627
-                                    if ( $order > 1 ) {
4627
+                                    if ($order > 1) {
4628 4628
                                         $images++;
4629 4629
                                     }
4630 4630
                                 }
4631
-                                $xtimings['###10'] = microtime(true)-$xstart;
4631
+                                $xtimings['###10'] = microtime(true) - $xstart;
4632 4632
                                 /** This action is documented in geodirectory-functions/post-functions.php */
4633
-                                do_action( 'geodir_after_save_listing', $saved_post_id, $gd_post );
4634
-                                $xtimings['###11'] = microtime(true)-$xstart;
4633
+                                do_action('geodir_after_save_listing', $saved_post_id, $gd_post);
4634
+                                $xtimings['###11'] = microtime(true) - $xstart;
4635 4635
                                 if (isset($is_featured)) {
4636 4636
                                     geodir_save_post_meta($saved_post_id, 'is_featured', $is_featured);
4637 4637
                                 }
@@ -4641,7 +4641,7 @@  discard block
 block discarded – undo
4641 4641
                                 if (isset($gd_post['expire_date'])) {
4642 4642
                                     geodir_save_post_meta($saved_post_id, 'expire_date', $gd_post['expire_date']);
4643 4643
                                 }
4644
-                                $xtimings['###12'] = microtime(true)-$xstart;
4644
+                                $xtimings['###12'] = microtime(true) - $xstart;
4645 4645
                             }
4646 4646
                             
4647 4647
                             // WPML
@@ -4654,11 +4654,11 @@  discard block
 block discarded – undo
4654 4654
                 }
4655 4655
 
4656 4656
                 //undo some stuff to make the import quicker
4657
-                wp_defer_term_counting( false );
4658
-                wp_defer_comment_counting( false );
4659
-                $wpdb->query( 'COMMIT;' );
4660
-                $wpdb->query( 'SET autocommit = 1;' );
4661
-                $xtimings['###13'] = microtime(true)-$xstart;
4657
+                wp_defer_term_counting(false);
4658
+                wp_defer_comment_counting(false);
4659
+                $wpdb->query('COMMIT;');
4660
+                $wpdb->query('SET autocommit = 1;');
4661
+                $xtimings['###13'] = microtime(true) - $xstart;
4662 4662
                 $json = array();
4663 4663
                 $json['processed'] = $processed_actual;
4664 4664
                 $json['created'] = $created;
@@ -4667,13 +4667,13 @@  discard block
 block discarded – undo
4667 4667
                 $json['invalid'] = $invalid;
4668 4668
                 $json['invalid_addr'] = $invalid_addr;
4669 4669
                 $json['images'] = $images;
4670
-                $json['timing'] = microtime(true)-$xstart;
4670
+                $json['timing'] = microtime(true) - $xstart;
4671 4671
                 $json['timings'] = $xtimings;
4672 4672
                 
4673 4673
 
4674
-                wp_send_json( $json );
4674
+                wp_send_json($json);
4675 4675
                 exit;
4676
-            } else if ( $task == 'import_loc' ) {
4676
+            } else if ($task == 'import_loc') {
4677 4677
                 global $gd_post_types;
4678 4678
                 $gd_post_types = $post_types;
4679 4679
                 
@@ -4682,82 +4682,82 @@  discard block
 block discarded – undo
4682 4682
                     
4683 4683
                     if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4684 4684
                         $json['error'] = __('The file you are uploading is not valid. There are problems with the file columns.', 'geodirectory');
4685
-                        wp_send_json( $json );
4685
+                        wp_send_json($json);
4686 4686
                     }
4687 4687
                     
4688 4688
                     $gd_error_log = __('GD IMPORT LOCATIONS [ROW %d]:', 'geodirectory');
4689
-                    $gd_error_location = __( 'Could not be saved due to blank/invalid address(city, region, country, latitude, longitude)', 'geodirectory' );
4689
+                    $gd_error_location = __('Could not be saved due to blank/invalid address(city, region, country, latitude, longitude)', 'geodirectory');
4690 4690
                     for ($i = 1; $i <= $limit; $i++) {
4691 4691
                         $index = $processed + $i;
4692 4692
                         
4693 4693
                         if (isset($file[$index])) {
4694 4694
                             $row = $file[$index];
4695
-                            $row = array_map( 'trim', $row );
4695
+                            $row = array_map('trim', $row);
4696 4696
                             $data = array();
4697 4697
                             
4698
-                            foreach ($columns as $c => $column ) {
4698
+                            foreach ($columns as $c => $column) {
4699 4699
                                 if (in_array($column, array('location_id', 'latitude', 'longitude', 'city', 'city_slug', 'region', 'country', 'city_meta_title', 'city_meta_desc', 'city_desc', 'region_meta_title', 'region_meta_desc', 'region_desc', 'country_meta_title', 'country_meta_desc', 'country_desc'))) {
4700 4700
                                     $data[$column] = $row[$c];
4701 4701
                                 }
4702 4702
                             }
4703 4703
 
4704
-                            if ( empty($data['city']) || empty($data['region']) || empty($data['country']) || empty($data['latitude']) || empty($data['longitude']) ) {
4704
+                            if (empty($data['city']) || empty($data['region']) || empty($data['country']) || empty($data['latitude']) || empty($data['longitude'])) {
4705 4705
                                 $invalid++;
4706
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4706
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location);
4707 4707
                                 continue;
4708 4708
                             }
4709 4709
                             
4710 4710
                             $data['location_id'] = isset($data['location_id']) ? absint($data['location_id']) : 0;
4711 4711
                             
4712
-                            if ( $import_choice == 'update' ) {
4713
-                                if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
4714
-                                    if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
4712
+                            if ($import_choice == 'update') {
4713
+                                if ((int) $data['location_id'] > 0 && $location = geodir_get_location_by_id('', (int) $data['location_id'])) {
4714
+                                    if ($location_id = geodir_location_update_city($data, true, $location)) {
4715 4715
                                         $updated++;
4716 4716
                                     } else {
4717 4717
                                         $invalid++;
4718
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4718
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location);
4719 4719
                                     }
4720
-                                } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
4721
-                                    $data['location_id'] = (int)$location->location_id;
4720
+                                } else if (!empty($data['city_slug']) && $location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug']))) {
4721
+                                    $data['location_id'] = (int) $location->location_id;
4722 4722
                                     
4723
-                                    if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'], 'region' => $data['region'] ) ) ) {
4724
-                                        $data['location_id'] = (int)$location->location_id;
4725
-                                    } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'region' => $data['region'] ) ) ) {
4726
-                                        $data['location_id'] = (int)$location->location_id;
4727
-                                    } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'] ) ) ) {
4728
-                                        $data['location_id'] = (int)$location->location_id;
4723
+                                    if ($location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug'], 'country' => $data['country'], 'region' => $data['region']))) {
4724
+                                        $data['location_id'] = (int) $location->location_id;
4725
+                                    } else if ($location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug'], 'region' => $data['region']))) {
4726
+                                        $data['location_id'] = (int) $location->location_id;
4727
+                                    } else if ($location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug'], 'country' => $data['country']))) {
4728
+                                        $data['location_id'] = (int) $location->location_id;
4729 4729
                                     }
4730 4730
                                     
4731
-                                    if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
4731
+                                    if ($location_id = geodir_location_update_city($data, true, $location)) {
4732 4732
                                         $updated++;
4733 4733
                                     } else {
4734 4734
                                         $invalid++;
4735
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4735
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location);
4736 4736
                                     }
4737 4737
                                 } else {
4738
-                                    if ( $location_id = geodir_location_insert_city( $data, true ) ) {
4738
+                                    if ($location_id = geodir_location_insert_city($data, true)) {
4739 4739
                                         $created++;
4740 4740
                                     } else {
4741 4741
                                         $invalid++;
4742
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4742
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location);
4743 4743
                                     }
4744 4744
                                 }
4745
-                            } elseif ( $import_choice == 'skip' ) {
4746
-                                if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
4745
+                            } elseif ($import_choice == 'skip') {
4746
+                                if ((int) $data['location_id'] > 0 && $location = geodir_get_location_by_id('', (int) $data['location_id'])) {
4747 4747
                                     $skipped++;
4748
-                                } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
4748
+                                } else if (!empty($data['city_slug']) && $location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug']))) {
4749 4749
                                     $skipped++;
4750 4750
                                 } else {
4751
-                                    if ( $location_id = geodir_location_insert_city( $data, true ) ) {
4751
+                                    if ($location_id = geodir_location_insert_city($data, true)) {
4752 4752
                                         $created++;
4753 4753
                                     } else {
4754 4754
                                         $invalid++;
4755
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4755
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location);
4756 4756
                                     }
4757 4757
                                 }
4758 4758
                             } else {
4759 4759
                                 $invalid++;
4760
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4760
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location);
4761 4761
                             }
4762 4762
                         }
4763 4763
                     }
@@ -4771,24 +4771,24 @@  discard block
 block discarded – undo
4771 4771
                 $json['invalid'] = $invalid;
4772 4772
                 $json['images'] = $images;
4773 4773
                 
4774
-                wp_send_json( $json );
4775
-            } else if ( $task == 'import_hood' ) {               
4774
+                wp_send_json($json);
4775
+            } else if ($task == 'import_hood') {               
4776 4776
                 if (!empty($file)) {
4777 4777
                     $columns = isset($file[0]) ? $file[0] : NULL;
4778 4778
                     
4779 4779
                     if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4780 4780
                         $json['error'] = __('The file you are uploading is not valid. There are problems with the file columns.', 'geodirectory');
4781
-                        wp_send_json( $json );
4781
+                        wp_send_json($json);
4782 4782
                     }
4783 4783
                     
4784 4784
                     $gd_error_log = __('GD IMPORT NEIGHBOURHOODS [ROW %d]:', 'geodirectory');
4785
-                    $gd_error_hood = __( 'Could not be saved due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory' );
4785
+                    $gd_error_hood = __('Could not be saved due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory');
4786 4786
                     for ($i = 1; $i <= $limit; $i++) {
4787 4787
                         $index = $processed + $i;
4788 4788
                         
4789 4789
                         if (isset($file[$index])) {
4790 4790
                             $row = $file[$index];
4791
-                            $row = array_map( 'trim', $row );
4791
+                            $row = array_map('trim', $row);
4792 4792
                             $data = array();
4793 4793
                             
4794 4794
                             foreach ($columns as $c => $column) {
@@ -4799,20 +4799,20 @@  discard block
 block discarded – undo
4799 4799
 
4800 4800
                             if (empty($data['neighbourhood_name']) || empty($data['latitude']) || empty($data['longitude'])) {
4801 4801
                                 $invalid++;
4802
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4802
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood);
4803 4803
                                 continue;
4804 4804
                             }
4805 4805
                             
4806 4806
                             $location_info = array();
4807
-                            if (!empty($data['location_id']) && (int)$data['location_id'] > 0) {
4808
-                                $location_info = geodir_get_location_by_id('', (int)$data['location_id']);
4807
+                            if (!empty($data['location_id']) && (int) $data['location_id'] > 0) {
4808
+                                $location_info = geodir_get_location_by_id('', (int) $data['location_id']);
4809 4809
                             } else if (!empty($data['city']) && !empty($data['region']) && !empty($data['country'])) {
4810 4810
                                 $location_info = geodir_get_location_by_slug('city', array('fields' => 'location_id', 'city' => $data['city'], 'country' => $data['country'], 'region' => $data['region']));
4811 4811
                             }
4812 4812
 
4813 4813
                             if (empty($location_info)) {
4814 4814
                                 $invalid++;
4815
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4815
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood);
4816 4816
                                 continue;
4817 4817
                             }
4818 4818
                             
@@ -4827,35 +4827,35 @@  discard block
 block discarded – undo
4827 4827
                             $hood_data['hood_longitude'] = $data['longitude'];
4828 4828
                             $hood_data['hood_location_id'] = $location_id;
4829 4829
                                     
4830
-                            if ( $import_choice == 'update' ) {
4831
-                                if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
4832
-                                    $hood_data['hood_id'] = (int)$data['neighbourhood_id'];
4830
+                            if ($import_choice == 'update') {
4831
+                                if ((int) $data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int) $data['neighbourhood_id']))) {
4832
+                                    $hood_data['hood_id'] = (int) $data['neighbourhood_id'];
4833 4833
                                     
4834 4834
                                     if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4835 4835
                                         $updated++;
4836 4836
                                     } else {
4837 4837
                                         $invalid++;
4838
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4838
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood);
4839 4839
                                     }
4840 4840
                                 } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
4841
-                                    $hood_data['hood_id'] = (int)$neighbourhood->hood_id;
4841
+                                    $hood_data['hood_id'] = (int) $neighbourhood->hood_id;
4842 4842
                                     
4843 4843
                                     if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4844 4844
                                         $updated++;
4845 4845
                                     } else {
4846 4846
                                         $invalid++;
4847
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4847
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood);
4848 4848
                                     }
4849 4849
                                 } else {
4850 4850
                                     if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4851 4851
                                         $created++;
4852 4852
                                     } else {
4853 4853
                                         $invalid++;
4854
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4854
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood);
4855 4855
                                     }
4856 4856
                                 }
4857
-                            } elseif ( $import_choice == 'skip' ) {
4858
-                                if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
4857
+                            } elseif ($import_choice == 'skip') {
4858
+                                if ((int) $data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int) $data['neighbourhood_id']))) {
4859 4859
                                     $skipped++;
4860 4860
                                 } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
4861 4861
                                     $skipped++;
@@ -4865,12 +4865,12 @@  discard block
 block discarded – undo
4865 4865
                                         $created++;
4866 4866
                                     } else {
4867 4867
                                         $invalid++;
4868
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4868
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood);
4869 4869
                                     }
4870 4870
                                 }
4871 4871
                             } else {
4872 4872
                                 $invalid++;
4873
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4873
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood);
4874 4874
                             }
4875 4875
                         }
4876 4876
                     }
@@ -4884,7 +4884,7 @@  discard block
 block discarded – undo
4884 4884
                 $json['invalid'] = $invalid;
4885 4885
                 $json['images'] = $images;
4886 4886
                 
4887
-                wp_send_json( $json );
4887
+                wp_send_json($json);
4888 4888
             }
4889 4889
         }
4890 4890
         break;
@@ -4928,29 +4928,29 @@  discard block
 block discarded – undo
4928 4928
  * }
4929 4929
  * @return int|bool Term id when success, false when fail.
4930 4930
  */
4931
-function geodir_imex_insert_term( $taxonomy, $term_data ) {
4932
-	if ( empty( $taxonomy ) || empty( $term_data ) ) {
4931
+function geodir_imex_insert_term($taxonomy, $term_data) {
4932
+	if (empty($taxonomy) || empty($term_data)) {
4933 4933
 		return false;
4934 4934
 	}
4935 4935
 	
4936
-	$term = isset( $term_data['name'] ) && !empty( $term_data['name'] ) ? $term_data['name'] : '';
4936
+	$term = isset($term_data['name']) && !empty($term_data['name']) ? $term_data['name'] : '';
4937 4937
 	$args = array();
4938
-	$args['description'] = isset( $term_data['description'] ) ? $term_data['description'] : '';
4939
-	$args['slug'] = isset( $term_data['slug'] ) ? $term_data['slug'] : '';
4940
-	$args['parent'] = isset( $term_data['parent'] ) ? (int)$term_data['parent'] : '';
4938
+	$args['description'] = isset($term_data['description']) ? $term_data['description'] : '';
4939
+	$args['slug'] = isset($term_data['slug']) ? $term_data['slug'] : '';
4940
+	$args['parent'] = isset($term_data['parent']) ? (int) $term_data['parent'] : '';
4941 4941
 	
4942
-	if ( ( !empty( $args['slug'] ) && term_exists( $args['slug'], $taxonomy ) ) || empty( $args['slug'] ) ) {
4943
-		$term_args = array_merge( $term_data, $args );
4944
-		$defaults = array( 'alias_of' => '', 'description' => '', 'parent' => 0, 'slug' => '');
4945
-		$term_args = wp_parse_args( $term_args, $defaults );
4946
-		$term_args = sanitize_term( $term_args, $taxonomy, 'db' );
4947
-		$args['slug'] = wp_unique_term_slug( $args['slug'], (object)$term_args );
4942
+	if ((!empty($args['slug']) && term_exists($args['slug'], $taxonomy)) || empty($args['slug'])) {
4943
+		$term_args = array_merge($term_data, $args);
4944
+		$defaults = array('alias_of' => '', 'description' => '', 'parent' => 0, 'slug' => '');
4945
+		$term_args = wp_parse_args($term_args, $defaults);
4946
+		$term_args = sanitize_term($term_args, $taxonomy, 'db');
4947
+		$args['slug'] = wp_unique_term_slug($args['slug'], (object) $term_args);
4948 4948
 	}
4949 4949
 	
4950
-    if( !empty( $term ) ) {
4951
-		$result = wp_insert_term( $term, $taxonomy, $args );
4952
-        if( !is_wp_error( $result ) ) {
4953
-            return isset( $result['term_id'] ) ? $result['term_id'] : 0;
4950
+    if (!empty($term)) {
4951
+		$result = wp_insert_term($term, $taxonomy, $args);
4952
+        if (!is_wp_error($result)) {
4953
+            return isset($result['term_id']) ? $result['term_id'] : 0;
4954 4954
         }
4955 4955
     }
4956 4956
 	
@@ -4980,36 +4980,36 @@  discard block
 block discarded – undo
4980 4980
  * }
4981 4981
  * @return int|bool Term id when success, false when fail.
4982 4982
  */
4983
-function geodir_imex_update_term( $taxonomy, $term_data ) {
4984
-	if ( empty( $taxonomy ) || empty( $term_data ) ) {
4983
+function geodir_imex_update_term($taxonomy, $term_data) {
4984
+	if (empty($taxonomy) || empty($term_data)) {
4985 4985
 		return false;
4986 4986
 	}
4987 4987
 	
4988
-	$term_id = isset( $term_data['term_id'] ) && !empty( $term_data['term_id'] ) ? $term_data['term_id'] : 0;
4988
+	$term_id = isset($term_data['term_id']) && !empty($term_data['term_id']) ? $term_data['term_id'] : 0;
4989 4989
 	
4990 4990
 	$args = array();
4991
-	$args['description'] = isset( $term_data['description'] ) ? $term_data['description'] : '';
4992
-	$args['slug'] = isset( $term_data['slug'] ) ? $term_data['slug'] : '';
4993
-	$args['parent'] = isset( $term_data['parent'] ) ? (int)$term_data['parent'] : '';
4991
+	$args['description'] = isset($term_data['description']) ? $term_data['description'] : '';
4992
+	$args['slug'] = isset($term_data['slug']) ? $term_data['slug'] : '';
4993
+	$args['parent'] = isset($term_data['parent']) ? (int) $term_data['parent'] : '';
4994 4994
 	
4995
-	if ( $term_id > 0 && $term_info = (array)get_term( $term_id, $taxonomy ) ) {
4995
+	if ($term_id > 0 && $term_info = (array) get_term($term_id, $taxonomy)) {
4996 4996
 		$term_data['term_id'] = $term_info['term_id'];
4997 4997
 		
4998
-		$result = wp_update_term( $term_data['term_id'], $taxonomy, $term_data );
4998
+		$result = wp_update_term($term_data['term_id'], $taxonomy, $term_data);
4999 4999
 		
5000
-		if( !is_wp_error( $result ) ) {
5001
-            return isset( $result['term_id'] ) ? $result['term_id'] : 0;
5000
+		if (!is_wp_error($result)) {
5001
+            return isset($result['term_id']) ? $result['term_id'] : 0;
5002 5002
         }
5003
-	} else if ( $term_data['slug'] != '' && $term_info = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
5003
+	} else if ($term_data['slug'] != '' && $term_info = (array) term_exists($term_data['slug'], $taxonomy)) {
5004 5004
 		$term_data['term_id'] = $term_info['term_id'];
5005 5005
 		
5006
-		$result = wp_update_term( $term_data['term_id'], $taxonomy, $term_data );
5006
+		$result = wp_update_term($term_data['term_id'], $taxonomy, $term_data);
5007 5007
 		
5008
-		if( !is_wp_error( $result ) ) {
5009
-            return isset( $result['term_id'] ) ? $result['term_id'] : 0;
5008
+		if (!is_wp_error($result)) {
5009
+            return isset($result['term_id']) ? $result['term_id'] : 0;
5010 5010
         }
5011 5011
 	} else {
5012
-		return geodir_imex_insert_term( $taxonomy, $term_data );
5012
+		return geodir_imex_insert_term($taxonomy, $term_data);
5013 5013
 	}
5014 5014
 	
5015 5015
 	return false;
@@ -5028,20 +5028,20 @@  discard block
 block discarded – undo
5028 5028
  * @param string $post_type Post type.
5029 5029
  * @return int Posts count.
5030 5030
  */
5031
-function geodir_get_posts_count( $post_type ) {
5031
+function geodir_get_posts_count($post_type) {
5032 5032
     global $wpdb, $plugin_prefix;
5033 5033
 
5034
-    if ( !post_type_exists( $post_type ) ) {
5034
+    if (!post_type_exists($post_type)) {
5035 5035
         return 0;
5036 5036
     }
5037 5037
         
5038
-    $table = $plugin_prefix . $post_type . '_detail';
5038
+    $table = $plugin_prefix.$post_type.'_detail';
5039 5039
 
5040 5040
     // Skip listing with statuses trash, auto-draft etc...
5041 5041
     $skip_statuses = geodir_imex_export_skip_statuses();
5042 5042
     $where_statuses = '';
5043
-    if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5044
-        $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5043
+    if (!empty($skip_statuses) && is_array($skip_statuses)) {
5044
+        $where_statuses = "AND `".$wpdb->posts."`.`post_status` NOT IN('".implode("','", $skip_statuses)."')";
5045 5045
     }
5046 5046
     
5047 5047
     /**
@@ -5052,11 +5052,11 @@  discard block
 block discarded – undo
5052 5052
      *
5053 5053
      * @param string $where SQL where clause part.
5054 5054
      */
5055
-    $where_statuses = apply_filters( 'geodir_get_posts_count', $where_statuses, $post_type );
5055
+    $where_statuses = apply_filters('geodir_get_posts_count', $where_statuses, $post_type);
5056 5056
 
5057
-    $query = $wpdb->prepare( "SELECT COUNT({$wpdb->posts}.ID) FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s " . $where_statuses, $post_type );
5057
+    $query = $wpdb->prepare("SELECT COUNT({$wpdb->posts}.ID) FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s ".$where_statuses, $post_type);
5058 5058
 
5059
-    $posts_count = (int)$wpdb->get_var( $query );
5059
+    $posts_count = (int) $wpdb->get_var($query);
5060 5060
     
5061 5061
     /**
5062 5062
      * Modify returned post counts for the current post type.
@@ -5067,7 +5067,7 @@  discard block
 block discarded – undo
5067 5067
      * @param int $posts_count Post counts.
5068 5068
      * @param string $post_type Post type.
5069 5069
      */
5070
-    $posts_count = apply_filters( 'geodir_imex_count_posts', $posts_count, $post_type );
5070
+    $posts_count = apply_filters('geodir_imex_count_posts', $posts_count, $post_type);
5071 5071
 
5072 5072
     return $posts_count;
5073 5073
 }
@@ -5089,19 +5089,19 @@  discard block
 block discarded – undo
5089 5089
  * @param int $page_no Page number. Default 0.
5090 5090
  * @return array Array of posts data.
5091 5091
  */
5092
-function geodir_imex_get_posts( $post_type, $per_page = 0, $page_no = 0 ) {	
5092
+function geodir_imex_get_posts($post_type, $per_page = 0, $page_no = 0) {	
5093 5093
 	global $wp_filesystem;
5094 5094
 
5095
-	$posts = geodir_get_export_posts( $post_type, $per_page, $page_no );
5095
+	$posts = geodir_get_export_posts($post_type, $per_page, $page_no);
5096 5096
 
5097 5097
 	$csv_rows = array();
5098 5098
 	
5099
-	if ( !empty( $posts ) ) {
5100
-		$is_payment_plugin = is_plugin_active( 'geodir_payment_manager/geodir_payment_manager.php' );
5099
+	if (!empty($posts)) {
5100
+		$is_payment_plugin = is_plugin_active('geodir_payment_manager/geodir_payment_manager.php');
5101 5101
 		$location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
5102
-		$location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true;
5102
+		$location_allowed = function_exists('geodir_cpt_no_location') && geodir_cpt_no_location($post_type) ? false : true;
5103 5103
 		$neighbourhood_active = $location_manager && $location_allowed && get_option('location_neighbourhoods') ? true : false;
5104
-		$is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
5104
+		$is_claim_active = is_plugin_active('geodir_claim_listing/geodir_claim_listing.php') && get_option('geodir_claim_enable') === 'yes' ? true : false;
5105 5105
 		$is_events_active = function_exists('geodir_event_plugin_activated') ? true : false;
5106 5106
 		$is_custom_posts_active = function_exists('geodir_custom_post_type_plugin_activated') ? true : false;
5107 5107
 		
@@ -5116,7 +5116,7 @@  discard block
 block discarded – undo
5116 5116
 		$csv_row[] = 'default_category';
5117 5117
 		$csv_row[] = 'post_tags';
5118 5118
 		$csv_row[] = 'post_type';
5119
-		if ( $post_type == 'gd_event' ) {
5119
+		if ($post_type == 'gd_event') {
5120 5120
 			$csv_row[] = 'event_date';
5121 5121
 			$csv_row[] = 'event_enddate';
5122 5122
 			$csv_row[] = 'starttime';
@@ -5168,25 +5168,25 @@  discard block
 block discarded – undo
5168 5168
 		$csv_row[] = 'geodir_video';
5169 5169
 		$csv_row[] = 'geodir_special_offers';
5170 5170
 		if ($is_events_active || $is_custom_posts_active) {
5171
-			$csv_row[] = !empty($post_ypes[$post_type]['linkable_to']) ? 'linked_' . $post_ypes[$post_type]['linkable_to'] . '_ID' : 'linked_cpt_ID';
5171
+			$csv_row[] = !empty($post_ypes[$post_type]['linkable_to']) ? 'linked_'.$post_ypes[$post_type]['linkable_to'].'_ID' : 'linked_cpt_ID';
5172 5172
 		}
5173 5173
 		// WPML
5174
-		$is_wpml = geodir_wpml_is_post_type_translated( $post_type );
5174
+		$is_wpml = geodir_wpml_is_post_type_translated($post_type);
5175 5175
 		if ($is_wpml) {
5176 5176
 			$csv_row[] = 'language';
5177 5177
 			$csv_row[] = 'original_post_id';
5178 5178
 		}
5179 5179
 		// WPML
5180 5180
 
5181
-		$custom_fields = geodir_imex_get_custom_fields( $post_type );
5182
-		if ( !empty( $custom_fields ) ) {
5183
-			foreach ( $custom_fields as $custom_field ) {
5181
+		$custom_fields = geodir_imex_get_custom_fields($post_type);
5182
+		if (!empty($custom_fields)) {
5183
+			foreach ($custom_fields as $custom_field) {
5184 5184
 				$csv_row[] = $custom_field->htmlvar_name;
5185 5185
 			}
5186 5186
 		}
5187 5187
 
5188 5188
 		// Export franchise fields
5189
-		$is_franchise_active = is_plugin_active( 'geodir_franchise/geodir_franchise.php' ) && geodir_franchise_enabled( $post_type ) ? true : false;
5189
+		$is_franchise_active = is_plugin_active('geodir_franchise/geodir_franchise.php') && geodir_franchise_enabled($post_type) ? true : false;
5190 5190
 		if ($is_franchise_active) {
5191 5191
 			$csv_row[] = 'gd_is_franchise';
5192 5192
 			$csv_row[] = 'gd_franchise_lock';
@@ -5207,28 +5207,28 @@  discard block
 block discarded – undo
5207 5207
 		$csv_rows[] = $csv_row;
5208 5208
 
5209 5209
 		$images_count = 5;
5210
-        $xx=0;
5211
-		foreach ( $posts as $post ) {$xx++;
5210
+        $xx = 0;
5211
+		foreach ($posts as $post) {$xx++;
5212 5212
 			$post_id = $post['ID'];
5213 5213
 			
5214
-			$gd_post_info = geodir_get_post_info( $post_id );
5215
-			$post_info = (array)$gd_post_info;
5214
+			$gd_post_info = geodir_get_post_info($post_id);
5215
+			$post_info = (array) $gd_post_info;
5216 5216
 			
5217
-			$taxonomy_category = $post_type . 'category';
5218
-			$taxonomy_tags = $post_type . '_tags';
5217
+			$taxonomy_category = $post_type.'category';
5218
+			$taxonomy_tags = $post_type.'_tags';
5219 5219
 			
5220 5220
 			$post_category = '';
5221 5221
 			$default_category_id = $gd_post_info->default_category;
5222 5222
 			$default_category = '';
5223 5223
 			$post_tags = '';
5224
-			$terms = wp_get_post_terms( $post_id, array( $taxonomy_category, $taxonomy_tags ) );
5224
+			$terms = wp_get_post_terms($post_id, array($taxonomy_category, $taxonomy_tags));
5225 5225
 			
5226
-			if ( !empty( $terms ) && !is_wp_error( $terms ) ) {
5226
+			if (!empty($terms) && !is_wp_error($terms)) {
5227 5227
 				$post_category = array();
5228 5228
 				$post_tags = array();
5229 5229
 			
5230
-				foreach ( $terms as $term ) {
5231
-					if ( $term->taxonomy == $taxonomy_category ) {
5230
+				foreach ($terms as $term) {
5231
+					if ($term->taxonomy == $taxonomy_category) {
5232 5232
 						$post_category[] = $term->name;
5233 5233
 						
5234 5234
 						if ($default_category_id == $term->term_id) {
@@ -5236,7 +5236,7 @@  discard block
 block discarded – undo
5236 5236
 						}
5237 5237
 					}
5238 5238
 					
5239
-					if ( $term->taxonomy == $taxonomy_tags ) {
5239
+					if ($term->taxonomy == $taxonomy_tags) {
5240 5240
 						$post_tags[] = $term->name;
5241 5241
 					}
5242 5242
 				}
@@ -5244,47 +5244,47 @@  discard block
 block discarded – undo
5244 5244
 				if (empty($default_category) && !empty($post_category)) {
5245 5245
 					$default_category = $post_category[0]; // Set first one as default category.
5246 5246
 				}
5247
-				$post_category = !empty( $post_category ) ? implode( ',', $post_category ) : '';
5248
-				$post_tags = !empty( $post_tags ) ? implode( ',', $post_tags ) : '';
5247
+				$post_category = !empty($post_category) ? implode(',', $post_category) : '';
5248
+				$post_tags = !empty($post_tags) ? implode(',', $post_tags) : '';
5249 5249
 			}
5250 5250
 
5251 5251
 			// Franchise data
5252
-			if ($is_franchise_active && isset($post_info['franchise']) && (int)$post_info['franchise'] > 0 && geodir_franchise_check((int)$post_info['franchise'])) {
5252
+			if ($is_franchise_active && isset($post_info['franchise']) && (int) $post_info['franchise'] > 0 && geodir_franchise_check((int) $post_info['franchise'])) {
5253 5253
 				$franchise_id = $post_info['franchise'];
5254 5254
 				$gd_franchise_info = geodir_get_post_info($franchise_id);
5255 5255
 
5256 5256
 				if (geodir_franchise_pkg_is_active($gd_franchise_info)) {
5257
-					$franchise_info = (array)$gd_franchise_info;
5257
+					$franchise_info = (array) $gd_franchise_info;
5258 5258
 					$locked_fields = geodir_franchise_get_locked_fields($franchise_id, true);
5259 5259
 					
5260 5260
 					if (!empty($locked_fields)) {
5261
-						foreach( $locked_fields as $locked_field) {
5261
+						foreach ($locked_fields as $locked_field) {
5262 5262
 							if (isset($post_info[$locked_field]) && isset($franchise_info[$locked_field])) {
5263 5263
 								$post_info[$locked_field] = $franchise_info[$locked_field];
5264 5264
 							}
5265 5265
 							
5266 5266
 							if (in_array($taxonomy_category, $locked_fields) || in_array('post_tags', $locked_fields)) {
5267
-								$franchise_terms = wp_get_post_terms( $franchise_id, array( $taxonomy_category, $taxonomy_tags ) );
5267
+								$franchise_terms = wp_get_post_terms($franchise_id, array($taxonomy_category, $taxonomy_tags));
5268 5268
 			
5269
-								if ( !empty( $franchise_terms ) && !is_wp_error( $franchise_terms ) ) {
5269
+								if (!empty($franchise_terms) && !is_wp_error($franchise_terms)) {
5270 5270
 									$franchise_post_category = array();
5271 5271
 									$franchise_post_tags = array();
5272 5272
 								
5273
-									foreach ( $franchise_terms as $franchise_term ) {
5274
-										if ( $franchise_term->taxonomy == $taxonomy_category ) {
5273
+									foreach ($franchise_terms as $franchise_term) {
5274
+										if ($franchise_term->taxonomy == $taxonomy_category) {
5275 5275
 											$franchise_post_category[] = $franchise_term->name;
5276 5276
 										}
5277 5277
 										
5278
-										if ( $franchise_term->taxonomy == $taxonomy_tags ) {
5278
+										if ($franchise_term->taxonomy == $taxonomy_tags) {
5279 5279
 											$franchise_post_tags[] = $franchise_term->name;
5280 5280
 										}
5281 5281
 									}
5282 5282
 									
5283 5283
 									if (in_array($taxonomy_category, $locked_fields)) {
5284
-										$post_category = !empty( $franchise_post_category ) ? implode( ',', $franchise_post_category ) : '';
5284
+										$post_category = !empty($franchise_post_category) ? implode(',', $franchise_post_category) : '';
5285 5285
 									}
5286 5286
 									if (in_array('post_tags', $locked_fields)) {
5287
-										$post_tags = !empty( $franchise_post_tags ) ? implode( ',', $franchise_post_tags ) : '';
5287
+										$post_tags = !empty($franchise_post_tags) ? implode(',', $franchise_post_tags) : '';
5288 5288
 									}
5289 5289
 								}
5290 5290
 							}
@@ -5293,18 +5293,18 @@  discard block
 block discarded – undo
5293 5293
 				}
5294 5294
 			}
5295 5295
 						
5296
-			$post_images = geodir_get_images( $post_id );
5296
+			$post_images = geodir_get_images($post_id);
5297 5297
 			$current_images = array();
5298
-			if ( !empty( $post_images ) ) {
5299
-				foreach ( $post_images as $post_image ) {
5300
-					$post_image = (array)$post_image;
5301
-					$image = !empty( $post_image ) && isset( $post_image['path'] ) && $wp_filesystem->is_file( $post_image['path'] ) && $wp_filesystem->exists( $post_image['path'] ) ? $post_image['src'] : '';
5302
-					if ( $image ) {
5298
+			if (!empty($post_images)) {
5299
+				foreach ($post_images as $post_image) {
5300
+					$post_image = (array) $post_image;
5301
+					$image = !empty($post_image) && isset($post_image['path']) && $wp_filesystem->is_file($post_image['path']) && $wp_filesystem->exists($post_image['path']) ? $post_image['src'] : '';
5302
+					if ($image) {
5303 5303
 						$current_images[] = $image;
5304 5304
 					}
5305 5305
 				}
5306 5306
 				
5307
-				$images_count = max( $images_count, count( $current_images ) );
5307
+				$images_count = max($images_count, count($current_images));
5308 5308
 			}
5309 5309
 
5310 5310
 			$csv_row = array();
@@ -5316,7 +5316,7 @@  discard block
 block discarded – undo
5316 5316
 			$csv_row[] = $default_category; // default_category
5317 5317
 			$csv_row[] = $post_tags; // post_tags
5318 5318
 			$csv_row[] = $post_type; // post_type
5319
-			if ( $post_type == 'gd_event' ) {
5319
+			if ($post_type == 'gd_event') {
5320 5320
 				$event_data = geodir_imex_get_event_data($post, $gd_post_info);
5321 5321
 				$csv_row[] = $event_data['event_date']; // event_date
5322 5322
 				$csv_row[] = $event_data['event_enddate']; // enddate
@@ -5337,12 +5337,12 @@  discard block
 block discarded – undo
5337 5337
 				$csv_row[] = $event_data['recurring_end_date']; // repeat_end
5338 5338
 			}
5339 5339
 			$csv_row[] = $post_info['post_status']; // post_status
5340
-			$csv_row[] = (int)$post_info['is_featured'] == 1 ? 1 : ''; // is_featured
5340
+			$csv_row[] = (int) $post_info['is_featured'] == 1 ? 1 : ''; // is_featured
5341 5341
             if ($is_claim_active) {
5342
-                $csv_row[] = !empty($post_info['claimed']) && (int)$post_info['claimed'] == 1 ? 1 : ''; // claimed
5342
+                $csv_row[] = !empty($post_info['claimed']) && (int) $post_info['claimed'] == 1 ? 1 : ''; // claimed
5343 5343
             }
5344 5344
 			if ($is_payment_plugin) {
5345
-				$csv_row[] = (int)$post_info['package_id']; // package_id
5345
+				$csv_row[] = (int) $post_info['package_id']; // package_id
5346 5346
 				$csv_row[] = $post_info['alive_days'] !== '' ? absint($post_info['alive_days']) : ''; // alive_days
5347 5347
 				$csv_row[] = $post_info['expire_date'] != '' && geodir_strtolower($post_info['expire_date']) != 'never' ? date_i18n('Y-m-d', strtotime($post_info['expire_date'])) : 'Never'; // expire_date
5348 5348
 			}
@@ -5378,18 +5378,18 @@  discard block
 block discarded – undo
5378 5378
 			$csv_row[] = stripslashes($post_info['geodir_video']); // geodir_video
5379 5379
 			$csv_row[] = stripslashes($post_info['geodir_special_offers']); // geodir_special_offers
5380 5380
 			if ($is_events_active || $is_custom_posts_active) {
5381
-				$csv_row[] = !empty($post_info['geodir_link_business']) ? (int)$post_info['geodir_link_business'] : ''; // linked business
5381
+				$csv_row[] = !empty($post_info['geodir_link_business']) ? (int) $post_info['geodir_link_business'] : ''; // linked business
5382 5382
 			}
5383 5383
 			// WPML
5384 5384
 			if ($is_wpml) {
5385
-				$csv_row[] = geodir_get_language_for_element( $post_id, 'post_' . $post_type );
5386
-				$csv_row[] = geodir_imex_original_post_id( $post_id, 'post_' . $post_type );
5385
+				$csv_row[] = geodir_get_language_for_element($post_id, 'post_'.$post_type);
5386
+				$csv_row[] = geodir_imex_original_post_id($post_id, 'post_'.$post_type);
5387 5387
 			}
5388 5388
 			// WPML
5389 5389
 			
5390
-			if ( !empty( $custom_fields ) ) {
5391
-				foreach ( $custom_fields as $custom_field ) {
5392
-					$csv_row[] = isset( $post_info[$custom_field->htmlvar_name] ) ? $post_info[$custom_field->htmlvar_name] : '';
5390
+			if (!empty($custom_fields)) {
5391
+				foreach ($custom_fields as $custom_field) {
5392
+					$csv_row[] = isset($post_info[$custom_field->htmlvar_name]) ? $post_info[$custom_field->htmlvar_name] : '';
5393 5393
 				}
5394 5394
 			}
5395 5395
 			
@@ -5400,15 +5400,15 @@  discard block
 block discarded – undo
5400 5400
 				$franchise = '';
5401 5401
 					
5402 5402
 				if (geodir_franchise_pkg_is_active($gd_post_info)) {
5403
-					$gd_is_franchise = (int)get_post_meta( $post_id, 'gd_is_franchise', true );
5404
-					$locaked_fields = $gd_is_franchise ? get_post_meta( $post_id, 'gd_franchise_lock', true ) : '';
5403
+					$gd_is_franchise = (int) get_post_meta($post_id, 'gd_is_franchise', true);
5404
+					$locaked_fields = $gd_is_franchise ? get_post_meta($post_id, 'gd_franchise_lock', true) : '';
5405 5405
 					$locaked_fields = (is_array($locaked_fields) && !empty($locaked_fields) ? implode(",", $locaked_fields) : '');
5406
-					$franchise = !$gd_is_franchise && isset($post_info['franchise']) && (int)$post_info['franchise'] > 0 ? (int)$post_info['franchise'] : 0; // franchise id
5406
+					$franchise = !$gd_is_franchise && isset($post_info['franchise']) && (int) $post_info['franchise'] > 0 ? (int) $post_info['franchise'] : 0; // franchise id
5407 5407
 				}
5408 5408
 				
5409
-				$csv_row[] = (int)$gd_is_franchise; // gd_is_franchise
5409
+				$csv_row[] = (int) $gd_is_franchise; // gd_is_franchise
5410 5410
 				$csv_row[] = $locaked_fields; // gd_franchise_lock fields
5411
-				$csv_row[] = (int)$franchise; // franchise id
5411
+				$csv_row[] = (int) $franchise; // franchise id
5412 5412
 			}
5413 5413
             
5414 5414
             /**
@@ -5422,15 +5422,15 @@  discard block
 block discarded – undo
5422 5422
              */
5423 5423
             $csv_row = apply_filters('geodir_export_listing_csv_column_values', $csv_row, $post_info);
5424 5424
 			
5425
-			for ( $c = 0; $c < $images_count; $c++ ) {
5426
-				$csv_row[] = isset( $current_images[$c] ) ? $current_images[$c] : ''; // IMAGE
5425
+			for ($c = 0; $c < $images_count; $c++) {
5426
+				$csv_row[] = isset($current_images[$c]) ? $current_images[$c] : ''; // IMAGE
5427 5427
 			}
5428 5428
 			
5429 5429
 			$csv_rows[] = $csv_row;
5430 5430
 
5431 5431
 		}
5432 5432
 
5433
-		for ( $c = 0; $c < $images_count; $c++ ) {
5433
+		for ($c = 0; $c < $images_count; $c++) {
5434 5434
 			$csv_rows[0][] = 'IMAGE';
5435 5435
 		}
5436 5436
 	}
@@ -5452,30 +5452,30 @@  discard block
 block discarded – undo
5452 5452
  * @param int $page_no Page number. Default 0.
5453 5453
  * @return array Array of posts data.
5454 5454
  */
5455
-function geodir_get_export_posts( $post_type, $per_page = 0, $page_no = 0 ) {
5455
+function geodir_get_export_posts($post_type, $per_page = 0, $page_no = 0) {
5456 5456
     global $wpdb, $plugin_prefix;
5457 5457
 
5458
-    if ( ! post_type_exists( $post_type ) )
5458
+    if (!post_type_exists($post_type))
5459 5459
         return new stdClass;
5460 5460
         
5461
-    $table = $plugin_prefix . $post_type . '_detail';
5461
+    $table = $plugin_prefix.$post_type.'_detail';
5462 5462
 
5463 5463
     $limit = '';
5464
-    if ( $per_page > 0 && $page_no > 0 ) {
5465
-        $offset = ( $page_no - 1 ) * $per_page;
5464
+    if ($per_page > 0 && $page_no > 0) {
5465
+        $offset = ($page_no - 1) * $per_page;
5466 5466
         
5467
-        if ( $offset > 0 ) {
5468
-            $limit = " LIMIT " . $offset . "," . $per_page;
5467
+        if ($offset > 0) {
5468
+            $limit = " LIMIT ".$offset.",".$per_page;
5469 5469
         } else {
5470
-            $limit = " LIMIT " . $per_page;
5470
+            $limit = " LIMIT ".$per_page;
5471 5471
         }
5472 5472
     }
5473 5473
 
5474 5474
     // Skip listing with statuses trash, auto-draft etc...
5475 5475
     $skip_statuses = geodir_imex_export_skip_statuses();
5476 5476
     $where_statuses = '';
5477
-    if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5478
-        $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5477
+    if (!empty($skip_statuses) && is_array($skip_statuses)) {
5478
+        $where_statuses = "AND `".$wpdb->posts."`.`post_status` NOT IN('".implode("','", $skip_statuses)."')";
5479 5479
     }
5480 5480
     
5481 5481
     /**
@@ -5486,9 +5486,9 @@  discard block
 block discarded – undo
5486 5486
      *
5487 5487
      * @param string $where SQL where clause part.
5488 5488
      */
5489
-    $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type );
5489
+    $where_statuses = apply_filters('geodir_get_export_posts', $where_statuses, $post_type);
5490 5490
 
5491
-    $query = $wpdb->prepare( "SELECT {$wpdb->posts}.ID FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s " . $where_statuses . " ORDER BY {$wpdb->posts}.ID ASC" . $limit, $post_type );
5491
+    $query = $wpdb->prepare("SELECT {$wpdb->posts}.ID FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s ".$where_statuses." ORDER BY {$wpdb->posts}.ID ASC".$limit, $post_type);
5492 5492
     /**
5493 5493
      * Modify returned posts SQL query for the current post type.
5494 5494
      *
@@ -5498,8 +5498,8 @@  discard block
 block discarded – undo
5498 5498
      * @param int $query The SQL query.
5499 5499
      * @param string $post_type Post type.
5500 5500
      */
5501
-    $query = apply_filters( 'geodir_imex_export_posts_query', $query, $post_type );
5502
-    $results = (array)$wpdb->get_results( $query, ARRAY_A );
5501
+    $query = apply_filters('geodir_imex_export_posts_query', $query, $post_type);
5502
+    $results = (array) $wpdb->get_results($query, ARRAY_A);
5503 5503
 
5504 5504
     /**
5505 5505
      * Modify returned post results for the current post type.
@@ -5510,7 +5510,7 @@  discard block
 block discarded – undo
5510 5510
      * @param object $results An object containing all post ids.
5511 5511
      * @param string $post_type Post type.
5512 5512
      */
5513
-    return apply_filters( 'geodir_export_posts', $results, $post_type );
5513
+    return apply_filters('geodir_export_posts', $results, $post_type);
5514 5514
 }
5515 5515
 
5516 5516
 /**
@@ -5528,24 +5528,24 @@  discard block
 block discarded – undo
5528 5528
  * @param string $post_type Post type.
5529 5529
  * @return string The SQL query.
5530 5530
  */
5531
-function geodir_imex_get_events_query( $query, $post_type ) {
5532
-    if ( $post_type == 'gd_event' ) {
5531
+function geodir_imex_get_events_query($query, $post_type) {
5532
+    if ($post_type == 'gd_event') {
5533 5533
         global $wpdb, $plugin_prefix;
5534 5534
         
5535
-        $table = $plugin_prefix . $post_type . '_detail';
5535
+        $table = $plugin_prefix.$post_type.'_detail';
5536 5536
         $schedule_table = EVENT_SCHEDULE;
5537 5537
         
5538 5538
         // Skip listing with statuses trash, auto-draft etc...
5539 5539
         $skip_statuses = geodir_imex_export_skip_statuses();
5540 5540
         $where_statuses = '';
5541
-        if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5542
-            $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5541
+        if (!empty($skip_statuses) && is_array($skip_statuses)) {
5542
+            $where_statuses = "AND `".$wpdb->posts."`.`post_status` NOT IN('".implode("','", $skip_statuses)."')";
5543 5543
         }
5544 5544
         
5545 5545
         /** This action is documented in geodirectory-functions/geodirectory-admin/admin_functions.php */
5546
-        $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type );
5546
+        $where_statuses = apply_filters('geodir_get_export_posts', $where_statuses, $post_type);
5547 5547
 
5548
-        $query = $wpdb->prepare( "SELECT {$wpdb->posts}.ID, {$schedule_table}.event_date, {$schedule_table}.event_enddate AS enddate, {$schedule_table}.event_starttime AS starttime, {$schedule_table}.event_endtime AS endtime FROM {$wpdb->posts} INNER JOIN {$table} ON ({$table}.post_id = {$wpdb->posts}.ID) INNER JOIN {$schedule_table} ON ({$schedule_table}.event_id = {$wpdb->posts}.ID) WHERE {$wpdb->posts}.post_type = %s " . $where_statuses . " GROUP BY {$table}.post_id ORDER BY {$wpdb->posts}.ID ASC, {$schedule_table}.schedule_id ASC", $post_type );
5548
+        $query = $wpdb->prepare("SELECT {$wpdb->posts}.ID, {$schedule_table}.event_date, {$schedule_table}.event_enddate AS enddate, {$schedule_table}.event_starttime AS starttime, {$schedule_table}.event_endtime AS endtime FROM {$wpdb->posts} INNER JOIN {$table} ON ({$table}.post_id = {$wpdb->posts}.ID) INNER JOIN {$schedule_table} ON ({$schedule_table}.event_id = {$wpdb->posts}.ID) WHERE {$wpdb->posts}.post_type = %s ".$where_statuses." GROUP BY {$table}.post_id ORDER BY {$wpdb->posts}.ID ASC, {$schedule_table}.schedule_id ASC", $post_type);
5549 5549
     }
5550 5550
 
5551 5551
     return $query;
@@ -5569,35 +5569,35 @@  discard block
 block discarded – undo
5569 5569
  * @param  string $post_type Post type.
5570 5570
  * @return int Total terms count.
5571 5571
  */
5572
-function geodir_get_terms_count( $post_type ) {
5573
-    $args = array( 'hide_empty' => 0 );
5572
+function geodir_get_terms_count($post_type) {
5573
+    $args = array('hide_empty' => 0);
5574 5574
 
5575
-    remove_all_filters( 'get_terms' );
5575
+    remove_all_filters('get_terms');
5576 5576
 
5577
-    $taxonomy = $post_type . 'category';
5577
+    $taxonomy = $post_type.'category';
5578 5578
 
5579 5579
     // WPML
5580 5580
     $is_wpml = geodir_is_wpml();
5581 5581
     $active_lang = 'all';
5582
-    if ( $is_wpml ) {
5582
+    if ($is_wpml) {
5583 5583
         global $sitepress;
5584 5584
         $active_lang = $sitepress->get_current_language();
5585 5585
         
5586
-        if ( $active_lang != 'all' ) {
5587
-            $sitepress->switch_lang( 'all', true );
5586
+        if ($active_lang != 'all') {
5587
+            $sitepress->switch_lang('all', true);
5588 5588
         }
5589 5589
     }
5590 5590
     // WPML
5591 5591
             
5592
-    $count_terms = wp_count_terms( $taxonomy, $args );
5592
+    $count_terms = wp_count_terms($taxonomy, $args);
5593 5593
 
5594 5594
     // WPML
5595
-    if ( $is_wpml && $active_lang !== 'all' ) {
5595
+    if ($is_wpml && $active_lang !== 'all') {
5596 5596
         global $sitepress;
5597
-        $sitepress->switch_lang( $active_lang, true );
5597
+        $sitepress->switch_lang($active_lang, true);
5598 5598
     }
5599 5599
     // WPML
5600
-    $count_terms = !is_wp_error( $count_terms ) ? $count_terms : 0;
5600
+    $count_terms = !is_wp_error($count_terms) ? $count_terms : 0;
5601 5601
      
5602 5602
     return $count_terms;
5603 5603
 }
@@ -5614,23 +5614,23 @@  discard block
 block discarded – undo
5614 5614
  * @param int $page_no Page number. Default 0.
5615 5615
  * @return array Array of terms data.
5616 5616
  */
5617
-function geodir_imex_get_terms( $post_type, $per_page = 0, $page_no = 0 ) {
5618
-	$args = array( 'hide_empty' => 0, 'orderby' => 'id' );
5617
+function geodir_imex_get_terms($post_type, $per_page = 0, $page_no = 0) {
5618
+	$args = array('hide_empty' => 0, 'orderby' => 'id');
5619 5619
 	
5620
-	remove_all_filters( 'get_terms' );
5620
+	remove_all_filters('get_terms');
5621 5621
 	
5622
-	$taxonomy = $post_type . 'category';
5622
+	$taxonomy = $post_type.'category';
5623 5623
 	
5624
-	if ( $per_page > 0 && $page_no > 0 ) {
5625
-		$args['offset'] = ( $page_no - 1 ) * $per_page;
5624
+	if ($per_page > 0 && $page_no > 0) {
5625
+		$args['offset'] = ($page_no - 1) * $per_page;
5626 5626
 		$args['number'] = $per_page;
5627 5627
 	}
5628 5628
 	
5629
-	$terms = get_terms( $taxonomy, $args );
5629
+	$terms = get_terms($taxonomy, $args);
5630 5630
 
5631 5631
 	$csv_rows = array();
5632 5632
 	
5633
-	if ( !empty( $terms ) ) {
5633
+	if (!empty($terms)) {
5634 5634
 		$csv_row = array();
5635 5635
 		$csv_row[] = 'cat_id';
5636 5636
 		$csv_row[] = 'cat_name';
@@ -5639,7 +5639,7 @@  discard block
 block discarded – undo
5639 5639
 		$csv_row[] = 'cat_parent';
5640 5640
 		$csv_row[] = 'cat_schema';
5641 5641
         // WPML
5642
-		$is_wpml = geodir_wpml_is_taxonomy_translated( $taxonomy );
5642
+		$is_wpml = geodir_wpml_is_taxonomy_translated($taxonomy);
5643 5643
 		if ($is_wpml) {
5644 5644
 			$csv_row[] = 'cat_language';
5645 5645
             $csv_row[] = 'cat_id_original';
@@ -5652,16 +5652,16 @@  discard block
 block discarded – undo
5652 5652
 		
5653 5653
 		$csv_rows[] = $csv_row;
5654 5654
 		
5655
-		foreach ( $terms as $term ) {
5656
-			$cat_icon = geodir_get_tax_meta( $term->term_id, 'ct_cat_icon', false, $post_type );
5657
-			$cat_icon = !empty( $cat_icon ) && isset( $cat_icon['src'] ) ? $cat_icon['src'] : '';
5655
+		foreach ($terms as $term) {
5656
+			$cat_icon = geodir_get_tax_meta($term->term_id, 'ct_cat_icon', false, $post_type);
5657
+			$cat_icon = !empty($cat_icon) && isset($cat_icon['src']) ? $cat_icon['src'] : '';
5658 5658
 			
5659
-			$cat_image = geodir_get_default_catimage( $term->term_id, $post_type );
5660
-			$cat_image = !empty( $cat_image ) && isset( $cat_image['src'] ) ? $cat_image['src'] : ''; 
5659
+			$cat_image = geodir_get_default_catimage($term->term_id, $post_type);
5660
+			$cat_image = !empty($cat_image) && isset($cat_image['src']) ? $cat_image['src'] : ''; 
5661 5661
 			
5662 5662
 			$cat_parent = '';
5663
-			if (isset($term->parent) && (int)$term->parent > 0 && term_exists((int)$term->parent, $taxonomy)) {
5664
-				$parent_term = (array)get_term_by( 'id', (int)$term->parent, $taxonomy );
5663
+			if (isset($term->parent) && (int) $term->parent > 0 && term_exists((int) $term->parent, $taxonomy)) {
5664
+				$parent_term = (array) get_term_by('id', (int) $term->parent, $taxonomy);
5665 5665
 				$cat_parent = !empty($parent_term) && isset($parent_term['name']) ? $parent_term['name'] : '';
5666 5666
 			}
5667 5667
 			
@@ -5671,15 +5671,15 @@  discard block
 block discarded – undo
5671 5671
 			$csv_row[] = $term->slug;
5672 5672
 			$csv_row[] = $post_type;
5673 5673
 			$csv_row[] = $cat_parent;
5674
-			$csv_row[] = geodir_get_tax_meta( $term->term_id, 'ct_cat_schema', false, $post_type );
5674
+			$csv_row[] = geodir_get_tax_meta($term->term_id, 'ct_cat_schema', false, $post_type);
5675 5675
             // WPML
5676 5676
 			if ($is_wpml) {
5677
-				$csv_row[] = geodir_get_language_for_element( $term->term_id, 'tax_' . $taxonomy );
5678
-                $csv_row[] = geodir_imex_original_post_id( $term->term_id, 'tax_' . $taxonomy );
5677
+				$csv_row[] = geodir_get_language_for_element($term->term_id, 'tax_'.$taxonomy);
5678
+                $csv_row[] = geodir_imex_original_post_id($term->term_id, 'tax_'.$taxonomy);
5679 5679
 			}
5680 5680
 			// WPML
5681 5681
 			$csv_row[] = $term->description;
5682
-			$csv_row[] = geodir_get_tax_meta( $term->term_id, 'ct_cat_top_desc', false, $post_type );
5682
+			$csv_row[] = geodir_get_tax_meta($term->term_id, 'ct_cat_top_desc', false, $post_type);
5683 5683
 			$csv_row[] = $cat_image;
5684 5684
 			$csv_row[] = $cat_icon;
5685 5685
 			
@@ -5698,10 +5698,10 @@  discard block
 block discarded – undo
5698 5698
  * @param  bool $relative True for relative path & False for absolute path.
5699 5699
  * @return string Path to the cache directory.
5700 5700
  */
5701
-function geodir_path_import_export( $relative = true ) {
5701
+function geodir_path_import_export($relative = true) {
5702 5702
 	$upload_dir = wp_upload_dir();
5703 5703
 	
5704
-	return $relative ? $upload_dir['baseurl'] . '/cache' : $upload_dir['basedir'] . '/cache';
5704
+	return $relative ? $upload_dir['baseurl'].'/cache' : $upload_dir['basedir'].'/cache';
5705 5705
 }
5706 5706
 
5707 5707
 /**
@@ -5717,8 +5717,8 @@  discard block
 block discarded – undo
5717 5717
  * @param  bool $clear If true then it overwrite data otherwise add rows at the end of file.
5718 5718
  * @return bool true if success otherwise false.
5719 5719
  */
5720
-function geodir_save_csv_data( $file_path, $csv_data = array(), $clear = true ) {
5721
-	if ( empty( $csv_data ) ) {
5720
+function geodir_save_csv_data($file_path, $csv_data = array(), $clear = true) {
5721
+	if (empty($csv_data)) {
5722 5722
 		return false;
5723 5723
 	}
5724 5724
 	
@@ -5726,17 +5726,17 @@  discard block
 block discarded – undo
5726 5726
 	
5727 5727
 	$mode = $clear ? 'w+' : 'a+';
5728 5728
 	
5729
-	if ( function_exists( 'fputcsv' ) ) {
5730
-		$file = fopen( $file_path, $mode );
5731
-		foreach( $csv_data as $csv_row ) {
5729
+	if (function_exists('fputcsv')) {
5730
+		$file = fopen($file_path, $mode);
5731
+		foreach ($csv_data as $csv_row) {
5732 5732
 			//$csv_row = array_map( 'utf8_decode', $csv_row );
5733
-			$write_successful = fputcsv( $file, $csv_row, ",", $enclosure = '"' );
5733
+			$write_successful = fputcsv($file, $csv_row, ",", $enclosure = '"');
5734 5734
 		}
5735
-		fclose( $file );
5735
+		fclose($file);
5736 5736
 	} else {
5737
-		foreach( $csv_data as $csv_row ) {
5737
+		foreach ($csv_data as $csv_row) {
5738 5738
 			//$csv_row = array_map( 'utf8_decode', $csv_row );
5739
-			$wp_filesystem->put_contents( $file_path, $csv_row );
5739
+			$wp_filesystem->put_contents($file_path, $csv_row);
5740 5740
 		}
5741 5741
 	}
5742 5742
 		
@@ -5754,14 +5754,14 @@  discard block
 block discarded – undo
5754 5754
  * @param  string $file Full path to file.
5755 5755
  * @return int No of file rows.
5756 5756
  */
5757
-function geodir_import_export_line_count( $file ) {
5757
+function geodir_import_export_line_count($file) {
5758 5758
 	global $wp_filesystem;
5759 5759
 	
5760
-	if ( $wp_filesystem->is_file( $file ) && $wp_filesystem->exists( $file ) ) {
5761
-		$contents = $wp_filesystem->get_contents_array( $file );
5760
+	if ($wp_filesystem->is_file($file) && $wp_filesystem->exists($file)) {
5761
+		$contents = $wp_filesystem->get_contents_array($file);
5762 5762
 		
5763
-		if ( !empty( $contents ) && is_array( $contents ) ) {
5764
-			return count( $contents ) - 1;
5763
+		if (!empty($contents) && is_array($contents)) {
5764
+			return count($contents) - 1;
5765 5765
 		}
5766 5766
 	}
5767 5767
 	
@@ -5778,11 +5778,11 @@  discard block
 block discarded – undo
5778 5778
  * @param string $post_type The post type.
5779 5779
  * @return object Queried object.
5780 5780
  */
5781
-function geodir_imex_get_custom_fields( $post_type ) {
5781
+function geodir_imex_get_custom_fields($post_type) {
5782 5782
 	global $wpdb;
5783 5783
 	 
5784
-	$sql = $wpdb->prepare("SELECT htmlvar_name FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1' AND is_admin!='1' AND field_type != 'fieldset' AND htmlvar_name != '' ORDER BY id ASC", array( $post_type ) );
5785
-	$rows = $wpdb->get_results( $sql );
5784
+	$sql = $wpdb->prepare("SELECT htmlvar_name FROM ".GEODIR_CUSTOM_FIELDS_TABLE." WHERE post_type=%s AND is_active='1' AND is_admin!='1' AND field_type != 'fieldset' AND htmlvar_name != '' ORDER BY id ASC", array($post_type));
5785
+	$rows = $wpdb->get_results($sql);
5786 5786
 	 
5787 5787
 	return $rows;
5788 5788
 }
@@ -5798,10 +5798,10 @@  discard block
 block discarded – undo
5798 5798
  * @return array Event data array.
5799 5799
  */
5800 5800
 function geodir_imex_get_event_data($post, $gd_post_info) {
5801
-	$event_date = isset( $post['event_date'] ) && $post['event_date'] != '' && $post['event_date'] != '0000-00-00 00:00:00' ? date_i18n( 'd/m/Y', strtotime( $post['event_date'] ) ) : '';
5801
+	$event_date = isset($post['event_date']) && $post['event_date'] != '' && $post['event_date'] != '0000-00-00 00:00:00' ? date_i18n('d/m/Y', strtotime($post['event_date'])) : '';
5802 5802
 	$event_enddate = $event_date;
5803
-	$starttime = isset( $post['starttime'] ) && $post['starttime'] != '' && $post['starttime'] != '00:00:00' ? date_i18n( 'H:i', strtotime( $post['starttime'] ) ) : '';
5804
-	$endtime = isset( $post['endtime'] ) && $post['endtime'] != '' && $post['endtime'] != '00:00:00' ? date_i18n( 'H:i', strtotime( $post['endtime'] ) ) : '';
5803
+	$starttime = isset($post['starttime']) && $post['starttime'] != '' && $post['starttime'] != '00:00:00' ? date_i18n('H:i', strtotime($post['starttime'])) : '';
5804
+	$endtime = isset($post['endtime']) && $post['endtime'] != '' && $post['endtime'] != '00:00:00' ? date_i18n('H:i', strtotime($post['endtime'])) : '';
5805 5805
 	
5806 5806
 	$is_recurring_event = '';
5807 5807
 	$event_duration_days = '';
@@ -5818,15 +5818,15 @@  discard block
 block discarded – undo
5818 5818
 		
5819 5819
 	$recurring_data = isset($gd_post_info->recurring_dates) ? maybe_unserialize($gd_post_info->recurring_dates) : array();
5820 5820
 	if (!empty($recurring_data)) {
5821
-		$event_date = isset( $recurring_data['event_start'] ) && $recurring_data['event_start'] != '' && $recurring_data['event_start'] != '0000-00-00 00:00:00' ? date_i18n( 'd/m/Y', strtotime( $recurring_data['event_start'] ) ) : $event_date;
5822
-		$event_enddate = isset( $recurring_data['event_end'] ) && $recurring_data['event_end'] != '' && $recurring_data['event_end'] != '0000-00-00 00:00:00' ? date_i18n( 'd/m/Y', strtotime( $recurring_data['event_end'] ) ) : $event_date;
5823
-		$starttime = isset( $recurring_data['starttime'] ) && $recurring_data['starttime'] != '' && $recurring_data['starttime'] != '00:00:00' ? date_i18n( 'H:i', strtotime( $recurring_data['starttime'] ) ) : $starttime;
5824
-		$endtime = isset( $recurring_data['endtime'] ) && $recurring_data['endtime'] != '' && $recurring_data['endtime'] != '00:00:00' ? date_i18n( 'H:i', strtotime( $recurring_data['endtime'] ) ) : $endtime;
5821
+		$event_date = isset($recurring_data['event_start']) && $recurring_data['event_start'] != '' && $recurring_data['event_start'] != '0000-00-00 00:00:00' ? date_i18n('d/m/Y', strtotime($recurring_data['event_start'])) : $event_date;
5822
+		$event_enddate = isset($recurring_data['event_end']) && $recurring_data['event_end'] != '' && $recurring_data['event_end'] != '0000-00-00 00:00:00' ? date_i18n('d/m/Y', strtotime($recurring_data['event_end'])) : $event_date;
5823
+		$starttime = isset($recurring_data['starttime']) && $recurring_data['starttime'] != '' && $recurring_data['starttime'] != '00:00:00' ? date_i18n('H:i', strtotime($recurring_data['starttime'])) : $starttime;
5824
+		$endtime = isset($recurring_data['endtime']) && $recurring_data['endtime'] != '' && $recurring_data['endtime'] != '00:00:00' ? date_i18n('H:i', strtotime($recurring_data['endtime'])) : $endtime;
5825 5825
 		$is_whole_day_event = !empty($recurring_data['all_day']) ? 1 : '';
5826 5826
 		$different_times = !empty($recurring_data['different_times']) ? true : false;
5827 5827
 	
5828
-		$recurring_pkg = geodir_event_recurring_pkg( $gd_post_info );
5829
-		$is_recurring = isset( $gd_post_info->is_recurring ) && (int)$gd_post_info->is_recurring == 0 ? false : true;
5828
+		$recurring_pkg = geodir_event_recurring_pkg($gd_post_info);
5829
+		$is_recurring = isset($gd_post_info->is_recurring) && (int) $gd_post_info->is_recurring == 0 ? false : true;
5830 5830
 			
5831 5831
 		if ($recurring_pkg && $is_recurring) {
5832 5832
 			$recurring_dates = $event_date;
@@ -5836,13 +5836,13 @@  discard block
 block discarded – undo
5836 5836
 			$recurring_type = !empty($recurring_data['repeat_type']) && in_array($recurring_data['repeat_type'], array('day', 'week', 'month', 'year', 'custom')) ? $recurring_data['repeat_type'] : 'custom';
5837 5837
 			
5838 5838
 			if (!empty($recurring_data['event_recurring_dates'])) {
5839
-				$event_recurring_dates = explode( ',', $recurring_data['event_recurring_dates'] );
5839
+				$event_recurring_dates = explode(',', $recurring_data['event_recurring_dates']);
5840 5840
 				
5841 5841
 				if (!empty($event_recurring_dates)) {
5842 5842
 					$recurring_dates = array();
5843 5843
 					
5844 5844
 					foreach ($event_recurring_dates as $date) {
5845
-						$recurring_dates[] = date_i18n( 'd/m/Y', strtotime( $date ) );
5845
+						$recurring_dates[] = date_i18n('d/m/Y', strtotime($date));
5846 5846
 					}
5847 5847
 					
5848 5848
 					$recurring_dates = implode(",", $recurring_dates);
@@ -5858,7 +5858,7 @@  discard block
 block discarded – undo
5858 5858
 						$times = array();
5859 5859
 						
5860 5860
 						foreach ($recurring_data['starttimes'] as $time) {
5861
-							$times[] = $time != '00:00:00' ? date_i18n( 'H:i', strtotime( $time ) ) : '00:00';
5861
+							$times[] = $time != '00:00:00' ? date_i18n('H:i', strtotime($time)) : '00:00';
5862 5862
 						}
5863 5863
 						
5864 5864
 						$event_starttimes = implode(",", $times);
@@ -5868,7 +5868,7 @@  discard block
 block discarded – undo
5868 5868
 						$times = array();
5869 5869
 						
5870 5870
 						foreach ($recurring_data['endtimes'] as $time) {
5871
-							$times[] = $time != '00:00:00' ? date_i18n( 'H:i', strtotime( $time ) ) : '00:00';
5871
+							$times[] = $time != '00:00:00' ? date_i18n('H:i', strtotime($time)) : '00:00';
5872 5872
 						}
5873 5873
 						
5874 5874
 						$event_endtimes = implode(",", $times);
@@ -5880,8 +5880,8 @@  discard block
 block discarded – undo
5880 5880
 					}
5881 5881
 				}
5882 5882
 			} else {
5883
-				$event_duration_days = isset($recurring_data['duration_x']) ? (int)$recurring_data['duration_x'] : 1;
5884
-				$recurring_interval = !empty($recurring_data['repeat_x']) && (int)$recurring_data['repeat_x'] > 0 ? $recurring_data['repeat_x'] : 1;
5883
+				$event_duration_days = isset($recurring_data['duration_x']) ? (int) $recurring_data['duration_x'] : 1;
5884
+				$recurring_interval = !empty($recurring_data['repeat_x']) && (int) $recurring_data['repeat_x'] > 0 ? $recurring_data['repeat_x'] : 1;
5885 5885
 				
5886 5886
 				if (($recurring_type == 'week' || $recurring_type == 'month') && !empty($recurring_data['repeat_days'])) {
5887 5887
 					$week_days = array('Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat');
@@ -5897,11 +5897,11 @@  discard block
 block discarded – undo
5897 5897
 				}
5898 5898
 				
5899 5899
 				$recurring_week_nos = $recurring_type == 'month' && !empty($recurring_data['repeat_weeks']) ? implode(",", $recurring_data['repeat_weeks']) : $recurring_week_nos;
5900
-				if (!empty($recurring_data['repeat_end_type']) && (int)$recurring_data['repeat_end_type'] == 1) {
5901
-					$recurring_end_date = isset($recurring_data['repeat_end']) && $recurring_data['repeat_end'] != '' && $recurring_data['repeat_end'] != '0000-00-00 00:00:00' ? date_i18n( 'd/m/Y', strtotime( $recurring_data['repeat_end'] ) ) : '';
5900
+				if (!empty($recurring_data['repeat_end_type']) && (int) $recurring_data['repeat_end_type'] == 1) {
5901
+					$recurring_end_date = isset($recurring_data['repeat_end']) && $recurring_data['repeat_end'] != '' && $recurring_data['repeat_end'] != '0000-00-00 00:00:00' ? date_i18n('d/m/Y', strtotime($recurring_data['repeat_end'])) : '';
5902 5902
 					$max_recurring_count = empty($recurring_end_date) ? 1 : '';
5903 5903
 				} else {
5904
-					$max_recurring_count = (!empty($recurring_data['max_repeat']) && (int)$recurring_data['max_repeat'] > 0 ? (int)$recurring_data['max_repeat'] : 1);
5904
+					$max_recurring_count = (!empty($recurring_data['max_repeat']) && (int) $recurring_data['max_repeat'] > 0 ? (int) $recurring_data['max_repeat'] : 1);
5905 5905
 				}
5906 5906
 			}
5907 5907
 		}
@@ -5965,9 +5965,9 @@  discard block
 block discarded – undo
5965 5965
  * @return array Event data array.
5966 5966
  */
5967 5967
 function geodir_imex_process_event_data($gd_post) {
5968
-	$recurring_pkg = geodir_event_recurring_pkg( (object)$gd_post );
5968
+	$recurring_pkg = geodir_event_recurring_pkg((object) $gd_post);
5969 5969
 
5970
-	$is_recurring = isset( $gd_post['is_recurring_event'] ) && (int)$gd_post['is_recurring_event'] == 0 ? false : true;
5970
+	$is_recurring = isset($gd_post['is_recurring_event']) && (int) $gd_post['is_recurring_event'] == 0 ? false : true;
5971 5971
 	$event_date = isset($gd_post['event_date']) && $gd_post['event_date'] != '' ? geodir_date($gd_post['event_date'], 'Y-m-d') : '';
5972 5972
 	$event_enddate = isset($gd_post['event_enddate']) && $gd_post['event_enddate'] != '' ? geodir_date($gd_post['event_enddate'], 'Y-m-d') : $event_date;
5973 5973
 	$all_day = isset($gd_post['is_whole_day_event']) && !empty($gd_post['is_whole_day_event']) ? true : false;
@@ -6014,17 +6014,17 @@  discard block
 block discarded – undo
6014 6014
 				$event_recurring_dates = implode(",", $event_recurring_dates);
6015 6015
 			}
6016 6016
 		} else {
6017
-			$duration_x = !empty( $gd_post['event_duration_days'] ) ? (int)$gd_post['event_duration_days'] : 1;
6018
-			$repeat_x = !empty( $gd_post['recurring_interval'] ) ? (int)$gd_post['recurring_interval'] : 1;
6019
-			$max_repeat = !empty( $gd_post['max_recurring_count'] ) ? (int)$gd_post['max_recurring_count'] : 1;
6020
-			$repeat_end = !empty( $gd_post['recurring_end_date'] ) ? geodir_date($gd_post['recurring_end_date'], 'Y-m-d') : '';
6017
+			$duration_x = !empty($gd_post['event_duration_days']) ? (int) $gd_post['event_duration_days'] : 1;
6018
+			$repeat_x = !empty($gd_post['recurring_interval']) ? (int) $gd_post['recurring_interval'] : 1;
6019
+			$max_repeat = !empty($gd_post['max_recurring_count']) ? (int) $gd_post['max_recurring_count'] : 1;
6020
+			$repeat_end = !empty($gd_post['recurring_end_date']) ? geodir_date($gd_post['recurring_end_date'], 'Y-m-d') : '';
6021 6021
 			
6022 6022
 			$repeat_end_type = $repeat_end != '' ? 1 : 0;
6023 6023
 			$max_repeat = $repeat_end != '' ? '' : $max_repeat;
6024 6024
 			
6025 6025
 			$week_days = array_flip(array('sun', 'mon', 'tue', 'wed', 'thu', 'fri', 'sat'));
6026 6026
 			
6027
-			$a_repeat_days = isset($gd_post['recurring_week_days']) && trim($gd_post['recurring_week_days'])!='' ? explode(',', trim($gd_post['recurring_week_days'])) : array();
6027
+			$a_repeat_days = isset($gd_post['recurring_week_days']) && trim($gd_post['recurring_week_days']) != '' ? explode(',', trim($gd_post['recurring_week_days'])) : array();
6028 6028
 			$repeat_days = array();
6029 6029
 			if (!empty($a_repeat_days)) {
6030 6030
 				foreach ($a_repeat_days as $repeat_day) {
@@ -6042,7 +6042,7 @@  discard block
 block discarded – undo
6042 6042
 			$repeat_weeks = array();
6043 6043
 			if (!empty($a_repeat_weeks)) {
6044 6044
 				foreach ($a_repeat_weeks as $repeat_week) {
6045
-					$repeat_weeks[] = (int)$repeat_week;
6045
+					$repeat_weeks[] = (int) $repeat_week;
6046 6046
 				}
6047 6047
 				
6048 6048
 				$repeat_weeks = array_unique($repeat_weeks);
@@ -6106,7 +6106,7 @@  discard block
 block discarded – undo
6106 6106
 
6107 6107
     $page_found = $wpdb->get_var(
6108 6108
         $wpdb->prepare(
6109
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s LIMIT 1;",
6109
+            "SELECT ID FROM ".$wpdb->posts." WHERE post_name = %s LIMIT 1;",
6110 6110
             array($slug)
6111 6111
         )
6112 6112
     );
@@ -6161,7 +6161,7 @@  discard block
 block discarded – undo
6161 6161
  */
6162 6162
 function geodir_admin_upgrade_notice() {
6163 6163
     $class = "error";
6164
-    $message = __("Please update core GeoDirectory or some addons may not function correctly.","geodirectory");
6164
+    $message = __("Please update core GeoDirectory or some addons may not function correctly.", "geodirectory");
6165 6165
     echo"<div class=\"$class\"> <p>$message</p></div>";
6166 6166
 }
6167 6167
 
@@ -6173,7 +6173,7 @@  discard block
 block discarded – undo
6173 6173
  * @param (object) $r
6174 6174
  * @return (string) $output
6175 6175
  */
6176
-function geodire_admin_upgrade_notice( $plugin_data, $r )
6176
+function geodire_admin_upgrade_notice($plugin_data, $r)
6177 6177
 {
6178 6178
     // readme contents
6179 6179
     $args = array(
@@ -6181,7 +6181,7 @@  discard block
 block discarded – undo
6181 6181
         'redirection' => 5
6182 6182
     );
6183 6183
     $url = "http://plugins.svn.wordpress.org/geodirectory/trunk/readme.txt";
6184
-    $data       = wp_remote_get( $url, $args );
6184
+    $data = wp_remote_get($url, $args);
6185 6185
 
6186 6186
     if (!is_wp_error($data) && $data['response']['code'] == 200) {
6187 6187
 
@@ -6196,20 +6196,20 @@  discard block
 block discarded – undo
6196 6196
 function geodir_in_plugin_update_message($content) {
6197 6197
     // Output Upgrade Notice
6198 6198
     $matches        = null;
6199
-    $regexp         = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*' . preg_quote( GEODIRECTORY_VERSION ) . '\s*=|$)~Uis';
6199
+    $regexp         = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*'.preg_quote(GEODIRECTORY_VERSION).'\s*=|$)~Uis';
6200 6200
     $upgrade_notice = '';
6201
-    if ( preg_match( $regexp, $content, $matches ) ) {
6202
-        if(empty($matches)){return;}
6201
+    if (preg_match($regexp, $content, $matches)) {
6202
+        if (empty($matches)) {return; }
6203 6203
 
6204
-        $version = trim( $matches[1] );
6205
-        if($version && $version>GEODIRECTORY_VERSION){
6204
+        $version = trim($matches[1]);
6205
+        if ($version && $version > GEODIRECTORY_VERSION) {
6206 6206
 
6207 6207
 
6208
-        $notices = (array) preg_split('~[\r\n]+~', trim( $matches[2] ) );
6209
-        if ( version_compare( GEODIRECTORY_VERSION, $version, '<' ) ) {
6208
+        $notices = (array) preg_split('~[\r\n]+~', trim($matches[2]));
6209
+        if (version_compare(GEODIRECTORY_VERSION, $version, '<')) {
6210 6210
             $upgrade_notice .= '<div class="geodir_plugin_upgrade_notice">';
6211
-            foreach ( $notices as $index => $line ) {
6212
-                $upgrade_notice .= wp_kses_post( preg_replace( '~\[([^\]]*)\]\(([^\)]*)\)~', '<a href="${2}">${1}</a>', $line ) );
6211
+            foreach ($notices as $index => $line) {
6212
+                $upgrade_notice .= wp_kses_post(preg_replace('~\[([^\]]*)\]\(([^\)]*)\)~', '<a href="${2}">${1}</a>', $line));
6213 6213
             }
6214 6214
             $upgrade_notice .= '</div> ';
6215 6215
         }
@@ -6233,7 +6233,7 @@  discard block
 block discarded – undo
6233 6233
 		$default_language = $sitepress->get_default_language();
6234 6234
 		if ($current_language != 'all' && $current_language != $default_language) {
6235 6235
 	?>
6236
-	<div class="updated error notice-success" id="message"><p style="color:red"><strong><?php _e('Saving GeoDirectory pages settings on a different language breaks pages settings. Try to save after switching to default language.', 'geodirectory');?></strong></p></div>
6236
+	<div class="updated error notice-success" id="message"><p style="color:red"><strong><?php _e('Saving GeoDirectory pages settings on a different language breaks pages settings. Try to save after switching to default language.', 'geodirectory'); ?></strong></p></div>
6237 6237
 	<?php
6238 6238
 		}
6239 6239
 	}
@@ -6248,7 +6248,7 @@  discard block
 block discarded – undo
6248 6248
  * @param array Listing statuses to be skipped.
6249 6249
  */
6250 6250
 function geodir_imex_export_skip_statuses() {
6251
-    $statuses = array( 'trash', 'auto-draft' );
6251
+    $statuses = array('trash', 'auto-draft');
6252 6252
     
6253 6253
     /**
6254 6254
      * Filter the statuses to skip during GD export listings.
@@ -6258,7 +6258,7 @@  discard block
 block discarded – undo
6258 6258
      *
6259 6259
      * @param array $statuses Listing statuses to be skipped.
6260 6260
      */
6261
-    $statuses = apply_filters( 'geodir_imex_export_skip_statuses', $statuses );
6261
+    $statuses = apply_filters('geodir_imex_export_skip_statuses', $statuses);
6262 6262
      
6263 6263
     return $statuses;
6264 6264
 }
@@ -6329,16 +6329,16 @@  discard block
 block discarded – undo
6329 6329
 function geodir_imex_get_filter_where($where = '', $post_type = '') {
6330 6330
     global $wpdb;
6331 6331
     
6332
-    $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL;
6332
+    $filters = !empty($_REQUEST['gd_imex']) && is_array($_REQUEST['gd_imex']) ? $_REQUEST['gd_imex'] : NULL;
6333 6333
     
6334
-    if ( !empty( $filters ) ) {
6335
-        foreach ( $filters as $field => $value ) {
6334
+    if (!empty($filters)) {
6335
+        foreach ($filters as $field => $value) {
6336 6336
             switch ($field) {
6337 6337
                 case 'start_date':
6338
-                    $where .= " AND `" . $wpdb->posts . "`.`post_date` >= '" . sanitize_text_field( $value ) . " 00:00:00'";
6338
+                    $where .= " AND `".$wpdb->posts."`.`post_date` >= '".sanitize_text_field($value)." 00:00:00'";
6339 6339
                 break;
6340 6340
                 case 'end_date':
6341
-                    $where .= " AND `" . $wpdb->posts . "`.`post_date` <= '" . sanitize_text_field( $value ) . " 23:59:59'";
6341
+                    $where .= " AND `".$wpdb->posts."`.`post_date` <= '".sanitize_text_field($value)." 23:59:59'";
6342 6342
                 break;
6343 6343
             }
6344 6344
         }
@@ -6350,25 +6350,25 @@  discard block
 block discarded – undo
6350 6350
 add_filter('geodir_get_export_posts', 'geodir_imex_get_filter_where', 10, 2);
6351 6351
 
6352 6352
 
6353
-function geodir_fix_for_primer_theme(){
6354
-    if(!defined( 'PRIMER_VERSION' )){return;}
6353
+function geodir_fix_for_primer_theme() {
6354
+    if (!defined('PRIMER_VERSION')) {return; }
6355 6355
     global $pagenow;
6356 6356
 
6357
-    if ( ( 'post.php' === $pagenow || 'post-new.php' === $pagenow ) && (isset($_REQUEST['post_type']) || isset($_REQUEST['post']) )  ){
6357
+    if (('post.php' === $pagenow || 'post-new.php' === $pagenow) && (isset($_REQUEST['post_type']) || isset($_REQUEST['post']))) {
6358 6358
 
6359
-        $post_type = isset($_REQUEST['post_type']) ? esc_attr($_REQUEST['post_type']) : get_post_type( $_GET['post'] );
6359
+        $post_type = isset($_REQUEST['post_type']) ? esc_attr($_REQUEST['post_type']) : get_post_type($_GET['post']);
6360 6360
 
6361 6361
         $post_types = geodir_get_posttypes();
6362
-        if ($post_type && in_array($post_type, $post_types) ) {
6362
+        if ($post_type && in_array($post_type, $post_types)) {
6363 6363
             global $primer_customizer_layouts;
6364
-            remove_action( 'add_meta_boxes', array( $primer_customizer_layouts, 'add_meta_box' ), 10);
6364
+            remove_action('add_meta_boxes', array($primer_customizer_layouts, 'add_meta_box'), 10);
6365 6365
         }
6366 6366
     }
6367 6367
 
6368 6368
 }
6369 6369
 
6370
-if(is_admin()){
6371
-    add_action('add_meta_boxes','geodir_fix_for_primer_theme',0);  
6370
+if (is_admin()) {
6371
+    add_action('add_meta_boxes', 'geodir_fix_for_primer_theme', 0);  
6372 6372
 }
6373 6373
 
6374 6374
 
@@ -6501,32 +6501,32 @@  discard block
 block discarded – undo
6501 6501
 
6502 6502
 function geodir_ga_activation_url() {
6503 6503
 
6504
-    return add_query_arg( array(
6504
+    return add_query_arg(array(
6505 6505
         'next'          => admin_url("admin.php?page=geodirectory&active_tab=google_analytic_settings"),
6506 6506
         'scope'         => GEODIR_GA_SCOPE,
6507 6507
         'response_type' => 'code',
6508 6508
         'redirect_uri'  => GEODIR_GA_REDIRECT,
6509 6509
         'client_id'     => GEODIR_GA_CLIENTID,
6510
-    ), 'https://accounts.google.com/o/oauth2/auth' );
6510
+    ), 'https://accounts.google.com/o/oauth2/auth');
6511 6511
 
6512 6512
     return $url;
6513 6513
 }
6514 6514
 
6515
-function geodir_gd_accounts(){
6515
+function geodir_gd_accounts() {
6516 6516
     $accounts = array();
6517
-    $useAuth = ( get_option( 'geodir_ga_auth_code' ) == '' ? false : true );
6518
-    if($useAuth){
6517
+    $useAuth = (get_option('geodir_ga_auth_code') == '' ? false : true);
6518
+    if ($useAuth) {
6519 6519
         try {
6520 6520
             $accounts = geodir_ga_get_analytics_accounts();
6521 6521
         } catch (Exception $e) {
6522
-            geodir_error_log( wp_sprintf( __( 'GD Google Analytics API Error(%s) : %s', 'geodirectory' ), $e->getCode(), $e->getMessage() ) );
6522
+            geodir_error_log(wp_sprintf(__('GD Google Analytics API Error(%s) : %s', 'geodirectory'), $e->getCode(), $e->getMessage()));
6523 6523
         }
6524 6524
         
6525
-        if(is_array($accounts)){
6526
-            $accounts = array_merge(array(__('Select Account','geodirectory')),$accounts);
6527
-        }elseif(get_option('geodir_ga_account_id')){
6525
+        if (is_array($accounts)) {
6526
+            $accounts = array_merge(array(__('Select Account', 'geodirectory')), $accounts);
6527
+        }elseif (get_option('geodir_ga_account_id')) {
6528 6528
             $accounts = array();
6529
-            $accounts[get_option('geodir_ga_account_id')] = __('Account re-authorization may be required','geodirectory').' ('.get_option('geodir_ga_account_id').')';
6529
+            $accounts[get_option('geodir_ga_account_id')] = __('Account re-authorization may be required', 'geodirectory').' ('.get_option('geodir_ga_account_id').')';
6530 6530
         }
6531 6531
     }
6532 6532
     return $accounts;
@@ -6537,21 +6537,21 @@  discard block
 block discarded – undo
6537 6537
     global $gd_ga_errors;
6538 6538
     $accounts = array();
6539 6539
 
6540
-    if(get_option('geodir_ga_auth_token')===false){update_option('geodir_ga_auth_token','');}
6540
+    if (get_option('geodir_ga_auth_token') === false) {update_option('geodir_ga_auth_token', ''); }
6541 6541
 
6542 6542
 
6543
-    if(get_option('geodir_gd_uids') && !isset($_POST['geodir_ga_auth_code'])){
6543
+    if (get_option('geodir_gd_uids') && !isset($_POST['geodir_ga_auth_code'])) {
6544 6544
       return get_option('geodir_gd_uids');
6545 6545
     }
6546 6546
 
6547 6547
     # Create a new Gdata call
6548
-    if ( trim(get_option('geodir_ga_auth_code')) != '' )
6548
+    if (trim(get_option('geodir_ga_auth_code')) != '')
6549 6549
         $stats = new GDGoogleAnalyticsStats();
6550 6550
     else
6551 6551
         return false;
6552 6552
 
6553 6553
     # Check if Google sucessfully logged in
6554
-    if ( ! $stats->checkLogin() )
6554
+    if (!$stats->checkLogin())
6555 6555
         return false;
6556 6556
 
6557 6557
     # Get a list of accounts
@@ -6563,28 +6563,28 @@  discard block
 block discarded – undo
6563 6563
     }
6564 6564
 
6565 6565
 
6566
-    natcasesort ($accounts);
6566
+    natcasesort($accounts);
6567 6567
 
6568 6568
     # Return the account array if there are accounts
6569
-    if ( count($accounts) > 0 ){
6570
-        update_option('geodir_gd_uids',$accounts);
6569
+    if (count($accounts) > 0) {
6570
+        update_option('geodir_gd_uids', $accounts);
6571 6571
         return $accounts;
6572 6572
     }
6573 6573
     else
6574 6574
         return false;
6575 6575
 }
6576 6576
 
6577
-add_action( 'wp_ajax_geodir_ga_deauthorize', 'geodir_ga_deauthorize' );
6578
-function geodir_ga_deauthorize(){
6577
+add_action('wp_ajax_geodir_ga_deauthorize', 'geodir_ga_deauthorize');
6578
+function geodir_ga_deauthorize() {
6579 6579
 
6580
-    if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'gd_ga_deauthorize' ) ) {
6580
+    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'gd_ga_deauthorize')) {
6581 6581
 
6582
-        die( 'Security check' );
6582
+        die('Security check');
6583 6583
 
6584 6584
     } else {
6585
-        update_option('geodir_ga_auth_token','');
6586
-        update_option('geodir_ga_auth_code','');
6587
-        update_option('geodir_gd_uids','');
6585
+        update_option('geodir_ga_auth_token', '');
6586
+        update_option('geodir_ga_auth_code', '');
6587
+        update_option('geodir_gd_uids', '');
6588 6588
 
6589 6589
 
6590 6590
         echo admin_url('?page=geodirectory&active_tab=google_analytic_settings');
@@ -6617,22 +6617,22 @@  discard block
 block discarded – undo
6617 6617
  * @since 1.6.21
6618 6618
  * @return array
6619 6619
  */
6620
-function geodir_listing_image_size_arr(){
6620
+function geodir_listing_image_size_arr() {
6621 6621
 
6622 6622
     global $_wp_additional_image_sizes;
6623 6623
 
6624 6624
     $sizes = array();
6625 6625
 
6626
-    foreach ( get_intermediate_image_sizes() as $_size ) {
6627
-        if ( in_array( $_size, array('thumbnail', 'medium', 'medium_large', 'large') ) ) {
6628
-            $sizes[ $_size ]['width']  = get_option( "{$_size}_size_w" );
6629
-            $sizes[ $_size ]['height'] = get_option( "{$_size}_size_h" );
6630
-            $sizes[ $_size ]['crop']   = (bool) get_option( "{$_size}_crop" );
6631
-        } elseif ( isset( $_wp_additional_image_sizes[ $_size ] ) ) {
6632
-            $sizes[ $_size ] = array(
6633
-                'width'  => $_wp_additional_image_sizes[ $_size ]['width'],
6634
-                'height' => $_wp_additional_image_sizes[ $_size ]['height'],
6635
-                'crop'   => $_wp_additional_image_sizes[ $_size ]['crop'],
6626
+    foreach (get_intermediate_image_sizes() as $_size) {
6627
+        if (in_array($_size, array('thumbnail', 'medium', 'medium_large', 'large'))) {
6628
+            $sizes[$_size]['width']  = get_option("{$_size}_size_w");
6629
+            $sizes[$_size]['height'] = get_option("{$_size}_size_h");
6630
+            $sizes[$_size]['crop']   = (bool) get_option("{$_size}_crop");
6631
+        } elseif (isset($_wp_additional_image_sizes[$_size])) {
6632
+            $sizes[$_size] = array(
6633
+                'width'  => $_wp_additional_image_sizes[$_size]['width'],
6634
+                'height' => $_wp_additional_image_sizes[$_size]['height'],
6635
+                'crop'   => $_wp_additional_image_sizes[$_size]['crop'],
6636 6636
             );
6637 6637
         }
6638 6638
     }
@@ -6643,9 +6643,9 @@  discard block
 block discarded – undo
6643 6643
 
6644 6644
     $options['default'] = __('GD Default', 'geodirectory');
6645 6645
 
6646
-    if(!empty($sizes)){
6647
-        foreach($sizes as $key=>$val){
6648
-            $options[$key] = $key. ' ( '.$val['width'].' x '.$val['height']. ' )';
6646
+    if (!empty($sizes)) {
6647
+        foreach ($sizes as $key=>$val) {
6648
+            $options[$key] = $key.' ( '.$val['width'].' x '.$val['height'].' )';
6649 6649
         }
6650 6650
     }
6651 6651
 
Please login to merge, or discard this patch.
Indentation   +2946 added lines, -2946 removed lines patch added patch discarded remove patch
@@ -13,134 +13,134 @@  discard block
 block discarded – undo
13 13
  * @package GeoDirectory
14 14
  */
15 15
 function geodir_deactivation() {
16
-    // Update installed variable
17
-    update_option("geodir_installed", 0);
16
+	// Update installed variable
17
+	update_option("geodir_installed", 0);
18 18
 
19
-    // Remove rewrite rules and then recreate rewrite rules.
20
-    flush_rewrite_rules();
19
+	// Remove rewrite rules and then recreate rewrite rules.
20
+	flush_rewrite_rules();
21 21
 }
22 22
 
23 23
 if (!function_exists('geodir_admin_styles')) {
24
-    /**
25
-     * Enqueue Admin Styles.
26
-     *
27
-     * @since 1.0.0
28
-     * @package GeoDirectory
29
-     */
30
-    function geodir_admin_styles() {
31
-        wp_register_style('geodirectory-admin-css', geodir_plugin_url() . '/geodirectory-assets/css/admin.css', array(), GEODIRECTORY_VERSION);
32
-        wp_enqueue_style('geodirectory-admin-css');
24
+	/**
25
+	 * Enqueue Admin Styles.
26
+	 *
27
+	 * @since 1.0.0
28
+	 * @package GeoDirectory
29
+	 */
30
+	function geodir_admin_styles() {
31
+		wp_register_style('geodirectory-admin-css', geodir_plugin_url() . '/geodirectory-assets/css/admin.css', array(), GEODIRECTORY_VERSION);
32
+		wp_enqueue_style('geodirectory-admin-css');
33 33
 
34
-        wp_register_style('geodirectory-frontend-style', geodir_plugin_url() . '/geodirectory-assets/css/style.css', array(), GEODIRECTORY_VERSION);
35
-        wp_enqueue_style('geodirectory-frontend-style');
34
+		wp_register_style('geodirectory-frontend-style', geodir_plugin_url() . '/geodirectory-assets/css/style.css', array(), GEODIRECTORY_VERSION);
35
+		wp_enqueue_style('geodirectory-frontend-style');
36 36
 
37
-        wp_register_style('geodir-chosen-style', geodir_plugin_url() . '/geodirectory-assets/css/chosen.css', array(), GEODIRECTORY_VERSION);
38
-        wp_enqueue_style('geodir-chosen-style');
37
+		wp_register_style('geodir-chosen-style', geodir_plugin_url() . '/geodirectory-assets/css/chosen.css', array(), GEODIRECTORY_VERSION);
38
+		wp_enqueue_style('geodir-chosen-style');
39 39
 
40
-        wp_register_style('geodirectory-jquery-ui-timepicker-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery.ui.timepicker.css', array(), GEODIRECTORY_VERSION);
41
-        wp_enqueue_style('geodirectory-jquery-ui-timepicker-css');
40
+		wp_register_style('geodirectory-jquery-ui-timepicker-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery.ui.timepicker.css', array(), GEODIRECTORY_VERSION);
41
+		wp_enqueue_style('geodirectory-jquery-ui-timepicker-css');
42 42
 
43
-        wp_register_style('geodirectory-jquery-ui-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery-ui.css', array(), GEODIRECTORY_VERSION);
44
-        wp_enqueue_style('geodirectory-jquery-ui-css');
43
+		wp_register_style('geodirectory-jquery-ui-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery-ui.css', array(), GEODIRECTORY_VERSION);
44
+		wp_enqueue_style('geodirectory-jquery-ui-css');
45 45
 
46
-        wp_register_style('geodirectory-custom-fields-css', geodir_plugin_url() . '/geodirectory-assets/css/custom_field.css', array(), GEODIRECTORY_VERSION);
47
-        wp_enqueue_style('geodirectory-custom-fields-css');
46
+		wp_register_style('geodirectory-custom-fields-css', geodir_plugin_url() . '/geodirectory-assets/css/custom_field.css', array(), GEODIRECTORY_VERSION);
47
+		wp_enqueue_style('geodirectory-custom-fields-css');
48 48
 
49
-        wp_register_style('geodirectory-pluplodar-css', geodir_plugin_url() . '/geodirectory-assets/css/pluploader.css', array(), GEODIRECTORY_VERSION);
50
-        wp_enqueue_style('geodirectory-pluplodar-css');
49
+		wp_register_style('geodirectory-pluplodar-css', geodir_plugin_url() . '/geodirectory-assets/css/pluploader.css', array(), GEODIRECTORY_VERSION);
50
+		wp_enqueue_style('geodirectory-pluplodar-css');
51 51
 
52
-        wp_register_style('geodir-rating-style', geodir_plugin_url() . '/geodirectory-assets/css/jRating.jquery.css', array(), GEODIRECTORY_VERSION);
53
-        wp_enqueue_style('geodir-rating-style');
52
+		wp_register_style('geodir-rating-style', geodir_plugin_url() . '/geodirectory-assets/css/jRating.jquery.css', array(), GEODIRECTORY_VERSION);
53
+		wp_enqueue_style('geodir-rating-style');
54 54
 
55
-        wp_register_style('geodir-rtl-style', geodir_plugin_url() . '/geodirectory-assets/css/rtl.css', array(), GEODIRECTORY_VERSION);
56
-        wp_enqueue_style('geodir-rtl-style');
57
-    }
55
+		wp_register_style('geodir-rtl-style', geodir_plugin_url() . '/geodirectory-assets/css/rtl.css', array(), GEODIRECTORY_VERSION);
56
+		wp_enqueue_style('geodir-rtl-style');
57
+	}
58 58
 }
59 59
 
60 60
 if (!function_exists('geodir_admin_styles_req')) {
61
-    /**
62
-     * Loads stylesheets from CDN.
63
-     *
64
-     * @since 1.0.0
65
-     * @package GeoDirectory
66
-     */
67
-    function geodir_admin_styles_req()
68
-    {
61
+	/**
62
+	 * Loads stylesheets from CDN.
63
+	 *
64
+	 * @since 1.0.0
65
+	 * @package GeoDirectory
66
+	 */
67
+	function geodir_admin_styles_req()
68
+	{
69 69
 
70 70
 //        wp_register_script('font-awesome', 'https://use.fontawesome.com/releases/v5.5.0/js/all.js#faload', array('font-awesome-shim'), GEODIRECTORY_VERSION);
71 71
 //        wp_register_script('font-awesome-shim', 'https://use.fontawesome.com/releases/v5.5.0/js/v4-shims.js', array(), GEODIRECTORY_VERSION);
72 72
 //        wp_enqueue_script( 'font-awesome' );
73 73
 
74
-        wp_register_script('geodirectory-admin', geodir_plugin_url() . '/geodirectory-assets/js/admin-req.min.js', array('jquery'), GEODIRECTORY_VERSION);
75
-        wp_enqueue_script('geodirectory-admin');
74
+		wp_register_script('geodirectory-admin', geodir_plugin_url() . '/geodirectory-assets/js/admin-req.min.js', array('jquery'), GEODIRECTORY_VERSION);
75
+		wp_enqueue_script('geodirectory-admin');
76 76
 
77
-    }
77
+	}
78 78
 }
79 79
 
80 80
 if (!function_exists('geodir_admin_scripts')) {
81
-    /**
82
-     * Enqueue Admin Scripts.
83
-     *
84
-     * @since 1.0.0
85
-     * @package GeoDirectory
86
-     */
87
-    function geodir_admin_scripts()
88
-    {
89
-        $geodir_map_name = geodir_map_name();
81
+	/**
82
+	 * Enqueue Admin Scripts.
83
+	 *
84
+	 * @since 1.0.0
85
+	 * @package GeoDirectory
86
+	 */
87
+	function geodir_admin_scripts()
88
+	{
89
+		$geodir_map_name = geodir_map_name();
90 90
         
91
-        wp_enqueue_script('jquery');
91
+		wp_enqueue_script('jquery');
92 92
 
93
-        wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.ui.timepicker.js', array('jquery-ui-datepicker', 'jquery-ui-slider'), '', true);
93
+		wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.ui.timepicker.js', array('jquery-ui-datepicker', 'jquery-ui-slider'), '', true);
94 94
 
95
-        wp_register_script('chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.js', array('jquery'), GEODIRECTORY_VERSION);
96
-        wp_enqueue_script('chosen');
95
+		wp_register_script('chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.js', array('jquery'), GEODIRECTORY_VERSION);
96
+		wp_enqueue_script('chosen');
97 97
 
98
-        wp_register_script('geodirectory-choose-ajax', geodir_plugin_url() . '/geodirectory-assets/js/ajax-chosen.js', array(), GEODIRECTORY_VERSION);
99
-        wp_enqueue_script('geodirectory-choose-ajax');
98
+		wp_register_script('geodirectory-choose-ajax', geodir_plugin_url() . '/geodirectory-assets/js/ajax-chosen.js', array(), GEODIRECTORY_VERSION);
99
+		wp_enqueue_script('geodirectory-choose-ajax');
100 100
 
101
-        if (isset($_REQUEST['listing_type'])) {
102
-            wp_register_script('geodirectory-custom-fields-script', geodir_plugin_url() . '/geodirectory-assets/js/custom_fields.js', array(), GEODIRECTORY_VERSION);
103
-        }
101
+		if (isset($_REQUEST['listing_type'])) {
102
+			wp_register_script('geodirectory-custom-fields-script', geodir_plugin_url() . '/geodirectory-assets/js/custom_fields.js', array(), GEODIRECTORY_VERSION);
103
+		}
104 104
 
105
-        wp_enqueue_script('geodirectory-custom-fields-script');
106
-        $plugin_path = geodir_plugin_url() . '/geodirectory-functions/cat-meta-functions';
105
+		wp_enqueue_script('geodirectory-custom-fields-script');
106
+		$plugin_path = geodir_plugin_url() . '/geodirectory-functions/cat-meta-functions';
107 107
 
108
-        wp_enqueue_script('tax-meta-clss', $plugin_path . '/js/tax-meta-clss.js', array('jquery'), null, true);
108
+		wp_enqueue_script('tax-meta-clss', $plugin_path . '/js/tax-meta-clss.js', array('jquery'), null, true);
109 109
 
110
-        if (in_array($geodir_map_name, array('auto', 'google'))) {
111
-            $map_lang = "&language=" . geodir_get_map_default_language();
112
-            $map_key = "&key=" . geodir_get_map_api_key();
113
-            /** This filter is documented in geodirectory_template_tags.php */
114
-            $map_extra = apply_filters('geodir_googlemap_script_extra', '');
115
-            wp_enqueue_script('google-maps-api', 'https://maps.google.com/maps/api/js?' . $map_lang . $map_key . $map_extra, '', NULL);
110
+		if (in_array($geodir_map_name, array('auto', 'google'))) {
111
+			$map_lang = "&language=" . geodir_get_map_default_language();
112
+			$map_key = "&key=" . geodir_get_map_api_key();
113
+			/** This filter is documented in geodirectory_template_tags.php */
114
+			$map_extra = apply_filters('geodir_googlemap_script_extra', '');
115
+			wp_enqueue_script('google-maps-api', 'https://maps.google.com/maps/api/js?' . $map_lang . $map_key . $map_extra, '', NULL);
116 116
             
117
-            // Overlapping Marker Spiderfier
118
-            wp_register_script('geodirectory-g-overlappingmarker-script', geodir_plugin_url() . '/geodirectory-assets/jawj/oms.min.js', array(), GEODIRECTORY_VERSION);
119
-            wp_enqueue_script('geodirectory-g-overlappingmarker-script');
120
-        }
117
+			// Overlapping Marker Spiderfier
118
+			wp_register_script('geodirectory-g-overlappingmarker-script', geodir_plugin_url() . '/geodirectory-assets/jawj/oms.min.js', array(), GEODIRECTORY_VERSION);
119
+			wp_enqueue_script('geodirectory-g-overlappingmarker-script');
120
+		}
121 121
         
122
-        if ($geodir_map_name == 'osm') {
123
-            // Leaflet OpenStreetMap
124
-            wp_register_style('geodirectory-leaflet-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
125
-            wp_enqueue_style('geodirectory-leaflet-style');
122
+		if ($geodir_map_name == 'osm') {
123
+			// Leaflet OpenStreetMap
124
+			wp_register_style('geodirectory-leaflet-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
125
+			wp_enqueue_style('geodirectory-leaflet-style');
126 126
                 
127
-            wp_register_script('geodirectory-leaflet-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
128
-            wp_enqueue_script('geodirectory-leaflet-script');
127
+			wp_register_script('geodirectory-leaflet-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
128
+			wp_enqueue_script('geodirectory-leaflet-script');
129 129
             
130
-            wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/osm.geocode.min.js', array('geodirectory-leaflet-script'), GEODIRECTORY_VERSION);
131
-            wp_enqueue_script('geodirectory-leaflet-geo-script');
130
+			wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/osm.geocode.min.js', array('geodirectory-leaflet-script'), GEODIRECTORY_VERSION);
131
+			wp_enqueue_script('geodirectory-leaflet-geo-script');
132 132
             
133
-            // Overlapping Marker Spiderfier Leaflet
134
-            wp_register_script('geodirectory-o-overlappingmarker-script', geodir_plugin_url() . '/geodirectory-assets/jawj/oms-leaflet.min.js', array(), GEODIRECTORY_VERSION);
135
-            wp_enqueue_script('geodirectory-o-overlappingmarker-script');
136
-        }
137
-        wp_enqueue_script( 'jquery-ui-autocomplete' );
133
+			// Overlapping Marker Spiderfier Leaflet
134
+			wp_register_script('geodirectory-o-overlappingmarker-script', geodir_plugin_url() . '/geodirectory-assets/jawj/oms-leaflet.min.js', array(), GEODIRECTORY_VERSION);
135
+			wp_enqueue_script('geodirectory-o-overlappingmarker-script');
136
+		}
137
+		wp_enqueue_script( 'jquery-ui-autocomplete' );
138 138
         
139
-        wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION,true);
140
-        wp_enqueue_script('geodirectory-goMap-script');
139
+		wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION,true);
140
+		wp_enqueue_script('geodirectory-goMap-script');
141 141
 
142
-        wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.js', array(), GEODIRECTORY_VERSION);
143
-        wp_enqueue_script('geodirectory-goMap-script');
142
+		wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.js', array(), GEODIRECTORY_VERSION);
143
+		wp_enqueue_script('geodirectory-goMap-script');
144 144
 
145 145
 		// font awesome rating script
146 146
 		if (get_option('geodir_reviewrating_enable_font_awesome')) {
@@ -151,167 +151,167 @@  discard block
 block discarded – undo
151 151
 			wp_enqueue_script('geodir-jRating-js');
152 152
 		}
153 153
 
154
-        wp_register_script('geodir-on-document-load', geodir_plugin_url() . '/geodirectory-assets/js/on_document_load.min.js', array(), GEODIRECTORY_VERSION);
155
-        wp_enqueue_script('geodir-on-document-load');
156
-
157
-
158
-        // SCRIPT FOR UPLOAD
159
-        wp_enqueue_script('plupload-all');
160
-        wp_enqueue_script('jquery-ui-sortable');
161
-
162
-        wp_register_script('geodirectory-plupload-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory-plupload.js', array(), GEODIRECTORY_VERSION);
163
-        wp_enqueue_script('geodirectory-plupload-script');
164
-
165
-        // SCRIPT FOR UPLOAD END
166
-
167
-
168
-        // place js config array for plupload
169
-        $plupload_init = array(
170
-            'runtimes' => 'html5,silverlight,html4',
171
-            'browse_button' => 'plupload-browse-button', // will be adjusted per uploader
172
-            'container' => 'plupload-upload-ui', // will be adjusted per uploader
173
-            'drop_element' => 'dropbox', // will be adjusted per uploader
174
-            'file_data_name' => 'async-upload', // will be adjusted per uploader
175
-            'multiple_queues' => true,
176
-            'max_file_size' => geodir_max_upload_size(),
177
-            'url' => admin_url('admin-ajax.php'),
178
-            'flash_swf_url' => includes_url('js/plupload/plupload.flash.swf'),
179
-            'silverlight_xap_url' => includes_url('js/plupload/plupload.silverlight.xap'),
180
-            'filters' => array(array('title' => __('Allowed Files', 'geodirectory'), 'extensions' => '*')),
181
-            'multipart' => true,
182
-            'urlstream_upload' => true,
183
-            'multi_selection' => false, // will be added per uploader
184
-            // additional post data to send to our ajax hook
185
-            'multipart_params' => array(
186
-                '_ajax_nonce' => "", // will be added per uploader
187
-                'action' => 'plupload_action', // the ajax action name
188
-                'imgid' => 0 // will be added per uploader
189
-            )
190
-        );
191
-        $base_plupload_config = json_encode($plupload_init);
192
-
193
-
194
-        $thumb_img_arr = array();
195
-
196
-        if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
197
-            $thumb_img_arr = geodir_get_images($_REQUEST['pid']);
198
-
199
-        $totImg = '';
200
-        $image_limit = '';
201
-        if (!empty($thumb_img_arr)) {
202
-            $totImg = count($thumb_img_arr);
203
-        }
154
+		wp_register_script('geodir-on-document-load', geodir_plugin_url() . '/geodirectory-assets/js/on_document_load.min.js', array(), GEODIRECTORY_VERSION);
155
+		wp_enqueue_script('geodir-on-document-load');
156
+
157
+
158
+		// SCRIPT FOR UPLOAD
159
+		wp_enqueue_script('plupload-all');
160
+		wp_enqueue_script('jquery-ui-sortable');
161
+
162
+		wp_register_script('geodirectory-plupload-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory-plupload.js', array(), GEODIRECTORY_VERSION);
163
+		wp_enqueue_script('geodirectory-plupload-script');
164
+
165
+		// SCRIPT FOR UPLOAD END
166
+
167
+
168
+		// place js config array for plupload
169
+		$plupload_init = array(
170
+			'runtimes' => 'html5,silverlight,html4',
171
+			'browse_button' => 'plupload-browse-button', // will be adjusted per uploader
172
+			'container' => 'plupload-upload-ui', // will be adjusted per uploader
173
+			'drop_element' => 'dropbox', // will be adjusted per uploader
174
+			'file_data_name' => 'async-upload', // will be adjusted per uploader
175
+			'multiple_queues' => true,
176
+			'max_file_size' => geodir_max_upload_size(),
177
+			'url' => admin_url('admin-ajax.php'),
178
+			'flash_swf_url' => includes_url('js/plupload/plupload.flash.swf'),
179
+			'silverlight_xap_url' => includes_url('js/plupload/plupload.silverlight.xap'),
180
+			'filters' => array(array('title' => __('Allowed Files', 'geodirectory'), 'extensions' => '*')),
181
+			'multipart' => true,
182
+			'urlstream_upload' => true,
183
+			'multi_selection' => false, // will be added per uploader
184
+			// additional post data to send to our ajax hook
185
+			'multipart_params' => array(
186
+				'_ajax_nonce' => "", // will be added per uploader
187
+				'action' => 'plupload_action', // the ajax action name
188
+				'imgid' => 0 // will be added per uploader
189
+			)
190
+		);
191
+		$base_plupload_config = json_encode($plupload_init);
192
+
193
+
194
+		$thumb_img_arr = array();
195
+
196
+		if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
197
+			$thumb_img_arr = geodir_get_images($_REQUEST['pid']);
198
+
199
+		$totImg = '';
200
+		$image_limit = '';
201
+		if (!empty($thumb_img_arr)) {
202
+			$totImg = count($thumb_img_arr);
203
+		}
204 204
 
205
-        $gd_plupload_init = array('base_plupload_config' => $base_plupload_config,
206
-            'totalImg' => $totImg,
207
-            'image_limit' => $image_limit,
208
-            'upload_img_size' => geodir_max_upload_size());
205
+		$gd_plupload_init = array('base_plupload_config' => $base_plupload_config,
206
+			'totalImg' => $totImg,
207
+			'image_limit' => $image_limit,
208
+			'upload_img_size' => geodir_max_upload_size());
209 209
 
210
-        wp_localize_script('geodirectory-plupload-script', 'gd_plupload', $gd_plupload_init);
210
+		wp_localize_script('geodirectory-plupload-script', 'gd_plupload', $gd_plupload_init);
211 211
 
212
-        $ajax_cons_data = array('url' => __(admin_url('admin-ajax.php')));
213
-        wp_localize_script('geodirectory-custom-fields-script', 'geodir_admin_ajax', $ajax_cons_data);
212
+		$ajax_cons_data = array('url' => __(admin_url('admin-ajax.php')));
213
+		wp_localize_script('geodirectory-custom-fields-script', 'geodir_admin_ajax', $ajax_cons_data);
214 214
 
215 215
 
216
-        wp_register_script('geodirectory-admin-script', geodir_plugin_url() . '/geodirectory-assets/js/admin.js', array(), GEODIRECTORY_VERSION);
217
-        wp_enqueue_script('geodirectory-admin-script');
216
+		wp_register_script('geodirectory-admin-script', geodir_plugin_url() . '/geodirectory-assets/js/admin.js', array(), GEODIRECTORY_VERSION);
217
+		wp_enqueue_script('geodirectory-admin-script');
218 218
 
219
-        wp_enqueue_style('farbtastic');
220
-        wp_enqueue_script('farbtastic');
219
+		wp_enqueue_style('farbtastic');
220
+		wp_enqueue_script('farbtastic');
221 221
 
222
-        $screen = get_current_screen();
223
-        if ($screen->base == 'post' && in_array($screen->post_type, geodir_get_posttypes())) {
224
-            wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url() . '/geodirectory-assets/js/listing_validation_admin.js');
225
-        }
222
+		$screen = get_current_screen();
223
+		if ($screen->base == 'post' && in_array($screen->post_type, geodir_get_posttypes())) {
224
+			wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url() . '/geodirectory-assets/js/listing_validation_admin.js');
225
+		}
226 226
 
227
-        $ajax_cons_data = array('url' => esc_url(__(get_option('siteurl') . '?geodir_ajax=true')));
228
-        wp_localize_script('geodirectory-admin-script', 'geodir_ajax', $ajax_cons_data);
227
+		$ajax_cons_data = array('url' => esc_url(__(get_option('siteurl') . '?geodir_ajax=true')));
228
+		wp_localize_script('geodirectory-admin-script', 'geodir_ajax', $ajax_cons_data);
229 229
 
230
-    }
230
+	}
231 231
 }
232 232
 
233 233
 if (!function_exists('geodir_admin_menu')) {
234
-    /**
235
-     * Admin Menus
236
-     *
237
-     * Sets up the admin menus in wordpress.
238
-     *
239
-     * @since 1.0.0
240
-     * @package GeoDirectory
241
-     * @global array $menu Menu array.
242
-     * @global object $geodirectory GeoDirectory plugin object.
243
-     */
244
-    function geodir_admin_menu()
245
-    {
246
-        global $menu, $geodirectory;
234
+	/**
235
+	 * Admin Menus
236
+	 *
237
+	 * Sets up the admin menus in wordpress.
238
+	 *
239
+	 * @since 1.0.0
240
+	 * @package GeoDirectory
241
+	 * @global array $menu Menu array.
242
+	 * @global object $geodirectory GeoDirectory plugin object.
243
+	 */
244
+	function geodir_admin_menu()
245
+	{
246
+		global $menu, $geodirectory;
247 247
 
248
-        if (current_user_can('manage_options')) $menu[] = array('', 'read', 'separator-geodirectory', '', 'wp-menu-separator geodirectory');
248
+		if (current_user_can('manage_options')) $menu[] = array('', 'read', 'separator-geodirectory', '', 'wp-menu-separator geodirectory');
249 249
 
250
-        add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico', '55.1984');
250
+		add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico', '55.1984');
251 251
 
252 252
 
253
-    }
253
+	}
254 254
 }
255 255
 
256 256
 if (!function_exists('geodir_admin_menu_order')) {
257
-    /**
258
-     * Order admin menus.
259
-     *
260
-     * @since 1.0.0
261
-     * @package GeoDirectory
262
-     * @param array $menu_order Menu order array.
263
-     * @return array Modified menu order array.
264
-     */
265
-    function geodir_admin_menu_order($menu_order)
266
-    {
267
-
268
-        // Initialize our custom order array
269
-        $geodir_menu_order = array();
270
-
271
-        // Get the index of our custom separator
272
-        $geodir_separator = array_search('separator-geodirectory', $menu_order);
273
-
274
-        // Get index of posttype menu
275
-        $post_types = geodir_get_posttypes();
276
-
277
-        // Loop through menu order and do some rearranging
278
-        foreach ($menu_order as $index => $item) :
279
-
280
-            if ((('geodirectory') == $item)) :
281
-                $geodir_menu_order[] = 'separator-geodirectory';
282
-                if (!empty($post_types)) {
283
-                    foreach ($post_types as $post_type) {
284
-                        $geodir_menu_order[] = 'edit.php?post_type=' . $post_type;
285
-                    }
286
-                }
287
-                $geodir_menu_order[] = $item;
257
+	/**
258
+	 * Order admin menus.
259
+	 *
260
+	 * @since 1.0.0
261
+	 * @package GeoDirectory
262
+	 * @param array $menu_order Menu order array.
263
+	 * @return array Modified menu order array.
264
+	 */
265
+	function geodir_admin_menu_order($menu_order)
266
+	{
288 267
 
289
-                unset($menu_order[$geodir_separator]);
290
-            //unset( $menu_order[$geodir_places] );
291
-            elseif (!in_array($item, array('separator-geodirectory'))) :
292
-                $geodir_menu_order[] = $item;
293
-            endif;
268
+		// Initialize our custom order array
269
+		$geodir_menu_order = array();
294 270
 
295
-        endforeach;
271
+		// Get the index of our custom separator
272
+		$geodir_separator = array_search('separator-geodirectory', $menu_order);
296 273
 
297
-        // Return order
298
-        return $geodir_menu_order;
299
-    }
274
+		// Get index of posttype menu
275
+		$post_types = geodir_get_posttypes();
276
+
277
+		// Loop through menu order and do some rearranging
278
+		foreach ($menu_order as $index => $item) :
279
+
280
+			if ((('geodirectory') == $item)) :
281
+				$geodir_menu_order[] = 'separator-geodirectory';
282
+				if (!empty($post_types)) {
283
+					foreach ($post_types as $post_type) {
284
+						$geodir_menu_order[] = 'edit.php?post_type=' . $post_type;
285
+					}
286
+				}
287
+				$geodir_menu_order[] = $item;
288
+
289
+				unset($menu_order[$geodir_separator]);
290
+			//unset( $menu_order[$geodir_places] );
291
+			elseif (!in_array($item, array('separator-geodirectory'))) :
292
+				$geodir_menu_order[] = $item;
293
+			endif;
294
+
295
+		endforeach;
296
+
297
+		// Return order
298
+		return $geodir_menu_order;
299
+	}
300 300
 }
301 301
 
302 302
 if (!function_exists('geodir_admin_custom_menu_order')) {
303
-    /**
304
-     * Enables custom menu order.
305
-     *
306
-     * @since 1.0.0
307
-     * @package GeoDirectory
308
-     * @return bool
309
-     */
310
-    function geodir_admin_custom_menu_order()
311
-    {
312
-        if (!current_user_can('manage_options')) return false;
313
-        return true;
314
-    }
303
+	/**
304
+	 * Enables custom menu order.
305
+	 *
306
+	 * @since 1.0.0
307
+	 * @package GeoDirectory
308
+	 * @return bool
309
+	 */
310
+	function geodir_admin_custom_menu_order()
311
+	{
312
+		if (!current_user_can('manage_options')) return false;
313
+		return true;
314
+	}
315 315
 }
316 316
 
317 317
 /**
@@ -322,50 +322,50 @@  discard block
 block discarded – undo
322 322
  */
323 323
 function geodir_before_admin_panel()
324 324
 {
325
-    if (isset($_REQUEST['installed']) && $_REQUEST['installed'] != '') {
326
-        echo '<div id="message" class="updated fade">
325
+	if (isset($_REQUEST['installed']) && $_REQUEST['installed'] != '') {
326
+		echo '<div id="message" class="updated fade">
327 327
                         <p style="float:right;">' . __('Like Geodirectory?', 'geodirectory') . ' <a href="http://wordpress.org/extend/plugins/Geodirectory/" target="_blank">' . __('Support us by leaving a rating!', 'geodirectory') . '</a></p>
328 328
                         <p><strong>' . __('Geodirectory has been installed and setup. Enjoy :)', 'geodirectory') . '</strong></p>
329 329
                 </div>';
330 330
 
331
-    }
331
+	}
332 332
 
333
-    if (isset($_REQUEST['msg']) && $_REQUEST['msg'] != '') {
334
-        switch ($_REQUEST['msg']) {
335
-            case 'success':
336
-                echo '<div id="message" class="updated fade"><p><strong>' . __('Your settings have been saved.', 'geodirectory') . '</strong></p></div>';
337
-                flush_rewrite_rules(false);
333
+	if (isset($_REQUEST['msg']) && $_REQUEST['msg'] != '') {
334
+		switch ($_REQUEST['msg']) {
335
+			case 'success':
336
+				echo '<div id="message" class="updated fade"><p><strong>' . __('Your settings have been saved.', 'geodirectory') . '</strong></p></div>';
337
+				flush_rewrite_rules(false);
338 338
 
339
-                break;
339
+				break;
340 340
 			case 'fail':
341 341
 				$gderr = isset($_REQUEST['gderr']) ? $_REQUEST['gderr'] : '';
342 342
 				
343 343
 				if ($gderr == 21)
344
-			    	echo '<div id="message" class="error fade"><p><strong>' . __('Error: You can not add same permalinks for both Listing and Location, please try again.', 'geodirectory') . '</strong></p></div>';
344
+					echo '<div id="message" class="error fade"><p><strong>' . __('Error: You can not add same permalinks for both Listing and Location, please try again.', 'geodirectory') . '</strong></p></div>';
345 345
 				else
346 346
 					echo '<div id="message" class="error fade"><p><strong>' . __('Error: Your settings have not been saved, please try again.', 'geodirectory') . '</strong></p></div>';
347
-                break;
348
-        }
349
-    }
347
+				break;
348
+		}
349
+	}
350 350
 
351
-    $geodir_load_map = get_option('geodir_load_map');
352
-    $need_map_key = false;
353
-    if($geodir_load_map=='' || $geodir_load_map=='google' || $geodir_load_map=='auto' ){
354
-        $need_map_key = true;
355
-    }
351
+	$geodir_load_map = get_option('geodir_load_map');
352
+	$need_map_key = false;
353
+	if($geodir_load_map=='' || $geodir_load_map=='google' || $geodir_load_map=='auto' ){
354
+		$need_map_key = true;
355
+	}
356 356
 
357
-    if (!geodir_get_map_api_key() && $need_map_key) {
358
-        echo '<div class="error"><p><strong>' . sprintf(__('Google Maps API KEY not set, %sclick here%s to set one OR use Open Street Maps instead.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=design_settings&active_tab=geodir_map_settings') . '\'>', '</a>') . '</strong></p></div>';
359
-    }
357
+	if (!geodir_get_map_api_key() && $need_map_key) {
358
+		echo '<div class="error"><p><strong>' . sprintf(__('Google Maps API KEY not set, %sclick here%s to set one OR use Open Street Maps instead.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=design_settings&active_tab=geodir_map_settings') . '\'>', '</a>') . '</strong></p></div>';
359
+	}
360 360
 
361
-    if (!geodir_is_default_location_set()) {
362
-        echo '<div class="updated fade"><p><strong>' . sprintf(__('Please %sclick here%s to set a default location, this will make the plugin work properly.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=default_location_settings') . '\'>', '</a>') . '</strong></p></div>';
361
+	if (!geodir_is_default_location_set()) {
362
+		echo '<div class="updated fade"><p><strong>' . sprintf(__('Please %sclick here%s to set a default location, this will make the plugin work properly.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=default_location_settings') . '\'>', '</a>') . '</strong></p></div>';
363 363
 
364
-    }
364
+	}
365 365
 
366
-    if (!function_exists('curl_init')) {
367
-        echo '<div class="error"><p><strong>' . __('CURL is not installed on this server, this can cause problems, please ask your server admin to install it.', 'geodirectory') . '</strong></p></div>';
368
-    }
366
+	if (!function_exists('curl_init')) {
367
+		echo '<div class="error"><p><strong>' . __('CURL is not installed on this server, this can cause problems, please ask your server admin to install it.', 'geodirectory') . '</strong></p></div>';
368
+	}
369 369
 
370 370
 
371 371
 
@@ -382,19 +382,19 @@  discard block
 block discarded – undo
382 382
  */
383 383
 function geodir_handle_option_form_submit($current_tab)
384 384
 {
385
-    global $geodir_settings;
386
-    if (file_exists(dirname(__FILE__) . '/option-pages/' . $current_tab . '_array.php')) {
387
-        /**
388
-         * Contains settings array for current tab.
389
-         *
390
-         * @since 1.0.0
391
-         * @package GeoDirectory
392
-         */
393
-        include_once('option-pages/' . $current_tab . '_array.php');
394
-    }
395
-    if (isset($_POST) && $_POST && isset($_REQUEST['page']) && $_REQUEST['page'] == 'geodirectory') :
396
-        if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir-settings')) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
397
-        if (!wp_verify_nonce($_REQUEST['_wpnonce-' . $current_tab], 'geodir-settings-' . $current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
385
+	global $geodir_settings;
386
+	if (file_exists(dirname(__FILE__) . '/option-pages/' . $current_tab . '_array.php')) {
387
+		/**
388
+		 * Contains settings array for current tab.
389
+		 *
390
+		 * @since 1.0.0
391
+		 * @package GeoDirectory
392
+		 */
393
+		include_once('option-pages/' . $current_tab . '_array.php');
394
+	}
395
+	if (isset($_POST) && $_POST && isset($_REQUEST['page']) && $_REQUEST['page'] == 'geodirectory') :
396
+		if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir-settings')) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
397
+		if (!wp_verify_nonce($_REQUEST['_wpnonce-' . $current_tab], 'geodir-settings-' . $current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
398 398
 		
399 399
 		/**
400 400
 		 * Fires before updating geodirectory admin settings.
@@ -406,38 +406,38 @@  discard block
 block discarded – undo
406 406
 		 */
407 407
 		do_action('geodir_before_update_options', $current_tab, $geodir_settings);		
408 408
 		
409
-        if (!empty($geodir_settings[$current_tab]))
410
-            geodir_update_options($geodir_settings[$current_tab]);
409
+		if (!empty($geodir_settings[$current_tab]))
410
+			geodir_update_options($geodir_settings[$current_tab]);
411 411
 
412
-        /**
413
-         * Called after GeoDirectory options settings are updated.
414
-         *
415
-         * @since 1.0.0
416
-         * @param array $geodir_settings The array of GeoDirectory settings.
417
-         * @see 'geodir_before_update_options'
418
-         */
419
-        do_action('geodir_update_options', $geodir_settings);
412
+		/**
413
+		 * Called after GeoDirectory options settings are updated.
414
+		 *
415
+		 * @since 1.0.0
416
+		 * @param array $geodir_settings The array of GeoDirectory settings.
417
+		 * @see 'geodir_before_update_options'
418
+		 */
419
+		do_action('geodir_update_options', $geodir_settings);
420 420
 
421
-        /**
422
-         * Called after GeoDirectory options settings are updated.
423
-         *
424
-         * Provides tab specific settings.
425
-         *
426
-         * @since 1.0.0
427
-         * @param string $current_tab The current settings tab name.
428
-         * @param array $geodir_settings[$current_tab] The array of settings for the current settings tab.
429
-         */
430
-        do_action('geodir_update_options_' . $current_tab, $geodir_settings[$current_tab]);
421
+		/**
422
+		 * Called after GeoDirectory options settings are updated.
423
+		 *
424
+		 * Provides tab specific settings.
425
+		 *
426
+		 * @since 1.0.0
427
+		 * @param string $current_tab The current settings tab name.
428
+		 * @param array $geodir_settings[$current_tab] The array of settings for the current settings tab.
429
+		 */
430
+		do_action('geodir_update_options_' . $current_tab, $geodir_settings[$current_tab]);
431 431
 
432
-        flush_rewrite_rules(false);
432
+		flush_rewrite_rules(false);
433 433
 
434
-        $current_tab = isset($_REQUEST['tab']) ? $_REQUEST['tab'] : '';
434
+		$current_tab = isset($_REQUEST['tab']) ? $_REQUEST['tab'] : '';
435 435
 
436
-        $redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $_REQUEST['active_tab'] . '&msg=success');
436
+		$redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $_REQUEST['active_tab'] . '&msg=success');
437 437
 
438
-        wp_redirect($redirect_url);
439
-        exit();
440
-    endif;
438
+		wp_redirect($redirect_url);
439
+		exit();
440
+	endif;
441 441
 
442 442
 
443 443
 }
@@ -455,144 +455,144 @@  discard block
 block discarded – undo
455 455
  * @return bool Returns true if saved.
456 456
  */
457 457
 function geodir_update_options($options, $dummy = false) {
458
-    if ((!isset($_POST) || !$_POST) && !$dummy) return false;
458
+	if ((!isset($_POST) || !$_POST) && !$dummy) return false;
459 459
 
460
-    foreach ($options as $value) {
461
-        if ($dummy && isset($value['std']))
462
-            $_POST[$value['id']] = $value['std'];
460
+	foreach ($options as $value) {
461
+		if ($dummy && isset($value['std']))
462
+			$_POST[$value['id']] = $value['std'];
463 463
 
464 464
 
465
-        if (isset($value['type']) && $value['type'] == 'checkbox') :
465
+		if (isset($value['type']) && $value['type'] == 'checkbox') :
466 466
 
467
-            if (isset($value['id']) && isset($_POST[$value['id']])) {
468
-                update_option($value['id'], $_POST[$value['id']]);
469
-            } else {
470
-                update_option($value['id'], 0);
471
-            }
467
+			if (isset($value['id']) && isset($_POST[$value['id']])) {
468
+				update_option($value['id'], $_POST[$value['id']]);
469
+			} else {
470
+				update_option($value['id'], 0);
471
+			}
472 472
 
473
-        elseif (isset($value['type']) && $value['type'] == 'image_width') :
473
+		elseif (isset($value['type']) && $value['type'] == 'image_width') :
474 474
 
475
-            if (isset($value['id']) && isset($_POST[$value['id'] . '_width'])) {
476
-                update_option($value['id'] . '_width', $_POST[$value['id'] . '_width']);
477
-                update_option($value['id'] . '_height', $_POST[$value['id'] . '_height']);
478
-                if (isset($_POST[$value['id'] . '_crop'])) :
479
-                    update_option($value['id'] . '_crop', 1);
480
-                else :
481
-                    update_option($value['id'] . '_crop', 0);
482
-                endif;
483
-            } else {
484
-                update_option($value['id'] . '_width', $value['std']);
485
-                update_option($value['id'] . '_height', $value['std']);
486
-                update_option($value['id'] . '_crop', 1);
487
-            }
475
+			if (isset($value['id']) && isset($_POST[$value['id'] . '_width'])) {
476
+				update_option($value['id'] . '_width', $_POST[$value['id'] . '_width']);
477
+				update_option($value['id'] . '_height', $_POST[$value['id'] . '_height']);
478
+				if (isset($_POST[$value['id'] . '_crop'])) :
479
+					update_option($value['id'] . '_crop', 1);
480
+				else :
481
+					update_option($value['id'] . '_crop', 0);
482
+				endif;
483
+			} else {
484
+				update_option($value['id'] . '_width', $value['std']);
485
+				update_option($value['id'] . '_height', $value['std']);
486
+				update_option($value['id'] . '_crop', 1);
487
+			}
488 488
 
489
-        elseif (isset($value['type']) && $value['type'] == 'map') :
490
-            $post_types = array();
491
-            $categories = array();
489
+		elseif (isset($value['type']) && $value['type'] == 'map') :
490
+			$post_types = array();
491
+			$categories = array();
492 492
 
493
-            if (!empty($_POST['home_map_post_types'])) :
494
-                foreach ($_POST['home_map_post_types'] as $post_type) :
495
-                    $post_types[] = $post_type;
496
-                endforeach;
497
-            endif;
493
+			if (!empty($_POST['home_map_post_types'])) :
494
+				foreach ($_POST['home_map_post_types'] as $post_type) :
495
+					$post_types[] = $post_type;
496
+				endforeach;
497
+			endif;
498 498
 
499
-            update_option('geodir_exclude_post_type_on_map', $post_types);
499
+			update_option('geodir_exclude_post_type_on_map', $post_types);
500 500
 
501
-            if (!empty($_POST['post_category'])) :
502
-                foreach ($_POST['post_category'] as $texonomy => $cat_arr) :
503
-                    $categories[$texonomy] = array();
504
-                    foreach ($cat_arr as $category) :
505
-                        $categories[$texonomy][] = $category;
506
-                    endforeach;
507
-                    $categories[$texonomy] = !empty($categories[$texonomy]) ? array_unique($categories[$texonomy]) : array();
508
-                endforeach;
509
-            endif;
510
-            update_option('geodir_exclude_cat_on_map', $categories);
511
-            update_option('geodir_exclude_cat_on_map_upgrade', 1);
512
-        elseif (isset($value['type']) && $value['type'] == 'map_default_settings') :
501
+			if (!empty($_POST['post_category'])) :
502
+				foreach ($_POST['post_category'] as $texonomy => $cat_arr) :
503
+					$categories[$texonomy] = array();
504
+					foreach ($cat_arr as $category) :
505
+						$categories[$texonomy][] = $category;
506
+					endforeach;
507
+					$categories[$texonomy] = !empty($categories[$texonomy]) ? array_unique($categories[$texonomy]) : array();
508
+				endforeach;
509
+			endif;
510
+			update_option('geodir_exclude_cat_on_map', $categories);
511
+			update_option('geodir_exclude_cat_on_map_upgrade', 1);
512
+		elseif (isset($value['type']) && $value['type'] == 'map_default_settings') :
513 513
 
514 514
 
515
-            if (!empty($_POST['geodir_default_map_language'])):
516
-                update_option('geodir_default_map_language', $_POST['geodir_default_map_language']);
517
-            endif;
515
+			if (!empty($_POST['geodir_default_map_language'])):
516
+				update_option('geodir_default_map_language', $_POST['geodir_default_map_language']);
517
+			endif;
518 518
 
519 519
 
520
-            if (!empty($_POST['geodir_default_map_search_pt'])):
521
-                update_option('geodir_default_map_search_pt', $_POST['geodir_default_map_search_pt']);
522
-            endif;
520
+			if (!empty($_POST['geodir_default_map_search_pt'])):
521
+				update_option('geodir_default_map_search_pt', $_POST['geodir_default_map_search_pt']);
522
+			endif;
523 523
 
524 524
 
525
-        elseif (isset($value['type']) && $value['type'] == 'file') :
525
+		elseif (isset($value['type']) && $value['type'] == 'file') :
526 526
 
527 527
 
528
-            if (isset($_POST[$value['id'] . '_remove']) && $_POST[$value['id'] . '_remove']) {// if remove is set then remove the file
528
+			if (isset($_POST[$value['id'] . '_remove']) && $_POST[$value['id'] . '_remove']) {// if remove is set then remove the file
529 529
 
530
-                if (get_option($value['id'])) {
531
-                    $image_name_arr = explode('/', get_option($value['id']));
532
-                    $noimg_name = end($image_name_arr);
533
-                    $img_path = $uploads['path'] . '/' . $noimg_name;
534
-                    if (file_exists($img_path))
535
-                        unlink($img_path);
536
-                }
530
+				if (get_option($value['id'])) {
531
+					$image_name_arr = explode('/', get_option($value['id']));
532
+					$noimg_name = end($image_name_arr);
533
+					$img_path = $uploads['path'] . '/' . $noimg_name;
534
+					if (file_exists($img_path))
535
+						unlink($img_path);
536
+				}
537 537
 
538
-                update_option($value['id'], '');
539
-            }
538
+				update_option($value['id'], '');
539
+			}
540 540
 
541
-            $uploadedfile = isset($_FILES[$value['id']]) ? $_FILES[$value['id']] : '';
542
-            $filename = isset($_FILES[$value['id']]['name']) ? $_FILES[$value['id']]['name'] : '';
543
-
544
-            if (!empty($filename)):
545
-                $ext = pathinfo($filename, PATHINFO_EXTENSION);
546
-                $uplaods = array();
547
-
548
-                foreach ($uploadedfile as $key => $uplaod):
549
-                    if ($key == 'name'):
550
-                        $uplaods[$key] = $filename;
551
-                    else :
552
-                        $uplaods[$key] = $uplaod;
553
-                    endif;
554
-                endforeach;
555
-
556
-                $uploads = wp_upload_dir();
557
-
558
-                if (get_option($value['id'])) {
559
-                    $image_name_arr = explode('/', get_option($value['id']));
560
-                    $noimg_name = end($image_name_arr);
561
-                    $img_path = $uploads['path'] . '/' . $noimg_name;
562
-                    if (file_exists($img_path))
563
-                        unlink($img_path);
564
-                }
541
+			$uploadedfile = isset($_FILES[$value['id']]) ? $_FILES[$value['id']] : '';
542
+			$filename = isset($_FILES[$value['id']]['name']) ? $_FILES[$value['id']]['name'] : '';
543
+
544
+			if (!empty($filename)):
545
+				$ext = pathinfo($filename, PATHINFO_EXTENSION);
546
+				$uplaods = array();
547
+
548
+				foreach ($uploadedfile as $key => $uplaod):
549
+					if ($key == 'name'):
550
+						$uplaods[$key] = $filename;
551
+					else :
552
+						$uplaods[$key] = $uplaod;
553
+					endif;
554
+				endforeach;
555
+
556
+				$uploads = wp_upload_dir();
557
+
558
+				if (get_option($value['id'])) {
559
+					$image_name_arr = explode('/', get_option($value['id']));
560
+					$noimg_name = end($image_name_arr);
561
+					$img_path = $uploads['path'] . '/' . $noimg_name;
562
+					if (file_exists($img_path))
563
+						unlink($img_path);
564
+				}
565 565
 
566
-                $upload_overrides = array('test_form' => false);
567
-                $movefile = wp_handle_upload($uplaods, $upload_overrides);
566
+				$upload_overrides = array('test_form' => false);
567
+				$movefile = wp_handle_upload($uplaods, $upload_overrides);
568 568
 
569
-                update_option($value['id'], $movefile['url']);
569
+				update_option($value['id'], $movefile['url']);
570 570
 
571
-            endif;
571
+			endif;
572 572
 
573
-            if (!get_option($value['id']) && isset($value['value'])):
574
-                update_option($value['id'], $value['value']);
575
-            endif;
573
+			if (!get_option($value['id']) && isset($value['value'])):
574
+				update_option($value['id'], $value['value']);
575
+			endif;
576 576
 
577 577
 
578
-        else :
579
-            // same menu setting per theme.
580
-            if (isset($value['id']) && $value['id'] == 'geodir_theme_location_nav' && isset($_POST[$value['id']])) {
581
-                $theme = wp_get_theme();
582
-                update_option('geodir_theme_location_nav_' . $theme->name, $_POST[$value['id']]);
583
-            }
578
+		else :
579
+			// same menu setting per theme.
580
+			if (isset($value['id']) && $value['id'] == 'geodir_theme_location_nav' && isset($_POST[$value['id']])) {
581
+				$theme = wp_get_theme();
582
+				update_option('geodir_theme_location_nav_' . $theme->name, $_POST[$value['id']]);
583
+			}
584 584
 
585
-            if (isset($value['id']) && isset($_POST[$value['id']])) {
586
-                update_option($value['id'], $_POST[$value['id']]);
587
-            } else {
588
-                delete_option($value['id']);
589
-            }
585
+			if (isset($value['id']) && isset($_POST[$value['id']])) {
586
+				update_option($value['id'], $_POST[$value['id']]);
587
+			} else {
588
+				delete_option($value['id']);
589
+			}
590 590
 
591
-        endif;
592
-    }
593
-    if ($dummy)
594
-        $_POST = array();
595
-    return true;
591
+		endif;
592
+	}
593
+	if ($dummy)
594
+		$_POST = array();
595
+	return true;
596 596
 
597 597
 }
598 598
 
@@ -641,33 +641,33 @@  discard block
 block discarded – undo
641 641
 function places_custom_fields_tab($tabs)
642 642
 {
643 643
 
644
-    $geodir_post_types = get_option('geodir_post_types');
644
+	$geodir_post_types = get_option('geodir_post_types');
645 645
 
646
-    if (!empty($geodir_post_types)) {
646
+	if (!empty($geodir_post_types)) {
647 647
 
648
-        foreach ($geodir_post_types as $geodir_post_type => $geodir_posttype_info):
648
+		foreach ($geodir_post_types as $geodir_post_type => $geodir_posttype_info):
649 649
 
650
-            $listing_slug = __($geodir_posttype_info['labels']['singular_name'], 'geodirectory');
650
+			$listing_slug = __($geodir_posttype_info['labels']['singular_name'], 'geodirectory');
651 651
 
652
-            $tabs[$geodir_post_type . '_fields_settings'] = array(
653
-                'label' => wp_sprintf(__('%s Settings', 'geodirectory'), $listing_slug),
654
-                'subtabs' => array(
655
-                    array('subtab' => 'custom_fields',
656
-                        'label' => __('Custom Fields', 'geodirectory'),
657
-                        'request' => array('listing_type' => $geodir_post_type)),
658
-                    array('subtab' => 'sorting_options',
659
-                        'label' => __('Sorting Options', 'geodirectory'),
660
-                        'request' => array('listing_type' => $geodir_post_type)),
661
-                ),
662
-                'tab_index' => 9,
663
-                'request' => array('listing_type' => $geodir_post_type)
664
-            );
652
+			$tabs[$geodir_post_type . '_fields_settings'] = array(
653
+				'label' => wp_sprintf(__('%s Settings', 'geodirectory'), $listing_slug),
654
+				'subtabs' => array(
655
+					array('subtab' => 'custom_fields',
656
+						'label' => __('Custom Fields', 'geodirectory'),
657
+						'request' => array('listing_type' => $geodir_post_type)),
658
+					array('subtab' => 'sorting_options',
659
+						'label' => __('Sorting Options', 'geodirectory'),
660
+						'request' => array('listing_type' => $geodir_post_type)),
661
+				),
662
+				'tab_index' => 9,
663
+				'request' => array('listing_type' => $geodir_post_type)
664
+			);
665 665
 
666
-        endforeach;
666
+		endforeach;
667 667
 
668
-    }
668
+	}
669 669
 
670
-    return $tabs;
670
+	return $tabs;
671 671
 }
672 672
 
673 673
 
@@ -683,9 +683,9 @@  discard block
 block discarded – undo
683 683
  */
684 684
 function geodir_tools_setting_tab($tabs)
685 685
 {
686
-    wp_enqueue_script( 'jquery-ui-progressbar' );
687
-    $tabs['tools_settings'] = array('label' => __('GD Tools', 'geodirectory'));
688
-    return $tabs;
686
+	wp_enqueue_script( 'jquery-ui-progressbar' );
687
+	$tabs['tools_settings'] = array('label' => __('GD Tools', 'geodirectory'));
688
+	return $tabs;
689 689
 }
690 690
 
691 691
 /**
@@ -700,8 +700,8 @@  discard block
 block discarded – undo
700 700
  */
701 701
 function geodir_compatibility_setting_tab($tabs)
702 702
 {
703
-    $tabs['compatibility_settings'] = array('label' => __('Theme Compatibility', 'geodirectory'));
704
-    return $tabs;
703
+	$tabs['compatibility_settings'] = array('label' => __('Theme Compatibility', 'geodirectory'));
704
+	return $tabs;
705 705
 }
706 706
 
707 707
 
@@ -717,144 +717,144 @@  discard block
 block discarded – undo
717 717
  */
718 718
 function geodir_extend_geodirectory_setting_tab($tabs)
719 719
 {
720
-    $tabs['extend_geodirectory_settings'] = array('label' => __('Extend Geodirectory', 'geodirectory'). ' <i class="fas fa-plug"></i>', 'url' => 'https://wpgeodirectory.com', 'target' => '_blank');
721
-    return $tabs;
720
+	$tabs['extend_geodirectory_settings'] = array('label' => __('Extend Geodirectory', 'geodirectory'). ' <i class="fas fa-plug"></i>', 'url' => 'https://wpgeodirectory.com', 'target' => '_blank');
721
+	return $tabs;
722 722
 }
723 723
 
724 724
 
725 725
 if (!function_exists('geodir_edit_post_columns')) {
726
-    /**
727
-     * Modify admin post listing page columns.
728
-     *
729
-     * @since 1.0.0
730
-     * @package GeoDirectory
731
-     * @param array $columns The column array.
732
-     * @return array Altered column array.
733
-     */
734
-    function geodir_edit_post_columns($columns)
735
-    {
736
-
737
-        $new_columns = array('location' => __('Location (ID)', 'geodirectory'),
738
-            'categorys' => __('Categories', 'geodirectory'));
739
-
740
-        if (($offset = array_search('author', array_keys($columns))) === false) // if the key doesn't exist
741
-        {
742
-            $offset = 0; // should we prepend $array with $data?
743
-            $offset = count($columns); // or should we append $array with $data? lets pick this one...
744
-        }
726
+	/**
727
+	 * Modify admin post listing page columns.
728
+	 *
729
+	 * @since 1.0.0
730
+	 * @package GeoDirectory
731
+	 * @param array $columns The column array.
732
+	 * @return array Altered column array.
733
+	 */
734
+	function geodir_edit_post_columns($columns)
735
+	{
745 736
 
746
-        $columns = array_merge(array_slice($columns, 0, $offset), $new_columns, array_slice($columns, $offset));
737
+		$new_columns = array('location' => __('Location (ID)', 'geodirectory'),
738
+			'categorys' => __('Categories', 'geodirectory'));
747 739
 
748
-        $columns = array_merge($columns, array('expire' => __('Expires', 'geodirectory')));
740
+		if (($offset = array_search('author', array_keys($columns))) === false) // if the key doesn't exist
741
+		{
742
+			$offset = 0; // should we prepend $array with $data?
743
+			$offset = count($columns); // or should we append $array with $data? lets pick this one...
744
+		}
749 745
 
750
-        return $columns;
751
-    }
746
+		$columns = array_merge(array_slice($columns, 0, $offset), $new_columns, array_slice($columns, $offset));
747
+
748
+		$columns = array_merge($columns, array('expire' => __('Expires', 'geodirectory')));
749
+
750
+		return $columns;
751
+	}
752 752
 }
753 753
 
754 754
 
755 755
 if (!function_exists('geodir_manage_post_columns')) {
756
-    /**
757
-     * Adds content to our custom post listing page columns.
758
-     *
759
-     * @since 1.0.0
760
-     * @package GeoDirectory
761
-     * @global object $wpdb WordPress Database object.
762
-     * @global object $post WordPress Post object.
763
-     * @param string $column The column name.
764
-     * @param int $post_id The post ID.
765
-     */
766
-    function geodir_manage_post_columns($column, $post_id)
767
-    {
768
-        global $post, $wpdb;
769
-
770
-        switch ($column):
771
-            /* If displaying the 'city' column. */
772
-            case 'location' :
773
-                $location_id = geodir_get_post_meta($post->ID, 'post_location_id', true);
774
-                $location = geodir_get_location($location_id);
775
-                /* If no city is found, output a default message. */
776
-                if (empty($location)) {
777
-                    _e('Unknown', 'geodirectory');
778
-                } else {
779
-                    /* If there is a city id, append 'city name' to the text string. */
780
-                    $add_location_id = $location_id > 0 ? ' (' . $location_id . ')' : '';
781
-                    echo(__($location->country, 'geodirectory') . '-' . $location->region . '-' . $location->city . $add_location_id);
782
-                }
783
-                break;
784
-
785
-            /* If displaying the 'expire' column. */
786
-            case 'expire' :
787
-                $expire_date = geodir_get_post_meta($post->ID, 'expire_date', true);
788
-                $d1 = $expire_date; // get expire_date
789
-                $d2 = date('Y-m-d'); // get current date
790
-                $state = __('days left', 'geodirectory');
791
-                $date_diff_text = '';
792
-                $expire_class = 'expire_left';
793
-                if ($expire_date != 'Never') {
794
-                    if (strtotime($d1) < strtotime($d2)) {
795
-                        $state = __('days overdue', 'geodirectory');
796
-                        $expire_class = 'expire_over';
797
-                    }
798
-                    $date_diff = round(abs(strtotime($d1) - strtotime($d2)) / 86400); // get the difference in days
799
-                    $date_diff_text = '<br /><span class="' . $expire_class . '">(' . $date_diff . ' ' . $state . ')</span>';
800
-                }
801
-                /* If no expire_date is found, output a default message. */
802
-                if (empty($expire_date))
803
-                    echo __('Unknown', 'geodirectory');
804
-                /* If there is a expire_date, append 'days left' to the text string. */
805
-                else
806
-                    echo $expire_date . $date_diff_text;
807
-                break;
808
-
809
-            /* If displaying the 'categorys' column. */
810
-            case 'categorys' :
811
-
812
-                /* Get the categorys for the post. */
813
-
814
-
815
-                $terms = wp_get_object_terms($post_id, get_object_taxonomies($post));
816
-
817
-                /* If terms were found. */
818
-                if (!empty($terms)) {
819
-                    $out = array();
820
-                    /* Loop through each term, linking to the 'edit posts' page for the specific term. */
821
-                    foreach ($terms as $term) {
822
-                        if (!strstr($term->taxonomy, 'tag')) {
823
-                            $out[] = sprintf('<a href="%s">%s</a>',
824
-                                esc_url(add_query_arg(array('post_type' => $post->post_type, $term->taxonomy => $term->slug), 'edit.php')),
825
-                                esc_html(sanitize_term_field('name', $term->name, $term->term_id, $term->taxonomy, 'display'))
826
-                            );
827
-                        }
828
-                    }
829
-                    /* Join the terms, separating them with a comma. */
830
-                    echo(join(', ', $out));
831
-                } /* If no terms were found, output a default message. */
832
-                else {
833
-                    _e('No Categories', 'geodirectory');
834
-                }
835
-                break;
756
+	/**
757
+	 * Adds content to our custom post listing page columns.
758
+	 *
759
+	 * @since 1.0.0
760
+	 * @package GeoDirectory
761
+	 * @global object $wpdb WordPress Database object.
762
+	 * @global object $post WordPress Post object.
763
+	 * @param string $column The column name.
764
+	 * @param int $post_id The post ID.
765
+	 */
766
+	function geodir_manage_post_columns($column, $post_id)
767
+	{
768
+		global $post, $wpdb;
769
+
770
+		switch ($column):
771
+			/* If displaying the 'city' column. */
772
+			case 'location' :
773
+				$location_id = geodir_get_post_meta($post->ID, 'post_location_id', true);
774
+				$location = geodir_get_location($location_id);
775
+				/* If no city is found, output a default message. */
776
+				if (empty($location)) {
777
+					_e('Unknown', 'geodirectory');
778
+				} else {
779
+					/* If there is a city id, append 'city name' to the text string. */
780
+					$add_location_id = $location_id > 0 ? ' (' . $location_id . ')' : '';
781
+					echo(__($location->country, 'geodirectory') . '-' . $location->region . '-' . $location->city . $add_location_id);
782
+				}
783
+				break;
784
+
785
+			/* If displaying the 'expire' column. */
786
+			case 'expire' :
787
+				$expire_date = geodir_get_post_meta($post->ID, 'expire_date', true);
788
+				$d1 = $expire_date; // get expire_date
789
+				$d2 = date('Y-m-d'); // get current date
790
+				$state = __('days left', 'geodirectory');
791
+				$date_diff_text = '';
792
+				$expire_class = 'expire_left';
793
+				if ($expire_date != 'Never') {
794
+					if (strtotime($d1) < strtotime($d2)) {
795
+						$state = __('days overdue', 'geodirectory');
796
+						$expire_class = 'expire_over';
797
+					}
798
+					$date_diff = round(abs(strtotime($d1) - strtotime($d2)) / 86400); // get the difference in days
799
+					$date_diff_text = '<br /><span class="' . $expire_class . '">(' . $date_diff . ' ' . $state . ')</span>';
800
+				}
801
+				/* If no expire_date is found, output a default message. */
802
+				if (empty($expire_date))
803
+					echo __('Unknown', 'geodirectory');
804
+				/* If there is a expire_date, append 'days left' to the text string. */
805
+				else
806
+					echo $expire_date . $date_diff_text;
807
+				break;
836 808
 
837
-        endswitch;
838
-    }
809
+			/* If displaying the 'categorys' column. */
810
+			case 'categorys' :
811
+
812
+				/* Get the categorys for the post. */
813
+
814
+
815
+				$terms = wp_get_object_terms($post_id, get_object_taxonomies($post));
816
+
817
+				/* If terms were found. */
818
+				if (!empty($terms)) {
819
+					$out = array();
820
+					/* Loop through each term, linking to the 'edit posts' page for the specific term. */
821
+					foreach ($terms as $term) {
822
+						if (!strstr($term->taxonomy, 'tag')) {
823
+							$out[] = sprintf('<a href="%s">%s</a>',
824
+								esc_url(add_query_arg(array('post_type' => $post->post_type, $term->taxonomy => $term->slug), 'edit.php')),
825
+								esc_html(sanitize_term_field('name', $term->name, $term->term_id, $term->taxonomy, 'display'))
826
+							);
827
+						}
828
+					}
829
+					/* Join the terms, separating them with a comma. */
830
+					echo(join(', ', $out));
831
+				} /* If no terms were found, output a default message. */
832
+				else {
833
+					_e('No Categories', 'geodirectory');
834
+				}
835
+				break;
836
+
837
+		endswitch;
838
+	}
839 839
 }
840 840
 
841 841
 
842 842
 if (!function_exists('geodir_post_sortable_columns')) {
843
-    /**
844
-     * Makes admin post listing page columns sortable.
845
-     *
846
-     * @since 1.0.0
847
-     * @package GeoDirectory
848
-     * @param array $columns The column array.
849
-     * @return array Altered column array.
850
-     */
851
-    function geodir_post_sortable_columns($columns)
852
-    {
853
-
854
-        $columns['expire'] = 'expire';
855
-
856
-        return $columns;
857
-    }
843
+	/**
844
+	 * Makes admin post listing page columns sortable.
845
+	 *
846
+	 * @since 1.0.0
847
+	 * @package GeoDirectory
848
+	 * @param array $columns The column array.
849
+	 * @return array Altered column array.
850
+	 */
851
+	function geodir_post_sortable_columns($columns)
852
+	{
853
+
854
+		$columns['expire'] = 'expire';
855
+
856
+		return $columns;
857
+	}
858 858
 }
859 859
 
860 860
 /**
@@ -868,32 +868,32 @@  discard block
 block discarded – undo
868 868
  * @param int $post_id The post ID.
869 869
  */
870 870
 function geodir_post_information_save($post_id, $post) {
871
-    global $wpdb, $current_user;
871
+	global $wpdb, $current_user;
872 872
 
873
-    if (isset($post->post_type) && ($post->post_type=='nav_menu_item' || $post->post_type=='page' || $post->post_type=='post')) {
874
-        return;
875
-    }
873
+	if (isset($post->post_type) && ($post->post_type=='nav_menu_item' || $post->post_type=='page' || $post->post_type=='post')) {
874
+		return;
875
+	}
876 876
 
877
-    $geodir_posttypes = geodir_get_posttypes();
877
+	$geodir_posttypes = geodir_get_posttypes();
878 878
 
879
-    if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)
880
-        return;
879
+	if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)
880
+		return;
881 881
 
882
-    if (!wp_is_post_revision($post_id) && isset($post->post_type) && in_array($post->post_type, $geodir_posttypes)) {
883
-        if (isset($_REQUEST['_status']))
884
-            geodir_change_post_status($post_id, $_REQUEST['_status']);
882
+	if (!wp_is_post_revision($post_id) && isset($post->post_type) && in_array($post->post_type, $geodir_posttypes)) {
883
+		if (isset($_REQUEST['_status']))
884
+			geodir_change_post_status($post_id, $_REQUEST['_status']);
885 885
 
886
-        if (isset($_REQUEST['action']) && ($_REQUEST['action'] == 'trash' || $_REQUEST['action'] == 'untrash'))
887
-            return;
886
+		if (isset($_REQUEST['action']) && ($_REQUEST['action'] == 'trash' || $_REQUEST['action'] == 'untrash'))
887
+			return;
888 888
 
889
-        if (!isset($_POST['geodir_post_info_noncename']) || !wp_verify_nonce($_POST['geodir_post_info_noncename'], plugin_basename(__FILE__)))
890
-            return;
889
+		if (!isset($_POST['geodir_post_info_noncename']) || !wp_verify_nonce($_POST['geodir_post_info_noncename'], plugin_basename(__FILE__)))
890
+			return;
891 891
 
892
-        if (!isset($_POST['geodir_post_attachments_noncename']) || !wp_verify_nonce($_POST['geodir_post_attachments_noncename'], plugin_basename(__FILE__)))
893
-            return;
892
+		if (!isset($_POST['geodir_post_attachments_noncename']) || !wp_verify_nonce($_POST['geodir_post_attachments_noncename'], plugin_basename(__FILE__)))
893
+			return;
894 894
 
895
-        geodir_save_listing($_REQUEST);
896
-    }
895
+		geodir_save_listing($_REQUEST);
896
+	}
897 897
 }
898 898
 
899 899
 /**
@@ -909,102 +909,102 @@  discard block
 block discarded – undo
909 909
  */
910 910
 function geodir_admin_fields($options)
911 911
 {
912
-    global $geodirectory;
913
-
914
-    $first_title = true;
915
-    $tab_id = '';
916
-    $i = 0;
917
-    foreach ($options as $value) :
918
-        if (!isset($value['name'])) $value['name'] = '';
919
-        if (!isset($value['class'])) $value['class'] = '';
920
-        if (!isset($value['css'])) $value['css'] = '';
921
-        if (!isset($value['std'])) $value['std'] = '';
922
-        $desc = '';
923
-        switch ($value['type']) :
924
-            case 'dummy_installer':
925
-                $post_type = isset($value['post_type']) ? $value['post_type'] : 'gd_place';
926
-                geodir_autoinstall_admin_header($post_type);
927
-                break;
928
-            case 'title':
929
-
930
-                if ($i == 0) {
931
-                    echo '<dl id="geodir_oiption_tabs" class="gd-tab-head"></dl>';
932
-                    echo '<div class="inner_content_tab_main">';
933
-                }
912
+	global $geodirectory;
913
+
914
+	$first_title = true;
915
+	$tab_id = '';
916
+	$i = 0;
917
+	foreach ($options as $value) :
918
+		if (!isset($value['name'])) $value['name'] = '';
919
+		if (!isset($value['class'])) $value['class'] = '';
920
+		if (!isset($value['css'])) $value['css'] = '';
921
+		if (!isset($value['std'])) $value['std'] = '';
922
+		$desc = '';
923
+		switch ($value['type']) :
924
+			case 'dummy_installer':
925
+				$post_type = isset($value['post_type']) ? $value['post_type'] : 'gd_place';
926
+				geodir_autoinstall_admin_header($post_type);
927
+				break;
928
+			case 'title':
929
+
930
+				if ($i == 0) {
931
+					echo '<dl id="geodir_oiption_tabs" class="gd-tab-head"></dl>';
932
+					echo '<div class="inner_content_tab_main">';
933
+				}
934 934
 
935
-                $i++;
935
+				$i++;
936 936
 
937
-                if (isset($value['id']) && $value['id'])
938
-                    $tab_id = $value['id'];
937
+				if (isset($value['id']) && $value['id'])
938
+					$tab_id = $value['id'];
939 939
 
940
-                if (isset($value['desc']) && $value['desc'])
941
-                    $desc = '<span style=" text-transform:none;">:- ' . $value['desc'] . '</span>';
940
+				if (isset($value['desc']) && $value['desc'])
941
+					$desc = '<span style=" text-transform:none;">:- ' . $value['desc'] . '</span>';
942 942
 
943
-                if (isset($value['name']) && $value['name']) {
944
-                    if ($first_title === true) {
945
-                        $first_title = false;
946
-                    } else {
947
-                        echo '</div>';
948
-                    }
949
-                    echo '<dd id="' . trim($tab_id) . '" class="geodir_option_tabs" ><a href="javascript:void(0);">' . $value['name'] . '</a></dd>';
943
+				if (isset($value['name']) && $value['name']) {
944
+					if ($first_title === true) {
945
+						$first_title = false;
946
+					} else {
947
+						echo '</div>';
948
+					}
949
+					echo '<dd id="' . trim($tab_id) . '" class="geodir_option_tabs" ><a href="javascript:void(0);">' . $value['name'] . '</a></dd>';
950 950
 
951
-                    echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >';
952
-                }
951
+					echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >';
952
+				}
953 953
 
954
-                /**
955
-                 * Called after a GeoDirectory settings title is output in the GD settings page.
956
-                 *
957
-                 * The action is called dynamically geodir_settings_$value['id'].
958
-                 *
959
-                 * @since 1.0.0
960
-                 */
961
-                do_action('geodir_settings_' . sanitize_title($value['id']));
962
-                break;
963
-
964
-            case 'no_tabs':
965
-
966
-                echo '<div class="inner_content_tab_main">';
967
-                echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >';
968
-
969
-                break;
970
-
971
-            case 'sectionstart':
972
-                if (isset($value['desc']) && $value['desc'])
973
-                    $desc = '<span style=" text-transform:none;"> - ' . $value['desc'] . '</span>';
974
-                if (isset($value['name']) && $value['name'])
975
-                    echo '<h3>' . $value['name'] . $desc . '</h3>';
976
-                /**
977
-                 * Called after a GeoDirectory settings sectionstart is output in the GD settings page.
978
-                 *
979
-                 * The action is called dynamically geodir_settings_$value['id']_start.
980
-                 *
981
-                 * @since 1.0.0
982
-                 */
983
-                if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_start');
984
-                echo '<table class="form-table">' . "\n\n";
985
-
986
-                break;
987
-            case 'sectionend':
988
-                /**
989
-                 * Called before a GeoDirectory settings sectionend is output in the GD settings page.
990
-                 *
991
-                 * The action is called dynamically geodir_settings_$value['id']_end.
992
-                 *
993
-                 * @since 1.0.0
994
-                 */
995
-                if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_end');
996
-                echo '</table>';
997
-                /**
998
-                 * Called after a GeoDirectory settings sectionend is output in the GD settings page.
999
-                 *
1000
-                 * The action is called dynamically geodir_settings_$value['id']_end.
1001
-                 *
1002
-                 * @since 1.0.0
1003
-                 */
1004
-                if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_after');
1005
-                break;
1006
-            case 'text':
1007
-                ?>
954
+				/**
955
+				 * Called after a GeoDirectory settings title is output in the GD settings page.
956
+				 *
957
+				 * The action is called dynamically geodir_settings_$value['id'].
958
+				 *
959
+				 * @since 1.0.0
960
+				 */
961
+				do_action('geodir_settings_' . sanitize_title($value['id']));
962
+				break;
963
+
964
+			case 'no_tabs':
965
+
966
+				echo '<div class="inner_content_tab_main">';
967
+				echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >';
968
+
969
+				break;
970
+
971
+			case 'sectionstart':
972
+				if (isset($value['desc']) && $value['desc'])
973
+					$desc = '<span style=" text-transform:none;"> - ' . $value['desc'] . '</span>';
974
+				if (isset($value['name']) && $value['name'])
975
+					echo '<h3>' . $value['name'] . $desc . '</h3>';
976
+				/**
977
+				 * Called after a GeoDirectory settings sectionstart is output in the GD settings page.
978
+				 *
979
+				 * The action is called dynamically geodir_settings_$value['id']_start.
980
+				 *
981
+				 * @since 1.0.0
982
+				 */
983
+				if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_start');
984
+				echo '<table class="form-table">' . "\n\n";
985
+
986
+				break;
987
+			case 'sectionend':
988
+				/**
989
+				 * Called before a GeoDirectory settings sectionend is output in the GD settings page.
990
+				 *
991
+				 * The action is called dynamically geodir_settings_$value['id']_end.
992
+				 *
993
+				 * @since 1.0.0
994
+				 */
995
+				if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_end');
996
+				echo '</table>';
997
+				/**
998
+				 * Called after a GeoDirectory settings sectionend is output in the GD settings page.
999
+				 *
1000
+				 * The action is called dynamically geodir_settings_$value['id']_end.
1001
+				 *
1002
+				 * @since 1.0.0
1003
+				 */
1004
+				if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_after');
1005
+				break;
1006
+			case 'text':
1007
+				?>
1008 1008
                 <tr valign="top">
1009 1009
                 <th scope="row" class="titledesc"><?php echo $value['name']; ?></th>
1010 1010
                 <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>"
@@ -1013,15 +1013,15 @@  discard block
 block discarded – undo
1013 1013
                                            <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1014 1014
                                            style=" <?php echo esc_attr($value['css']); ?>"
1015 1015
                                            value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
1016
-                                               echo esc_attr(stripslashes(get_option($value['id'])));
1017
-                                           } else {
1018
-                                               echo esc_attr($value['std']);
1019
-                                           } ?>"/> <span class="description"><?php echo $value['desc']; ?></span></td>
1016
+											   echo esc_attr(stripslashes(get_option($value['id'])));
1017
+										   } else {
1018
+											   echo esc_attr($value['std']);
1019
+										   } ?>"/> <span class="description"><?php echo $value['desc']; ?></span></td>
1020 1020
                 </tr><?php
1021
-                break;
1021
+				break;
1022 1022
 
1023
-            case 'map-key':
1024
-                ?>
1023
+			case 'map-key':
1024
+				?>
1025 1025
                 <tr valign="top">
1026 1026
                 <th scope="row" class="titledesc"><?php echo $value['name']; ?></th>
1027 1027
                 <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>"
@@ -1030,18 +1030,18 @@  discard block
 block discarded – undo
1030 1030
                                            <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1031 1031
                                            style=" <?php echo esc_attr($value['css']); ?>"
1032 1032
                                            value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
1033
-                                               echo esc_attr(stripslashes(get_option($value['id'])));
1034
-                                           } else {
1035
-                                               echo esc_attr($value['std']);
1036
-                                           } ?>"/>
1033
+											   echo esc_attr(stripslashes(get_option($value['id'])));
1034
+										   } else {
1035
+											   echo esc_attr($value['std']);
1036
+										   } ?>"/>
1037 1037
                     <?php $gm_api_url = 'https://console.developers.google.com/henhouse/?pb=["hh-1","maps_backend",null,[],"https://developers.google.com",null,["static_maps_backend","street_view_image_backend","maps_embed_backend","places_backend","geocoding_backend","directions_backend","distance_matrix_backend","geolocation","elevation_backend","timezone_backend","maps_backend"],null]';?>
1038 1038
                     <a id="gd-api-key" onclick='window.open("<?php echo wp_slash($gm_api_url);?>", "newwindow", "width=600, height=400"); return false;' href='<?php echo $gm_api_url;?>' class="button-primary" name="<?php _e('Generate API Key - ( MUST be logged in to your Google account )','geodirectory');?>" ><?php _e('Generate API Key','geodirectory');?></a>
1039 1039
                     <span class="description"><?php echo $value['desc']; ?></span></td>
1040 1040
                 </tr><?php
1041
-                break;
1041
+				break;
1042 1042
 
1043
-            case 'password':
1044
-                ?>
1043
+			case 'password':
1044
+				?>
1045 1045
                 <tr valign="top">
1046 1046
                 <th scope="row" class="titledesc"><?php echo $value['name']; ?></th>
1047 1047
                 <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>"
@@ -1050,42 +1050,42 @@  discard block
 block discarded – undo
1050 1050
                                            <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1051 1051
                                            style="<?php echo esc_attr($value['css']); ?>"
1052 1052
                                            value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
1053
-                                               echo esc_attr(stripslashes(get_option($value['id'])));
1054
-                                           } else {
1055
-                                               echo esc_attr($value['std']);
1056
-                                           } ?>"/> <span class="description"><?php echo $value['desc']; ?></span></td>
1053
+											   echo esc_attr(stripslashes(get_option($value['id'])));
1054
+										   } else {
1055
+											   echo esc_attr($value['std']);
1056
+										   } ?>"/> <span class="description"><?php echo $value['desc']; ?></span></td>
1057 1057
                 </tr><?php
1058
-                break;
1058
+				break;
1059 1059
 
1060
-            case 'html_content':
1061
-                ?>
1060
+			case 'html_content':
1061
+				?>
1062 1062
                 <tr valign="top">
1063 1063
                 <th scope="row" class="titledesc"><?php echo $value['name']; ?></th>
1064 1064
                 <td class="forminp"><span class="description"><?php echo $value['desc']; ?></span></td>
1065 1065
                 </tr><?php
1066
-                break;
1066
+				break;
1067 1067
 
1068
-            case 'color' :
1069
-                ?>
1068
+			case 'color' :
1069
+				?>
1070 1070
                 <tr valign="top">
1071 1071
                 <th scope="row" class="titledesc"><?php echo $value['name']; ?></th>
1072 1072
                 <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>"
1073 1073
                                            id="<?php echo esc_attr($value['id']); ?>" type="text"
1074 1074
                                            style="<?php echo esc_attr($value['css']); ?>"
1075 1075
                                            value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
1076
-                                               echo esc_attr(stripslashes(get_option($value['id'])));
1077
-                                           } else {
1078
-                                               echo esc_attr($value['std']);
1079
-                                           } ?>" class="colorpick"/> <span
1076
+											   echo esc_attr(stripslashes(get_option($value['id'])));
1077
+										   } else {
1078
+											   echo esc_attr($value['std']);
1079
+										   } ?>" class="colorpick"/> <span
1080 1080
                         class="description"><?php echo $value['desc']; ?></span>
1081 1081
 
1082 1082
                     <div id="colorPickerDiv_<?php echo esc_attr($value['id']); ?>" class="colorpickdiv"
1083 1083
                          style="z-index: 100;background:#eee;border:1px solid #ccc;position:absolute;display:none;"></div>
1084 1084
                 </td>
1085 1085
                 </tr><?php
1086
-                break;
1087
-            case 'image_width' :
1088
-                ?>
1086
+				break;
1087
+			case 'image_width' :
1088
+				?>
1089 1089
                 <tr valign="top">
1090 1090
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1091 1091
                 <td class="forminp">
@@ -1107,11 +1107,11 @@  discard block
 block discarded – undo
1107 1107
 
1108 1108
                     <span class="description"><?php echo $value['desc'] ?></span></td>
1109 1109
                 </tr><?php
1110
-                break;
1111
-            case 'select':
1112
-                $option_value = get_option($value['id']);
1113
-                $option_value = !empty($option_value) ? stripslashes_deep($option_value) : $option_value;
1114
-                ?>
1110
+				break;
1111
+			case 'select':
1112
+				$option_value = get_option($value['id']);
1113
+				$option_value = !empty($option_value) ? stripslashes_deep($option_value) : $option_value;
1114
+				?>
1115 1115
                 <tr valign="top">
1116 1116
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1117 1117
                 <td class="forminp"><select name="<?php echo esc_attr($value['id']); ?>"
@@ -1120,33 +1120,33 @@  discard block
 block discarded – undo
1120 1120
                                             class="<?php if (isset($value['class'])) echo $value['class']; ?>"
1121 1121
                                             option-ajaxchosen="false">
1122 1122
                         <?php
1123
-                        foreach ($value['options'] as $key => $val) {
1124
-                            $geodir_select_value = '';
1125
-                            if ($option_value != '') {
1126
-                                if ($option_value != '' && $option_value == $key)
1127
-                                    $geodir_select_value = ' selected="selected" ';
1128
-                            } else {
1129
-                                if ($value['std'] == $key)
1130
-                                    $geodir_select_value = ' selected="selected" ';
1131
-                            }
1132
-                            ?>
1123
+						foreach ($value['options'] as $key => $val) {
1124
+							$geodir_select_value = '';
1125
+							if ($option_value != '') {
1126
+								if ($option_value != '' && $option_value == $key)
1127
+									$geodir_select_value = ' selected="selected" ';
1128
+							} else {
1129
+								if ($value['std'] == $key)
1130
+									$geodir_select_value = ' selected="selected" ';
1131
+							}
1132
+							?>
1133 1133
                             <option
1134 1134
                                 value="<?php echo esc_attr($key); ?>" <?php echo $geodir_select_value; ?> ><?php echo geodir_utf8_ucfirst($val) ?></option>
1135 1135
                         <?php
1136
-                        }
1137
-                        ?>
1136
+						}
1137
+						?>
1138 1138
                     </select> <span class="description"><?php echo $value['desc'] ?></span>
1139 1139
                 </td>
1140 1140
                 </tr><?php
1141
-                break;
1141
+				break;
1142 1142
 
1143
-            case 'multiselect':
1144
-                $option_values = get_option($value['id']);
1145
-                if ($option_values === '' && !empty($value['std']) && is_array($value['std'])) {
1146
-                   $option_values = $value['std'];
1147
-                }
1148
-                $option_values = !empty($option_values) ? stripslashes_deep($option_values) : $option_values;
1149
-                ?>
1143
+			case 'multiselect':
1144
+				$option_values = get_option($value['id']);
1145
+				if ($option_values === '' && !empty($value['std']) && is_array($value['std'])) {
1146
+				   $option_values = $value['std'];
1147
+				}
1148
+				$option_values = !empty($option_values) ? stripslashes_deep($option_values) : $option_values;
1149
+				?>
1150 1150
                 <tr valign="top">
1151 1151
                 <th scope="row" class="titledesc"><?php echo $value['name']; ?></th>
1152 1152
                 <td class="forminp"><select multiple="multiple" name="<?php echo esc_attr($value['id']); ?>[]"
@@ -1156,26 +1156,26 @@  discard block
 block discarded – undo
1156 1156
                                             data-placeholder="<?php if (isset($value['placeholder_text'])) echo $value['placeholder_text'];?>"
1157 1157
                                             option-ajaxchosen="false">
1158 1158
                         <?php
1159
-                        foreach ($value['options'] as $key => $val) {
1160
-                            if (strpos($key, 'optgroup_start-') === 0) {
1161
-                                ?><optgroup label="<?php echo geodir_utf8_ucfirst($val); ?>"><?php
1162
-                            } else if (strpos($key, 'optgroup_end-') === 0) {
1163
-                                ?></optgroup><?php
1164
-                            } else {
1165
-                                ?>
1159
+						foreach ($value['options'] as $key => $val) {
1160
+							if (strpos($key, 'optgroup_start-') === 0) {
1161
+								?><optgroup label="<?php echo geodir_utf8_ucfirst($val); ?>"><?php
1162
+							} else if (strpos($key, 'optgroup_end-') === 0) {
1163
+								?></optgroup><?php
1164
+							} else {
1165
+								?>
1166 1166
                                 <option value="<?php echo esc_attr($key); ?>" <?php selected(true, (is_array($option_values) && in_array($key, $option_values)));?>>
1167 1167
                                     <?php echo geodir_utf8_ucfirst($val) ?>
1168 1168
                                 </option>
1169 1169
                             <?php
1170
-                            }
1171
-                        }
1172
-                        ?>
1170
+							}
1171
+						}
1172
+						?>
1173 1173
                     </select> <span class="description"><?php echo $value['desc'] ?></span>
1174 1174
                 </td>
1175 1175
                 </tr><?php
1176
-                break;
1177
-            case 'file':
1178
-                ?>
1176
+				break;
1177
+			case 'file':
1178
+				?>
1179 1179
                 <tr valign="top">
1180 1180
                 <th scope="row" class="titledesc"><?php echo $value['name']; ?></th>
1181 1181
                 <td class="forminp">
@@ -1195,87 +1195,87 @@  discard block
 block discarded – undo
1195 1195
                     <?php } ?>
1196 1196
                 </td>
1197 1197
                 </tr><?php
1198
-                break;
1199
-            case 'map_default_settings' :
1200
-                ?>
1198
+				break;
1199
+			case 'map_default_settings' :
1200
+				?>
1201 1201
 
1202 1202
                 <tr valign="top">
1203 1203
                     <th class="titledesc" width="40%"><?php _e('Default map language', 'geodirectory');?></th>
1204 1204
                     <td width="60%">
1205 1205
                         <select name="geodir_default_map_language" style="width:60%">
1206 1206
                             <?php
1207
-                            $arr_map_langages = array(
1208
-                                'ar' => __('ARABIC', 'geodirectory'),
1209
-                                'eu' => __('BASQUE', 'geodirectory'),
1210
-                                'bg' => __('BULGARIAN', 'geodirectory'),
1211
-                                'bn' => __('BENGALI', 'geodirectory'),
1212
-                                'ca' => __('CATALAN', 'geodirectory'),
1213
-                                'cs' => __('CZECH', 'geodirectory'),
1214
-                                'da' => __('DANISH', 'geodirectory'),
1215
-                                'de' => __('GERMAN', 'geodirectory'),
1216
-                                'el' => __('GREEK', 'geodirectory'),
1217
-                                'en' => __('ENGLISH', 'geodirectory'),
1218
-                                'en-AU' => __('ENGLISH (AUSTRALIAN)', 'geodirectory'),
1219
-                                'en-GB' => __('ENGLISH (GREAT BRITAIN)', 'geodirectory'),
1220
-                                'es' => __('SPANISH', 'geodirectory'),
1221
-                                'eu' => __('BASQUE', 'geodirectory'),
1222
-                                'fa' => __('FARSI', 'geodirectory'),
1223
-                                'fi' => __('FINNISH', 'geodirectory'),
1224
-                                'fil' => __('FILIPINO', 'geodirectory'),
1225
-                                'fr' => __('FRENCH', 'geodirectory'),
1226
-                                'gl' => __('GALICIAN', 'geodirectory'),
1227
-                                'gu' => __('GUJARATI', 'geodirectory'),
1228
-                                'hi' => __('HINDI', 'geodirectory'),
1229
-                                'hr' => __('CROATIAN', 'geodirectory'),
1230
-                                'hu' => __('HUNGARIAN', 'geodirectory'),
1231
-                                'id' => __('INDONESIAN', 'geodirectory'),
1232
-                                'it' => __('ITALIAN', 'geodirectory'),
1233
-                                'iw' => __('HEBREW', 'geodirectory'),
1234
-                                'ja' => __('JAPANESE', 'geodirectory'),
1235
-                                'kn' => __('KANNADA', 'geodirectory'),
1236
-                                'ko' => __('KOREAN', 'geodirectory'),
1237
-                                'lt' => __('LITHUANIAN', 'geodirectory'),
1238
-                                'lv' => __('LATVIAN', 'geodirectory'),
1239
-                                'ml' => __('MALAYALAM', 'geodirectory'),
1240
-                                'mr' => __('MARATHI', 'geodirectory'),
1241
-                                'nl' => __('DUTCH', 'geodirectory'),
1242
-                                'no' => __('NORWEGIAN', 'geodirectory'),
1243
-                                'pl' => __('POLISH', 'geodirectory'),
1244
-                                'pt' => __('PORTUGUESE', 'geodirectory'),
1245
-                                'pt-BR' => __('PORTUGUESE (BRAZIL)', 'geodirectory'),
1246
-                                'pt-PT' => __('PORTUGUESE (PORTUGAL)', 'geodirectory'),
1247
-                                'ro' => __('ROMANIAN', 'geodirectory'),
1248
-                                'ru' => __('RUSSIAN', 'geodirectory'),
1249
-                                'ru' => __('RUSSIAN', 'geodirectory'),
1250
-                                'sk' => __('SLOVAK', 'geodirectory'),
1251
-                                'sl' => __('SLOVENIAN', 'geodirectory'),
1252
-                                'sr' => __('SERBIAN', 'geodirectory'),
1253
-                                'sv' => __('	SWEDISH', 'geodirectory'),
1254
-                                'tl' => __('TAGALOG', 'geodirectory'),
1255
-                                'ta' => __('TAMIL', 'geodirectory'),
1256
-                                'te' => __('TELUGU', 'geodirectory'),
1257
-                                'th' => __('THAI', 'geodirectory'),
1258
-                                'tr' => __('TURKISH', 'geodirectory'),
1259
-                                'uk' => __('UKRAINIAN', 'geodirectory'),
1260
-                                'vi' => __('VIETNAMESE', 'geodirectory'),
1261
-                                'zh-CN' => __('CHINESE (SIMPLIFIED)', 'geodirectory'),
1262
-                                'zh-TW' => __('CHINESE (TRADITIONAL)', 'geodirectory'),
1263
-                            );
1264
-                            $geodir_default_map_language = get_option('geodir_default_map_language');
1265
-                            if (empty($geodir_default_map_language))
1266
-                                $geodir_default_map_language = 'en';
1267
-                            foreach ($arr_map_langages as $language_key => $language_txt) {
1268
-                                if (!empty($geodir_default_map_language) && $language_key == $geodir_default_map_language)
1269
-                                    $geodir_default_language_selected = "selected='selected'";
1270
-                                else
1271
-                                    $geodir_default_language_selected = '';
1272
-
1273
-                                ?>
1207
+							$arr_map_langages = array(
1208
+								'ar' => __('ARABIC', 'geodirectory'),
1209
+								'eu' => __('BASQUE', 'geodirectory'),
1210
+								'bg' => __('BULGARIAN', 'geodirectory'),
1211
+								'bn' => __('BENGALI', 'geodirectory'),
1212
+								'ca' => __('CATALAN', 'geodirectory'),
1213
+								'cs' => __('CZECH', 'geodirectory'),
1214
+								'da' => __('DANISH', 'geodirectory'),
1215
+								'de' => __('GERMAN', 'geodirectory'),
1216
+								'el' => __('GREEK', 'geodirectory'),
1217
+								'en' => __('ENGLISH', 'geodirectory'),
1218
+								'en-AU' => __('ENGLISH (AUSTRALIAN)', 'geodirectory'),
1219
+								'en-GB' => __('ENGLISH (GREAT BRITAIN)', 'geodirectory'),
1220
+								'es' => __('SPANISH', 'geodirectory'),
1221
+								'eu' => __('BASQUE', 'geodirectory'),
1222
+								'fa' => __('FARSI', 'geodirectory'),
1223
+								'fi' => __('FINNISH', 'geodirectory'),
1224
+								'fil' => __('FILIPINO', 'geodirectory'),
1225
+								'fr' => __('FRENCH', 'geodirectory'),
1226
+								'gl' => __('GALICIAN', 'geodirectory'),
1227
+								'gu' => __('GUJARATI', 'geodirectory'),
1228
+								'hi' => __('HINDI', 'geodirectory'),
1229
+								'hr' => __('CROATIAN', 'geodirectory'),
1230
+								'hu' => __('HUNGARIAN', 'geodirectory'),
1231
+								'id' => __('INDONESIAN', 'geodirectory'),
1232
+								'it' => __('ITALIAN', 'geodirectory'),
1233
+								'iw' => __('HEBREW', 'geodirectory'),
1234
+								'ja' => __('JAPANESE', 'geodirectory'),
1235
+								'kn' => __('KANNADA', 'geodirectory'),
1236
+								'ko' => __('KOREAN', 'geodirectory'),
1237
+								'lt' => __('LITHUANIAN', 'geodirectory'),
1238
+								'lv' => __('LATVIAN', 'geodirectory'),
1239
+								'ml' => __('MALAYALAM', 'geodirectory'),
1240
+								'mr' => __('MARATHI', 'geodirectory'),
1241
+								'nl' => __('DUTCH', 'geodirectory'),
1242
+								'no' => __('NORWEGIAN', 'geodirectory'),
1243
+								'pl' => __('POLISH', 'geodirectory'),
1244
+								'pt' => __('PORTUGUESE', 'geodirectory'),
1245
+								'pt-BR' => __('PORTUGUESE (BRAZIL)', 'geodirectory'),
1246
+								'pt-PT' => __('PORTUGUESE (PORTUGAL)', 'geodirectory'),
1247
+								'ro' => __('ROMANIAN', 'geodirectory'),
1248
+								'ru' => __('RUSSIAN', 'geodirectory'),
1249
+								'ru' => __('RUSSIAN', 'geodirectory'),
1250
+								'sk' => __('SLOVAK', 'geodirectory'),
1251
+								'sl' => __('SLOVENIAN', 'geodirectory'),
1252
+								'sr' => __('SERBIAN', 'geodirectory'),
1253
+								'sv' => __('	SWEDISH', 'geodirectory'),
1254
+								'tl' => __('TAGALOG', 'geodirectory'),
1255
+								'ta' => __('TAMIL', 'geodirectory'),
1256
+								'te' => __('TELUGU', 'geodirectory'),
1257
+								'th' => __('THAI', 'geodirectory'),
1258
+								'tr' => __('TURKISH', 'geodirectory'),
1259
+								'uk' => __('UKRAINIAN', 'geodirectory'),
1260
+								'vi' => __('VIETNAMESE', 'geodirectory'),
1261
+								'zh-CN' => __('CHINESE (SIMPLIFIED)', 'geodirectory'),
1262
+								'zh-TW' => __('CHINESE (TRADITIONAL)', 'geodirectory'),
1263
+							);
1264
+							$geodir_default_map_language = get_option('geodir_default_map_language');
1265
+							if (empty($geodir_default_map_language))
1266
+								$geodir_default_map_language = 'en';
1267
+							foreach ($arr_map_langages as $language_key => $language_txt) {
1268
+								if (!empty($geodir_default_map_language) && $language_key == $geodir_default_map_language)
1269
+									$geodir_default_language_selected = "selected='selected'";
1270
+								else
1271
+									$geodir_default_language_selected = '';
1272
+
1273
+								?>
1274 1274
                                 <option
1275 1275
                                     value="<?php echo $language_key?>" <?php echo $geodir_default_language_selected; ?>><?php echo $language_txt; ?></option>
1276 1276
 
1277 1277
                             <?php }
1278
-                            ?>
1278
+							?>
1279 1279
                         </select>
1280 1280
                     </td>
1281 1281
                 </tr>
@@ -1286,46 +1286,46 @@  discard block
 block discarded – undo
1286 1286
                     <td width="60%">
1287 1287
                         <select name="geodir_default_map_search_pt" style="width:60%">
1288 1288
                             <?php
1289
-                            $post_types = geodir_get_posttypes('array');
1290
-                            $geodir_default_map_search_pt = get_option('geodir_default_map_search_pt');
1291
-                            if (empty($geodir_default_map_search_pt))
1292
-                                $geodir_default_map_search_pt = 'gd_place';
1293
-                            if (is_array($post_types)) {
1294
-                                foreach ($post_types as $key => $post_types_obj) {
1295
-                                    if (!empty($geodir_default_map_search_pt) && $key == $geodir_default_map_search_pt)
1296
-                                        $geodir_search_pt_selected = "selected='selected'";
1297
-                                    else
1298
-                                        $geodir_search_pt_selected = '';
1299
-
1300
-                                    ?>
1289
+							$post_types = geodir_get_posttypes('array');
1290
+							$geodir_default_map_search_pt = get_option('geodir_default_map_search_pt');
1291
+							if (empty($geodir_default_map_search_pt))
1292
+								$geodir_default_map_search_pt = 'gd_place';
1293
+							if (is_array($post_types)) {
1294
+								foreach ($post_types as $key => $post_types_obj) {
1295
+									if (!empty($geodir_default_map_search_pt) && $key == $geodir_default_map_search_pt)
1296
+										$geodir_search_pt_selected = "selected='selected'";
1297
+									else
1298
+										$geodir_search_pt_selected = '';
1299
+
1300
+									?>
1301 1301
                                     <option
1302 1302
                                         value="<?php echo $key?>" <?php echo $geodir_search_pt_selected; ?>><?php echo __($post_types_obj['labels']['singular_name'], 'geodirectory'); ?></option>
1303 1303
 
1304 1304
                                 <?php }
1305 1305
 
1306
-                            }
1306
+							}
1307 1307
 
1308
-                            ?>
1308
+							?>
1309 1309
                         </select>
1310 1310
                     </td>
1311 1311
                 </tr>
1312 1312
 
1313 1313
                 <?php
1314
-                break;
1314
+				break;
1315 1315
 
1316
-            case 'map':
1317
-                ?>
1316
+			case 'map':
1317
+				?>
1318 1318
                 <tr valign="top">
1319 1319
                     <td class="forminp">
1320 1320
                         <?php
1321
-                        global $post_cat, $cat_display;
1322
-                        $post_types = geodir_get_posttypes('object');
1323
-                        $cat_display = 'checkbox';
1324
-                        $gd_post_types = get_option('geodir_exclude_post_type_on_map');
1325
-                        $gd_cats = get_option('geodir_exclude_cat_on_map');
1326
-                        $gd_cats_upgrade = (int)get_option('geodir_exclude_cat_on_map_upgrade');
1327
-                        $count = 1;
1328
-                        ?>
1321
+						global $post_cat, $cat_display;
1322
+						$post_types = geodir_get_posttypes('object');
1323
+						$cat_display = 'checkbox';
1324
+						$gd_post_types = get_option('geodir_exclude_post_type_on_map');
1325
+						$gd_cats = get_option('geodir_exclude_cat_on_map');
1326
+						$gd_cats_upgrade = (int)get_option('geodir_exclude_cat_on_map_upgrade');
1327
+						$count = 1;
1328
+						?>
1329 1329
                         <table width="70%" class="widefat">
1330 1330
                             <thead>
1331 1331
                             <tr>
@@ -1334,18 +1334,18 @@  discard block
 block discarded – undo
1334 1334
                                 <th><b><?php echo DESIGN_POST_TYPE_CAT; ?></b></th>
1335 1335
                             </tr>
1336 1336
                             <?php
1337
-                            $gd_categs = $gd_cats;
1338
-                            foreach ($post_types as $key => $post_types_obj) :
1339
-                                $checked = is_array($gd_post_types) && in_array($key, $gd_post_types) ? 'checked="checked"' : '';
1340
-                                $gd_taxonomy = geodir_get_taxonomies($key);
1341
-                                if ($gd_cats_upgrade) {
1342
-                                    $gd_cat_taxonomy = isset($gd_taxonomy[0]) ? $gd_taxonomy[0] : '';
1343
-                                    $gd_cats = isset($gd_categs[$gd_cat_taxonomy]) ? $gd_categs[$gd_cat_taxonomy] : array();
1344
-                                    $gd_cats = !empty($gd_cats) && is_array($gd_cats) ? array_unique($gd_cats) : array();
1345
-                                }
1346
-                                $post_cat = implode(',', $gd_cats);
1347
-                                $gd_taxonomy_list = geodir_custom_taxonomy_walker($gd_taxonomy);
1348
-                                ?>
1337
+							$gd_categs = $gd_cats;
1338
+							foreach ($post_types as $key => $post_types_obj) :
1339
+								$checked = is_array($gd_post_types) && in_array($key, $gd_post_types) ? 'checked="checked"' : '';
1340
+								$gd_taxonomy = geodir_get_taxonomies($key);
1341
+								if ($gd_cats_upgrade) {
1342
+									$gd_cat_taxonomy = isset($gd_taxonomy[0]) ? $gd_taxonomy[0] : '';
1343
+									$gd_cats = isset($gd_categs[$gd_cat_taxonomy]) ? $gd_categs[$gd_cat_taxonomy] : array();
1344
+									$gd_cats = !empty($gd_cats) && is_array($gd_cats) ? array_unique($gd_cats) : array();
1345
+								}
1346
+								$post_cat = implode(',', $gd_cats);
1347
+								$gd_taxonomy_list = geodir_custom_taxonomy_walker($gd_taxonomy);
1348
+								?>
1349 1349
                                 <tr>
1350 1350
                                     <td valign="top" width="5%"><?php echo $count; ?></td>
1351 1351
                                     <td valign="top" width="25%" id="td_post_types"><input type="checkbox"
@@ -1366,19 +1366,19 @@  discard block
 block discarded – undo
1366 1366
                     </td>
1367 1367
                 </tr>
1368 1368
                 <?php
1369
-                break;
1369
+				break;
1370 1370
 
1371
-            case 'checkbox' :
1371
+			case 'checkbox' :
1372 1372
 
1373
-                if (!isset($value['checkboxgroup']) || (isset($value['checkboxgroup']) && $value['checkboxgroup'] == 'start')) :
1374
-                    ?>
1373
+				if (!isset($value['checkboxgroup']) || (isset($value['checkboxgroup']) && $value['checkboxgroup'] == 'start')) :
1374
+					?>
1375 1375
                     <tr valign="top">
1376 1376
                     <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1377 1377
                     <td class="forminp">
1378 1378
                 <?php
1379
-                endif;
1379
+				endif;
1380 1380
 
1381
-                ?>
1381
+				?>
1382 1382
                 <fieldset>
1383 1383
                     <legend class="screen-reader-text"><span><?php echo $value['name'] ?></span></legend>
1384 1384
                     <label for="<?php echo $value['id'] ?>">
@@ -1388,49 +1388,49 @@  discard block
 block discarded – undo
1388 1388
                 </fieldset>
1389 1389
                 <?php
1390 1390
 
1391
-                if (!isset($value['checkboxgroup']) || (isset($value['checkboxgroup']) && $value['checkboxgroup'] == 'end')) :
1392
-                    ?>
1391
+				if (!isset($value['checkboxgroup']) || (isset($value['checkboxgroup']) && $value['checkboxgroup'] == 'end')) :
1392
+					?>
1393 1393
                     </td>
1394 1394
                     </tr>
1395 1395
                 <?php
1396
-                endif;
1396
+				endif;
1397 1397
 
1398
-                break;
1398
+				break;
1399 1399
 
1400
-            case 'radio' :
1400
+			case 'radio' :
1401 1401
 
1402
-                if (!isset($value['radiogroup']) || (isset($value['radiogroup']) && $value['radiogroup'] == 'start')) :
1403
-                    ?>
1402
+				if (!isset($value['radiogroup']) || (isset($value['radiogroup']) && $value['radiogroup'] == 'start')) :
1403
+					?>
1404 1404
                     <tr valign="top">
1405 1405
                     <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1406 1406
                     <td class="forminp">
1407 1407
                 <?php
1408
-                endif;
1408
+				endif;
1409 1409
 
1410
-                ?>
1410
+				?>
1411 1411
                 <fieldset>
1412 1412
                     <legend class="screen-reader-text"><span><?php echo $value['name'] ?></span></legend>
1413 1413
                     <label for="<?php echo $value['id'];?>">
1414 1414
                         <input name="<?php echo esc_attr($value['id']); ?>"
1415 1415
                                id="<?php echo esc_attr($value['id'] . $value['value']); ?>" type="radio"
1416 1416
                                value="<?php echo $value['value'] ?>" <?php if (get_option($value['id']) == $value['value']) {
1417
-                            echo 'checked="checked"';
1418
-                        }elseif(get_option($value['id'])=='' && $value['std']==$value['value']){echo 'checked="checked"';} ?> />
1417
+							echo 'checked="checked"';
1418
+						}elseif(get_option($value['id'])=='' && $value['std']==$value['value']){echo 'checked="checked"';} ?> />
1419 1419
                         <?php echo $value['desc']; ?></label><br>
1420 1420
                 </fieldset>
1421 1421
                 <?php
1422 1422
 
1423
-                if (!isset($value['radiogroup']) || (isset($value['radiogroup']) && $value['radiogroup'] == 'end')) :
1424
-                    ?>
1423
+				if (!isset($value['radiogroup']) || (isset($value['radiogroup']) && $value['radiogroup'] == 'end')) :
1424
+					?>
1425 1425
                     </td>
1426 1426
                     </tr>
1427 1427
                 <?php
1428
-                endif;
1428
+				endif;
1429 1429
 
1430
-                break;
1430
+				break;
1431 1431
 
1432
-            case 'textarea':
1433
-                ?>
1432
+			case 'textarea':
1433
+				?>
1434 1434
                 <tr valign="top">
1435 1435
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1436 1436
                 <td class="forminp">
@@ -1443,30 +1443,30 @@  discard block
 block discarded – undo
1443 1443
 
1444 1444
                 </td>
1445 1445
                 </tr><?php
1446
-                break;
1446
+				break;
1447 1447
 
1448
-            case 'editor':
1449
-                ?>
1448
+			case 'editor':
1449
+				?>
1450 1450
                 <tr valign="top">
1451 1451
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1452 1452
                 <td class="forminp"><?php
1453
-                    if (get_option($value['id']))
1454
-                        $content = stripslashes(get_option($value['id']));
1455
-                    else
1456
-                        $content = $value['std'];
1453
+					if (get_option($value['id']))
1454
+						$content = stripslashes(get_option($value['id']));
1455
+					else
1456
+						$content = $value['std'];
1457 1457
 
1458
-                    $editor_settings = array('media_buttons' => false, 'textarea_rows' => 10);
1458
+					$editor_settings = array('media_buttons' => false, 'textarea_rows' => 10);
1459 1459
 
1460
-                    wp_editor($content, esc_attr($value['id']), $editor_settings);
1460
+					wp_editor($content, esc_attr($value['id']), $editor_settings);
1461 1461
 
1462
-                    ?> <span class="description"><?php echo $value['desc'] ?></span>
1462
+					?> <span class="description"><?php echo $value['desc'] ?></span>
1463 1463
 
1464 1464
                 </td>
1465 1465
                 </tr><?php
1466
-                break;
1466
+				break;
1467 1467
 
1468
-            case 'single_select_page' :
1469
-                // WPML
1468
+			case 'single_select_page' :
1469
+				// WPML
1470 1470
 				$switch_lang = false;
1471 1471
 				$disabled = '';
1472 1472
 				if (geodir_is_wpml() && isset($_REQUEST['tab']) && $_REQUEST['tab'] == 'permalink_settings') {
@@ -1484,18 +1484,18 @@  discard block
 block discarded – undo
1484 1484
 				//
1485 1485
 				$page_setting = (int)get_option($value['id']);
1486 1486
 
1487
-                $args = array('name' => $value['id'],
1488
-                    'id' => $value['id'],
1489
-                    'sort_column' => 'menu_order',
1490
-                    'sort_order' => 'ASC',
1491
-                    'show_option_none' => ' ',
1492
-                    'class' => $value['class'],
1493
-                    'echo' => false,
1494
-                    'selected' => $page_setting);
1487
+				$args = array('name' => $value['id'],
1488
+					'id' => $value['id'],
1489
+					'sort_column' => 'menu_order',
1490
+					'sort_order' => 'ASC',
1491
+					'show_option_none' => ' ',
1492
+					'class' => $value['class'],
1493
+					'echo' => false,
1494
+					'selected' => $page_setting);
1495 1495
 
1496
-                if (isset($value['args'])) $args = wp_parse_args($value['args'], $args);
1496
+				if (isset($value['args'])) $args = wp_parse_args($value['args'], $args);
1497 1497
 
1498
-                ?>
1498
+				?>
1499 1499
                 <tr valign="top" class="single_select_page">
1500 1500
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1501 1501
                 <td class="forminp">
@@ -1506,17 +1506,17 @@  discard block
 block discarded – undo
1506 1506
 				if ($switch_lang) {
1507 1507
 					$sitepress->switch_lang($switch_lang, true);
1508 1508
 				}
1509
-                break;
1510
-            case 'single_select_country' :
1511
-                $country_setting = (string)get_option($value['id']);
1512
-                if (strstr($country_setting, ':')) :
1513
-                    $country = current(explode(':', $country_setting));
1514
-                    $state = end(explode(':', $country_setting));
1515
-                else :
1516
-                    $country = $country_setting;
1517
-                    $state = '*';
1518
-                endif;
1519
-                ?>
1509
+				break;
1510
+			case 'single_select_country' :
1511
+				$country_setting = (string)get_option($value['id']);
1512
+				if (strstr($country_setting, ':')) :
1513
+					$country = current(explode(':', $country_setting));
1514
+					$state = end(explode(':', $country_setting));
1515
+				else :
1516
+					$country = $country_setting;
1517
+					$state = '*';
1518
+				endif;
1519
+				?>
1520 1520
                 <tr valign="top">
1521 1521
                 <th scope="rpw" class="titledesc"><?php echo $value['name'] ?></th>
1522 1522
                 <td class="forminp"><select name="<?php echo esc_attr($value['id']); ?>"
@@ -1527,12 +1527,12 @@  discard block
 block discarded – undo
1527 1527
                     </select> <span class="description"><?php echo $value['desc'] ?></span>
1528 1528
                 </td>
1529 1529
                 </tr><?php
1530
-                break;
1531
-            case 'multi_select_countries' :
1532
-                $countries = $geodirectory->countries->countries;
1533
-                asort($countries);
1534
-                $selections = (array)get_option($value['id']);
1535
-                ?>
1530
+				break;
1531
+			case 'multi_select_countries' :
1532
+				$countries = $geodirectory->countries->countries;
1533
+				asort($countries);
1534
+				$selections = (array)get_option($value['id']);
1535
+				?>
1536 1536
                 <tr valign="top">
1537 1537
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1538 1538
                 <td class="forminp">
@@ -1540,21 +1540,21 @@  discard block
 block discarded – undo
1540 1540
                             data-placeholder="<?php _e('Choose countries&hellip;', 'geodirectory'); ?>"
1541 1541
                             title="Country" class="chosen_select">
1542 1542
                         <?php
1543
-                        if ($countries) foreach ($countries as $key => $val) :
1544
-                            echo '<option value="' . $key . '" ' . selected(in_array($key, $selections), true, false) . '>' . $val . '</option>';
1545
-                        endforeach;
1546
-                        ?>
1543
+						if ($countries) foreach ($countries as $key => $val) :
1544
+							echo '<option value="' . $key . '" ' . selected(in_array($key, $selections), true, false) . '>' . $val . '</option>';
1545
+						endforeach;
1546
+						?>
1547 1547
                     </select>
1548 1548
                 </td>
1549 1549
                 </tr>
1550 1550
 
1551 1551
                 <?php
1552 1552
 
1553
-                break;
1553
+				break;
1554 1554
 
1555
-            case 'google_analytics' :
1556
-                $selections = (array)get_option($value['id']);
1557
-                    ?>
1555
+			case 'google_analytics' :
1556
+				$selections = (array)get_option($value['id']);
1557
+					?>
1558 1558
                     <tr valign="top">
1559 1559
                         <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1560 1560
                         <td class="forminp">
@@ -1562,62 +1562,62 @@  discard block
 block discarded – undo
1562 1562
 
1563 1563
                             <?php
1564 1564
 
1565
-                            $oAuthURL = "https://accounts.google.com/o/oauth2/auth?";
1566
-                            $scope = "scope=https://www.googleapis.com/auth/analytics.readonly";
1567
-                            $state = "&state=123";//any string
1568
-                            $redirect_uri = "&redirect_uri=" . admin_url('admin-ajax.php') . "?action=geodir_ga_callback";
1569
-                            $response_type = "&response_type=code";
1570
-                            $client_id = "&client_id=".get_option('geodir_ga_client_id');
1571
-                            $access_type = "&access_type=offline";
1572
-                            $approval_prompt = "&approval_prompt=force";
1565
+							$oAuthURL = "https://accounts.google.com/o/oauth2/auth?";
1566
+							$scope = "scope=https://www.googleapis.com/auth/analytics.readonly";
1567
+							$state = "&state=123";//any string
1568
+							$redirect_uri = "&redirect_uri=" . admin_url('admin-ajax.php') . "?action=geodir_ga_callback";
1569
+							$response_type = "&response_type=code";
1570
+							$client_id = "&client_id=".get_option('geodir_ga_client_id');
1571
+							$access_type = "&access_type=offline";
1572
+							$approval_prompt = "&approval_prompt=force";
1573 1573
 
1574
-                            $auth_url = $oAuthURL . $scope . $state . $redirect_uri . $response_type . $client_id . $access_type . $approval_prompt;
1574
+							$auth_url = $oAuthURL . $scope . $state . $redirect_uri . $response_type . $client_id . $access_type . $approval_prompt;
1575 1575
 
1576 1576
 
1577
-                            if (get_option('geodir_ga_auth_token')) {
1578
-                                ?>
1577
+							if (get_option('geodir_ga_auth_token')) {
1578
+								?>
1579 1579
                                 <span class="button-primary"
1580 1580
                                       onclick="gd_GA_Deauthorize('<?php echo wp_create_nonce('gd_ga_deauthorize');?>');"><?php _e('Deauthorize', 'geodirectory'); ?></span>
1581 1581
                                 <span style="color: green; font-weight: bold;"><?php _e('Authorized', 'geodirectory'); ?></span>
1582 1582
                             <?php
1583
-                                global $gd_ga_errors;
1584
-                                if(!empty($gd_ga_errors)){
1585
-                                    print_r($gd_ga_errors);
1586
-                                }
1587
-                            } else {
1588
-                                ?>
1583
+								global $gd_ga_errors;
1584
+								if(!empty($gd_ga_errors)){
1585
+									print_r($gd_ga_errors);
1586
+								}
1587
+							} else {
1588
+								?>
1589 1589
                                 <span class="button-primary"
1590 1590
                                       onclick="window.open('<?php echo  geodir_ga_activation_url();?>', 'activate','width=700, height=600, menubar=0, status=0, location=0, toolbar=0')"><?php _e('Authorize', 'geodirectory');?></span>
1591 1591
                             <?php
1592
-                            }
1593
-                            ?>
1592
+							}
1593
+							?>
1594 1594
                         </td>
1595 1595
                     </tr>
1596 1596
 
1597 1597
                 <?php
1598 1598
 
1599 1599
 
1600
-                break;
1600
+				break;
1601 1601
 
1602
-            case 'field_seperator' :
1602
+			case 'field_seperator' :
1603 1603
 
1604
-                ?>
1604
+				?>
1605 1605
                 <tr valign="top">
1606 1606
                     <td colspan="2" class="forminp geodir_line_seperator"></td>
1607 1607
                 </tr>
1608 1608
                 <?php
1609 1609
 
1610
-                break;
1610
+				break;
1611 1611
 
1612
-        endswitch;
1612
+		endswitch;
1613 1613
 
1614
-    endforeach;
1614
+	endforeach;
1615 1615
 
1616
-    if ($first_title === false) {
1617
-        echo "</div>";
1618
-    }
1616
+	if ($first_title === false) {
1617
+		echo "</div>";
1618
+	}
1619 1619
 
1620
-    ?>
1620
+	?>
1621 1621
 
1622 1622
     <script type="text/javascript">
1623 1623
 
@@ -1677,33 +1677,33 @@  discard block
 block discarded – undo
1677 1677
  */
1678 1678
 function geodir_post_info_setting()
1679 1679
 {
1680
-    global $post, $post_id;
1681
-
1682
-    $post_type = get_post_type();
1683
-
1684
-    $package_info = array();
1685
-
1686
-    $package_info = geodir_post_package_info($package_info, $post, $post_type);
1687
-    wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_info_noncename');
1688
-    echo '<div id="geodir_wrapper">';
1689
-    /**
1690
-     * Called before the GD custom fields are output in the wp-admin area.
1691
-     *
1692
-     * @since 1.0.0
1693
-     * @see 'geodir_after_default_field_in_meta_box'
1694
-     */
1695
-    do_action('geodir_before_default_field_in_meta_box');
1696
-    //geodir_get_custom_fields_html($package_info->pid,'default',$post_type);
1697
-    // to display all fields in one information box
1698
-    geodir_get_custom_fields_html($package_info->pid, 'all', $post_type);
1699
-    /**
1700
-     * Called after the GD custom fields are output in the wp-admin area.
1701
-     *
1702
-     * @since 1.0.0
1703
-     * @see 'geodir_before_default_field_in_meta_box'
1704
-     */
1705
-    do_action('geodir_after_default_field_in_meta_box');
1706
-    echo '</div>';
1680
+	global $post, $post_id;
1681
+
1682
+	$post_type = get_post_type();
1683
+
1684
+	$package_info = array();
1685
+
1686
+	$package_info = geodir_post_package_info($package_info, $post, $post_type);
1687
+	wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_info_noncename');
1688
+	echo '<div id="geodir_wrapper">';
1689
+	/**
1690
+	 * Called before the GD custom fields are output in the wp-admin area.
1691
+	 *
1692
+	 * @since 1.0.0
1693
+	 * @see 'geodir_after_default_field_in_meta_box'
1694
+	 */
1695
+	do_action('geodir_before_default_field_in_meta_box');
1696
+	//geodir_get_custom_fields_html($package_info->pid,'default',$post_type);
1697
+	// to display all fields in one information box
1698
+	geodir_get_custom_fields_html($package_info->pid, 'all', $post_type);
1699
+	/**
1700
+	 * Called after the GD custom fields are output in the wp-admin area.
1701
+	 *
1702
+	 * @since 1.0.0
1703
+	 * @see 'geodir_before_default_field_in_meta_box'
1704
+	 */
1705
+	do_action('geodir_after_default_field_in_meta_box');
1706
+	echo '</div>';
1707 1707
 }
1708 1708
 
1709 1709
 /**
@@ -1716,18 +1716,18 @@  discard block
 block discarded – undo
1716 1716
  */
1717 1717
 function geodir_post_addinfo_setting()
1718 1718
 {
1719
-    global $post, $post_id;
1719
+	global $post, $post_id;
1720 1720
 
1721
-    $post_type = get_post_type();
1721
+	$post_type = get_post_type();
1722 1722
 
1723
-    $package_info = array();
1723
+	$package_info = array();
1724 1724
 
1725
-    $package_info = geodir_post_package_info($package_info, $post, $post_type);
1725
+	$package_info = geodir_post_package_info($package_info, $post, $post_type);
1726 1726
 
1727
-    wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_addinfo_noncename');
1728
-    echo '<div id="geodir_wrapper">';
1729
-    geodir_get_custom_fields_html($package_info->pid, 'custom', $post_type);
1730
-    echo '</div>';
1727
+	wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_addinfo_noncename');
1728
+	echo '<div id="geodir_wrapper">';
1729
+	geodir_get_custom_fields_html($package_info->pid, 'custom', $post_type);
1730
+	echo '</div>';
1731 1731
 
1732 1732
 }
1733 1733
 
@@ -1741,60 +1741,60 @@  discard block
 block discarded – undo
1741 1741
  */
1742 1742
 function geodir_post_attachments()
1743 1743
 {
1744
-    global $post, $post_id;
1744
+	global $post, $post_id;
1745 1745
 
1746
-    wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_attachments_noncename');
1746
+	wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_attachments_noncename');
1747 1747
 
1748
-    if (geodir_get_featured_image($post_id, 'thumbnail')) {
1749
-        echo '<h4>' . __('Featured Image', 'geodirectory') . '</h4>';
1750
-        geodir_show_featured_image($post_id, 'thumbnail');
1751
-    }
1748
+	if (geodir_get_featured_image($post_id, 'thumbnail')) {
1749
+		echo '<h4>' . __('Featured Image', 'geodirectory') . '</h4>';
1750
+		geodir_show_featured_image($post_id, 'thumbnail');
1751
+	}
1752 1752
 
1753
-    $image_limit = 0;
1753
+	$image_limit = 0;
1754 1754
 
1755
-    ?>
1755
+	?>
1756 1756
 
1757 1757
 
1758 1758
     <h5 class="form_title">
1759 1759
         <?php if ($image_limit != 0 && $image_limit == 1) {
1760
-            echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('image with this package', 'geodirectory') . ')</small>';
1761
-        } ?>
1760
+			echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('image with this package', 'geodirectory') . ')</small>';
1761
+		} ?>
1762 1762
         <?php if ($image_limit != 0 && $image_limit > 1) {
1763
-            echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('images with this package', 'geodirectory') . ')</small>';
1764
-        } ?>
1763
+			echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('images with this package', 'geodirectory') . ')</small>';
1764
+		} ?>
1765 1765
         <?php if ($image_limit == 0) {
1766
-            echo '<br /><small>(' . __('You can upload unlimited images with this package', 'geodirectory') . ')</small>';
1767
-        } ?>
1766
+			echo '<br /><small>(' . __('You can upload unlimited images with this package', 'geodirectory') . ')</small>';
1767
+		} ?>
1768 1768
     </h5>
1769 1769
 
1770 1770
 
1771 1771
     <?php
1772 1772
 
1773
-    $curImages = geodir_get_images($post_id);
1774
-    $place_img_array = array();
1773
+	$curImages = geodir_get_images($post_id);
1774
+	$place_img_array = array();
1775 1775
 
1776
-    if (!empty($curImages)):
1777
-        foreach ($curImages as $p_img):
1778
-            $place_img_array[] = $p_img->src;
1779
-        endforeach;
1780
-    endif;
1776
+	if (!empty($curImages)):
1777
+		foreach ($curImages as $p_img):
1778
+			$place_img_array[] = $p_img->src;
1779
+		endforeach;
1780
+	endif;
1781 1781
 
1782
-    if (!empty($place_img_array))
1783
-        $curImages = implode(',', $place_img_array);
1782
+	if (!empty($place_img_array))
1783
+		$curImages = implode(',', $place_img_array);
1784 1784
 
1785 1785
 
1786
-    // adjust values here
1787
-    $id = "post_images"; // this will be the name of form field. Image url(s) will be submitted in $_POST using this key. So if $id == �img1� then $_POST[�img1�] will have all the image urls
1786
+	// adjust values here
1787
+	$id = "post_images"; // this will be the name of form field. Image url(s) will be submitted in $_POST using this key. So if $id == �img1� then $_POST[�img1�] will have all the image urls
1788 1788
 
1789
-    $svalue = $curImages; // this will be initial value of the above form field. Image urls.
1789
+	$svalue = $curImages; // this will be initial value of the above form field. Image urls.
1790 1790
 
1791
-    $multiple = true; // allow multiple files upload
1791
+	$multiple = true; // allow multiple files upload
1792 1792
 
1793
-    $width = geodir_media_image_large_width(); // If you want to automatically resize all uploaded images then provide width here (in pixels)
1793
+	$width = geodir_media_image_large_width(); // If you want to automatically resize all uploaded images then provide width here (in pixels)
1794 1794
 
1795
-    $height = geodir_media_image_large_height(); // If you want to automatically resize all uploaded images then provide height here (in pixels)
1795
+	$height = geodir_media_image_large_height(); // If you want to automatically resize all uploaded images then provide height here (in pixels)
1796 1796
 
1797
-    ?>
1797
+	?>
1798 1798
 
1799 1799
     <div class="gtd-form_row clearfix" id="<?php echo $id; ?>dropbox" style="border:1px solid #999999;padding:5px;text-align:center;">
1800 1800
         <input type="hidden" name="<?php echo $id; ?>" id="<?php echo $id; ?>" value="<?php echo $svalue; ?>"/>
@@ -1836,13 +1836,13 @@  discard block
 block discarded – undo
1836 1836
  */
1837 1837
 function geodir_action_post_updated($post_ID, $post_after, $post_before)
1838 1838
 {
1839
-    $post_type = get_post_type($post_ID);
1839
+	$post_type = get_post_type($post_ID);
1840 1840
 
1841
-    if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
1842
-        if ($post_type != '' && in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_ID) && !empty($post_after->post_title) && $post_after->post_title != $post_before->post_title) {
1843
-            geodir_save_post_meta($post_ID, 'post_title', $post_after->post_title);
1844
-        }
1845
-    }
1841
+	if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
1842
+		if ($post_type != '' && in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_ID) && !empty($post_after->post_title) && $post_after->post_title != $post_before->post_title) {
1843
+			geodir_save_post_meta($post_ID, 'post_title', $post_after->post_title);
1844
+		}
1845
+	}
1846 1846
 }
1847 1847
 
1848 1848
 /**
@@ -1857,39 +1857,39 @@  discard block
 block discarded – undo
1857 1857
  */
1858 1858
 function geodir_notification_add_bcc_option($settings)
1859 1859
 {
1860
-    if (!empty($settings)) {
1861
-        $new_settings = array();
1862
-        foreach ($settings as $setting) {
1863
-            if (isset($setting['id']) && $setting['id'] == 'site_bcc_options' && isset($setting['type']) && $setting['type'] == 'sectionend') {
1864
-                $geodir_bcc_listing_published_yes = array(
1865
-                    'name' => __('Listing published', 'geodirectory'),
1866
-                    'desc' => __('Yes', 'geodirectory'),
1867
-                    'id' => 'geodir_bcc_listing_published',
1868
-                    'std' => 'yes',
1869
-                    'type' => 'radio',
1870
-                    'value' => '1',
1871
-                    'radiogroup' => 'start'
1872
-                );
1873
-
1874
-                $geodir_bcc_listing_published_no = array(
1875
-                    'name' => __('Listing published', 'geodirectory'),
1876
-                    'desc' => __('No', 'geodirectory'),
1877
-                    'id' => 'geodir_bcc_listing_published',
1878
-                    'std' => 'yes',
1879
-                    'type' => 'radio',
1880
-                    'value' => '0',
1881
-                    'radiogroup' => 'end'
1882
-                );
1883
-
1884
-                $new_settings[] = $geodir_bcc_listing_published_yes;
1885
-                $new_settings[] = $geodir_bcc_listing_published_no;
1886
-            }
1887
-            $new_settings[] = $setting;
1888
-        }
1889
-        $settings = $new_settings;
1890
-    }
1860
+	if (!empty($settings)) {
1861
+		$new_settings = array();
1862
+		foreach ($settings as $setting) {
1863
+			if (isset($setting['id']) && $setting['id'] == 'site_bcc_options' && isset($setting['type']) && $setting['type'] == 'sectionend') {
1864
+				$geodir_bcc_listing_published_yes = array(
1865
+					'name' => __('Listing published', 'geodirectory'),
1866
+					'desc' => __('Yes', 'geodirectory'),
1867
+					'id' => 'geodir_bcc_listing_published',
1868
+					'std' => 'yes',
1869
+					'type' => 'radio',
1870
+					'value' => '1',
1871
+					'radiogroup' => 'start'
1872
+				);
1873
+
1874
+				$geodir_bcc_listing_published_no = array(
1875
+					'name' => __('Listing published', 'geodirectory'),
1876
+					'desc' => __('No', 'geodirectory'),
1877
+					'id' => 'geodir_bcc_listing_published',
1878
+					'std' => 'yes',
1879
+					'type' => 'radio',
1880
+					'value' => '0',
1881
+					'radiogroup' => 'end'
1882
+				);
1883
+
1884
+				$new_settings[] = $geodir_bcc_listing_published_yes;
1885
+				$new_settings[] = $geodir_bcc_listing_published_no;
1886
+			}
1887
+			$new_settings[] = $setting;
1888
+		}
1889
+		$settings = $new_settings;
1890
+	}
1891 1891
 
1892
-    return $settings;
1892
+	return $settings;
1893 1893
 }
1894 1894
 
1895 1895
 
@@ -1904,19 +1904,19 @@  discard block
 block discarded – undo
1904 1904
  */
1905 1905
 function get_gd_theme_compat_callback()
1906 1906
 {
1907
-    global $wpdb;
1908
-    $themes = get_option('gd_theme_compats');
1909
-
1910
-    if (isset($_POST['theme']) && isset($themes[$_POST['theme']]) && !empty($themes[$_POST['theme']])) {
1911
-        if (isset($_POST['export'])) {
1912
-            echo json_encode(array($_POST['theme'] => $themes[$_POST['theme']]));
1913
-        } else {
1914
-            echo json_encode($themes[$_POST['theme']]);
1915
-        }
1907
+	global $wpdb;
1908
+	$themes = get_option('gd_theme_compats');
1916 1909
 
1917
-    }
1910
+	if (isset($_POST['theme']) && isset($themes[$_POST['theme']]) && !empty($themes[$_POST['theme']])) {
1911
+		if (isset($_POST['export'])) {
1912
+			echo json_encode(array($_POST['theme'] => $themes[$_POST['theme']]));
1913
+		} else {
1914
+			echo json_encode($themes[$_POST['theme']]);
1915
+		}
1916
+
1917
+	}
1918 1918
 
1919
-    die();
1919
+	die();
1920 1920
 }
1921 1921
 
1922 1922
 add_action('wp_ajax_get_gd_theme_compat_import_callback', 'get_gd_theme_compat_import_callback');
@@ -1930,20 +1930,20 @@  discard block
 block discarded – undo
1930 1930
  */
1931 1931
 function get_gd_theme_compat_import_callback()
1932 1932
 {
1933
-    global $wpdb;
1934
-    $themes = get_option('gd_theme_compats');
1935
-    if (isset($_POST['theme']) && !empty($_POST['theme'])) {
1936
-        $json = json_decode(stripslashes($_POST['theme']), true);
1937
-        if (!empty($json) && is_array($json)) {
1938
-            $key = sanitize_text_field(key($json));
1939
-            $themes[$key] = $json[$key];
1940
-            update_option('gd_theme_compats', $themes);
1941
-            echo $key;
1942
-            die();
1943
-        }
1944
-    }
1945
-    echo '0';
1946
-    die();
1933
+	global $wpdb;
1934
+	$themes = get_option('gd_theme_compats');
1935
+	if (isset($_POST['theme']) && !empty($_POST['theme'])) {
1936
+		$json = json_decode(stripslashes($_POST['theme']), true);
1937
+		if (!empty($json) && is_array($json)) {
1938
+			$key = sanitize_text_field(key($json));
1939
+			$themes[$key] = $json[$key];
1940
+			update_option('gd_theme_compats', $themes);
1941
+			echo $key;
1942
+			die();
1943
+		}
1944
+	}
1945
+	echo '0';
1946
+	die();
1947 1947
 }
1948 1948
 
1949 1949
 
@@ -1956,39 +1956,39 @@  discard block
 block discarded – undo
1956 1956
  */
1957 1957
 function gd_set_theme_compat()
1958 1958
 {
1959
-    global $wpdb;
1960
-    $theme = wp_get_theme();
1959
+	global $wpdb;
1960
+	$theme = wp_get_theme();
1961 1961
 
1962
-    if ($theme->parent()) {
1963
-        $theme_name = str_replace(" ", "_", $theme->parent()->get('Name'));
1964
-    } else {
1965
-        $theme_name = str_replace(" ", "_", $theme->get('Name'));
1966
-    }
1962
+	if ($theme->parent()) {
1963
+		$theme_name = str_replace(" ", "_", $theme->parent()->get('Name'));
1964
+	} else {
1965
+		$theme_name = str_replace(" ", "_", $theme->get('Name'));
1966
+	}
1967 1967
 
1968
-    $theme_compats = get_option('gd_theme_compats');
1969
-    $current_compat = get_option('gd_theme_compat');
1970
-    $current_compat = str_replace("_custom", "", $current_compat);
1968
+	$theme_compats = get_option('gd_theme_compats');
1969
+	$current_compat = get_option('gd_theme_compat');
1970
+	$current_compat = str_replace("_custom", "", $current_compat);
1971 1971
  
1972
-    if ($current_compat == $theme_name && strpos(get_option('gd_theme_compat'), "_custom") !== false) {
1973
-        return;
1974
-    }// if already running correct compat then bail
1972
+	if ($current_compat == $theme_name && strpos(get_option('gd_theme_compat'), "_custom") !== false) {
1973
+		return;
1974
+	}// if already running correct compat then bail
1975 1975
 
1976
-    if (isset($theme_compats[$theme_name])) {// if there is a compat avail then set it
1977
-        update_option('gd_theme_compat', $theme_name);
1978
-        update_option('theme_compatibility_setting', $theme_compats[$theme_name]);
1976
+	if (isset($theme_compats[$theme_name])) {// if there is a compat avail then set it
1977
+		update_option('gd_theme_compat', $theme_name);
1978
+		update_option('theme_compatibility_setting', $theme_compats[$theme_name]);
1979 1979
 
1980
-        // if there are default options to set then set them
1981
-        if (isset($theme_compats[$theme_name]['geodir_theme_compat_default_options']) && !empty($theme_compats[$theme_name]['geodir_theme_compat_default_options'])) {
1980
+		// if there are default options to set then set them
1981
+		if (isset($theme_compats[$theme_name]['geodir_theme_compat_default_options']) && !empty($theme_compats[$theme_name]['geodir_theme_compat_default_options'])) {
1982 1982
 
1983
-            foreach ($theme_compats[$theme_name]['geodir_theme_compat_default_options'] as $key => $val) {
1984
-                update_option($key, $val);
1985
-            }
1986
-        }
1983
+			foreach ($theme_compats[$theme_name]['geodir_theme_compat_default_options'] as $key => $val) {
1984
+				update_option($key, $val);
1985
+			}
1986
+		}
1987 1987
 
1988
-    } else {
1989
-        update_option('gd_theme_compat', '');
1990
-        update_option('theme_compatibility_setting', '');
1991
-    }
1988
+	} else {
1989
+		update_option('gd_theme_compat', '');
1990
+		update_option('theme_compatibility_setting', '');
1991
+	}
1992 1992
 
1993 1993
 
1994 1994
 }
@@ -2003,9 +2003,9 @@  discard block
 block discarded – undo
2003 2003
  */
2004 2004
 function gd_check_avada_compat()
2005 2005
 {
2006
-    if (function_exists('avada_load_textdomain') && !get_option('avada_nag')) {
2007
-        add_action('admin_notices', 'gd_avada_compat_warning');
2008
-    }
2006
+	if (function_exists('avada_load_textdomain') && !get_option('avada_nag')) {
2007
+		add_action('admin_notices', 'gd_avada_compat_warning');
2008
+	}
2009 2009
 }
2010 2010
 
2011 2011
 
@@ -2018,22 +2018,22 @@  discard block
 block discarded – undo
2018 2018
 function gd_avada_compat_warning()
2019 2019
 {
2020 2020
 
2021
-    /*
2021
+	/*
2022 2022
     $msg_type = error
2023 2023
     $msg_type = updated fade
2024 2024
     $msg_type = update-nag
2025 2025
     */
2026 2026
 
2027
-    $plugin = 'avada-nag';
2028
-    $timestamp = 'avada-nag1234';
2029
-    $message = __('Welcome to GeoDirectory, please have a look <a href="https://docs.wpgeodirectory.com/category/getting-started/" target="_blank">here</a> to get started. :)', 'geodirectory');
2030
-    echo '<div id="' . $timestamp . '"  class="error">';
2031
-    echo '<span class="gd-remove-noti" onclick="gdRemoveANotification(\'' . $plugin . '\',\'' . $timestamp . '\');" ><i class="fas fa-times"></i></span>';
2032
-    echo "<img class='gd-icon-noti' src='" . plugin_dir_url('') . "geodirectory/geodirectory-assets/images/favicon.ico' > ";
2033
-    echo "<p>$message</p>";
2034
-    echo "</div>";
2027
+	$plugin = 'avada-nag';
2028
+	$timestamp = 'avada-nag1234';
2029
+	$message = __('Welcome to GeoDirectory, please have a look <a href="https://docs.wpgeodirectory.com/category/getting-started/" target="_blank">here</a> to get started. :)', 'geodirectory');
2030
+	echo '<div id="' . $timestamp . '"  class="error">';
2031
+	echo '<span class="gd-remove-noti" onclick="gdRemoveANotification(\'' . $plugin . '\',\'' . $timestamp . '\');" ><i class="fas fa-times"></i></span>';
2032
+	echo "<img class='gd-icon-noti' src='" . plugin_dir_url('') . "geodirectory/geodirectory-assets/images/favicon.ico' > ";
2033
+	echo "<p>$message</p>";
2034
+	echo "</div>";
2035 2035
 
2036
-    ?>
2036
+	?>
2037 2037
     <script>
2038 2038
         function gdRemoveANotification($plugin, $timestamp) {
2039 2039
 
@@ -2101,10 +2101,10 @@  discard block
 block discarded – undo
2101 2101
  */
2102 2102
 function geodir_avada_remove_notification()
2103 2103
 {
2104
-    update_option('avada_nag', TRUE);
2104
+	update_option('avada_nag', TRUE);
2105 2105
 
2106
-    // Always die in functions echoing ajax content
2107
-    die();
2106
+	// Always die in functions echoing ajax content
2107
+	die();
2108 2108
 }
2109 2109
 
2110 2110
 
@@ -2126,11 +2126,11 @@  discard block
 block discarded – undo
2126 2126
 	global $post, $typenow, $current_screen;
2127 2127
 	
2128 2128
 	$post_type = NULL;
2129
-    if (isset($_REQUEST['post_type']))
2129
+	if (isset($_REQUEST['post_type']))
2130 2130
 		$post_type = sanitize_key($_REQUEST['post_type']);
2131
-    elseif (isset($_REQUEST['post']) && get_post_type($_REQUEST['post']))
2131
+	elseif (isset($_REQUEST['post']) && get_post_type($_REQUEST['post']))
2132 2132
 		$post_type = get_post_type($_REQUEST['post']);
2133
-    elseif ($post && isset($post->post_type))
2133
+	elseif ($post && isset($post->post_type))
2134 2134
 		$post_type = $post->post_type;
2135 2135
 	elseif ($typenow)
2136 2136
 		$post_type = $typenow;
@@ -2164,7 +2164,7 @@  discard block
 block discarded – undo
2164 2164
 		// Don't allow same slug url for listing and location
2165 2165
 		if (geodir_strtolower($listing_prefix) == geodir_strtolower($location_prefix)) {
2166 2166
 			$redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $active_tab . '&msg=fail&gderr=21');
2167
-        	wp_redirect($redirect_url);
2167
+			wp_redirect($redirect_url);
2168 2168
 			exit;
2169 2169
 		}
2170 2170
 		
@@ -2194,10 +2194,10 @@  discard block
 block discarded – undo
2194 2194
  * @package GeoDirectory
2195 2195
  */
2196 2196
 function geodir_hide_admin_preview_button() {
2197
-    global $post_type;
2198
-    $post_types = geodir_get_posttypes();
2199
-    if(in_array($post_type, $post_types))
2200
-        echo '<style type="text/css">#post-preview, #view-post-btn{display: none;}</style>';
2197
+	global $post_type;
2198
+	$post_types = geodir_get_posttypes();
2199
+	if(in_array($post_type, $post_types))
2200
+		echo '<style type="text/css">#post-preview, #view-post-btn{display: none;}</style>';
2201 2201
 }
2202 2202
 add_action( 'admin_head-post-new.php', 'geodir_hide_admin_preview_button' );
2203 2203
 add_action( 'admin_head-post.php', 'geodir_hide_admin_preview_button' );
@@ -2212,7 +2212,7 @@  discard block
 block discarded – undo
2212 2212
  */
2213 2213
 function geodir_import_export_tab( $tabs ) {
2214 2214
 	$tabs['import_export'] = array( 'label' => __( 'Import & Export', 'geodirectory' ) );
2215
-    return $tabs;
2215
+	return $tabs;
2216 2216
 }
2217 2217
 
2218 2218
 /**
@@ -2227,26 +2227,26 @@  discard block
 block discarded – undo
2227 2227
 function geodir_import_export_page() {
2228 2228
 	$nonce = wp_create_nonce( 'geodir_import_export_nonce' );
2229 2229
 	$gd_cats_sample_csv = geodir_plugin_url() . '/geodirectory-assets/gd_sample_categories.csv';
2230
-    /**
2231
-     * Filter sample category data csv file url.
2232
-     *
2233
-     * @since 1.0.0
2234
-     * @package GeoDirectory
2235
-     *
2236
-     * @param string $gd_cats_sample_csv Sample category data csv file url.
2237
-     */
2230
+	/**
2231
+	 * Filter sample category data csv file url.
2232
+	 *
2233
+	 * @since 1.0.0
2234
+	 * @package GeoDirectory
2235
+	 *
2236
+	 * @param string $gd_cats_sample_csv Sample category data csv file url.
2237
+	 */
2238 2238
 	$gd_cats_sample_csv = apply_filters( 'geodir_export_cats_sample_csv', $gd_cats_sample_csv );
2239 2239
 	
2240 2240
 	$gd_posts_sample_csv = geodir_plugin_url() . '/geodirectory-assets/place_listing.csv';
2241
-    /**
2242
-     * Filter sample post data csv file url.
2243
-     *
2244
-     * @since 1.0.0
2245
-     * @package GeoDirectory
2246
-     *
2247
-     * @param string $gd_posts_sample_csv Sample post data csv file url.
2248
-     */
2249
-    $gd_posts_sample_csv = apply_filters( 'geodir_export_posts_sample_csv', $gd_posts_sample_csv );
2241
+	/**
2242
+	 * Filter sample post data csv file url.
2243
+	 *
2244
+	 * @since 1.0.0
2245
+	 * @package GeoDirectory
2246
+	 *
2247
+	 * @param string $gd_posts_sample_csv Sample post data csv file url.
2248
+	 */
2249
+	$gd_posts_sample_csv = apply_filters( 'geodir_export_posts_sample_csv', $gd_posts_sample_csv );
2250 2250
 	
2251 2251
 	$gd_posttypes = geodir_get_posttypes( 'array' );
2252 2252
 	
@@ -2269,14 +2269,14 @@  discard block
 block discarded – undo
2269 2269
 	$gd_chunksize_options[100000] = 100000;
2270 2270
 	 
2271 2271
 	 /**
2272
-     * Filter max entries per export csv file.
2273
-     *
2274
-     * @since 1.5.6
2275
-     * @package GeoDirectory
2276
-     *
2277
-     * @param string $gd_chunksize_options Entries options.
2278
-     */
2279
-    $gd_chunksize_options = apply_filters( 'geodir_export_csv_chunksize_options', $gd_chunksize_options );
2272
+	  * Filter max entries per export csv file.
2273
+	  *
2274
+	  * @since 1.5.6
2275
+	  * @package GeoDirectory
2276
+	  *
2277
+	  * @param string $gd_chunksize_options Entries options.
2278
+	  */
2279
+	$gd_chunksize_options = apply_filters( 'geodir_export_csv_chunksize_options', $gd_chunksize_options );
2280 2280
 	
2281 2281
 	$gd_chunksize_option = '';
2282 2282
 	foreach ($gd_chunksize_options as $value => $title) {
@@ -2293,12 +2293,12 @@  discard block
 block discarded – undo
2293 2293
   <div class="gd-content-heading">
2294 2294
 
2295 2295
   <?php
2296
-    @ini_set('max_execution_time', 999999);
2297
-    $ini_max_execution_time_check = @ini_get( 'max_execution_time' );
2298
-    @ini_restore('max_execution_time');
2296
+	@ini_set('max_execution_time', 999999);
2297
+	$ini_max_execution_time_check = @ini_get( 'max_execution_time' );
2298
+	@ini_restore('max_execution_time');
2299 2299
 
2300
-    if($ini_max_execution_time_check != 999999){ // only show these setting to the user if we can't change the ini setting
2301
-        ?>
2300
+	if($ini_max_execution_time_check != 999999){ // only show these setting to the user if we can't change the ini setting
2301
+		?>
2302 2302
 	<div id="gd_ie_reqs" class="metabox-holder">
2303 2303
       <div class="meta-box-sortables ui-sortable">
2304 2304
         <div class="postbox">
@@ -2473,7 +2473,7 @@  discard block
 block discarded – undo
2473 2473
 						 * Called just after the sample CSV download link.
2474 2474
 						 *
2475 2475
 						 * @since 1.0.0
2476
-                         * @package GeoDirectory
2476
+						 * @package GeoDirectory
2477 2477
 						 */
2478 2478
 						do_action('geodir_sample_cats_csv_download_link');
2479 2479
 						?>
@@ -2558,11 +2558,11 @@  discard block
 block discarded – undo
2558 2558
 	 *
2559 2559
 	 * Called after the last setting on the GD > Import & Export page.
2560 2560
 	 * @since 1.4.6
2561
-     * @package GeoDirectory
2561
+	 * @package GeoDirectory
2562 2562
 	 *
2563 2563
 	 * @param array $gd_posttypes GD post types.
2564
-     * @param array $gd_chunksize_options File chunk size options.
2565
-     * @param string $nonce Wordpress security token for GD import & export.
2564
+	 * @param array $gd_chunksize_options File chunk size options.
2565
+	 * @param string $nonce Wordpress security token for GD import & export.
2566 2566
 	 */
2567 2567
 	do_action( 'geodir_import_export', $gd_posttypes, $gd_chunksize_options, $nonce );
2568 2568
 	?>
@@ -3249,44 +3249,44 @@  discard block
 block discarded – undo
3249 3249
 function geodir_init_filesystem()
3250 3250
 {
3251 3251
 
3252
-    if(!function_exists('get_filesystem_method')){
3253
-        require_once(ABSPATH."/wp-admin/includes/file.php");
3254
-    }
3255
-    $access_type = get_filesystem_method();
3256
-    if ($access_type === 'direct') {
3257
-        /* you can safely run request_filesystem_credentials() without any issues and don't need to worry about passing in a URL */
3258
-        $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array());
3259
-
3260
-        /* initialize the API */
3261
-        if (!WP_Filesystem($creds)) {
3262
-            /* any problems and we exit */
3263
-            //return '@@@3';
3264
-            return false;
3265
-        }
3252
+	if(!function_exists('get_filesystem_method')){
3253
+		require_once(ABSPATH."/wp-admin/includes/file.php");
3254
+	}
3255
+	$access_type = get_filesystem_method();
3256
+	if ($access_type === 'direct') {
3257
+		/* you can safely run request_filesystem_credentials() without any issues and don't need to worry about passing in a URL */
3258
+		$creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array());
3259
+
3260
+		/* initialize the API */
3261
+		if (!WP_Filesystem($creds)) {
3262
+			/* any problems and we exit */
3263
+			//return '@@@3';
3264
+			return false;
3265
+		}
3266 3266
 
3267
-        global $wp_filesystem;
3268
-        return $wp_filesystem;
3269
-        /* do our file manipulations below */
3270
-    } elseif (defined('FTP_USER')) {
3271
-        $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array());
3267
+		global $wp_filesystem;
3268
+		return $wp_filesystem;
3269
+		/* do our file manipulations below */
3270
+	} elseif (defined('FTP_USER')) {
3271
+		$creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array());
3272
+
3273
+		/* initialize the API */
3274
+		if (!WP_Filesystem($creds)) {
3275
+			/* any problems and we exit */
3276
+			//return '@@@33';
3277
+			return false;
3278
+		}
3272 3279
 
3273
-        /* initialize the API */
3274
-        if (!WP_Filesystem($creds)) {
3275
-            /* any problems and we exit */
3276
-            //return '@@@33';
3277
-            return false;
3278
-        }
3280
+		global $wp_filesystem;
3281
+		//return '@@@1';
3282
+		return $wp_filesystem;
3279 3283
 
3280
-        global $wp_filesystem;
3281
-        //return '@@@1';
3282
-        return $wp_filesystem;
3283
-
3284
-    } else {
3285
-        //return '@@@2';
3286
-        /* don't have direct write access. Prompt user with our notice */
3287
-        add_action('admin_notice', 'geodir_filesystem_notice');
3288
-        return false;
3289
-    }
3284
+	} else {
3285
+		//return '@@@2';
3286
+		/* don't have direct write access. Prompt user with our notice */
3287
+		add_action('admin_notice', 'geodir_filesystem_notice');
3288
+		return false;
3289
+	}
3290 3290
 
3291 3291
 }
3292 3292
 
@@ -3304,10 +3304,10 @@  discard block
 block discarded – undo
3304 3304
  */
3305 3305
 function geodir_filesystem_notice()
3306 3306
 {   if ( defined( 'DOING_AJAX' ) ){return;}
3307
-    $access_type = get_filesystem_method();
3308
-    if ($access_type === 'direct') {
3309
-    } elseif (!defined('FTP_USER')) {
3310
-        ?>
3307
+	$access_type = get_filesystem_method();
3308
+	if ($access_type === 'direct') {
3309
+	} elseif (!defined('FTP_USER')) {
3310
+		?>
3311 3311
         <div class="error">
3312 3312
             <p><?php _e('GeoDirectory does not have access to your filesystem, thing like import/export will not work. Please define your details in wp-config.php as explained here', 'geodirectory'); ?>
3313 3313
                 <a target="_blank" href="http://codex.wordpress.org/Editing_wp-config.php#WordPress_Upgrade_Constants">http://codex.wordpress.org/Editing_wp-config.php#WordPress_Upgrade_Constants</a>
@@ -3335,1280 +3335,1280 @@  discard block
 block discarded – undo
3335 3335
  * @return string Json data.
3336 3336
  */
3337 3337
 function geodir_ajax_import_export() {
3338
-    global $wpdb, $plugin_prefix, $current_user, $wp_filesystem;
3338
+	global $wpdb, $plugin_prefix, $current_user, $wp_filesystem;
3339 3339
     
3340
-    error_reporting(0);
3340
+	error_reporting(0);
3341 3341
 
3342
-    $xstart = microtime(true);
3342
+	$xstart = microtime(true);
3343 3343
 
3344
-    // try to set higher limits for import
3345
-    $max_input_time = ini_get('max_input_time');
3346
-    $max_execution_time = ini_get('max_execution_time');
3347
-    $memory_limit= ini_get('memory_limit');
3344
+	// try to set higher limits for import
3345
+	$max_input_time = ini_get('max_input_time');
3346
+	$max_execution_time = ini_get('max_execution_time');
3347
+	$memory_limit= ini_get('memory_limit');
3348 3348
 
3349
-    if(!$max_input_time || $max_input_time<3000){
3350
-        @ini_set('max_input_time', 3000);
3351
-    }
3349
+	if(!$max_input_time || $max_input_time<3000){
3350
+		@ini_set('max_input_time', 3000);
3351
+	}
3352 3352
 
3353
-    if(!$max_execution_time || $max_execution_time<3000){
3354
-        @ini_set('max_execution_time', 3000);
3355
-    }
3353
+	if(!$max_execution_time || $max_execution_time<3000){
3354
+		@ini_set('max_execution_time', 3000);
3355
+	}
3356 3356
 
3357
-    if($memory_limit && str_replace('M','',$memory_limit)){
3358
-        if(str_replace('M','',$memory_limit)<256){
3359
-            @ini_set('memory_limit', '256M');
3360
-        }
3361
-    }
3357
+	if($memory_limit && str_replace('M','',$memory_limit)){
3358
+		if(str_replace('M','',$memory_limit)<256){
3359
+			@ini_set('memory_limit', '256M');
3360
+		}
3361
+	}
3362 3362
 
3363
-    $json = array();
3363
+	$json = array();
3364 3364
 
3365
-    if ( !current_user_can( 'manage_options' ) ) {
3366
-        wp_send_json( $json );
3367
-    }
3365
+	if ( !current_user_can( 'manage_options' ) ) {
3366
+		wp_send_json( $json );
3367
+	}
3368 3368
 
3369
-    $task = isset( $_REQUEST['task'] ) ? $_REQUEST['task'] : NULL;
3370
-    $nonce = isset( $_REQUEST['_nonce'] ) ? $_REQUEST['_nonce'] : NULL;
3371
-    $stat = isset( $_REQUEST['_st'] ) ? $_REQUEST['_st'] : false;
3369
+	$task = isset( $_REQUEST['task'] ) ? $_REQUEST['task'] : NULL;
3370
+	$nonce = isset( $_REQUEST['_nonce'] ) ? $_REQUEST['_nonce'] : NULL;
3371
+	$stat = isset( $_REQUEST['_st'] ) ? $_REQUEST['_st'] : false;
3372 3372
 
3373
-    if ( !wp_verify_nonce( $nonce, 'geodir_import_export_nonce' ) ) {
3374
-        wp_send_json( $json );
3375
-    }
3373
+	if ( !wp_verify_nonce( $nonce, 'geodir_import_export_nonce' ) ) {
3374
+		wp_send_json( $json );
3375
+	}
3376 3376
 
3377
-    $post_type = isset( $_REQUEST['_pt'] ) ? $_REQUEST['_pt'] : NULL;
3378
-    $chunk_per_page = isset( $_REQUEST['_n'] ) ? absint($_REQUEST['_n']) : NULL;
3379
-    $chunk_per_page = $chunk_per_page < 50 || $chunk_per_page > 100000 ? 5000 : $chunk_per_page;
3380
-    $chunk_page_no = isset( $_REQUEST['_p'] ) ? absint($_REQUEST['_p']) : 1;
3377
+	$post_type = isset( $_REQUEST['_pt'] ) ? $_REQUEST['_pt'] : NULL;
3378
+	$chunk_per_page = isset( $_REQUEST['_n'] ) ? absint($_REQUEST['_n']) : NULL;
3379
+	$chunk_per_page = $chunk_per_page < 50 || $chunk_per_page > 100000 ? 5000 : $chunk_per_page;
3380
+	$chunk_page_no = isset( $_REQUEST['_p'] ) ? absint($_REQUEST['_p']) : 1;
3381 3381
 
3382
-    $wp_filesystem = geodir_init_filesystem();
3383
-    if (!$wp_filesystem) {
3384
-        $json['error'] = __( 'Filesystem ERROR: Could not access filesystem.', 'geodirectory' );
3385
-        wp_send_json( $json );
3386
-    }
3382
+	$wp_filesystem = geodir_init_filesystem();
3383
+	if (!$wp_filesystem) {
3384
+		$json['error'] = __( 'Filesystem ERROR: Could not access filesystem.', 'geodirectory' );
3385
+		wp_send_json( $json );
3386
+	}
3387 3387
 
3388
-    if (!empty($wp_filesystem) && isset($wp_filesystem->errors) && is_wp_error($wp_filesystem->errors) && $wp_filesystem->errors->get_error_code()) {
3389
-        $json['error'] = __( 'Filesystem ERROR: ' . $wp_filesystem->errors->get_error_message(), 'geodirectory' );
3390
-        wp_send_json( $json );
3391
-    }
3388
+	if (!empty($wp_filesystem) && isset($wp_filesystem->errors) && is_wp_error($wp_filesystem->errors) && $wp_filesystem->errors->get_error_code()) {
3389
+		$json['error'] = __( 'Filesystem ERROR: ' . $wp_filesystem->errors->get_error_message(), 'geodirectory' );
3390
+		wp_send_json( $json );
3391
+	}
3392 3392
 
3393
-    $csv_file_dir = geodir_path_import_export( false );
3394
-    if ( !$wp_filesystem->is_dir( $csv_file_dir ) ) {
3395
-        if ( !$wp_filesystem->mkdir( $csv_file_dir, FS_CHMOD_DIR ) ) {
3396
-            $json['error'] = __( 'ERROR: Could not create cache directory. This is usually due to inconsistent file permissions.', 'geodirectory' );
3397
-            wp_send_json( $json );
3398
-        }
3399
-    }
3393
+	$csv_file_dir = geodir_path_import_export( false );
3394
+	if ( !$wp_filesystem->is_dir( $csv_file_dir ) ) {
3395
+		if ( !$wp_filesystem->mkdir( $csv_file_dir, FS_CHMOD_DIR ) ) {
3396
+			$json['error'] = __( 'ERROR: Could not create cache directory. This is usually due to inconsistent file permissions.', 'geodirectory' );
3397
+			wp_send_json( $json );
3398
+		}
3399
+	}
3400 3400
     
3401
-    $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
3402
-    $neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
3403
-
3404
-    switch ( $task ) {
3405
-        case 'export_posts': {
3406
-            // WPML
3407
-            $is_wpml = geodir_is_wpml();
3408
-            if ($is_wpml) {
3409
-                global $sitepress;
3410
-                $active_lang = ICL_LANGUAGE_CODE;
3401
+	$location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
3402
+	$neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
3403
+
3404
+	switch ( $task ) {
3405
+		case 'export_posts': {
3406
+			// WPML
3407
+			$is_wpml = geodir_is_wpml();
3408
+			if ($is_wpml) {
3409
+				global $sitepress;
3410
+				$active_lang = ICL_LANGUAGE_CODE;
3411 3411
                 
3412
-                $sitepress->switch_lang('all', true);
3413
-            }
3414
-            // WPML
3415
-            if ( $post_type == 'gd_event' ) {
3416
-                add_filter( 'geodir_imex_export_posts_query', 'geodir_imex_get_events_query', 10, 2 );
3417
-            }
3418
-            $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL;
3412
+				$sitepress->switch_lang('all', true);
3413
+			}
3414
+			// WPML
3415
+			if ( $post_type == 'gd_event' ) {
3416
+				add_filter( 'geodir_imex_export_posts_query', 'geodir_imex_get_events_query', 10, 2 );
3417
+			}
3418
+			$filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL;
3419 3419
             
3420
-            $file_name = $post_type . '_' . date( 'dmyHi' );
3421
-            if ( $filters && isset( $filters['start_date'] ) && isset( $filters['end_date'] ) ) {
3422
-                $file_name = $post_type . '_' . date_i18n( 'dmy', strtotime( $filters['start_date'] ) ) . '_' . date_i18n( 'dmy', strtotime( $filters['end_date'] ) );
3423
-            }
3424
-            $posts_count = geodir_get_posts_count( $post_type );
3425
-            $file_url_base = geodir_path_import_export() . '/';
3426
-            $file_url = $file_url_base . $file_name . '.csv';
3427
-            $file_path = $csv_file_dir . '/' . $file_name . '.csv';
3428
-            $file_path_temp = $csv_file_dir . '/' . $post_type . '_' . $nonce . '.csv';
3420
+			$file_name = $post_type . '_' . date( 'dmyHi' );
3421
+			if ( $filters && isset( $filters['start_date'] ) && isset( $filters['end_date'] ) ) {
3422
+				$file_name = $post_type . '_' . date_i18n( 'dmy', strtotime( $filters['start_date'] ) ) . '_' . date_i18n( 'dmy', strtotime( $filters['end_date'] ) );
3423
+			}
3424
+			$posts_count = geodir_get_posts_count( $post_type );
3425
+			$file_url_base = geodir_path_import_export() . '/';
3426
+			$file_url = $file_url_base . $file_name . '.csv';
3427
+			$file_path = $csv_file_dir . '/' . $file_name . '.csv';
3428
+			$file_path_temp = $csv_file_dir . '/' . $post_type . '_' . $nonce . '.csv';
3429 3429
             
3430
-            $chunk_file_paths = array();
3430
+			$chunk_file_paths = array();
3431 3431
 
3432
-            if ( isset( $_REQUEST['_c'] ) ) {
3433
-                $json['total'] = $posts_count;
3434
-                // WPML
3435
-                if ($is_wpml) {
3436
-                    $sitepress->switch_lang($active_lang, true);
3437
-                }
3438
-                // WPML
3439
-                wp_send_json( $json );
3440
-                gd_die();
3441
-            } else if ( isset( $_REQUEST['_st'] ) ) {
3442
-                $line_count = (int)geodir_import_export_line_count( $file_path_temp );
3443
-                $percentage = count( $posts_count ) > 0 && $line_count > 0 ? ceil( $line_count / $posts_count ) * 100 : 0;
3444
-                $percentage = min( $percentage, 100 );
3432
+			if ( isset( $_REQUEST['_c'] ) ) {
3433
+				$json['total'] = $posts_count;
3434
+				// WPML
3435
+				if ($is_wpml) {
3436
+					$sitepress->switch_lang($active_lang, true);
3437
+				}
3438
+				// WPML
3439
+				wp_send_json( $json );
3440
+				gd_die();
3441
+			} else if ( isset( $_REQUEST['_st'] ) ) {
3442
+				$line_count = (int)geodir_import_export_line_count( $file_path_temp );
3443
+				$percentage = count( $posts_count ) > 0 && $line_count > 0 ? ceil( $line_count / $posts_count ) * 100 : 0;
3444
+				$percentage = min( $percentage, 100 );
3445 3445
                 
3446
-                $json['percentage'] = $percentage;
3447
-                // WPML
3448
-                if ($is_wpml) {
3449
-                    $sitepress->switch_lang($active_lang, true);
3450
-                }
3451
-                // WPML
3452
-                wp_send_json( $json );
3453
-                gd_die();
3454
-            } else {
3455
-                if ( !$posts_count > 0 ) {
3456
-                    $json['error'] = __( 'No records to export.', 'geodirectory' );
3457
-                } else {
3458
-                    $total_posts = $posts_count;
3459
-                    if ($chunk_per_page > $total_posts) {
3460
-                        $chunk_per_page = $total_posts;
3461
-                    }
3462
-                    $chunk_total_pages = ceil( $total_posts / $chunk_per_page );
3446
+				$json['percentage'] = $percentage;
3447
+				// WPML
3448
+				if ($is_wpml) {
3449
+					$sitepress->switch_lang($active_lang, true);
3450
+				}
3451
+				// WPML
3452
+				wp_send_json( $json );
3453
+				gd_die();
3454
+			} else {
3455
+				if ( !$posts_count > 0 ) {
3456
+					$json['error'] = __( 'No records to export.', 'geodirectory' );
3457
+				} else {
3458
+					$total_posts = $posts_count;
3459
+					if ($chunk_per_page > $total_posts) {
3460
+						$chunk_per_page = $total_posts;
3461
+					}
3462
+					$chunk_total_pages = ceil( $total_posts / $chunk_per_page );
3463 3463
                     
3464
-                    $j = $chunk_page_no;
3465
-                    $chunk_save_posts = geodir_imex_get_posts( $post_type, $chunk_per_page, $j );
3464
+					$j = $chunk_page_no;
3465
+					$chunk_save_posts = geodir_imex_get_posts( $post_type, $chunk_per_page, $j );
3466 3466
                     
3467
-                    $per_page = 500;
3468
-                    if ($per_page > $chunk_per_page) {
3469
-                        $per_page = $chunk_per_page;
3470
-                    }
3471
-                    $total_pages = ceil( $chunk_per_page / $per_page );
3467
+					$per_page = 500;
3468
+					if ($per_page > $chunk_per_page) {
3469
+						$per_page = $chunk_per_page;
3470
+					}
3471
+					$total_pages = ceil( $chunk_per_page / $per_page );
3472 3472
                     
3473
-                    for ( $i = 0; $i <= $total_pages; $i++ ) {
3474
-                        $save_posts = array_slice( $chunk_save_posts , ( $i * $per_page ), $per_page );
3473
+					for ( $i = 0; $i <= $total_pages; $i++ ) {
3474
+						$save_posts = array_slice( $chunk_save_posts , ( $i * $per_page ), $per_page );
3475 3475
                         
3476
-                        $clear = $i == 0 ? true : false;
3477
-                        geodir_save_csv_data( $file_path_temp, $save_posts, $clear );
3478
-                    }
3476
+						$clear = $i == 0 ? true : false;
3477
+						geodir_save_csv_data( $file_path_temp, $save_posts, $clear );
3478
+					}
3479 3479
                         
3480
-                    if ( $wp_filesystem->exists( $file_path_temp ) ) {
3481
-                        $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3482
-                        $chunk_file_name = $file_name . $chunk_page_no . '.csv';
3483
-                        $file_path = $csv_file_dir . '/' . $chunk_file_name;
3484
-                        $wp_filesystem->move( $file_path_temp, $file_path, true );
3480
+					if ( $wp_filesystem->exists( $file_path_temp ) ) {
3481
+						$chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3482
+						$chunk_file_name = $file_name . $chunk_page_no . '.csv';
3483
+						$file_path = $csv_file_dir . '/' . $chunk_file_name;
3484
+						$wp_filesystem->move( $file_path_temp, $file_path, true );
3485 3485
                         
3486
-                        $file_url = $file_url_base . $chunk_file_name;
3487
-                        $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3488
-                    }
3486
+						$file_url = $file_url_base . $chunk_file_name;
3487
+						$chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3488
+					}
3489 3489
                     
3490
-                    if ( !empty($chunk_file_paths) ) {
3491
-                        $json['total'] = $posts_count;
3492
-                        $json['files'] = $chunk_file_paths;
3493
-                    } else {
3494
-                        if ($j > 1) {
3495
-                            $json['total'] = $posts_count;
3496
-                            $json['files'] = array();
3497
-                        } else {
3498
-                            $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' );
3499
-                        }
3500
-                    }
3501
-                }
3502
-                // WPML
3503
-                if ($is_wpml) {
3504
-                    $sitepress->switch_lang($active_lang, true);
3505
-                }
3506
-                // WPML
3507
-                wp_send_json( $json );
3508
-            }
3509
-        }
3510
-        break;
3511
-        case 'export_cats': {
3512
-            // WPML
3513
-            $is_wpml = geodir_is_wpml();
3514
-            if ($is_wpml) {
3515
-                global $sitepress;
3516
-                $active_lang = ICL_LANGUAGE_CODE;
3490
+					if ( !empty($chunk_file_paths) ) {
3491
+						$json['total'] = $posts_count;
3492
+						$json['files'] = $chunk_file_paths;
3493
+					} else {
3494
+						if ($j > 1) {
3495
+							$json['total'] = $posts_count;
3496
+							$json['files'] = array();
3497
+						} else {
3498
+							$json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' );
3499
+						}
3500
+					}
3501
+				}
3502
+				// WPML
3503
+				if ($is_wpml) {
3504
+					$sitepress->switch_lang($active_lang, true);
3505
+				}
3506
+				// WPML
3507
+				wp_send_json( $json );
3508
+			}
3509
+		}
3510
+		break;
3511
+		case 'export_cats': {
3512
+			// WPML
3513
+			$is_wpml = geodir_is_wpml();
3514
+			if ($is_wpml) {
3515
+				global $sitepress;
3516
+				$active_lang = ICL_LANGUAGE_CODE;
3517 3517
                 
3518
-                $sitepress->switch_lang('all', true);
3519
-            }
3520
-            // WPML
3521
-            $file_name = $post_type . 'category_' . date( 'dmyHi' );
3518
+				$sitepress->switch_lang('all', true);
3519
+			}
3520
+			// WPML
3521
+			$file_name = $post_type . 'category_' . date( 'dmyHi' );
3522 3522
             
3523
-            $terms_count = geodir_get_terms_count( $post_type );
3524
-            $file_url_base = geodir_path_import_export() . '/';
3525
-            $file_url = $file_url_base . $file_name . '.csv';
3526
-            $file_path = $csv_file_dir . '/' . $file_name . '.csv';
3527
-            $file_path_temp = $csv_file_dir . '/' . $post_type . 'category_' . $nonce . '.csv';
3523
+			$terms_count = geodir_get_terms_count( $post_type );
3524
+			$file_url_base = geodir_path_import_export() . '/';
3525
+			$file_url = $file_url_base . $file_name . '.csv';
3526
+			$file_path = $csv_file_dir . '/' . $file_name . '.csv';
3527
+			$file_path_temp = $csv_file_dir . '/' . $post_type . 'category_' . $nonce . '.csv';
3528 3528
             
3529
-            $chunk_file_paths = array();
3529
+			$chunk_file_paths = array();
3530 3530
             
3531
-            if ( isset( $_REQUEST['_st'] ) ) {
3532
-                $line_count = (int)geodir_import_export_line_count( $file_path_temp );
3533
-                $percentage = count( $terms_count ) > 0 && $line_count > 0 ? ceil( $line_count / $terms_count ) * 100 : 0;
3534
-                $percentage = min( $percentage, 100 );
3531
+			if ( isset( $_REQUEST['_st'] ) ) {
3532
+				$line_count = (int)geodir_import_export_line_count( $file_path_temp );
3533
+				$percentage = count( $terms_count ) > 0 && $line_count > 0 ? ceil( $line_count / $terms_count ) * 100 : 0;
3534
+				$percentage = min( $percentage, 100 );
3535 3535
                 
3536
-                $json['percentage'] = $percentage;
3537
-                // WPML
3538
-                if ($is_wpml) {
3539
-                    $sitepress->switch_lang($active_lang, true);
3540
-                }
3541
-                // WPML
3542
-                wp_send_json( $json );
3543
-            } else {
3544
-                if ( !$terms_count > 0 ) {
3545
-                    $json['error'] = __( 'No records to export.', 'geodirectory' );
3546
-                } else {
3547
-                    $total_terms = $terms_count;
3548
-                    if ($chunk_per_page > $terms_count) {
3549
-                        $chunk_per_page = $terms_count;
3550
-                    }
3551
-                    $chunk_total_pages = ceil( $total_terms / $chunk_per_page );
3536
+				$json['percentage'] = $percentage;
3537
+				// WPML
3538
+				if ($is_wpml) {
3539
+					$sitepress->switch_lang($active_lang, true);
3540
+				}
3541
+				// WPML
3542
+				wp_send_json( $json );
3543
+			} else {
3544
+				if ( !$terms_count > 0 ) {
3545
+					$json['error'] = __( 'No records to export.', 'geodirectory' );
3546
+				} else {
3547
+					$total_terms = $terms_count;
3548
+					if ($chunk_per_page > $terms_count) {
3549
+						$chunk_per_page = $terms_count;
3550
+					}
3551
+					$chunk_total_pages = ceil( $total_terms / $chunk_per_page );
3552 3552
                     
3553
-                    $j = $chunk_page_no;
3554
-                    $chunk_save_terms = geodir_imex_get_terms( $post_type, $chunk_per_page, $j );
3553
+					$j = $chunk_page_no;
3554
+					$chunk_save_terms = geodir_imex_get_terms( $post_type, $chunk_per_page, $j );
3555 3555
                     
3556
-                    $per_page = 500;
3557
-                    if ($per_page > $chunk_per_page) {
3558
-                        $per_page = $chunk_per_page;
3559
-                    }
3560
-                    $total_pages = ceil( $chunk_per_page / $per_page );
3556
+					$per_page = 500;
3557
+					if ($per_page > $chunk_per_page) {
3558
+						$per_page = $chunk_per_page;
3559
+					}
3560
+					$total_pages = ceil( $chunk_per_page / $per_page );
3561 3561
                     
3562
-                    for ( $i = 0; $i <= $total_pages; $i++ ) {
3563
-                        $save_terms = array_slice( $chunk_save_terms , ( $i * $per_page ), $per_page );
3562
+					for ( $i = 0; $i <= $total_pages; $i++ ) {
3563
+						$save_terms = array_slice( $chunk_save_terms , ( $i * $per_page ), $per_page );
3564 3564
                         
3565
-                        $clear = $i == 0 ? true : false;
3566
-                        geodir_save_csv_data( $file_path_temp, $save_terms, $clear );
3567
-                    }
3565
+						$clear = $i == 0 ? true : false;
3566
+						geodir_save_csv_data( $file_path_temp, $save_terms, $clear );
3567
+					}
3568 3568
                     
3569
-                    if ( $wp_filesystem->exists( $file_path_temp ) ) {
3570
-                        $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3571
-                        $chunk_file_name = $file_name . $chunk_page_no . '.csv';
3572
-                        $file_path = $csv_file_dir . '/' . $chunk_file_name;
3573
-                        $wp_filesystem->move( $file_path_temp, $file_path, true );
3569
+					if ( $wp_filesystem->exists( $file_path_temp ) ) {
3570
+						$chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3571
+						$chunk_file_name = $file_name . $chunk_page_no . '.csv';
3572
+						$file_path = $csv_file_dir . '/' . $chunk_file_name;
3573
+						$wp_filesystem->move( $file_path_temp, $file_path, true );
3574 3574
                         
3575
-                        $file_url = $file_url_base . $chunk_file_name;
3576
-                        $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3577
-                    }
3575
+						$file_url = $file_url_base . $chunk_file_name;
3576
+						$chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3577
+					}
3578 3578
                     
3579
-                    if ( !empty($chunk_file_paths) ) {
3580
-                        $json['total'] = $terms_count;
3581
-                        $json['files'] = $chunk_file_paths;
3582
-                    } else {
3583
-                        $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' );
3584
-                    }
3585
-                }
3586
-                // WPML
3587
-                if ($is_wpml) {
3588
-                    $sitepress->switch_lang($active_lang, true);
3589
-                }
3590
-                // WPML
3591
-                wp_send_json( $json );
3592
-            }
3593
-        }
3594
-        break;
3595
-        case 'export_locations': {
3596
-            $file_url_base = geodir_path_import_export() . '/';
3597
-            $file_name = 'gd_locations_' . date( 'dmyHi' );
3598
-            $file_url = $file_url_base . $file_name . '.csv';
3599
-            $file_path = $csv_file_dir . '/' . $file_name . '.csv';
3600
-            $file_path_temp = $csv_file_dir . '/gd_locations_' . $nonce . '.csv';
3579
+					if ( !empty($chunk_file_paths) ) {
3580
+						$json['total'] = $terms_count;
3581
+						$json['files'] = $chunk_file_paths;
3582
+					} else {
3583
+						$json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' );
3584
+					}
3585
+				}
3586
+				// WPML
3587
+				if ($is_wpml) {
3588
+					$sitepress->switch_lang($active_lang, true);
3589
+				}
3590
+				// WPML
3591
+				wp_send_json( $json );
3592
+			}
3593
+		}
3594
+		break;
3595
+		case 'export_locations': {
3596
+			$file_url_base = geodir_path_import_export() . '/';
3597
+			$file_name = 'gd_locations_' . date( 'dmyHi' );
3598
+			$file_url = $file_url_base . $file_name . '.csv';
3599
+			$file_path = $csv_file_dir . '/' . $file_name . '.csv';
3600
+			$file_path_temp = $csv_file_dir . '/gd_locations_' . $nonce . '.csv';
3601 3601
             
3602
-            $items_count = (int)geodir_location_imex_count_locations();
3602
+			$items_count = (int)geodir_location_imex_count_locations();
3603 3603
             
3604
-            if ( isset( $_REQUEST['_st'] ) ) {
3605
-                $line_count = (int)geodir_import_export_line_count( $file_path_temp );
3606
-                $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0;
3607
-                $percentage = min( $percentage, 100 );
3604
+			if ( isset( $_REQUEST['_st'] ) ) {
3605
+				$line_count = (int)geodir_import_export_line_count( $file_path_temp );
3606
+				$percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0;
3607
+				$percentage = min( $percentage, 100 );
3608 3608
                 
3609
-                $json['percentage'] = $percentage;
3610
-                wp_send_json( $json );
3611
-            } else {
3612
-                $chunk_file_paths = array();
3609
+				$json['percentage'] = $percentage;
3610
+				wp_send_json( $json );
3611
+			} else {
3612
+				$chunk_file_paths = array();
3613 3613
                 
3614
-                if ( !$items_count > 0 ) {
3615
-                    $json['error'] = __( 'No records to export.', 'geodirectory' );
3616
-                } else {
3617
-                    $chunk_per_page = min( $chunk_per_page, $items_count );
3618
-                    $chunk_total_pages = ceil( $items_count / $chunk_per_page );
3614
+				if ( !$items_count > 0 ) {
3615
+					$json['error'] = __( 'No records to export.', 'geodirectory' );
3616
+				} else {
3617
+					$chunk_per_page = min( $chunk_per_page, $items_count );
3618
+					$chunk_total_pages = ceil( $items_count / $chunk_per_page );
3619 3619
                     
3620
-                    $j = $chunk_page_no;
3621
-                    $chunk_save_items = geodir_location_imex_locations_data( $chunk_per_page, $j );
3620
+					$j = $chunk_page_no;
3621
+					$chunk_save_items = geodir_location_imex_locations_data( $chunk_per_page, $j );
3622 3622
                     
3623
-                    $per_page = 500;
3624
-                    $per_page = min( $per_page, $chunk_per_page );
3625
-                    $total_pages = ceil( $chunk_per_page / $per_page );
3623
+					$per_page = 500;
3624
+					$per_page = min( $per_page, $chunk_per_page );
3625
+					$total_pages = ceil( $chunk_per_page / $per_page );
3626 3626
                     
3627
-                    for ( $i = 0; $i <= $total_pages; $i++ ) {
3628
-                        $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page );
3627
+					for ( $i = 0; $i <= $total_pages; $i++ ) {
3628
+						$save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page );
3629 3629
                         
3630
-                        $clear = $i == 0 ? true : false;
3631
-                        geodir_save_csv_data( $file_path_temp, $save_items, $clear );
3632
-                    }
3630
+						$clear = $i == 0 ? true : false;
3631
+						geodir_save_csv_data( $file_path_temp, $save_items, $clear );
3632
+					}
3633 3633
                     
3634
-                    if ( $wp_filesystem->exists( $file_path_temp ) ) {
3635
-                        $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3636
-                        $chunk_file_name = $file_name . $chunk_page_no . '.csv';
3637
-                        $file_path = $csv_file_dir . '/' . $chunk_file_name;
3638
-                        $wp_filesystem->move( $file_path_temp, $file_path, true );
3634
+					if ( $wp_filesystem->exists( $file_path_temp ) ) {
3635
+						$chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3636
+						$chunk_file_name = $file_name . $chunk_page_no . '.csv';
3637
+						$file_path = $csv_file_dir . '/' . $chunk_file_name;
3638
+						$wp_filesystem->move( $file_path_temp, $file_path, true );
3639 3639
                         
3640
-                        $file_url = $file_url_base . $chunk_file_name;
3641
-                        $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3642
-                    }
3640
+						$file_url = $file_url_base . $chunk_file_name;
3641
+						$chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3642
+					}
3643 3643
                     
3644
-                    if ( !empty($chunk_file_paths) ) {
3645
-                        $json['total'] = $items_count;
3646
-                        $json['files'] = $chunk_file_paths;
3647
-                    } else {
3648
-                        $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' );
3649
-                    }
3650
-                }
3651
-                wp_send_json( $json );
3652
-            }
3653
-        }
3654
-        break;
3655
-        case 'export_hoods': {
3656
-            $file_url_base = geodir_path_import_export() . '/';
3657
-            $file_name = 'gd_neighbourhoods_' . date( 'dmyHi' );
3658
-            $file_url = $file_url_base . $file_name . '.csv';
3659
-            $file_path = $csv_file_dir . '/' . $file_name . '.csv';
3660
-            $file_path_temp = $csv_file_dir . '/gd_neighbourhoods_' . $nonce . '.csv';
3644
+					if ( !empty($chunk_file_paths) ) {
3645
+						$json['total'] = $items_count;
3646
+						$json['files'] = $chunk_file_paths;
3647
+					} else {
3648
+						$json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' );
3649
+					}
3650
+				}
3651
+				wp_send_json( $json );
3652
+			}
3653
+		}
3654
+		break;
3655
+		case 'export_hoods': {
3656
+			$file_url_base = geodir_path_import_export() . '/';
3657
+			$file_name = 'gd_neighbourhoods_' . date( 'dmyHi' );
3658
+			$file_url = $file_url_base . $file_name . '.csv';
3659
+			$file_path = $csv_file_dir . '/' . $file_name . '.csv';
3660
+			$file_path_temp = $csv_file_dir . '/gd_neighbourhoods_' . $nonce . '.csv';
3661 3661
             
3662
-            $items_count = (int)geodir_location_imex_count_neighbourhoods();
3662
+			$items_count = (int)geodir_location_imex_count_neighbourhoods();
3663 3663
             
3664
-            if ( isset( $_REQUEST['_st'] ) ) {
3665
-                $line_count = (int)geodir_import_export_line_count( $file_path_temp );
3666
-                $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0;
3667
-                $percentage = min( $percentage, 100 );
3664
+			if ( isset( $_REQUEST['_st'] ) ) {
3665
+				$line_count = (int)geodir_import_export_line_count( $file_path_temp );
3666
+				$percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0;
3667
+				$percentage = min( $percentage, 100 );
3668 3668
                 
3669
-                $json['percentage'] = $percentage;
3670
-                wp_send_json( $json );
3671
-            } else {
3672
-                $chunk_file_paths = array();
3669
+				$json['percentage'] = $percentage;
3670
+				wp_send_json( $json );
3671
+			} else {
3672
+				$chunk_file_paths = array();
3673 3673
                 
3674
-                if ( !$items_count > 0 ) {
3675
-                    $json['error'] = __( 'No records to export.', 'geodirectory' );
3676
-                } else {
3677
-                    $chunk_per_page = min( $chunk_per_page, $items_count );
3678
-                    $chunk_total_pages = ceil( $items_count / $chunk_per_page );
3674
+				if ( !$items_count > 0 ) {
3675
+					$json['error'] = __( 'No records to export.', 'geodirectory' );
3676
+				} else {
3677
+					$chunk_per_page = min( $chunk_per_page, $items_count );
3678
+					$chunk_total_pages = ceil( $items_count / $chunk_per_page );
3679 3679
                     
3680
-                    $j = $chunk_page_no;
3681
-                    $chunk_save_items = geodir_location_imex_neighbourhoods_data( $chunk_per_page, $j );
3680
+					$j = $chunk_page_no;
3681
+					$chunk_save_items = geodir_location_imex_neighbourhoods_data( $chunk_per_page, $j );
3682 3682
                     
3683
-                    $per_page = 500;
3684
-                    $per_page = min( $per_page, $chunk_per_page );
3685
-                    $total_pages = ceil( $chunk_per_page / $per_page );
3683
+					$per_page = 500;
3684
+					$per_page = min( $per_page, $chunk_per_page );
3685
+					$total_pages = ceil( $chunk_per_page / $per_page );
3686 3686
                     
3687
-                    for ( $i = 0; $i <= $total_pages; $i++ ) {
3688
-                        $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page );
3687
+					for ( $i = 0; $i <= $total_pages; $i++ ) {
3688
+						$save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page );
3689 3689
                         
3690
-                        $clear = $i == 0 ? true : false;
3691
-                        geodir_save_csv_data( $file_path_temp, $save_items, $clear );
3692
-                    }
3690
+						$clear = $i == 0 ? true : false;
3691
+						geodir_save_csv_data( $file_path_temp, $save_items, $clear );
3692
+					}
3693 3693
                     
3694
-                    if ( $wp_filesystem->exists( $file_path_temp ) ) {
3695
-                        $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3696
-                        $chunk_file_name = $file_name . $chunk_page_no . '.csv';
3697
-                        $file_path = $csv_file_dir . '/' . $chunk_file_name;
3698
-                        $wp_filesystem->move( $file_path_temp, $file_path, true );
3694
+					if ( $wp_filesystem->exists( $file_path_temp ) ) {
3695
+						$chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3696
+						$chunk_file_name = $file_name . $chunk_page_no . '.csv';
3697
+						$file_path = $csv_file_dir . '/' . $chunk_file_name;
3698
+						$wp_filesystem->move( $file_path_temp, $file_path, true );
3699 3699
                         
3700
-                        $file_url = $file_url_base . $chunk_file_name;
3701
-                        $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3702
-                    }
3700
+						$file_url = $file_url_base . $chunk_file_name;
3701
+						$chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3702
+					}
3703 3703
                     
3704
-                    if ( !empty($chunk_file_paths) ) {
3705
-                        $json['total'] = $items_count;
3706
-                        $json['files'] = $chunk_file_paths;
3707
-                    } else {
3708
-                        $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' );
3709
-                    }
3710
-                }
3711
-                wp_send_json( $json );
3712
-            }
3713
-        }
3714
-        break;
3715
-        case 'prepare_import':
3716
-        case 'import_cat':
3717
-        case 'import_post':
3718
-        case 'import_loc':
3719
-        case 'import_hood': {
3720
-            // WPML
3721
-            $is_wpml = geodir_is_wpml();
3722
-            if ($is_wpml) {
3723
-                global $sitepress;
3724
-                $active_lang = ICL_LANGUAGE_CODE;
3725
-            }
3726
-            // WPML
3704
+					if ( !empty($chunk_file_paths) ) {
3705
+						$json['total'] = $items_count;
3706
+						$json['files'] = $chunk_file_paths;
3707
+					} else {
3708
+						$json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' );
3709
+					}
3710
+				}
3711
+				wp_send_json( $json );
3712
+			}
3713
+		}
3714
+		break;
3715
+		case 'prepare_import':
3716
+		case 'import_cat':
3717
+		case 'import_post':
3718
+		case 'import_loc':
3719
+		case 'import_hood': {
3720
+			// WPML
3721
+			$is_wpml = geodir_is_wpml();
3722
+			if ($is_wpml) {
3723
+				global $sitepress;
3724
+				$active_lang = ICL_LANGUAGE_CODE;
3725
+			}
3726
+			// WPML
3727 3727
             
3728
-            @ini_set( 'auto_detect_line_endings', true );
3728
+			@ini_set( 'auto_detect_line_endings', true );
3729 3729
             
3730
-            $uploads = wp_upload_dir();
3731
-            $uploads_dir = $uploads['path'];
3732
-            $uploads_subdir = $uploads['subdir'];
3730
+			$uploads = wp_upload_dir();
3731
+			$uploads_dir = $uploads['path'];
3732
+			$uploads_subdir = $uploads['subdir'];
3733 3733
             
3734
-            $csv_file = isset( $_POST['_file'] ) ? $_POST['_file'] : NULL;
3735
-            $import_choice = isset( $_REQUEST['_ch'] ) ? $_REQUEST['_ch'] : 'skip';
3734
+			$csv_file = isset( $_POST['_file'] ) ? $_POST['_file'] : NULL;
3735
+			$import_choice = isset( $_REQUEST['_ch'] ) ? $_REQUEST['_ch'] : 'skip';
3736 3736
             
3737
-            $csv_file_arr = explode( '/', $csv_file );
3738
-            $csv_filename = end( $csv_file_arr );
3739
-            $target_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $csv_filename;
3737
+			$csv_file_arr = explode( '/', $csv_file );
3738
+			$csv_filename = end( $csv_file_arr );
3739
+			$target_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $csv_filename;
3740 3740
             
3741
-            $json['file'] = $csv_file;
3742
-            $json['error'] = __( 'The uploaded file is not a valid csv file. Please try again.', 'geodirectory' );
3743
-            $file = array();
3744
-
3745
-            if ( $csv_file && $wp_filesystem->is_file( $target_path ) && $wp_filesystem->exists( $target_path ) ) {
3746
-                $wp_filetype = wp_check_filetype_and_ext( $target_path, $csv_filename );
3747
-
3748
-                if (!empty($wp_filetype) && isset($wp_filetype['ext']) && geodir_strtolower($wp_filetype['ext']) == 'csv') {
3749
-                    $json['error'] = NULL;
3750
-
3751
-                    $lc_all = setlocale(LC_ALL, 0); // Fix issue of fgetcsv ignores special characters when they are at the beginning of line
3752
-                    setlocale(LC_ALL, 'en_US.UTF-8');
3753
-                    if ( ( $handle = fopen($target_path, "r" ) ) !== FALSE ) {
3754
-                        while ( ( $data = fgetcsv( $handle, 100000, "," ) ) !== FALSE ) {
3755
-                            if ( !empty( $data ) ) {
3756
-                                $file[] = $data;
3757
-                            }
3758
-                        }
3759
-                        fclose($handle);
3760
-                    }
3761
-                    setlocale(LC_ALL, $lc_all);
3741
+			$json['file'] = $csv_file;
3742
+			$json['error'] = __( 'The uploaded file is not a valid csv file. Please try again.', 'geodirectory' );
3743
+			$file = array();
3744
+
3745
+			if ( $csv_file && $wp_filesystem->is_file( $target_path ) && $wp_filesystem->exists( $target_path ) ) {
3746
+				$wp_filetype = wp_check_filetype_and_ext( $target_path, $csv_filename );
3747
+
3748
+				if (!empty($wp_filetype) && isset($wp_filetype['ext']) && geodir_strtolower($wp_filetype['ext']) == 'csv') {
3749
+					$json['error'] = NULL;
3750
+
3751
+					$lc_all = setlocale(LC_ALL, 0); // Fix issue of fgetcsv ignores special characters when they are at the beginning of line
3752
+					setlocale(LC_ALL, 'en_US.UTF-8');
3753
+					if ( ( $handle = fopen($target_path, "r" ) ) !== FALSE ) {
3754
+						while ( ( $data = fgetcsv( $handle, 100000, "," ) ) !== FALSE ) {
3755
+							if ( !empty( $data ) ) {
3756
+								$file[] = $data;
3757
+							}
3758
+						}
3759
+						fclose($handle);
3760
+					}
3761
+					setlocale(LC_ALL, $lc_all);
3762 3762
 
3763
-                    $json['rows'] = (!empty($file) && count($file) > 1) ? count($file) - 1 : 0;
3763
+					$json['rows'] = (!empty($file) && count($file) > 1) ? count($file) - 1 : 0;
3764 3764
                     
3765
-                    if (!$json['rows'] > 0) {
3766
-                        $json['error'] = __('No data found in csv file.', 'geodirectory');
3767
-                    }
3768
-                } else {
3769
-                    wp_send_json( $json );
3770
-                }
3771
-            } else {
3772
-                wp_send_json( $json );
3773
-            }
3765
+					if (!$json['rows'] > 0) {
3766
+						$json['error'] = __('No data found in csv file.', 'geodirectory');
3767
+					}
3768
+				} else {
3769
+					wp_send_json( $json );
3770
+				}
3771
+			} else {
3772
+				wp_send_json( $json );
3773
+			}
3774 3774
             
3775
-            if ( $task == 'prepare_import' || !empty( $json['error'] ) ) {
3776
-                wp_send_json( $json );
3777
-            }
3775
+			if ( $task == 'prepare_import' || !empty( $json['error'] ) ) {
3776
+				wp_send_json( $json );
3777
+			}
3778 3778
             
3779
-            $total = $json['rows'];
3780
-            $limit = isset($_POST['limit']) ? (int)$_POST['limit'] : 1;
3781
-            $processed = isset($_POST['processed']) ? (int)$_POST['processed'] : 0;
3779
+			$total = $json['rows'];
3780
+			$limit = isset($_POST['limit']) ? (int)$_POST['limit'] : 1;
3781
+			$processed = isset($_POST['processed']) ? (int)$_POST['processed'] : 0;
3782 3782
             
3783
-            $count = $limit;
3783
+			$count = $limit;
3784 3784
             
3785
-            if ($count < $total) {
3786
-                $count = $processed + $count;
3787
-                if ($count > $total) {
3788
-                    $count = $total;
3789
-                }
3790
-            } else {
3791
-                $count = $total;
3792
-            }
3785
+			if ($count < $total) {
3786
+				$count = $processed + $count;
3787
+				if ($count > $total) {
3788
+					$count = $total;
3789
+				}
3790
+			} else {
3791
+				$count = $total;
3792
+			}
3793 3793
             
3794
-            $created = 0;
3795
-            $updated = 0;
3796
-            $skipped = 0;
3797
-            $invalid = 0;
3798
-            $invalid_addr = 0;
3799
-            $images = 0;
3794
+			$created = 0;
3795
+			$updated = 0;
3796
+			$skipped = 0;
3797
+			$invalid = 0;
3798
+			$invalid_addr = 0;
3799
+			$images = 0;
3800 3800
             
3801
-            $gd_post_info = array();
3802
-            $countpost = 0;
3801
+			$gd_post_info = array();
3802
+			$countpost = 0;
3803 3803
             
3804
-            $post_types = geodir_get_posttypes();
3804
+			$post_types = geodir_get_posttypes();
3805 3805
 
3806
-            if ( $task == 'import_cat' ) {
3807
-                if (!empty($file)) {
3808
-                    $columns = isset($file[0]) ? $file[0] : NULL;
3806
+			if ( $task == 'import_cat' ) {
3807
+				if (!empty($file)) {
3808
+					$columns = isset($file[0]) ? $file[0] : NULL;
3809 3809
                     
3810
-                    if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
3811
-                        $json['error'] = CSV_INVAILD_FILE;
3812
-                        wp_send_json( $json );
3813
-                        exit;
3814
-                    }
3810
+					if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
3811
+						$json['error'] = CSV_INVAILD_FILE;
3812
+						wp_send_json( $json );
3813
+						exit;
3814
+					}
3815 3815
                     
3816
-                    $gd_error_log = __('GD IMPORT CATEGORIES [ROW %d]:', 'geodirectory');
3816
+					$gd_error_log = __('GD IMPORT CATEGORIES [ROW %d]:', 'geodirectory');
3817 3817
                     
3818
-                    for ($i = 1; $i <= $limit; $i++) {
3819
-                        $index = $processed + $i;
3818
+					for ($i = 1; $i <= $limit; $i++) {
3819
+						$index = $processed + $i;
3820 3820
                         
3821
-                        if (isset($file[$index])) {
3822
-                            $row = $file[$index];
3823
-                            $row = array_map( 'trim', $row );
3824
-                            //$row = array_map( 'utf8_encode', $row );
3821
+						if (isset($file[$index])) {
3822
+							$row = $file[$index];
3823
+							$row = array_map( 'trim', $row );
3824
+							//$row = array_map( 'utf8_encode', $row );
3825 3825
                             
3826
-                            $cat_id = '';
3827
-                            $cat_name = '';
3828
-                            $cat_slug = '';
3829
-                            $cat_posttype = '';
3830
-                            $cat_parent = '';
3831
-                            $cat_description = '';
3832
-                            $cat_schema = '';
3833
-                            $cat_top_description = '';
3834
-                            $cat_image = '';
3835
-                            $cat_icon = '';
3836
-                            $cat_language = '';
3837
-                            $cat_id_original = '';
3826
+							$cat_id = '';
3827
+							$cat_name = '';
3828
+							$cat_slug = '';
3829
+							$cat_posttype = '';
3830
+							$cat_parent = '';
3831
+							$cat_description = '';
3832
+							$cat_schema = '';
3833
+							$cat_top_description = '';
3834
+							$cat_image = '';
3835
+							$cat_icon = '';
3836
+							$cat_language = '';
3837
+							$cat_id_original = '';
3838 3838
                             
3839
-                            $c = 0;
3840
-                            foreach ($columns as $column ) {
3841
-                                if ( $column == 'cat_id' ) {
3842
-                                    $cat_id = (int)$row[$c];
3843
-                                } else if ( $column == 'cat_name' ) {
3844
-                                    $cat_name = $row[$c];
3845
-                                } else if ( $column == 'cat_slug' ) {
3846
-                                    $cat_slug = $row[$c];
3847
-                                } else if ( $column == 'cat_posttype' ) {
3848
-                                    $cat_posttype = $row[$c];
3849
-                                } else if ( $column == 'cat_parent' ) {
3850
-                                    $cat_parent = trim($row[$c]);
3851
-                                } else if ( $column == 'cat_schema' && $row[$c] != '' ) {
3852
-                                    $cat_schema = $row[$c];
3853
-                                } else if ( $column == 'cat_description' ) {
3854
-                                    $cat_description = $row[$c];
3855
-                                } else if ( $column == 'cat_top_description' ) {
3856
-                                    $cat_top_description = $row[$c];
3857
-                                } else if ( $column == 'cat_image' ) {
3858
-                                    $cat_image = $row[$c];
3859
-                                } else if ( $column == 'cat_icon' ) {
3860
-                                    $cat_icon = $row[$c];
3861
-                                }
3862
-                                // WPML
3863
-                                if ( $is_wpml ) {
3864
-                                    if ( $column == 'cat_language' ) {
3865
-                                        $cat_language = geodir_strtolower( trim( $row[$c] ) );
3866
-                                    } else if ( $column == 'cat_id_original' ) {
3867
-                                        $cat_id_original = (int)$row[$c];
3868
-                                    }
3869
-                                }
3870
-                                // WPML
3871
-                                $c++;
3872
-                            }
3839
+							$c = 0;
3840
+							foreach ($columns as $column ) {
3841
+								if ( $column == 'cat_id' ) {
3842
+									$cat_id = (int)$row[$c];
3843
+								} else if ( $column == 'cat_name' ) {
3844
+									$cat_name = $row[$c];
3845
+								} else if ( $column == 'cat_slug' ) {
3846
+									$cat_slug = $row[$c];
3847
+								} else if ( $column == 'cat_posttype' ) {
3848
+									$cat_posttype = $row[$c];
3849
+								} else if ( $column == 'cat_parent' ) {
3850
+									$cat_parent = trim($row[$c]);
3851
+								} else if ( $column == 'cat_schema' && $row[$c] != '' ) {
3852
+									$cat_schema = $row[$c];
3853
+								} else if ( $column == 'cat_description' ) {
3854
+									$cat_description = $row[$c];
3855
+								} else if ( $column == 'cat_top_description' ) {
3856
+									$cat_top_description = $row[$c];
3857
+								} else if ( $column == 'cat_image' ) {
3858
+									$cat_image = $row[$c];
3859
+								} else if ( $column == 'cat_icon' ) {
3860
+									$cat_icon = $row[$c];
3861
+								}
3862
+								// WPML
3863
+								if ( $is_wpml ) {
3864
+									if ( $column == 'cat_language' ) {
3865
+										$cat_language = geodir_strtolower( trim( $row[$c] ) );
3866
+									} else if ( $column == 'cat_id_original' ) {
3867
+										$cat_id_original = (int)$row[$c];
3868
+									}
3869
+								}
3870
+								// WPML
3871
+								$c++;
3872
+							}
3873 3873
                             
3874
-                            if ( $cat_name == '' || !in_array( $cat_posttype, $post_types ) ) {
3875
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) );
3874
+							if ( $cat_name == '' || !in_array( $cat_posttype, $post_types ) ) {
3875
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) );
3876 3876
                                 
3877
-                                $invalid++;
3878
-                                continue;
3879
-                            }
3877
+								$invalid++;
3878
+								continue;
3879
+							}
3880 3880
                             
3881
-                            // WPML
3882
-                            if ($is_wpml && $cat_language != '') {
3883
-                                $sitepress->switch_lang($cat_language, true);
3884
-                            }
3885
-                            // WPML
3881
+							// WPML
3882
+							if ($is_wpml && $cat_language != '') {
3883
+								$sitepress->switch_lang($cat_language, true);
3884
+							}
3885
+							// WPML
3886 3886
                                                         
3887
-                            $term_data = array();
3888
-                            $term_data['name'] = $cat_name;
3889
-                            $term_data['slug'] = $cat_slug;
3890
-                            $term_data['description'] = $cat_description;
3891
-                            $term_data['cat_schema'] = $cat_schema;
3892
-                            $term_data['top_description'] = $cat_top_description;
3893
-                            $term_data['image'] = $cat_image != '' ? basename( $cat_image ) : '';
3894
-                            $term_data['icon'] = $cat_icon != '' ? basename( $cat_icon ) : '';
3887
+							$term_data = array();
3888
+							$term_data['name'] = $cat_name;
3889
+							$term_data['slug'] = $cat_slug;
3890
+							$term_data['description'] = $cat_description;
3891
+							$term_data['cat_schema'] = $cat_schema;
3892
+							$term_data['top_description'] = $cat_top_description;
3893
+							$term_data['image'] = $cat_image != '' ? basename( $cat_image ) : '';
3894
+							$term_data['icon'] = $cat_icon != '' ? basename( $cat_icon ) : '';
3895 3895
                             
3896
-                            //$term_data = array_map( 'utf8_encode', $term_data );
3896
+							//$term_data = array_map( 'utf8_encode', $term_data );
3897 3897
                             
3898
-                            $taxonomy = $cat_posttype . 'category';
3898
+							$taxonomy = $cat_posttype . 'category';
3899 3899
                             
3900
-                            $term_data['taxonomy'] = $taxonomy;
3900
+							$term_data['taxonomy'] = $taxonomy;
3901 3901
 
3902
-                            $term_parent_id = 0;
3903
-                            if ($cat_parent != "" || (int)$cat_parent > 0) {
3904
-                                $term_parent = '';
3902
+							$term_parent_id = 0;
3903
+							if ($cat_parent != "" || (int)$cat_parent > 0) {
3904
+								$term_parent = '';
3905 3905
                                 
3906
-                                if ( $term_parent = get_term_by( 'name', $cat_parent, $taxonomy ) ) {
3907
-                                    //
3908
-                                } else if ( $term_parent = get_term_by( 'slug', $cat_parent, $taxonomy ) ) {
3909
-                                    //
3910
-                                } else if ( $term_parent = get_term_by( 'id', $cat_parent, $taxonomy ) ) {
3911
-                                    //
3912
-                                } else {
3913
-                                    $term_parent_data = array();
3914
-                                    $term_parent_data['name'] = $cat_parent;
3915
-                                    //$term_parent_data = array_map( 'utf8_encode', $term_parent_data );
3916
-                                    $term_parent_data['taxonomy'] = $taxonomy;
3906
+								if ( $term_parent = get_term_by( 'name', $cat_parent, $taxonomy ) ) {
3907
+									//
3908
+								} else if ( $term_parent = get_term_by( 'slug', $cat_parent, $taxonomy ) ) {
3909
+									//
3910
+								} else if ( $term_parent = get_term_by( 'id', $cat_parent, $taxonomy ) ) {
3911
+									//
3912
+								} else {
3913
+									$term_parent_data = array();
3914
+									$term_parent_data['name'] = $cat_parent;
3915
+									//$term_parent_data = array_map( 'utf8_encode', $term_parent_data );
3916
+									$term_parent_data['taxonomy'] = $taxonomy;
3917 3917
                                     
3918
-                                    $term_parent_id = (int)geodir_imex_insert_term( $taxonomy, $term_parent_data );
3919
-                                }
3918
+									$term_parent_id = (int)geodir_imex_insert_term( $taxonomy, $term_parent_data );
3919
+								}
3920 3920
                                 
3921
-                                if ( !empty( $term_parent ) && !is_wp_error( $term_parent ) ) {
3922
-                                    $term_parent_id = (int)$term_parent->term_id;
3923
-                                }
3924
-                            }
3925
-                            $term_data['parent'] = (int)$term_parent_id;
3921
+								if ( !empty( $term_parent ) && !is_wp_error( $term_parent ) ) {
3922
+									$term_parent_id = (int)$term_parent->term_id;
3923
+								}
3924
+							}
3925
+							$term_data['parent'] = (int)$term_parent_id;
3926 3926
 
3927
-                            $term_id = NULL;
3928
-                            if ( $import_choice == 'update' ) {
3929
-                                if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
3930
-                                    $term_data['term_id'] = $term['term_id'];
3927
+							$term_id = NULL;
3928
+							if ( $import_choice == 'update' ) {
3929
+								if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
3930
+									$term_data['term_id'] = $term['term_id'];
3931 3931
                                     
3932
-                                    if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
3933
-                                        $updated++;
3934
-                                    } else {
3935
-                                        $invalid++;
3936
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3937
-                                    }
3938
-                                } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
3939
-                                    $term_data['term_id'] = $term['term_id'];
3932
+									if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
3933
+										$updated++;
3934
+									} else {
3935
+										$invalid++;
3936
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3937
+									}
3938
+								} else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
3939
+									$term_data['term_id'] = $term['term_id'];
3940 3940
                                     
3941
-                                    if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
3942
-                                        $updated++;
3943
-                                    } else {
3944
-                                        $invalid++;
3945
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3946
-                                    }
3947
-                                } else {
3948
-                                    if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
3949
-                                        $created++;
3950
-                                    } else {
3951
-                                        $invalid++;
3952
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3953
-                                    }
3954
-                                }
3955
-                            } else if ( $import_choice == 'skip' ) {
3956
-                                if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
3957
-                                    $skipped++;
3958
-                                } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
3959
-                                    $skipped++;
3960
-                                } else {
3961
-                                    if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
3962
-                                        $created++;
3963
-                                    } else {
3964
-                                        $invalid++;
3965
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3966
-                                    }
3967
-                                }
3968
-                            } else {
3969
-                                $invalid++;
3970
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3971
-                            }
3941
+									if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
3942
+										$updated++;
3943
+									} else {
3944
+										$invalid++;
3945
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3946
+									}
3947
+								} else {
3948
+									if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
3949
+										$created++;
3950
+									} else {
3951
+										$invalid++;
3952
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3953
+									}
3954
+								}
3955
+							} else if ( $import_choice == 'skip' ) {
3956
+								if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
3957
+									$skipped++;
3958
+								} else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
3959
+									$skipped++;
3960
+								} else {
3961
+									if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
3962
+										$created++;
3963
+									} else {
3964
+										$invalid++;
3965
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3966
+									}
3967
+								}
3968
+							} else {
3969
+								$invalid++;
3970
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3971
+							}
3972 3972
                             
3973
-                            if ( $term_id ) {
3974
-                                // WPML
3975
-                                if ($is_wpml && geodir_wpml_is_taxonomy_translated($taxonomy) && $cat_id_original > 0 && $cat_language != '') {
3976
-                                    $wpml_element_type = 'tax_' . $taxonomy;
3977
-                                    $source_language = geodir_get_language_for_element( $cat_id_original, $wpml_element_type );
3978
-                                    $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language();
3979
-
3980
-                                    $trid = $sitepress->get_element_trid( $cat_id_original, $wpml_element_type );
3973
+							if ( $term_id ) {
3974
+								// WPML
3975
+								if ($is_wpml && geodir_wpml_is_taxonomy_translated($taxonomy) && $cat_id_original > 0 && $cat_language != '') {
3976
+									$wpml_element_type = 'tax_' . $taxonomy;
3977
+									$source_language = geodir_get_language_for_element( $cat_id_original, $wpml_element_type );
3978
+									$source_language = $source_language != '' ? $source_language : $sitepress->get_default_language();
3979
+
3980
+									$trid = $sitepress->get_element_trid( $cat_id_original, $wpml_element_type );
3981 3981
                                     
3982
-                                    $sitepress->set_element_language_details( $term_id, $wpml_element_type, $trid, $cat_language, $source_language );
3983
-                                }
3984
-                                // WPML
3982
+									$sitepress->set_element_language_details( $term_id, $wpml_element_type, $trid, $cat_language, $source_language );
3983
+								}
3984
+								// WPML
3985 3985
                                 
3986
-                                if ( isset( $term_data['top_description'] ) ) {
3987
-                                    geodir_update_tax_meta( $term_id, 'ct_cat_top_desc', $term_data['top_description'], $cat_posttype );
3988
-                                }
3986
+								if ( isset( $term_data['top_description'] ) ) {
3987
+									geodir_update_tax_meta( $term_id, 'ct_cat_top_desc', $term_data['top_description'], $cat_posttype );
3988
+								}
3989 3989
                                 
3990
-                                if ( isset( $term_data['cat_schema'] ) ) {
3991
-                                    geodir_update_tax_meta( $term_id, 'ct_cat_schema', $term_data['cat_schema'], $cat_posttype );
3992
-                                }
3990
+								if ( isset( $term_data['cat_schema'] ) ) {
3991
+									geodir_update_tax_meta( $term_id, 'ct_cat_schema', $term_data['cat_schema'], $cat_posttype );
3992
+								}
3993 3993
             
3994
-                                $attachment = false;
3995
-                                if ( isset( $term_data['image'] ) && $term_data['image'] != '' ) {
3996
-                                    $cat_image = geodir_get_default_catimage( $term_id, $cat_posttype );
3997
-                                    $cat_image = !empty( $cat_image ) && isset( $cat_image['src'] ) ? $cat_image['src'] : '';
3994
+								$attachment = false;
3995
+								if ( isset( $term_data['image'] ) && $term_data['image'] != '' ) {
3996
+									$cat_image = geodir_get_default_catimage( $term_id, $cat_posttype );
3997
+									$cat_image = !empty( $cat_image ) && isset( $cat_image['src'] ) ? $cat_image['src'] : '';
3998 3998
                                     
3999
-                                    if ( basename($cat_image) != $term_data['image'] ) {
4000
-                                        $attachment = true;
4001
-                                        geodir_update_tax_meta( $term_id, 'ct_cat_default_img', array( 'id' => 'image', 'src' => $uploads['url'] . '/' . $term_data['image'] ), $cat_posttype );
4002
-                                    }
4003
-                                }
3999
+									if ( basename($cat_image) != $term_data['image'] ) {
4000
+										$attachment = true;
4001
+										geodir_update_tax_meta( $term_id, 'ct_cat_default_img', array( 'id' => 'image', 'src' => $uploads['url'] . '/' . $term_data['image'] ), $cat_posttype );
4002
+									}
4003
+								}
4004 4004
                                 
4005
-                                if ( isset( $term_data['icon'] ) && $term_data['icon'] != '' ) {
4006
-                                    $cat_icon = geodir_get_tax_meta( $term_id, 'ct_cat_icon', false, $cat_posttype );
4007
-                                    $cat_icon = !empty( $cat_icon ) && isset( $cat_icon['src'] ) ? $cat_icon['src'] : '';
4008
-
4009
-                                    if ( basename($cat_icon) != $term_data['icon'] ) {
4010
-                                        $attachment = true;
4011
-                                        geodir_update_tax_meta( $term_id, 'ct_cat_icon', array( 'id' => 'icon', 'src' => $uploads['url'] . '/' . $term_data['icon'] ), $cat_posttype );
4012
-                                    }
4013
-                                }
4005
+								if ( isset( $term_data['icon'] ) && $term_data['icon'] != '' ) {
4006
+									$cat_icon = geodir_get_tax_meta( $term_id, 'ct_cat_icon', false, $cat_posttype );
4007
+									$cat_icon = !empty( $cat_icon ) && isset( $cat_icon['src'] ) ? $cat_icon['src'] : '';
4008
+
4009
+									if ( basename($cat_icon) != $term_data['icon'] ) {
4010
+										$attachment = true;
4011
+										geodir_update_tax_meta( $term_id, 'ct_cat_icon', array( 'id' => 'icon', 'src' => $uploads['url'] . '/' . $term_data['icon'] ), $cat_posttype );
4012
+									}
4013
+								}
4014 4014
                                 
4015
-                                if ( $attachment ) {
4016
-                                    $images++;
4017
-                                }
4018
-                            }
4015
+								if ( $attachment ) {
4016
+									$images++;
4017
+								}
4018
+							}
4019 4019
                             
4020
-                            // WPML
4021
-                            if ($is_wpml && $cat_language != '') {
4022
-                                $sitepress->switch_lang($active_lang, true);
4023
-                            }
4024
-                            // WPML
4025
-                        }
4026
-                    }
4027
-                }
4020
+							// WPML
4021
+							if ($is_wpml && $cat_language != '') {
4022
+								$sitepress->switch_lang($active_lang, true);
4023
+							}
4024
+							// WPML
4025
+						}
4026
+					}
4027
+				}
4028 4028
                 
4029
-                $json = array();
4030
-                $json['processed'] = $limit;
4031
-                $json['created'] = $created;
4032
-                $json['updated'] = $updated;
4033
-                $json['skipped'] = $skipped;
4034
-                $json['invalid'] = $invalid;
4035
-                $json['images'] = $images;
4029
+				$json = array();
4030
+				$json['processed'] = $limit;
4031
+				$json['created'] = $created;
4032
+				$json['updated'] = $updated;
4033
+				$json['skipped'] = $skipped;
4034
+				$json['invalid'] = $invalid;
4035
+				$json['images'] = $images;
4036 4036
                 
4037
-                wp_send_json( $json );
4038
-                exit;
4039
-            } else if ( $task == 'import_post' ) {
4040
-                $xtimings['###1'] = microtime(true)-$xstart;
4041
-                //run some stuff to make the import quicker
4042
-                wp_defer_term_counting( true );
4043
-                wp_defer_comment_counting( true );
4044
-                $wpdb->query( 'SET autocommit = 0;' );
4037
+				wp_send_json( $json );
4038
+				exit;
4039
+			} else if ( $task == 'import_post' ) {
4040
+				$xtimings['###1'] = microtime(true)-$xstart;
4041
+				//run some stuff to make the import quicker
4042
+				wp_defer_term_counting( true );
4043
+				wp_defer_comment_counting( true );
4044
+				$wpdb->query( 'SET autocommit = 0;' );
4045 4045
 //
4046 4046
 //                remove_all_actions('publish_post');
4047 4047
 //                remove_all_actions('transition_post_status');
4048 4048
 //                remove_all_actions('publish_future_post');
4049 4049
 
4050
-                if (!empty($file)) {
4051
-                    $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
4052
-                    $wp_post_statuses = get_post_statuses(); // All of the WordPress supported post statuses.
4053
-                    $default_status = 'publish';
4054
-                    $current_date = date_i18n( 'Y-m-d', time() );
4050
+				if (!empty($file)) {
4051
+					$is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
4052
+					$wp_post_statuses = get_post_statuses(); // All of the WordPress supported post statuses.
4053
+					$default_status = 'publish';
4054
+					$current_date = date_i18n( 'Y-m-d', time() );
4055 4055
                     
4056
-                    $columns = isset($file[0]) ? $file[0] : NULL;
4056
+					$columns = isset($file[0]) ? $file[0] : NULL;
4057 4057
                     
4058
-                    if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4059
-                        $json['error'] = CSV_INVAILD_FILE;
4060
-                        wp_send_json( $json );
4061
-                        exit;
4062
-                    }
4063
-                    $xtimings['###2'] = microtime(true)-$xstart;
4064
-                    $gd_error_log = __('GD IMPORT LISTINGS [ROW %d]:', 'geodirectory');
4065
-                    $wp_chars_error = __( '(check & remove if any invalid characters used in data)', 'geodirectory' );
4066
-                    $processed_actual = 0;
4067
-                    for ($i = 1; $i <= $limit; $i++) {
4068
-                        $index = $processed + $i;
4069
-                        $gd_post = array();
4058
+					if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4059
+						$json['error'] = CSV_INVAILD_FILE;
4060
+						wp_send_json( $json );
4061
+						exit;
4062
+					}
4063
+					$xtimings['###2'] = microtime(true)-$xstart;
4064
+					$gd_error_log = __('GD IMPORT LISTINGS [ROW %d]:', 'geodirectory');
4065
+					$wp_chars_error = __( '(check & remove if any invalid characters used in data)', 'geodirectory' );
4066
+					$processed_actual = 0;
4067
+					for ($i = 1; $i <= $limit; $i++) {
4068
+						$index = $processed + $i;
4069
+						$gd_post = array();
4070 4070
                         
4071
-                        if (isset($file[$index])) {
4072
-                            $processed_actual++;
4073
-                            $row = $file[$index];
4074
-                            $row = array_map( 'trim', $row );
4075
-                            //$row = array_map( 'utf8_encode', $row );
4076
-                            $row = array_map( 'addslashes_gpc', $row );
4071
+						if (isset($file[$index])) {
4072
+							$processed_actual++;
4073
+							$row = $file[$index];
4074
+							$row = array_map( 'trim', $row );
4075
+							//$row = array_map( 'utf8_encode', $row );
4076
+							$row = array_map( 'addslashes_gpc', $row );
4077 4077
                             
4078
-                            $post_id = '';
4079
-                            $post_title = '';
4080
-                            $post_date = '';
4081
-                            $post_author = '';
4082
-                            $post_content = '';
4083
-                            $post_category_arr = array();
4084
-                            $default_category = '';
4085
-                            $post_tags = array();
4086
-                            $post_type = '';
4087
-                            $post_status = '';
4088
-                            $is_featured = 0;
4089
-                            $geodir_video = '';
4090
-                            $post_address = '';
4091
-                            $post_city = '';
4092
-                            $post_region = '';
4093
-                            $post_country = '';
4094
-                            $post_zip = '';
4095
-                            $post_latitude = '';
4096
-                            $post_longitude = '';
4097
-                            $post_neighbourhood = '';
4098
-                            $neighbourhood_latitude = '';
4099
-                            $neighbourhood_longitude = '';
4100
-                            $geodir_timing = '';
4101
-                            $geodir_contact = '';
4102
-                            $geodir_email = '';
4103
-                            $geodir_website = '';
4104
-                            $geodir_twitter = '';
4105
-                            $geodir_facebook = '';
4106
-                            $geodir_twitter = '';
4107
-                            $geodir_link_business = null;
4108
-                            $post_images = array();
4078
+							$post_id = '';
4079
+							$post_title = '';
4080
+							$post_date = '';
4081
+							$post_author = '';
4082
+							$post_content = '';
4083
+							$post_category_arr = array();
4084
+							$default_category = '';
4085
+							$post_tags = array();
4086
+							$post_type = '';
4087
+							$post_status = '';
4088
+							$is_featured = 0;
4089
+							$geodir_video = '';
4090
+							$post_address = '';
4091
+							$post_city = '';
4092
+							$post_region = '';
4093
+							$post_country = '';
4094
+							$post_zip = '';
4095
+							$post_latitude = '';
4096
+							$post_longitude = '';
4097
+							$post_neighbourhood = '';
4098
+							$neighbourhood_latitude = '';
4099
+							$neighbourhood_longitude = '';
4100
+							$geodir_timing = '';
4101
+							$geodir_contact = '';
4102
+							$geodir_email = '';
4103
+							$geodir_website = '';
4104
+							$geodir_twitter = '';
4105
+							$geodir_facebook = '';
4106
+							$geodir_twitter = '';
4107
+							$geodir_link_business = null;
4108
+							$post_images = array();
4109 4109
                             
4110
-                            $expire_date = 'Never';
4110
+							$expire_date = 'Never';
4111 4111
                             
4112
-                            $language = '';
4113
-                            $original_post_id = '';
4112
+							$language = '';
4113
+							$original_post_id = '';
4114 4114
                             
4115
-                            $c = 0;
4116
-                            foreach ($columns as $column ) {
4117
-                                $gd_post[$column] = $row[$c];
4115
+							$c = 0;
4116
+							foreach ($columns as $column ) {
4117
+								$gd_post[$column] = $row[$c];
4118 4118
                                 
4119
-                                if ( $column == 'post_id' ) {
4120
-                                    $post_id = $row[$c];
4121
-                                } else if ( $column == 'post_title' ) {
4122
-                                    $post_title = sanitize_text_field($row[$c]);
4123
-                                } else if ( $column == 'post_author' ) {
4124
-                                    $post_author = $row[$c];
4125
-                                } else if ( $column == 'post_date' ) {
4126
-                                    $post_date = $row[$c];
4127
-                                } else if ( $column == 'post_content' ) {
4128
-                                    $post_content = $row[$c];
4129
-                                } else if ( $column == 'post_category' && $row[$c] != '' ) {
4130
-                                    $post_category_arr = explode( ',', $row[$c] );
4131
-                                } else if ( $column == 'default_category' ) {
4132
-                                    $default_category = wp_kses_normalize_entities($row[$c]);
4133
-                                } else if ( $column == 'post_tags' && $row[$c] != '' ) {
4134
-                                    $post_tags = explode( ',', sanitize_text_field($row[$c]) );
4135
-                                } else if ( $column == 'post_type' ) {
4136
-                                    $post_type = $row[$c];
4137
-                                } else if ( $column == 'post_status' ) {
4138
-                                    $post_status = sanitize_key( $row[$c] );
4139
-                                } else if ( $column == 'is_featured' ) {
4140
-                                    $is_featured = (int)$row[$c];
4141
-                                } else if ( $column == 'geodir_video' ) {
4142
-                                    $geodir_video = $row[$c];
4143
-                                } else if ( $column == 'post_address' ) {
4144
-                                    $post_address = sanitize_text_field($row[$c]);
4145
-                                } else if ( $column == 'post_city' ) {
4146
-                                    $post_city = sanitize_text_field($row[$c]);
4147
-                                } else if ( $column == 'post_region' ) {
4148
-                                    $post_region = sanitize_text_field($row[$c]);
4149
-                                } else if ( $column == 'post_country' ) {
4150
-                                    $post_country = sanitize_text_field($row[$c]);
4151
-                                } else if ( $column == 'post_zip' ) {
4152
-                                    $post_zip = sanitize_text_field($row[$c]);
4153
-                                } else if ( $column == 'post_latitude' ) {
4154
-                                    $post_latitude = sanitize_text_field($row[$c]);
4155
-                                } else if ( $column == 'post_longitude' ) {
4156
-                                    $post_longitude = sanitize_text_field($row[$c]);
4157
-                                } else if ( $column == 'post_neighbourhood' ) {
4158
-                                    $post_neighbourhood = sanitize_text_field($row[$c]);
4159
-                                    unset($gd_post[$column]);
4160
-                                } else if ( $column == 'neighbourhood_latitude' ) {
4161
-                                    $neighbourhood_latitude = sanitize_text_field($row[$c]);
4162
-                                } else if ( $column == 'neighbourhood_longitude' ) {
4163
-                                    $neighbourhood_longitude = sanitize_text_field($row[$c]);
4164
-                                } else if ( $column == 'geodir_timing' ) {
4165
-                                    $geodir_timing = sanitize_text_field($row[$c]);
4166
-                                } else if ( $column == 'geodir_contact' ) {
4167
-                                    $geodir_contact = sanitize_text_field($row[$c]);
4168
-                                } else if ( $column == 'geodir_email' ) {
4169
-                                    $geodir_email = sanitize_email($row[$c]);
4170
-                                } else if ( $column == 'geodir_website' ) {
4171
-                                    $geodir_website = sanitize_text_field($row[$c]);
4172
-                                } else if ( $column == 'geodir_twitter' ) {
4173
-                                    $geodir_twitter = sanitize_text_field($row[$c]);
4174
-                                } else if ( $column == 'geodir_facebook' ) {
4175
-                                    $geodir_facebook = sanitize_text_field($row[$c]);
4176
-                                } else if ( $column == 'IMAGE' && !empty( $row[$c] ) && $row[$c] != '' ) {
4177
-                                    $post_images[] = $row[$c];
4178
-                                } else if ( $column == 'alive_days' && (int)$row[$c] > 0 ) {
4179
-                                    $expire_date = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$row[$c] . ' days' ) );
4180
-                                } else if ( $column == 'expire_date' && $row[$c] != '' && geodir_strtolower($row[$c]) != 'never' ) {
4181
-                                    $row[$c] = str_replace('/', '-', $row[$c]);
4182
-                                    $expire_date = date_i18n( 'Y-m-d', strtotime( $row[$c] ) );
4183
-                                } else if ( strpos( $column, 'linked_' ) === 0 ) {
4184
-                                    $geodir_link_business = (int)$row[$c];
4185
-                                }
4186
-                                // WPML
4187
-                                if ($is_wpml) {
4188
-                                    if ($column == 'language') {
4189
-                                        $language = geodir_strtolower(trim($row[$c]));
4190
-                                    } else if ($column == 'original_post_id') {
4191
-                                        $original_post_id = (int)$row[$c];
4192
-                                    }
4193
-                                }
4194
-                                // WPML
4195
-                                $c++;
4196
-                            }
4197
-                            // listing claimed or not
4198
-                            if ($is_claim_active && isset($gd_post['claimed'])) {
4199
-                                $gd_post['claimed'] = (int)$gd_post['claimed'] == 1 ? 1 : 0;
4200
-                            }
4119
+								if ( $column == 'post_id' ) {
4120
+									$post_id = $row[$c];
4121
+								} else if ( $column == 'post_title' ) {
4122
+									$post_title = sanitize_text_field($row[$c]);
4123
+								} else if ( $column == 'post_author' ) {
4124
+									$post_author = $row[$c];
4125
+								} else if ( $column == 'post_date' ) {
4126
+									$post_date = $row[$c];
4127
+								} else if ( $column == 'post_content' ) {
4128
+									$post_content = $row[$c];
4129
+								} else if ( $column == 'post_category' && $row[$c] != '' ) {
4130
+									$post_category_arr = explode( ',', $row[$c] );
4131
+								} else if ( $column == 'default_category' ) {
4132
+									$default_category = wp_kses_normalize_entities($row[$c]);
4133
+								} else if ( $column == 'post_tags' && $row[$c] != '' ) {
4134
+									$post_tags = explode( ',', sanitize_text_field($row[$c]) );
4135
+								} else if ( $column == 'post_type' ) {
4136
+									$post_type = $row[$c];
4137
+								} else if ( $column == 'post_status' ) {
4138
+									$post_status = sanitize_key( $row[$c] );
4139
+								} else if ( $column == 'is_featured' ) {
4140
+									$is_featured = (int)$row[$c];
4141
+								} else if ( $column == 'geodir_video' ) {
4142
+									$geodir_video = $row[$c];
4143
+								} else if ( $column == 'post_address' ) {
4144
+									$post_address = sanitize_text_field($row[$c]);
4145
+								} else if ( $column == 'post_city' ) {
4146
+									$post_city = sanitize_text_field($row[$c]);
4147
+								} else if ( $column == 'post_region' ) {
4148
+									$post_region = sanitize_text_field($row[$c]);
4149
+								} else if ( $column == 'post_country' ) {
4150
+									$post_country = sanitize_text_field($row[$c]);
4151
+								} else if ( $column == 'post_zip' ) {
4152
+									$post_zip = sanitize_text_field($row[$c]);
4153
+								} else if ( $column == 'post_latitude' ) {
4154
+									$post_latitude = sanitize_text_field($row[$c]);
4155
+								} else if ( $column == 'post_longitude' ) {
4156
+									$post_longitude = sanitize_text_field($row[$c]);
4157
+								} else if ( $column == 'post_neighbourhood' ) {
4158
+									$post_neighbourhood = sanitize_text_field($row[$c]);
4159
+									unset($gd_post[$column]);
4160
+								} else if ( $column == 'neighbourhood_latitude' ) {
4161
+									$neighbourhood_latitude = sanitize_text_field($row[$c]);
4162
+								} else if ( $column == 'neighbourhood_longitude' ) {
4163
+									$neighbourhood_longitude = sanitize_text_field($row[$c]);
4164
+								} else if ( $column == 'geodir_timing' ) {
4165
+									$geodir_timing = sanitize_text_field($row[$c]);
4166
+								} else if ( $column == 'geodir_contact' ) {
4167
+									$geodir_contact = sanitize_text_field($row[$c]);
4168
+								} else if ( $column == 'geodir_email' ) {
4169
+									$geodir_email = sanitize_email($row[$c]);
4170
+								} else if ( $column == 'geodir_website' ) {
4171
+									$geodir_website = sanitize_text_field($row[$c]);
4172
+								} else if ( $column == 'geodir_twitter' ) {
4173
+									$geodir_twitter = sanitize_text_field($row[$c]);
4174
+								} else if ( $column == 'geodir_facebook' ) {
4175
+									$geodir_facebook = sanitize_text_field($row[$c]);
4176
+								} else if ( $column == 'IMAGE' && !empty( $row[$c] ) && $row[$c] != '' ) {
4177
+									$post_images[] = $row[$c];
4178
+								} else if ( $column == 'alive_days' && (int)$row[$c] > 0 ) {
4179
+									$expire_date = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$row[$c] . ' days' ) );
4180
+								} else if ( $column == 'expire_date' && $row[$c] != '' && geodir_strtolower($row[$c]) != 'never' ) {
4181
+									$row[$c] = str_replace('/', '-', $row[$c]);
4182
+									$expire_date = date_i18n( 'Y-m-d', strtotime( $row[$c] ) );
4183
+								} else if ( strpos( $column, 'linked_' ) === 0 ) {
4184
+									$geodir_link_business = (int)$row[$c];
4185
+								}
4186
+								// WPML
4187
+								if ($is_wpml) {
4188
+									if ($column == 'language') {
4189
+										$language = geodir_strtolower(trim($row[$c]));
4190
+									} else if ($column == 'original_post_id') {
4191
+										$original_post_id = (int)$row[$c];
4192
+									}
4193
+								}
4194
+								// WPML
4195
+								$c++;
4196
+							}
4197
+							// listing claimed or not
4198
+							if ($is_claim_active && isset($gd_post['claimed'])) {
4199
+								$gd_post['claimed'] = (int)$gd_post['claimed'] == 1 ? 1 : 0;
4200
+							}
4201 4201
                             
4202
-                            // WPML
4203
-                            if ($is_wpml && $language != '') {
4204
-                                $sitepress->switch_lang($language, true);
4205
-                            }
4206
-                            // WPML
4202
+							// WPML
4203
+							if ($is_wpml && $language != '') {
4204
+								$sitepress->switch_lang($language, true);
4205
+							}
4206
+							// WPML
4207 4207
 
4208
-                            $gd_post['IMAGE'] = $post_images;
4208
+							$gd_post['IMAGE'] = $post_images;
4209 4209
                             
4210
-                            $post_status = !empty( $post_status ) ? sanitize_key( $post_status ) : $default_status;
4211
-                            $post_status = !empty( $wp_post_statuses ) && !isset( $wp_post_statuses[$post_status] ) ? $default_status : $post_status;
4210
+							$post_status = !empty( $post_status ) ? sanitize_key( $post_status ) : $default_status;
4211
+							$post_status = !empty( $wp_post_statuses ) && !isset( $wp_post_statuses[$post_status] ) ? $default_status : $post_status;
4212 4212
                                                                                                                 
4213
-                            $valid = true;
4213
+							$valid = true;
4214 4214
                             
4215
-                            if ( $post_title == '' || !in_array( $post_type, $post_types ) ) {
4216
-                                $invalid++;
4217
-                                $valid = false;
4218
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) );
4219
-                            }
4220
-                            $xtimings['###3'] = microtime(true)-$xstart;
4221
-                            $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true;
4222
-                            if ( $location_allowed ) {
4223
-                                $location_result = geodir_get_default_location();
4224
-                                if ( $post_address == '' || $post_city == '' || $post_region == '' || $post_country == '' || $post_latitude == '' || $post_longitude == '' ) {
4225
-                                    $invalid_addr++;
4226
-                                    $valid = false;
4227
-                                    geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ) );
4228
-                                } else if ( !empty( $location_result ) && $location_result->location_id == 0 ) {
4229
-                                    if ( ( geodir_strtolower( $post_city ) != geodir_strtolower( $location_result->city ) ) || ( geodir_strtolower( $post_region ) != geodir_strtolower( $location_result->region ) ) || (geodir_strtolower( $post_country ) != geodir_strtolower( $location_result->country ) ) ) {
4230
-                                        $invalid_addr++;
4231
-                                        $valid = false;
4232
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ) );
4233
-                                    } else {
4234
-                                        if (!$location_manager) {
4235
-                                            $gd_post['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // Set the default location when location manager not activated.
4236
-                                        }
4237
-                                    }
4238
-                                }
4239
-                            }
4240
-                            $xtimings['###4']   = microtime(true)-$xstart;
4241
-                            if ( !$valid ) {
4242
-                                continue;
4243
-                            }
4215
+							if ( $post_title == '' || !in_array( $post_type, $post_types ) ) {
4216
+								$invalid++;
4217
+								$valid = false;
4218
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) );
4219
+							}
4220
+							$xtimings['###3'] = microtime(true)-$xstart;
4221
+							$location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true;
4222
+							if ( $location_allowed ) {
4223
+								$location_result = geodir_get_default_location();
4224
+								if ( $post_address == '' || $post_city == '' || $post_region == '' || $post_country == '' || $post_latitude == '' || $post_longitude == '' ) {
4225
+									$invalid_addr++;
4226
+									$valid = false;
4227
+									geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ) );
4228
+								} else if ( !empty( $location_result ) && $location_result->location_id == 0 ) {
4229
+									if ( ( geodir_strtolower( $post_city ) != geodir_strtolower( $location_result->city ) ) || ( geodir_strtolower( $post_region ) != geodir_strtolower( $location_result->region ) ) || (geodir_strtolower( $post_country ) != geodir_strtolower( $location_result->country ) ) ) {
4230
+										$invalid_addr++;
4231
+										$valid = false;
4232
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ) );
4233
+									} else {
4234
+										if (!$location_manager) {
4235
+											$gd_post['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // Set the default location when location manager not activated.
4236
+										}
4237
+									}
4238
+								}
4239
+							}
4240
+							$xtimings['###4']   = microtime(true)-$xstart;
4241
+							if ( !$valid ) {
4242
+								continue;
4243
+							}
4244 4244
 
4245
-                            $cat_taxonomy = $post_type . 'category';
4246
-                            $tags_taxonomy = $post_type . '_tags';
4245
+							$cat_taxonomy = $post_type . 'category';
4246
+							$tags_taxonomy = $post_type . '_tags';
4247 4247
                             
4248
-                            if ($default_category != '' && !in_array($default_category, $post_category_arr)) {
4249
-                                $post_category_arr = array_merge(array($default_category), $post_category_arr);
4250
-                            }
4248
+							if ($default_category != '' && !in_array($default_category, $post_category_arr)) {
4249
+								$post_category_arr = array_merge(array($default_category), $post_category_arr);
4250
+							}
4251 4251
 
4252
-                            $post_category = array();
4253
-                            $default_category_id = NULL;
4254
-                            if ( !empty( $post_category_arr ) ) {
4255
-                                foreach ( $post_category_arr as $value ) {
4256
-                                    $category_name = wp_kses_normalize_entities( trim( $value ) );
4252
+							$post_category = array();
4253
+							$default_category_id = NULL;
4254
+							if ( !empty( $post_category_arr ) ) {
4255
+								foreach ( $post_category_arr as $value ) {
4256
+									$category_name = wp_kses_normalize_entities( trim( $value ) );
4257 4257
                                     
4258
-                                    if ( $category_name != '' ) {
4259
-                                        $term_category = array();
4258
+									if ( $category_name != '' ) {
4259
+										$term_category = array();
4260 4260
                                         
4261
-                                        if ( $term = get_term_by( 'name', $category_name, $cat_taxonomy ) ) {
4262
-                                            $term_category = $term;
4263
-                                        } else if ( $term = get_term_by( 'slug', $category_name, $cat_taxonomy ) ) {
4264
-                                            $term_category = $term;
4265
-                                        } else {
4266
-                                            $term_data = array();
4267
-                                            $term_data['name'] = $category_name;
4268
-                                            $term_data['taxonomy'] = $cat_taxonomy;
4261
+										if ( $term = get_term_by( 'name', $category_name, $cat_taxonomy ) ) {
4262
+											$term_category = $term;
4263
+										} else if ( $term = get_term_by( 'slug', $category_name, $cat_taxonomy ) ) {
4264
+											$term_category = $term;
4265
+										} else {
4266
+											$term_data = array();
4267
+											$term_data['name'] = $category_name;
4268
+											$term_data['taxonomy'] = $cat_taxonomy;
4269 4269
                                             
4270
-                                            $term_id = geodir_imex_insert_term( $cat_taxonomy, $term_data );
4271
-                                            if ( $term_id ) {
4272
-                                                $term_category = get_term( $term_id, $cat_taxonomy );
4273
-                                            }
4274
-                                        }
4270
+											$term_id = geodir_imex_insert_term( $cat_taxonomy, $term_data );
4271
+											if ( $term_id ) {
4272
+												$term_category = get_term( $term_id, $cat_taxonomy );
4273
+											}
4274
+										}
4275 4275
                                         
4276
-                                        if ( !empty( $term_category ) && !is_wp_error( $term_category ) ) {
4277
-                                            $post_category[] = intval($term_category->term_id);
4276
+										if ( !empty( $term_category ) && !is_wp_error( $term_category ) ) {
4277
+											$post_category[] = intval($term_category->term_id);
4278 4278
                                             
4279
-                                            if ($category_name == $default_category) {
4280
-                                                $default_category_id = intval($term_category->term_id);
4281
-                                            }
4282
-                                        }
4283
-                                    }
4284
-                                }
4285
-                            }
4286
-                            $xtimings['###5'] = microtime(true)-$xstart;
4287
-                            $save_post = array();
4288
-                            $save_post['post_title'] = $post_title;
4289
-                            if (!empty($post_date)) {
4290
-                                $post_date = geodir_date( $post_date, 'Y-m-d H:i:s' ); // convert to mysql date format.
4279
+											if ($category_name == $default_category) {
4280
+												$default_category_id = intval($term_category->term_id);
4281
+											}
4282
+										}
4283
+									}
4284
+								}
4285
+							}
4286
+							$xtimings['###5'] = microtime(true)-$xstart;
4287
+							$save_post = array();
4288
+							$save_post['post_title'] = $post_title;
4289
+							if (!empty($post_date)) {
4290
+								$post_date = geodir_date( $post_date, 'Y-m-d H:i:s' ); // convert to mysql date format.
4291 4291
                                 
4292
-                                $save_post['post_date'] = $post_date;
4293
-                                $save_post['post_date_gmt'] = get_gmt_from_date( $post_date );
4294
-                            }
4295
-                            $save_post['post_content'] = $post_content;
4296
-                            $save_post['post_type'] = $post_type;
4297
-                            $save_post['post_author'] = $post_author;
4298
-                            $save_post['post_status'] = $post_status;
4299
-                            $save_post['post_category'] = $post_category;
4300
-                            $save_post['post_tags'] = $post_tags;
4301
-
4302
-                            $saved_post_id = NULL;
4303
-                            if ( $import_choice == 'update' ) {
4304
-                                $gd_wp_error = __( 'Unable to add listing, please check the listing data.', 'geodirectory' );
4292
+								$save_post['post_date'] = $post_date;
4293
+								$save_post['post_date_gmt'] = get_gmt_from_date( $post_date );
4294
+							}
4295
+							$save_post['post_content'] = $post_content;
4296
+							$save_post['post_type'] = $post_type;
4297
+							$save_post['post_author'] = $post_author;
4298
+							$save_post['post_status'] = $post_status;
4299
+							$save_post['post_category'] = $post_category;
4300
+							$save_post['post_tags'] = $post_tags;
4301
+
4302
+							$saved_post_id = NULL;
4303
+							if ( $import_choice == 'update' ) {
4304
+								$gd_wp_error = __( 'Unable to add listing, please check the listing data.', 'geodirectory' );
4305 4305
                                 
4306
-                                if ( $post_id > 0 && get_post( $post_id ) ) {
4307
-                                    $save_post['ID'] = $post_id;
4306
+								if ( $post_id > 0 && get_post( $post_id ) ) {
4307
+									$save_post['ID'] = $post_id;
4308 4308
                                     
4309
-                                    if ( $saved_post_id = wp_update_post( $save_post, true ) ) {
4310
-                                        if ( is_wp_error( $saved_post_id ) ) {
4311
-                                            $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error;
4312
-                                            $saved_post_id = 0;
4313
-                                        } else {
4314
-                                            $saved_post_id = $post_id;
4315
-                                            $updated++;
4316
-                                        }
4317
-                                    }
4318
-                                } else {
4319
-                                    if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
4320
-                                        if ( is_wp_error( $saved_post_id ) ) {
4321
-                                            $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error;
4322
-                                            $saved_post_id = 0;
4323
-                                        } else {
4324
-                                            $created++;
4325
-                                        }
4326
-                                    }
4327
-                                }
4309
+									if ( $saved_post_id = wp_update_post( $save_post, true ) ) {
4310
+										if ( is_wp_error( $saved_post_id ) ) {
4311
+											$gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error;
4312
+											$saved_post_id = 0;
4313
+										} else {
4314
+											$saved_post_id = $post_id;
4315
+											$updated++;
4316
+										}
4317
+									}
4318
+								} else {
4319
+									if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
4320
+										if ( is_wp_error( $saved_post_id ) ) {
4321
+											$gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error;
4322
+											$saved_post_id = 0;
4323
+										} else {
4324
+											$created++;
4325
+										}
4326
+									}
4327
+								}
4328 4328
                                 
4329
-                                if ( !$saved_post_id > 0 ) {
4330
-                                    $invalid++;
4331
-                                    geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_wp_error );
4332
-                                }
4333
-                            } else if ( $import_choice == 'skip' ) {
4334
-                                if ( $post_id > 0 && get_post( $post_id ) ) {
4335
-                                    $skipped++;	
4336
-                                } else {
4337
-                                    if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
4338
-                                        if ( is_wp_error( $saved_post_id ) ) {
4339
-                                            $invalid++;
4329
+								if ( !$saved_post_id > 0 ) {
4330
+									$invalid++;
4331
+									geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_wp_error );
4332
+								}
4333
+							} else if ( $import_choice == 'skip' ) {
4334
+								if ( $post_id > 0 && get_post( $post_id ) ) {
4335
+									$skipped++;	
4336
+								} else {
4337
+									if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
4338
+										if ( is_wp_error( $saved_post_id ) ) {
4339
+											$invalid++;
4340 4340
                                             
4341
-                                            geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $saved_post_id->get_error_message() . ' ' . $wp_chars_error );
4342
-                                            $saved_post_id = 0;
4343
-                                        } else {
4344
-                                            $created++;
4345
-                                        }
4346
-                                    } else {
4347
-                                        $invalid++;
4341
+											geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $saved_post_id->get_error_message() . ' ' . $wp_chars_error );
4342
+											$saved_post_id = 0;
4343
+										} else {
4344
+											$created++;
4345
+										}
4346
+									} else {
4347
+										$invalid++;
4348 4348
                                         
4349
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error );
4350
-                                    }
4351
-                                }
4352
-                            } else {
4353
-                                $invalid++;
4349
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error );
4350
+									}
4351
+								}
4352
+							} else {
4353
+								$invalid++;
4354 4354
                                 
4355
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error );
4356
-                            }
4357
-                            $xtimings['###6'] = microtime(true)-$xstart;
4358
-                            if ( (int)$saved_post_id > 0 ) {
4359
-                                // WPML
4360
-                                if ($is_wpml && geodir_wpml_is_post_type_translated($post_type) && $original_post_id > 0 && $language != '') {
4361
-                                    $wpml_post_type = 'post_' . $post_type;
4362
-                                    $source_language = geodir_get_language_for_element( $original_post_id, $wpml_post_type );
4363
-                                    $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language();
4364
-
4365
-                                    $trid = $sitepress->get_element_trid( $original_post_id, $wpml_post_type );
4355
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error );
4356
+							}
4357
+							$xtimings['###6'] = microtime(true)-$xstart;
4358
+							if ( (int)$saved_post_id > 0 ) {
4359
+								// WPML
4360
+								if ($is_wpml && geodir_wpml_is_post_type_translated($post_type) && $original_post_id > 0 && $language != '') {
4361
+									$wpml_post_type = 'post_' . $post_type;
4362
+									$source_language = geodir_get_language_for_element( $original_post_id, $wpml_post_type );
4363
+									$source_language = $source_language != '' ? $source_language : $sitepress->get_default_language();
4364
+
4365
+									$trid = $sitepress->get_element_trid( $original_post_id, $wpml_post_type );
4366 4366
                                     
4367
-                                    $sitepress->set_element_language_details( $saved_post_id, $wpml_post_type, $trid, $language, $source_language );
4368
-                                }
4369
-                                // WPML
4370
-                                $gd_post_info = geodir_get_post_info( $saved_post_id );
4367
+									$sitepress->set_element_language_details( $saved_post_id, $wpml_post_type, $trid, $language, $source_language );
4368
+								}
4369
+								// WPML
4370
+								$gd_post_info = geodir_get_post_info( $saved_post_id );
4371 4371
                                 
4372
-                                $gd_post['post_id'] = $saved_post_id;
4373
-                                $gd_post['ID'] = $saved_post_id;
4374
-                                $gd_post['post_tags'] = $post_tags;
4375
-                                $gd_post['post_title'] = $post_title;
4376
-                                $gd_post['post_status'] = $post_status;
4377
-                                $gd_post['submit_time'] = time();
4378
-                                $gd_post['submit_ip'] = $_SERVER['REMOTE_ADDR'];
4372
+								$gd_post['post_id'] = $saved_post_id;
4373
+								$gd_post['ID'] = $saved_post_id;
4374
+								$gd_post['post_tags'] = $post_tags;
4375
+								$gd_post['post_title'] = $post_title;
4376
+								$gd_post['post_status'] = $post_status;
4377
+								$gd_post['submit_time'] = time();
4378
+								$gd_post['submit_ip'] = $_SERVER['REMOTE_ADDR'];
4379 4379
                                                     
4380
-                                // post location
4381
-                                $post_location_id = 0;
4382
-                                if ( $location_allowed && !empty( $location_result ) && $location_result->location_id > 0 ) {
4383
-                                    $gd_post['post_neighbourhood'] = '';
4380
+								// post location
4381
+								$post_location_id = 0;
4382
+								if ( $location_allowed && !empty( $location_result ) && $location_result->location_id > 0 ) {
4383
+									$gd_post['post_neighbourhood'] = '';
4384 4384
                                     
4385
-                                    $post_location_info = array(
4386
-                                                                'city' => $post_city,
4387
-                                                                'region' => $post_region,
4388
-                                                                'country' => $post_country,
4389
-                                                                'geo_lat' => $post_latitude,
4390
-                                                                'geo_lng' => $post_longitude
4391
-                                                            );
4392
-                                    if ( $location_id = (int)geodir_add_new_location( $post_location_info ) ) {
4393
-                                        $post_location_id = $location_id;
4394
-                                    }
4385
+									$post_location_info = array(
4386
+																'city' => $post_city,
4387
+																'region' => $post_region,
4388
+																'country' => $post_country,
4389
+																'geo_lat' => $post_latitude,
4390
+																'geo_lng' => $post_longitude
4391
+															);
4392
+									if ( $location_id = (int)geodir_add_new_location( $post_location_info ) ) {
4393
+										$post_location_id = $location_id;
4394
+									}
4395 4395
                                     
4396
-                                    if ($post_location_id > 0 && $neighbourhood_active && !empty($post_neighbourhood)) {
4397
-                                        $neighbourhood_info = geodir_location_neighbourhood_by_name_loc_id($post_neighbourhood, $post_location_id);
4396
+									if ($post_location_id > 0 && $neighbourhood_active && !empty($post_neighbourhood)) {
4397
+										$neighbourhood_info = geodir_location_neighbourhood_by_name_loc_id($post_neighbourhood, $post_location_id);
4398 4398
 
4399
-                                        $hood_data = array();
4400
-                                        $hood_data['hood_location_id'] = $post_location_id;
4401
-                                        $hood_data['hood_name'] = $post_neighbourhood;
4399
+										$hood_data = array();
4400
+										$hood_data['hood_location_id'] = $post_location_id;
4401
+										$hood_data['hood_name'] = $post_neighbourhood;
4402 4402
                                         
4403
-                                        if (!empty($neighbourhood_info)) {
4404
-                                            $hood_data['hood_id'] = $neighbourhood_info->hood_id;
4405
-                                            $hood_data['hood_slug'] = $neighbourhood_info->hood_slug;
4403
+										if (!empty($neighbourhood_info)) {
4404
+											$hood_data['hood_id'] = $neighbourhood_info->hood_id;
4405
+											$hood_data['hood_slug'] = $neighbourhood_info->hood_slug;
4406 4406
                                             
4407
-                                            if (empty($neighbourhood_latitude) || empty($neighbourhood_longitude)) {
4408
-                                                $neighbourhood_latitude = $neighbourhood_info->hood_latitude;
4409
-                                                $neighbourhood_longitude = $neighbourhood_info->hood_longitude;
4410
-                                            }
4411
-                                        }
4407
+											if (empty($neighbourhood_latitude) || empty($neighbourhood_longitude)) {
4408
+												$neighbourhood_latitude = $neighbourhood_info->hood_latitude;
4409
+												$neighbourhood_longitude = $neighbourhood_info->hood_longitude;
4410
+											}
4411
+										}
4412 4412
                                         
4413
-                                        if (empty($neighbourhood_latitude) || empty($neighbourhood_longitude)) {
4414
-                                            $neighbourhood_latitude = $neighbourhood_info->hood_latitude;
4415
-                                            $neighbourhood_longitude = $neighbourhood_info->hood_longitude;
4416
-                                        }
4413
+										if (empty($neighbourhood_latitude) || empty($neighbourhood_longitude)) {
4414
+											$neighbourhood_latitude = $neighbourhood_info->hood_latitude;
4415
+											$neighbourhood_longitude = $neighbourhood_info->hood_longitude;
4416
+										}
4417 4417
                                         
4418
-                                        $hood_data['hood_latitude'] = $post_latitude;
4419
-                                        $hood_data['hood_longitude'] = $post_longitude;
4420
-
4421
-                                        $neighbourhood_info = geodir_location_insert_update_neighbourhood($hood_data);
4422
-                                        if (!empty($neighbourhood_info) && isset($neighbourhood_info->hood_slug)) {
4423
-                                            $gd_post['post_neighbourhood'] = $neighbourhood_info->hood_slug;
4424
-                                        }
4425
-                                    }
4426
-                                }
4427
-                                $gd_post['post_location_id'] = $post_location_id;
4418
+										$hood_data['hood_latitude'] = $post_latitude;
4419
+										$hood_data['hood_longitude'] = $post_longitude;
4420
+
4421
+										$neighbourhood_info = geodir_location_insert_update_neighbourhood($hood_data);
4422
+										if (!empty($neighbourhood_info) && isset($neighbourhood_info->hood_slug)) {
4423
+											$gd_post['post_neighbourhood'] = $neighbourhood_info->hood_slug;
4424
+										}
4425
+									}
4426
+								}
4427
+								$gd_post['post_location_id'] = $post_location_id;
4428 4428
                                 
4429
-                                if ($geodir_link_business !== null) {
4430
-                                    $gd_post['geodir_link_business'] = $geodir_link_business > 0 ? $geodir_link_business : '';
4431
-                                }
4429
+								if ($geodir_link_business !== null) {
4430
+									$gd_post['geodir_link_business'] = $geodir_link_business > 0 ? $geodir_link_business : '';
4431
+								}
4432 4432
                                 
4433
-                                // post package info
4434
-                                $package_id = isset( $gd_post['package_id'] ) && !empty( $gd_post['package_id'] ) ? (int)$gd_post['package_id'] : 0;
4435
-                                if (!$package_id && !empty($gd_post_info) && isset($gd_post_info->package_id) && $gd_post_info->package_id) {
4436
-                                    $package_id = $gd_post_info->package_id;
4437
-                                }
4433
+								// post package info
4434
+								$package_id = isset( $gd_post['package_id'] ) && !empty( $gd_post['package_id'] ) ? (int)$gd_post['package_id'] : 0;
4435
+								if (!$package_id && !empty($gd_post_info) && isset($gd_post_info->package_id) && $gd_post_info->package_id) {
4436
+									$package_id = $gd_post_info->package_id;
4437
+								}
4438 4438
                                 
4439
-                                $package_info = array();
4440
-                                if ($package_id && function_exists('geodir_get_package_info_by_id')) {
4441
-                                    $package_info = (array)geodir_get_package_info_by_id($package_id);
4439
+								$package_info = array();
4440
+								if ($package_id && function_exists('geodir_get_package_info_by_id')) {
4441
+									$package_info = (array)geodir_get_package_info_by_id($package_id);
4442 4442
                                     
4443
-                                    if (!(!empty($package_info) && isset($package_info['post_type']) && $package_info['post_type'] == $post_type)) {
4444
-                                        $package_info = array();
4445
-                                    }
4446
-                                }
4443
+									if (!(!empty($package_info) && isset($package_info['post_type']) && $package_info['post_type'] == $post_type)) {
4444
+										$package_info = array();
4445
+									}
4446
+								}
4447 4447
                                 
4448
-                                if (empty($package_info)) {
4449
-                                    $package_info = (array)geodir_post_package_info( array(), '', $post_type );
4450
-                                }
4448
+								if (empty($package_info)) {
4449
+									$package_info = (array)geodir_post_package_info( array(), '', $post_type );
4450
+								}
4451 4451
                                  
4452
-                                if (!empty($package_info))	 {
4453
-                                    $package_id = $package_info['pid'];
4452
+								if (!empty($package_info))	 {
4453
+									$package_id = $package_info['pid'];
4454 4454
                                     
4455
-                                    if (isset($gd_post['alive_days']) || isset($gd_post['expire_date'])) {
4456
-                                        $gd_post['expire_date'] = $expire_date;
4457
-                                    } else {
4458
-                                        if ( isset( $package_info['days'] ) && (int)$package_info['days'] > 0 ) {
4459
-                                            $gd_post['alive_days'] = (int)$package_info['days'];
4460
-                                            $gd_post['expire_date'] = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$package_info['days'] . ' days' ) );
4461
-                                        } else {
4462
-                                            $gd_post['expire_date'] = 'Never';
4463
-                                        }
4464
-                                    }
4455
+									if (isset($gd_post['alive_days']) || isset($gd_post['expire_date'])) {
4456
+										$gd_post['expire_date'] = $expire_date;
4457
+									} else {
4458
+										if ( isset( $package_info['days'] ) && (int)$package_info['days'] > 0 ) {
4459
+											$gd_post['alive_days'] = (int)$package_info['days'];
4460
+											$gd_post['expire_date'] = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$package_info['days'] . ' days' ) );
4461
+										} else {
4462
+											$gd_post['expire_date'] = 'Never';
4463
+										}
4464
+									}
4465 4465
                                     
4466
-                                    $gd_post['package_id'] = $package_id;
4467
-                                }
4466
+									$gd_post['package_id'] = $package_id;
4467
+								}
4468 4468
 
4469
-                                $table = $plugin_prefix . $post_type . '_detail';
4469
+								$table = $plugin_prefix . $post_type . '_detail';
4470 4470
                                 
4471
-                                if ($post_type == 'gd_event') {
4472
-                                    $gd_post = geodir_imex_process_event_data($gd_post);
4473
-                                }
4471
+								if ($post_type == 'gd_event') {
4472
+									$gd_post = geodir_imex_process_event_data($gd_post);
4473
+								}
4474 4474
                                 
4475
-                                if (isset($gd_post['post_id'])) {
4476
-                                    unset($gd_post['post_id']);
4477
-                                }
4475
+								if (isset($gd_post['post_id'])) {
4476
+									unset($gd_post['post_id']);
4477
+								}
4478 4478
 
4479
-                                // Export franchise fields
4480
-                                $is_franchise_active = is_plugin_active( 'geodir_franchise/geodir_franchise.php' ) && geodir_franchise_enabled( $post_type ) ? true : false;
4481
-                                if ($is_franchise_active) {
4482
-                                    if ( isset( $gd_post['gd_is_franchise'] ) && empty( $gd_post['franchise'] ) ) {
4483
-                                        if ( absint( $gd_post['gd_is_franchise'] ) != 0 ) {
4484
-                                            $gd_franchise_lock = array();
4479
+								// Export franchise fields
4480
+								$is_franchise_active = is_plugin_active( 'geodir_franchise/geodir_franchise.php' ) && geodir_franchise_enabled( $post_type ) ? true : false;
4481
+								if ($is_franchise_active) {
4482
+									if ( isset( $gd_post['gd_is_franchise'] ) && empty( $gd_post['franchise'] ) ) {
4483
+										if ( absint( $gd_post['gd_is_franchise'] ) != 0 ) {
4484
+											$gd_franchise_lock = array();
4485 4485
                                             
4486
-                                            if ( isset( $gd_post['gd_franchise_lock'] ) ) {
4487
-                                                $gd_franchise_lock = str_replace(" ", "", $gd_post['gd_franchise_lock'] );
4488
-                                                $gd_franchise_lock = trim( $gd_franchise_lock );
4489
-                                                $gd_franchise_lock = explode( ",", $gd_franchise_lock );
4490
-                                            }
4486
+											if ( isset( $gd_post['gd_franchise_lock'] ) ) {
4487
+												$gd_franchise_lock = str_replace(" ", "", $gd_post['gd_franchise_lock'] );
4488
+												$gd_franchise_lock = trim( $gd_franchise_lock );
4489
+												$gd_franchise_lock = explode( ",", $gd_franchise_lock );
4490
+											}
4491 4491
                                             
4492
-                                            update_post_meta( $saved_post_id, 'gd_is_franchise', 1 );
4493
-                                            update_post_meta( $saved_post_id, 'gd_franchise_lock', $gd_franchise_lock );
4494
-                                        } else {
4495
-                                            if ( function_exists( 'geodir_franchise_remove_franchise' ) ) {
4496
-                                                geodir_franchise_remove_franchise( $saved_post_id );
4497
-                                            }
4498
-                                        }
4499
-                                    } else {
4500
-                                        if ( isset( $gd_post['franchise'] ) && (int)$gd_post['franchise'] > 0 && geodir_franchise_check( (int)$gd_post['franchise'] ) ) {
4501
-                                            geodir_save_post_meta( $saved_post_id, 'franchise', (int)$gd_post['franchise'] );
4502
-                                        }
4503
-                                    }
4504
-                                }
4492
+											update_post_meta( $saved_post_id, 'gd_is_franchise', 1 );
4493
+											update_post_meta( $saved_post_id, 'gd_franchise_lock', $gd_franchise_lock );
4494
+										} else {
4495
+											if ( function_exists( 'geodir_franchise_remove_franchise' ) ) {
4496
+												geodir_franchise_remove_franchise( $saved_post_id );
4497
+											}
4498
+										}
4499
+									} else {
4500
+										if ( isset( $gd_post['franchise'] ) && (int)$gd_post['franchise'] > 0 && geodir_franchise_check( (int)$gd_post['franchise'] ) ) {
4501
+											geodir_save_post_meta( $saved_post_id, 'franchise', (int)$gd_post['franchise'] );
4502
+										}
4503
+									}
4504
+								}
4505 4505
                                 
4506
-                                if (!empty($save_post['post_category']) && is_array($save_post['post_category'])) {
4507
-                                    $save_post['post_category'] = array_unique( array_map( 'intval', $save_post['post_category'] ) );
4508
-                                    if ($default_category_id) {
4509
-                                        $save_post['post_default_category'] = $default_category_id;
4510
-                                        $gd_post['default_category'] = $default_category_id;
4511
-                                    }
4512
-                                    $gd_post[$cat_taxonomy] = $save_post['post_category'];
4513
-                                }
4514
-                                $xtimings['###7'] = microtime(true)-$xstart;
4515
-                                // Save post info
4516
-                                geodir_save_post_info( $saved_post_id, $gd_post );
4517
-                                $xtimings['###8'] = microtime(true)-$xstart;
4518
-                                // post taxonomies
4519
-                                if ( !empty( $save_post['post_category'] ) ) {
4520
-                                    wp_set_object_terms( $saved_post_id, $save_post['post_category'], $cat_taxonomy );
4506
+								if (!empty($save_post['post_category']) && is_array($save_post['post_category'])) {
4507
+									$save_post['post_category'] = array_unique( array_map( 'intval', $save_post['post_category'] ) );
4508
+									if ($default_category_id) {
4509
+										$save_post['post_default_category'] = $default_category_id;
4510
+										$gd_post['default_category'] = $default_category_id;
4511
+									}
4512
+									$gd_post[$cat_taxonomy] = $save_post['post_category'];
4513
+								}
4514
+								$xtimings['###7'] = microtime(true)-$xstart;
4515
+								// Save post info
4516
+								geodir_save_post_info( $saved_post_id, $gd_post );
4517
+								$xtimings['###8'] = microtime(true)-$xstart;
4518
+								// post taxonomies
4519
+								if ( !empty( $save_post['post_category'] ) ) {
4520
+									wp_set_object_terms( $saved_post_id, $save_post['post_category'], $cat_taxonomy );
4521 4521
                                     
4522
-                                    $post_default_category = isset( $save_post['post_default_category'] ) ? $save_post['post_default_category'] : '';
4523
-                                    if ($default_category_id) {
4524
-                                        $post_default_category = $default_category_id;
4525
-                                    }
4526
-                                    $post_cat_ids = geodir_get_post_meta($saved_post_id, $cat_taxonomy);
4527
-                                    $save_post['post_category'] = !empty($post_cat_ids) ? explode(",", trim($post_cat_ids, ",")) : $save_post['post_category'];
4528
-                                    $post_category_str = !empty($save_post['post_category']) ? implode(",y:#", $save_post['post_category']) . ',y:' : '';
4522
+									$post_default_category = isset( $save_post['post_default_category'] ) ? $save_post['post_default_category'] : '';
4523
+									if ($default_category_id) {
4524
+										$post_default_category = $default_category_id;
4525
+									}
4526
+									$post_cat_ids = geodir_get_post_meta($saved_post_id, $cat_taxonomy);
4527
+									$save_post['post_category'] = !empty($post_cat_ids) ? explode(",", trim($post_cat_ids, ",")) : $save_post['post_category'];
4528
+									$post_category_str = !empty($save_post['post_category']) ? implode(",y:#", $save_post['post_category']) . ',y:' : '';
4529 4529
                                     
4530
-                                    if ($post_category_str != '' && $post_default_category) {
4531
-                                        $post_category_str = str_replace($post_default_category . ',y:', $post_default_category . ',y,d:', $post_category_str);
4532
-                                    }
4530
+									if ($post_category_str != '' && $post_default_category) {
4531
+										$post_category_str = str_replace($post_default_category . ',y:', $post_default_category . ',y,d:', $post_category_str);
4532
+									}
4533 4533
                                     
4534
-                                    $post_category_str = $post_category_str != '' ? array($cat_taxonomy => $post_category_str) : '';
4534
+									$post_category_str = $post_category_str != '' ? array($cat_taxonomy => $post_category_str) : '';
4535 4535
                                     
4536
-                                    geodir_set_postcat_structure( $saved_post_id, $cat_taxonomy, $post_default_category, $post_category_str );
4537
-                                }
4538
-                                $xtimings['###8.1'] = microtime(true)-$xstart;
4539
-                                if ( !empty( $save_post['post_tags'] ) ) {
4540
-                                    wp_set_object_terms( $saved_post_id, $save_post['post_tags'], $tags_taxonomy );
4541
-                                }
4542
-                                $xtimings['###9'] = microtime(true)-$xstart;
4543
-                                // Post images
4544
-                                if ( !empty( $post_images ) ) {
4545
-                                    $post_images = array_unique($post_images);
4536
+									geodir_set_postcat_structure( $saved_post_id, $cat_taxonomy, $post_default_category, $post_category_str );
4537
+								}
4538
+								$xtimings['###8.1'] = microtime(true)-$xstart;
4539
+								if ( !empty( $save_post['post_tags'] ) ) {
4540
+									wp_set_object_terms( $saved_post_id, $save_post['post_tags'], $tags_taxonomy );
4541
+								}
4542
+								$xtimings['###9'] = microtime(true)-$xstart;
4543
+								// Post images
4544
+								if ( !empty( $post_images ) ) {
4545
+									$post_images = array_unique($post_images);
4546 4546
                                     
4547
-                                    $old_post_images_arr = array();
4548
-                                    $saved_post_images_arr = array();
4547
+									$old_post_images_arr = array();
4548
+									$saved_post_images_arr = array();
4549 4549
                                     
4550
-                                    $order = 1;
4550
+									$order = 1;
4551 4551
                                     
4552
-                                    $old_post_images = geodir_get_images( $saved_post_id );
4553
-                                    $xtimings['###9.1'] = microtime(true)-$xstart;
4554
-                                    if (!empty($old_post_images)) {
4555
-                                        foreach( $old_post_images as $old_post_image ) {
4556
-                                            if (!empty($old_post_image) && isset($old_post_image->file) && $old_post_image->file != '') {
4557
-                                                $old_post_images_arr[] = $old_post_image->file;
4558
-                                            }
4559
-                                        }
4560
-                                    }
4552
+									$old_post_images = geodir_get_images( $saved_post_id );
4553
+									$xtimings['###9.1'] = microtime(true)-$xstart;
4554
+									if (!empty($old_post_images)) {
4555
+										foreach( $old_post_images as $old_post_image ) {
4556
+											if (!empty($old_post_image) && isset($old_post_image->file) && $old_post_image->file != '') {
4557
+												$old_post_images_arr[] = $old_post_image->file;
4558
+											}
4559
+										}
4560
+									}
4561 4561
 
4562
-                                    foreach ( $post_images as $post_image ) {
4563
-                                        $image_name = basename( $post_image );
4564
-                                        $saved_post_images_arr[] = $image_name;
4562
+									foreach ( $post_images as $post_image ) {
4563
+										$image_name = basename( $post_image );
4564
+										$saved_post_images_arr[] = $image_name;
4565 4565
                                         
4566
-                                        if (!empty($old_post_images_arr) && in_array( $image_name, $old_post_images_arr) ) {
4567
-                                            continue; // Skip if image already exists.
4568
-                                        }
4566
+										if (!empty($old_post_images_arr) && in_array( $image_name, $old_post_images_arr) ) {
4567
+											continue; // Skip if image already exists.
4568
+										}
4569 4569
                                         
4570
-                                        $image_name_parts = explode( '.', $image_name );
4571
-                                        array_pop( $image_name_parts );
4572
-                                        $proper_image_name = implode( '.', $image_name_parts );
4573
-                                        $xtimings['###9.2'] = microtime(true)-$xstart;
4574
-                                        $arr_file_type = wp_check_filetype( $image_name );
4575
-                                        $xtimings['###9.3'] = microtime(true)-$xstart;
4576
-                                        if ( !empty( $arr_file_type ) ) {
4577
-                                            $uploaded_file_type = $arr_file_type['type'];
4570
+										$image_name_parts = explode( '.', $image_name );
4571
+										array_pop( $image_name_parts );
4572
+										$proper_image_name = implode( '.', $image_name_parts );
4573
+										$xtimings['###9.2'] = microtime(true)-$xstart;
4574
+										$arr_file_type = wp_check_filetype( $image_name );
4575
+										$xtimings['###9.3'] = microtime(true)-$xstart;
4576
+										if ( !empty( $arr_file_type ) ) {
4577
+											$uploaded_file_type = $arr_file_type['type'];
4578 4578
                                             
4579
-                                            $attachment = array();
4580
-                                            $attachment['post_id'] = $saved_post_id;
4581
-                                            $attachment['title'] = $proper_image_name;
4582
-                                            $attachment['content'] = '';
4583
-                                            $attachment['file'] = $uploads_subdir . '/' . $image_name;
4584
-                                            $attachment['mime_type'] = $uploaded_file_type;
4585
-                                            $attachment['menu_order'] = $order;
4586
-                                            $attachment['is_featured'] = 0;
4587
-
4588
-                                            $attachment_set = '';
4589
-                                            foreach ( $attachment as $key => $val ) {
4590
-                                                if ( $val != '' ) {
4591
-                                                    $attachment_set .= $key . " = '" . $val . "', ";
4592
-                                                }
4593
-                                            }
4594
-                                            $attachment_set = trim( $attachment_set, ", " );
4579
+											$attachment = array();
4580
+											$attachment['post_id'] = $saved_post_id;
4581
+											$attachment['title'] = $proper_image_name;
4582
+											$attachment['content'] = '';
4583
+											$attachment['file'] = $uploads_subdir . '/' . $image_name;
4584
+											$attachment['mime_type'] = $uploaded_file_type;
4585
+											$attachment['menu_order'] = $order;
4586
+											$attachment['is_featured'] = 0;
4587
+
4588
+											$attachment_set = '';
4589
+											foreach ( $attachment as $key => $val ) {
4590
+												if ( $val != '' ) {
4591
+													$attachment_set .= $key . " = '" . $val . "', ";
4592
+												}
4593
+											}
4594
+											$attachment_set = trim( $attachment_set, ", " );
4595 4595
                                                                                         
4596
-                                            // Add new attachment
4597
-                                            $xtimings['###9.4'] = microtime(true)-$xstart;
4598
-                                            $wpdb->query( "INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set );
4599
-                                            $xtimings['###9.5'] = microtime(true)-$xstart;
4600
-                                            $order++;
4601
-                                        }
4602
-                                    }
4603
-
4604
-                                    $saved_post_images_sql = !empty($saved_post_images_arr) ? " AND ( file NOT LIKE '%/" . implode("' AND file NOT LIKE '%/",  $saved_post_images_arr) . "' )" : '';
4605
-                                    // Remove previous attachment
4606
-                                    $wpdb->query( "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = " . (int)$saved_post_id . " " . $saved_post_images_sql );
4607
-                                    $xtimings['###9.6'] = microtime(true)-$xstart;
4608
-                                    if ( !empty( $saved_post_images_arr ) ) {
4609
-                                        geodir_set_wp_featured_image($saved_post_id);
4610
-                                        $xtimings['###9.7'] = microtime(true)-$xstart;
4611
-                                        /*
4596
+											// Add new attachment
4597
+											$xtimings['###9.4'] = microtime(true)-$xstart;
4598
+											$wpdb->query( "INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set );
4599
+											$xtimings['###9.5'] = microtime(true)-$xstart;
4600
+											$order++;
4601
+										}
4602
+									}
4603
+
4604
+									$saved_post_images_sql = !empty($saved_post_images_arr) ? " AND ( file NOT LIKE '%/" . implode("' AND file NOT LIKE '%/",  $saved_post_images_arr) . "' )" : '';
4605
+									// Remove previous attachment
4606
+									$wpdb->query( "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = " . (int)$saved_post_id . " " . $saved_post_images_sql );
4607
+									$xtimings['###9.6'] = microtime(true)-$xstart;
4608
+									if ( !empty( $saved_post_images_arr ) ) {
4609
+										geodir_set_wp_featured_image($saved_post_id);
4610
+										$xtimings['###9.7'] = microtime(true)-$xstart;
4611
+										/*
4612 4612
                                         $menu_order = 1;
4613 4613
                                         
4614 4614
                                         foreach ( $saved_post_images_arr as $img_name ) {
@@ -4621,288 +4621,288 @@  discard block
 block discarded – undo
4621 4621
                                             }
4622 4622
                                             $menu_order++;
4623 4623
                                         }*/
4624
-                                    }
4624
+									}
4625 4625
                                     
4626
-                                    if ( $order > 1 ) {
4627
-                                        $images++;
4628
-                                    }
4629
-                                }
4630
-                                $xtimings['###10'] = microtime(true)-$xstart;
4631
-                                /** This action is documented in geodirectory-functions/post-functions.php */
4632
-                                do_action( 'geodir_after_save_listing', $saved_post_id, $gd_post );
4633
-                                $xtimings['###11'] = microtime(true)-$xstart;
4634
-                                if (isset($is_featured)) {
4635
-                                    geodir_save_post_meta($saved_post_id, 'is_featured', $is_featured);
4636
-                                }
4637
-                                if (isset($gd_post['alive_days'])) {
4638
-                                    geodir_save_post_meta($saved_post_id, 'alive_days', $gd_post['alive_days']);
4639
-                                }
4640
-                                if (isset($gd_post['expire_date'])) {
4641
-                                    geodir_save_post_meta($saved_post_id, 'expire_date', $gd_post['expire_date']);
4642
-                                }
4643
-                                $xtimings['###12'] = microtime(true)-$xstart;
4644
-                            }
4626
+									if ( $order > 1 ) {
4627
+										$images++;
4628
+									}
4629
+								}
4630
+								$xtimings['###10'] = microtime(true)-$xstart;
4631
+								/** This action is documented in geodirectory-functions/post-functions.php */
4632
+								do_action( 'geodir_after_save_listing', $saved_post_id, $gd_post );
4633
+								$xtimings['###11'] = microtime(true)-$xstart;
4634
+								if (isset($is_featured)) {
4635
+									geodir_save_post_meta($saved_post_id, 'is_featured', $is_featured);
4636
+								}
4637
+								if (isset($gd_post['alive_days'])) {
4638
+									geodir_save_post_meta($saved_post_id, 'alive_days', $gd_post['alive_days']);
4639
+								}
4640
+								if (isset($gd_post['expire_date'])) {
4641
+									geodir_save_post_meta($saved_post_id, 'expire_date', $gd_post['expire_date']);
4642
+								}
4643
+								$xtimings['###12'] = microtime(true)-$xstart;
4644
+							}
4645 4645
                             
4646
-                            // WPML
4647
-                            if ($is_wpml && $language != '') {
4648
-                                $sitepress->switch_lang($active_lang, true);
4649
-                            }
4650
-                            // WPML
4651
-                        }
4652
-                    }
4653
-                }
4646
+							// WPML
4647
+							if ($is_wpml && $language != '') {
4648
+								$sitepress->switch_lang($active_lang, true);
4649
+							}
4650
+							// WPML
4651
+						}
4652
+					}
4653
+				}
4654 4654
 
4655
-                //undo some stuff to make the import quicker
4656
-                wp_defer_term_counting( false );
4657
-                wp_defer_comment_counting( false );
4658
-                $wpdb->query( 'COMMIT;' );
4659
-                $wpdb->query( 'SET autocommit = 1;' );
4660
-                $xtimings['###13'] = microtime(true)-$xstart;
4661
-                $json = array();
4662
-                $json['processed'] = $processed_actual;
4663
-                $json['created'] = $created;
4664
-                $json['updated'] = $updated;
4665
-                $json['skipped'] = $skipped;
4666
-                $json['invalid'] = $invalid;
4667
-                $json['invalid_addr'] = $invalid_addr;
4668
-                $json['images'] = $images;
4669
-                $json['timing'] = microtime(true)-$xstart;
4670
-                $json['timings'] = $xtimings;
4655
+				//undo some stuff to make the import quicker
4656
+				wp_defer_term_counting( false );
4657
+				wp_defer_comment_counting( false );
4658
+				$wpdb->query( 'COMMIT;' );
4659
+				$wpdb->query( 'SET autocommit = 1;' );
4660
+				$xtimings['###13'] = microtime(true)-$xstart;
4661
+				$json = array();
4662
+				$json['processed'] = $processed_actual;
4663
+				$json['created'] = $created;
4664
+				$json['updated'] = $updated;
4665
+				$json['skipped'] = $skipped;
4666
+				$json['invalid'] = $invalid;
4667
+				$json['invalid_addr'] = $invalid_addr;
4668
+				$json['images'] = $images;
4669
+				$json['timing'] = microtime(true)-$xstart;
4670
+				$json['timings'] = $xtimings;
4671 4671
                 
4672 4672
 
4673
-                wp_send_json( $json );
4674
-                exit;
4675
-            } else if ( $task == 'import_loc' ) {
4676
-                global $gd_post_types;
4677
-                $gd_post_types = $post_types;
4673
+				wp_send_json( $json );
4674
+				exit;
4675
+			} else if ( $task == 'import_loc' ) {
4676
+				global $gd_post_types;
4677
+				$gd_post_types = $post_types;
4678 4678
                 
4679
-                if (!empty($file)) {
4680
-                    $columns = isset($file[0]) ? $file[0] : NULL;
4679
+				if (!empty($file)) {
4680
+					$columns = isset($file[0]) ? $file[0] : NULL;
4681 4681
                     
4682
-                    if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4683
-                        $json['error'] = __('The file you are uploading is not valid. There are problems with the file columns.', 'geodirectory');
4684
-                        wp_send_json( $json );
4685
-                    }
4682
+					if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4683
+						$json['error'] = __('The file you are uploading is not valid. There are problems with the file columns.', 'geodirectory');
4684
+						wp_send_json( $json );
4685
+					}
4686 4686
                     
4687
-                    $gd_error_log = __('GD IMPORT LOCATIONS [ROW %d]:', 'geodirectory');
4688
-                    $gd_error_location = __( 'Could not be saved due to blank/invalid address(city, region, country, latitude, longitude)', 'geodirectory' );
4689
-                    for ($i = 1; $i <= $limit; $i++) {
4690
-                        $index = $processed + $i;
4687
+					$gd_error_log = __('GD IMPORT LOCATIONS [ROW %d]:', 'geodirectory');
4688
+					$gd_error_location = __( 'Could not be saved due to blank/invalid address(city, region, country, latitude, longitude)', 'geodirectory' );
4689
+					for ($i = 1; $i <= $limit; $i++) {
4690
+						$index = $processed + $i;
4691 4691
                         
4692
-                        if (isset($file[$index])) {
4693
-                            $row = $file[$index];
4694
-                            $row = array_map( 'trim', $row );
4695
-                            $data = array();
4692
+						if (isset($file[$index])) {
4693
+							$row = $file[$index];
4694
+							$row = array_map( 'trim', $row );
4695
+							$data = array();
4696 4696
                             
4697
-                            foreach ($columns as $c => $column ) {
4698
-                                if (in_array($column, array('location_id', 'latitude', 'longitude', 'city', 'city_slug', 'region', 'country', 'city_meta_title', 'city_meta_desc', 'city_desc', 'region_meta_title', 'region_meta_desc', 'region_desc', 'country_meta_title', 'country_meta_desc', 'country_desc'))) {
4699
-                                    $data[$column] = $row[$c];
4700
-                                }
4701
-                            }
4697
+							foreach ($columns as $c => $column ) {
4698
+								if (in_array($column, array('location_id', 'latitude', 'longitude', 'city', 'city_slug', 'region', 'country', 'city_meta_title', 'city_meta_desc', 'city_desc', 'region_meta_title', 'region_meta_desc', 'region_desc', 'country_meta_title', 'country_meta_desc', 'country_desc'))) {
4699
+									$data[$column] = $row[$c];
4700
+								}
4701
+							}
4702 4702
 
4703
-                            if ( empty($data['city']) || empty($data['region']) || empty($data['country']) || empty($data['latitude']) || empty($data['longitude']) ) {
4704
-                                $invalid++;
4705
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4706
-                                continue;
4707
-                            }
4703
+							if ( empty($data['city']) || empty($data['region']) || empty($data['country']) || empty($data['latitude']) || empty($data['longitude']) ) {
4704
+								$invalid++;
4705
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4706
+								continue;
4707
+							}
4708 4708
                             
4709
-                            $data['location_id'] = isset($data['location_id']) ? absint($data['location_id']) : 0;
4709
+							$data['location_id'] = isset($data['location_id']) ? absint($data['location_id']) : 0;
4710 4710
                             
4711
-                            if ( $import_choice == 'update' ) {
4712
-                                if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
4713
-                                    if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
4714
-                                        $updated++;
4715
-                                    } else {
4716
-                                        $invalid++;
4717
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4718
-                                    }
4719
-                                } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
4720
-                                    $data['location_id'] = (int)$location->location_id;
4711
+							if ( $import_choice == 'update' ) {
4712
+								if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
4713
+									if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
4714
+										$updated++;
4715
+									} else {
4716
+										$invalid++;
4717
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4718
+									}
4719
+								} else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
4720
+									$data['location_id'] = (int)$location->location_id;
4721 4721
                                     
4722
-                                    if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'], 'region' => $data['region'] ) ) ) {
4723
-                                        $data['location_id'] = (int)$location->location_id;
4724
-                                    } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'region' => $data['region'] ) ) ) {
4725
-                                        $data['location_id'] = (int)$location->location_id;
4726
-                                    } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'] ) ) ) {
4727
-                                        $data['location_id'] = (int)$location->location_id;
4728
-                                    }
4722
+									if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'], 'region' => $data['region'] ) ) ) {
4723
+										$data['location_id'] = (int)$location->location_id;
4724
+									} else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'region' => $data['region'] ) ) ) {
4725
+										$data['location_id'] = (int)$location->location_id;
4726
+									} else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'] ) ) ) {
4727
+										$data['location_id'] = (int)$location->location_id;
4728
+									}
4729 4729
                                     
4730
-                                    if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
4731
-                                        $updated++;
4732
-                                    } else {
4733
-                                        $invalid++;
4734
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4735
-                                    }
4736
-                                } else {
4737
-                                    if ( $location_id = geodir_location_insert_city( $data, true ) ) {
4738
-                                        $created++;
4739
-                                    } else {
4740
-                                        $invalid++;
4741
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4742
-                                    }
4743
-                                }
4744
-                            } elseif ( $import_choice == 'skip' ) {
4745
-                                if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
4746
-                                    $skipped++;
4747
-                                } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
4748
-                                    $skipped++;
4749
-                                } else {
4750
-                                    if ( $location_id = geodir_location_insert_city( $data, true ) ) {
4751
-                                        $created++;
4752
-                                    } else {
4753
-                                        $invalid++;
4754
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4755
-                                    }
4756
-                                }
4757
-                            } else {
4758
-                                $invalid++;
4759
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4760
-                            }
4761
-                        }
4762
-                    }
4763
-                }
4730
+									if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
4731
+										$updated++;
4732
+									} else {
4733
+										$invalid++;
4734
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4735
+									}
4736
+								} else {
4737
+									if ( $location_id = geodir_location_insert_city( $data, true ) ) {
4738
+										$created++;
4739
+									} else {
4740
+										$invalid++;
4741
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4742
+									}
4743
+								}
4744
+							} elseif ( $import_choice == 'skip' ) {
4745
+								if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
4746
+									$skipped++;
4747
+								} else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
4748
+									$skipped++;
4749
+								} else {
4750
+									if ( $location_id = geodir_location_insert_city( $data, true ) ) {
4751
+										$created++;
4752
+									} else {
4753
+										$invalid++;
4754
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4755
+									}
4756
+								}
4757
+							} else {
4758
+								$invalid++;
4759
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4760
+							}
4761
+						}
4762
+					}
4763
+				}
4764 4764
                 
4765
-                $json = array();
4766
-                $json['processed'] = $limit;
4767
-                $json['created'] = $created;
4768
-                $json['updated'] = $updated;
4769
-                $json['skipped'] = $skipped;
4770
-                $json['invalid'] = $invalid;
4771
-                $json['images'] = $images;
4765
+				$json = array();
4766
+				$json['processed'] = $limit;
4767
+				$json['created'] = $created;
4768
+				$json['updated'] = $updated;
4769
+				$json['skipped'] = $skipped;
4770
+				$json['invalid'] = $invalid;
4771
+				$json['images'] = $images;
4772 4772
                 
4773
-                wp_send_json( $json );
4774
-            } else if ( $task == 'import_hood' ) {               
4775
-                if (!empty($file)) {
4776
-                    $columns = isset($file[0]) ? $file[0] : NULL;
4773
+				wp_send_json( $json );
4774
+			} else if ( $task == 'import_hood' ) {               
4775
+				if (!empty($file)) {
4776
+					$columns = isset($file[0]) ? $file[0] : NULL;
4777 4777
                     
4778
-                    if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4779
-                        $json['error'] = __('The file you are uploading is not valid. There are problems with the file columns.', 'geodirectory');
4780
-                        wp_send_json( $json );
4781
-                    }
4778
+					if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4779
+						$json['error'] = __('The file you are uploading is not valid. There are problems with the file columns.', 'geodirectory');
4780
+						wp_send_json( $json );
4781
+					}
4782 4782
                     
4783
-                    $gd_error_log = __('GD IMPORT NEIGHBOURHOODS [ROW %d]:', 'geodirectory');
4784
-                    $gd_error_hood = __( 'Could not be saved due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory' );
4785
-                    for ($i = 1; $i <= $limit; $i++) {
4786
-                        $index = $processed + $i;
4783
+					$gd_error_log = __('GD IMPORT NEIGHBOURHOODS [ROW %d]:', 'geodirectory');
4784
+					$gd_error_hood = __( 'Could not be saved due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory' );
4785
+					for ($i = 1; $i <= $limit; $i++) {
4786
+						$index = $processed + $i;
4787 4787
                         
4788
-                        if (isset($file[$index])) {
4789
-                            $row = $file[$index];
4790
-                            $row = array_map( 'trim', $row );
4791
-                            $data = array();
4788
+						if (isset($file[$index])) {
4789
+							$row = $file[$index];
4790
+							$row = array_map( 'trim', $row );
4791
+							$data = array();
4792 4792
                             
4793
-                            foreach ($columns as $c => $column) {
4794
-                                if (in_array($column, array('neighbourhood_id', 'neighbourhood_name', 'neighbourhood_slug', 'latitude', 'longitude', 'location_id', 'city', 'region', 'country'))) {
4795
-                                    $data[$column] = sanitize_text_field($row[$c]);
4796
-                                }
4797
-                            }
4793
+							foreach ($columns as $c => $column) {
4794
+								if (in_array($column, array('neighbourhood_id', 'neighbourhood_name', 'neighbourhood_slug', 'latitude', 'longitude', 'location_id', 'city', 'region', 'country'))) {
4795
+									$data[$column] = sanitize_text_field($row[$c]);
4796
+								}
4797
+							}
4798 4798
 
4799
-                            if (empty($data['neighbourhood_name']) || empty($data['latitude']) || empty($data['longitude'])) {
4800
-                                $invalid++;
4801
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4802
-                                continue;
4803
-                            }
4799
+							if (empty($data['neighbourhood_name']) || empty($data['latitude']) || empty($data['longitude'])) {
4800
+								$invalid++;
4801
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4802
+								continue;
4803
+							}
4804 4804
                             
4805
-                            $location_info = array();
4806
-                            if (!empty($data['location_id']) && (int)$data['location_id'] > 0) {
4807
-                                $location_info = geodir_get_location_by_id('', (int)$data['location_id']);
4808
-                            } else if (!empty($data['city']) && !empty($data['region']) && !empty($data['country'])) {
4809
-                                $location_info = geodir_get_location_by_slug('city', array('fields' => 'location_id', 'city' => $data['city'], 'country' => $data['country'], 'region' => $data['region']));
4810
-                            }
4805
+							$location_info = array();
4806
+							if (!empty($data['location_id']) && (int)$data['location_id'] > 0) {
4807
+								$location_info = geodir_get_location_by_id('', (int)$data['location_id']);
4808
+							} else if (!empty($data['city']) && !empty($data['region']) && !empty($data['country'])) {
4809
+								$location_info = geodir_get_location_by_slug('city', array('fields' => 'location_id', 'city' => $data['city'], 'country' => $data['country'], 'region' => $data['region']));
4810
+							}
4811 4811
 
4812
-                            if (empty($location_info)) {
4813
-                                $invalid++;
4814
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4815
-                                continue;
4816
-                            }
4812
+							if (empty($location_info)) {
4813
+								$invalid++;
4814
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4815
+								continue;
4816
+							}
4817 4817
                             
4818
-                            $location_id = $location_info->location_id;
4818
+							$location_id = $location_info->location_id;
4819 4819
 
4820
-                            $data['neighbourhood_id'] = isset($data['neighbourhood_id']) ? absint($data['neighbourhood_id']) : 0;
4820
+							$data['neighbourhood_id'] = isset($data['neighbourhood_id']) ? absint($data['neighbourhood_id']) : 0;
4821 4821
                             
4822
-                            $hood_data = array();
4823
-                            $hood_data['hood_name'] = $data['neighbourhood_name'];
4824
-                            $hood_data['hood_slug'] = $data['neighbourhood_slug'];
4825
-                            $hood_data['hood_latitude'] = $data['latitude'];
4826
-                            $hood_data['hood_longitude'] = $data['longitude'];
4827
-                            $hood_data['hood_location_id'] = $location_id;
4822
+							$hood_data = array();
4823
+							$hood_data['hood_name'] = $data['neighbourhood_name'];
4824
+							$hood_data['hood_slug'] = $data['neighbourhood_slug'];
4825
+							$hood_data['hood_latitude'] = $data['latitude'];
4826
+							$hood_data['hood_longitude'] = $data['longitude'];
4827
+							$hood_data['hood_location_id'] = $location_id;
4828 4828
                                     
4829
-                            if ( $import_choice == 'update' ) {
4830
-                                if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
4831
-                                    $hood_data['hood_id'] = (int)$data['neighbourhood_id'];
4829
+							if ( $import_choice == 'update' ) {
4830
+								if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
4831
+									$hood_data['hood_id'] = (int)$data['neighbourhood_id'];
4832 4832
                                     
4833
-                                    if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4834
-                                        $updated++;
4835
-                                    } else {
4836
-                                        $invalid++;
4837
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4838
-                                    }
4839
-                                } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
4840
-                                    $hood_data['hood_id'] = (int)$neighbourhood->hood_id;
4833
+									if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4834
+										$updated++;
4835
+									} else {
4836
+										$invalid++;
4837
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4838
+									}
4839
+								} else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
4840
+									$hood_data['hood_id'] = (int)$neighbourhood->hood_id;
4841 4841
                                     
4842
-                                    if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4843
-                                        $updated++;
4844
-                                    } else {
4845
-                                        $invalid++;
4846
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4847
-                                    }
4848
-                                } else {
4849
-                                    if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4850
-                                        $created++;
4851
-                                    } else {
4852
-                                        $invalid++;
4853
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4854
-                                    }
4855
-                                }
4856
-                            } elseif ( $import_choice == 'skip' ) {
4857
-                                if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
4858
-                                    $skipped++;
4859
-                                } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
4860
-                                    $skipped++;
4861
-                                } else {
4842
+									if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4843
+										$updated++;
4844
+									} else {
4845
+										$invalid++;
4846
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4847
+									}
4848
+								} else {
4849
+									if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4850
+										$created++;
4851
+									} else {
4852
+										$invalid++;
4853
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4854
+									}
4855
+								}
4856
+							} elseif ( $import_choice == 'skip' ) {
4857
+								if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
4858
+									$skipped++;
4859
+								} else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
4860
+									$skipped++;
4861
+								} else {
4862 4862
                                     
4863
-                                    if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4864
-                                        $created++;
4865
-                                    } else {
4866
-                                        $invalid++;
4867
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4868
-                                    }
4869
-                                }
4870
-                            } else {
4871
-                                $invalid++;
4872
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4873
-                            }
4874
-                        }
4875
-                    }
4876
-                }
4863
+									if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4864
+										$created++;
4865
+									} else {
4866
+										$invalid++;
4867
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4868
+									}
4869
+								}
4870
+							} else {
4871
+								$invalid++;
4872
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4873
+							}
4874
+						}
4875
+					}
4876
+				}
4877 4877
                 
4878
-                $json = array();
4879
-                $json['processed'] = $limit;
4880
-                $json['created'] = $created;
4881
-                $json['updated'] = $updated;
4882
-                $json['skipped'] = $skipped;
4883
-                $json['invalid'] = $invalid;
4884
-                $json['images'] = $images;
4878
+				$json = array();
4879
+				$json['processed'] = $limit;
4880
+				$json['created'] = $created;
4881
+				$json['updated'] = $updated;
4882
+				$json['skipped'] = $skipped;
4883
+				$json['invalid'] = $invalid;
4884
+				$json['images'] = $images;
4885 4885
                 
4886
-                wp_send_json( $json );
4887
-            }
4888
-        }
4889
-        break;
4890
-        case 'import_finish':{
4891
-            /**
4892
-             * Run an action when an import finishes.
4893
-             *
4894
-             * This action can be used to fire functions after an import ends.
4895
-             *
4896
-             * @since 1.5.3
4897
-             * @package GeoDirectory
4898
-             */
4899
-            do_action('geodir_import_finished');
4900
-        }
4901
-        break;
4886
+				wp_send_json( $json );
4887
+			}
4888
+		}
4889
+		break;
4890
+		case 'import_finish':{
4891
+			/**
4892
+			 * Run an action when an import finishes.
4893
+			 *
4894
+			 * This action can be used to fire functions after an import ends.
4895
+			 *
4896
+			 * @since 1.5.3
4897
+			 * @package GeoDirectory
4898
+			 */
4899
+			do_action('geodir_import_finished');
4900
+		}
4901
+		break;
4902 4902
 
4903
-    }
4904
-    echo '0';
4905
-    gd_die();
4903
+	}
4904
+	echo '0';
4905
+	gd_die();
4906 4906
 }
4907 4907
 
4908 4908
 /**
@@ -4946,12 +4946,12 @@  discard block
 block discarded – undo
4946 4946
 		$args['slug'] = wp_unique_term_slug( $args['slug'], (object)$term_args );
4947 4947
 	}
4948 4948
 	
4949
-    if( !empty( $term ) ) {
4949
+	if( !empty( $term ) ) {
4950 4950
 		$result = wp_insert_term( $term, $taxonomy, $args );
4951
-        if( !is_wp_error( $result ) ) {
4952
-            return isset( $result['term_id'] ) ? $result['term_id'] : 0;
4953
-        }
4954
-    }
4951
+		if( !is_wp_error( $result ) ) {
4952
+			return isset( $result['term_id'] ) ? $result['term_id'] : 0;
4953
+		}
4954
+	}
4955 4955
 	
4956 4956
 	return false;
4957 4957
 }
@@ -4997,16 +4997,16 @@  discard block
 block discarded – undo
4997 4997
 		$result = wp_update_term( $term_data['term_id'], $taxonomy, $term_data );
4998 4998
 		
4999 4999
 		if( !is_wp_error( $result ) ) {
5000
-            return isset( $result['term_id'] ) ? $result['term_id'] : 0;
5001
-        }
5000
+			return isset( $result['term_id'] ) ? $result['term_id'] : 0;
5001
+		}
5002 5002
 	} else if ( $term_data['slug'] != '' && $term_info = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
5003 5003
 		$term_data['term_id'] = $term_info['term_id'];
5004 5004
 		
5005 5005
 		$result = wp_update_term( $term_data['term_id'], $taxonomy, $term_data );
5006 5006
 		
5007 5007
 		if( !is_wp_error( $result ) ) {
5008
-            return isset( $result['term_id'] ) ? $result['term_id'] : 0;
5009
-        }
5008
+			return isset( $result['term_id'] ) ? $result['term_id'] : 0;
5009
+		}
5010 5010
 	} else {
5011 5011
 		return geodir_imex_insert_term( $taxonomy, $term_data );
5012 5012
 	}
@@ -5028,47 +5028,47 @@  discard block
 block discarded – undo
5028 5028
  * @return int Posts count.
5029 5029
  */
5030 5030
 function geodir_get_posts_count( $post_type ) {
5031
-    global $wpdb, $plugin_prefix;
5031
+	global $wpdb, $plugin_prefix;
5032 5032
 
5033
-    if ( !post_type_exists( $post_type ) ) {
5034
-        return 0;
5035
-    }
5033
+	if ( !post_type_exists( $post_type ) ) {
5034
+		return 0;
5035
+	}
5036 5036
         
5037
-    $table = $plugin_prefix . $post_type . '_detail';
5037
+	$table = $plugin_prefix . $post_type . '_detail';
5038 5038
 
5039
-    // Skip listing with statuses trash, auto-draft etc...
5040
-    $skip_statuses = geodir_imex_export_skip_statuses();
5041
-    $where_statuses = '';
5042
-    if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5043
-        $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5044
-    }
5039
+	// Skip listing with statuses trash, auto-draft etc...
5040
+	$skip_statuses = geodir_imex_export_skip_statuses();
5041
+	$where_statuses = '';
5042
+	if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5043
+		$where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5044
+	}
5045 5045
     
5046
-    /**
5047
-     * Filter the SQL where clause part to filter posts count in import/export.
5048
-     *
5049
-     * @since 1.6.4
5050
-     * @package GeoDirectory
5051
-     *
5052
-     * @param string $where SQL where clause part.
5053
-     */
5054
-    $where_statuses = apply_filters( 'geodir_get_posts_count', $where_statuses, $post_type );
5055
-
5056
-    $query = $wpdb->prepare( "SELECT COUNT({$wpdb->posts}.ID) FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s " . $where_statuses, $post_type );
5057
-
5058
-    $posts_count = (int)$wpdb->get_var( $query );
5046
+	/**
5047
+	 * Filter the SQL where clause part to filter posts count in import/export.
5048
+	 *
5049
+	 * @since 1.6.4
5050
+	 * @package GeoDirectory
5051
+	 *
5052
+	 * @param string $where SQL where clause part.
5053
+	 */
5054
+	$where_statuses = apply_filters( 'geodir_get_posts_count', $where_statuses, $post_type );
5055
+
5056
+	$query = $wpdb->prepare( "SELECT COUNT({$wpdb->posts}.ID) FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s " . $where_statuses, $post_type );
5057
+
5058
+	$posts_count = (int)$wpdb->get_var( $query );
5059 5059
     
5060
-    /**
5061
-     * Modify returned post counts for the current post type.
5062
-     *
5063
-     * @since 1.4.6
5064
-     * @package GeoDirectory
5065
-     *
5066
-     * @param int $posts_count Post counts.
5067
-     * @param string $post_type Post type.
5068
-     */
5069
-    $posts_count = apply_filters( 'geodir_imex_count_posts', $posts_count, $post_type );
5070
-
5071
-    return $posts_count;
5060
+	/**
5061
+	 * Modify returned post counts for the current post type.
5062
+	 *
5063
+	 * @since 1.4.6
5064
+	 * @package GeoDirectory
5065
+	 *
5066
+	 * @param int $posts_count Post counts.
5067
+	 * @param string $post_type Post type.
5068
+	 */
5069
+	$posts_count = apply_filters( 'geodir_imex_count_posts', $posts_count, $post_type );
5070
+
5071
+	return $posts_count;
5072 5072
 }
5073 5073
 
5074 5074
 /**
@@ -5136,7 +5136,7 @@  discard block
 block discarded – undo
5136 5136
 		}
5137 5137
 		$csv_row[] = 'post_status';
5138 5138
 		$csv_row[] = 'is_featured';
5139
-        // Export claim listing field
5139
+		// Export claim listing field
5140 5140
 		if ($is_claim_active) {
5141 5141
 			$csv_row[] = 'claimed';
5142 5142
 		}
@@ -5145,7 +5145,7 @@  discard block
 block discarded – undo
5145 5145
 			$csv_row[] = 'alive_days';
5146 5146
 			$csv_row[] = 'expire_date';
5147 5147
 		}
5148
-        $csv_row[] = 'post_date';
5148
+		$csv_row[] = 'post_date';
5149 5149
 		$csv_row[] = 'post_address';
5150 5150
 		$csv_row[] = 'post_city';
5151 5151
 		$csv_row[] = 'post_region';
@@ -5153,11 +5153,11 @@  discard block
 block discarded – undo
5153 5153
 		$csv_row[] = 'post_zip';
5154 5154
 		$csv_row[] = 'post_latitude';
5155 5155
 		$csv_row[] = 'post_longitude';
5156
-        if ($neighbourhood_active) {
5157
-            $csv_row[] = 'post_neighbourhood';
5158
-            $csv_row[] = 'neighbourhood_latitude';
5159
-            $csv_row[] = 'neighbourhood_longitude';
5160
-        }
5156
+		if ($neighbourhood_active) {
5157
+			$csv_row[] = 'post_neighbourhood';
5158
+			$csv_row[] = 'neighbourhood_latitude';
5159
+			$csv_row[] = 'neighbourhood_longitude';
5160
+		}
5161 5161
 		$csv_row[] = 'geodir_timing';
5162 5162
 		$csv_row[] = 'geodir_contact';
5163 5163
 		$csv_row[] = 'geodir_email';
@@ -5192,21 +5192,21 @@  discard block
 block discarded – undo
5192 5192
 			$csv_row[] = 'franchise';
5193 5193
 		}
5194 5194
         
5195
-        /**
5196
-         * Filter columns field names of gd export listings csv.
5197
-         *
5198
-         * @since 1.6.5
5199
-         * @package GeoDirectory
5200
-         *
5201
-         * @param array $csv_row Column names being exported in csv.
5202
-         * @param string $post_type The post type.
5203
-         */
5204
-        $csv_row = apply_filters('geodir_export_listing_csv_column_names', $csv_row, $post_type);
5195
+		/**
5196
+		 * Filter columns field names of gd export listings csv.
5197
+		 *
5198
+		 * @since 1.6.5
5199
+		 * @package GeoDirectory
5200
+		 *
5201
+		 * @param array $csv_row Column names being exported in csv.
5202
+		 * @param string $post_type The post type.
5203
+		 */
5204
+		$csv_row = apply_filters('geodir_export_listing_csv_column_names', $csv_row, $post_type);
5205 5205
 		
5206 5206
 		$csv_rows[] = $csv_row;
5207 5207
 
5208 5208
 		$images_count = 5;
5209
-        $xx=0;
5209
+		$xx=0;
5210 5210
 		foreach ( $posts as $post ) {$xx++;
5211 5211
 			$post_id = $post['ID'];
5212 5212
 			
@@ -5337,15 +5337,15 @@  discard block
 block discarded – undo
5337 5337
 			}
5338 5338
 			$csv_row[] = $post_info['post_status']; // post_status
5339 5339
 			$csv_row[] = (int)$post_info['is_featured'] == 1 ? 1 : ''; // is_featured
5340
-            if ($is_claim_active) {
5341
-                $csv_row[] = !empty($post_info['claimed']) && (int)$post_info['claimed'] == 1 ? 1 : ''; // claimed
5342
-            }
5340
+			if ($is_claim_active) {
5341
+				$csv_row[] = !empty($post_info['claimed']) && (int)$post_info['claimed'] == 1 ? 1 : ''; // claimed
5342
+			}
5343 5343
 			if ($is_payment_plugin) {
5344 5344
 				$csv_row[] = (int)$post_info['package_id']; // package_id
5345 5345
 				$csv_row[] = $post_info['alive_days'] !== '' ? absint($post_info['alive_days']) : ''; // alive_days
5346 5346
 				$csv_row[] = $post_info['expire_date'] != '' && geodir_strtolower($post_info['expire_date']) != 'never' ? date_i18n('Y-m-d', strtotime($post_info['expire_date'])) : 'Never'; // expire_date
5347 5347
 			}
5348
-            $csv_row[] = $post_info['post_date']; // post_date
5348
+			$csv_row[] = $post_info['post_date']; // post_date
5349 5349
 			$csv_row[] = stripslashes($post_info['post_address']); // post_address
5350 5350
 			$csv_row[] = stripslashes($post_info['post_city']); // post_city
5351 5351
 			$csv_row[] = stripslashes($post_info['post_region']); // post_region
@@ -5353,21 +5353,21 @@  discard block
 block discarded – undo
5353 5353
 			$csv_row[] = stripslashes($post_info['post_zip']); // post_zip
5354 5354
 			$csv_row[] = $post_info['post_latitude']; // post_latitude
5355 5355
 			$csv_row[] = $post_info['post_longitude']; // post_longitude
5356
-            if ($neighbourhood_active) {
5357
-                $post_neighbourhood = '';
5358
-                $neighbourhood_latitude = '';
5359
-                $neighbourhood_longitude = '';
5360
-                if (!empty($post_info['post_neighbourhood']) && ($hood_info = geodir_location_get_neighbourhood_by_id($post_info['post_neighbourhood'], true, $post_info['post_location_id']))) {
5361
-                    if (!empty($hood_info)) {
5362
-                        $post_neighbourhood = $hood_info->hood_name;
5363
-                        $neighbourhood_latitude = $hood_info->hood_latitude;
5364
-                        $neighbourhood_longitude = $hood_info->hood_longitude;
5365
-                    }
5366
-                }
5367
-                $csv_row[] = stripslashes($post_neighbourhood); // post_neighbourhood
5368
-                $csv_row[] = $neighbourhood_latitude; // neighbourhood_latitude
5369
-                $csv_row[] = $neighbourhood_longitude; // neighbourhood_longitude
5370
-            }
5356
+			if ($neighbourhood_active) {
5357
+				$post_neighbourhood = '';
5358
+				$neighbourhood_latitude = '';
5359
+				$neighbourhood_longitude = '';
5360
+				if (!empty($post_info['post_neighbourhood']) && ($hood_info = geodir_location_get_neighbourhood_by_id($post_info['post_neighbourhood'], true, $post_info['post_location_id']))) {
5361
+					if (!empty($hood_info)) {
5362
+						$post_neighbourhood = $hood_info->hood_name;
5363
+						$neighbourhood_latitude = $hood_info->hood_latitude;
5364
+						$neighbourhood_longitude = $hood_info->hood_longitude;
5365
+					}
5366
+				}
5367
+				$csv_row[] = stripslashes($post_neighbourhood); // post_neighbourhood
5368
+				$csv_row[] = $neighbourhood_latitude; // neighbourhood_latitude
5369
+				$csv_row[] = $neighbourhood_longitude; // neighbourhood_longitude
5370
+			}
5371 5371
 			$csv_row[] = stripslashes($post_info['geodir_timing']); // geodir_timing
5372 5372
 			$csv_row[] = stripslashes($post_info['geodir_contact']); // geodir_contact
5373 5373
 			$csv_row[] = stripslashes($post_info['geodir_email']); // geodir_email
@@ -5410,16 +5410,16 @@  discard block
 block discarded – undo
5410 5410
 				$csv_row[] = (int)$franchise; // franchise id
5411 5411
 			}
5412 5412
             
5413
-            /**
5414
-             * Filter columns values of gd export listings csv file
5415
-             *
5416
-             * @since 1.6.5
5417
-             * @package GeoDirectory
5418
-             *
5419
-             * @param array $csv_row Field values being exported in csv.
5420
-             * @param array $post_info The post info.
5421
-             */
5422
-            $csv_row = apply_filters('geodir_export_listing_csv_column_values', $csv_row, $post_info);
5413
+			/**
5414
+			 * Filter columns values of gd export listings csv file
5415
+			 *
5416
+			 * @since 1.6.5
5417
+			 * @package GeoDirectory
5418
+			 *
5419
+			 * @param array $csv_row Field values being exported in csv.
5420
+			 * @param array $post_info The post info.
5421
+			 */
5422
+			$csv_row = apply_filters('geodir_export_listing_csv_column_values', $csv_row, $post_info);
5423 5423
 			
5424 5424
 			for ( $c = 0; $c < $images_count; $c++ ) {
5425 5425
 				$csv_row[] = isset( $current_images[$c] ) ? $current_images[$c] : ''; // IMAGE
@@ -5452,64 +5452,64 @@  discard block
 block discarded – undo
5452 5452
  * @return array Array of posts data.
5453 5453
  */
5454 5454
 function geodir_get_export_posts( $post_type, $per_page = 0, $page_no = 0 ) {
5455
-    global $wpdb, $plugin_prefix;
5455
+	global $wpdb, $plugin_prefix;
5456 5456
 
5457
-    if ( ! post_type_exists( $post_type ) )
5458
-        return new stdClass;
5457
+	if ( ! post_type_exists( $post_type ) )
5458
+		return new stdClass;
5459 5459
         
5460
-    $table = $plugin_prefix . $post_type . '_detail';
5460
+	$table = $plugin_prefix . $post_type . '_detail';
5461 5461
 
5462
-    $limit = '';
5463
-    if ( $per_page > 0 && $page_no > 0 ) {
5464
-        $offset = ( $page_no - 1 ) * $per_page;
5462
+	$limit = '';
5463
+	if ( $per_page > 0 && $page_no > 0 ) {
5464
+		$offset = ( $page_no - 1 ) * $per_page;
5465 5465
         
5466
-        if ( $offset > 0 ) {
5467
-            $limit = " LIMIT " . $offset . "," . $per_page;
5468
-        } else {
5469
-            $limit = " LIMIT " . $per_page;
5470
-        }
5471
-    }
5466
+		if ( $offset > 0 ) {
5467
+			$limit = " LIMIT " . $offset . "," . $per_page;
5468
+		} else {
5469
+			$limit = " LIMIT " . $per_page;
5470
+		}
5471
+	}
5472 5472
 
5473
-    // Skip listing with statuses trash, auto-draft etc...
5474
-    $skip_statuses = geodir_imex_export_skip_statuses();
5475
-    $where_statuses = '';
5476
-    if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5477
-        $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5478
-    }
5473
+	// Skip listing with statuses trash, auto-draft etc...
5474
+	$skip_statuses = geodir_imex_export_skip_statuses();
5475
+	$where_statuses = '';
5476
+	if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5477
+		$where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5478
+	}
5479 5479
     
5480
-    /**
5481
-     * Filter the SQL where clause part to filter posts in import/export.
5482
-     *
5483
-     * @since 1.6.4
5484
-     * @package GeoDirectory
5485
-     *
5486
-     * @param string $where SQL where clause part.
5487
-     */
5488
-    $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type );
5489
-
5490
-    $query = $wpdb->prepare( "SELECT {$wpdb->posts}.ID FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s " . $where_statuses . " ORDER BY {$wpdb->posts}.ID ASC" . $limit, $post_type );
5491
-    /**
5492
-     * Modify returned posts SQL query for the current post type.
5493
-     *
5494
-     * @since 1.4.6
5495
-     * @package GeoDirectory
5496
-     *
5497
-     * @param int $query The SQL query.
5498
-     * @param string $post_type Post type.
5499
-     */
5500
-    $query = apply_filters( 'geodir_imex_export_posts_query', $query, $post_type );
5501
-    $results = (array)$wpdb->get_results( $query, ARRAY_A );
5502
-
5503
-    /**
5504
-     * Modify returned post results for the current post type.
5505
-     *
5506
-     * @since 1.4.6
5507
-     * @package GeoDirectory
5508
-     *
5509
-     * @param object $results An object containing all post ids.
5510
-     * @param string $post_type Post type.
5511
-     */
5512
-    return apply_filters( 'geodir_export_posts', $results, $post_type );
5480
+	/**
5481
+	 * Filter the SQL where clause part to filter posts in import/export.
5482
+	 *
5483
+	 * @since 1.6.4
5484
+	 * @package GeoDirectory
5485
+	 *
5486
+	 * @param string $where SQL where clause part.
5487
+	 */
5488
+	$where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type );
5489
+
5490
+	$query = $wpdb->prepare( "SELECT {$wpdb->posts}.ID FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s " . $where_statuses . " ORDER BY {$wpdb->posts}.ID ASC" . $limit, $post_type );
5491
+	/**
5492
+	 * Modify returned posts SQL query for the current post type.
5493
+	 *
5494
+	 * @since 1.4.6
5495
+	 * @package GeoDirectory
5496
+	 *
5497
+	 * @param int $query The SQL query.
5498
+	 * @param string $post_type Post type.
5499
+	 */
5500
+	$query = apply_filters( 'geodir_imex_export_posts_query', $query, $post_type );
5501
+	$results = (array)$wpdb->get_results( $query, ARRAY_A );
5502
+
5503
+	/**
5504
+	 * Modify returned post results for the current post type.
5505
+	 *
5506
+	 * @since 1.4.6
5507
+	 * @package GeoDirectory
5508
+	 *
5509
+	 * @param object $results An object containing all post ids.
5510
+	 * @param string $post_type Post type.
5511
+	 */
5512
+	return apply_filters( 'geodir_export_posts', $results, $post_type );
5513 5513
 }
5514 5514
 
5515 5515
 /**
@@ -5528,26 +5528,26 @@  discard block
 block discarded – undo
5528 5528
  * @return string The SQL query.
5529 5529
  */
5530 5530
 function geodir_imex_get_events_query( $query, $post_type ) {
5531
-    if ( $post_type == 'gd_event' ) {
5532
-        global $wpdb, $plugin_prefix;
5531
+	if ( $post_type == 'gd_event' ) {
5532
+		global $wpdb, $plugin_prefix;
5533 5533
         
5534
-        $table = $plugin_prefix . $post_type . '_detail';
5535
-        $schedule_table = EVENT_SCHEDULE;
5534
+		$table = $plugin_prefix . $post_type . '_detail';
5535
+		$schedule_table = EVENT_SCHEDULE;
5536 5536
         
5537
-        // Skip listing with statuses trash, auto-draft etc...
5538
-        $skip_statuses = geodir_imex_export_skip_statuses();
5539
-        $where_statuses = '';
5540
-        if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5541
-            $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5542
-        }
5537
+		// Skip listing with statuses trash, auto-draft etc...
5538
+		$skip_statuses = geodir_imex_export_skip_statuses();
5539
+		$where_statuses = '';
5540
+		if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5541
+			$where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5542
+		}
5543 5543
         
5544
-        /** This action is documented in geodirectory-functions/geodirectory-admin/admin_functions.php */
5545
-        $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type );
5544
+		/** This action is documented in geodirectory-functions/geodirectory-admin/admin_functions.php */
5545
+		$where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type );
5546 5546
 
5547
-        $query = $wpdb->prepare( "SELECT {$wpdb->posts}.ID, {$schedule_table}.event_date, {$schedule_table}.event_enddate AS enddate, {$schedule_table}.event_starttime AS starttime, {$schedule_table}.event_endtime AS endtime FROM {$wpdb->posts} INNER JOIN {$table} ON ({$table}.post_id = {$wpdb->posts}.ID) INNER JOIN {$schedule_table} ON ({$schedule_table}.event_id = {$wpdb->posts}.ID) WHERE {$wpdb->posts}.post_type = %s " . $where_statuses . " GROUP BY {$table}.post_id ORDER BY {$wpdb->posts}.ID ASC, {$schedule_table}.schedule_id ASC", $post_type );
5548
-    }
5547
+		$query = $wpdb->prepare( "SELECT {$wpdb->posts}.ID, {$schedule_table}.event_date, {$schedule_table}.event_enddate AS enddate, {$schedule_table}.event_starttime AS starttime, {$schedule_table}.event_endtime AS endtime FROM {$wpdb->posts} INNER JOIN {$table} ON ({$table}.post_id = {$wpdb->posts}.ID) INNER JOIN {$schedule_table} ON ({$schedule_table}.event_id = {$wpdb->posts}.ID) WHERE {$wpdb->posts}.post_type = %s " . $where_statuses . " GROUP BY {$table}.post_id ORDER BY {$wpdb->posts}.ID ASC, {$schedule_table}.schedule_id ASC", $post_type );
5548
+	}
5549 5549
 
5550
-    return $query;
5550
+	return $query;
5551 5551
 }
5552 5552
 
5553 5553
 /**
@@ -5569,36 +5569,36 @@  discard block
 block discarded – undo
5569 5569
  * @return int Total terms count.
5570 5570
  */
5571 5571
 function geodir_get_terms_count( $post_type ) {
5572
-    $args = array( 'hide_empty' => 0 );
5572
+	$args = array( 'hide_empty' => 0 );
5573 5573
 
5574
-    remove_all_filters( 'get_terms' );
5574
+	remove_all_filters( 'get_terms' );
5575 5575
 
5576
-    $taxonomy = $post_type . 'category';
5576
+	$taxonomy = $post_type . 'category';
5577 5577
 
5578
-    // WPML
5579
-    $is_wpml = geodir_is_wpml();
5580
-    $active_lang = 'all';
5581
-    if ( $is_wpml ) {
5582
-        global $sitepress;
5583
-        $active_lang = $sitepress->get_current_language();
5578
+	// WPML
5579
+	$is_wpml = geodir_is_wpml();
5580
+	$active_lang = 'all';
5581
+	if ( $is_wpml ) {
5582
+		global $sitepress;
5583
+		$active_lang = $sitepress->get_current_language();
5584 5584
         
5585
-        if ( $active_lang != 'all' ) {
5586
-            $sitepress->switch_lang( 'all', true );
5587
-        }
5588
-    }
5589
-    // WPML
5585
+		if ( $active_lang != 'all' ) {
5586
+			$sitepress->switch_lang( 'all', true );
5587
+		}
5588
+	}
5589
+	// WPML
5590 5590
             
5591
-    $count_terms = wp_count_terms( $taxonomy, $args );
5591
+	$count_terms = wp_count_terms( $taxonomy, $args );
5592 5592
 
5593
-    // WPML
5594
-    if ( $is_wpml && $active_lang !== 'all' ) {
5595
-        global $sitepress;
5596
-        $sitepress->switch_lang( $active_lang, true );
5597
-    }
5598
-    // WPML
5599
-    $count_terms = !is_wp_error( $count_terms ) ? $count_terms : 0;
5593
+	// WPML
5594
+	if ( $is_wpml && $active_lang !== 'all' ) {
5595
+		global $sitepress;
5596
+		$sitepress->switch_lang( $active_lang, true );
5597
+	}
5598
+	// WPML
5599
+	$count_terms = !is_wp_error( $count_terms ) ? $count_terms : 0;
5600 5600
      
5601
-    return $count_terms;
5601
+	return $count_terms;
5602 5602
 }
5603 5603
 
5604 5604
 /**
@@ -5637,11 +5637,11 @@  discard block
 block discarded – undo
5637 5637
 		$csv_row[] = 'cat_posttype';
5638 5638
 		$csv_row[] = 'cat_parent';
5639 5639
 		$csv_row[] = 'cat_schema';
5640
-        // WPML
5640
+		// WPML
5641 5641
 		$is_wpml = geodir_wpml_is_taxonomy_translated( $taxonomy );
5642 5642
 		if ($is_wpml) {
5643 5643
 			$csv_row[] = 'cat_language';
5644
-            $csv_row[] = 'cat_id_original';
5644
+			$csv_row[] = 'cat_id_original';
5645 5645
 		}
5646 5646
 		// WPML
5647 5647
 		$csv_row[] = 'cat_description';
@@ -5671,10 +5671,10 @@  discard block
 block discarded – undo
5671 5671
 			$csv_row[] = $post_type;
5672 5672
 			$csv_row[] = $cat_parent;
5673 5673
 			$csv_row[] = geodir_get_tax_meta( $term->term_id, 'ct_cat_schema', false, $post_type );
5674
-            // WPML
5674
+			// WPML
5675 5675
 			if ($is_wpml) {
5676 5676
 				$csv_row[] = geodir_get_language_for_element( $term->term_id, 'tax_' . $taxonomy );
5677
-                $csv_row[] = geodir_imex_original_post_id( $term->term_id, 'tax_' . $taxonomy );
5677
+				$csv_row[] = geodir_imex_original_post_id( $term->term_id, 'tax_' . $taxonomy );
5678 5678
 			}
5679 5679
 			// WPML
5680 5680
 			$csv_row[] = $term->description;
@@ -6092,43 +6092,43 @@  discard block
 block discarded – undo
6092 6092
  * @param string $status Post status.
6093 6093
  */
6094 6094
 function geodir_create_page($slug, $option, $page_title = '', $page_content = '', $post_parent = 0, $status = 'publish') {
6095
-    global $wpdb, $current_user;
6096
-
6097
-    $option_value = get_option($option);
6098
-
6099
-    if ($option_value > 0) :
6100
-        if (get_post($option_value)) :
6101
-            // Page exists
6102
-            return;
6103
-        endif;
6104
-    endif;
6105
-
6106
-    $page_found = $wpdb->get_var(
6107
-        $wpdb->prepare(
6108
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s LIMIT 1;",
6109
-            array($slug)
6110
-        )
6111
-    );
6112
-
6113
-    if ($page_found) :
6114
-        // Page exists
6115
-        if (!$option_value) update_option($option, $page_found);
6116
-        return;
6117
-    endif;
6118
-
6119
-    $page_data = array(
6120
-        'post_status' => $status,
6121
-        'post_type' => 'page',
6122
-        'post_author' => $current_user->ID,
6123
-        'post_name' => $slug,
6124
-        'post_title' => $page_title,
6125
-        'post_content' => $page_content,
6126
-        'post_parent' => $post_parent,
6127
-        'comment_status' => 'closed'
6128
-    );
6129
-    $page_id = wp_insert_post($page_data);
6130
-
6131
-    add_option($option, $page_id);
6095
+	global $wpdb, $current_user;
6096
+
6097
+	$option_value = get_option($option);
6098
+
6099
+	if ($option_value > 0) :
6100
+		if (get_post($option_value)) :
6101
+			// Page exists
6102
+			return;
6103
+		endif;
6104
+	endif;
6105
+
6106
+	$page_found = $wpdb->get_var(
6107
+		$wpdb->prepare(
6108
+			"SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s LIMIT 1;",
6109
+			array($slug)
6110
+		)
6111
+	);
6112
+
6113
+	if ($page_found) :
6114
+		// Page exists
6115
+		if (!$option_value) update_option($option, $page_found);
6116
+		return;
6117
+	endif;
6118
+
6119
+	$page_data = array(
6120
+		'post_status' => $status,
6121
+		'post_type' => 'page',
6122
+		'post_author' => $current_user->ID,
6123
+		'post_name' => $slug,
6124
+		'post_title' => $page_title,
6125
+		'post_content' => $page_content,
6126
+		'post_parent' => $post_parent,
6127
+		'comment_status' => 'closed'
6128
+	);
6129
+	$page_id = wp_insert_post($page_data);
6130
+
6131
+	add_option($option, $page_id);
6132 6132
 
6133 6133
 }
6134 6134
 
@@ -6159,9 +6159,9 @@  discard block
 block discarded – undo
6159 6159
  * @package GeoDirectory
6160 6160
  */
6161 6161
 function geodir_admin_upgrade_notice() {
6162
-    $class = "error";
6163
-    $message = __("Please update core GeoDirectory or some addons may not function correctly.","geodirectory");
6164
-    echo"<div class=\"$class\"> <p>$message</p></div>";
6162
+	$class = "error";
6163
+	$message = __("Please update core GeoDirectory or some addons may not function correctly.","geodirectory");
6164
+	echo"<div class=\"$class\"> <p>$message</p></div>";
6165 6165
 }
6166 6166
 
6167 6167
 /**
@@ -6174,18 +6174,18 @@  discard block
 block discarded – undo
6174 6174
  */
6175 6175
 function geodire_admin_upgrade_notice( $plugin_data, $r )
6176 6176
 {
6177
-    // readme contents
6178
-    $args = array(
6179
-        'timeout'     => 15,
6180
-        'redirection' => 5
6181
-    );
6182
-    $url = "http://plugins.svn.wordpress.org/geodirectory/trunk/readme.txt";
6183
-    $data       = wp_remote_get( $url, $args );
6177
+	// readme contents
6178
+	$args = array(
6179
+		'timeout'     => 15,
6180
+		'redirection' => 5
6181
+	);
6182
+	$url = "http://plugins.svn.wordpress.org/geodirectory/trunk/readme.txt";
6183
+	$data       = wp_remote_get( $url, $args );
6184 6184
 
6185
-    if (!is_wp_error($data) && $data['response']['code'] == 200) {
6185
+	if (!is_wp_error($data) && $data['response']['code'] == 200) {
6186 6186
 
6187
-        geodir_in_plugin_update_message($data['body']);
6188
-    }
6187
+		geodir_in_plugin_update_message($data['body']);
6188
+	}
6189 6189
 }
6190 6190
 
6191 6191
 
@@ -6193,28 +6193,28 @@  discard block
 block discarded – undo
6193 6193
 * @param string $content http response body
6194 6194
 */
6195 6195
 function geodir_in_plugin_update_message($content) {
6196
-    // Output Upgrade Notice
6197
-    $matches        = null;
6198
-    $regexp         = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*' . preg_quote( GEODIRECTORY_VERSION ) . '\s*=|$)~Uis';
6199
-    $upgrade_notice = '';
6200
-    if ( preg_match( $regexp, $content, $matches ) ) {
6201
-        if(empty($matches)){return;}
6202
-
6203
-        $version = trim( $matches[1] );
6204
-        if($version && $version>GEODIRECTORY_VERSION){
6205
-
6206
-
6207
-        $notices = (array) preg_split('~[\r\n]+~', trim( $matches[2] ) );
6208
-        if ( version_compare( GEODIRECTORY_VERSION, $version, '<' ) ) {
6209
-            $upgrade_notice .= '<div class="geodir_plugin_upgrade_notice">';
6210
-            foreach ( $notices as $index => $line ) {
6211
-                $upgrade_notice .= wp_kses_post( preg_replace( '~\[([^\]]*)\]\(([^\)]*)\)~', '<a href="${2}">${1}</a>', $line ) );
6212
-            }
6213
-            $upgrade_notice .= '</div> ';
6214
-        }
6215
-        }
6216
-    }
6217
-    echo $upgrade_notice;
6196
+	// Output Upgrade Notice
6197
+	$matches        = null;
6198
+	$regexp         = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*' . preg_quote( GEODIRECTORY_VERSION ) . '\s*=|$)~Uis';
6199
+	$upgrade_notice = '';
6200
+	if ( preg_match( $regexp, $content, $matches ) ) {
6201
+		if(empty($matches)){return;}
6202
+
6203
+		$version = trim( $matches[1] );
6204
+		if($version && $version>GEODIRECTORY_VERSION){
6205
+
6206
+
6207
+		$notices = (array) preg_split('~[\r\n]+~', trim( $matches[2] ) );
6208
+		if ( version_compare( GEODIRECTORY_VERSION, $version, '<' ) ) {
6209
+			$upgrade_notice .= '<div class="geodir_plugin_upgrade_notice">';
6210
+			foreach ( $notices as $index => $line ) {
6211
+				$upgrade_notice .= wp_kses_post( preg_replace( '~\[([^\]]*)\]\(([^\)]*)\)~', '<a href="${2}">${1}</a>', $line ) );
6212
+			}
6213
+			$upgrade_notice .= '</div> ';
6214
+		}
6215
+		}
6216
+	}
6217
+	echo $upgrade_notice;
6218 6218
 }
6219 6219
 
6220 6220
 /**
@@ -6247,19 +6247,19 @@  discard block
 block discarded – undo
6247 6247
  * @param array Listing statuses to be skipped.
6248 6248
  */
6249 6249
 function geodir_imex_export_skip_statuses() {
6250
-    $statuses = array( 'trash', 'auto-draft' );
6250
+	$statuses = array( 'trash', 'auto-draft' );
6251 6251
     
6252
-    /**
6253
-     * Filter the statuses to skip during GD export listings.
6254
-     *
6255
-     * @since 1.6.0
6256
-     * @package GeoDirectory
6257
-     *
6258
-     * @param array $statuses Listing statuses to be skipped.
6259
-     */
6260
-    $statuses = apply_filters( 'geodir_imex_export_skip_statuses', $statuses );
6252
+	/**
6253
+	 * Filter the statuses to skip during GD export listings.
6254
+	 *
6255
+	 * @since 1.6.0
6256
+	 * @package GeoDirectory
6257
+	 *
6258
+	 * @param array $statuses Listing statuses to be skipped.
6259
+	 */
6260
+	$statuses = apply_filters( 'geodir_imex_export_skip_statuses', $statuses );
6261 6261
      
6262
-    return $statuses;
6262
+	return $statuses;
6263 6263
 }
6264 6264
 
6265 6265
 /**
@@ -6275,42 +6275,42 @@  discard block
 block discarded – undo
6275 6275
  * @global string $typenow Current post type.
6276 6276
  */
6277 6277
 function geodir_admin_dequeue_scripts() {
6278
-    global $typenow;
6278
+	global $typenow;
6279 6279
     
6280
-    // EDD
6281
-    if (wp_script_is('jquery-chosen', 'enqueued')) {
6282
-        wp_dequeue_script('jquery-chosen');
6283
-    }
6280
+	// EDD
6281
+	if (wp_script_is('jquery-chosen', 'enqueued')) {
6282
+		wp_dequeue_script('jquery-chosen');
6283
+	}
6284 6284
     
6285
-    // Ultimate Addons for Visual Composer
6286
-    if (wp_script_is('ultimate-vc-backend-script', 'enqueued')) {
6287
-        wp_dequeue_script('ultimate-vc-backend-script');
6288
-    }
6285
+	// Ultimate Addons for Visual Composer
6286
+	if (wp_script_is('ultimate-vc-backend-script', 'enqueued')) {
6287
+		wp_dequeue_script('ultimate-vc-backend-script');
6288
+	}
6289 6289
     
6290
-    // VC editor conflicts
6291
-    if (class_exists('Vc_Role_Access_Controller') && wp_script_is('dfd_vc_damin_scripts', 'enqueued')) {
6292
-        wp_dequeue_script('dfd_vc_damin_scripts');
6293
-    }
6290
+	// VC editor conflicts
6291
+	if (class_exists('Vc_Role_Access_Controller') && wp_script_is('dfd_vc_damin_scripts', 'enqueued')) {
6292
+		wp_dequeue_script('dfd_vc_damin_scripts');
6293
+	}
6294 6294
     
6295
-    // Ultimate chosen
6296
-    if (wp_script_is('ultimate-chosen-script', 'enqueued')) {
6297
-        wp_dequeue_script('ultimate-chosen-script');
6298
-    }
6295
+	// Ultimate chosen
6296
+	if (wp_script_is('ultimate-chosen-script', 'enqueued')) {
6297
+		wp_dequeue_script('ultimate-chosen-script');
6298
+	}
6299 6299
     
6300
-    // Crum composer choosen
6301
-    if (wp_script_is('crum-composer-choosen', 'enqueued')) {
6302
-        wp_dequeue_script('crum-composer-choosen');
6303
-    }
6300
+	// Crum composer choosen
6301
+	if (wp_script_is('crum-composer-choosen', 'enqueued')) {
6302
+		wp_dequeue_script('crum-composer-choosen');
6303
+	}
6304 6304
     
6305
-    // Fix conflict Fusion Builder jquery chosen with GD jquery chosen.
6306
-    if (class_exists('FusionBuilder') && wp_script_is('fusion_builder_chosen_js', 'enqueued')) {
6307
-        wp_dequeue_script('fusion_builder_chosen_js');
6308
-    }
6305
+	// Fix conflict Fusion Builder jquery chosen with GD jquery chosen.
6306
+	if (class_exists('FusionBuilder') && wp_script_is('fusion_builder_chosen_js', 'enqueued')) {
6307
+		wp_dequeue_script('fusion_builder_chosen_js');
6308
+	}
6309 6309
     
6310
-    // Fix conflicts timepicker & setting date value.
6311
-    if (class_exists('acf') && wp_script_is('acf-timepicker', 'enqueued')) {
6312
-        wp_dequeue_script('acf-timepicker');
6313
-    }
6310
+	// Fix conflicts timepicker & setting date value.
6311
+	if (class_exists('acf') && wp_script_is('acf-timepicker', 'enqueued')) {
6312
+		wp_dequeue_script('acf-timepicker');
6313
+	}
6314 6314
 }
6315 6315
 
6316 6316
 /**
@@ -6326,48 +6326,48 @@  discard block
 block discarded – undo
6326 6326
  * @return string SQL where clause part.
6327 6327
  */
6328 6328
 function geodir_imex_get_filter_where($where = '', $post_type = '') {
6329
-    global $wpdb;
6329
+	global $wpdb;
6330 6330
     
6331
-    $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL;
6331
+	$filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL;
6332 6332
     
6333
-    if ( !empty( $filters ) ) {
6334
-        foreach ( $filters as $field => $value ) {
6335
-            switch ($field) {
6336
-                case 'start_date':
6337
-                    $where .= " AND `" . $wpdb->posts . "`.`post_date` >= '" . sanitize_text_field( $value ) . " 00:00:00'";
6338
-                break;
6339
-                case 'end_date':
6340
-                    $where .= " AND `" . $wpdb->posts . "`.`post_date` <= '" . sanitize_text_field( $value ) . " 23:59:59'";
6341
-                break;
6342
-            }
6343
-        }
6344
-    }
6333
+	if ( !empty( $filters ) ) {
6334
+		foreach ( $filters as $field => $value ) {
6335
+			switch ($field) {
6336
+				case 'start_date':
6337
+					$where .= " AND `" . $wpdb->posts . "`.`post_date` >= '" . sanitize_text_field( $value ) . " 00:00:00'";
6338
+				break;
6339
+				case 'end_date':
6340
+					$where .= " AND `" . $wpdb->posts . "`.`post_date` <= '" . sanitize_text_field( $value ) . " 23:59:59'";
6341
+				break;
6342
+			}
6343
+		}
6344
+	}
6345 6345
     
6346
-    return $where;
6346
+	return $where;
6347 6347
 }
6348 6348
 add_filter('geodir_get_posts_count', 'geodir_imex_get_filter_where', 10, 2);
6349 6349
 add_filter('geodir_get_export_posts', 'geodir_imex_get_filter_where', 10, 2);
6350 6350
 
6351 6351
 
6352 6352
 function geodir_fix_for_primer_theme(){
6353
-    if(!defined( 'PRIMER_VERSION' )){return;}
6354
-    global $pagenow;
6353
+	if(!defined( 'PRIMER_VERSION' )){return;}
6354
+	global $pagenow;
6355 6355
 
6356
-    if ( ( 'post.php' === $pagenow || 'post-new.php' === $pagenow ) && (isset($_REQUEST['post_type']) || isset($_REQUEST['post']) )  ){
6356
+	if ( ( 'post.php' === $pagenow || 'post-new.php' === $pagenow ) && (isset($_REQUEST['post_type']) || isset($_REQUEST['post']) )  ){
6357 6357
 
6358
-        $post_type = isset($_REQUEST['post_type']) ? esc_attr($_REQUEST['post_type']) : get_post_type( $_GET['post'] );
6358
+		$post_type = isset($_REQUEST['post_type']) ? esc_attr($_REQUEST['post_type']) : get_post_type( $_GET['post'] );
6359 6359
 
6360
-        $post_types = geodir_get_posttypes();
6361
-        if ($post_type && in_array($post_type, $post_types) ) {
6362
-            global $primer_customizer_layouts;
6363
-            remove_action( 'add_meta_boxes', array( $primer_customizer_layouts, 'add_meta_box' ), 10);
6364
-        }
6365
-    }
6360
+		$post_types = geodir_get_posttypes();
6361
+		if ($post_type && in_array($post_type, $post_types) ) {
6362
+			global $primer_customizer_layouts;
6363
+			remove_action( 'add_meta_boxes', array( $primer_customizer_layouts, 'add_meta_box' ), 10);
6364
+		}
6365
+	}
6366 6366
 
6367 6367
 }
6368 6368
 
6369 6369
 if(is_admin()){
6370
-    add_action('add_meta_boxes','geodir_fix_for_primer_theme',0);  
6370
+	add_action('add_meta_boxes','geodir_fix_for_primer_theme',0);  
6371 6371
 }
6372 6372
 
6373 6373
 
@@ -6500,96 +6500,96 @@  discard block
 block discarded – undo
6500 6500
 
6501 6501
 function geodir_ga_activation_url() {
6502 6502
 
6503
-    return add_query_arg( array(
6504
-        'next'          => admin_url("admin.php?page=geodirectory&active_tab=google_analytic_settings"),
6505
-        'scope'         => GEODIR_GA_SCOPE,
6506
-        'response_type' => 'code',
6507
-        'redirect_uri'  => GEODIR_GA_REDIRECT,
6508
-        'client_id'     => GEODIR_GA_CLIENTID,
6509
-    ), 'https://accounts.google.com/o/oauth2/auth' );
6503
+	return add_query_arg( array(
6504
+		'next'          => admin_url("admin.php?page=geodirectory&active_tab=google_analytic_settings"),
6505
+		'scope'         => GEODIR_GA_SCOPE,
6506
+		'response_type' => 'code',
6507
+		'redirect_uri'  => GEODIR_GA_REDIRECT,
6508
+		'client_id'     => GEODIR_GA_CLIENTID,
6509
+	), 'https://accounts.google.com/o/oauth2/auth' );
6510 6510
 
6511
-    return $url;
6511
+	return $url;
6512 6512
 }
6513 6513
 
6514 6514
 function geodir_gd_accounts(){
6515
-    $accounts = array();
6516
-    $useAuth = ( get_option( 'geodir_ga_auth_code' ) == '' ? false : true );
6517
-    if($useAuth){
6518
-        try {
6519
-            $accounts = geodir_ga_get_analytics_accounts();
6520
-        } catch (Exception $e) {
6521
-            geodir_error_log( wp_sprintf( __( 'GD Google Analytics API Error(%s) : %s', 'geodirectory' ), $e->getCode(), $e->getMessage() ) );
6522
-        }
6515
+	$accounts = array();
6516
+	$useAuth = ( get_option( 'geodir_ga_auth_code' ) == '' ? false : true );
6517
+	if($useAuth){
6518
+		try {
6519
+			$accounts = geodir_ga_get_analytics_accounts();
6520
+		} catch (Exception $e) {
6521
+			geodir_error_log( wp_sprintf( __( 'GD Google Analytics API Error(%s) : %s', 'geodirectory' ), $e->getCode(), $e->getMessage() ) );
6522
+		}
6523 6523
         
6524
-        if(is_array($accounts)){
6525
-            $accounts = array_merge(array(__('Select Account','geodirectory')),$accounts);
6526
-        }elseif(get_option('geodir_ga_account_id')){
6527
-            $accounts = array();
6528
-            $accounts[get_option('geodir_ga_account_id')] = __('Account re-authorization may be required','geodirectory').' ('.get_option('geodir_ga_account_id').')';
6529
-        }
6530
-    }
6531
-    return $accounts;
6524
+		if(is_array($accounts)){
6525
+			$accounts = array_merge(array(__('Select Account','geodirectory')),$accounts);
6526
+		}elseif(get_option('geodir_ga_account_id')){
6527
+			$accounts = array();
6528
+			$accounts[get_option('geodir_ga_account_id')] = __('Account re-authorization may be required','geodirectory').' ('.get_option('geodir_ga_account_id').')';
6529
+		}
6530
+	}
6531
+	return $accounts;
6532 6532
 }
6533 6533
 
6534 6534
 function geodir_ga_get_analytics_accounts()
6535 6535
 {
6536
-    global $gd_ga_errors;
6537
-    $accounts = array();
6536
+	global $gd_ga_errors;
6537
+	$accounts = array();
6538 6538
 
6539
-    if(get_option('geodir_ga_auth_token')===false){update_option('geodir_ga_auth_token','');}
6539
+	if(get_option('geodir_ga_auth_token')===false){update_option('geodir_ga_auth_token','');}
6540 6540
 
6541 6541
 
6542
-    if(get_option('geodir_gd_uids') && !isset($_POST['geodir_ga_auth_code'])){
6543
-      return get_option('geodir_gd_uids');
6544
-    }
6542
+	if(get_option('geodir_gd_uids') && !isset($_POST['geodir_ga_auth_code'])){
6543
+	  return get_option('geodir_gd_uids');
6544
+	}
6545 6545
 
6546
-    # Create a new Gdata call
6547
-    if ( trim(get_option('geodir_ga_auth_code')) != '' )
6548
-        $stats = new GDGoogleAnalyticsStats();
6549
-    else
6550
-        return false;
6546
+	# Create a new Gdata call
6547
+	if ( trim(get_option('geodir_ga_auth_code')) != '' )
6548
+		$stats = new GDGoogleAnalyticsStats();
6549
+	else
6550
+		return false;
6551 6551
 
6552
-    # Check if Google sucessfully logged in
6553
-    if ( ! $stats->checkLogin() )
6554
-        return false;
6552
+	# Check if Google sucessfully logged in
6553
+	if ( ! $stats->checkLogin() )
6554
+		return false;
6555 6555
 
6556
-    # Get a list of accounts
6557
-    try {
6558
-        $accounts = $stats->getAllProfiles();
6559
-    } catch (Exception $e) {
6560
-        $gd_ga_errors[] = $e->getMessage();
6561
-        return false;
6562
-    }
6556
+	# Get a list of accounts
6557
+	try {
6558
+		$accounts = $stats->getAllProfiles();
6559
+	} catch (Exception $e) {
6560
+		$gd_ga_errors[] = $e->getMessage();
6561
+		return false;
6562
+	}
6563 6563
 
6564 6564
 
6565
-    natcasesort ($accounts);
6565
+	natcasesort ($accounts);
6566 6566
 
6567
-    # Return the account array if there are accounts
6568
-    if ( count($accounts) > 0 ){
6569
-        update_option('geodir_gd_uids',$accounts);
6570
-        return $accounts;
6571
-    }
6572
-    else
6573
-        return false;
6567
+	# Return the account array if there are accounts
6568
+	if ( count($accounts) > 0 ){
6569
+		update_option('geodir_gd_uids',$accounts);
6570
+		return $accounts;
6571
+	}
6572
+	else
6573
+		return false;
6574 6574
 }
6575 6575
 
6576 6576
 add_action( 'wp_ajax_geodir_ga_deauthorize', 'geodir_ga_deauthorize' );
6577 6577
 function geodir_ga_deauthorize(){
6578 6578
 
6579
-    if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'gd_ga_deauthorize' ) ) {
6579
+	if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'gd_ga_deauthorize' ) ) {
6580 6580
 
6581
-        die( 'Security check' );
6581
+		die( 'Security check' );
6582 6582
 
6583
-    } else {
6584
-        update_option('geodir_ga_auth_token','');
6585
-        update_option('geodir_ga_auth_code','');
6586
-        update_option('geodir_gd_uids','');
6583
+	} else {
6584
+		update_option('geodir_ga_auth_token','');
6585
+		update_option('geodir_ga_auth_code','');
6586
+		update_option('geodir_gd_uids','');
6587 6587
 
6588 6588
 
6589
-        echo admin_url('?page=geodirectory&active_tab=google_analytic_settings');
6590
-    }
6589
+		echo admin_url('?page=geodirectory&active_tab=google_analytic_settings');
6590
+	}
6591 6591
 
6592
-    die();
6592
+	die();
6593 6593
 }
6594 6594
 
6595 6595
 
@@ -6600,14 +6600,14 @@  discard block
 block discarded – undo
6600 6600
  * @package GeoDirectory
6601 6601
  */
6602 6602
 function geodir_post_type_setting_fun() {
6603
-    $post_type_arr = array();
6603
+	$post_type_arr = array();
6604 6604
 
6605
-    $post_types = geodir_get_posttypes('object');
6605
+	$post_types = geodir_get_posttypes('object');
6606 6606
 
6607
-    foreach ($post_types as $key => $post_types_obj) {
6608
-        $post_type_arr[$key] = $post_types_obj->labels->singular_name;
6609
-    }
6610
-    return $post_type_arr;
6607
+	foreach ($post_types as $key => $post_types_obj) {
6608
+		$post_type_arr[$key] = $post_types_obj->labels->singular_name;
6609
+	}
6610
+	return $post_type_arr;
6611 6611
 }
6612 6612
 
6613 6613
 /**
@@ -6618,35 +6618,35 @@  discard block
 block discarded – undo
6618 6618
  */
6619 6619
 function geodir_listing_image_size_arr(){
6620 6620
 
6621
-    global $_wp_additional_image_sizes;
6622
-
6623
-    $sizes = array();
6624
-
6625
-    foreach ( get_intermediate_image_sizes() as $_size ) {
6626
-        if ( in_array( $_size, array('thumbnail', 'medium', 'medium_large', 'large') ) ) {
6627
-            $sizes[ $_size ]['width']  = get_option( "{$_size}_size_w" );
6628
-            $sizes[ $_size ]['height'] = get_option( "{$_size}_size_h" );
6629
-            $sizes[ $_size ]['crop']   = (bool) get_option( "{$_size}_crop" );
6630
-        } elseif ( isset( $_wp_additional_image_sizes[ $_size ] ) ) {
6631
-            $sizes[ $_size ] = array(
6632
-                'width'  => $_wp_additional_image_sizes[ $_size ]['width'],
6633
-                'height' => $_wp_additional_image_sizes[ $_size ]['height'],
6634
-                'crop'   => $_wp_additional_image_sizes[ $_size ]['crop'],
6635
-            );
6636
-        }
6637
-    }
6621
+	global $_wp_additional_image_sizes;
6622
+
6623
+	$sizes = array();
6624
+
6625
+	foreach ( get_intermediate_image_sizes() as $_size ) {
6626
+		if ( in_array( $_size, array('thumbnail', 'medium', 'medium_large', 'large') ) ) {
6627
+			$sizes[ $_size ]['width']  = get_option( "{$_size}_size_w" );
6628
+			$sizes[ $_size ]['height'] = get_option( "{$_size}_size_h" );
6629
+			$sizes[ $_size ]['crop']   = (bool) get_option( "{$_size}_crop" );
6630
+		} elseif ( isset( $_wp_additional_image_sizes[ $_size ] ) ) {
6631
+			$sizes[ $_size ] = array(
6632
+				'width'  => $_wp_additional_image_sizes[ $_size ]['width'],
6633
+				'height' => $_wp_additional_image_sizes[ $_size ]['height'],
6634
+				'crop'   => $_wp_additional_image_sizes[ $_size ]['crop'],
6635
+			);
6636
+		}
6637
+	}
6638 6638
 
6639 6639
 
6640 6640
 
6641
-    $options = array();
6641
+	$options = array();
6642 6642
 
6643
-    $options['default'] = __('GD Default', 'geodirectory');
6643
+	$options['default'] = __('GD Default', 'geodirectory');
6644 6644
 
6645
-    if(!empty($sizes)){
6646
-        foreach($sizes as $key=>$val){
6647
-            $options[$key] = $key. ' ( '.$val['width'].' x '.$val['height']. ' )';
6648
-        }
6649
-    }
6645
+	if(!empty($sizes)){
6646
+		foreach($sizes as $key=>$val){
6647
+			$options[$key] = $key. ' ( '.$val['width'].' x '.$val['height']. ' )';
6648
+		}
6649
+	}
6650 6650
 
6651
-    return $options;
6651
+	return $options;
6652 6652
 }
6653 6653
\ No newline at end of file
Please login to merge, or discard this patch.